From df4ca2dd9e9fc072f68b1c7b9fd1efdb7a67f593 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Tue, 7 Sep 2021 13:03:48 +0000 Subject: [PATCH 1/8] Add CRI API definitions for checkpoint/restore This adds the minimal CRI API changes to support checkpoint/restore and to enable implementation of these checkpoint/restore interfaces on container engine level. Signed-off-by: Adrian Reber --- .../k8s.io/cri-api/pkg/apis/runtime/v1/api.proto | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto index 05466a16cae7..77ced902fd18 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto @@ -114,6 +114,9 @@ service RuntimeService { // Status returns the status of the runtime. rpc Status(StatusRequest) returns (StatusResponse) {} + + // CheckpointContainer checkpoints a container + rpc CheckpointContainer(CheckpointContainerRequest) returns (CheckpointContainerResponse) {} } // ImageService defines the public APIs for managing images. @@ -1543,3 +1546,16 @@ message ReopenContainerLogRequest { message ReopenContainerLogResponse{ } + +message CheckpointContainerRequest { + // ID of the container to be checkpointed. + string container_id = 1; + // Location of the checkpoint archive used for export + string location = 2; + // Timeout in seconds for the checkpoint to complete. + // Timeout of zero means to use the CRI default. + // Timeout > 0 means to use the user specified timeout. + int64 timeout = 3; +} + +message CheckpointContainerResponse {} From eeb5923937569e312c395b0d236488a720913dbd Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Tue, 7 Sep 2021 15:27:38 +0000 Subject: [PATCH 2/8] make update after CRI API changes (checkpoint/restore) Signed-off-by: Adrian Reber --- .../cri-api/pkg/apis/runtime/v1/api.pb.go | 1152 ++++++++++++----- 1 file changed, 798 insertions(+), 354 deletions(-) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go index 1e1aebbb09fa..935b8763dd14 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go @@ -8074,6 +8074,109 @@ func (m *ReopenContainerLogResponse) XXX_DiscardUnknown() { var xxx_messageInfo_ReopenContainerLogResponse proto.InternalMessageInfo +type CheckpointContainerRequest struct { + // ID of the container to be checkpointed. + ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"` + // Location of the checkpoint archive used for export + Location string `protobuf:"bytes,2,opt,name=location,proto3" json:"location,omitempty"` + // Timeout in seconds for the checkpoint to complete. + // Timeout of zero means to use the CRI default. + // Timeout > 0 means to use the user specified timeout. + Timeout int64 `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CheckpointContainerRequest) Reset() { *m = CheckpointContainerRequest{} } +func (*CheckpointContainerRequest) ProtoMessage() {} +func (*CheckpointContainerRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{121} +} +func (m *CheckpointContainerRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CheckpointContainerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CheckpointContainerRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CheckpointContainerRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CheckpointContainerRequest.Merge(m, src) +} +func (m *CheckpointContainerRequest) XXX_Size() int { + return m.Size() +} +func (m *CheckpointContainerRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CheckpointContainerRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CheckpointContainerRequest proto.InternalMessageInfo + +func (m *CheckpointContainerRequest) GetContainerId() string { + if m != nil { + return m.ContainerId + } + return "" +} + +func (m *CheckpointContainerRequest) GetLocation() string { + if m != nil { + return m.Location + } + return "" +} + +func (m *CheckpointContainerRequest) GetTimeout() int64 { + if m != nil { + return m.Timeout + } + return 0 +} + +type CheckpointContainerResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CheckpointContainerResponse) Reset() { *m = CheckpointContainerResponse{} } +func (*CheckpointContainerResponse) ProtoMessage() {} +func (*CheckpointContainerResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{122} +} +func (m *CheckpointContainerResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CheckpointContainerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CheckpointContainerResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *CheckpointContainerResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CheckpointContainerResponse.Merge(m, src) +} +func (m *CheckpointContainerResponse) XXX_Size() int { + return m.Size() +} +func (m *CheckpointContainerResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CheckpointContainerResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CheckpointContainerResponse proto.InternalMessageInfo + func init() { proto.RegisterEnum("runtime.v1.Protocol", Protocol_name, Protocol_value) proto.RegisterEnum("runtime.v1.MountPropagation", MountPropagation_name, MountPropagation_value) @@ -8230,373 +8333,378 @@ func init() { proto.RegisterType((*MemoryUsage)(nil), "runtime.v1.MemoryUsage") proto.RegisterType((*ReopenContainerLogRequest)(nil), "runtime.v1.ReopenContainerLogRequest") proto.RegisterType((*ReopenContainerLogResponse)(nil), "runtime.v1.ReopenContainerLogResponse") + proto.RegisterType((*CheckpointContainerRequest)(nil), "runtime.v1.CheckpointContainerRequest") + proto.RegisterType((*CheckpointContainerResponse)(nil), "runtime.v1.CheckpointContainerResponse") } func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 5772 bytes of a gzipped FileDescriptorProto + // 5824 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x3c, 0x4b, 0x70, 0x1b, 0xc9, - 0x75, 0x1c, 0x00, 0x24, 0x81, 0x07, 0x02, 0x04, 0x5b, 0x14, 0x09, 0x41, 0x9f, 0x95, 0x46, 0xde, - 0x8f, 0xa4, 0x5d, 0x52, 0xab, 0xd5, 0xae, 0xb5, 0xf4, 0x7e, 0x04, 0x91, 0xdc, 0x5d, 0xac, 0x25, - 0x12, 0x1e, 0x90, 0xeb, 0x5f, 0xca, 0x93, 0x11, 0xa6, 0x09, 0xce, 0x0a, 0x98, 0x19, 0xcf, 0x0c, - 0x24, 0xd1, 0x27, 0x5f, 0x93, 0x53, 0xaa, 0x1c, 0x97, 0xab, 0x5c, 0xa9, 0xa4, 0x72, 0xca, 0x21, - 0x07, 0xe7, 0x92, 0x54, 0xaa, 0x52, 0x49, 0x2e, 0xa9, 0x94, 0x93, 0x2a, 0x57, 0xf9, 0x92, 0x2a, - 0x1f, 0x52, 0x15, 0x7b, 0x73, 0xcb, 0x21, 0x27, 0x1f, 0x72, 0x73, 0xaa, 0x7f, 0x33, 0xd3, 0x33, - 0x83, 0x01, 0xa8, 0x5d, 0xef, 0xee, 0x89, 0xe8, 0xd7, 0xef, 0xbd, 0x7e, 0xdd, 0xfd, 0xfa, 0xf5, - 0xeb, 0xf7, 0xde, 0x10, 0x2a, 0x86, 0x6b, 0x6d, 0xb8, 0x9e, 0x13, 0x38, 0x08, 0xbc, 0xb1, 0x1d, - 0x58, 0x23, 0xbc, 0xf1, 0xf8, 0xd5, 0xd6, 0x2b, 0x03, 0x2b, 0x38, 0x1e, 0x3f, 0xdc, 0xe8, 0x3b, - 0xa3, 0xcd, 0x81, 0x33, 0x70, 0x36, 0x29, 0xca, 0xc3, 0xf1, 0x11, 0x6d, 0xd1, 0x06, 0xfd, 0xc5, - 0x48, 0xd5, 0xeb, 0x50, 0xff, 0x08, 0x7b, 0xbe, 0xe5, 0xd8, 0x1a, 0xfe, 0xfe, 0x18, 0xfb, 0x01, - 0x6a, 0xc2, 0xe2, 0x63, 0x06, 0x69, 0x2a, 0x97, 0x95, 0x97, 0x2a, 0x9a, 0x68, 0xaa, 0x7f, 0xa5, - 0xc0, 0x72, 0x88, 0xec, 0xbb, 0x8e, 0xed, 0xe3, 0xc9, 0xd8, 0xe8, 0x0a, 0x2c, 0x71, 0xb1, 0x74, - 0xdb, 0x18, 0xe1, 0x66, 0x81, 0x76, 0x57, 0x39, 0x6c, 0xcf, 0x18, 0x61, 0xf4, 0x22, 0x2c, 0x0b, - 0x14, 0xc1, 0xa4, 0x48, 0xb1, 0xea, 0x1c, 0xcc, 0x47, 0x43, 0x1b, 0x70, 0x46, 0x20, 0x1a, 0xae, - 0x15, 0x22, 0x97, 0x28, 0xf2, 0x0a, 0xef, 0x6a, 0xbb, 0x16, 0xc7, 0x57, 0xbf, 0x0b, 0x95, 0x9d, - 0xbd, 0xde, 0xb6, 0x63, 0x1f, 0x59, 0x03, 0x22, 0xa2, 0x8f, 0x3d, 0x42, 0xd3, 0x54, 0x2e, 0x17, - 0x89, 0x88, 0xbc, 0x89, 0x5a, 0x50, 0xf6, 0xb1, 0xe1, 0xf5, 0x8f, 0xb1, 0xdf, 0x2c, 0xd0, 0xae, - 0xb0, 0x4d, 0xa8, 0x1c, 0x37, 0xb0, 0x1c, 0xdb, 0x6f, 0x16, 0x19, 0x15, 0x6f, 0xaa, 0x7f, 0xa6, - 0x40, 0xb5, 0xeb, 0x78, 0xc1, 0x03, 0xc3, 0x75, 0x2d, 0x7b, 0x80, 0x6e, 0x42, 0x99, 0xae, 0x65, - 0xdf, 0x19, 0xd2, 0x35, 0xa8, 0xdf, 0x5a, 0xdd, 0x88, 0x36, 0x64, 0xa3, 0xcb, 0xfb, 0xb4, 0x10, - 0x0b, 0x3d, 0x0f, 0xf5, 0xbe, 0x63, 0x07, 0x86, 0x65, 0x63, 0x4f, 0x77, 0x1d, 0x2f, 0xa0, 0x8b, - 0x33, 0xaf, 0xd5, 0x42, 0x28, 0xe1, 0x8f, 0xce, 0x43, 0xe5, 0xd8, 0xf1, 0x03, 0x86, 0x51, 0xa4, - 0x18, 0x65, 0x02, 0xa0, 0x9d, 0xeb, 0xb0, 0x48, 0x3b, 0x2d, 0x97, 0x2f, 0xc3, 0x02, 0x69, 0x76, - 0x5c, 0xf5, 0x97, 0x0a, 0xcc, 0x3f, 0x70, 0xc6, 0x76, 0x90, 0x18, 0xc6, 0x08, 0x8e, 0xf9, 0x16, - 0xc5, 0x86, 0x31, 0x82, 0xe3, 0x68, 0x18, 0x82, 0xc1, 0x76, 0x89, 0x0d, 0x43, 0x3a, 0x5b, 0x50, - 0xf6, 0xb0, 0x61, 0x3a, 0xf6, 0xf0, 0x84, 0x8a, 0x50, 0xd6, 0xc2, 0x36, 0xd9, 0x3e, 0x1f, 0x0f, - 0x2d, 0x7b, 0xfc, 0x54, 0xf7, 0xf0, 0xd0, 0x78, 0x88, 0x87, 0x54, 0x94, 0xb2, 0x56, 0xe7, 0x60, - 0x8d, 0x41, 0xd1, 0x3b, 0x50, 0x75, 0x3d, 0xc7, 0x35, 0x06, 0x06, 0x59, 0xc1, 0xe6, 0x3c, 0x5d, - 0xa4, 0x0b, 0xf1, 0x45, 0xa2, 0x02, 0x77, 0x23, 0x1c, 0x2d, 0x4e, 0xa0, 0xea, 0x50, 0xe9, 0xec, - 0x88, 0xe5, 0x0e, 0x27, 0x6e, 0xd2, 0xe9, 0xd4, 0xf8, 0xc4, 0x4d, 0xa2, 0x70, 0xd1, 0x74, 0x2d, - 0x93, 0x4e, 0xa5, 0xa6, 0x55, 0x43, 0x58, 0xc7, 0x44, 0x6b, 0xb0, 0x30, 0xc4, 0xf6, 0x20, 0x38, - 0xa6, 0x73, 0xa9, 0x69, 0xbc, 0xa5, 0xfe, 0xa9, 0x02, 0xb5, 0x43, 0x1f, 0x7b, 0x44, 0x2b, 0x7d, - 0xd7, 0xe8, 0x63, 0xf4, 0x0a, 0x94, 0x46, 0x8e, 0x89, 0xf9, 0x86, 0x9e, 0x8b, 0xcb, 0x1a, 0x22, - 0x3d, 0x70, 0x4c, 0xac, 0x51, 0x34, 0x74, 0x0d, 0x4a, 0x63, 0xcb, 0x64, 0x5a, 0x54, 0xbd, 0x75, - 0x36, 0x8e, 0x1e, 0x4a, 0xae, 0x51, 0x14, 0x82, 0x3a, 0x20, 0xa8, 0xc5, 0x5c, 0x54, 0x82, 0xa2, - 0xfe, 0x4e, 0x81, 0xe5, 0x70, 0xb4, 0x7d, 0xaa, 0x7e, 0xe8, 0x35, 0x58, 0xb4, 0x71, 0xf0, 0xc4, - 0xf1, 0x1e, 0x4d, 0x97, 0x4d, 0x60, 0xa2, 0x1b, 0x50, 0x74, 0xf9, 0x8a, 0xe4, 0x12, 0x10, 0x2c, - 0x82, 0x6c, 0xb9, 0x7d, 0xba, 0x42, 0xf9, 0xc8, 0x96, 0xdb, 0x27, 0xca, 0x13, 0x18, 0xde, 0x00, - 0xd3, 0xfd, 0x60, 0x8a, 0x58, 0x66, 0x80, 0x8e, 0x89, 0xee, 0x42, 0x7d, 0xec, 0x63, 0xcf, 0xf6, - 0x75, 0x71, 0x94, 0xc8, 0xd6, 0x57, 0x65, 0xa6, 0xd2, 0xba, 0x6b, 0x35, 0x46, 0xb0, 0xcf, 0xcf, - 0x9a, 0x0a, 0xd0, 0xb1, 0x83, 0x37, 0x6e, 0x7f, 0x64, 0x0c, 0xc7, 0x18, 0xad, 0xc2, 0xfc, 0x63, - 0xf2, 0x83, 0xce, 0xbc, 0xa8, 0xb1, 0x86, 0xfa, 0x8f, 0x25, 0x38, 0x7f, 0x9f, 0xa8, 0x5b, 0xcf, - 0xb0, 0xcd, 0x87, 0xce, 0xd3, 0x1e, 0xee, 0x8f, 0x3d, 0x2b, 0x38, 0xd9, 0x76, 0xec, 0x00, 0x3f, - 0x0d, 0xd0, 0x07, 0xb0, 0x62, 0x0b, 0xfe, 0xa1, 0x20, 0x0a, 0x15, 0xe4, 0x7c, 0xe6, 0xec, 0xd8, - 0xe0, 0x5a, 0xc3, 0x96, 0x01, 0x3e, 0xba, 0x17, 0x29, 0xbc, 0xe0, 0x53, 0x48, 0x4f, 0xa8, 0xb7, - 0x4b, 0xa5, 0xe1, 0x5c, 0xc4, 0x59, 0x10, 0x3c, 0xde, 0x00, 0x62, 0x02, 0x75, 0xc3, 0xd7, 0xc9, - 0x4c, 0xe9, 0x2a, 0x57, 0x6f, 0xad, 0x49, 0x5a, 0x10, 0x4e, 0x58, 0xab, 0x78, 0x63, 0xbb, 0xed, - 0x93, 0x15, 0x42, 0x77, 0xa8, 0x39, 0x25, 0x74, 0x03, 0xcf, 0x19, 0xbb, 0xcd, 0x72, 0x2e, 0x21, - 0x50, 0xc2, 0xf7, 0x09, 0x26, 0xb5, 0xb2, 0xfc, 0xc8, 0xea, 0x9e, 0xe3, 0x04, 0x47, 0xbe, 0x38, - 0xa6, 0x02, 0xac, 0x51, 0x28, 0xda, 0x84, 0x33, 0xfe, 0xd8, 0x75, 0x87, 0x78, 0x84, 0xed, 0xc0, - 0x18, 0xb2, 0x81, 0xc8, 0x9e, 0x15, 0x5f, 0x2a, 0x6a, 0x28, 0xde, 0x45, 0x19, 0xfb, 0xe8, 0x12, - 0x80, 0xeb, 0x59, 0x8f, 0xad, 0x21, 0x1e, 0x60, 0xb3, 0xb9, 0x40, 0x99, 0xc6, 0x20, 0xe8, 0x75, - 0x62, 0x79, 0xfb, 0x7d, 0x67, 0xe4, 0x36, 0x2b, 0xe9, 0xf5, 0x16, 0xfb, 0xd4, 0xf5, 0x9c, 0x23, - 0x6b, 0x88, 0x35, 0x81, 0x8b, 0xbe, 0x0a, 0x65, 0xc3, 0x75, 0x0d, 0x6f, 0xe4, 0x78, 0x4d, 0x98, - 0x4e, 0x17, 0x22, 0xa3, 0xdb, 0xb0, 0xca, 0x79, 0xe8, 0x2e, 0xeb, 0x64, 0x46, 0x6d, 0x91, 0xe8, - 0xe5, 0xbd, 0x42, 0x53, 0xd1, 0x10, 0xef, 0xe7, 0xb4, 0xc4, 0xc4, 0xa9, 0xff, 0xa2, 0xc0, 0x72, - 0x82, 0x27, 0xfa, 0x10, 0x96, 0x04, 0x87, 0xe0, 0xc4, 0x15, 0x66, 0xe0, 0xc5, 0x1c, 0x31, 0x36, - 0xf8, 0xdf, 0x83, 0x13, 0x17, 0x53, 0xeb, 0x25, 0x1a, 0xe8, 0x2a, 0xd4, 0x86, 0x4e, 0xdf, 0x18, - 0x52, 0xab, 0xe5, 0xe1, 0x23, 0x6e, 0x63, 0x97, 0x42, 0xa0, 0x86, 0x8f, 0xd4, 0xbb, 0x50, 0x8d, - 0x31, 0x40, 0x08, 0xea, 0x1a, 0x1b, 0x6a, 0x07, 0x1f, 0x19, 0xe3, 0x61, 0xd0, 0x98, 0x43, 0x75, - 0x80, 0x43, 0xbb, 0x4f, 0xee, 0x34, 0x1b, 0x9b, 0x0d, 0x05, 0xd5, 0xa0, 0x72, 0x5f, 0xb0, 0x68, - 0x14, 0xd4, 0x9f, 0x16, 0xe1, 0x2c, 0x55, 0xbc, 0xae, 0x63, 0xf2, 0x93, 0xc0, 0x2f, 0xc0, 0xab, - 0x50, 0xeb, 0xd3, 0xbd, 0xd4, 0x5d, 0xc3, 0xc3, 0x76, 0xc0, 0xaf, 0x81, 0x25, 0x06, 0xec, 0x52, - 0x18, 0xd2, 0xa0, 0xe1, 0xf3, 0x19, 0xe9, 0x7d, 0x76, 0x72, 0xb8, 0x72, 0x4b, 0xb3, 0xce, 0x39, - 0x68, 0xda, 0xb2, 0x9f, 0x3a, 0x79, 0x8b, 0xfe, 0x89, 0xdf, 0x0f, 0x86, 0xc2, 0xda, 0x6d, 0xa4, - 0x58, 0x25, 0x85, 0xdd, 0xe8, 0x31, 0x82, 0x5d, 0x3b, 0xf0, 0x4e, 0x34, 0x41, 0x8e, 0xde, 0x85, - 0xb2, 0xf3, 0x18, 0x7b, 0xc7, 0xd8, 0x60, 0x56, 0xa6, 0x7a, 0xeb, 0x6a, 0x8a, 0xd5, 0xb6, 0x30, - 0xf4, 0x1a, 0xf6, 0x9d, 0xb1, 0xd7, 0xc7, 0xbe, 0x16, 0x12, 0xa1, 0x36, 0x54, 0x3c, 0x01, 0xe6, - 0x56, 0x68, 0x26, 0x0e, 0x11, 0x55, 0x6b, 0x0b, 0x96, 0xe2, 0xc2, 0xa1, 0x06, 0x14, 0x1f, 0xe1, - 0x13, 0xbe, 0x98, 0xe4, 0x67, 0x64, 0x9f, 0xd8, 0x0e, 0xb3, 0xc6, 0x56, 0xe1, 0x8e, 0xa2, 0x7a, - 0x80, 0xa2, 0x99, 0x3e, 0xc0, 0x81, 0x61, 0x1a, 0x81, 0x81, 0x10, 0x94, 0xa8, 0x6b, 0xc4, 0x58, - 0xd0, 0xdf, 0x84, 0xeb, 0x98, 0x9b, 0xea, 0x8a, 0x46, 0x7e, 0xa2, 0x0b, 0x50, 0x09, 0x2d, 0x11, - 0xf7, 0x8f, 0x22, 0x00, 0xf1, 0x53, 0x8c, 0x20, 0xc0, 0x23, 0x37, 0xa0, 0x0b, 0x53, 0xd3, 0x44, - 0x53, 0xfd, 0xa3, 0x79, 0x68, 0xa4, 0x74, 0x61, 0x0b, 0xca, 0x23, 0x3e, 0x3c, 0xb7, 0x81, 0x97, - 0x24, 0x67, 0x25, 0x25, 0xa4, 0x16, 0xe2, 0x13, 0x5f, 0x80, 0xe8, 0x5a, 0xcc, 0x9b, 0x0b, 0xdb, - 0x4c, 0xc9, 0x07, 0xba, 0x69, 0x79, 0xb8, 0x1f, 0x38, 0xde, 0x09, 0x17, 0x74, 0x69, 0xe8, 0x0c, - 0x76, 0x04, 0x0c, 0xdd, 0x06, 0x30, 0x6d, 0x5f, 0xa7, 0x3a, 0x3c, 0xe0, 0xfb, 0x28, 0x5d, 0x80, - 0xa1, 0xd3, 0xa6, 0x55, 0x4c, 0xdb, 0xe7, 0x22, 0xbf, 0x05, 0x35, 0xe2, 0x01, 0xe9, 0x23, 0x76, - 0x37, 0x32, 0x83, 0x54, 0xbd, 0xb5, 0x2e, 0xcb, 0x1d, 0xfa, 0x63, 0xda, 0x92, 0x1b, 0x35, 0x7c, - 0x74, 0x17, 0x16, 0xa8, 0x13, 0xe2, 0x37, 0x17, 0x28, 0xd9, 0x4b, 0xd9, 0xd3, 0xe5, 0xda, 0x77, - 0x9f, 0xa2, 0x32, 0xe5, 0xe3, 0x74, 0x68, 0x1f, 0xaa, 0x86, 0x6d, 0x3b, 0x81, 0xc1, 0x2c, 0xfe, - 0x22, 0x65, 0xf3, 0x4a, 0x2e, 0x9b, 0x76, 0x84, 0xcf, 0x78, 0xc5, 0x39, 0xa0, 0xaf, 0xc2, 0x3c, - 0xbd, 0x12, 0xb8, 0x0d, 0xbf, 0x32, 0xf5, 0x50, 0x68, 0x0c, 0x1f, 0xbd, 0x0d, 0x8b, 0x4f, 0x2c, - 0xdb, 0x74, 0x9e, 0xf8, 0xdc, 0x9e, 0x4a, 0x2a, 0xfc, 0x4d, 0xd6, 0x95, 0x22, 0x16, 0x34, 0xad, - 0x37, 0xa1, 0x1a, 0x9b, 0xdf, 0x69, 0xf4, 0xb7, 0xf5, 0x0e, 0x34, 0x92, 0x73, 0x3a, 0x95, 0xfe, - 0x8f, 0x61, 0x55, 0x1b, 0xdb, 0x91, 0x68, 0xe2, 0xb1, 0x71, 0x1b, 0x16, 0xb8, 0x36, 0x30, 0x65, - 0xbc, 0x90, 0xb7, 0xac, 0x1a, 0xc7, 0x8d, 0xbf, 0x1b, 0x8e, 0x0d, 0xdb, 0x1c, 0x62, 0x8f, 0x8f, - 0x28, 0xde, 0x0d, 0x1f, 0x30, 0xa8, 0xfa, 0x36, 0x9c, 0x4d, 0x0c, 0xcb, 0x9f, 0x2d, 0x5f, 0x81, - 0xba, 0xeb, 0x98, 0xba, 0xcf, 0xc0, 0xc2, 0x97, 0xac, 0x10, 0xdd, 0x11, 0xb8, 0x1d, 0x93, 0x90, - 0xf7, 0x02, 0xc7, 0x4d, 0x8b, 0x3d, 0x1b, 0x79, 0x13, 0xd6, 0x92, 0xe4, 0x6c, 0x78, 0xf5, 0x5d, - 0x58, 0xd7, 0xf0, 0xc8, 0x79, 0x8c, 0x9f, 0x95, 0x75, 0x0b, 0x9a, 0x69, 0x06, 0x9c, 0xf9, 0xb7, - 0x61, 0x3d, 0x82, 0xf6, 0x02, 0x23, 0x18, 0xfb, 0xa7, 0x62, 0xce, 0xdf, 0x74, 0x0f, 0x1d, 0x9f, - 0x6d, 0x64, 0x59, 0x13, 0x4d, 0x75, 0x1d, 0xe6, 0xbb, 0x8e, 0xd9, 0xe9, 0xa2, 0x3a, 0x14, 0x2c, - 0x97, 0x13, 0x17, 0x2c, 0x57, 0xed, 0xc7, 0xc7, 0xdc, 0x63, 0x5e, 0x27, 0x1b, 0x3a, 0x89, 0x8a, - 0xee, 0x40, 0xdd, 0x30, 0x4d, 0x8b, 0x28, 0x92, 0x31, 0xd4, 0x2d, 0x57, 0x38, 0xcd, 0x2b, 0x89, - 0xad, 0xef, 0x74, 0xb5, 0x5a, 0x84, 0xd8, 0x71, 0x7d, 0xf5, 0x1e, 0x54, 0x22, 0x07, 0xfd, 0xf5, - 0xe8, 0x7d, 0x56, 0x98, 0xee, 0xcb, 0x85, 0x8f, 0xb7, 0xbd, 0xd4, 0x25, 0xc9, 0xc5, 0x7c, 0x1d, - 0x20, 0x34, 0xaa, 0xc2, 0x3d, 0x3c, 0x9b, 0xc9, 0x52, 0x8b, 0x21, 0xaa, 0xff, 0x55, 0x8a, 0x1b, - 0xd9, 0xd8, 0x94, 0xcd, 0x70, 0xca, 0xa6, 0x64, 0x74, 0x0b, 0xa7, 0x34, 0xba, 0xaf, 0xc2, 0xbc, - 0x1f, 0x18, 0x01, 0xe6, 0xfe, 0xf8, 0xf9, 0x6c, 0x42, 0x32, 0x30, 0xd6, 0x18, 0x26, 0xba, 0x08, - 0xd0, 0xf7, 0xb0, 0x11, 0x60, 0x53, 0x37, 0xd8, 0xad, 0x50, 0xd4, 0x2a, 0x1c, 0xd2, 0x0e, 0x88, - 0x15, 0x11, 0x2f, 0x88, 0x8c, 0x8b, 0x70, 0xc2, 0x36, 0x46, 0x6f, 0x89, 0xd0, 0x7a, 0x2d, 0x4c, - 0xb5, 0x5e, 0x9c, 0x94, 0x5b, 0xaf, 0xc8, 0x12, 0x2f, 0xe6, 0x59, 0x62, 0x46, 0x34, 0x8b, 0x25, - 0x2e, 0xe7, 0x59, 0x62, 0xce, 0x26, 0xdf, 0x12, 0x67, 0x18, 0x92, 0x4a, 0x96, 0x21, 0xf9, 0x22, - 0x4d, 0xe7, 0x2f, 0x14, 0x68, 0xa6, 0xcf, 0x33, 0xb7, 0x63, 0xb7, 0x61, 0xc1, 0xa7, 0x90, 0x7c, - 0xfb, 0xc9, 0xa9, 0x38, 0x2e, 0xba, 0x07, 0x25, 0xcb, 0x3e, 0x72, 0xf8, 0xc1, 0xdb, 0xc8, 0xa5, - 0xe1, 0x23, 0x6d, 0x74, 0xec, 0x23, 0x87, 0xad, 0x20, 0xa5, 0x6d, 0x7d, 0x15, 0x2a, 0x21, 0xe8, - 0x54, 0xf3, 0xe9, 0xc0, 0x6a, 0x42, 0x6f, 0xd9, 0xe3, 0x2e, 0x54, 0x74, 0x65, 0x56, 0x45, 0x57, - 0x7f, 0xab, 0xc4, 0x0f, 0xdf, 0x7b, 0xd6, 0x30, 0xc0, 0x5e, 0xea, 0xf0, 0xbd, 0x21, 0xf8, 0xb2, - 0x93, 0x77, 0x39, 0x87, 0x2f, 0x7b, 0x3b, 0xf1, 0x53, 0xf4, 0x11, 0xd4, 0xa9, 0xda, 0xe9, 0x3e, - 0x1e, 0x52, 0xff, 0x85, 0xfb, 0xb0, 0x9b, 0xd9, 0x0c, 0xd8, 0xe8, 0x4c, 0x6d, 0x7b, 0x9c, 0x82, - 0xad, 0x57, 0x6d, 0x18, 0x87, 0xb5, 0xee, 0x02, 0x4a, 0x23, 0x9d, 0x6a, 0x05, 0x1f, 0x10, 0x1b, - 0xe6, 0x07, 0x99, 0xb7, 0xe9, 0x11, 0x15, 0x23, 0x5f, 0x1b, 0x98, 0xa8, 0x1a, 0xc7, 0x55, 0xff, - 0xa3, 0x08, 0x10, 0x75, 0x7e, 0xc9, 0x8d, 0xd7, 0x56, 0x68, 0x44, 0x98, 0x17, 0xa8, 0x66, 0xb3, - 0xcc, 0x34, 0x1f, 0x1d, 0xd9, 0x7c, 0x30, 0x7f, 0xf0, 0xc5, 0x09, 0x0c, 0x4e, 0x6d, 0x38, 0x16, - 0xbf, 0x6c, 0x86, 0xe3, 0x3d, 0x58, 0x4b, 0xaa, 0x09, 0xb7, 0x1a, 0x2f, 0xc3, 0xbc, 0x15, 0xe0, - 0x11, 0x8b, 0x87, 0x26, 0x82, 0x08, 0x31, 0x74, 0x86, 0xa4, 0xbe, 0x03, 0x6b, 0xf2, 0x5e, 0x9d, - 0xce, 0x9d, 0x50, 0xef, 0x27, 0xfd, 0x91, 0xc8, 0x7c, 0x71, 0xfd, 0xc8, 0x0c, 0xc7, 0x24, 0x69, - 0x18, 0xa6, 0xfa, 0xaf, 0x0a, 0x9c, 0x4d, 0x74, 0x4d, 0x38, 0xf8, 0xdf, 0x4d, 0x1d, 0x60, 0x66, - 0xef, 0x6e, 0xe7, 0x8c, 0xf2, 0x39, 0x9e, 0xe2, 0x6f, 0x42, 0x4b, 0xde, 0x1e, 0x69, 0x69, 0xdf, - 0x4c, 0x1c, 0xe5, 0x2b, 0x53, 0x85, 0x0e, 0xcf, 0x73, 0x17, 0xce, 0x67, 0x32, 0x4e, 0xaf, 0x79, - 0x71, 0xc6, 0x35, 0xff, 0xbf, 0x42, 0xdc, 0x66, 0xb7, 0x83, 0xc0, 0xb3, 0x1e, 0x8e, 0x03, 0xfc, - 0xd9, 0x3a, 0x3a, 0x3b, 0xe1, 0xc9, 0x66, 0x76, 0xf6, 0xe5, 0x6c, 0xca, 0x68, 0xf4, 0xcc, 0x33, - 0xde, 0x93, 0xcf, 0x78, 0x89, 0xb2, 0x7a, 0x75, 0x2a, 0xab, 0xdc, 0xd3, 0xfe, 0x45, 0x1e, 0xe2, - 0x7f, 0x53, 0x60, 0x39, 0xb1, 0x2b, 0xe8, 0x2e, 0x80, 0x11, 0x8a, 0xce, 0xf5, 0xe3, 0xf2, 0xb4, - 0x29, 0x6a, 0x31, 0x1a, 0x72, 0x27, 0x32, 0x1f, 0x2e, 0xe3, 0x4e, 0xcc, 0xf0, 0xe1, 0x42, 0x17, - 0xee, 0xad, 0xe8, 0x01, 0xca, 0x02, 0x97, 0x6a, 0xee, 0x03, 0x94, 0xd1, 0x0a, 0x12, 0xf5, 0x47, - 0x05, 0x58, 0xcd, 0xe2, 0x8e, 0x5e, 0x80, 0x62, 0xdf, 0x1d, 0xf3, 0x99, 0x48, 0xc9, 0x93, 0x6d, - 0x77, 0x7c, 0xe8, 0x1b, 0x03, 0xac, 0x11, 0x04, 0xb4, 0x09, 0x0b, 0x23, 0x3c, 0x72, 0xbc, 0x13, - 0x2e, 0xb7, 0x14, 0x02, 0x78, 0x40, 0x7b, 0x18, 0x36, 0x47, 0x43, 0xb7, 0x22, 0x57, 0x97, 0xc9, - 0xdb, 0x94, 0x3c, 0x7a, 0xd6, 0xc5, 0x48, 0x42, 0xff, 0xf6, 0x16, 0x2c, 0xba, 0x9e, 0xd3, 0xc7, - 0xbe, 0xcf, 0x23, 0x14, 0xcd, 0x44, 0x36, 0x87, 0x74, 0x71, 0x1a, 0x8e, 0x88, 0xb6, 0x00, 0xc2, - 0x34, 0x83, 0xb8, 0x99, 0x5a, 0xd2, 0x3c, 0x44, 0x2f, 0x5b, 0x92, 0x18, 0x36, 0x79, 0x25, 0x66, - 0x2f, 0x9c, 0xfa, 0xcf, 0x0a, 0x2c, 0xc5, 0x65, 0x44, 0x17, 0xa0, 0x42, 0x18, 0xfa, 0x81, 0x31, - 0x72, 0x79, 0x0c, 0x3c, 0x02, 0xa0, 0x3d, 0x58, 0x31, 0x59, 0xb0, 0x50, 0xb7, 0xec, 0x00, 0x7b, - 0x47, 0x46, 0x5f, 0x38, 0x3d, 0x57, 0x32, 0xa6, 0xdd, 0x11, 0x38, 0x6c, 0x2e, 0x0d, 0x4e, 0x1b, - 0x82, 0x51, 0x1b, 0x20, 0xe4, 0x23, 0x0e, 0xe5, 0x0c, 0x8c, 0x62, 0x44, 0xea, 0xef, 0x14, 0x38, - 0x9b, 0x89, 0x95, 0x19, 0xfa, 0xba, 0x05, 0x65, 0xef, 0xa9, 0xfe, 0xf0, 0x24, 0xc0, 0x7e, 0xd6, - 0x06, 0x1f, 0xc6, 0xe2, 0xdb, 0x8b, 0xde, 0xd3, 0x7b, 0x04, 0x0f, 0xdd, 0x86, 0x8a, 0xf7, 0x54, - 0xc7, 0x9e, 0xe7, 0x78, 0x42, 0x27, 0x27, 0x12, 0x95, 0xbd, 0xa7, 0xbb, 0x14, 0x91, 0x8c, 0x14, - 0x88, 0x91, 0x4a, 0x53, 0x46, 0x0a, 0xa2, 0x91, 0x82, 0x70, 0xa4, 0xf9, 0x29, 0x23, 0x05, 0x7c, - 0x24, 0xf5, 0x63, 0x58, 0x8a, 0xab, 0xcc, 0x94, 0x2d, 0x7c, 0x0b, 0x6a, 0x5c, 0xa5, 0xf4, 0xbe, - 0x33, 0xb6, 0x83, 0x69, 0xcb, 0xb0, 0xc4, 0xb1, 0xb7, 0x09, 0xb2, 0xfa, 0xd7, 0x0a, 0x54, 0x3a, - 0x23, 0x63, 0x80, 0x7b, 0x2e, 0xee, 0x13, 0x9b, 0x62, 0x91, 0x06, 0x5f, 0x62, 0xd6, 0x40, 0x1f, - 0xc8, 0xf6, 0x91, 0xdd, 0x88, 0x2f, 0x48, 0x59, 0x04, 0xc1, 0x61, 0x8a, 0x51, 0xfc, 0xb4, 0x96, - 0xed, 0x16, 0x94, 0xbf, 0x8e, 0x4f, 0x98, 0xef, 0x3f, 0x23, 0x9d, 0xfa, 0xe3, 0x12, 0xac, 0x4f, - 0x88, 0xd4, 0x52, 0xc7, 0xd1, 0x1d, 0xeb, 0x2e, 0xf6, 0x2c, 0xc7, 0x14, 0x4b, 0xdb, 0x77, 0xc7, - 0x5d, 0x0a, 0x40, 0xe7, 0x81, 0x34, 0xf4, 0xef, 0x8f, 0x1d, 0x7e, 0x37, 0x15, 0xb5, 0x72, 0xdf, - 0x1d, 0x7f, 0x83, 0xb4, 0x05, 0xad, 0x7f, 0x6c, 0x78, 0x98, 0xa9, 0x11, 0xa3, 0xed, 0x51, 0x00, - 0x7a, 0x15, 0xce, 0x32, 0x83, 0xa2, 0x0f, 0xad, 0x91, 0x45, 0x8e, 0x57, 0x4c, 0x77, 0x8a, 0x1a, - 0x62, 0x9d, 0xf7, 0x49, 0x5f, 0xc7, 0x66, 0xda, 0xa2, 0x42, 0xcd, 0x71, 0x46, 0xba, 0xdf, 0x77, - 0x3c, 0xac, 0x1b, 0xe6, 0xc7, 0x54, 0x63, 0x8a, 0x5a, 0xd5, 0x71, 0x46, 0x3d, 0x02, 0x6b, 0x9b, - 0x1f, 0xa3, 0xe7, 0xa0, 0xda, 0x77, 0xc7, 0x3e, 0x0e, 0x74, 0xf2, 0x87, 0xbe, 0xa7, 0x2b, 0x1a, - 0x30, 0xd0, 0xb6, 0x3b, 0xf6, 0x63, 0x08, 0x23, 0xe2, 0xad, 0x2d, 0xc6, 0x11, 0x1e, 0xe0, 0x11, - 0x4d, 0x48, 0x1d, 0x8f, 0x07, 0xd8, 0x35, 0x06, 0x98, 0x89, 0x26, 0x1e, 0xc5, 0x52, 0x42, 0xea, - 0x03, 0x8e, 0x42, 0x05, 0xd4, 0xea, 0xc7, 0xf1, 0xa6, 0x8f, 0x3e, 0x84, 0xc5, 0xb1, 0x6d, 0x1d, - 0x59, 0xd8, 0x6c, 0x56, 0x28, 0xed, 0xcd, 0x19, 0xe2, 0xe2, 0x1b, 0x87, 0x8c, 0x84, 0x87, 0xe9, - 0x39, 0x03, 0xb4, 0x05, 0x2d, 0xbe, 0x50, 0xfe, 0x13, 0xc3, 0x4d, 0xae, 0x16, 0xd0, 0x25, 0x58, - 0x63, 0x18, 0xbd, 0x27, 0x86, 0x1b, 0x5f, 0xb1, 0xd6, 0x16, 0x2c, 0xc5, 0x99, 0x9e, 0x4a, 0x97, - 0xee, 0x41, 0x4d, 0x9a, 0x24, 0xd9, 0x6d, 0xba, 0x28, 0xbe, 0xf5, 0x03, 0x71, 0x00, 0xca, 0x04, - 0xd0, 0xb3, 0x7e, 0x40, 0xd3, 0x88, 0x54, 0x32, 0xca, 0xa7, 0xa4, 0xb1, 0x86, 0x6a, 0x40, 0x4d, - 0xca, 0xdc, 0x11, 0x13, 0x45, 0x53, 0x74, 0xdc, 0x44, 0x91, 0xdf, 0x04, 0xe6, 0x39, 0x43, 0x21, - 0x01, 0xfd, 0x4d, 0x60, 0x34, 0x47, 0xc4, 0x22, 0xde, 0xf4, 0x37, 0x1d, 0x02, 0x3f, 0xe6, 0x09, - 0xf1, 0x8a, 0xc6, 0x1a, 0xea, 0x9f, 0x2b, 0x00, 0xdb, 0x86, 0x6b, 0x3c, 0xb4, 0x86, 0x56, 0x70, - 0x82, 0xae, 0x41, 0xc3, 0x30, 0x4d, 0xbd, 0x2f, 0x20, 0x16, 0x16, 0x15, 0x0a, 0xcb, 0x86, 0x69, - 0x6e, 0xc7, 0xc0, 0xe8, 0x06, 0xac, 0x98, 0x9e, 0xe3, 0xca, 0xb8, 0xac, 0x64, 0xa1, 0x41, 0x3a, - 0x24, 0xe4, 0x3b, 0xd0, 0x24, 0x7c, 0x8d, 0xd1, 0x43, 0x0b, 0xdb, 0x81, 0x4c, 0xc3, 0x6a, 0x19, - 0xd6, 0x0c, 0xd3, 0x6c, 0xb3, 0xee, 0x38, 0xa5, 0xfa, 0x4f, 0x0b, 0x70, 0x51, 0xde, 0xf1, 0x64, - 0x32, 0x75, 0x0b, 0x96, 0x12, 0xf2, 0xa6, 0xd2, 0x90, 0xd1, 0x0c, 0x35, 0x09, 0x37, 0x91, 0x2e, - 0x2c, 0xa4, 0xd2, 0x85, 0x99, 0x89, 0xda, 0xe2, 0x67, 0x94, 0xa8, 0x2d, 0x7d, 0xca, 0x44, 0xed, - 0xfc, 0xb3, 0x26, 0x6a, 0x97, 0x66, 0x4e, 0xd4, 0xbe, 0x40, 0x1f, 0x95, 0x62, 0x44, 0x7a, 0x3d, - 0x32, 0x9b, 0x50, 0x0b, 0xb9, 0xdb, 0xa2, 0x6c, 0x26, 0x91, 0xd0, 0x5d, 0x3c, 0x4d, 0x42, 0xb7, - 0x3c, 0x31, 0xa1, 0x7b, 0x19, 0x96, 0x6c, 0x47, 0xb7, 0xf1, 0x13, 0x9d, 0x6c, 0x8b, 0xdf, 0xac, - 0xb2, 0x3d, 0xb2, 0x9d, 0x3d, 0xfc, 0xa4, 0x4b, 0x20, 0xe8, 0x0a, 0x2c, 0x8d, 0x0c, 0xff, 0x11, - 0x36, 0x69, 0x66, 0xd5, 0x6f, 0xd6, 0xa8, 0x3e, 0x55, 0x19, 0xac, 0x4b, 0x40, 0xe8, 0x79, 0x08, - 0xe5, 0xe0, 0x48, 0x75, 0x8a, 0x54, 0x13, 0x50, 0x86, 0x16, 0x4b, 0x0e, 0x2f, 0x3f, 0x63, 0x72, - 0xb8, 0x71, 0x9a, 0xe4, 0xf0, 0x2b, 0xd0, 0x10, 0xbf, 0x45, 0x76, 0x98, 0x05, 0xfb, 0x68, 0x62, - 0x78, 0x59, 0xf4, 0x89, 0x0c, 0xf0, 0xa4, 0x5c, 0x32, 0xe4, 0xe6, 0x92, 0x7f, 0xa6, 0x70, 0x17, - 0x37, 0x3c, 0x40, 0x3c, 0x89, 0x25, 0xe5, 0x1f, 0x95, 0x67, 0xc9, 0x3f, 0xa2, 0x83, 0x89, 0x19, - 0xda, 0x6b, 0x93, 0x39, 0x4d, 0xcb, 0xd1, 0xaa, 0x3f, 0x52, 0xe0, 0x22, 0xf7, 0x3f, 0x27, 0xd4, - 0x4f, 0x64, 0xa8, 0xa5, 0x32, 0x41, 0x2d, 0xfb, 0x1e, 0x36, 0xb1, 0x1d, 0x58, 0xc6, 0x50, 0xf7, - 0x5d, 0xdc, 0x17, 0x59, 0x99, 0x08, 0x4c, 0x3d, 0x93, 0x2b, 0xb0, 0xc4, 0x0a, 0x8e, 0xb8, 0x9b, - 0xcd, 0xea, 0x8a, 0xaa, 0xb4, 0xe6, 0x88, 0x81, 0x54, 0x07, 0xd6, 0x27, 0xa4, 0xb3, 0x32, 0x97, - 0x41, 0x49, 0x2f, 0x43, 0xee, 0x9c, 0xd2, 0xcb, 0xf0, 0x63, 0x05, 0x9e, 0xe3, 0x24, 0x13, 0x6d, - 0xdf, 0x17, 0xb1, 0x10, 0x7f, 0xab, 0x84, 0xcf, 0x83, 0xa4, 0x4a, 0x6d, 0xa7, 0x55, 0xea, 0xf9, - 0x8c, 0x15, 0xc8, 0x57, 0xaa, 0x8f, 0x26, 0x2a, 0xd5, 0x8d, 0x3c, 0x5e, 0x53, 0xd7, 0xf3, 0x3f, - 0x15, 0x38, 0x37, 0x51, 0x80, 0x84, 0xbf, 0xa5, 0x24, 0xfd, 0x2d, 0xee, 0xab, 0x45, 0x2e, 0x30, - 0xf3, 0xd5, 0xa8, 0x97, 0xcb, 0x9d, 0x22, 0x7d, 0x64, 0x3c, 0xb5, 0x46, 0xe3, 0x11, 0x77, 0xd6, - 0x08, 0xbb, 0x07, 0x0c, 0xf2, 0x2c, 0xde, 0xda, 0x26, 0xac, 0x32, 0x43, 0x4a, 0x1d, 0x86, 0x88, - 0x82, 0x39, 0x6d, 0x2b, 0xac, 0x8f, 0xf8, 0x0e, 0x9c, 0x40, 0x6d, 0xc3, 0x4a, 0x38, 0xad, 0xdc, - 0x74, 0x7e, 0x2c, 0x3d, 0x5f, 0x90, 0xd3, 0xf3, 0x36, 0x2c, 0xec, 0xe0, 0xc7, 0x56, 0x1f, 0x7f, - 0x26, 0x75, 0x7a, 0x97, 0xa1, 0xea, 0x62, 0x6f, 0x64, 0xf9, 0x7e, 0x78, 0x6b, 0x56, 0xb4, 0x38, - 0x48, 0xfd, 0xd9, 0x02, 0x2c, 0x27, 0x55, 0xe8, 0xcd, 0x54, 0x35, 0xc0, 0xc5, 0xcc, 0x57, 0x6b, - 0x46, 0xb8, 0xe6, 0x86, 0x78, 0x5e, 0x14, 0xd2, 0xa9, 0xb2, 0xf0, 0x09, 0x21, 0x5e, 0x1d, 0x4d, - 0x58, 0xec, 0x3b, 0xa3, 0x91, 0x61, 0x9b, 0xa2, 0x98, 0x92, 0x37, 0xc9, 0x9a, 0x19, 0xde, 0x80, - 0x05, 0x6a, 0x2a, 0x1a, 0xfd, 0x4d, 0x76, 0x98, 0xbc, 0x18, 0x2d, 0x9b, 0xd6, 0x13, 0xd0, 0x4d, - 0xa8, 0x68, 0xc0, 0x41, 0x3b, 0x96, 0x87, 0x5e, 0x82, 0x12, 0xb6, 0x1f, 0x8b, 0x08, 0xae, 0x14, - 0x30, 0x10, 0x4f, 0x0a, 0x8d, 0x62, 0xa0, 0x6b, 0xb0, 0x30, 0x22, 0x5a, 0x23, 0x72, 0x4e, 0x2b, - 0xa9, 0xa2, 0x43, 0x8d, 0x23, 0xa0, 0x97, 0x61, 0xd1, 0xa4, 0xfb, 0x21, 0x7c, 0x68, 0x24, 0x55, - 0x26, 0xd0, 0x2e, 0x4d, 0xa0, 0xa0, 0x77, 0xc3, 0x68, 0x55, 0x25, 0x1d, 0x46, 0x4e, 0x2c, 0x73, - 0x66, 0xa0, 0x6a, 0x4f, 0x7e, 0x88, 0x41, 0x3a, 0xe6, 0x95, 0xe4, 0x92, 0x1f, 0x91, 0x3e, 0x07, - 0xe5, 0xa1, 0x33, 0x60, 0xca, 0x51, 0x65, 0x95, 0xb8, 0x43, 0x67, 0x40, 0x75, 0x63, 0x15, 0xe6, - 0xfd, 0xc0, 0xb4, 0x6c, 0xea, 0x8a, 0x94, 0x35, 0xd6, 0x20, 0x67, 0x90, 0xfe, 0xd0, 0x1d, 0xbb, - 0x8f, 0x9b, 0x35, 0xda, 0x55, 0xa1, 0x90, 0x7d, 0xbb, 0x4f, 0x9f, 0x64, 0x41, 0x70, 0xd2, 0xac, - 0x53, 0x38, 0xf9, 0x19, 0x05, 0x8d, 0x96, 0x27, 0x04, 0x8d, 0x12, 0x02, 0x67, 0x04, 0x8d, 0x1a, - 0x13, 0x83, 0x46, 0x49, 0xda, 0x2f, 0x43, 0xd1, 0xc2, 0xdf, 0x2b, 0xb0, 0xb6, 0x4d, 0x33, 0x0f, - 0x31, 0x13, 0x76, 0x9a, 0x44, 0xfa, 0x6b, 0x61, 0x75, 0x43, 0x46, 0x8a, 0x3a, 0x39, 0x63, 0x51, - 0xdc, 0xb0, 0x0d, 0x75, 0xc1, 0x96, 0x13, 0x17, 0x67, 0x28, 0x8d, 0xa8, 0xf9, 0xf1, 0xa6, 0xfa, - 0x16, 0xac, 0xa7, 0x24, 0xe7, 0xf1, 0xdf, 0x64, 0x99, 0x2c, 0x13, 0x3c, 0x5e, 0x26, 0xab, 0x6e, - 0xc1, 0xd9, 0x5e, 0x60, 0x78, 0x41, 0x6a, 0xda, 0x33, 0xd0, 0xd2, 0xa2, 0x07, 0x99, 0x96, 0xd7, - 0x25, 0xf4, 0x60, 0xb5, 0x17, 0x38, 0xee, 0x33, 0x30, 0x25, 0xf6, 0x83, 0xcc, 0xdc, 0x19, 0x8b, - 0xeb, 0x40, 0x34, 0xd5, 0x75, 0x56, 0xa2, 0x91, 0x1e, 0xed, 0x6b, 0xb0, 0xc6, 0x2a, 0x24, 0x9e, - 0x65, 0x12, 0xe7, 0x44, 0x7d, 0x46, 0x9a, 0xef, 0xfb, 0x70, 0x46, 0x0a, 0xe6, 0xf1, 0xec, 0xe5, - 0x4d, 0x39, 0x7b, 0x39, 0x39, 0xf8, 0x17, 0x26, 0x2f, 0x7f, 0x52, 0x88, 0xd9, 0xe3, 0x09, 0x29, - 0x8c, 0xd7, 0xe5, 0xdc, 0xe5, 0x73, 0x93, 0xb9, 0x4a, 0xa9, 0xcb, 0xb4, 0x76, 0x16, 0x33, 0xb4, - 0xf3, 0x30, 0x95, 0x1f, 0x29, 0xa5, 0xf3, 0xc1, 0x09, 0x09, 0x3f, 0x97, 0xcc, 0xc8, 0x7d, 0x96, - 0xdf, 0x0c, 0x87, 0x0e, 0x93, 0x22, 0xaf, 0x25, 0x92, 0x22, 0xe7, 0x73, 0x24, 0x0d, 0xd3, 0x21, - 0x3f, 0x29, 0x41, 0x25, 0xec, 0x4b, 0xad, 0x70, 0x7a, 0xa9, 0x0a, 0x19, 0x4b, 0x15, 0xbf, 0x27, - 0x8b, 0xcf, 0x78, 0x4f, 0x96, 0x66, 0xb8, 0x27, 0xcf, 0x43, 0x85, 0xfe, 0xa0, 0x65, 0xa2, 0xec, - 0xde, 0x2b, 0x53, 0x80, 0x86, 0x8f, 0x22, 0x15, 0x5b, 0x98, 0x51, 0xc5, 0x12, 0xb9, 0xd4, 0xc5, - 0x64, 0x2e, 0xf5, 0xcd, 0xf0, 0x0e, 0x2b, 0xa7, 0x83, 0xbb, 0x21, 0xc7, 0xcc, 0xdb, 0x2b, 0x11, - 0x46, 0xac, 0xa4, 0xc3, 0x88, 0x11, 0xfd, 0x97, 0x36, 0xb7, 0xb2, 0xcf, 0x12, 0xa4, 0x71, 0x3d, - 0xe3, 0x36, 0xf2, 0x75, 0x29, 0x9e, 0xaf, 0xa4, 0x2b, 0xf5, 0x23, 0xbb, 0x10, 0x0f, 0xe5, 0x1f, - 0xc2, 0x9a, 0xb4, 0x11, 0x51, 0xe1, 0xd5, 0x6c, 0x36, 0x6e, 0x42, 0xd5, 0xd5, 0xaf, 0xe6, 0x63, - 0x96, 0x62, 0x42, 0x89, 0xd1, 0x9b, 0xa9, 0xcc, 0xdb, 0xcc, 0x1a, 0x7a, 0x53, 0x4e, 0xd2, 0x9f, - 0x5a, 0xaf, 0x52, 0x39, 0x7a, 0xea, 0x59, 0x18, 0x1e, 0xef, 0x66, 0x3e, 0x74, 0x85, 0x43, 0xda, - 0xd4, 0x81, 0x3f, 0xb2, 0x6c, 0xcb, 0x3f, 0x66, 0xfd, 0x0b, 0xcc, 0x81, 0x17, 0xa0, 0x36, 0x0d, - 0xde, 0xe1, 0xa7, 0x56, 0xa0, 0xf7, 0x1d, 0x13, 0x53, 0xad, 0x9d, 0xd7, 0xca, 0x04, 0xb0, 0xed, - 0x98, 0x38, 0x3a, 0x4f, 0xe5, 0xd3, 0x9e, 0xa7, 0x4a, 0xe2, 0x3c, 0xad, 0xc1, 0x82, 0x87, 0x0d, - 0xdf, 0xb1, 0xd9, 0x9b, 0x5e, 0xe3, 0x2d, 0xb2, 0x11, 0x23, 0xec, 0xfb, 0x64, 0x0c, 0xee, 0x48, - 0xf1, 0x66, 0xcc, 0xe9, 0x5b, 0xca, 0x71, 0xfa, 0x72, 0x0a, 0x98, 0x12, 0x4e, 0x5f, 0x2d, 0xc7, - 0xe9, 0x9b, 0xa9, 0x7e, 0x29, 0x72, 0x6f, 0xeb, 0xd3, 0xdc, 0xdb, 0xb8, 0x7f, 0xb8, 0x2c, 0xf9, - 0x87, 0x5f, 0xe4, 0x11, 0xfc, 0x77, 0x05, 0xd6, 0x53, 0x47, 0x86, 0x1f, 0xc2, 0xd7, 0x12, 0xb5, - 0x4d, 0xe7, 0x73, 0xd6, 0x29, 0x2c, 0x6d, 0x6a, 0x4b, 0xa5, 0x4d, 0xaf, 0xe4, 0x91, 0x7c, 0xe6, - 0x95, 0x4d, 0xbf, 0x2e, 0xc0, 0x73, 0x87, 0xae, 0x99, 0xf0, 0xba, 0xf8, 0x9b, 0x7b, 0x76, 0x43, + 0x75, 0x1c, 0x00, 0x24, 0x81, 0x07, 0x02, 0x04, 0x5b, 0x14, 0x09, 0x81, 0x92, 0x56, 0x1a, 0x79, + 0x3f, 0x92, 0x76, 0x29, 0xad, 0x56, 0xbb, 0xd6, 0xca, 0xfb, 0x11, 0x44, 0x72, 0x77, 0xb1, 0x96, + 0x48, 0x78, 0x40, 0xae, 0x7f, 0x29, 0x4f, 0x46, 0x98, 0x26, 0x38, 0x2b, 0x60, 0x66, 0x3c, 0x33, + 0x90, 0x44, 0x9f, 0x72, 0x4d, 0x4e, 0xa9, 0x72, 0x5c, 0xae, 0x72, 0xa5, 0x92, 0xca, 0x29, 0x87, + 0x1c, 0x9c, 0x4b, 0x52, 0xa9, 0x4a, 0x25, 0xb9, 0xa4, 0x52, 0x4e, 0xaa, 0x5c, 0xe5, 0x4b, 0xaa, + 0x7c, 0x48, 0x55, 0xec, 0xcd, 0xcd, 0x87, 0x9c, 0x7c, 0xc8, 0xcd, 0xa9, 0xfe, 0xcd, 0x4c, 0xcf, + 0x0c, 0x06, 0x20, 0x77, 0xbd, 0xbb, 0x27, 0xa2, 0x5f, 0xbf, 0xf7, 0xfa, 0x75, 0xf7, 0xeb, 0xd7, + 0xaf, 0xdf, 0x7b, 0x43, 0xa8, 0x18, 0xae, 0xb5, 0xe9, 0x7a, 0x4e, 0xe0, 0x20, 0xf0, 0xc6, 0x76, + 0x60, 0x8d, 0xf0, 0xe6, 0x93, 0x57, 0x5b, 0xaf, 0x0c, 0xac, 0xe0, 0x68, 0xfc, 0x68, 0xb3, 0xef, + 0x8c, 0x6e, 0x0c, 0x9c, 0x81, 0x73, 0x83, 0xa2, 0x3c, 0x1a, 0x1f, 0xd2, 0x16, 0x6d, 0xd0, 0x5f, + 0x8c, 0x54, 0xbd, 0x06, 0xf5, 0x8f, 0xb0, 0xe7, 0x5b, 0x8e, 0xad, 0xe1, 0xef, 0x8f, 0xb1, 0x1f, + 0xa0, 0x26, 0x2c, 0x3e, 0x61, 0x90, 0xa6, 0x72, 0x49, 0x79, 0xa9, 0xa2, 0x89, 0xa6, 0xfa, 0xd7, + 0x0a, 0x2c, 0x87, 0xc8, 0xbe, 0xeb, 0xd8, 0x3e, 0x9e, 0x8c, 0x8d, 0x2e, 0xc3, 0x12, 0x17, 0x4b, + 0xb7, 0x8d, 0x11, 0x6e, 0x16, 0x68, 0x77, 0x95, 0xc3, 0x76, 0x8d, 0x11, 0x46, 0x2f, 0xc2, 0xb2, + 0x40, 0x11, 0x4c, 0x8a, 0x14, 0xab, 0xce, 0xc1, 0x7c, 0x34, 0xb4, 0x09, 0x67, 0x04, 0xa2, 0xe1, + 0x5a, 0x21, 0x72, 0x89, 0x22, 0xaf, 0xf0, 0xae, 0xb6, 0x6b, 0x71, 0x7c, 0xf5, 0xbb, 0x50, 0xd9, + 0xde, 0xed, 0x6d, 0x39, 0xf6, 0xa1, 0x35, 0x20, 0x22, 0xfa, 0xd8, 0x23, 0x34, 0x4d, 0xe5, 0x52, + 0x91, 0x88, 0xc8, 0x9b, 0xa8, 0x05, 0x65, 0x1f, 0x1b, 0x5e, 0xff, 0x08, 0xfb, 0xcd, 0x02, 0xed, + 0x0a, 0xdb, 0x84, 0xca, 0x71, 0x03, 0xcb, 0xb1, 0xfd, 0x66, 0x91, 0x51, 0xf1, 0xa6, 0xfa, 0xe7, + 0x0a, 0x54, 0xbb, 0x8e, 0x17, 0x3c, 0x34, 0x5c, 0xd7, 0xb2, 0x07, 0xe8, 0x26, 0x94, 0xe9, 0x5a, + 0xf6, 0x9d, 0x21, 0x5d, 0x83, 0xfa, 0xad, 0xd5, 0xcd, 0x68, 0x43, 0x36, 0xbb, 0xbc, 0x4f, 0x0b, + 0xb1, 0xd0, 0xf3, 0x50, 0xef, 0x3b, 0x76, 0x60, 0x58, 0x36, 0xf6, 0x74, 0xd7, 0xf1, 0x02, 0xba, + 0x38, 0xf3, 0x5a, 0x2d, 0x84, 0x12, 0xfe, 0x68, 0x03, 0x2a, 0x47, 0x8e, 0x1f, 0x30, 0x8c, 0x22, + 0xc5, 0x28, 0x13, 0x00, 0xed, 0x5c, 0x87, 0x45, 0xda, 0x69, 0xb9, 0x7c, 0x19, 0x16, 0x48, 0xb3, + 0xe3, 0xaa, 0xbf, 0x50, 0x60, 0xfe, 0xa1, 0x33, 0xb6, 0x83, 0xc4, 0x30, 0x46, 0x70, 0xc4, 0xb7, + 0x28, 0x36, 0x8c, 0x11, 0x1c, 0x45, 0xc3, 0x10, 0x0c, 0xb6, 0x4b, 0x6c, 0x18, 0xd2, 0xd9, 0x82, + 0xb2, 0x87, 0x0d, 0xd3, 0xb1, 0x87, 0xc7, 0x54, 0x84, 0xb2, 0x16, 0xb6, 0xc9, 0xf6, 0xf9, 0x78, + 0x68, 0xd9, 0xe3, 0x67, 0xba, 0x87, 0x87, 0xc6, 0x23, 0x3c, 0xa4, 0xa2, 0x94, 0xb5, 0x3a, 0x07, + 0x6b, 0x0c, 0x8a, 0xde, 0x81, 0xaa, 0xeb, 0x39, 0xae, 0x31, 0x30, 0xc8, 0x0a, 0x36, 0xe7, 0xe9, + 0x22, 0x9d, 0x8f, 0x2f, 0x12, 0x15, 0xb8, 0x1b, 0xe1, 0x68, 0x71, 0x02, 0x55, 0x87, 0x4a, 0x67, + 0x5b, 0x2c, 0x77, 0x38, 0x71, 0x93, 0x4e, 0xa7, 0xc6, 0x27, 0x6e, 0x12, 0x85, 0x8b, 0xa6, 0x6b, + 0x99, 0x74, 0x2a, 0x35, 0xad, 0x1a, 0xc2, 0x3a, 0x26, 0x5a, 0x83, 0x85, 0x21, 0xb6, 0x07, 0xc1, + 0x11, 0x9d, 0x4b, 0x4d, 0xe3, 0x2d, 0xf5, 0xcf, 0x14, 0xa8, 0x1d, 0xf8, 0xd8, 0x23, 0x5a, 0xe9, + 0xbb, 0x46, 0x1f, 0xa3, 0x57, 0xa0, 0x34, 0x72, 0x4c, 0xcc, 0x37, 0xf4, 0x5c, 0x5c, 0xd6, 0x10, + 0xe9, 0xa1, 0x63, 0x62, 0x8d, 0xa2, 0xa1, 0xab, 0x50, 0x1a, 0x5b, 0x26, 0xd3, 0xa2, 0xea, 0xad, + 0xb3, 0x71, 0xf4, 0x50, 0x72, 0x8d, 0xa2, 0x10, 0xd4, 0x01, 0x41, 0x2d, 0xe6, 0xa2, 0x12, 0x14, + 0xf5, 0x77, 0x0a, 0x2c, 0x87, 0xa3, 0xed, 0x51, 0xf5, 0x43, 0xaf, 0xc1, 0xa2, 0x8d, 0x83, 0xa7, + 0x8e, 0xf7, 0x78, 0xba, 0x6c, 0x02, 0x13, 0x5d, 0x87, 0xa2, 0xcb, 0x57, 0x24, 0x97, 0x80, 0x60, + 0x11, 0x64, 0xcb, 0xed, 0xd3, 0x15, 0xca, 0x47, 0xb6, 0xdc, 0x3e, 0x51, 0x9e, 0xc0, 0xf0, 0x06, + 0x98, 0xee, 0x07, 0x53, 0xc4, 0x32, 0x03, 0x74, 0x4c, 0x74, 0x0f, 0xea, 0x63, 0x1f, 0x7b, 0xb6, + 0xaf, 0x8b, 0xa3, 0x44, 0xb6, 0xbe, 0x2a, 0x33, 0x95, 0xd6, 0x5d, 0xab, 0x31, 0x82, 0x3d, 0x7e, + 0xd6, 0x54, 0x80, 0x8e, 0x1d, 0xbc, 0x71, 0xfb, 0x23, 0x63, 0x38, 0xc6, 0x68, 0x15, 0xe6, 0x9f, + 0x90, 0x1f, 0x74, 0xe6, 0x45, 0x8d, 0x35, 0xd4, 0x7f, 0x2a, 0xc1, 0xc6, 0x03, 0xa2, 0x6e, 0x3d, + 0xc3, 0x36, 0x1f, 0x39, 0xcf, 0x7a, 0xb8, 0x3f, 0xf6, 0xac, 0xe0, 0x78, 0xcb, 0xb1, 0x03, 0xfc, + 0x2c, 0x40, 0x1f, 0xc0, 0x8a, 0x2d, 0xf8, 0x87, 0x82, 0x28, 0x54, 0x90, 0x8d, 0xcc, 0xd9, 0xb1, + 0xc1, 0xb5, 0x86, 0x2d, 0x03, 0x7c, 0x74, 0x3f, 0x52, 0x78, 0xc1, 0xa7, 0x90, 0x9e, 0x50, 0x6f, + 0x87, 0x4a, 0xc3, 0xb9, 0x88, 0xb3, 0x20, 0x78, 0xbc, 0x01, 0xc4, 0x04, 0xea, 0x86, 0xaf, 0x93, + 0x99, 0xd2, 0x55, 0xae, 0xde, 0x5a, 0x93, 0xb4, 0x20, 0x9c, 0xb0, 0x56, 0xf1, 0xc6, 0x76, 0xdb, + 0x27, 0x2b, 0x84, 0xee, 0x50, 0x73, 0x4a, 0xe8, 0x06, 0x9e, 0x33, 0x76, 0x9b, 0xe5, 0x5c, 0x42, + 0xa0, 0x84, 0xef, 0x13, 0x4c, 0x6a, 0x65, 0xf9, 0x91, 0xd5, 0x3d, 0xc7, 0x09, 0x0e, 0x7d, 0x71, + 0x4c, 0x05, 0x58, 0xa3, 0x50, 0x74, 0x03, 0xce, 0xf8, 0x63, 0xd7, 0x1d, 0xe2, 0x11, 0xb6, 0x03, + 0x63, 0xc8, 0x06, 0x22, 0x7b, 0x56, 0x7c, 0xa9, 0xa8, 0xa1, 0x78, 0x17, 0x65, 0xec, 0xa3, 0x8b, + 0x00, 0xae, 0x67, 0x3d, 0xb1, 0x86, 0x78, 0x80, 0xcd, 0xe6, 0x02, 0x65, 0x1a, 0x83, 0xa0, 0xd7, + 0x89, 0xe5, 0xed, 0xf7, 0x9d, 0x91, 0xdb, 0xac, 0xa4, 0xd7, 0x5b, 0xec, 0x53, 0xd7, 0x73, 0x0e, + 0xad, 0x21, 0xd6, 0x04, 0x2e, 0xfa, 0x2a, 0x94, 0x0d, 0xd7, 0x35, 0xbc, 0x91, 0xe3, 0x35, 0x61, + 0x3a, 0x5d, 0x88, 0x8c, 0x6e, 0xc3, 0x2a, 0xe7, 0xa1, 0xbb, 0xac, 0x93, 0x19, 0xb5, 0x45, 0xa2, + 0x97, 0xf7, 0x0b, 0x4d, 0x45, 0x43, 0xbc, 0x9f, 0xd3, 0x12, 0x13, 0xa7, 0xfe, 0xab, 0x02, 0xcb, + 0x09, 0x9e, 0xe8, 0x43, 0x58, 0x12, 0x1c, 0x82, 0x63, 0x57, 0x98, 0x81, 0x17, 0x73, 0xc4, 0xd8, + 0xe4, 0x7f, 0xf7, 0x8f, 0x5d, 0x4c, 0xad, 0x97, 0x68, 0xa0, 0x2b, 0x50, 0x1b, 0x3a, 0x7d, 0x63, + 0x48, 0xad, 0x96, 0x87, 0x0f, 0xb9, 0x8d, 0x5d, 0x0a, 0x81, 0x1a, 0x3e, 0x54, 0xef, 0x41, 0x35, + 0xc6, 0x00, 0x21, 0xa8, 0x6b, 0x6c, 0xa8, 0x6d, 0x7c, 0x68, 0x8c, 0x87, 0x41, 0x63, 0x0e, 0xd5, + 0x01, 0x0e, 0xec, 0x3e, 0xb9, 0xd3, 0x6c, 0x6c, 0x36, 0x14, 0x54, 0x83, 0xca, 0x03, 0xc1, 0xa2, + 0x51, 0x50, 0x7f, 0x52, 0x84, 0xb3, 0x54, 0xf1, 0xba, 0x8e, 0xc9, 0x4f, 0x02, 0xbf, 0x00, 0xaf, + 0x40, 0xad, 0x4f, 0xf7, 0x52, 0x77, 0x0d, 0x0f, 0xdb, 0x01, 0xbf, 0x06, 0x96, 0x18, 0xb0, 0x4b, + 0x61, 0x48, 0x83, 0x86, 0xcf, 0x67, 0xa4, 0xf7, 0xd9, 0xc9, 0xe1, 0xca, 0x2d, 0xcd, 0x3a, 0xe7, + 0xa0, 0x69, 0xcb, 0x7e, 0xea, 0xe4, 0x2d, 0xfa, 0xc7, 0x7e, 0x3f, 0x18, 0x0a, 0x6b, 0xb7, 0x99, + 0x62, 0x95, 0x14, 0x76, 0xb3, 0xc7, 0x08, 0x76, 0xec, 0xc0, 0x3b, 0xd6, 0x04, 0x39, 0x7a, 0x17, + 0xca, 0xce, 0x13, 0xec, 0x1d, 0x61, 0x83, 0x59, 0x99, 0xea, 0xad, 0x2b, 0x29, 0x56, 0x5b, 0xc2, + 0xd0, 0x6b, 0xd8, 0x77, 0xc6, 0x5e, 0x1f, 0xfb, 0x5a, 0x48, 0x84, 0xda, 0x50, 0xf1, 0x04, 0x98, + 0x5b, 0xa1, 0x99, 0x38, 0x44, 0x54, 0xad, 0xbb, 0xb0, 0x14, 0x17, 0x0e, 0x35, 0xa0, 0xf8, 0x18, + 0x1f, 0xf3, 0xc5, 0x24, 0x3f, 0x23, 0xfb, 0xc4, 0x76, 0x98, 0x35, 0xee, 0x16, 0xee, 0x28, 0xaa, + 0x07, 0x28, 0x9a, 0xe9, 0x43, 0x1c, 0x18, 0xa6, 0x11, 0x18, 0x08, 0x41, 0x89, 0xba, 0x46, 0x8c, + 0x05, 0xfd, 0x4d, 0xb8, 0x8e, 0xb9, 0xa9, 0xae, 0x68, 0xe4, 0x27, 0x3a, 0x0f, 0x95, 0xd0, 0x12, + 0x71, 0xff, 0x28, 0x02, 0x10, 0x3f, 0xc5, 0x08, 0x02, 0x3c, 0x72, 0x03, 0xba, 0x30, 0x35, 0x4d, + 0x34, 0xd5, 0x3f, 0x9e, 0x87, 0x46, 0x4a, 0x17, 0xee, 0x42, 0x79, 0xc4, 0x87, 0xe7, 0x36, 0xf0, + 0xa2, 0xe4, 0xac, 0xa4, 0x84, 0xd4, 0x42, 0x7c, 0xe2, 0x0b, 0x10, 0x5d, 0x8b, 0x79, 0x73, 0x61, + 0x9b, 0x29, 0xf9, 0x40, 0x37, 0x2d, 0x0f, 0xf7, 0x03, 0xc7, 0x3b, 0xe6, 0x82, 0x2e, 0x0d, 0x9d, + 0xc1, 0xb6, 0x80, 0xa1, 0xdb, 0x00, 0xa6, 0xed, 0xeb, 0x54, 0x87, 0x07, 0x7c, 0x1f, 0xa5, 0x0b, + 0x30, 0x74, 0xda, 0xb4, 0x8a, 0x69, 0xfb, 0x5c, 0xe4, 0xb7, 0xa0, 0x46, 0x3c, 0x20, 0x7d, 0xc4, + 0xee, 0x46, 0x66, 0x90, 0xaa, 0xb7, 0xd6, 0x65, 0xb9, 0x43, 0x7f, 0x4c, 0x5b, 0x72, 0xa3, 0x86, + 0x8f, 0xee, 0xc1, 0x02, 0x75, 0x42, 0xfc, 0xe6, 0x02, 0x25, 0x7b, 0x29, 0x7b, 0xba, 0x5c, 0xfb, + 0x1e, 0x50, 0x54, 0xa6, 0x7c, 0x9c, 0x0e, 0xed, 0x41, 0xd5, 0xb0, 0x6d, 0x27, 0x30, 0x98, 0xc5, + 0x5f, 0xa4, 0x6c, 0x5e, 0xc9, 0x65, 0xd3, 0x8e, 0xf0, 0x19, 0xaf, 0x38, 0x07, 0xf4, 0x55, 0x98, + 0xa7, 0x57, 0x02, 0xb7, 0xe1, 0x97, 0xa7, 0x1e, 0x0a, 0x8d, 0xe1, 0xa3, 0xb7, 0x61, 0xf1, 0xa9, + 0x65, 0x9b, 0xce, 0x53, 0x9f, 0xdb, 0x53, 0x49, 0x85, 0xbf, 0xc9, 0xba, 0x52, 0xc4, 0x82, 0xa6, + 0xf5, 0x26, 0x54, 0x63, 0xf3, 0x3b, 0x89, 0xfe, 0xb6, 0xde, 0x81, 0x46, 0x72, 0x4e, 0x27, 0xd2, + 0xff, 0x31, 0xac, 0x6a, 0x63, 0x3b, 0x12, 0x4d, 0x3c, 0x36, 0x6e, 0xc3, 0x02, 0xd7, 0x06, 0xa6, + 0x8c, 0xe7, 0xf3, 0x96, 0x55, 0xe3, 0xb8, 0xf1, 0x77, 0xc3, 0x91, 0x61, 0x9b, 0x43, 0xec, 0xf1, + 0x11, 0xc5, 0xbb, 0xe1, 0x03, 0x06, 0x55, 0xdf, 0x86, 0xb3, 0x89, 0x61, 0xf9, 0xb3, 0xe5, 0x2b, + 0x50, 0x77, 0x1d, 0x53, 0xf7, 0x19, 0x58, 0xf8, 0x92, 0x15, 0xa2, 0x3b, 0x02, 0xb7, 0x63, 0x12, + 0xf2, 0x5e, 0xe0, 0xb8, 0x69, 0xb1, 0x67, 0x23, 0x6f, 0xc2, 0x5a, 0x92, 0x9c, 0x0d, 0xaf, 0xbe, + 0x0b, 0xeb, 0x1a, 0x1e, 0x39, 0x4f, 0xf0, 0x69, 0x59, 0xb7, 0xa0, 0x99, 0x66, 0xc0, 0x99, 0x7f, + 0x1b, 0xd6, 0x23, 0x68, 0x2f, 0x30, 0x82, 0xb1, 0x7f, 0x22, 0xe6, 0xfc, 0x4d, 0xf7, 0xc8, 0xf1, + 0xd9, 0x46, 0x96, 0x35, 0xd1, 0x54, 0xd7, 0x61, 0xbe, 0xeb, 0x98, 0x9d, 0x2e, 0xaa, 0x43, 0xc1, + 0x72, 0x39, 0x71, 0xc1, 0x72, 0xd5, 0x7e, 0x7c, 0xcc, 0x5d, 0xe6, 0x75, 0xb2, 0xa1, 0x93, 0xa8, + 0xe8, 0x0e, 0xd4, 0x0d, 0xd3, 0xb4, 0x88, 0x22, 0x19, 0x43, 0xdd, 0x72, 0x85, 0xd3, 0xbc, 0x92, + 0xd8, 0xfa, 0x4e, 0x57, 0xab, 0x45, 0x88, 0x1d, 0xd7, 0x57, 0xef, 0x43, 0x25, 0x72, 0xd0, 0x5f, + 0x8f, 0xde, 0x67, 0x85, 0xe9, 0xbe, 0x5c, 0xf8, 0x78, 0xdb, 0x4d, 0x5d, 0x92, 0x5c, 0xcc, 0xd7, + 0x01, 0x42, 0xa3, 0x2a, 0xdc, 0xc3, 0xb3, 0x99, 0x2c, 0xb5, 0x18, 0xa2, 0xfa, 0xdf, 0xa5, 0xb8, + 0x91, 0x8d, 0x4d, 0xd9, 0x0c, 0xa7, 0x6c, 0x4a, 0x46, 0xb7, 0x70, 0x42, 0xa3, 0xfb, 0x2a, 0xcc, + 0xfb, 0x81, 0x11, 0x60, 0xee, 0x8f, 0x6f, 0x64, 0x13, 0x92, 0x81, 0xb1, 0xc6, 0x30, 0xd1, 0x05, + 0x80, 0xbe, 0x87, 0x8d, 0x00, 0x9b, 0xba, 0xc1, 0x6e, 0x85, 0xa2, 0x56, 0xe1, 0x90, 0x76, 0x40, + 0xac, 0x88, 0x78, 0x41, 0x64, 0x5c, 0x84, 0x13, 0xb6, 0x31, 0x7a, 0x4b, 0x84, 0xd6, 0x6b, 0x61, + 0xaa, 0xf5, 0xe2, 0xa4, 0xdc, 0x7a, 0x45, 0x96, 0x78, 0x31, 0xcf, 0x12, 0x33, 0xa2, 0x59, 0x2c, + 0x71, 0x39, 0xcf, 0x12, 0x73, 0x36, 0xf9, 0x96, 0x38, 0xc3, 0x90, 0x54, 0xb2, 0x0c, 0xc9, 0x17, + 0x69, 0x3a, 0x7f, 0xae, 0x40, 0x33, 0x7d, 0x9e, 0xb9, 0x1d, 0xbb, 0x0d, 0x0b, 0x3e, 0x85, 0xe4, + 0xdb, 0x4f, 0x4e, 0xc5, 0x71, 0xd1, 0x7d, 0x28, 0x59, 0xf6, 0xa1, 0xc3, 0x0f, 0xde, 0x66, 0x2e, + 0x0d, 0x1f, 0x69, 0xb3, 0x63, 0x1f, 0x3a, 0x6c, 0x05, 0x29, 0x6d, 0xeb, 0xab, 0x50, 0x09, 0x41, + 0x27, 0x9a, 0x4f, 0x07, 0x56, 0x13, 0x7a, 0xcb, 0x1e, 0x77, 0xa1, 0xa2, 0x2b, 0xb3, 0x2a, 0xba, + 0xfa, 0x5b, 0x25, 0x7e, 0xf8, 0xde, 0xb3, 0x86, 0x01, 0xf6, 0x52, 0x87, 0xef, 0x0d, 0xc1, 0x97, + 0x9d, 0xbc, 0x4b, 0x39, 0x7c, 0xd9, 0xdb, 0x89, 0x9f, 0xa2, 0x8f, 0xa0, 0x4e, 0xd5, 0x4e, 0xf7, + 0xf1, 0x90, 0xfa, 0x2f, 0xdc, 0x87, 0xbd, 0x91, 0xcd, 0x80, 0x8d, 0xce, 0xd4, 0xb6, 0xc7, 0x29, + 0xd8, 0x7a, 0xd5, 0x86, 0x71, 0x58, 0xeb, 0x1e, 0xa0, 0x34, 0xd2, 0x89, 0x56, 0xf0, 0x21, 0xb1, + 0x61, 0x7e, 0x90, 0x79, 0x9b, 0x1e, 0x52, 0x31, 0xf2, 0xb5, 0x81, 0x89, 0xaa, 0x71, 0x5c, 0xf5, + 0x3f, 0x8b, 0x00, 0x51, 0xe7, 0x97, 0xdc, 0x78, 0xdd, 0x0d, 0x8d, 0x08, 0xf3, 0x02, 0xd5, 0x6c, + 0x96, 0x99, 0xe6, 0xa3, 0x23, 0x9b, 0x0f, 0xe6, 0x0f, 0xbe, 0x38, 0x81, 0xc1, 0x89, 0x0d, 0xc7, + 0xe2, 0x97, 0xcd, 0x70, 0xbc, 0x07, 0x6b, 0x49, 0x35, 0xe1, 0x56, 0xe3, 0x65, 0x98, 0xb7, 0x02, + 0x3c, 0x62, 0xf1, 0xd0, 0x44, 0x10, 0x21, 0x86, 0xce, 0x90, 0xd4, 0x77, 0x60, 0x4d, 0xde, 0xab, + 0x93, 0xb9, 0x13, 0xea, 0x83, 0xa4, 0x3f, 0x12, 0x99, 0x2f, 0xae, 0x1f, 0x99, 0xe1, 0x98, 0x24, + 0x0d, 0xc3, 0x54, 0xff, 0x4d, 0x81, 0xb3, 0x89, 0xae, 0x09, 0x07, 0xff, 0xbb, 0xa9, 0x03, 0xcc, + 0xec, 0xdd, 0xed, 0x9c, 0x51, 0x3e, 0xc7, 0x53, 0xfc, 0x4d, 0x68, 0xc9, 0xdb, 0x23, 0x2d, 0xed, + 0x9b, 0x89, 0xa3, 0x7c, 0x79, 0xaa, 0xd0, 0xe1, 0x79, 0xee, 0xc2, 0x46, 0x26, 0xe3, 0xf4, 0x9a, + 0x17, 0x67, 0x5c, 0xf3, 0xff, 0x2b, 0xc4, 0x6d, 0x76, 0x3b, 0x08, 0x3c, 0xeb, 0xd1, 0x38, 0xc0, + 0x9f, 0xad, 0xa3, 0xb3, 0x1d, 0x9e, 0x6c, 0x66, 0x67, 0x5f, 0xce, 0xa6, 0x8c, 0x46, 0xcf, 0x3c, + 0xe3, 0x3d, 0xf9, 0x8c, 0x97, 0x28, 0xab, 0x57, 0xa7, 0xb2, 0xca, 0x3d, 0xed, 0x5f, 0xe4, 0x21, + 0xfe, 0x77, 0x05, 0x96, 0x13, 0xbb, 0x82, 0xee, 0x01, 0x18, 0xa1, 0xe8, 0x5c, 0x3f, 0x2e, 0x4d, + 0x9b, 0xa2, 0x16, 0xa3, 0x21, 0x77, 0x22, 0xf3, 0xe1, 0x32, 0xee, 0xc4, 0x0c, 0x1f, 0x2e, 0x74, + 0xe1, 0xde, 0x8a, 0x1e, 0xa0, 0x2c, 0x70, 0xa9, 0xe6, 0x3e, 0x40, 0x19, 0xad, 0x20, 0x51, 0x7f, + 0x58, 0x80, 0xd5, 0x2c, 0xee, 0xe8, 0x05, 0x28, 0xf6, 0xdd, 0x31, 0x9f, 0x89, 0x94, 0x3c, 0xd9, + 0x72, 0xc7, 0x07, 0xbe, 0x31, 0xc0, 0x1a, 0x41, 0x40, 0x37, 0x60, 0x61, 0x84, 0x47, 0x8e, 0x77, + 0xcc, 0xe5, 0x96, 0x42, 0x00, 0x0f, 0x69, 0x0f, 0xc3, 0xe6, 0x68, 0xe8, 0x56, 0xe4, 0xea, 0x32, + 0x79, 0x9b, 0x92, 0x47, 0xcf, 0xba, 0x18, 0x49, 0xe8, 0xdf, 0xde, 0x82, 0x45, 0xd7, 0x73, 0xfa, + 0xd8, 0xf7, 0x79, 0x84, 0xa2, 0x99, 0xc8, 0xe6, 0x90, 0x2e, 0x4e, 0xc3, 0x11, 0xd1, 0x5d, 0x80, + 0x30, 0xcd, 0x20, 0x6e, 0xa6, 0x96, 0x34, 0x0f, 0xd1, 0xcb, 0x96, 0x24, 0x86, 0x4d, 0x5e, 0x89, + 0xd9, 0x0b, 0xa7, 0xfe, 0x8b, 0x02, 0x4b, 0x71, 0x19, 0xd1, 0x79, 0xa8, 0x10, 0x86, 0x7e, 0x60, + 0x8c, 0x5c, 0x1e, 0x03, 0x8f, 0x00, 0x68, 0x17, 0x56, 0x4c, 0x16, 0x2c, 0xd4, 0x2d, 0x3b, 0xc0, + 0xde, 0xa1, 0xd1, 0x17, 0x4e, 0xcf, 0xe5, 0x8c, 0x69, 0x77, 0x04, 0x0e, 0x9b, 0x4b, 0x83, 0xd3, + 0x86, 0x60, 0xd4, 0x06, 0x08, 0xf9, 0x88, 0x43, 0x39, 0x03, 0xa3, 0x18, 0x91, 0xfa, 0x3b, 0x05, + 0xce, 0x66, 0x62, 0x65, 0x86, 0xbe, 0x6e, 0x41, 0xd9, 0x7b, 0xa6, 0x3f, 0x3a, 0x0e, 0xb0, 0x9f, + 0xb5, 0xc1, 0x07, 0xb1, 0xf8, 0xf6, 0xa2, 0xf7, 0xec, 0x3e, 0xc1, 0x43, 0xb7, 0xa1, 0xe2, 0x3d, + 0xd3, 0xb1, 0xe7, 0x39, 0x9e, 0xd0, 0xc9, 0x89, 0x44, 0x65, 0xef, 0xd9, 0x0e, 0x45, 0x24, 0x23, + 0x05, 0x62, 0xa4, 0xd2, 0x94, 0x91, 0x82, 0x68, 0xa4, 0x20, 0x1c, 0x69, 0x7e, 0xca, 0x48, 0x01, + 0x1f, 0x49, 0xfd, 0x18, 0x96, 0xe2, 0x2a, 0x33, 0x65, 0x0b, 0xdf, 0x82, 0x1a, 0x57, 0x29, 0xbd, + 0xef, 0x8c, 0xed, 0x60, 0xda, 0x32, 0x2c, 0x71, 0xec, 0x2d, 0x82, 0xac, 0xfe, 0x8d, 0x02, 0x95, + 0xce, 0xc8, 0x18, 0xe0, 0x9e, 0x8b, 0xfb, 0xc4, 0xa6, 0x58, 0xa4, 0xc1, 0x97, 0x98, 0x35, 0xd0, + 0x07, 0xb2, 0x7d, 0x64, 0x37, 0xe2, 0x0b, 0x52, 0x16, 0x41, 0x70, 0x98, 0x62, 0x14, 0x3f, 0xad, + 0x65, 0xbb, 0x05, 0xe5, 0xaf, 0xe3, 0x63, 0xe6, 0xfb, 0xcf, 0x48, 0xa7, 0xfe, 0xa8, 0x04, 0xeb, + 0x13, 0x22, 0xb5, 0xd4, 0x71, 0x74, 0xc7, 0xba, 0x8b, 0x3d, 0xcb, 0x31, 0xc5, 0xd2, 0xf6, 0xdd, + 0x71, 0x97, 0x02, 0xd0, 0x06, 0x90, 0x86, 0xfe, 0xfd, 0xb1, 0xc3, 0xef, 0xa6, 0xa2, 0x56, 0xee, + 0xbb, 0xe3, 0x6f, 0x90, 0xb6, 0xa0, 0xf5, 0x8f, 0x0c, 0x0f, 0x33, 0x35, 0x62, 0xb4, 0x3d, 0x0a, + 0x40, 0xaf, 0xc2, 0x59, 0x66, 0x50, 0xf4, 0xa1, 0x35, 0xb2, 0xc8, 0xf1, 0x8a, 0xe9, 0x4e, 0x51, + 0x43, 0xac, 0xf3, 0x01, 0xe9, 0xeb, 0xd8, 0x4c, 0x5b, 0x54, 0xa8, 0x39, 0xce, 0x48, 0xf7, 0xfb, + 0x8e, 0x87, 0x75, 0xc3, 0xfc, 0x98, 0x6a, 0x4c, 0x51, 0xab, 0x3a, 0xce, 0xa8, 0x47, 0x60, 0x6d, + 0xf3, 0x63, 0xf4, 0x1c, 0x54, 0xfb, 0xee, 0xd8, 0xc7, 0x81, 0x4e, 0xfe, 0xd0, 0xf7, 0x74, 0x45, + 0x03, 0x06, 0xda, 0x72, 0xc7, 0x7e, 0x0c, 0x61, 0x44, 0xbc, 0xb5, 0xc5, 0x38, 0xc2, 0x43, 0x3c, + 0xa2, 0x09, 0xa9, 0xa3, 0xf1, 0x00, 0xbb, 0xc6, 0x00, 0x33, 0xd1, 0xc4, 0xa3, 0x58, 0x4a, 0x48, + 0x7d, 0xc0, 0x51, 0xa8, 0x80, 0x5a, 0xfd, 0x28, 0xde, 0xf4, 0xd1, 0x87, 0xb0, 0x38, 0xb6, 0xad, + 0x43, 0x0b, 0x9b, 0xcd, 0x0a, 0xa5, 0xbd, 0x39, 0x43, 0x5c, 0x7c, 0xf3, 0x80, 0x91, 0xf0, 0x30, + 0x3d, 0x67, 0x80, 0xee, 0x42, 0x8b, 0x2f, 0x94, 0xff, 0xd4, 0x70, 0x93, 0xab, 0x05, 0x74, 0x09, + 0xd6, 0x18, 0x46, 0xef, 0xa9, 0xe1, 0xc6, 0x57, 0xac, 0x75, 0x17, 0x96, 0xe2, 0x4c, 0x4f, 0xa4, + 0x4b, 0xf7, 0xa1, 0x26, 0x4d, 0x92, 0xec, 0x36, 0x5d, 0x14, 0xdf, 0xfa, 0x81, 0x38, 0x00, 0x65, + 0x02, 0xe8, 0x59, 0x3f, 0xa0, 0x69, 0x44, 0x2a, 0x19, 0xe5, 0x53, 0xd2, 0x58, 0x43, 0x35, 0xa0, + 0x26, 0x65, 0xee, 0x88, 0x89, 0xa2, 0x29, 0x3a, 0x6e, 0xa2, 0xc8, 0x6f, 0x02, 0xf3, 0x9c, 0xa1, + 0x90, 0x80, 0xfe, 0x26, 0x30, 0x9a, 0x23, 0x62, 0x11, 0x6f, 0xfa, 0x9b, 0x0e, 0x81, 0x9f, 0xf0, + 0x84, 0x78, 0x45, 0x63, 0x0d, 0xf5, 0x2f, 0x14, 0x80, 0x2d, 0xc3, 0x35, 0x1e, 0x59, 0x43, 0x2b, + 0x38, 0x46, 0x57, 0xa1, 0x61, 0x98, 0xa6, 0xde, 0x17, 0x10, 0x0b, 0x8b, 0x0a, 0x85, 0x65, 0xc3, + 0x34, 0xb7, 0x62, 0x60, 0x74, 0x1d, 0x56, 0x4c, 0xcf, 0x71, 0x65, 0x5c, 0x56, 0xb2, 0xd0, 0x20, + 0x1d, 0x12, 0xf2, 0x1d, 0x68, 0x12, 0xbe, 0xc6, 0xe8, 0x91, 0x85, 0xed, 0x40, 0xa6, 0x61, 0xb5, + 0x0c, 0x6b, 0x86, 0x69, 0xb6, 0x59, 0x77, 0x9c, 0x52, 0xfd, 0xe7, 0x05, 0xb8, 0x20, 0xef, 0x78, + 0x32, 0x99, 0x7a, 0x17, 0x96, 0x12, 0xf2, 0xa6, 0xd2, 0x90, 0xd1, 0x0c, 0x35, 0x09, 0x37, 0x91, + 0x2e, 0x2c, 0xa4, 0xd2, 0x85, 0x99, 0x89, 0xda, 0xe2, 0x67, 0x94, 0xa8, 0x2d, 0x7d, 0xca, 0x44, + 0xed, 0xfc, 0x69, 0x13, 0xb5, 0x4b, 0x33, 0x27, 0x6a, 0x5f, 0xa0, 0x8f, 0x4a, 0x31, 0x22, 0xbd, + 0x1e, 0x99, 0x4d, 0xa8, 0x85, 0xdc, 0x6d, 0x51, 0x36, 0x93, 0x48, 0xe8, 0x2e, 0x9e, 0x24, 0xa1, + 0x5b, 0x9e, 0x98, 0xd0, 0xbd, 0x04, 0x4b, 0xb6, 0xa3, 0xdb, 0xf8, 0xa9, 0x4e, 0xb6, 0xc5, 0x6f, + 0x56, 0xd9, 0x1e, 0xd9, 0xce, 0x2e, 0x7e, 0xda, 0x25, 0x10, 0x74, 0x19, 0x96, 0x46, 0x86, 0xff, + 0x18, 0x9b, 0x34, 0xb3, 0xea, 0x37, 0x6b, 0x54, 0x9f, 0xaa, 0x0c, 0xd6, 0x25, 0x20, 0xf4, 0x3c, + 0x84, 0x72, 0x70, 0xa4, 0x3a, 0x45, 0xaa, 0x09, 0x28, 0x43, 0x8b, 0x25, 0x87, 0x97, 0x4f, 0x99, + 0x1c, 0x6e, 0x9c, 0x24, 0x39, 0xfc, 0x0a, 0x34, 0xc4, 0x6f, 0x91, 0x1d, 0x66, 0xc1, 0x3e, 0x9a, + 0x18, 0x5e, 0x16, 0x7d, 0x22, 0x03, 0x3c, 0x29, 0x97, 0x0c, 0xb9, 0xb9, 0xe4, 0x9f, 0x2a, 0xdc, + 0xc5, 0x0d, 0x0f, 0x10, 0x4f, 0x62, 0x49, 0xf9, 0x47, 0xe5, 0x34, 0xf9, 0x47, 0xb4, 0x3f, 0x31, + 0x43, 0x7b, 0x75, 0x32, 0xa7, 0x69, 0x39, 0x5a, 0xf5, 0x87, 0x0a, 0x5c, 0xe0, 0xfe, 0xe7, 0x84, + 0xfa, 0x89, 0x0c, 0xb5, 0x54, 0x26, 0xa8, 0x65, 0xdf, 0xc3, 0x26, 0xb6, 0x03, 0xcb, 0x18, 0xea, + 0xbe, 0x8b, 0xfb, 0x22, 0x2b, 0x13, 0x81, 0xa9, 0x67, 0x72, 0x19, 0x96, 0x58, 0xc1, 0x11, 0x77, + 0xb3, 0x59, 0x5d, 0x51, 0x95, 0xd6, 0x1c, 0x31, 0x90, 0xea, 0xc0, 0xfa, 0x84, 0x74, 0x56, 0xe6, + 0x32, 0x28, 0xe9, 0x65, 0xc8, 0x9d, 0x53, 0x7a, 0x19, 0x7e, 0xa4, 0xc0, 0x73, 0x9c, 0x64, 0xa2, + 0xed, 0xfb, 0x22, 0x16, 0xe2, 0xef, 0x94, 0xf0, 0x79, 0x90, 0x54, 0xa9, 0xad, 0xb4, 0x4a, 0x3d, + 0x9f, 0xb1, 0x02, 0xf9, 0x4a, 0xf5, 0xd1, 0x44, 0xa5, 0xba, 0x9e, 0xc7, 0x6b, 0xea, 0x7a, 0xfe, + 0x97, 0x02, 0xe7, 0x26, 0x0a, 0x90, 0xf0, 0xb7, 0x94, 0xa4, 0xbf, 0xc5, 0x7d, 0xb5, 0xc8, 0x05, + 0x66, 0xbe, 0x1a, 0xf5, 0x72, 0xb9, 0x53, 0xa4, 0x8f, 0x8c, 0x67, 0xd6, 0x68, 0x3c, 0xe2, 0xce, + 0x1a, 0x61, 0xf7, 0x90, 0x41, 0x4e, 0xe3, 0xad, 0xdd, 0x80, 0x55, 0x66, 0x48, 0xa9, 0xc3, 0x10, + 0x51, 0x30, 0xa7, 0x6d, 0x85, 0xf5, 0x11, 0xdf, 0x81, 0x13, 0xa8, 0x6d, 0x58, 0x09, 0xa7, 0x95, + 0x9b, 0xce, 0x8f, 0xa5, 0xe7, 0x0b, 0x72, 0x7a, 0xde, 0x86, 0x85, 0x6d, 0xfc, 0xc4, 0xea, 0xe3, + 0xcf, 0xa4, 0x4e, 0xef, 0x12, 0x54, 0x5d, 0xec, 0x8d, 0x2c, 0xdf, 0x0f, 0x6f, 0xcd, 0x8a, 0x16, + 0x07, 0xa9, 0x3f, 0x5d, 0x80, 0xe5, 0xa4, 0x0a, 0xbd, 0x99, 0xaa, 0x06, 0xb8, 0x90, 0xf9, 0x6a, + 0xcd, 0x08, 0xd7, 0x5c, 0x17, 0xcf, 0x8b, 0x42, 0x3a, 0x55, 0x16, 0x3e, 0x21, 0xc4, 0xab, 0xa3, + 0x09, 0x8b, 0x7d, 0x67, 0x34, 0x32, 0x6c, 0x53, 0x14, 0x53, 0xf2, 0x26, 0x59, 0x33, 0xc3, 0x1b, + 0xb0, 0x40, 0x4d, 0x45, 0xa3, 0xbf, 0xc9, 0x0e, 0x93, 0x17, 0xa3, 0x65, 0xd3, 0x7a, 0x02, 0xba, + 0x09, 0x15, 0x0d, 0x38, 0x68, 0xdb, 0xf2, 0xd0, 0x4b, 0x50, 0xc2, 0xf6, 0x13, 0x11, 0xc1, 0x95, + 0x02, 0x06, 0xe2, 0x49, 0xa1, 0x51, 0x0c, 0x74, 0x15, 0x16, 0x46, 0x44, 0x6b, 0x44, 0xce, 0x69, + 0x25, 0x55, 0x74, 0xa8, 0x71, 0x04, 0xf4, 0x32, 0x2c, 0x9a, 0x74, 0x3f, 0x84, 0x0f, 0x8d, 0xa4, + 0xca, 0x04, 0xda, 0xa5, 0x09, 0x14, 0xf4, 0x6e, 0x18, 0xad, 0xaa, 0xa4, 0xc3, 0xc8, 0x89, 0x65, + 0xce, 0x0c, 0x54, 0xed, 0xca, 0x0f, 0x31, 0x48, 0xc7, 0xbc, 0x92, 0x5c, 0xf2, 0x23, 0xd2, 0xe7, + 0xa0, 0x3c, 0x74, 0x06, 0x4c, 0x39, 0xaa, 0xac, 0x12, 0x77, 0xe8, 0x0c, 0xa8, 0x6e, 0xac, 0xc2, + 0xbc, 0x1f, 0x98, 0x96, 0x4d, 0x5d, 0x91, 0xb2, 0xc6, 0x1a, 0xe4, 0x0c, 0xd2, 0x1f, 0xba, 0x63, + 0xf7, 0x71, 0xb3, 0x46, 0xbb, 0x2a, 0x14, 0xb2, 0x67, 0xf7, 0xe9, 0x93, 0x2c, 0x08, 0x8e, 0x9b, + 0x75, 0x0a, 0x27, 0x3f, 0xa3, 0xa0, 0xd1, 0xf2, 0x84, 0xa0, 0x51, 0x42, 0xe0, 0x8c, 0xa0, 0x51, + 0x63, 0x62, 0xd0, 0x28, 0x49, 0xfb, 0x65, 0x28, 0x5a, 0xf8, 0x07, 0x05, 0xd6, 0xb6, 0x68, 0xe6, + 0x21, 0x66, 0xc2, 0x4e, 0x92, 0x48, 0x7f, 0x2d, 0xac, 0x6e, 0xc8, 0x48, 0x51, 0x27, 0x67, 0x2c, + 0x8a, 0x1b, 0xb6, 0xa0, 0x2e, 0xd8, 0x72, 0xe2, 0xe2, 0x0c, 0xa5, 0x11, 0x35, 0x3f, 0xde, 0x54, + 0xdf, 0x82, 0xf5, 0x94, 0xe4, 0x3c, 0xfe, 0x9b, 0x2c, 0x93, 0x65, 0x82, 0xc7, 0xcb, 0x64, 0xd5, + 0xbb, 0x70, 0xb6, 0x17, 0x18, 0x5e, 0x90, 0x9a, 0xf6, 0x0c, 0xb4, 0xb4, 0xe8, 0x41, 0xa6, 0xe5, + 0x75, 0x09, 0x3d, 0x58, 0xed, 0x05, 0x8e, 0x7b, 0x0a, 0xa6, 0xc4, 0x7e, 0x90, 0x99, 0x3b, 0x63, + 0x71, 0x1d, 0x88, 0xa6, 0xba, 0xce, 0x4a, 0x34, 0xd2, 0xa3, 0x7d, 0x0d, 0xd6, 0x58, 0x85, 0xc4, + 0x69, 0x26, 0x71, 0x4e, 0xd4, 0x67, 0xa4, 0xf9, 0xbe, 0x0f, 0x67, 0xa4, 0x60, 0x1e, 0xcf, 0x5e, + 0xde, 0x94, 0xb3, 0x97, 0x93, 0x83, 0x7f, 0x61, 0xf2, 0xf2, 0xc7, 0x85, 0x98, 0x3d, 0x9e, 0x90, + 0xc2, 0x78, 0x5d, 0xce, 0x5d, 0x3e, 0x37, 0x99, 0xab, 0x94, 0xba, 0x4c, 0x6b, 0x67, 0x31, 0x43, + 0x3b, 0x0f, 0x52, 0xf9, 0x91, 0x52, 0x3a, 0x1f, 0x9c, 0x90, 0xf0, 0x73, 0xc9, 0x8c, 0x3c, 0x60, + 0xf9, 0xcd, 0x70, 0xe8, 0x30, 0x29, 0xf2, 0x5a, 0x22, 0x29, 0xb2, 0x91, 0x23, 0x69, 0x98, 0x0e, + 0xf9, 0x71, 0x09, 0x2a, 0x61, 0x5f, 0x6a, 0x85, 0xd3, 0x4b, 0x55, 0xc8, 0x58, 0xaa, 0xf8, 0x3d, + 0x59, 0x3c, 0xe5, 0x3d, 0x59, 0x9a, 0xe1, 0x9e, 0xdc, 0x80, 0x0a, 0xfd, 0x41, 0xcb, 0x44, 0xd9, + 0xbd, 0x57, 0xa6, 0x00, 0x0d, 0x1f, 0x46, 0x2a, 0xb6, 0x30, 0xa3, 0x8a, 0x25, 0x72, 0xa9, 0x8b, + 0xc9, 0x5c, 0xea, 0x9b, 0xe1, 0x1d, 0x56, 0x4e, 0x07, 0x77, 0x43, 0x8e, 0x99, 0xb7, 0x57, 0x22, + 0x8c, 0x58, 0x49, 0x87, 0x11, 0x23, 0xfa, 0x2f, 0x6d, 0x6e, 0x65, 0x8f, 0x25, 0x48, 0xe3, 0x7a, + 0xc6, 0x6d, 0xe4, 0xeb, 0x52, 0x3c, 0x5f, 0x49, 0x57, 0xea, 0x47, 0x76, 0x21, 0x1e, 0xca, 0x3f, + 0x80, 0x35, 0x69, 0x23, 0xa2, 0xc2, 0xab, 0xd9, 0x6c, 0xdc, 0x84, 0xaa, 0xab, 0x5f, 0xce, 0xc7, + 0x2c, 0xc5, 0x84, 0x12, 0xa3, 0x37, 0x53, 0x99, 0xb7, 0x99, 0x35, 0xf4, 0xa6, 0x9c, 0xa4, 0x3f, + 0xb1, 0x5e, 0xa5, 0x72, 0xf4, 0xd4, 0xb3, 0x30, 0x3c, 0xde, 0xcd, 0x7c, 0xe8, 0x0a, 0x87, 0xb4, + 0xa9, 0x03, 0x7f, 0x68, 0xd9, 0x96, 0x7f, 0xc4, 0xfa, 0x17, 0x98, 0x03, 0x2f, 0x40, 0x6d, 0x1a, + 0xbc, 0xc3, 0xcf, 0xac, 0x40, 0xef, 0x3b, 0x26, 0xa6, 0x5a, 0x3b, 0xaf, 0x95, 0x09, 0x60, 0xcb, + 0x31, 0x71, 0x74, 0x9e, 0xca, 0x27, 0x3d, 0x4f, 0x95, 0xc4, 0x79, 0x5a, 0x83, 0x05, 0x0f, 0x1b, + 0xbe, 0x63, 0xb3, 0x37, 0xbd, 0xc6, 0x5b, 0x64, 0x23, 0x46, 0xd8, 0xf7, 0xc9, 0x18, 0xdc, 0x91, + 0xe2, 0xcd, 0x98, 0xd3, 0xb7, 0x94, 0xe3, 0xf4, 0xe5, 0x14, 0x30, 0x25, 0x9c, 0xbe, 0x5a, 0x8e, + 0xd3, 0x37, 0x53, 0xfd, 0x52, 0xe4, 0xde, 0xd6, 0xa7, 0xb9, 0xb7, 0x71, 0xff, 0x70, 0x59, 0xf2, + 0x0f, 0xbf, 0xc8, 0x23, 0xf8, 0x1f, 0x0a, 0xac, 0xa7, 0x8e, 0x0c, 0x3f, 0x84, 0xaf, 0x25, 0x6a, + 0x9b, 0x36, 0x72, 0xd6, 0x29, 0x2c, 0x6d, 0x6a, 0x4b, 0xa5, 0x4d, 0xaf, 0xe4, 0x91, 0x7c, 0xe6, + 0x95, 0x4d, 0xbf, 0x2a, 0xc0, 0x73, 0x07, 0xae, 0x99, 0xf0, 0xba, 0xf8, 0x9b, 0x7b, 0x76, 0x43, 0xf0, 0xa6, 0x9c, 0x9c, 0x9d, 0x29, 0x4c, 0xc4, 0x5d, 0xed, 0x77, 0x93, 0xf9, 0xd9, 0x19, 0x03, 0x02, 0x82, 0x0a, 0x7d, 0x2f, 0x2b, 0x7d, 0xfe, 0x96, 0x94, 0x7e, 0xca, 0x9f, 0xe0, 0xef, 0x39, - 0x69, 0xa4, 0xc2, 0xe5, 0xc9, 0x02, 0x70, 0x0f, 0xed, 0x0f, 0x61, 0x79, 0xf7, 0x29, 0xee, 0xf7, - 0x4e, 0xec, 0xfe, 0x29, 0x56, 0xbd, 0x01, 0xc5, 0xfe, 0xc8, 0xe4, 0x31, 0x75, 0xf2, 0x33, 0xee, + 0x69, 0xa4, 0xc2, 0xa5, 0xc9, 0x02, 0x70, 0x0f, 0xed, 0x0f, 0x61, 0x79, 0xe7, 0x19, 0xee, 0xf7, + 0x8e, 0xed, 0xfe, 0x09, 0x56, 0xbd, 0x01, 0xc5, 0xfe, 0xc8, 0xe4, 0x31, 0x75, 0xf2, 0x33, 0xee, 0x74, 0x16, 0x65, 0xa7, 0x53, 0x87, 0x46, 0x34, 0x02, 0xd7, 0xd6, 0x35, 0xa2, 0xad, 0x26, 0x41, 0x26, 0xcc, 0x97, 0x34, 0xde, 0xe2, 0x70, 0xec, 0xb1, 0x12, 0x65, 0x06, 0xc7, 0x9e, 0x27, 0x1b, - 0xb9, 0xa2, 0x6c, 0xe4, 0xd4, 0x9f, 0x2a, 0x50, 0x25, 0x23, 0x7c, 0x2a, 0xf9, 0xf9, 0x0b, 0xae, + 0xb9, 0xa2, 0x6c, 0xe4, 0xd4, 0x9f, 0x28, 0x50, 0x25, 0x23, 0x7c, 0x2a, 0xf9, 0xf9, 0x0b, 0xae, 0x18, 0xbd, 0xe0, 0xc2, 0x87, 0x60, 0x29, 0xfe, 0x10, 0x8c, 0x24, 0x9f, 0xa7, 0xe0, 0xb4, 0xe4, - 0x0b, 0x21, 0x1c, 0x7b, 0x9e, 0x7a, 0x19, 0x96, 0x98, 0x6c, 0x7c, 0xe6, 0x0d, 0x28, 0x8e, 0xbd, - 0xa1, 0xd8, 0xbf, 0xb1, 0x37, 0x54, 0xff, 0x58, 0x81, 0x5a, 0x3b, 0x08, 0x8c, 0xfe, 0xf1, 0x29, + 0x0b, 0x21, 0x1c, 0x7b, 0x9e, 0x7a, 0x09, 0x96, 0x98, 0x6c, 0x7c, 0xe6, 0x0d, 0x28, 0x8e, 0xbd, + 0xa1, 0xd8, 0xbf, 0xb1, 0x37, 0x54, 0xff, 0x44, 0x81, 0x5a, 0x3b, 0x08, 0x8c, 0xfe, 0xd1, 0x09, 0x26, 0x10, 0x0a, 0x57, 0x88, 0x0b, 0x97, 0x9e, 0x44, 0x24, 0x6e, 0x69, 0x82, 0xb8, 0xf3, 0x92, - 0xb8, 0x2a, 0xd4, 0x85, 0x2c, 0x13, 0x05, 0xde, 0x03, 0xd4, 0x75, 0xbc, 0xe0, 0x3d, 0xc7, 0x7b, - 0x62, 0x78, 0xe6, 0xe9, 0x1e, 0x79, 0x08, 0x4a, 0xfc, 0x13, 0xce, 0xe2, 0x4b, 0xf3, 0x1a, 0xfd, - 0xad, 0xbe, 0x08, 0x67, 0x24, 0x7e, 0x13, 0x07, 0xde, 0x82, 0x2a, 0xbd, 0xb4, 0xb8, 0xff, 0x7f, - 0x23, 0x9e, 0xb3, 0x9d, 0x72, 0xb9, 0xa9, 0x3b, 0xb0, 0x42, 0xdc, 0x17, 0x0a, 0x0f, 0xed, 0xcb, - 0x66, 0xc2, 0x45, 0x5e, 0x4f, 0xb1, 0x48, 0xb8, 0xc7, 0xbf, 0x55, 0x60, 0x9e, 0xc2, 0x53, 0x2e, - 0xc5, 0x79, 0xa8, 0x78, 0xd8, 0x75, 0xf4, 0xc0, 0x18, 0x84, 0x9f, 0xc7, 0x12, 0xc0, 0x81, 0x31, - 0xa0, 0x79, 0x00, 0xda, 0x69, 0x5a, 0x03, 0xec, 0x07, 0x22, 0xaf, 0x54, 0x25, 0xb0, 0x1d, 0x06, - 0x22, 0x0b, 0x43, 0xd3, 0x6f, 0x25, 0x9a, 0x65, 0xa3, 0xbf, 0xd1, 0x4b, 0xec, 0xeb, 0x96, 0xfc, - 0x64, 0x0a, 0xfd, 0xea, 0xa5, 0x05, 0xe5, 0x44, 0x16, 0x24, 0x6c, 0xa3, 0x6b, 0x50, 0xa2, 0x51, - 0xd5, 0xc5, 0xbc, 0x55, 0xa2, 0x28, 0x44, 0x2b, 0x5c, 0xcb, 0xb6, 0xb1, 0x49, 0xfd, 0x85, 0xb2, - 0xc6, 0x5b, 0xea, 0xbb, 0x80, 0xe2, 0x8b, 0xc7, 0x37, 0xe8, 0x1a, 0x2c, 0xd0, 0xb5, 0x15, 0x3e, - 0xdf, 0x4a, 0x8a, 0xb5, 0xc6, 0x11, 0xd4, 0xef, 0x02, 0x62, 0x63, 0x49, 0x7e, 0xde, 0x69, 0x36, - 0x30, 0xc7, 0xe3, 0xfb, 0x3b, 0x05, 0xce, 0x48, 0xdc, 0xb9, 0x7c, 0x2f, 0xca, 0xec, 0x33, 0xc4, - 0xe3, 0xac, 0xdf, 0x96, 0xae, 0xc1, 0x6b, 0x69, 0x31, 0x7e, 0x4f, 0x57, 0xe0, 0x2f, 0x14, 0x80, - 0xf6, 0x38, 0x38, 0xe6, 0xf1, 0xc5, 0xf8, 0x26, 0x2a, 0x89, 0x4d, 0x6c, 0x41, 0xd9, 0x35, 0x7c, - 0xff, 0x89, 0xe3, 0x89, 0x37, 0x57, 0xd8, 0xa6, 0x51, 0xc1, 0x31, 0xff, 0x4a, 0xb7, 0xa2, 0xd1, - 0xdf, 0xe8, 0x79, 0xa8, 0xb3, 0xef, 0xb6, 0x75, 0xc3, 0x34, 0x3d, 0x51, 0x9e, 0x53, 0xd1, 0x6a, - 0x0c, 0xda, 0x66, 0x40, 0x82, 0x66, 0xd1, 0x18, 0x7b, 0x70, 0xa2, 0x07, 0xce, 0x23, 0x6c, 0xf3, - 0x77, 0x54, 0x4d, 0x40, 0x0f, 0x08, 0x90, 0x25, 0xa9, 0x06, 0x96, 0x1f, 0x78, 0x02, 0x4d, 0xa4, - 0xda, 0x38, 0x94, 0xa2, 0xa9, 0x7f, 0xa3, 0x40, 0xa3, 0x3b, 0x1e, 0x0e, 0xd9, 0xe2, 0x3e, 0xcb, - 0x26, 0x5f, 0xe7, 0x53, 0x29, 0xa4, 0x55, 0x3e, 0x5a, 0x28, 0x3e, 0xc5, 0xcf, 0x24, 0xf4, 0x73, + 0xb8, 0x2a, 0xd4, 0x85, 0x2c, 0x13, 0x05, 0xde, 0x05, 0xd4, 0x75, 0xbc, 0xe0, 0x3d, 0xc7, 0x7b, + 0x6a, 0x78, 0xe6, 0xc9, 0x1e, 0x79, 0x08, 0x4a, 0xfc, 0x13, 0xce, 0xe2, 0x4b, 0xf3, 0x1a, 0xfd, + 0xad, 0xbe, 0x08, 0x67, 0x24, 0x7e, 0x13, 0x07, 0xbe, 0x0b, 0x55, 0x7a, 0x69, 0x71, 0xff, 0xff, + 0x7a, 0x3c, 0x67, 0x3b, 0xe5, 0x72, 0x53, 0xb7, 0x61, 0x85, 0xb8, 0x2f, 0x14, 0x1e, 0xda, 0x97, + 0x1b, 0x09, 0x17, 0x79, 0x3d, 0xc5, 0x22, 0xe1, 0x1e, 0xff, 0x56, 0x81, 0x79, 0x0a, 0x4f, 0xb9, + 0x14, 0x1b, 0x50, 0xf1, 0xb0, 0xeb, 0xe8, 0x81, 0x31, 0x08, 0x3f, 0x8f, 0x25, 0x80, 0x7d, 0x63, + 0x40, 0xf3, 0x00, 0xb4, 0xd3, 0xb4, 0x06, 0xd8, 0x0f, 0x44, 0x5e, 0xa9, 0x4a, 0x60, 0xdb, 0x0c, + 0x44, 0x16, 0x86, 0xa6, 0xdf, 0x4a, 0x34, 0xcb, 0x46, 0x7f, 0xa3, 0x97, 0xd8, 0xd7, 0x2d, 0xf9, + 0xc9, 0x14, 0xfa, 0xd5, 0x4b, 0x0b, 0xca, 0x89, 0x2c, 0x48, 0xd8, 0x46, 0x57, 0xa1, 0x44, 0xa3, + 0xaa, 0x8b, 0x79, 0xab, 0x44, 0x51, 0x88, 0x56, 0xb8, 0x96, 0x6d, 0x63, 0x93, 0xfa, 0x0b, 0x65, + 0x8d, 0xb7, 0xd4, 0x77, 0x01, 0xc5, 0x17, 0x8f, 0x6f, 0xd0, 0x55, 0x58, 0xa0, 0x6b, 0x2b, 0x7c, + 0xbe, 0x95, 0x14, 0x6b, 0x8d, 0x23, 0xa8, 0xdf, 0x05, 0xc4, 0xc6, 0x92, 0xfc, 0xbc, 0x93, 0x6c, + 0x60, 0x8e, 0xc7, 0xf7, 0xf7, 0x0a, 0x9c, 0x91, 0xb8, 0x73, 0xf9, 0x5e, 0x94, 0xd9, 0x67, 0x88, + 0xc7, 0x59, 0xbf, 0x2d, 0x5d, 0x83, 0x57, 0xd3, 0x62, 0xfc, 0x9e, 0xae, 0xc0, 0x9f, 0x2b, 0x00, + 0xed, 0x71, 0x70, 0xc4, 0xe3, 0x8b, 0xf1, 0x4d, 0x54, 0x12, 0x9b, 0xd8, 0x82, 0xb2, 0x6b, 0xf8, + 0xfe, 0x53, 0xc7, 0x13, 0x6f, 0xae, 0xb0, 0x4d, 0xa3, 0x82, 0x63, 0xfe, 0x95, 0x6e, 0x45, 0xa3, + 0xbf, 0xd1, 0xf3, 0x50, 0x67, 0xdf, 0x6d, 0xeb, 0x86, 0x69, 0x7a, 0xa2, 0x3c, 0xa7, 0xa2, 0xd5, + 0x18, 0xb4, 0xcd, 0x80, 0x04, 0xcd, 0xa2, 0x31, 0xf6, 0xe0, 0x58, 0x0f, 0x9c, 0xc7, 0xd8, 0xe6, + 0xef, 0xa8, 0x9a, 0x80, 0xee, 0x13, 0x20, 0x4b, 0x52, 0x0d, 0x2c, 0x3f, 0xf0, 0x04, 0x9a, 0x48, + 0xb5, 0x71, 0x28, 0x45, 0x53, 0xff, 0x56, 0x81, 0x46, 0x77, 0x3c, 0x1c, 0xb2, 0xc5, 0x3d, 0xcd, + 0x26, 0x5f, 0xe3, 0x53, 0x29, 0xa4, 0x55, 0x3e, 0x5a, 0x28, 0x3e, 0xc5, 0xcf, 0x24, 0xf4, 0x73, 0x13, 0x56, 0x62, 0x12, 0x73, 0xc5, 0x91, 0x1c, 0x61, 0x45, 0x76, 0x84, 0xd5, 0x36, 0x20, 0x16, - 0xed, 0x78, 0xe6, 0x59, 0xaa, 0x67, 0xe1, 0x8c, 0xc4, 0x82, 0x5f, 0xc5, 0xd7, 0xa1, 0xc6, 0xcb, - 0x7f, 0xb8, 0x42, 0x9c, 0x83, 0x32, 0x31, 0xa9, 0x7d, 0xcb, 0x14, 0x79, 0xf5, 0x45, 0xd7, 0x31, - 0xb7, 0x2d, 0xd3, 0x53, 0xbf, 0x01, 0x35, 0xfe, 0xc9, 0x23, 0xc7, 0xbd, 0x0b, 0x75, 0x5e, 0x93, - 0xa5, 0x4b, 0xdf, 0x08, 0x9d, 0xcb, 0xa8, 0x41, 0x12, 0x4b, 0x61, 0xc7, 0x9b, 0xea, 0xf7, 0xa0, - 0xc5, 0xbc, 0x05, 0x89, 0xb1, 0x98, 0xe0, 0x5d, 0x10, 0xc5, 0xba, 0x39, 0xfc, 0x65, 0xca, 0x9a, - 0x17, 0x6f, 0xaa, 0x17, 0xe1, 0x7c, 0x26, 0x7f, 0x3e, 0x7b, 0x17, 0x1a, 0x51, 0x07, 0xfb, 0x90, - 0x25, 0x2c, 0x16, 0x50, 0x62, 0xc5, 0x02, 0x6b, 0xa1, 0xa3, 0x5b, 0x10, 0x37, 0x17, 0xf5, 0x65, - 0xa3, 0x07, 0x4a, 0x71, 0xd2, 0x03, 0xa5, 0x24, 0x3d, 0x50, 0xd4, 0x07, 0xe1, 0x1a, 0xf2, 0x67, - 0xe2, 0x5b, 0xf4, 0x21, 0xcb, 0xc6, 0x16, 0x46, 0xed, 0x42, 0xf6, 0xfc, 0x18, 0x92, 0x16, 0xc3, - 0x57, 0xaf, 0x41, 0x4d, 0x36, 0x6f, 0x31, 0x8b, 0xa5, 0xa4, 0x2c, 0x56, 0x3d, 0x61, 0xac, 0x5e, - 0x4d, 0xf8, 0xef, 0x59, 0xeb, 0x9a, 0xf0, 0xde, 0xef, 0x48, 0x66, 0xeb, 0x2b, 0x52, 0x62, 0xf7, - 0xf7, 0x64, 0xb1, 0x56, 0xb9, 0x1d, 0x7f, 0xcf, 0x27, 0xf4, 0x7c, 0xa2, 0xea, 0x55, 0xa8, 0x1e, - 0x4e, 0xfa, 0xf0, 0xbc, 0x24, 0xaa, 0x91, 0xde, 0x80, 0xd5, 0xf7, 0xac, 0x21, 0xf6, 0x4f, 0xfc, - 0x00, 0x8f, 0x3a, 0xd4, 0xbc, 0x1c, 0x59, 0xd8, 0x43, 0x97, 0x00, 0xe8, 0xa3, 0xcb, 0x75, 0xac, - 0xf0, 0x63, 0xdb, 0x18, 0x44, 0xfd, 0x95, 0x02, 0xcb, 0x11, 0xe1, 0x2c, 0x75, 0x61, 0xaf, 0xc3, - 0xfc, 0x91, 0x2f, 0x82, 0x53, 0x89, 0xd0, 0x7b, 0x96, 0x08, 0x5a, 0xe9, 0xc8, 0xef, 0x98, 0xe8, - 0x0d, 0x80, 0xb1, 0x8f, 0x4d, 0x9e, 0xcc, 0x9a, 0x52, 0x1d, 0x57, 0x21, 0xa8, 0x2c, 0x1d, 0x76, - 0x07, 0xaa, 0x96, 0xed, 0x98, 0x98, 0x26, 0x3a, 0xcd, 0x69, 0x15, 0x72, 0xc0, 0x70, 0x0f, 0x7d, - 0x6c, 0xaa, 0x3a, 0xbf, 0xb7, 0xc4, 0x6a, 0x72, 0x55, 0xf8, 0x00, 0x56, 0x98, 0xf9, 0x39, 0x0a, - 0x85, 0xcd, 0xac, 0x3f, 0x4e, 0xac, 0x8a, 0xd6, 0xb0, 0xb8, 0xc7, 0x22, 0x88, 0xd4, 0x2d, 0x38, - 0x9b, 0xa8, 0xa5, 0x9c, 0x3d, 0xaa, 0xfb, 0x61, 0x22, 0x3c, 0x13, 0xa9, 0xea, 0x4d, 0xb9, 0x0e, - 0x3d, 0xaf, 0x74, 0x93, 0x97, 0x44, 0x1f, 0xc2, 0x39, 0x29, 0x76, 0x24, 0xc9, 0x72, 0x27, 0xe1, - 0x84, 0x5d, 0x9e, 0xcc, 0x2f, 0xe1, 0x8d, 0xfd, 0x8f, 0x02, 0xab, 0x59, 0x08, 0xcf, 0x18, 0xb7, - 0xfc, 0xce, 0x84, 0x6f, 0x58, 0x5e, 0x9b, 0x26, 0xd0, 0xe7, 0x12, 0xe7, 0xdd, 0x63, 0x15, 0xf0, - 0xd3, 0xf7, 0xa4, 0x38, 0xdb, 0x9e, 0xfc, 0xb6, 0x10, 0x8b, 0xcd, 0xe7, 0x54, 0xa9, 0x7f, 0x8a, - 0x58, 0xd9, 0x76, 0xa2, 0x48, 0xfd, 0x46, 0x26, 0xe1, 0x94, 0x1a, 0x75, 0x2d, 0xeb, 0x91, 0x7d, - 0x73, 0x1a, 0xa7, 0x2f, 0x6d, 0x18, 0xf5, 0x7f, 0x15, 0xa8, 0xcb, 0x1b, 0x82, 0xde, 0xcd, 0xa8, - 0x50, 0x7f, 0x6e, 0xca, 0x04, 0xa5, 0x02, 0x75, 0x5e, 0x11, 0x5e, 0x98, 0xbd, 0x22, 0xbc, 0x38, - 0x5b, 0x45, 0xf8, 0x3d, 0xa8, 0x3f, 0xf1, 0xac, 0xc0, 0x78, 0x38, 0xc4, 0xfa, 0xd0, 0x38, 0xc1, - 0x1e, 0xb7, 0x6e, 0xb9, 0x66, 0xa8, 0x26, 0x48, 0xee, 0x13, 0x0a, 0xf5, 0x1f, 0x14, 0x28, 0x0b, - 0x31, 0xa6, 0xd6, 0x64, 0xaf, 0x8f, 0x09, 0x9a, 0x4e, 0xeb, 0x40, 0x6d, 0xc3, 0x76, 0x74, 0x1f, - 0x93, 0x1b, 0x76, 0x6a, 0x85, 0xf3, 0x2a, 0xa5, 0xdb, 0x76, 0x3c, 0xbc, 0x67, 0xd8, 0x4e, 0x8f, - 0x11, 0xa1, 0x36, 0x34, 0x18, 0x3f, 0xca, 0x8a, 0x30, 0x9d, 0x6a, 0xd7, 0xeb, 0x94, 0x80, 0x30, - 0x21, 0xcc, 0x7c, 0xf5, 0x2f, 0x8b, 0x50, 0x8d, 0xad, 0xcc, 0x94, 0x09, 0x6c, 0xc3, 0x8a, 0xc8, - 0xc5, 0xfb, 0x38, 0x98, 0xad, 0x38, 0x7b, 0x99, 0x53, 0xf4, 0x70, 0xc0, 0xee, 0x93, 0xbb, 0xb0, - 0x6c, 0x3c, 0x36, 0xac, 0x21, 0x5d, 0xf5, 0x99, 0x2e, 0xa3, 0x7a, 0x88, 0x1f, 0xde, 0x48, 0x6c, - 0xde, 0x33, 0xd5, 0x6c, 0x03, 0xc5, 0x8d, 0x0a, 0xc4, 0x7d, 0x3f, 0x56, 0xcf, 0x91, 0x5b, 0x20, - 0xee, 0xfb, 0xe1, 0x78, 0xb4, 0x7e, 0x94, 0x96, 0xc4, 0xfb, 0xfc, 0x53, 0xd7, 0xc9, 0xe3, 0x11, - 0xdc, 0xf7, 0x28, 0x2a, 0x59, 0xb0, 0x91, 0xf1, 0xb1, 0xe3, 0xe9, 0x71, 0xfa, 0xc5, 0x29, 0x0b, - 0x46, 0x29, 0xba, 0x21, 0x13, 0xf5, 0x1d, 0x38, 0xa7, 0x61, 0xc7, 0xc5, 0x76, 0x78, 0x4e, 0xee, - 0x3b, 0x83, 0x53, 0xdc, 0x74, 0x17, 0xa0, 0x95, 0x45, 0xcf, 0x2c, 0xeb, 0xf5, 0x17, 0xa0, 0x2c, - 0xfe, 0x29, 0x15, 0x5a, 0x84, 0xe2, 0xc1, 0x76, 0xb7, 0x31, 0x47, 0x7e, 0x1c, 0xee, 0x74, 0x1b, - 0x0a, 0x2a, 0x43, 0xa9, 0xb7, 0x7d, 0xd0, 0x6d, 0x14, 0xae, 0x8f, 0xa0, 0x91, 0xfc, 0xbf, 0x4c, - 0x68, 0x1d, 0xce, 0x74, 0xb5, 0xfd, 0x6e, 0xfb, 0xfd, 0xf6, 0x41, 0x67, 0x7f, 0x4f, 0xef, 0x6a, - 0x9d, 0x8f, 0xda, 0x07, 0xbb, 0x8d, 0x39, 0x74, 0x05, 0x2e, 0xc6, 0x3b, 0x3e, 0xd8, 0xef, 0x1d, - 0xe8, 0x07, 0xfb, 0xfa, 0xf6, 0xfe, 0xde, 0x41, 0xbb, 0xb3, 0xb7, 0xab, 0x35, 0x14, 0x74, 0x11, - 0xce, 0xc5, 0x51, 0xee, 0x75, 0x76, 0x3a, 0xda, 0xee, 0x36, 0xf9, 0xdd, 0xbe, 0xdf, 0x28, 0x5c, - 0x7f, 0x1b, 0x6a, 0xd2, 0x3f, 0x18, 0x22, 0x22, 0x75, 0xf7, 0x77, 0x1a, 0x73, 0xa8, 0x06, 0x95, - 0x38, 0x9f, 0x32, 0x94, 0xf6, 0xf6, 0x77, 0x76, 0x1b, 0x05, 0x04, 0xb0, 0x70, 0xd0, 0xd6, 0xde, - 0xdf, 0x3d, 0x68, 0x14, 0xaf, 0x6f, 0x25, 0x3f, 0x94, 0xc1, 0x68, 0x05, 0x6a, 0xbd, 0xf6, 0xde, - 0xce, 0xbd, 0xfd, 0x6f, 0xe9, 0xda, 0x6e, 0x7b, 0xe7, 0xdb, 0x8d, 0x39, 0xb4, 0x0a, 0x0d, 0x01, - 0xda, 0xdb, 0x3f, 0x60, 0x50, 0xe5, 0xfa, 0xa3, 0x84, 0x05, 0xc3, 0xe8, 0x2c, 0xac, 0x84, 0x43, - 0xea, 0xdb, 0xda, 0x6e, 0xfb, 0x60, 0x97, 0x48, 0x22, 0x81, 0xb5, 0xc3, 0xbd, 0xbd, 0xce, 0xde, - 0xfb, 0x0d, 0x85, 0x70, 0x8d, 0xc0, 0xbb, 0xdf, 0xea, 0x10, 0xe4, 0x82, 0x8c, 0x7c, 0xb8, 0xf7, - 0xf5, 0xbd, 0xfd, 0x6f, 0xee, 0x35, 0x8a, 0xb7, 0x7e, 0xb8, 0x12, 0xfe, 0x73, 0x97, 0x1e, 0xf6, - 0x68, 0x05, 0xd0, 0x0e, 0x2c, 0x8a, 0x7f, 0x75, 0x26, 0xdd, 0x73, 0xf2, 0xbf, 0x66, 0x6b, 0x9d, - 0xcf, 0xec, 0xe3, 0xaf, 0x8d, 0x39, 0xf4, 0x11, 0xf5, 0xfe, 0x63, 0x9f, 0x72, 0x5e, 0x4e, 0x78, - 0xdc, 0xa9, 0x2f, 0x46, 0x5b, 0x57, 0x72, 0x30, 0x42, 0xbe, 0xdf, 0x26, 0xae, 0x7d, 0xfc, 0xff, - 0x18, 0xa0, 0x2b, 0xb2, 0x67, 0x9e, 0xf1, 0x2f, 0x12, 0x5a, 0x6a, 0x1e, 0x4a, 0xc8, 0x5a, 0x87, - 0x46, 0xf2, 0xff, 0x18, 0x20, 0x29, 0xe0, 0x3d, 0xe1, 0xdf, 0x24, 0xb4, 0xbe, 0x92, 0x8f, 0x14, - 0x1f, 0x20, 0xf5, 0x79, 0xfe, 0xd5, 0xfc, 0x0f, 0x9e, 0x33, 0x06, 0x98, 0xf4, 0x55, 0x34, 0x5b, - 0x1c, 0xf9, 0x6b, 0x3b, 0x94, 0xf8, 0x22, 0x3e, 0xe3, 0x43, 0x5d, 0x79, 0x71, 0xb2, 0x3f, 0xd2, - 0x54, 0xe7, 0xd0, 0x1f, 0xc0, 0x72, 0xa2, 0x88, 0x03, 0x49, 0x84, 0xd9, 0xb5, 0x29, 0xad, 0xab, - 0xb9, 0x38, 0xf2, 0xae, 0xc6, 0x0b, 0x35, 0x92, 0xbb, 0x9a, 0x51, 0x00, 0x92, 0xdc, 0xd5, 0xcc, - 0x3a, 0x0f, 0xaa, 0x88, 0x52, 0x51, 0x86, 0xac, 0x88, 0x59, 0x45, 0x20, 0xad, 0x2b, 0x39, 0x18, - 0xf1, 0x05, 0x49, 0x94, 0x65, 0xc8, 0x0b, 0x92, 0x5d, 0xf0, 0xd1, 0xba, 0x9a, 0x8b, 0x93, 0xdc, - 0xc9, 0x28, 0x1d, 0x9c, 0xde, 0xc9, 0x54, 0x49, 0x42, 0x7a, 0x27, 0xd3, 0xd9, 0x64, 0xbe, 0x93, - 0x89, 0x04, 0xae, 0x9a, 0x9b, 0x9a, 0xca, 0xda, 0xc9, 0xec, 0xf4, 0x95, 0x3a, 0x87, 0x9e, 0x40, - 0x73, 0x52, 0x52, 0x04, 0xdd, 0x38, 0x45, 0xee, 0xa6, 0xf5, 0xf2, 0x6c, 0xc8, 0xe1, 0xc0, 0x18, - 0x50, 0xfa, 0x9a, 0x41, 0xcf, 0xcb, 0xcb, 0x3d, 0xe1, 0x1a, 0x6b, 0xbd, 0x30, 0x0d, 0x2d, 0x1c, - 0xe6, 0x7d, 0x28, 0x8b, 0x74, 0x0b, 0x92, 0x4c, 0x60, 0x22, 0xcd, 0xd3, 0xba, 0x90, 0xdd, 0x19, - 0x32, 0xfa, 0x1a, 0x94, 0x08, 0x14, 0xad, 0x27, 0xf1, 0x04, 0x83, 0x66, 0xba, 0x23, 0x24, 0x6e, - 0xc3, 0x02, 0xcb, 0x23, 0x20, 0x29, 0x90, 0x21, 0xe5, 0x39, 0x5a, 0xad, 0xac, 0xae, 0x90, 0x45, - 0x97, 0xfd, 0xe3, 0x48, 0x9e, 0x16, 0x40, 0x97, 0x92, 0xff, 0xc1, 0x48, 0xce, 0x3f, 0xb4, 0x9e, - 0x9b, 0xd8, 0x1f, 0xd7, 0xd9, 0x84, 0xeb, 0x7d, 0x25, 0xe7, 0x9d, 0x94, 0xa5, 0xb3, 0xd9, 0xaf, - 0x2f, 0xb6, 0xb9, 0xe9, 0xd7, 0x99, 0xbc, 0xb9, 0x13, 0x5f, 0xc0, 0xf2, 0xe6, 0x4e, 0x7e, 0xe4, - 0xb1, 0xa3, 0x91, 0xfc, 0x1c, 0x54, 0xcd, 0xfb, 0x24, 0x39, 0xeb, 0x68, 0x4c, 0xf8, 0xd4, 0x59, - 0x9d, 0x43, 0xc7, 0x70, 0x26, 0xe3, 0x5b, 0x68, 0xf4, 0xc2, 0x64, 0xfb, 0x2b, 0x8d, 0xf2, 0xe2, - 0x54, 0xbc, 0xf8, 0x48, 0x19, 0xb1, 0x40, 0x79, 0xa4, 0xc9, 0xc1, 0x48, 0x79, 0xa4, 0xbc, 0xa0, - 0x22, 0x55, 0x44, 0x6e, 0x43, 0xce, 0x65, 0x05, 0xc8, 0x32, 0x14, 0x31, 0x69, 0x31, 0x6e, 0xfd, - 0x45, 0x11, 0x96, 0x58, 0x0c, 0x97, 0x3b, 0x20, 0x0f, 0x00, 0xa2, 0x74, 0x08, 0xba, 0x98, 0x9c, - 0xb6, 0x94, 0x63, 0x6a, 0x5d, 0x9a, 0xd4, 0x1d, 0x57, 0xf4, 0x58, 0x9a, 0x41, 0x56, 0xf4, 0x74, - 0xd6, 0x44, 0x56, 0xf4, 0x8c, 0xfc, 0x84, 0x3a, 0x87, 0x3e, 0x84, 0x4a, 0x18, 0xd5, 0x46, 0x72, - 0x3c, 0x3c, 0x11, 0x9e, 0x6f, 0x5d, 0x9c, 0xd0, 0x1b, 0x97, 0x2e, 0x16, 0xac, 0x96, 0xa5, 0x4b, - 0x07, 0xc2, 0x65, 0xe9, 0xb2, 0xa2, 0xdc, 0xd1, 0x7c, 0x59, 0xd8, 0x2b, 0x63, 0xbe, 0x52, 0x74, - 0x31, 0x63, 0xbe, 0x72, 0xbc, 0x4c, 0x9d, 0xbb, 0x77, 0xf7, 0xe7, 0xbf, 0xb9, 0xa4, 0xfc, 0xea, - 0x37, 0x97, 0xe6, 0x7e, 0xf8, 0xc9, 0x25, 0xe5, 0xe7, 0x9f, 0x5c, 0x52, 0x7e, 0xf9, 0xc9, 0x25, - 0xe5, 0xd7, 0x9f, 0x5c, 0x52, 0xfe, 0xe4, 0xbf, 0x2f, 0xcd, 0x7d, 0x47, 0x7d, 0x74, 0xc7, 0xdf, - 0xb0, 0x9c, 0xcd, 0xbe, 0x67, 0xbd, 0x62, 0xb8, 0xd6, 0xa6, 0xfb, 0x68, 0xb0, 0x69, 0xb8, 0x96, - 0xbf, 0xc9, 0xf9, 0x6e, 0x3e, 0x7e, 0xf5, 0xe1, 0x02, 0xfd, 0x77, 0xb3, 0xaf, 0xfd, 0x7f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x72, 0x49, 0x29, 0xa4, 0x28, 0x58, 0x00, 0x00, + 0xed, 0x38, 0xf5, 0x2c, 0xd5, 0xb3, 0x70, 0x46, 0x62, 0xc1, 0xaf, 0xe2, 0x6b, 0x50, 0xe3, 0xe5, + 0x3f, 0x5c, 0x21, 0xce, 0x41, 0x99, 0x98, 0xd4, 0xbe, 0x65, 0x8a, 0xbc, 0xfa, 0xa2, 0xeb, 0x98, + 0x5b, 0x96, 0xe9, 0xa9, 0xdf, 0x80, 0x1a, 0xff, 0xe4, 0x91, 0xe3, 0xde, 0x83, 0x3a, 0xaf, 0xc9, + 0xd2, 0xa5, 0x6f, 0x84, 0xce, 0x65, 0xd4, 0x20, 0x89, 0xa5, 0xb0, 0xe3, 0x4d, 0xf5, 0x7b, 0xd0, + 0x62, 0xde, 0x82, 0xc4, 0x58, 0x4c, 0xf0, 0x1e, 0x88, 0x62, 0xdd, 0x1c, 0xfe, 0x32, 0x65, 0xcd, + 0x8b, 0x37, 0xd5, 0x0b, 0xb0, 0x91, 0xc9, 0x9f, 0xcf, 0xde, 0x85, 0x46, 0xd4, 0xc1, 0x3e, 0x64, + 0x09, 0x8b, 0x05, 0x94, 0x58, 0xb1, 0xc0, 0x5a, 0xe8, 0xe8, 0x16, 0xc4, 0xcd, 0x45, 0x7d, 0xd9, + 0xe8, 0x81, 0x52, 0x9c, 0xf4, 0x40, 0x29, 0x49, 0x0f, 0x14, 0xf5, 0x61, 0xb8, 0x86, 0xfc, 0x99, + 0xf8, 0x16, 0x7d, 0xc8, 0xb2, 0xb1, 0x85, 0x51, 0x3b, 0x9f, 0x3d, 0x3f, 0x86, 0xa4, 0xc5, 0xf0, + 0xd5, 0xab, 0x50, 0x93, 0xcd, 0x5b, 0xcc, 0x62, 0x29, 0x29, 0x8b, 0x55, 0x4f, 0x18, 0xab, 0x57, + 0x13, 0xfe, 0x7b, 0xd6, 0xba, 0x26, 0xbc, 0xf7, 0x3b, 0x92, 0xd9, 0xfa, 0x8a, 0x94, 0xd8, 0xfd, + 0x3d, 0x59, 0xac, 0x55, 0x6e, 0xc7, 0xdf, 0xf3, 0x09, 0x3d, 0x9f, 0xa8, 0x7a, 0x05, 0xaa, 0x07, + 0x93, 0x3e, 0x3c, 0x2f, 0x89, 0x6a, 0xa4, 0x37, 0x60, 0xf5, 0x3d, 0x6b, 0x88, 0xfd, 0x63, 0x3f, + 0xc0, 0xa3, 0x0e, 0x35, 0x2f, 0x87, 0x16, 0xf6, 0xd0, 0x45, 0x00, 0xfa, 0xe8, 0x72, 0x1d, 0x2b, + 0xfc, 0xd8, 0x36, 0x06, 0x51, 0x7f, 0xa9, 0xc0, 0x72, 0x44, 0x38, 0x4b, 0x5d, 0xd8, 0xeb, 0x30, + 0x7f, 0xe8, 0x8b, 0xe0, 0x54, 0x22, 0xf4, 0x9e, 0x25, 0x82, 0x56, 0x3a, 0xf4, 0x3b, 0x26, 0x7a, + 0x03, 0x60, 0xec, 0x63, 0x93, 0x27, 0xb3, 0xa6, 0x54, 0xc7, 0x55, 0x08, 0x2a, 0x4b, 0x87, 0xdd, + 0x81, 0xaa, 0x65, 0x3b, 0x26, 0xa6, 0x89, 0x4e, 0x73, 0x5a, 0x85, 0x1c, 0x30, 0xdc, 0x03, 0x1f, + 0x9b, 0xaa, 0xce, 0xef, 0x2d, 0xb1, 0x9a, 0x5c, 0x15, 0x3e, 0x80, 0x15, 0x66, 0x7e, 0x0e, 0x43, + 0x61, 0x33, 0xeb, 0x8f, 0x13, 0xab, 0xa2, 0x35, 0x2c, 0xee, 0xb1, 0x08, 0x22, 0xf5, 0x2e, 0x9c, + 0x4d, 0xd4, 0x52, 0xce, 0x1e, 0xd5, 0xfd, 0x30, 0x11, 0x9e, 0x89, 0x54, 0xf5, 0xa6, 0x5c, 0x87, + 0x9e, 0x57, 0xba, 0xc9, 0x4b, 0xa2, 0x0f, 0xe0, 0x9c, 0x14, 0x3b, 0x92, 0x64, 0xb9, 0x93, 0x70, + 0xc2, 0x2e, 0x4d, 0xe6, 0x97, 0xf0, 0xc6, 0x7e, 0xa3, 0xc0, 0x6a, 0x16, 0xc2, 0x29, 0xe3, 0x96, + 0xdf, 0x99, 0xf0, 0x0d, 0xcb, 0x6b, 0xd3, 0x04, 0xfa, 0x5c, 0xe2, 0xbc, 0xbb, 0xac, 0x02, 0x7e, + 0xfa, 0x9e, 0x14, 0x67, 0xdb, 0x93, 0xdf, 0x16, 0x62, 0xb1, 0xf9, 0x9c, 0x2a, 0xf5, 0x4f, 0x11, + 0x2b, 0xdb, 0x4a, 0x14, 0xa9, 0x5f, 0xcf, 0x24, 0x9c, 0x52, 0xa3, 0xae, 0x65, 0x3d, 0xb2, 0x6f, + 0x4e, 0xe3, 0xf4, 0xa5, 0x0d, 0xa3, 0xfe, 0xaf, 0x02, 0x75, 0x79, 0x43, 0xd0, 0xbb, 0x19, 0x15, + 0xea, 0xcf, 0x4d, 0x99, 0xa0, 0x54, 0xa0, 0xce, 0x2b, 0xc2, 0x0b, 0xb3, 0x57, 0x84, 0x17, 0x67, + 0xab, 0x08, 0xbf, 0x0f, 0xf5, 0xa7, 0x9e, 0x15, 0x18, 0x8f, 0x86, 0x58, 0x1f, 0x1a, 0xc7, 0xd8, + 0xe3, 0xd6, 0x2d, 0xd7, 0x0c, 0xd5, 0x04, 0xc9, 0x03, 0x42, 0xa1, 0xfe, 0xa3, 0x02, 0x65, 0x21, + 0xc6, 0xd4, 0x9a, 0xec, 0xf5, 0x31, 0x41, 0xd3, 0x69, 0x1d, 0xa8, 0x6d, 0xd8, 0x8e, 0xee, 0x63, + 0x72, 0xc3, 0x4e, 0xad, 0x70, 0x5e, 0xa5, 0x74, 0x5b, 0x8e, 0x87, 0x77, 0x0d, 0xdb, 0xe9, 0x31, + 0x22, 0xd4, 0x86, 0x06, 0xe3, 0x47, 0x59, 0x11, 0xa6, 0x53, 0xed, 0x7a, 0x9d, 0x12, 0x10, 0x26, + 0x84, 0x99, 0xaf, 0xfe, 0x55, 0x11, 0xaa, 0xb1, 0x95, 0x99, 0x32, 0x81, 0x2d, 0x58, 0x11, 0xb9, + 0x78, 0x1f, 0x07, 0xb3, 0x15, 0x67, 0x2f, 0x73, 0x8a, 0x1e, 0x0e, 0xd8, 0x7d, 0x72, 0x0f, 0x96, + 0x8d, 0x27, 0x86, 0x35, 0xa4, 0xab, 0x3e, 0xd3, 0x65, 0x54, 0x0f, 0xf1, 0xc3, 0x1b, 0x89, 0xcd, + 0x7b, 0xa6, 0x9a, 0x6d, 0xa0, 0xb8, 0x51, 0x81, 0xb8, 0xef, 0xc7, 0xea, 0x39, 0x72, 0x0b, 0xc4, + 0x7d, 0x3f, 0x1c, 0x8f, 0xd6, 0x8f, 0xd2, 0x92, 0x78, 0x9f, 0x7f, 0xea, 0x3a, 0x79, 0x3c, 0x82, + 0xfb, 0x1e, 0x45, 0x25, 0x0b, 0x36, 0x32, 0x3e, 0x76, 0x3c, 0x3d, 0x4e, 0xbf, 0x38, 0x65, 0xc1, + 0x28, 0x45, 0x37, 0x64, 0xa2, 0xbe, 0x03, 0xe7, 0x34, 0xec, 0xb8, 0xd8, 0x0e, 0xcf, 0xc9, 0x03, + 0x67, 0x70, 0x82, 0x9b, 0xee, 0x3c, 0xb4, 0xb2, 0xe8, 0xb9, 0x5f, 0x3a, 0x86, 0xd6, 0xd6, 0x11, + 0xee, 0x3f, 0xa6, 0xde, 0xc8, 0x69, 0xd2, 0xb1, 0x2d, 0x28, 0x0f, 0x9d, 0x3e, 0xfb, 0x67, 0x4e, + 0xfc, 0xe9, 0x26, 0xda, 0x39, 0x51, 0xb3, 0x0b, 0xb0, 0x91, 0x39, 0x2c, 0x93, 0xea, 0xda, 0x0b, + 0x50, 0x16, 0xff, 0x2a, 0x0b, 0x2d, 0x42, 0x71, 0x7f, 0xab, 0xdb, 0x98, 0x23, 0x3f, 0x0e, 0xb6, + 0xbb, 0x0d, 0x05, 0x95, 0xa1, 0xd4, 0xdb, 0xda, 0xef, 0x36, 0x0a, 0xd7, 0x46, 0xd0, 0x48, 0xfe, + 0xb7, 0x28, 0xb4, 0x0e, 0x67, 0xba, 0xda, 0x5e, 0xb7, 0xfd, 0x7e, 0x7b, 0xbf, 0xb3, 0xb7, 0xab, + 0x77, 0xb5, 0xce, 0x47, 0xed, 0xfd, 0x9d, 0xc6, 0x1c, 0xba, 0x0c, 0x17, 0xe2, 0x1d, 0x1f, 0xec, + 0xf5, 0xf6, 0xf5, 0xfd, 0x3d, 0x7d, 0x6b, 0x6f, 0x77, 0xbf, 0xdd, 0xd9, 0xdd, 0xd1, 0x1a, 0x0a, + 0xba, 0x00, 0xe7, 0xe2, 0x28, 0xf7, 0x3b, 0xdb, 0x1d, 0x6d, 0x67, 0x8b, 0xfc, 0x6e, 0x3f, 0x68, + 0x14, 0xae, 0xbd, 0x0d, 0x35, 0xe9, 0xdf, 0x1e, 0x11, 0x91, 0xba, 0x7b, 0xdb, 0x8d, 0x39, 0x54, + 0x83, 0x4a, 0x9c, 0x4f, 0x19, 0x4a, 0xbb, 0x7b, 0xdb, 0x3b, 0x8d, 0x02, 0x02, 0x58, 0xd8, 0x6f, + 0x6b, 0xef, 0xef, 0xec, 0x37, 0x8a, 0xd7, 0xee, 0x26, 0x3f, 0xdf, 0xc1, 0x68, 0x05, 0x6a, 0xbd, + 0xf6, 0xee, 0xf6, 0xfd, 0xbd, 0x6f, 0xe9, 0xda, 0x4e, 0x7b, 0xfb, 0xdb, 0x8d, 0x39, 0xb4, 0x0a, + 0x0d, 0x01, 0xda, 0xdd, 0xdb, 0x67, 0x50, 0xe5, 0xda, 0xe3, 0x84, 0x5d, 0xc5, 0xe8, 0x2c, 0xac, + 0x84, 0x43, 0xea, 0x5b, 0xda, 0x4e, 0x7b, 0x7f, 0x87, 0x48, 0x22, 0x81, 0xb5, 0x83, 0xdd, 0xdd, + 0xce, 0xee, 0xfb, 0x0d, 0x85, 0x70, 0x8d, 0xc0, 0x3b, 0xdf, 0xea, 0x10, 0xe4, 0x82, 0x8c, 0x7c, + 0xb0, 0xfb, 0xf5, 0xdd, 0xbd, 0x6f, 0xee, 0x36, 0x8a, 0xb7, 0x7e, 0xb3, 0x12, 0xfe, 0xcb, 0x99, + 0x1e, 0xf6, 0x68, 0x5d, 0xd2, 0x36, 0x2c, 0x8a, 0x7f, 0xc0, 0x26, 0xdd, 0xbe, 0xf2, 0x3f, 0x8c, + 0x6b, 0x6d, 0x64, 0xf6, 0x71, 0x5d, 0x9b, 0x43, 0x1f, 0xd1, 0x37, 0x49, 0xec, 0x03, 0xd3, 0x4b, + 0x89, 0x77, 0x40, 0xea, 0x3b, 0xd6, 0xd6, 0xe5, 0x1c, 0x8c, 0x90, 0xef, 0xb7, 0xc9, 0x83, 0x23, + 0xfe, 0xdf, 0x15, 0xd0, 0x65, 0xf9, 0xbd, 0x90, 0xf1, 0x8f, 0x1b, 0x5a, 0x6a, 0x1e, 0x4a, 0xc8, + 0x5a, 0x87, 0x46, 0xf2, 0xbf, 0x2b, 0x20, 0x29, 0x0c, 0x3f, 0xe1, 0x9f, 0x37, 0xb4, 0xbe, 0x92, + 0x8f, 0x14, 0x1f, 0x20, 0xf5, 0x4f, 0x03, 0xae, 0xe4, 0x7f, 0x86, 0x9d, 0x31, 0xc0, 0xa4, 0x6f, + 0xb5, 0xd9, 0xe2, 0xc8, 0xdf, 0x00, 0xa2, 0xc4, 0x77, 0xfa, 0x19, 0x9f, 0x0f, 0xcb, 0x8b, 0x93, + 0xfd, 0xe9, 0xa8, 0x3a, 0x87, 0xfe, 0x00, 0x96, 0x13, 0xa5, 0x25, 0x48, 0x22, 0xcc, 0xae, 0x98, + 0x69, 0x5d, 0xc9, 0xc5, 0x91, 0x77, 0x35, 0x5e, 0x3e, 0x92, 0xdc, 0xd5, 0x8c, 0xb2, 0x94, 0xe4, + 0xae, 0x66, 0x56, 0x9f, 0x50, 0x45, 0x94, 0x4a, 0x45, 0x64, 0x45, 0xcc, 0x2a, 0x4d, 0x69, 0x5d, + 0xce, 0xc1, 0x88, 0x2f, 0x48, 0xa2, 0x58, 0x44, 0x5e, 0x90, 0xec, 0x32, 0x94, 0xd6, 0x95, 0x5c, + 0x9c, 0xe4, 0x4e, 0x46, 0x49, 0xea, 0xf4, 0x4e, 0xa6, 0x0a, 0x25, 0xd2, 0x3b, 0x99, 0xce, 0x71, + 0xf3, 0x9d, 0x4c, 0xa4, 0x95, 0xd5, 0xdc, 0x84, 0x59, 0xd6, 0x4e, 0x66, 0x27, 0xd5, 0xd4, 0x39, + 0xf4, 0x14, 0x9a, 0x93, 0x52, 0x35, 0xe8, 0xfa, 0x09, 0x32, 0x4a, 0xad, 0x97, 0x67, 0x43, 0x0e, + 0x07, 0xc6, 0x80, 0xd2, 0x97, 0x1f, 0x7a, 0x5e, 0x5e, 0xee, 0x09, 0x97, 0x6b, 0xeb, 0x85, 0x69, + 0x68, 0xe1, 0x30, 0xef, 0x43, 0x59, 0x24, 0x81, 0x90, 0x64, 0x02, 0x13, 0xc9, 0xa7, 0xd6, 0xf9, + 0xec, 0xce, 0x90, 0xd1, 0xd7, 0xa0, 0x44, 0xa0, 0x68, 0x3d, 0x89, 0x27, 0x18, 0x34, 0xd3, 0x1d, + 0x21, 0x71, 0x1b, 0x16, 0x58, 0x76, 0x03, 0x49, 0xe1, 0x15, 0x29, 0xfb, 0xd2, 0x6a, 0x65, 0x75, + 0x85, 0x2c, 0xba, 0xec, 0xdf, 0x59, 0xf2, 0x64, 0x05, 0xba, 0x98, 0xfc, 0xbf, 0x4a, 0x72, 0x56, + 0xa4, 0xf5, 0xdc, 0xc4, 0xfe, 0xb8, 0xce, 0x26, 0x1e, 0x04, 0x97, 0x73, 0x5e, 0x6f, 0x59, 0x3a, + 0x9b, 0xfd, 0x26, 0x64, 0x9b, 0x9b, 0x7e, 0x33, 0xca, 0x9b, 0x3b, 0xf1, 0x5d, 0x2e, 0x6f, 0xee, + 0xe4, 0xa7, 0x27, 0x3b, 0x1a, 0xc9, 0x8f, 0x54, 0xd5, 0xbc, 0x0f, 0xa5, 0xb3, 0x8e, 0xc6, 0x84, + 0x0f, 0xb0, 0xd5, 0x39, 0x74, 0x04, 0x67, 0x32, 0xbe, 0xd0, 0x46, 0x2f, 0x4c, 0xb6, 0xbf, 0xd2, + 0x28, 0x2f, 0x4e, 0xc5, 0x8b, 0x8f, 0x94, 0x11, 0xa1, 0x94, 0x47, 0x9a, 0x1c, 0x22, 0x95, 0x47, + 0xca, 0x0b, 0x75, 0x52, 0x45, 0xe4, 0x36, 0xe4, 0x5c, 0x56, 0xd8, 0x2e, 0x43, 0x11, 0x53, 0x16, + 0xe3, 0x08, 0xce, 0x64, 0x38, 0x88, 0xb2, 0xb0, 0x93, 0x1d, 0x57, 0x59, 0xd8, 0x1c, 0x4f, 0x53, + 0x9d, 0xbb, 0xf5, 0x97, 0x45, 0x58, 0x62, 0x31, 0x6c, 0xee, 0xea, 0x3c, 0x04, 0x88, 0xd2, 0x41, + 0xe8, 0x42, 0x72, 0x81, 0xa5, 0x1c, 0x5b, 0xeb, 0xe2, 0xa4, 0xee, 0xf8, 0x91, 0x8a, 0xa5, 0x59, + 0xe4, 0x23, 0x95, 0xce, 0x1a, 0xc9, 0x47, 0x2a, 0x23, 0x3f, 0xa3, 0xce, 0xa1, 0x0f, 0xa1, 0x12, + 0x46, 0xf5, 0x91, 0x9c, 0x0f, 0x48, 0xa4, 0x27, 0x5a, 0x17, 0x26, 0xf4, 0xc6, 0xa5, 0x8b, 0x05, + 0xeb, 0x65, 0xe9, 0xd2, 0x89, 0x00, 0x59, 0xba, 0xac, 0x28, 0x7f, 0x34, 0x5f, 0x16, 0xf6, 0xcb, + 0x98, 0xaf, 0x14, 0x5d, 0xcd, 0x98, 0xaf, 0x1c, 0x2f, 0x54, 0xe7, 0xee, 0xdf, 0xfb, 0xd9, 0xaf, + 0x2f, 0x2a, 0xbf, 0xfc, 0xf5, 0xc5, 0xb9, 0x3f, 0xfa, 0xe4, 0xa2, 0xf2, 0xb3, 0x4f, 0x2e, 0x2a, + 0xbf, 0xf8, 0xe4, 0xa2, 0xf2, 0xab, 0x4f, 0x2e, 0x2a, 0x7f, 0xfa, 0x3f, 0x17, 0xe7, 0xbe, 0xa3, + 0x3e, 0xbe, 0xe3, 0x6f, 0x5a, 0xce, 0x8d, 0xbe, 0x67, 0xbd, 0x62, 0xb8, 0xd6, 0x0d, 0xf7, 0xf1, + 0xe0, 0x86, 0xe1, 0x5a, 0xfe, 0x0d, 0xce, 0xf7, 0xc6, 0x93, 0x57, 0x1f, 0x2d, 0xd0, 0x7f, 0xb7, + 0xfb, 0xda, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x4e, 0x93, 0x88, 0x28, 0x59, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -8686,6 +8794,8 @@ type RuntimeServiceClient interface { UpdateRuntimeConfig(ctx context.Context, in *UpdateRuntimeConfigRequest, opts ...grpc.CallOption) (*UpdateRuntimeConfigResponse, error) // Status returns the status of the runtime. Status(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (*StatusResponse, error) + // CheckpointContainer checkpoints a container + CheckpointContainer(ctx context.Context, in *CheckpointContainerRequest, opts ...grpc.CallOption) (*CheckpointContainerResponse, error) } type runtimeServiceClient struct { @@ -8912,6 +9022,15 @@ func (c *runtimeServiceClient) Status(ctx context.Context, in *StatusRequest, op return out, nil } +func (c *runtimeServiceClient) CheckpointContainer(ctx context.Context, in *CheckpointContainerRequest, opts ...grpc.CallOption) (*CheckpointContainerResponse, error) { + out := new(CheckpointContainerResponse) + err := c.cc.Invoke(ctx, "/runtime.v1.RuntimeService/CheckpointContainer", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // RuntimeServiceServer is the server API for RuntimeService service. type RuntimeServiceServer interface { // Version returns the runtime name, runtime version, and runtime API version. @@ -8989,6 +9108,8 @@ type RuntimeServiceServer interface { UpdateRuntimeConfig(context.Context, *UpdateRuntimeConfigRequest) (*UpdateRuntimeConfigResponse, error) // Status returns the status of the runtime. Status(context.Context, *StatusRequest) (*StatusResponse, error) + // CheckpointContainer checkpoints a container + CheckpointContainer(context.Context, *CheckpointContainerRequest) (*CheckpointContainerResponse, error) } // UnimplementedRuntimeServiceServer can be embedded to have forward compatible implementations. @@ -9067,6 +9188,9 @@ func (*UnimplementedRuntimeServiceServer) UpdateRuntimeConfig(ctx context.Contex func (*UnimplementedRuntimeServiceServer) Status(ctx context.Context, req *StatusRequest) (*StatusResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Status not implemented") } +func (*UnimplementedRuntimeServiceServer) CheckpointContainer(ctx context.Context, req *CheckpointContainerRequest) (*CheckpointContainerResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method CheckpointContainer not implemented") +} func RegisterRuntimeServiceServer(s *grpc.Server, srv RuntimeServiceServer) { s.RegisterService(&_RuntimeService_serviceDesc, srv) @@ -9504,6 +9628,24 @@ func _RuntimeService_Status_Handler(srv interface{}, ctx context.Context, dec fu return interceptor(ctx, in, info, handler) } +func _RuntimeService_CheckpointContainer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CheckpointContainerRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RuntimeServiceServer).CheckpointContainer(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/runtime.v1.RuntimeService/CheckpointContainer", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RuntimeServiceServer).CheckpointContainer(ctx, req.(*CheckpointContainerRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _RuntimeService_serviceDesc = grpc.ServiceDesc{ ServiceName: "runtime.v1.RuntimeService", HandlerType: (*RuntimeServiceServer)(nil), @@ -9604,6 +9746,10 @@ var _RuntimeService_serviceDesc = grpc.ServiceDesc{ MethodName: "Status", Handler: _RuntimeService_Status_Handler, }, + { + MethodName: "CheckpointContainer", + Handler: _RuntimeService_CheckpointContainer_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "api.proto", @@ -15990,6 +16136,71 @@ func (m *ReopenContainerLogResponse) MarshalToSizedBuffer(dAtA []byte) (int, err return len(dAtA) - i, nil } +func (m *CheckpointContainerRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *CheckpointContainerRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CheckpointContainerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Timeout != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.Timeout)) + i-- + dAtA[i] = 0x18 + } + if len(m.Location) > 0 { + i -= len(m.Location) + copy(dAtA[i:], m.Location) + i = encodeVarintApi(dAtA, i, uint64(len(m.Location))) + i-- + dAtA[i] = 0x12 + } + if len(m.ContainerId) > 0 { + i -= len(m.ContainerId) + copy(dAtA[i:], m.ContainerId) + i = encodeVarintApi(dAtA, i, uint64(len(m.ContainerId))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *CheckpointContainerResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *CheckpointContainerResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CheckpointContainerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func encodeVarintApi(dAtA []byte, offset int, v uint64) int { offset -= sovApi(v) base := offset @@ -18551,6 +18762,35 @@ func (m *ReopenContainerLogResponse) Size() (n int) { return n } +func (m *CheckpointContainerRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.ContainerId) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + l = len(m.Location) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + if m.Timeout != 0 { + n += 1 + sovApi(uint64(m.Timeout)) + } + return n +} + +func (m *CheckpointContainerResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func sovApi(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -20354,6 +20594,27 @@ func (this *ReopenContainerLogResponse) String() string { }, "") return s } +func (this *CheckpointContainerRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&CheckpointContainerRequest{`, + `ContainerId:` + fmt.Sprintf("%v", this.ContainerId) + `,`, + `Location:` + fmt.Sprintf("%v", this.Location) + `,`, + `Timeout:` + fmt.Sprintf("%v", this.Timeout) + `,`, + `}`, + }, "") + return s +} +func (this *CheckpointContainerResponse) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&CheckpointContainerResponse{`, + `}`, + }, "") + return s +} func valueToStringApi(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { @@ -39490,6 +39751,189 @@ func (m *ReopenContainerLogResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *CheckpointContainerRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CheckpointContainerRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CheckpointContainerRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ContainerId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Location", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Location = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timeout", wireType) + } + m.Timeout = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timeout |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *CheckpointContainerResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CheckpointContainerResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CheckpointContainerResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipApi(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 From 564f0e9a2575dd64575454b2570511939911e17d Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Tue, 7 Sep 2021 15:34:06 +0000 Subject: [PATCH 3/8] kubelet: add checkpoint/restore infrastructure This adds the first infrastructure code parts to the kubelet to support checkpoint/restore. Signed-off-by: Adrian Reber --- pkg/kubelet/config/defaults.go | 1 + pkg/kubelet/kubelet.go | 6 ++++++ pkg/kubelet/kubelet_getters.go | 6 ++++++ 3 files changed, 13 insertions(+) diff --git a/pkg/kubelet/config/defaults.go b/pkg/kubelet/config/defaults.go index f2564e65d90d..b438e0d25d54 100644 --- a/pkg/kubelet/config/defaults.go +++ b/pkg/kubelet/config/defaults.go @@ -28,4 +28,5 @@ const ( DefaultKubeletPluginContainersDirName = "plugin-containers" DefaultKubeletPodResourcesDirName = "pod-resources" KubeletPluginsDirSELinuxLabel = "system_u:object_r:container_file_t:s0" + DefaultKubeletCheckpointsDirName = "checkpoints" ) diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index 8482c60db13a..5cb582dcedb6 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -1229,6 +1229,7 @@ func (kl *Kubelet) RlimitStats() (*statsapi.RlimitStats, error) { // 2. the pods directory // 3. the plugins directory // 4. the pod-resources directory +// 5. the checkpoint directory func (kl *Kubelet) setupDataDirs() error { kl.rootDirectory = path.Clean(kl.rootDirectory) pluginRegistrationDir := kl.getPluginsRegistrationDir() @@ -1251,6 +1252,11 @@ func (kl *Kubelet) setupDataDirs() error { if err := os.MkdirAll(kl.getPodResourcesDir(), 0750); err != nil { return fmt.Errorf("error creating podresources directory: %v", err) } + if utilfeature.DefaultFeatureGate.Enabled(features.ContainerCheckpoint) { + if err := os.MkdirAll(kl.getCheckpointsDir(), 0700); err != nil { + return fmt.Errorf("error creating checkpoint directory: %v", err) + } + } if selinux.GetEnabled() { err := selinux.SetFileLabel(pluginRegistrationDir, config.KubeletPluginsDirSELinuxLabel) if err != nil { diff --git a/pkg/kubelet/kubelet_getters.go b/pkg/kubelet/kubelet_getters.go index dacb909bd10e..1d393abd9ddc 100644 --- a/pkg/kubelet/kubelet_getters.go +++ b/pkg/kubelet/kubelet_getters.go @@ -77,6 +77,12 @@ func (kl *Kubelet) getPluginDir(pluginName string) string { return filepath.Join(kl.getPluginsDir(), pluginName) } +// getCheckpointsDir returns a data directory name for checkpoints. +// Checkpoints can be stored in this directory for further use. +func (kl *Kubelet) getCheckpointsDir() string { + return filepath.Join(kl.getRootDir(), config.DefaultKubeletCheckpointsDirName) +} + // getVolumeDevicePluginsDir returns the full path to the directory under which plugin // directories are created. Plugins can use these directories for data that // they need to persist. Plugins should create subdirectories under this named From 1ac7d78296e917af4b32055386d791bcb1d436aa Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Wed, 8 Sep 2021 12:28:39 +0000 Subject: [PATCH 4/8] kubelet: add CheckpointContainer in remote runtime This is the first step to implement checkpointing and restoring of container and containers starting from the lowest layer in the kubelet. Signed-off-by: Adrian Reber --- pkg/kubelet/cri/remote/remote_runtime.go | 55 ++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/pkg/kubelet/cri/remote/remote_runtime.go b/pkg/kubelet/cri/remote/remote_runtime.go index 7dc8849fc46d..95e5d3f39a2e 100644 --- a/pkg/kubelet/cri/remote/remote_runtime.go +++ b/pkg/kubelet/cri/remote/remote_runtime.go @@ -1149,3 +1149,58 @@ func (r *remoteRuntimeService) ReopenContainerLog(containerID string) (err error klog.V(10).InfoS("[RemoteRuntimeService] ReopenContainerLog Response", "containerID", containerID) return nil } + +// CheckpointContainer triggers a checkpoint of the given CheckpointContainerRequest +func (r *remoteRuntimeService) CheckpointContainer(options *runtimeapi.CheckpointContainerRequest) error { + klog.V(10).InfoS( + "[RemoteRuntimeService] CheckpointContainer", + "options", + options, + ) + if options == nil { + return errors.New("CheckpointContainer requires non-nil CheckpointRestoreOptions parameter") + } + if !r.useV1API() { + return errors.New("CheckpointContainer is only supported in the CRI v1 runtime API") + } + + if options.Timeout < 0 { + return errors.New("CheckpointContainer requires the timeout value to be > 0") + } + + ctx, cancel := func() (context.Context, context.CancelFunc) { + defaultTimeout := int64(r.timeout / time.Second) + if options.Timeout > defaultTimeout { + // The user requested a specific timeout, let's use that if it + // is larger than the CRI default. + return getContextWithTimeout(time.Duration(options.Timeout) * time.Second) + } + // If the user requested a timeout less than the + // CRI default, let's use the CRI default. + options.Timeout = defaultTimeout + return getContextWithTimeout(r.timeout) + }() + defer cancel() + + _, err := r.runtimeClient.CheckpointContainer( + ctx, + options, + ) + + if err != nil { + klog.ErrorS( + err, + "CheckpointContainer from runtime service failed", + "containerID", + options.ContainerId, + ) + return err + } + klog.V(10).InfoS( + "[RemoteRuntimeService] CheckpointContainer Response", + "containerID", + options.ContainerId, + ) + + return nil +} From 3e6f50683f1941cce8748c4542b16f5fffcd9ca3 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Tue, 8 Dec 2020 07:57:11 +0000 Subject: [PATCH 5/8] kubelet: add CheckpointContainer() on the service level Signed-off-by: Adrian Reber --- pkg/kubelet/kuberuntime/instrumented_services.go | 9 +++++++++ staging/src/k8s.io/cri-api/pkg/apis/services.go | 2 ++ 2 files changed, 11 insertions(+) diff --git a/pkg/kubelet/kuberuntime/instrumented_services.go b/pkg/kubelet/kuberuntime/instrumented_services.go index eb6ba384b546..5f1444ab9d23 100644 --- a/pkg/kubelet/kuberuntime/instrumented_services.go +++ b/pkg/kubelet/kuberuntime/instrumented_services.go @@ -324,3 +324,12 @@ func (in instrumentedImageManagerService) ImageFsInfo() ([]*runtimeapi.Filesyste recordError(operation, err) return fsInfo, nil } + +func (in instrumentedRuntimeService) CheckpointContainer(options *runtimeapi.CheckpointContainerRequest) error { + const operation = "checkpoint_container" + defer recordOperation(operation, time.Now()) + + err := in.service.CheckpointContainer(options) + recordError(operation, err) + return err +} diff --git a/staging/src/k8s.io/cri-api/pkg/apis/services.go b/staging/src/k8s.io/cri-api/pkg/apis/services.go index 54f755d87438..ac7cc59fbf4d 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/services.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/services.go @@ -76,6 +76,8 @@ type PodSandboxManager interface { ListPodSandbox(filter *runtimeapi.PodSandboxFilter) ([]*runtimeapi.PodSandbox, error) // PortForward prepares a streaming endpoint to forward ports from a PodSandbox, and returns the address. PortForward(*runtimeapi.PortForwardRequest) (*runtimeapi.PortForwardResponse, error) + // CheckpointContainer checkpoints a container + CheckpointContainer(containerID, checkpointDir string) error } // ContainerStatsManager contains methods for retrieving the container From 8c24857ba33da43b3aa43b2e69f3195476d034f2 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Tue, 8 Dec 2020 08:30:35 +0000 Subject: [PATCH 6/8] kubelet: add CheckpointContainer() to the runtime Signed-off-by: Adrian Reber --- pkg/kubelet/container/runtime.go | 3 +++ pkg/kubelet/container/testing/fake_runtime.go | 8 ++++++++ pkg/kubelet/container/testing/runtime_mock.go | 14 ++++++++++++++ pkg/kubelet/kuberuntime/kuberuntime_manager.go | 4 ++++ 4 files changed, 29 insertions(+) diff --git a/pkg/kubelet/container/runtime.go b/pkg/kubelet/container/runtime.go index 0810e938f267..ad59de4df1c2 100644 --- a/pkg/kubelet/container/runtime.go +++ b/pkg/kubelet/container/runtime.go @@ -119,6 +119,9 @@ type Runtime interface { // This method just proxies a new runtimeConfig with the updated // CIDR value down to the runtime shim. UpdatePodCIDR(podCIDR string) error + // CheckpointContainer tells the runtime to checkpoint a container + // and store the resulting archive to the checkpoint directory. + CheckpointContainer(options *runtimeapi.CheckpointContainerRequest) error } // StreamingRuntime is the interface implemented by runtimes that handle the serving of the diff --git a/pkg/kubelet/container/testing/fake_runtime.go b/pkg/kubelet/container/testing/fake_runtime.go index 3765e87c8a66..c259a06cb130 100644 --- a/pkg/kubelet/container/testing/fake_runtime.go +++ b/pkg/kubelet/container/testing/fake_runtime.go @@ -362,6 +362,14 @@ func (f *FakeRuntime) DeleteContainer(containerID kubecontainer.ContainerID) err return f.Err } +func (f *FakeRuntime) CheckpointContainer(options *runtimeapi.CheckpointContainerRequest) error { + f.Lock() + defer f.Unlock() + + f.CalledFunctions = append(f.CalledFunctions, "CheckpointContainer") + return f.Err +} + func (f *FakeRuntime) ImageStats() (*kubecontainer.ImageStats, error) { f.Lock() defer f.Unlock() diff --git a/pkg/kubelet/container/testing/runtime_mock.go b/pkg/kubelet/container/testing/runtime_mock.go index b26330959120..1e68ee3f5f87 100644 --- a/pkg/kubelet/container/testing/runtime_mock.go +++ b/pkg/kubelet/container/testing/runtime_mock.go @@ -126,6 +126,20 @@ func (mr *MockRuntimeMockRecorder) APIVersion() *gomock.Call { return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "APIVersion", reflect.TypeOf((*MockRuntime)(nil).APIVersion)) } +// CheckpointContainer mocks base method. +func (m *MockRuntime) CheckpointContainer(options *v10.CheckpointContainerRequest) error { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "CheckpointContainer", options) + ret0, _ := ret[0].(error) + return ret0 +} + +// CheckpointContainer indicates an expected call of CheckpointContainer. +func (mr *MockRuntimeMockRecorder) CheckpointContainer(options interface{}) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CheckpointContainer", reflect.TypeOf((*MockRuntime)(nil).CheckpointContainer), options) +} + // DeleteContainer mocks base method. func (m *MockRuntime) DeleteContainer(containerID container.ContainerID) error { m.ctrl.T.Helper() diff --git a/pkg/kubelet/kuberuntime/kuberuntime_manager.go b/pkg/kubelet/kuberuntime/kuberuntime_manager.go index 8dee580344e3..6b2761a38e14 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_manager.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_manager.go @@ -1100,3 +1100,7 @@ func (m *kubeGenericRuntimeManager) UpdatePodCIDR(podCIDR string) error { }, }) } + +func (m *kubeGenericRuntimeManager) CheckpointContainer(options *runtimeapi.CheckpointContainerRequest) error { + return m.runtimeService.CheckpointContainer(options) +} From fc37a7a990da6f17850a1352e66cfdcce64a3ff1 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Fri, 10 Sep 2021 12:38:08 +0000 Subject: [PATCH 7/8] kubelet: wire checkpoint container support through This adds the last pieces to wire through the container checkpoint support in the kubelet. Signed-off-by: Adrian Reber --- pkg/features/kube_features.go | 9 ++ pkg/kubelet/cri/remote/fake/fake_runtime.go | 10 ++ pkg/kubelet/kubelet.go | 40 ++++++ pkg/kubelet/kubelet_test.go | 116 ++++++++++++++++++ pkg/kubelet/server/auth_test.go | 1 + pkg/kubelet/server/server.go | 90 ++++++++++++++ pkg/kubelet/server/server_test.go | 89 +++++++++++++- .../src/k8s.io/cri-api/pkg/apis/services.go | 4 +- .../pkg/apis/testing/fake_runtime_service.go | 14 +++ 9 files changed, 369 insertions(+), 4 deletions(-) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 3472371ecd82..80e9bf423215 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -190,6 +190,13 @@ const ( // Allows clients to request a duration for certificates issued via the Kubernetes CSR API. CSRDuration featuregate.Feature = "CSRDuration" + // owner: @adrianreber + // kep: http://kep.k8s.io/2008 + // alpha: v1.25 + // + // Enables container Checkpoint support in the kubelet + ContainerCheckpoint featuregate.Feature = "ContainerCheckpoint" + // owner: @jiahuif // alpha: v1.21 // beta: v1.22 @@ -846,6 +853,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS CSRDuration: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.26 + ContainerCheckpoint: {Default: false, PreRelease: featuregate.Alpha}, + ControllerManagerLeaderMigration: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.26 CronJobTimeZone: {Default: false, PreRelease: featuregate.Alpha}, diff --git a/pkg/kubelet/cri/remote/fake/fake_runtime.go b/pkg/kubelet/cri/remote/fake/fake_runtime.go index 54b31fe2a8fb..f217f0592d15 100644 --- a/pkg/kubelet/cri/remote/fake/fake_runtime.go +++ b/pkg/kubelet/cri/remote/fake/fake_runtime.go @@ -322,3 +322,13 @@ func (f *RemoteRuntime) ReopenContainerLog(ctx context.Context, req *kubeapi.Reo return &kubeapi.ReopenContainerLogResponse{}, nil } + +// CheckpointContainer checkpoints the given container. +func (f *RemoteRuntime) CheckpointContainer(ctx context.Context, req *kubeapi.CheckpointContainerRequest) (*kubeapi.CheckpointContainerResponse, error) { + err := f.RuntimeService.CheckpointContainer(&kubeapi.CheckpointContainerRequest{}) + if err != nil { + return nil, err + } + + return &kubeapi.CheckpointContainerResponse{}, nil +} diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index 5cb582dcedb6..4caf8f73ce56 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -25,6 +25,7 @@ import ( "net/http" "os" "path" + "path/filepath" sysruntime "runtime" "sort" "strings" @@ -60,6 +61,7 @@ import ( cloudprovider "k8s.io/cloud-provider" "k8s.io/component-helpers/apimachinery/lease" internalapi "k8s.io/cri-api/pkg/apis" + runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1" "k8s.io/klog/v2" pluginwatcherapi "k8s.io/kubelet/pkg/apis/pluginregistration/v1" statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1" @@ -2445,6 +2447,44 @@ func (kl *Kubelet) fastStatusUpdateOnce() { } } +// CheckpointContainer tries to checkpoint a container. The parameters are used to +// look up the specified container. If the container specified by the given parameters +// cannot be found an error is returned. If the container is found the container +// engine will be asked to checkpoint the given container into the kubelet's default +// checkpoint directory. +func (kl *Kubelet) CheckpointContainer( + podUID types.UID, + podFullName, + containerName string, + options *runtimeapi.CheckpointContainerRequest, +) error { + container, err := kl.findContainer(podFullName, podUID, containerName) + if err != nil { + return err + } + if container == nil { + return fmt.Errorf("container %v not found", containerName) + } + + options.Location = filepath.Join( + kl.getCheckpointsDir(), + fmt.Sprintf( + "checkpoint-%s-%s-%s.tar", + podFullName, + containerName, + time.Now().Format(time.RFC3339), + ), + ) + + options.ContainerId = string(container.ID.ID) + + if err := kl.containerRuntime.CheckpointContainer(options); err != nil { + return err + } + + return nil +} + // isSyncPodWorthy filters out events that are not worthy of pod syncing func isSyncPodWorthy(event *pleg.PodLifecycleEvent) bool { // ContainerRemoved doesn't affect pod state diff --git a/pkg/kubelet/kubelet_test.go b/pkg/kubelet/kubelet_test.go index 32aa2facc25c..9995f1e04cc9 100644 --- a/pkg/kubelet/kubelet_test.go +++ b/pkg/kubelet/kubelet_test.go @@ -21,10 +21,12 @@ import ( "fmt" "io/ioutil" "os" + "path/filepath" "reflect" goruntime "runtime" "sort" "strconv" + "strings" "testing" "time" @@ -44,6 +46,7 @@ import ( "k8s.io/client-go/kubernetes/fake" "k8s.io/client-go/tools/record" "k8s.io/client-go/util/flowcontrol" + runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1" "k8s.io/klog/v2/ktesting" cadvisortest "k8s.io/kubernetes/pkg/kubelet/cadvisor/testing" "k8s.io/kubernetes/pkg/kubelet/cm" @@ -1583,6 +1586,119 @@ func TestFilterOutInactivePods(t *testing.T) { assert.Equal(t, expected, actual) } +func TestCheckpointContainer(t *testing.T) { + testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */) + defer testKubelet.Cleanup() + kubelet := testKubelet.kubelet + + fakeRuntime := testKubelet.fakeRuntime + containerID := kubecontainer.ContainerID{ + Type: "test", + ID: "abc1234", + } + + fakePod := &containertest.FakePod{ + Pod: &kubecontainer.Pod{ + ID: "12345678", + Name: "podFoo", + Namespace: "nsFoo", + Containers: []*kubecontainer.Container{ + { + Name: "containerFoo", + ID: containerID, + }, + }, + }, + } + + fakeRuntime.PodList = []*containertest.FakePod{fakePod} + wrongContainerName := "wrongContainerName" + + tests := []struct { + name string + containerName string + checkpointLocation string + expectedStatus error + expectedLocation string + }{ + { + name: "Checkpoint with wrong container name", + containerName: wrongContainerName, + checkpointLocation: "", + expectedStatus: fmt.Errorf("container %s not found", wrongContainerName), + expectedLocation: "", + }, + { + name: "Checkpoint with default checkpoint location", + containerName: fakePod.Pod.Containers[0].Name, + checkpointLocation: "", + expectedStatus: nil, + expectedLocation: filepath.Join( + kubelet.getCheckpointsDir(), + fmt.Sprintf( + "checkpoint-%s_%s-%s", + fakePod.Pod.Name, + fakePod.Pod.Namespace, + fakePod.Pod.Containers[0].Name, + ), + ), + }, + { + name: "Checkpoint with ignored location", + containerName: fakePod.Pod.Containers[0].Name, + checkpointLocation: "somethingThatWillBeIgnored", + expectedStatus: nil, + expectedLocation: filepath.Join( + kubelet.getCheckpointsDir(), + fmt.Sprintf( + "checkpoint-%s_%s-%s", + fakePod.Pod.Name, + fakePod.Pod.Namespace, + fakePod.Pod.Containers[0].Name, + ), + ), + }, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + options := &runtimeapi.CheckpointContainerRequest{} + if test.checkpointLocation != "" { + options.Location = test.checkpointLocation + } + status := kubelet.CheckpointContainer( + fakePod.Pod.ID, + fmt.Sprintf( + "%s_%s", + fakePod.Pod.Name, + fakePod.Pod.Namespace, + ), + test.containerName, + options, + ) + require.Equal(t, status, test.expectedStatus) + + if status != nil { + return + } + + require.True( + t, + strings.HasPrefix( + options.Location, + test.expectedLocation, + ), + ) + require.Equal( + t, + options.ContainerId, + containerID.ID, + ) + + }) + } +} + func TestSyncPodsSetStatusToFailedForPodsThatRunTooLong(t *testing.T) { testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */) defer testKubelet.Cleanup() diff --git a/pkg/kubelet/server/auth_test.go b/pkg/kubelet/server/auth_test.go index dc827ffd105a..d5f2b6928f4e 100644 --- a/pkg/kubelet/server/auth_test.go +++ b/pkg/kubelet/server/auth_test.go @@ -110,6 +110,7 @@ func AuthzTestCases() []AuthzTestCase { testPaths := map[string]string{ "/attach/{podNamespace}/{podID}/{containerName}": "proxy", "/attach/{podNamespace}/{podID}/{uid}/{containerName}": "proxy", + "/checkpoint/{podNamespace}/{podID}/{containerName}": "proxy", "/configz": "proxy", "/containerLogs/{podNamespace}/{podID}/{containerName}": "proxy", "/debug/flags/v": "proxy", diff --git a/pkg/kubelet/server/server.go b/pkg/kubelet/server/server.go index 42a744754755..4c31bb6a4ac9 100644 --- a/pkg/kubelet/server/server.go +++ b/pkg/kubelet/server/server.go @@ -62,6 +62,7 @@ import ( "k8s.io/component-base/logs" compbasemetrics "k8s.io/component-base/metrics" "k8s.io/component-base/metrics/legacyregistry" + runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1" podresourcesapi "k8s.io/kubelet/pkg/apis/podresources/v1" podresourcesapiv1alpha1 "k8s.io/kubelet/pkg/apis/podresources/v1alpha1" "k8s.io/kubernetes/pkg/api/legacyscheme" @@ -224,6 +225,7 @@ type HostInterface interface { GetCachedMachineInfo() (*cadvisorapi.MachineInfo, error) GetRunningPods() ([]*v1.Pod, error) RunInContainer(name string, uid types.UID, container string, cmd []string) ([]byte, error) + CheckpointContainer(podUID types.UID, podFullName, containerName string, options *runtimeapi.CheckpointContainerRequest) error GetKubeletContainerLogs(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error ServeLogs(w http.ResponseWriter, req *http.Request) ResyncInterval() time.Duration @@ -403,6 +405,17 @@ func (s *Server) InstallDefaultHandlers() { s.restfulCont.Handle(proberMetricsPath, compbasemetrics.HandlerFor(p, compbasemetrics.HandlerOpts{ErrorHandling: compbasemetrics.ContinueOnError}), ) + + // Only enable checkpoint API if the feature is enabled + if utilfeature.DefaultFeatureGate.Enabled(features.ContainerCheckpoint) { + s.addMetricsBucketMatcher("checkpoint") + ws = &restful.WebService{} + ws.Path("/checkpoint").Produces(restful.MIME_JSON) + ws.Route(ws.POST("/{podNamespace}/{podID}/{containerName}"). + To(s.checkpoint). + Operation("checkpoint")) + s.restfulCont.Add(ws) + } } // InstallDebuggingHandlers registers the HTTP request patterns that serve logs or run commands/containers @@ -878,6 +891,83 @@ func (s *Server) getPortForward(request *restful.Request, response *restful.Resp proxyStream(response.ResponseWriter, request.Request, url) } +// checkpoint handles the checkpoint API request. It checks if the requested +// podNamespace, pod and container actually exist and only then calls out +// to the runtime to actually checkpoint the container. +func (s *Server) checkpoint(request *restful.Request, response *restful.Response) { + pod, ok := s.host.GetPodByName(request.PathParameter("podNamespace"), request.PathParameter("podID")) + if !ok { + response.WriteError(http.StatusNotFound, fmt.Errorf("pod does not exist")) + return + } + + containerName := request.PathParameter("containerName") + + found := false + for _, container := range pod.Spec.Containers { + if container.Name == containerName { + found = true + } + } + if !found { + for _, container := range pod.Spec.InitContainers { + if container.Name == containerName { + found = true + } + } + } + if !found && utilfeature.DefaultFeatureGate.Enabled(features.EphemeralContainers) { + for _, container := range pod.Spec.EphemeralContainers { + if container.Name == containerName { + found = true + } + } + } + if !found { + response.WriteError( + http.StatusNotFound, + fmt.Errorf("container %v does not exist", containerName), + ) + return + } + + options := &runtimeapi.CheckpointContainerRequest{} + // Query parameter to select an optional timeout. Without the timeout parameter + // the checkpoint command will use the default CRI timeout. + timeouts := request.Request.URL.Query()["timeout"] + if len(timeouts) > 0 { + // If the user specified one or multiple values for timeouts we + // are using the last available value. + timeout, err := strconv.ParseInt(timeouts[len(timeouts)-1], 10, 64) + if err != nil { + response.WriteError( + http.StatusNotFound, + fmt.Errorf("cannot parse value of timeout parameter"), + ) + return + } + options.Timeout = timeout + } + + if err := s.host.CheckpointContainer(pod.UID, kubecontainer.GetPodFullName(pod), containerName, options); err != nil { + response.WriteError( + http.StatusInternalServerError, + fmt.Errorf( + "checkpointing of %v/%v/%v failed (%v)", + request.PathParameter("podNamespace"), + request.PathParameter("podID"), + containerName, + err, + ), + ) + return + } + writeJSONResponse( + response, + []byte(fmt.Sprintf("{\"items\":[\"%s\"]}", options.Location)), + ) +} + // getURLRootPath trims a URL path. // For paths in the format of "/metrics/xxx", "metrics/xxx" is returned; // For all other paths, the first part of the path is returned. diff --git a/pkg/kubelet/server/server_test.go b/pkg/kubelet/server/server_test.go index 5df58ad988ad..521716aa59cf 100644 --- a/pkg/kubelet/server/server_test.go +++ b/pkg/kubelet/server/server_test.go @@ -53,7 +53,10 @@ import ( "k8s.io/utils/pointer" // Do some initialization to decode the query parameters correctly. + utilfeature "k8s.io/apiserver/pkg/util/feature" + featuregatetesting "k8s.io/component-base/featuregate/testing" _ "k8s.io/kubernetes/pkg/apis/core/install" + "k8s.io/kubernetes/pkg/features" kubeletconfiginternal "k8s.io/kubernetes/pkg/kubelet/apis/config" "k8s.io/kubernetes/pkg/kubelet/cm" "k8s.io/kubernetes/pkg/kubelet/cri/streaming" @@ -146,6 +149,13 @@ func (fk *fakeKubelet) RunInContainer(podFullName string, uid types.UID, contain return fk.runFunc(podFullName, uid, containerName, cmd) } +func (fk *fakeKubelet) CheckpointContainer(podUID types.UID, podFullName, containerName string, options *runtimeapi.CheckpointContainerRequest) error { + if containerName == "checkpointingFailure" { + return fmt.Errorf("Returning error for test") + } + return nil +} + type fakeRuntime struct { execFunc func(string, []string, io.Reader, io.WriteCloser, io.WriteCloser, bool, <-chan remotecommand.TerminalSize) error attachFunc func(string, io.Reader, io.WriteCloser, io.WriteCloser, bool, <-chan remotecommand.TerminalSize) error @@ -348,7 +358,8 @@ func newServerTestWithDebuggingHandlers(kubeCfg *kubeletconfiginternal.KubeletCo fw.fakeKubelet, stats.NewResourceAnalyzer(fw.fakeKubelet, time.Minute, &record.FakeRecorder{}), fw.fakeAuth, - kubeCfg) + kubeCfg, + ) fw.serverUnderTest = &server fw.testHTTPServer = httptest.NewServer(fw.serverUnderTest) return fw @@ -459,7 +470,6 @@ func TestServeRunInContainerWithUID(t *testing.T) { } resp, err := http.Post(fw.testHTTPServer.URL+"/run/"+podNamespace+"/"+podName+"/"+testUID+"/"+expectedContainerName+"?cmd=ls%20-a", "", nil) - if err != nil { t.Fatalf("Got error POSTing: %v", err) } @@ -546,6 +556,9 @@ func TestAuthzCoverage(t *testing.T) { } func TestAuthFilters(t *testing.T) { + // Enable features.ContainerCheckpoint during test + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.ContainerCheckpoint, true)() + fw := newServerTest() defer fw.testHTTPServer.Close() @@ -840,6 +853,78 @@ func TestContainerLogsWithInvalidTail(t *testing.T) { } } +func TestCheckpointContainer(t *testing.T) { + // Enable features.ContainerCheckpoint during test + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.ContainerCheckpoint, true)() + + fw := newServerTest() + defer fw.testHTTPServer.Close() + podNamespace := "other" + podName := "foo" + expectedContainerName := "baz" + // GetPodByName() should always fail + fw.fakeKubelet.podByNameFunc = func(namespace, name string) (*v1.Pod, bool) { + return nil, false + } + t.Run("wrong pod namespace", func(t *testing.T) { + resp, err := http.Post(fw.testHTTPServer.URL+"/checkpoint/"+podNamespace+"/"+podName+"/"+expectedContainerName, "", nil) + if err != nil { + t.Errorf("Got error POSTing: %v", err) + } + defer resp.Body.Close() + if resp.StatusCode != http.StatusNotFound { + t.Errorf("Unexpected non-error checkpointing container: %#v", resp) + } + }) + // let GetPodByName() return a result, but our container "wrongContainerName" is not part of the Pod + setPodByNameFunc(fw, podNamespace, podName, expectedContainerName) + t.Run("wrong container name", func(t *testing.T) { + resp, err := http.Post(fw.testHTTPServer.URL+"/checkpoint/"+podNamespace+"/"+podName+"/wrongContainerName", "", nil) + if err != nil { + t.Errorf("Got error POSTing: %v", err) + } + defer resp.Body.Close() + if resp.StatusCode != http.StatusNotFound { + t.Errorf("Unexpected non-error checkpointing container: %#v", resp) + } + }) + // Now the checkpointing of the container fails + fw.fakeKubelet.podByNameFunc = func(namespace, name string) (*v1.Pod, bool) { + return &v1.Pod{ + ObjectMeta: metav1.ObjectMeta{ + Namespace: podNamespace, + Name: podName, + }, + Spec: v1.PodSpec{ + Containers: []v1.Container{ + { + Name: "checkpointingFailure", + }, + }, + }, + }, true + } + t.Run("checkpointing fails", func(t *testing.T) { + resp, err := http.Post(fw.testHTTPServer.URL+"/checkpoint/"+podNamespace+"/"+podName+"/checkpointingFailure", "", nil) + if err != nil { + t.Errorf("Got error POSTing: %v", err) + } + defer resp.Body.Close() + assert.Equal(t, resp.StatusCode, 500) + body, _ := ioutil.ReadAll(resp.Body) + assert.Equal(t, string(body), "checkpointing of other/foo/checkpointingFailure failed (Returning error for test)") + }) + // Now test a successful checkpoint succeeds + setPodByNameFunc(fw, podNamespace, podName, expectedContainerName) + t.Run("checkpointing succeeds", func(t *testing.T) { + resp, err := http.Post(fw.testHTTPServer.URL+"/checkpoint/"+podNamespace+"/"+podName+"/"+expectedContainerName, "", nil) + if err != nil { + t.Errorf("Got error POSTing: %v", err) + } + assert.Equal(t, resp.StatusCode, 200) + }) +} + func makeReq(t *testing.T, method, url, clientProtocol string) *http.Request { req, err := http.NewRequest(method, url, nil) if err != nil { diff --git a/staging/src/k8s.io/cri-api/pkg/apis/services.go b/staging/src/k8s.io/cri-api/pkg/apis/services.go index ac7cc59fbf4d..4a3efd75e780 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/services.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/services.go @@ -56,6 +56,8 @@ type ContainerManager interface { // for the container. If it returns error, new container log file MUST NOT // be created. ReopenContainerLog(ContainerID string) error + // CheckpointContainer checkpoints a container + CheckpointContainer(options *runtimeapi.CheckpointContainerRequest) error } // PodSandboxManager contains methods for operating on PodSandboxes. The methods @@ -76,8 +78,6 @@ type PodSandboxManager interface { ListPodSandbox(filter *runtimeapi.PodSandboxFilter) ([]*runtimeapi.PodSandbox, error) // PortForward prepares a streaming endpoint to forward ports from a PodSandbox, and returns the address. PortForward(*runtimeapi.PortForwardRequest) (*runtimeapi.PortForwardResponse, error) - // CheckpointContainer checkpoints a container - CheckpointContainer(containerID, checkpointDir string) error } // ContainerStatsManager contains methods for retrieving the container diff --git a/staging/src/k8s.io/cri-api/pkg/apis/testing/fake_runtime_service.go b/staging/src/k8s.io/cri-api/pkg/apis/testing/fake_runtime_service.go index 8e9c3a2ce61d..fd82c79d8a4a 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/testing/fake_runtime_service.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/testing/fake_runtime_service.go @@ -694,3 +694,17 @@ func (r *FakeRuntimeService) ReopenContainerLog(containerID string) error { return nil } + +// CheckpointContainer emulates call to checkpoint a container in the FakeRuntimeService. +func (r *FakeRuntimeService) CheckpointContainer(options *runtimeapi.CheckpointContainerRequest) error { + r.Lock() + defer r.Unlock() + + r.Called = append(r.Called, "CheckpointContainer") + + if err := r.popError("CheckpointContainer"); err != nil { + return err + } + + return nil +} From 92ea6e32b82facc9f225906443849cb3eafc91aa Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Wed, 2 Feb 2022 06:52:43 +0000 Subject: [PATCH 8/8] Add e2e tests for checkpointing Signed-off-by: Adrian Reber --- test/e2e_node/checkpoint_container.go | 155 ++++++++++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 test/e2e_node/checkpoint_container.go diff --git a/test/e2e_node/checkpoint_container.go b/test/e2e_node/checkpoint_container.go new file mode 100644 index 000000000000..a89260ab55ba --- /dev/null +++ b/test/e2e_node/checkpoint_container.go @@ -0,0 +1,155 @@ +/* +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package e2enode + +import ( + "context" + "fmt" + "net/http" + "strings" + "time" + + "github.com/onsi/ginkgo/v2" + v1 "k8s.io/api/core/v1" + apierrors "k8s.io/apimachinery/pkg/api/errors" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + clientset "k8s.io/client-go/kubernetes" + restclient "k8s.io/client-go/rest" + "k8s.io/kubernetes/test/e2e/framework" + testutils "k8s.io/kubernetes/test/utils" + imageutils "k8s.io/kubernetes/test/utils/image" + admissionapi "k8s.io/pod-security-admission/api" +) + +const ( + // timeout for proxy requests. + proxyTimeout = 2 * time.Minute +) + +// proxyPostRequest performs a post on a node proxy endpoint given the nodename and rest client. +func proxyPostRequest(c clientset.Interface, node, endpoint string, port int) (restclient.Result, error) { + // proxy tends to hang in some cases when Node is not ready. Add an artificial timeout for this call. #22165 + var result restclient.Result + finished := make(chan struct{}, 1) + go func() { + result = c.CoreV1().RESTClient().Post(). + Resource("nodes"). + SubResource("proxy"). + Name(fmt.Sprintf("%v:%v", node, port)). + Suffix(endpoint). + Do(context.TODO()) + + finished <- struct{}{} + }() + select { + case <-finished: + return result, nil + case <-time.After(proxyTimeout): + return restclient.Result{}, nil + } +} + +var _ = SIGDescribe("Checkpoint Container [NodeFeature:CheckpointContainer]", func() { + f := framework.NewDefaultFramework("checkpoint-container-test") + f.NamespacePodSecurityEnforceLevel = admissionapi.LevelBaseline + ginkgo.It("will checkpoint a container out of a pod", func() { + ginkgo.By("creating a target pod") + podClient := f.PodClient() + pod := podClient.CreateSync(&v1.Pod{ + ObjectMeta: metav1.ObjectMeta{Name: "checkpoint-container-pod"}, + Spec: v1.PodSpec{ + Containers: []v1.Container{ + { + Name: "test-container-1", + Image: imageutils.GetE2EImage(imageutils.BusyBox), + Command: []string{"/bin/sleep"}, + Args: []string{"10000"}, + }, + }, + }, + }) + + p, err := podClient.Get( + context.TODO(), + pod.Name, + metav1.GetOptions{}, + ) + + framework.ExpectNoError(err) + isReady, err := testutils.PodRunningReady(p) + framework.ExpectNoError(err) + framework.ExpectEqual( + isReady, + true, + "pod should be ready", + ) + + framework.Logf( + "About to checkpoint container %q on %q", + pod.Spec.Containers[0].Name, + pod.Spec.NodeName, + ) + result, err := proxyPostRequest( + f.ClientSet, + pod.Spec.NodeName, + fmt.Sprintf( + "checkpoint/%s/%s/%s", + f.Namespace.Name, + pod.Name, + pod.Spec.Containers[0].Name, + ), + framework.KubeletPort, + ) + + framework.ExpectNoError(err) + + err = result.Error() + if err != nil { + statusError, ok := err.(*apierrors.StatusError) + if !ok { + framework.Failf("got error %#v, expected StatusError", err) + } + // If we are testing against a kubelet with ContainerCheckpoint == false + // we should get a 404. So a 404 is (also) a good sign. + if (int(statusError.ErrStatus.Code)) == http.StatusNotFound { + ginkgo.Skip("Feature 'ContainerCheckpoint' is not enabled and not available") + return + } + + // If the container engine has not implemented the Checkpoint CRI API + // we will get 500 and a message with + // '(rpc error: code = Unimplemented desc = unknown method CheckpointContainer' + if (int(statusError.ErrStatus.Code)) == http.StatusInternalServerError { + if strings.Contains( + statusError.ErrStatus.Message, + "(rpc error: code = Unimplemented desc = unknown method CheckpointContainer", + ) { + ginkgo.Skip("Container engine does not implement 'CheckpointContainer'") + return + } + } + framework.Failf("Unexpected status code (%d) during 'CheckpointContainer'", statusError.ErrStatus.Code) + } + + framework.ExpectNoError(err) + // TODO: once a container engine implements the Checkpoint CRI API this needs + // to be extended to handle it. + // + // Checkpointing actually worked. Verify that the checkpoint exists and that + // it is a checkpoint. + }) +})