Merge pull request #33386 from yujuhong/message

Automatic merge from submit-queue

CRI: add Message in ContainerStatus

Kubernetes expects a brief CamelCase string as "Reason" and a human-readable
string as "Message" in the conatiner status. It is difficult for kubelet to
derive the other one if the runtime only provides one of the two fields.
Augment the API by adding the "Message" field.

/cc @kubernetes/sig-node
This commit is contained in:
Kubernetes Submit Queue 2016-09-23 18:30:20 -07:00 committed by GitHub
commit 1751e47e0f
5 changed files with 211 additions and 189 deletions

View File

@ -1880,14 +1880,17 @@ type ContainerStatus struct {
// Reference to the image in use. For most runtimes, this should be an
// image ID
ImageRef *string `protobuf:"bytes,9,opt,name=image_ref,json=imageRef" json:"image_ref,omitempty"`
// A string explains why container is in such a status.
// A brief CamelCase string explains why container is in such a status.
Reason *string `protobuf:"bytes,10,opt,name=reason" json:"reason,omitempty"`
// A human-readable message indication details about why container is in
// this state.
Message *string `protobuf:"bytes,11,opt,name=message" json:"message,omitempty"`
// Labels are key value pairs that may be used to scope and select individual resources.
Labels map[string]string `protobuf:"bytes,11,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
Labels map[string]string `protobuf:"bytes,12,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
// Annotations is an unstructured key value map.
Annotations map[string]string `protobuf:"bytes,12,rep,name=annotations" json:"annotations,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
Annotations map[string]string `protobuf:"bytes,13,rep,name=annotations" json:"annotations,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
// Mounts specifies mounts for the container
Mounts []*Mount `protobuf:"bytes,13,rep,name=mounts" json:"mounts,omitempty"`
Mounts []*Mount `protobuf:"bytes,14,rep,name=mounts" json:"mounts,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
@ -1966,6 +1969,13 @@ func (m *ContainerStatus) GetReason() string {
return ""
}
func (m *ContainerStatus) GetMessage() string {
if m != nil && m.Message != nil {
return *m.Message
}
return ""
}
func (m *ContainerStatus) GetLabels() map[string]string {
if m != nil {
return m.Labels
@ -3127,184 +3137,185 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{
}
var fileDescriptorApi = []byte{
// 2853 bytes of a gzipped FileDescriptorProto
// 2865 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x5a, 0xcd, 0x72, 0x1b, 0xc7,
0xf1, 0x17, 0x08, 0x82, 0x04, 0x1a, 0x04, 0x08, 0x8e, 0x28, 0x12, 0x82, 0x64, 0x89, 0x5a, 0x5b,
0xff, 0xbf, 0x44, 0x5b, 0x2c, 0x85, 0x49, 0x49, 0x91, 0x6c, 0xcb, 0xa6, 0x49, 0x5a, 0x45, 0x4b,
0xa2, 0x98, 0x85, 0xa4, 0x58, 0x27, 0xd4, 0x0a, 0x3b, 0x24, 0x57, 0x02, 0x76, 0xd7, 0xbb, 0x0b,
0x46, 0xc8, 0x35, 0x97, 0x1c, 0x72, 0xc9, 0x1b, 0xe4, 0xe0, 0xaa, 0x9c, 0x72, 0x49, 0x55, 0x2e,
0xb9, 0xe5, 0x9c, 0xca, 0x83, 0xe4, 0x09, 0x92, 0x63, 0x7a, 0x3e, 0x76, 0x76, 0xf6, 0x03, 0x34,
0xa8, 0x54, 0xc5, 0xba, 0xed, 0x74, 0xf7, 0xcc, 0xf4, 0x74, 0xf7, 0xf4, 0xf4, 0x6f, 0x66, 0xa1,
0x66, 0xf9, 0xce, 0x86, 0x1f, 0x78, 0x91, 0x47, 0xe6, 0x83, 0x91, 0x1b, 0x39, 0x43, 0x6a, 0xac,
0x43, 0xf3, 0x05, 0x0d, 0x42, 0xc7, 0x73, 0x4d, 0xfa, 0xdd, 0x88, 0x86, 0x11, 0x69, 0xc3, 0xfc,
0x89, 0xa0, 0xb4, 0x4b, 0x6b, 0xa5, 0x1b, 0x35, 0x33, 0x6e, 0x1a, 0x7f, 0x2c, 0xc1, 0xa2, 0x12,
0x0e, 0x7d, 0xcf, 0x0d, 0xe9, 0x64, 0x69, 0x72, 0x0d, 0x16, 0xe4, 0x24, 0x3d, 0xd7, 0x1a, 0xd2,
0xf6, 0x0c, 0x67, 0xd7, 0x25, 0x6d, 0x1f, 0x49, 0xe4, 0xff, 0x61, 0x31, 0x16, 0x89, 0x07, 0x29,
0x73, 0xa9, 0xa6, 0x24, 0xcb, 0xd9, 0xc8, 0x06, 0x9c, 0x8f, 0x05, 0x71, 0x0d, 0x4a, 0x78, 0x96,
0x0b, 0x2f, 0x49, 0xd6, 0x96, 0xef, 0x48, 0x79, 0x63, 0x0b, 0x6a, 0x3b, 0xfb, 0xdd, 0xa7, 0x7e,
0xc4, 0x3a, 0xa3, 0x8a, 0x21, 0x0d, 0x58, 0x1f, 0x54, 0xb1, 0xcc, 0x54, 0x94, 0x4d, 0xd2, 0x81,
0x6a, 0x48, 0xad, 0xa0, 0x7f, 0x4c, 0x43, 0x54, 0x8f, 0xb1, 0x54, 0xdb, 0xf8, 0x53, 0x09, 0xea,
0x07, 0x5e, 0x10, 0x3d, 0xb1, 0x7c, 0xdf, 0x71, 0x8f, 0x08, 0x81, 0x59, 0xbe, 0x0c, 0xb1, 0x4a,
0xfe, 0x4d, 0x6e, 0x41, 0x95, 0x9b, 0xb3, 0xef, 0x0d, 0xf8, 0xf2, 0x9a, 0x9b, 0x4b, 0x1b, 0x52,
0x99, 0x8d, 0x03, 0xc9, 0x30, 0x95, 0x08, 0xb9, 0x0e, 0xcd, 0xbe, 0xe7, 0x46, 0x96, 0xe3, 0xd2,
0xa0, 0xe7, 0xe3, 0xd8, 0x7c, 0xb5, 0x15, 0xb3, 0xa1, 0xa8, 0x6c, 0x42, 0x72, 0x09, 0x6a, 0xc7,
0x5e, 0x18, 0x09, 0x89, 0x59, 0x2e, 0x51, 0x65, 0x04, 0xce, 0x5c, 0x85, 0x79, 0xce, 0x74, 0xfc,
0x76, 0x85, 0x6b, 0x32, 0xc7, 0x9a, 0x7b, 0xbe, 0xf1, 0x7d, 0x09, 0x2a, 0x4f, 0x3c, 0x9c, 0xbc,
0x50, 0xd3, 0xf4, 0xd4, 0x56, 0x74, 0x2c, 0xdd, 0xa1, 0x4d, 0x8d, 0xc4, 0x64, 0x6a, 0x26, 0x21,
0x5c, 0x21, 0xa6, 0x66, 0x4c, 0xb4, 0x56, 0x40, 0x2d, 0xdb, 0x73, 0x07, 0x63, 0xae, 0x56, 0xd5,
0x54, 0x6d, 0xe6, 0xc9, 0x90, 0x0e, 0x1c, 0x77, 0xf4, 0xb6, 0x17, 0xd0, 0x81, 0xf5, 0x8a, 0x0e,
0xb8, 0x7a, 0x55, 0xb3, 0x29, 0xc9, 0xa6, 0xa0, 0x1a, 0xaf, 0x61, 0x91, 0xb9, 0x3e, 0xf4, 0xad,
0x3e, 0x95, 0xfe, 0xc1, 0x40, 0xe1, 0x93, 0xba, 0x34, 0xfa, 0x95, 0x17, 0xbc, 0xe1, 0x7a, 0x57,
0xcd, 0x3a, 0xa3, 0xed, 0x0b, 0x12, 0xb9, 0x08, 0x55, 0xa1, 0x97, 0x63, 0x73, 0xc5, 0xab, 0x26,
0xb7, 0xc2, 0x81, 0x63, 0x2b, 0x96, 0xe3, 0xf7, 0xb9, 0xc6, 0x92, 0xb5, 0xe7, 0xf7, 0x8d, 0xdf,
0x94, 0xe0, 0xc2, 0x63, 0x36, 0xf9, 0x81, 0x67, 0x77, 0x2d, 0xd7, 0x7e, 0xe5, 0xbd, 0xdd, 0xf6,
0xdc, 0x43, 0xe7, 0x88, 0x7c, 0x08, 0x8d, 0xfe, 0x51, 0xe0, 0x8d, 0x7c, 0x5c, 0x69, 0x40, 0xdd,
0x48, 0xda, 0x6a, 0x41, 0x10, 0x0f, 0x38, 0x8d, 0xec, 0xc2, 0x92, 0x1b, 0xab, 0xda, 0xf3, 0xb8,
0xae, 0x21, 0x9f, 0xbd, 0xbe, 0xd9, 0x56, 0x6e, 0xce, 0x2c, 0xc6, 0x6c, 0xb9, 0x69, 0x42, 0x68,
0x04, 0x40, 0x92, 0xf9, 0x9f, 0xd0, 0xc8, 0xb2, 0xad, 0xc8, 0x2a, 0x74, 0x52, 0x0b, 0xca, 0x23,
0xb9, 0xc0, 0x9a, 0xc9, 0x3e, 0xc9, 0x65, 0xa8, 0xa9, 0xf1, 0xa4, 0x3f, 0x12, 0x02, 0x0b, 0x6c,
0x2b, 0x8a, 0xe8, 0xd0, 0x17, 0x61, 0xd2, 0x30, 0xe3, 0xa6, 0xf1, 0xd7, 0x59, 0x68, 0xe5, 0x16,
0x7d, 0x17, 0xaa, 0x43, 0x39, 0x3d, 0x9f, 0xb6, 0xbe, 0x79, 0x29, 0x89, 0xd6, 0x9c, 0x86, 0xa6,
0x12, 0x66, 0x8e, 0x67, 0x26, 0xd5, 0x76, 0xb1, 0x6a, 0x33, 0x4b, 0x0e, 0xbc, 0xa3, 0x9e, 0xed,
0x04, 0xb4, 0x1f, 0x79, 0xc1, 0x58, 0x6a, 0xb9, 0x80, 0xc4, 0x9d, 0x98, 0x46, 0x7e, 0x0a, 0x75,
0xdb, 0x0d, 0x95, 0x0d, 0x67, 0xf9, 0xe4, 0x44, 0x4d, 0xae, 0xb6, 0xaa, 0x09, 0x28, 0x26, 0xed,
0x46, 0xee, 0x41, 0x83, 0xed, 0x80, 0xde, 0x50, 0x6c, 0xc0, 0x10, 0x03, 0xaa, 0x8c, 0xdd, 0x96,
0x35, 0x9d, 0xd5, 0xee, 0x34, 0x17, 0xfc, 0xa4, 0x11, 0x92, 0xcf, 0x61, 0x8e, 0x47, 0x5b, 0xd8,
0x9e, 0xe3, 0x7d, 0xae, 0x17, 0xac, 0x53, 0x18, 0x65, 0xe3, 0x31, 0x97, 0xdb, 0x75, 0xa3, 0x60,
0x6c, 0xca, 0x4e, 0xe4, 0x31, 0xd4, 0x2d, 0xd7, 0xf5, 0x22, 0x4b, 0xa8, 0x3b, 0xcf, 0xc7, 0x58,
0x9f, 0x3c, 0xc6, 0x56, 0x22, 0x2c, 0x06, 0xd2, 0xbb, 0x93, 0x9f, 0x41, 0x85, 0xef, 0x80, 0x76,
0x95, 0x2f, 0xfb, 0x8a, 0x1a, 0xa7, 0x30, 0x34, 0x4d, 0x21, 0xdc, 0xb9, 0x07, 0x75, 0x4d, 0x35,
0x16, 0x1a, 0x6f, 0xe8, 0x58, 0x46, 0x0b, 0xfb, 0x24, 0xcb, 0x50, 0x39, 0xb1, 0x06, 0xa3, 0xd8,
0x23, 0xa2, 0x71, 0x7f, 0xe6, 0xe7, 0xa5, 0xce, 0x03, 0x68, 0x65, 0x35, 0x3a, 0x4b, 0x7f, 0x63,
0x0f, 0x96, 0xcd, 0x91, 0x9b, 0x28, 0x16, 0x1f, 0x0c, 0x3f, 0x81, 0xb9, 0x3e, 0xd7, 0x51, 0x46,
0xcf, 0xc5, 0x89, 0x16, 0x31, 0xa5, 0xa0, 0xf1, 0x39, 0x5c, 0xc8, 0x0c, 0x25, 0x8f, 0x8d, 0x8f,
0xa0, 0xe9, 0x7b, 0x76, 0x2f, 0x14, 0xe4, 0x1e, 0x46, 0xbd, 0xdc, 0x81, 0xbe, 0x92, 0xdd, 0xb3,
0x59, 0xf7, 0x6e, 0xe4, 0xf9, 0x79, 0x55, 0xa6, 0xeb, 0xde, 0x86, 0x95, 0x6c, 0x77, 0x31, 0xbd,
0xf1, 0x05, 0xac, 0x9a, 0x74, 0xe8, 0x9d, 0xd0, 0x77, 0x1d, 0xba, 0x03, 0xed, 0xfc, 0x00, 0xc9,
0xe0, 0x09, 0xb5, 0x8b, 0x6e, 0x18, 0x85, 0x67, 0x1b, 0xfc, 0xa6, 0x3e, 0x80, 0x4c, 0x81, 0x62,
0x1c, 0xd2, 0x84, 0x19, 0xcc, 0xfc, 0xa2, 0x13, 0x7e, 0x19, 0x2f, 0xa1, 0xb6, 0xaf, 0xe7, 0x03,
0x3d, 0x87, 0xe2, 0x41, 0x27, 0x9b, 0x64, 0x13, 0xe6, 0xa7, 0x4d, 0x60, 0xb1, 0xa0, 0xf1, 0x28,
0x97, 0x3c, 0xa5, 0x0e, 0x9b, 0x00, 0x2a, 0x07, 0x85, 0x32, 0x16, 0x48, 0x7e, 0x3c, 0x53, 0x93,
0x32, 0xbe, 0x4f, 0x25, 0x24, 0x6d, 0x31, 0xb6, 0x5a, 0x8c, 0x9d, 0x4a, 0x50, 0x33, 0x67, 0x49,
0x50, 0x1b, 0x50, 0x09, 0x71, 0x48, 0x91, 0x22, 0x9b, 0xda, 0xe2, 0x64, 0xaf, 0xaf, 0xc4, 0x94,
0xd4, 0x14, 0x62, 0xe4, 0x03, 0x80, 0x3e, 0x1e, 0x5d, 0x11, 0xb5, 0x7b, 0x96, 0xc8, 0x9d, 0x65,
0xb3, 0x26, 0x29, 0x5b, 0x11, 0xb9, 0x9f, 0xd8, 0xb1, 0xc2, 0xd5, 0x58, 0x2b, 0x50, 0x23, 0xe5,
0x97, 0xc4, 0xd2, 0x6a, 0xb7, 0xcf, 0x9d, 0xbe, 0xdb, 0x65, 0x3f, 0x21, 0xac, 0x25, 0xac, 0xf9,
0x89, 0x09, 0x4b, 0xf4, 0x98, 0x26, 0x61, 0x55, 0x27, 0x26, 0x2c, 0x39, 0xc6, 0xa9, 0x09, 0xeb,
0xc7, 0x4c, 0x3d, 0x4f, 0xa0, 0x9d, 0xdf, 0x3a, 0x32, 0x65, 0x60, 0xfa, 0x09, 0x39, 0xe5, 0x94,
0xf4, 0x23, 0xbb, 0x48, 0x41, 0xe3, 0x9f, 0x25, 0x3d, 0xea, 0xbe, 0x76, 0x06, 0x11, 0x0d, 0x72,
0x51, 0xa7, 0x82, 0x67, 0x66, 0xba, 0xe0, 0xe9, 0x42, 0x93, 0x9b, 0xbd, 0x87, 0x95, 0x0d, 0x3f,
0xdf, 0x30, 0xea, 0x98, 0xbd, 0x3f, 0x29, 0xd0, 0x47, 0x4c, 0x29, 0x7c, 0xd6, 0x95, 0xe2, 0xc2,
0xe2, 0x8d, 0x81, 0x4e, 0xeb, 0x7c, 0x09, 0x24, 0x2f, 0x74, 0x26, 0xd3, 0x7d, 0xc3, 0xb6, 0x2b,
0x2b, 0x12, 0x0b, 0xd2, 0xf6, 0x21, 0x57, 0xe3, 0x14, 0xbb, 0x09, 0x3d, 0x4d, 0x29, 0x68, 0xfc,
0xa1, 0x0c, 0x90, 0x30, 0xdf, 0xdb, 0x7d, 0x7a, 0x57, 0xed, 0x1a, 0x51, 0x1a, 0x5c, 0x2d, 0xd0,
0xa2, 0x70, 0xbf, 0x7c, 0x9d, 0xde, 0x2f, 0xa2, 0x48, 0xf8, 0xa8, 0xa8, 0xf7, 0x7b, 0xbb, 0x53,
0xb6, 0x61, 0x25, 0xeb, 0x6e, 0xb9, 0x4f, 0x6e, 0x42, 0xc5, 0xc1, 0x2a, 0x50, 0x80, 0x9d, 0xfa,
0xe6, 0xf9, 0x82, 0x65, 0x99, 0x42, 0xc2, 0xb8, 0x06, 0xb5, 0xbd, 0xa1, 0x75, 0x44, 0xbb, 0x3e,
0xed, 0xb3, 0xb9, 0x1c, 0xd6, 0x90, 0xf3, 0x8b, 0x86, 0xb1, 0x09, 0xd5, 0x47, 0x74, 0xfc, 0x82,
0xcd, 0x3b, 0xad, 0x7e, 0xc6, 0xdf, 0x4b, 0xb0, 0xca, 0xd3, 0xdd, 0x76, 0x0c, 0x2e, 0x50, 0x39,
0x6f, 0x14, 0xe0, 0x41, 0xc0, 0x5d, 0xea, 0x8f, 0x7a, 0x3e, 0x0d, 0x1c, 0x4f, 0xc4, 0x14, 0x73,
0xa9, 0x3f, 0x3a, 0xe0, 0x04, 0x06, 0x40, 0x18, 0xfb, 0xbb, 0x91, 0x27, 0x63, 0xab, 0x6c, 0x56,
0x91, 0xf0, 0x0b, 0xd6, 0x8e, 0xfb, 0x86, 0xc7, 0x58, 0x9f, 0x87, 0x3c, 0x86, 0x44, 0xdf, 0x2e,
0x27, 0x60, 0xa0, 0x5f, 0x18, 0xe2, 0x99, 0x1c, 0x8c, 0x7b, 0x03, 0x67, 0xe8, 0x20, 0x22, 0x70,
0x7b, 0xaf, 0xc6, 0x11, 0x0d, 0x65, 0xe0, 0x10, 0xc1, 0x7c, 0xcc, 0x78, 0x7b, 0xee, 0x57, 0x8c,
0x43, 0x0c, 0x68, 0x78, 0xde, 0xb0, 0x17, 0xf6, 0xbd, 0x00, 0x91, 0xa5, 0xfd, 0x9a, 0xe7, 0xfb,
0xb2, 0x59, 0x47, 0x62, 0x97, 0xd1, 0xb6, 0xec, 0xd7, 0x86, 0x05, 0x8d, 0xee, 0x2e, 0x5f, 0x8e,
0xc4, 0x2b, 0x58, 0xba, 0x8f, 0x42, 0xb9, 0x9d, 0xb0, 0x74, 0x67, 0xdf, 0x8c, 0x16, 0x78, 0x83,
0xd8, 0x0e, 0xfc, 0x9b, 0xd1, 0xa2, 0xb1, 0x1f, 0xd7, 0xed, 0xfc, 0x9b, 0x19, 0x6c, 0x40, 0x4f,
0x10, 0x1d, 0x09, 0xe8, 0x2a, 0x1a, 0x86, 0x0d, 0xb0, 0x6d, 0xf9, 0xd6, 0x2b, 0x67, 0xe0, 0x44,
0x63, 0x74, 0x60, 0xcb, 0xb2, 0xed, 0x5e, 0x3f, 0xa6, 0x38, 0x34, 0x06, 0xae, 0x8b, 0x48, 0xdf,
0xd6, 0xc8, 0xe4, 0x63, 0x58, 0xb2, 0x03, 0xcf, 0x4f, 0xcb, 0x0a, 0x24, 0xdb, 0x62, 0x0c, 0x5d,
0xd8, 0xf8, 0x77, 0x09, 0x96, 0xd3, 0x6e, 0x91, 0xc0, 0xe0, 0x01, 0xd4, 0x82, 0xd8, 0x41, 0x32,
0x49, 0xac, 0xa5, 0xcf, 0xad, 0xbc, 0x23, 0xcd, 0xa4, 0x0b, 0xee, 0xc3, 0x85, 0x8c, 0x02, 0xa5,
0x54, 0xe0, 0x25, 0x6b, 0x33, 0x53, 0x82, 0xe4, 0x8b, 0x04, 0x35, 0xc6, 0xe5, 0x49, 0x99, 0xf7,
0x5d, 0x51, 0x7d, 0x53, 0xa6, 0x57, 0x68, 0x32, 0xc6, 0x08, 0xff, 0x27, 0x5d, 0x91, 0x45, 0x14,
0xbc, 0xcf, 0x73, 0xe4, 0x08, 0xf7, 0x18, 0xdf, 0x42, 0x4d, 0x91, 0x62, 0x98, 0x25, 0x62, 0x8f,
0xc3, 0x2c, 0xa4, 0x1c, 0x49, 0xe0, 0x85, 0x14, 0xfc, 0x64, 0x78, 0x16, 0x6d, 0xed, 0xb0, 0x59,
0xac, 0x41, 0x0f, 0x29, 0x21, 0xcf, 0xf2, 0x65, 0xb3, 0x99, 0x90, 0x1f, 0x22, 0xd5, 0xd8, 0x82,
0x25, 0x65, 0x9c, 0x53, 0xc1, 0x9d, 0x06, 0xd6, 0x66, 0xd2, 0x60, 0xed, 0x5f, 0x15, 0x58, 0xcc,
0xba, 0xe4, 0x4e, 0x0e, 0xab, 0x75, 0x12, 0x73, 0x66, 0xe7, 0xd3, 0x32, 0xec, 0x8d, 0x78, 0x13,
0xcf, 0x64, 0x2c, 0xa2, 0xf6, 0xb9, 0xdc, 0xd8, 0x4c, 0x9f, 0xbe, 0x37, 0x1c, 0x62, 0x42, 0xe0,
0x2b, 0xc3, 0x62, 0x51, 0x36, 0x99, 0xf6, 0x56, 0x70, 0xc4, 0xb6, 0x0d, 0x23, 0xf3, 0x6f, 0x72,
0x15, 0xea, 0xac, 0xbc, 0x41, 0x74, 0xc5, 0xa0, 0x9e, 0xbc, 0x7a, 0x00, 0x49, 0x42, 0xa0, 0x47,
0xae, 0xc3, 0x2c, 0x75, 0x4f, 0xe2, 0x5c, 0x9a, 0x5c, 0x83, 0xc4, 0xc9, 0xc3, 0xe4, 0x6c, 0x74,
0xd8, 0xdc, 0x90, 0x5d, 0x52, 0xc4, 0x85, 0x4e, 0x53, 0x09, 0xf2, 0xbb, 0x0b, 0x53, 0x72, 0xc9,
0x67, 0x2a, 0xb5, 0x57, 0x33, 0xc9, 0x39, 0x63, 0xa9, 0xc2, 0xfc, 0xfe, 0x28, 0x9d, 0xdf, 0x6b,
0x7c, 0x88, 0x9b, 0x13, 0x87, 0x38, 0x1d, 0xbf, 0x5d, 0x01, 0xf0, 0x03, 0xe7, 0xc4, 0x19, 0xd0,
0x23, 0x6a, 0xb7, 0x81, 0x5f, 0x31, 0x68, 0x14, 0x7e, 0x89, 0x25, 0xaf, 0x41, 0x7a, 0x81, 0xe7,
0x45, 0x87, 0x61, 0xbb, 0x2e, 0xae, 0x3e, 0x62, 0xb2, 0xc9, 0xa9, 0xec, 0xa6, 0x82, 0x41, 0x65,
0x7e, 0xb7, 0xb2, 0x20, 0xea, 0x73, 0x6c, 0xf3, 0xab, 0x95, 0x65, 0x76, 0x30, 0xda, 0x8e, 0xdb,
0x6e, 0xf0, 0x9e, 0xa2, 0xc1, 0xf2, 0x1d, 0xff, 0xe8, 0x79, 0x2e, 0xc2, 0xff, 0x26, 0x67, 0xd5,
0x38, 0xe5, 0x29, 0x12, 0x58, 0xd4, 0x46, 0xd1, 0xb8, 0xbd, 0xc8, 0xe9, 0xec, 0x13, 0x71, 0xb6,
0x2c, 0x3e, 0x5b, 0xdc, 0xfb, 0x1f, 0x4c, 0xd8, 0xc4, 0xef, 0x0d, 0xd2, 0xfc, 0x73, 0x09, 0x56,
0xb6, 0xf9, 0x71, 0xae, 0x25, 0x98, 0x33, 0x20, 0x25, 0x72, 0x5b, 0x41, 0xd2, 0x2c, 0xac, 0xc9,
0x2e, 0x56, 0xca, 0x91, 0x2f, 0xa1, 0x19, 0x8f, 0x29, 0x7b, 0x96, 0x7f, 0x08, 0xcc, 0x36, 0x42,
0xbd, 0x69, 0x7c, 0x06, 0xab, 0x39, 0x9d, 0xe5, 0xd1, 0x7b, 0x0d, 0x13, 0xa1, 0xba, 0x65, 0x53,
0x2a, 0xd7, 0x15, 0x0d, 0xb1, 0xdd, 0x7d, 0x06, 0x69, 0xad, 0x20, 0xca, 0x2d, 0x78, 0x8a, 0xbe,
0x1c, 0xcf, 0xa6, 0xfb, 0x4a, 0xc8, 0xd9, 0x85, 0x65, 0x86, 0x74, 0xdf, 0x61, 0x50, 0x96, 0x07,
0xd8, 0xb2, 0xbd, 0x51, 0x24, 0xf3, 0x5f, 0xdc, 0x34, 0x56, 0x05, 0xfa, 0xce, 0xcf, 0xf6, 0x29,
0xac, 0x08, 0xf0, 0xfb, 0x2e, 0x8b, 0xb8, 0x18, 0x43, 0xef, 0xfc, 0xb8, 0xbf, 0x9b, 0xd1, 0x12,
0xe1, 0x84, 0x6a, 0xfd, 0x56, 0xba, 0x5a, 0x5f, 0xcd, 0x3b, 0x3c, 0x55, 0x41, 0xe6, 0xc3, 0xa8,
0x5c, 0x10, 0x46, 0x66, 0xae, 0xa4, 0x9f, 0xe5, 0x29, 0xe3, 0xe3, 0xfc, 0xe8, 0xff, 0xc3, 0x8a,
0x7e, 0x4f, 0x54, 0xf4, 0x6a, 0x6a, 0x75, 0x8b, 0x70, 0x3b, 0x53, 0xd1, 0xb7, 0x27, 0xa9, 0xa9,
0x0a, 0xfa, 0xdf, 0xce, 0x42, 0x4d, 0xf1, 0x72, 0x36, 0xcd, 0x1b, 0x69, 0xa6, 0xc0, 0x48, 0xfa,
0x91, 0x54, 0x7e, 0x97, 0x23, 0x69, 0xf6, 0x87, 0x8e, 0x24, 0x2c, 0xfe, 0xf8, 0x47, 0x2f, 0xa0,
0x87, 0xf2, 0x88, 0xa9, 0x72, 0x82, 0x49, 0x0f, 0x13, 0xc7, 0xcf, 0x4d, 0xe5, 0xf8, 0x34, 0x74,
0x98, 0xcf, 0x42, 0x87, 0x3b, 0x99, 0xf3, 0xe5, 0x4a, 0x7e, 0xb8, 0xc2, 0x93, 0x65, 0xb7, 0xe8,
0x64, 0xf9, 0xb0, 0xa0, 0xf3, 0x7b, 0x0b, 0x1c, 0x1e, 0x0b, 0xe0, 0xa0, 0x47, 0x95, 0xcc, 0x5e,
0x9b, 0x68, 0x32, 0x45, 0x95, 0xe8, 0x81, 0xe4, 0x97, 0x66, 0x6a, 0x52, 0x2c, 0x15, 0xa4, 0xec,
0x9f, 0x5c, 0x75, 0x4d, 0x91, 0x0a, 0x7e, 0xaf, 0x17, 0x3e, 0x13, 0xee, 0x84, 0xee, 0xe4, 0xb0,
0xe6, 0x74, 0x51, 0x77, 0x2b, 0x0d, 0x35, 0xcf, 0x16, 0x2e, 0x39, 0xa4, 0xc9, 0x4f, 0x62, 0xcc,
0xbc, 0x82, 0x2d, 0x40, 0x42, 0x4d, 0x52, 0x90, 0x8d, 0xd5, 0xd1, 0xa1, 0xe3, 0x3a, 0xe1, 0xb1,
0xe0, 0xcf, 0x71, 0x3e, 0xc4, 0xa4, 0x2d, 0xfe, 0xa4, 0x43, 0xdf, 0x22, 0x24, 0xe9, 0x7b, 0x36,
0xe5, 0xc1, 0x58, 0x31, 0xab, 0x8c, 0xb0, 0x8d, 0xed, 0x64, 0x83, 0x54, 0xcf, 0xb4, 0x41, 0x6a,
0x99, 0x0d, 0xb2, 0x02, 0x73, 0xa8, 0x6f, 0xe8, 0xb9, 0xbc, 0x46, 0xa9, 0x99, 0xb2, 0xa5, 0x95,
0x52, 0xf5, 0x49, 0xa5, 0xd4, 0x29, 0x57, 0x4b, 0x99, 0x52, 0x6a, 0x61, 0x52, 0x29, 0x35, 0xcd,
0xcd, 0x92, 0x56, 0xfd, 0x35, 0x4e, 0xab, 0xfe, 0x7e, 0xcc, 0xed, 0xf1, 0x08, 0x4f, 0xf7, 0x6c,
0x40, 0xcb, 0xfd, 0x71, 0x3b, 0x73, 0x01, 0xd5, 0x9e, 0x64, 0x05, 0x75, 0xff, 0xf4, 0x1a, 0xea,
0xbb, 0x6f, 0xd1, 0x7d, 0xd3, 0x9f, 0xc6, 0xa8, 0x6a, 0x7f, 0x68, 0x4b, 0x08, 0xc7, 0x3e, 0xe3,
0x2a, 0xaf, 0x9c, 0x54, 0x79, 0xaa, 0x58, 0x64, 0x61, 0xba, 0x20, 0x8b, 0x45, 0xe3, 0x01, 0x2c,
0x88, 0xb9, 0xa4, 0xb6, 0x2b, 0x4c, 0x5b, 0x9b, 0x1d, 0xeb, 0x25, 0x2e, 0x26, 0x5b, 0x92, 0x4e,
0x83, 0x80, 0xaf, 0x5d, 0xd0, 0xb1, 0x65, 0xdc, 0x85, 0x3a, 0x8f, 0x37, 0x79, 0xee, 0xde, 0xd0,
0x6f, 0x03, 0x4e, 0x0b, 0x4a, 0x86, 0x80, 0x58, 0x42, 0xe1, 0x74, 0xb5, 0xfb, 0x3f, 0xc9, 0x1c,
0x51, 0xcb, 0xe9, 0xfe, 0x99, 0xe3, 0xe9, 0x0d, 0x54, 0x38, 0x39, 0xb7, 0xfb, 0x2f, 0x31, 0x64,
0xea, 0x7b, 0xbd, 0xc8, 0x3a, 0x52, 0x2f, 0xb4, 0x8c, 0xf0, 0x0c, 0xdb, 0xfc, 0x81, 0x99, 0x31,
0x6d, 0x07, 0x27, 0x8e, 0x42, 0x09, 0x63, 0xea, 0x8c, 0xb6, 0x23, 0x48, 0x0c, 0xca, 0x84, 0xce,
0xaf, 0xc5, 0xd1, 0x33, 0x6b, 0xf2, 0x6f, 0xac, 0xdf, 0x88, 0xae, 0xaf, 0x34, 0x17, 0x86, 0x26,
0x5f, 0x4e, 0x9c, 0xf8, 0x9a, 0x69, 0x85, 0x4d, 0xc9, 0x45, 0x33, 0x13, 0x61, 0x81, 0x54, 0xb2,
0x9b, 0xde, 0x5a, 0x9f, 0xc2, 0xf9, 0x54, 0x7f, 0xf5, 0x1e, 0x92, 0x1a, 0x20, 0x3b, 0xbb, 0xec,
0xfc, 0x8f, 0x12, 0xc0, 0xd6, 0x28, 0x3a, 0x96, 0x20, 0xb1, 0x03, 0x55, 0x86, 0x6e, 0x35, 0xa8,
0xa9, 0xda, 0x8c, 0xe7, 0x5b, 0x61, 0x88, 0x08, 0x2d, 0x3e, 0xcd, 0x55, 0x9b, 0x03, 0xbc, 0x91,
0x7a, 0xe0, 0xe5, 0xdf, 0xec, 0x81, 0x58, 0xbc, 0x8a, 0xf7, 0x10, 0xe0, 0x22, 0xb4, 0x0f, 0xe5,
0x0d, 0x45, 0x43, 0x50, 0xb7, 0x04, 0x91, 0x89, 0x39, 0x36, 0x45, 0xd5, 0xa2, 0x71, 0x2f, 0xf2,
0xde, 0x50, 0x57, 0x9e, 0xd3, 0x8d, 0x98, 0xfa, 0x8c, 0x11, 0x99, 0x58, 0x40, 0x8f, 0xd0, 0xca,
0x41, 0x2c, 0x36, 0x27, 0xc4, 0x62, 0x2a, 0x17, 0x63, 0x3f, 0x14, 0xb4, 0x0e, 0x46, 0x83, 0x81,
0x58, 0xe4, 0x59, 0x6d, 0x89, 0xc8, 0x4b, 0xac, 0x23, 0x7b, 0xdf, 0x90, 0x98, 0x48, 0x2e, 0xee,
0xbf, 0x2f, 0xfa, 0xcf, 0xc3, 0x92, 0xa6, 0xa8, 0xac, 0x57, 0x31, 0x16, 0x44, 0x29, 0xfb, 0x6e,
0xfa, 0x1b, 0x17, 0xe0, 0x7c, 0xaa, 0xbf, 0x18, 0x76, 0xfd, 0x32, 0x54, 0xe3, 0x9f, 0x07, 0xc8,
0x3c, 0x94, 0x9f, 0x6d, 0x1f, 0xb4, 0xce, 0xb1, 0x8f, 0xe7, 0x3b, 0x07, 0xad, 0xd2, 0xfa, 0x3a,
0x2c, 0x66, 0x6e, 0x4b, 0x49, 0x0d, 0x2a, 0xe6, 0xee, 0xd6, 0xce, 0x4b, 0x14, 0x5b, 0x80, 0xea,
0xfe, 0xd3, 0x67, 0xa2, 0x55, 0x5a, 0xdf, 0x86, 0x66, 0xfa, 0xb8, 0x23, 0x75, 0x98, 0xdf, 0x46,
0xee, 0xb3, 0xdd, 0x1d, 0x14, 0xc6, 0x86, 0xf9, 0x7c, 0x7f, 0x7f, 0x6f, 0xff, 0x61, 0xab, 0x44,
0x00, 0xe6, 0x76, 0xbf, 0xdd, 0x63, 0x8c, 0x19, 0xc6, 0x78, 0xbe, 0xff, 0x68, 0xff, 0xe9, 0x2f,
0xf7, 0x5b, 0xe5, 0xcd, 0xbf, 0x55, 0xa1, 0x69, 0x8a, 0x25, 0x74, 0x31, 0x16, 0x1c, 0x44, 0x9e,
0x0f, 0x60, 0x3e, 0xfe, 0x33, 0x23, 0x39, 0x58, 0xd3, 0xbf, 0x91, 0x74, 0xda, 0x79, 0x86, 0x34,
0xdb, 0x39, 0x72, 0x00, 0x8d, 0xd4, 0xb3, 0x20, 0x49, 0x90, 0x6a, 0xd1, 0xcb, 0x63, 0xe7, 0xca,
0x24, 0xb6, 0x1a, 0xb1, 0x0b, 0xcd, 0xf4, 0x53, 0x1f, 0x49, 0xfa, 0x14, 0x3e, 0x21, 0x76, 0xae,
0x4e, 0xe4, 0xab, 0x41, 0x5f, 0x42, 0x2b, 0xfb, 0xc8, 0x47, 0x92, 0x8b, 0xb1, 0x09, 0x0f, 0x88,
0x9d, 0x6b, 0xa7, 0x48, 0xe8, 0x43, 0xe7, 0x9e, 0xc3, 0xd6, 0x26, 0x3f, 0x68, 0xe4, 0x86, 0x9e,
0xf4, 0x4a, 0x22, 0x4c, 0x91, 0xbe, 0x19, 0x26, 0xfa, 0x23, 0x54, 0xc1, 0x0b, 0x81, 0x66, 0x8a,
0xe2, 0x2b, 0x65, 0x1c, 0xf4, 0x05, 0x56, 0x6a, 0x69, 0xd0, 0x4b, 0x92, 0x5e, 0xc5, 0x10, 0xbe,
0xb3, 0x36, 0x59, 0x20, 0xed, 0x37, 0x1d, 0xd2, 0xa6, 0xfc, 0x56, 0x80, 0x93, 0x53, 0x7e, 0x2b,
0xc4, 0xc2, 0x3c, 0xbc, 0x52, 0xc0, 0x55, 0x0b, 0xaf, 0x22, 0x94, 0xdc, 0xb9, 0x32, 0x89, 0xad,
0x2f, 0x3f, 0x03, 0x5a, 0xb5, 0xe5, 0x17, 0x63, 0xe1, 0xce, 0xda, 0x64, 0x81, 0xac, 0xaf, 0x92,
0x62, 0x3c, 0xe3, 0xab, 0x1c, 0xf6, 0xcb, 0xf8, 0x2a, 0x5f, 0xc5, 0x4b, 0x5f, 0x65, 0xaa, 0xea,
0xab, 0x13, 0x4b, 0x95, 0xbc, 0xaf, 0x8a, 0xab, 0x1f, 0x1c, 0xf7, 0x1e, 0xcc, 0xb2, 0x0a, 0x83,
0x24, 0x67, 0xb9, 0x56, 0xdc, 0x74, 0x2e, 0x64, 0xa8, 0x71, 0xb7, 0x1b, 0xa5, 0xdb, 0xa5, 0xcd,
0xbf, 0xcc, 0xc0, 0x82, 0x48, 0x7f, 0x32, 0x83, 0x3c, 0x04, 0x48, 0x0e, 0x61, 0xd2, 0x49, 0x2d,
0x2a, 0x55, 0x49, 0x74, 0x2e, 0x15, 0xf2, 0x94, 0x52, 0xdf, 0xc8, 0xb2, 0x45, 0x2e, 0xf4, 0x52,
0x26, 0xdb, 0xa6, 0x16, 0x79, 0xb9, 0x98, 0xa9, 0xc6, 0xda, 0x81, 0x9a, 0x4a, 0xf2, 0x44, 0x3b,
0x1b, 0x32, 0x27, 0x54, 0xa7, 0x53, 0xc4, 0xd2, 0x35, 0xd2, 0xb2, 0xba, 0xa6, 0x51, 0xfe, 0xac,
0xd0, 0x34, 0x2a, 0x38, 0x08, 0x8c, 0x73, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xca, 0x77, 0xdb,
0x74, 0xb2, 0x27, 0x00, 0x00,
0x46, 0xc8, 0x35, 0x97, 0x1c, 0xf2, 0x10, 0x39, 0xb8, 0x2a, 0x87, 0x54, 0x2e, 0xa9, 0xca, 0x25,
0xb7, 0x9c, 0x53, 0x79, 0x90, 0x3c, 0x41, 0x72, 0x4c, 0xcf, 0xc7, 0xce, 0xce, 0x7e, 0x80, 0x06,
0x95, 0xaa, 0x58, 0xb7, 0x9d, 0xee, 0x9e, 0x99, 0x9e, 0xee, 0x9e, 0x9e, 0xfe, 0xcd, 0x2c, 0xd4,
0x2c, 0xdf, 0xd9, 0xf0, 0x03, 0x2f, 0xf2, 0xc8, 0x7c, 0x30, 0x72, 0x23, 0x67, 0x48, 0x8d, 0x75,
0x68, 0xbe, 0xa0, 0x41, 0xe8, 0x78, 0xae, 0x49, 0xbf, 0x1b, 0xd1, 0x30, 0x22, 0x6d, 0x98, 0x3f,
0x11, 0x94, 0x76, 0x69, 0xad, 0x74, 0xa3, 0x66, 0xc6, 0x4d, 0xe3, 0x0f, 0x25, 0x58, 0x54, 0xc2,
0xa1, 0xef, 0xb9, 0x21, 0x9d, 0x2c, 0x4d, 0xae, 0xc1, 0x82, 0x9c, 0xa4, 0xe7, 0x5a, 0x43, 0xda,
0x9e, 0xe1, 0xec, 0xba, 0xa4, 0xed, 0x23, 0x89, 0xfc, 0x3f, 0x2c, 0xc6, 0x22, 0xf1, 0x20, 0x65,
0x2e, 0xd5, 0x94, 0x64, 0x39, 0x1b, 0xd9, 0x80, 0xf3, 0xb1, 0x20, 0xae, 0x41, 0x09, 0xcf, 0x72,
0xe1, 0x25, 0xc9, 0xda, 0xf2, 0x1d, 0x29, 0x6f, 0x6c, 0x41, 0x6d, 0x67, 0xbf, 0xfb, 0xd4, 0x8f,
0x58, 0x67, 0x54, 0x31, 0xa4, 0x01, 0xeb, 0x83, 0x2a, 0x96, 0x99, 0x8a, 0xb2, 0x49, 0x3a, 0x50,
0x0d, 0xa9, 0x15, 0xf4, 0x8f, 0x69, 0x88, 0xea, 0x31, 0x96, 0x6a, 0x1b, 0x7f, 0x2a, 0x41, 0xfd,
0xc0, 0x0b, 0xa2, 0x27, 0x96, 0xef, 0x3b, 0xee, 0x11, 0x21, 0x30, 0xcb, 0x97, 0x21, 0x56, 0xc9,
0xbf, 0xc9, 0x2d, 0xa8, 0x72, 0x73, 0xf6, 0xbd, 0x01, 0x5f, 0x5e, 0x73, 0x73, 0x69, 0x43, 0x2a,
0xb3, 0x71, 0x20, 0x19, 0xa6, 0x12, 0x21, 0xd7, 0xa1, 0xd9, 0xf7, 0xdc, 0xc8, 0x72, 0x5c, 0x1a,
0xf4, 0x7c, 0x1c, 0x9b, 0xaf, 0xb6, 0x62, 0x36, 0x14, 0x95, 0x4d, 0x48, 0x2e, 0x41, 0xed, 0xd8,
0x0b, 0x23, 0x21, 0x31, 0xcb, 0x25, 0xaa, 0x8c, 0xc0, 0x99, 0xab, 0x30, 0xcf, 0x99, 0x8e, 0xdf,
0xae, 0x70, 0x4d, 0xe6, 0x58, 0x73, 0xcf, 0x37, 0xbe, 0x2f, 0x41, 0xe5, 0x89, 0x87, 0x93, 0x17,
0x6a, 0x9a, 0x9e, 0xda, 0x8a, 0x8e, 0xa5, 0x3b, 0xb4, 0xa9, 0x91, 0x98, 0x4c, 0xcd, 0x24, 0x84,
0x2b, 0xc4, 0xd4, 0x8c, 0x89, 0xd6, 0x0a, 0xa8, 0x65, 0x7b, 0xee, 0x60, 0xcc, 0xd5, 0xaa, 0x9a,
0xaa, 0xcd, 0x3c, 0x19, 0xd2, 0x81, 0xe3, 0x8e, 0xde, 0xf6, 0x02, 0x3a, 0xb0, 0x5e, 0xd1, 0x01,
0x57, 0xaf, 0x6a, 0x36, 0x25, 0xd9, 0x14, 0x54, 0xe3, 0x35, 0x2c, 0x32, 0xd7, 0x87, 0xbe, 0xd5,
0xa7, 0xd2, 0x3f, 0x18, 0x28, 0x7c, 0x52, 0x97, 0x46, 0xbf, 0xf2, 0x82, 0x37, 0x5c, 0xef, 0xaa,
0x59, 0x67, 0xb4, 0x7d, 0x41, 0x22, 0x17, 0xa1, 0x2a, 0xf4, 0x72, 0x6c, 0xae, 0x78, 0xd5, 0xe4,
0x56, 0x38, 0x70, 0x6c, 0xc5, 0x72, 0xfc, 0x3e, 0xd7, 0x58, 0xb2, 0xf6, 0xfc, 0xbe, 0xf1, 0x9b,
0x12, 0x5c, 0x78, 0xcc, 0x26, 0x3f, 0xf0, 0xec, 0xae, 0xe5, 0xda, 0xaf, 0xbc, 0xb7, 0xdb, 0x9e,
0x7b, 0xe8, 0x1c, 0x91, 0x0f, 0xa1, 0xd1, 0x3f, 0x0a, 0xbc, 0x91, 0x8f, 0x2b, 0x0d, 0xa8, 0x1b,
0x49, 0x5b, 0x2d, 0x08, 0xe2, 0x01, 0xa7, 0x91, 0x5d, 0x58, 0x72, 0x63, 0x55, 0x7b, 0x1e, 0xd7,
0x35, 0xe4, 0xb3, 0xd7, 0x37, 0xdb, 0xca, 0xcd, 0x99, 0xc5, 0x98, 0x2d, 0x37, 0x4d, 0x08, 0x8d,
0x00, 0x48, 0x32, 0xff, 0x13, 0x1a, 0x59, 0xb6, 0x15, 0x59, 0x85, 0x4e, 0x6a, 0x41, 0x79, 0x24,
0x17, 0x58, 0x33, 0xd9, 0x27, 0xb9, 0x0c, 0x35, 0x35, 0x9e, 0xf4, 0x47, 0x42, 0x60, 0x81, 0x6d,
0x45, 0x11, 0x1d, 0xfa, 0x22, 0x4c, 0x1a, 0x66, 0xdc, 0x34, 0xfe, 0x3a, 0x0b, 0xad, 0xdc, 0xa2,
0xef, 0x42, 0x75, 0x28, 0xa7, 0xe7, 0xd3, 0xd6, 0x37, 0x2f, 0x25, 0xd1, 0x9a, 0xd3, 0xd0, 0x54,
0xc2, 0xcc, 0xf1, 0xcc, 0xa4, 0xda, 0x2e, 0x56, 0x6d, 0x66, 0xc9, 0x81, 0x77, 0xd4, 0xb3, 0x9d,
0x80, 0xf6, 0x23, 0x2f, 0x18, 0x4b, 0x2d, 0x17, 0x90, 0xb8, 0x13, 0xd3, 0xc8, 0x4f, 0xa1, 0x6e,
0xbb, 0xa1, 0xb2, 0xe1, 0x2c, 0x9f, 0x9c, 0xa8, 0xc9, 0xd5, 0x56, 0x35, 0x01, 0xc5, 0xa4, 0xdd,
0xc8, 0x3d, 0x68, 0xb0, 0x1d, 0xd0, 0x1b, 0x8a, 0x0d, 0x18, 0x62, 0x40, 0x95, 0xb1, 0xdb, 0xb2,
0xa6, 0xb3, 0xda, 0x9d, 0xe6, 0x82, 0x9f, 0x34, 0x42, 0xf2, 0x39, 0xcc, 0xf1, 0x68, 0x0b, 0xdb,
0x73, 0xbc, 0xcf, 0xf5, 0x82, 0x75, 0x0a, 0xa3, 0x6c, 0x3c, 0xe6, 0x72, 0xbb, 0x6e, 0x14, 0x8c,
0x4d, 0xd9, 0x89, 0x3c, 0x86, 0xba, 0xe5, 0xba, 0x5e, 0x64, 0x09, 0x75, 0xe7, 0xf9, 0x18, 0xeb,
0x93, 0xc7, 0xd8, 0x4a, 0x84, 0xc5, 0x40, 0x7a, 0x77, 0xf2, 0x33, 0xa8, 0xf0, 0x1d, 0xd0, 0xae,
0xf2, 0x65, 0x5f, 0x51, 0xe3, 0x14, 0x86, 0xa6, 0x29, 0x84, 0x3b, 0xf7, 0xa0, 0xae, 0xa9, 0xc6,
0x42, 0xe3, 0x0d, 0x1d, 0xcb, 0x68, 0x61, 0x9f, 0x64, 0x19, 0x2a, 0x27, 0xd6, 0x60, 0x14, 0x7b,
0x44, 0x34, 0xee, 0xcf, 0xfc, 0xbc, 0xd4, 0x79, 0x00, 0xad, 0xac, 0x46, 0x67, 0xe9, 0x6f, 0xec,
0xc1, 0xb2, 0x39, 0x72, 0x13, 0xc5, 0xe2, 0x83, 0xe1, 0x27, 0x30, 0xd7, 0xe7, 0x3a, 0xca, 0xe8,
0xb9, 0x38, 0xd1, 0x22, 0xa6, 0x14, 0x34, 0x3e, 0x87, 0x0b, 0x99, 0xa1, 0xe4, 0xb1, 0xf1, 0x11,
0x34, 0x7d, 0xcf, 0xee, 0x85, 0x82, 0xdc, 0xc3, 0xa8, 0x97, 0x3b, 0xd0, 0x57, 0xb2, 0x7b, 0x36,
0xeb, 0xde, 0x8d, 0x3c, 0x3f, 0xaf, 0xca, 0x74, 0xdd, 0xdb, 0xb0, 0x92, 0xed, 0x2e, 0xa6, 0x37,
0xbe, 0x80, 0x55, 0x93, 0x0e, 0xbd, 0x13, 0xfa, 0xae, 0x43, 0x77, 0xa0, 0x9d, 0x1f, 0x20, 0x19,
0x3c, 0xa1, 0x76, 0xd1, 0x0d, 0xa3, 0xf0, 0x6c, 0x83, 0xdf, 0xd4, 0x07, 0x90, 0x29, 0x50, 0x8c,
0x43, 0x9a, 0x30, 0x83, 0x99, 0x5f, 0x74, 0xc2, 0x2f, 0xe3, 0x25, 0xd4, 0xf6, 0xf5, 0x7c, 0xa0,
0xe7, 0x50, 0x3c, 0xe8, 0x64, 0x93, 0x6c, 0xc2, 0xfc, 0xb4, 0x09, 0x2c, 0x16, 0x34, 0x1e, 0xe5,
0x92, 0xa7, 0xd4, 0x61, 0x13, 0x40, 0xe5, 0xa0, 0x50, 0xc6, 0x02, 0xc9, 0x8f, 0x67, 0x6a, 0x52,
0xc6, 0xf7, 0xa9, 0x84, 0xa4, 0x2d, 0xc6, 0x56, 0x8b, 0xb1, 0x53, 0x09, 0x6a, 0xe6, 0x2c, 0x09,
0x6a, 0x03, 0x2a, 0x21, 0x0e, 0x29, 0x52, 0x64, 0x53, 0x5b, 0x9c, 0xec, 0xf5, 0x95, 0x98, 0x92,
0x9a, 0x42, 0x8c, 0x7c, 0x00, 0xd0, 0xc7, 0xa3, 0x2b, 0xa2, 0x76, 0xcf, 0x12, 0xb9, 0xb3, 0x6c,
0xd6, 0x24, 0x65, 0x2b, 0x22, 0xf7, 0x13, 0x3b, 0x56, 0xb8, 0x1a, 0x6b, 0x05, 0x6a, 0xa4, 0xfc,
0x92, 0x58, 0x5a, 0xed, 0xf6, 0xb9, 0xd3, 0x77, 0xbb, 0xec, 0x27, 0x84, 0xb5, 0x84, 0x35, 0x3f,
0x31, 0x61, 0x89, 0x1e, 0xd3, 0x24, 0xac, 0xea, 0xc4, 0x84, 0x25, 0xc7, 0x38, 0x35, 0x61, 0xfd,
0x98, 0xa9, 0xe7, 0x09, 0xb4, 0xf3, 0x5b, 0x47, 0xa6, 0x0c, 0x4c, 0x3f, 0x21, 0xa7, 0x9c, 0x92,
0x7e, 0x64, 0x17, 0x29, 0x68, 0xfc, 0xb3, 0xa4, 0x47, 0xdd, 0xd7, 0xce, 0x20, 0xa2, 0x41, 0x2e,
0xea, 0x54, 0xf0, 0xcc, 0x4c, 0x17, 0x3c, 0x5d, 0x68, 0x72, 0xb3, 0xf7, 0xb0, 0xb2, 0xe1, 0xe7,
0x1b, 0x46, 0x1d, 0xb3, 0xf7, 0x27, 0x05, 0xfa, 0x88, 0x29, 0x85, 0xcf, 0xba, 0x52, 0x5c, 0x58,
0xbc, 0x31, 0xd0, 0x69, 0x9d, 0x2f, 0x81, 0xe4, 0x85, 0xce, 0x64, 0xba, 0x6f, 0xd8, 0x76, 0x65,
0x45, 0x62, 0x41, 0xda, 0x3e, 0xe4, 0x6a, 0x9c, 0x62, 0x37, 0xa1, 0xa7, 0x29, 0x05, 0x8d, 0xdf,
0x97, 0x01, 0x12, 0xe6, 0x7b, 0xbb, 0x4f, 0xef, 0xaa, 0x5d, 0x23, 0x4a, 0x83, 0xab, 0x05, 0x5a,
0x14, 0xee, 0x97, 0xaf, 0xd3, 0xfb, 0x45, 0x14, 0x09, 0x1f, 0x15, 0xf5, 0x7e, 0x6f, 0x77, 0xca,
0x36, 0xac, 0x64, 0xdd, 0x2d, 0xf7, 0xc9, 0x4d, 0xa8, 0x38, 0x58, 0x05, 0x0a, 0xb0, 0x53, 0xdf,
0x3c, 0x5f, 0xb0, 0x2c, 0x53, 0x48, 0x18, 0xd7, 0xa0, 0xb6, 0x37, 0xb4, 0x8e, 0x68, 0xd7, 0xa7,
0x7d, 0x36, 0x97, 0xc3, 0x1a, 0x72, 0x7e, 0xd1, 0x30, 0x36, 0xa1, 0xfa, 0x88, 0x8e, 0x5f, 0xb0,
0x79, 0xa7, 0xd5, 0xcf, 0xf8, 0x7b, 0x09, 0x56, 0x79, 0xba, 0xdb, 0x8e, 0xc1, 0x05, 0x2a, 0xe7,
0x8d, 0x02, 0x3c, 0x08, 0xb8, 0x4b, 0xfd, 0x51, 0xcf, 0xa7, 0x81, 0xe3, 0x89, 0x98, 0x62, 0x2e,
0xf5, 0x47, 0x07, 0x9c, 0xc0, 0x00, 0x08, 0x63, 0x7f, 0x37, 0xf2, 0x64, 0x6c, 0x95, 0xcd, 0x2a,
0x12, 0x7e, 0xc1, 0xda, 0x71, 0xdf, 0xf0, 0x18, 0xeb, 0xf3, 0x90, 0xc7, 0x90, 0xe8, 0xdb, 0xe5,
0x04, 0x0c, 0xf4, 0x0b, 0x43, 0x3c, 0x93, 0x83, 0x71, 0x6f, 0xe0, 0x0c, 0x1d, 0x44, 0x04, 0x6e,
0xef, 0xd5, 0x38, 0xa2, 0xa1, 0x0c, 0x1c, 0x22, 0x98, 0x8f, 0x19, 0x6f, 0xcf, 0xfd, 0x8a, 0x71,
0x88, 0x01, 0x0d, 0xcf, 0x1b, 0xf6, 0xc2, 0xbe, 0x17, 0x20, 0xb2, 0xb4, 0x5f, 0xf3, 0x7c, 0x5f,
0x36, 0xeb, 0x48, 0xec, 0x32, 0xda, 0x96, 0xfd, 0xda, 0xb0, 0xa0, 0xd1, 0xdd, 0xe5, 0xcb, 0x91,
0x78, 0x05, 0x4b, 0xf7, 0x51, 0x28, 0xb7, 0x13, 0x96, 0xee, 0xec, 0x9b, 0xd1, 0x02, 0x6f, 0x10,
0xdb, 0x81, 0x7f, 0x33, 0x5a, 0x34, 0xf6, 0xe3, 0xba, 0x9d, 0x7f, 0x33, 0x83, 0x0d, 0xe8, 0x09,
0xa2, 0x23, 0x01, 0x5d, 0x45, 0xc3, 0xb0, 0x01, 0xb6, 0x2d, 0xdf, 0x7a, 0xe5, 0x0c, 0x9c, 0x68,
0x8c, 0x0e, 0x6c, 0x59, 0xb6, 0xdd, 0xeb, 0xc7, 0x14, 0x87, 0xc6, 0xc0, 0x75, 0x11, 0xe9, 0xdb,
0x1a, 0x99, 0x7c, 0x0c, 0x4b, 0x76, 0xe0, 0xf9, 0x69, 0x59, 0x81, 0x64, 0x5b, 0x8c, 0xa1, 0x0b,
0x1b, 0xff, 0x2e, 0xc1, 0x72, 0xda, 0x2d, 0x12, 0x18, 0x3c, 0x80, 0x5a, 0x10, 0x3b, 0x48, 0x26,
0x89, 0xb5, 0xf4, 0xb9, 0x95, 0x77, 0xa4, 0x99, 0x74, 0xc1, 0x7d, 0xb8, 0x90, 0x51, 0xa0, 0x94,
0x0a, 0xbc, 0x64, 0x6d, 0x66, 0x4a, 0x90, 0x7c, 0x91, 0xa0, 0xc6, 0xb8, 0x3c, 0x29, 0xf3, 0xbe,
0x2b, 0xaa, 0x6f, 0xca, 0xf4, 0x0a, 0x4d, 0xc6, 0x18, 0xe1, 0xff, 0xa4, 0x2b, 0xb2, 0x88, 0x82,
0xf7, 0x79, 0x8e, 0x1c, 0xe1, 0x1e, 0xe3, 0x5b, 0xa8, 0x29, 0x52, 0x0c, 0xb3, 0x44, 0xec, 0x71,
0x98, 0x85, 0x94, 0x23, 0x09, 0xbc, 0x90, 0x82, 0x9f, 0x0c, 0xcf, 0xa2, 0xad, 0x1d, 0x36, 0x8b,
0x35, 0xe8, 0x21, 0x25, 0xe4, 0x59, 0xbe, 0x6c, 0x36, 0x13, 0xf2, 0x43, 0xa4, 0x1a, 0x5b, 0xb0,
0xa4, 0x8c, 0x73, 0x2a, 0xb8, 0xd3, 0xc0, 0xda, 0x4c, 0x1a, 0xac, 0xfd, 0xab, 0x02, 0x8b, 0x59,
0x97, 0xdc, 0xc9, 0x61, 0xb5, 0x4e, 0x62, 0xce, 0xec, 0x7c, 0x5a, 0x86, 0xbd, 0x11, 0x6f, 0xe2,
0x99, 0x8c, 0x45, 0xd4, 0x3e, 0x97, 0x1b, 0x9b, 0xe9, 0xd3, 0xf7, 0x86, 0x43, 0x4c, 0x08, 0x7c,
0x65, 0x58, 0x2c, 0xca, 0x26, 0xd3, 0xde, 0x0a, 0x8e, 0xd8, 0xb6, 0x61, 0x64, 0xfe, 0x4d, 0xae,
0x42, 0x9d, 0x95, 0x37, 0x88, 0xae, 0x18, 0xd4, 0x93, 0x57, 0x0f, 0x20, 0x49, 0x08, 0xf4, 0xc8,
0x75, 0x98, 0xa5, 0xee, 0x49, 0x9c, 0x4b, 0x93, 0x6b, 0x90, 0x38, 0x79, 0x98, 0x9c, 0x8d, 0x0e,
0x9b, 0x1b, 0xb2, 0x4b, 0x8a, 0xb8, 0xd0, 0x69, 0x2a, 0x41, 0x7e, 0x77, 0x61, 0x4a, 0x2e, 0xf9,
0x4c, 0xa5, 0xf6, 0x6a, 0x26, 0x39, 0x67, 0x2c, 0x55, 0x98, 0xdf, 0x1f, 0xa5, 0xf3, 0x7b, 0x8d,
0x0f, 0x71, 0x73, 0xe2, 0x10, 0xa7, 0xe3, 0xb7, 0x2b, 0x00, 0x7e, 0xe0, 0x9c, 0x38, 0x03, 0x7a,
0x44, 0xed, 0x36, 0xf0, 0x2b, 0x06, 0x8d, 0xc2, 0x2f, 0xb1, 0xe4, 0x35, 0x48, 0x2f, 0xf0, 0xbc,
0xe8, 0x30, 0x6c, 0xd7, 0xc5, 0xd5, 0x47, 0x4c, 0x36, 0x39, 0x95, 0xdd, 0x54, 0x30, 0xa8, 0xcc,
0xef, 0x56, 0x16, 0x44, 0x7d, 0x8e, 0x6d, 0x7e, 0xb5, 0xb2, 0xcc, 0x0e, 0x46, 0xdb, 0x71, 0xdb,
0x0d, 0xde, 0x53, 0x34, 0x58, 0xbe, 0xe3, 0x1f, 0x3d, 0xcf, 0x45, 0xf8, 0xdf, 0xe4, 0xac, 0x1a,
0xa7, 0x3c, 0x45, 0x02, 0x8b, 0xda, 0x28, 0x1a, 0xb7, 0x17, 0x39, 0x9d, 0x7d, 0x22, 0xce, 0x96,
0xc5, 0x67, 0x8b, 0x7b, 0xff, 0x83, 0x09, 0x9b, 0xf8, 0xbd, 0x41, 0x9a, 0x7f, 0x2e, 0xc1, 0xca,
0x36, 0x3f, 0xce, 0xb5, 0x04, 0x73, 0x06, 0xa4, 0x44, 0x6e, 0x2b, 0x48, 0x9a, 0x85, 0x35, 0xd9,
0xc5, 0x4a, 0x39, 0xf2, 0x25, 0x34, 0xe3, 0x31, 0x65, 0xcf, 0xf2, 0x0f, 0x81, 0xd9, 0x46, 0xa8,
0x37, 0x8d, 0xcf, 0x60, 0x35, 0xa7, 0xb3, 0x3c, 0x7a, 0xaf, 0x61, 0x22, 0x54, 0xb7, 0x6c, 0x4a,
0xe5, 0xba, 0xa2, 0x21, 0xb6, 0xbb, 0xcf, 0x20, 0xad, 0x15, 0x44, 0xb9, 0x05, 0x4f, 0xd1, 0x97,
0xe3, 0xd9, 0x74, 0x5f, 0x09, 0x39, 0xbb, 0xb0, 0xcc, 0x90, 0xee, 0x3b, 0x0c, 0xca, 0xf2, 0x00,
0x5b, 0xb6, 0x37, 0x8a, 0x64, 0xfe, 0x8b, 0x9b, 0xc6, 0xaa, 0x40, 0xdf, 0xf9, 0xd9, 0x3e, 0x85,
0x15, 0x01, 0x7e, 0xdf, 0x65, 0x11, 0x17, 0x63, 0xe8, 0x9d, 0x1f, 0xf7, 0x77, 0x33, 0x5a, 0x22,
0x9c, 0x50, 0xad, 0xdf, 0x4a, 0x57, 0xeb, 0xab, 0x79, 0x87, 0xa7, 0x2a, 0xc8, 0x7c, 0x18, 0x95,
0x0b, 0xc2, 0xc8, 0xcc, 0x95, 0xf4, 0xb3, 0x3c, 0x65, 0x7c, 0x9c, 0x1f, 0xfd, 0x7f, 0x58, 0xd1,
0xef, 0x89, 0x8a, 0x5e, 0x4d, 0xad, 0x6e, 0x11, 0x6e, 0x67, 0x2a, 0xfa, 0xf6, 0x24, 0x35, 0x55,
0x41, 0xff, 0xdb, 0x59, 0xa8, 0x29, 0x5e, 0xce, 0xa6, 0x79, 0x23, 0xcd, 0x14, 0x18, 0x49, 0x3f,
0x92, 0xca, 0xef, 0x72, 0x24, 0xcd, 0xfe, 0xd0, 0x91, 0x84, 0xc5, 0x1f, 0xff, 0xe8, 0x05, 0xf4,
0x50, 0x1e, 0x31, 0x55, 0x4e, 0x30, 0xe9, 0x61, 0xe2, 0xf8, 0xb9, 0xa9, 0x1c, 0x9f, 0x86, 0x0e,
0xf3, 0x59, 0xe8, 0x70, 0x27, 0x73, 0xbe, 0x5c, 0xc9, 0x0f, 0x57, 0x78, 0xb2, 0xec, 0x16, 0x9d,
0x2c, 0x1f, 0x16, 0x74, 0x7e, 0x6f, 0x81, 0xc3, 0x63, 0x01, 0x1c, 0xf4, 0xa8, 0x92, 0xd9, 0x6b,
0x13, 0x4d, 0xa6, 0xa8, 0x12, 0x3d, 0x90, 0xfc, 0xd2, 0x4c, 0x4d, 0x8a, 0xa5, 0x82, 0x94, 0xfd,
0x93, 0xab, 0xae, 0x29, 0x52, 0xc1, 0x1f, 0xf5, 0xc2, 0x67, 0xc2, 0x9d, 0xd0, 0x9d, 0x1c, 0xd6,
0x9c, 0x2e, 0xea, 0x6e, 0xa5, 0xa1, 0xe6, 0xd9, 0xc2, 0x25, 0x87, 0x34, 0xf9, 0x49, 0x8c, 0x99,
0x57, 0xb0, 0x05, 0x48, 0xa8, 0x49, 0x0a, 0xb2, 0xb1, 0x3a, 0x3a, 0x74, 0x5c, 0x27, 0x3c, 0x16,
0xfc, 0x39, 0xce, 0x87, 0x98, 0xb4, 0xc5, 0x9f, 0x74, 0xe8, 0x5b, 0x84, 0x24, 0x7d, 0xcf, 0xa6,
0x3c, 0x18, 0x2b, 0x66, 0x95, 0x11, 0xb6, 0xb1, 0x9d, 0x6c, 0x90, 0xea, 0x99, 0x36, 0x48, 0x2d,
0xb3, 0x41, 0x56, 0x60, 0x0e, 0xf5, 0x0d, 0x3d, 0x97, 0xd7, 0x28, 0x35, 0x53, 0xb6, 0x58, 0x82,
0x1f, 0xd2, 0x30, 0x64, 0x13, 0xd4, 0x45, 0xd5, 0x21, 0x9b, 0x5a, 0x91, 0xb5, 0x30, 0xa9, 0xc8,
0x3a, 0xe5, 0xd2, 0x29, 0x53, 0x64, 0x35, 0x26, 0x15, 0x59, 0xd3, 0xdc, 0x39, 0x69, 0x75, 0x61,
0xf3, 0xb4, 0xba, 0xf0, 0xc7, 0xdc, 0x38, 0x8f, 0xf0, 0xdc, 0xcf, 0x86, 0xba, 0xdc, 0x39, 0xb7,
0x33, 0x57, 0x53, 0xed, 0x49, 0x56, 0x50, 0x37, 0x53, 0xaf, 0xa1, 0xbe, 0xfb, 0x16, 0x1d, 0x3b,
0xfd, 0x39, 0x8d, 0xaa, 0xf6, 0x87, 0xb6, 0x04, 0x77, 0xec, 0x33, 0xae, 0xff, 0xca, 0x49, 0xfd,
0xa7, 0xca, 0x48, 0x16, 0xc0, 0x0b, 0xb2, 0x8c, 0x34, 0x1e, 0xc0, 0x82, 0x98, 0x4b, 0x6a, 0xbb,
0xc2, 0xb4, 0xb5, 0xd9, 0x81, 0x5f, 0xe2, 0x62, 0xb2, 0x25, 0xe9, 0x34, 0x08, 0xf8, 0xda, 0x05,
0x1d, 0x5b, 0xc6, 0x5d, 0xa8, 0xf3, 0x48, 0x94, 0x27, 0xf2, 0x0d, 0xfd, 0x9e, 0xe0, 0xb4, 0x70,
0x65, 0xd8, 0x88, 0xa5, 0x1a, 0x4e, 0x57, 0x79, 0xe1, 0x93, 0xcc, 0xe1, 0xb5, 0x9c, 0xee, 0x9f,
0x39, 0xb8, 0xde, 0x40, 0x85, 0x93, 0x73, 0x79, 0xe1, 0x12, 0xc3, 0xac, 0xbe, 0xd7, 0x8b, 0xac,
0x23, 0xf5, 0x76, 0xcb, 0x08, 0xcf, 0xb0, 0xcd, 0x9f, 0x9e, 0x19, 0xd3, 0x76, 0x70, 0xe2, 0x28,
0x94, 0x00, 0xa7, 0xce, 0x68, 0x3b, 0x82, 0xc4, 0x40, 0x4e, 0xe8, 0xfc, 0x5a, 0x1c, 0x4a, 0xb3,
0x26, 0xff, 0xc6, 0xca, 0x8e, 0xe8, 0xfa, 0x4a, 0x73, 0x61, 0x68, 0xf2, 0xe5, 0xc4, 0x29, 0xb1,
0x99, 0x56, 0xd8, 0x94, 0x5c, 0x34, 0x33, 0x11, 0x16, 0x48, 0xa5, 0xc1, 0xe9, 0xad, 0xf5, 0x29,
0x9c, 0x4f, 0xf5, 0x57, 0x2f, 0x25, 0xa9, 0x01, 0xb2, 0xb3, 0xcb, 0xce, 0xff, 0x28, 0x01, 0x6c,
0x8d, 0xa2, 0x63, 0x09, 0x1f, 0x3b, 0x50, 0x65, 0xb8, 0x57, 0x03, 0xa1, 0xaa, 0xcd, 0x78, 0xbe,
0x15, 0x86, 0x88, 0xdd, 0xe2, 0x73, 0x5e, 0xb5, 0x39, 0xf4, 0x1b, 0xa9, 0xa7, 0x5f, 0xfe, 0xcd,
0x9e, 0x8e, 0xc5, 0x7b, 0x79, 0x0f, 0xa1, 0x2f, 0x82, 0xfe, 0x50, 0xde, 0x5d, 0x34, 0x04, 0x75,
0x4b, 0x10, 0x99, 0x98, 0x63, 0x53, 0x54, 0x2d, 0x1a, 0xf7, 0x22, 0xef, 0x0d, 0x75, 0xe5, 0x09,
0xde, 0x88, 0xa9, 0xcf, 0x18, 0x91, 0x89, 0x05, 0xf4, 0x08, 0xad, 0x1c, 0xc4, 0x62, 0x73, 0x42,
0x2c, 0xa6, 0x72, 0x31, 0xf6, 0xab, 0x41, 0xeb, 0x60, 0x34, 0x18, 0x88, 0x45, 0x9e, 0xd5, 0x96,
0x88, 0xc9, 0xc4, 0x3a, 0xb2, 0x37, 0x11, 0x89, 0x89, 0xe4, 0xe2, 0xfe, 0x7b, 0x38, 0x70, 0x1e,
0x96, 0x34, 0x45, 0x65, 0x25, 0x8b, 0xb1, 0x20, 0x8a, 0xdc, 0x77, 0xd3, 0xdf, 0xb8, 0x00, 0xe7,
0x53, 0xfd, 0xc5, 0xb0, 0xeb, 0x97, 0xa1, 0x1a, 0xff, 0x56, 0x40, 0xe6, 0xa1, 0xfc, 0x6c, 0xfb,
0xa0, 0x75, 0x8e, 0x7d, 0x3c, 0xdf, 0x39, 0x68, 0x95, 0xd6, 0xd7, 0x61, 0x31, 0x73, 0x8f, 0x4a,
0x6a, 0x50, 0x31, 0x77, 0xb7, 0x76, 0x5e, 0xa2, 0xd8, 0x02, 0x54, 0xf7, 0x9f, 0x3e, 0x13, 0xad,
0xd2, 0xfa, 0x36, 0x34, 0xd3, 0x07, 0x21, 0xa9, 0xc3, 0xfc, 0x36, 0x72, 0x9f, 0xed, 0xee, 0xa0,
0x30, 0x36, 0xcc, 0xe7, 0xfb, 0xfb, 0x7b, 0xfb, 0x0f, 0x5b, 0x25, 0x02, 0x30, 0xb7, 0xfb, 0xed,
0x1e, 0x63, 0xcc, 0x30, 0xc6, 0xf3, 0xfd, 0x47, 0xfb, 0x4f, 0x7f, 0xb9, 0xdf, 0x2a, 0x6f, 0xfe,
0xad, 0x0a, 0x4d, 0x53, 0x2c, 0xa1, 0x8b, 0xb1, 0xe0, 0x20, 0x26, 0x7d, 0x00, 0xf3, 0xf1, 0x3f,
0x1b, 0xc9, 0x91, 0x9b, 0xfe, 0xc1, 0xa4, 0xd3, 0xce, 0x33, 0xa4, 0xd9, 0xce, 0x91, 0x03, 0x68,
0xa4, 0x1e, 0x0c, 0x49, 0x82, 0x61, 0x8b, 0xde, 0x24, 0x3b, 0x57, 0x26, 0xb1, 0xd5, 0x88, 0x5d,
0x68, 0xa6, 0x1f, 0x01, 0x49, 0xd2, 0xa7, 0xf0, 0x71, 0xb1, 0x73, 0x75, 0x22, 0x5f, 0x0d, 0xfa,
0x12, 0x5a, 0xd9, 0xe7, 0x3f, 0x92, 0x5c, 0x99, 0x4d, 0x78, 0x5a, 0xec, 0x5c, 0x3b, 0x45, 0x42,
0x1f, 0x3a, 0xf7, 0x50, 0xb6, 0x36, 0xf9, 0xa9, 0x23, 0x37, 0xf4, 0xa4, 0xf7, 0x13, 0x61, 0x8a,
0xf4, 0x9d, 0x31, 0xd1, 0x9f, 0xa7, 0x0a, 0xde, 0x0e, 0x34, 0x53, 0x14, 0x5f, 0x36, 0xe3, 0xa0,
0x2f, 0xb0, 0x86, 0x4b, 0xc3, 0x61, 0x92, 0xf4, 0x2a, 0x06, 0xf7, 0x9d, 0xb5, 0xc9, 0x02, 0x69,
0xbf, 0xe9, 0x60, 0x37, 0xe5, 0xb7, 0x02, 0x04, 0x9d, 0xf2, 0x5b, 0x21, 0x4a, 0xe6, 0xe1, 0x95,
0x82, 0xb4, 0x5a, 0x78, 0x15, 0xe1, 0xe7, 0xce, 0x95, 0x49, 0x6c, 0x7d, 0xf9, 0x19, 0x38, 0xab,
0x2d, 0xbf, 0x18, 0x25, 0x77, 0xd6, 0x26, 0x0b, 0x64, 0x7d, 0x95, 0x94, 0xe9, 0x19, 0x5f, 0xe5,
0x50, 0x61, 0xc6, 0x57, 0xf9, 0xfa, 0x5e, 0xfa, 0x2a, 0x53, 0x6f, 0x5f, 0x9d, 0x58, 0xaa, 0xe4,
0x7d, 0x55, 0x5c, 0xfd, 0xe0, 0xb8, 0xf7, 0x60, 0x96, 0x55, 0x18, 0x24, 0x39, 0xcb, 0xb5, 0xe2,
0xa6, 0x73, 0x21, 0x43, 0x8d, 0xbb, 0xdd, 0x28, 0xdd, 0x2e, 0x6d, 0xfe, 0x65, 0x06, 0x16, 0x44,
0xfa, 0x93, 0x19, 0xe4, 0x21, 0x40, 0x72, 0x08, 0x93, 0x4e, 0x6a, 0x51, 0xa9, 0x4a, 0xa2, 0x73,
0xa9, 0x90, 0xa7, 0x94, 0xfa, 0x46, 0x96, 0x2d, 0x72, 0xa1, 0x97, 0x32, 0xd9, 0x36, 0xb5, 0xc8,
0xcb, 0xc5, 0x4c, 0x35, 0xd6, 0x0e, 0xd4, 0x54, 0x92, 0x27, 0xda, 0xd9, 0x90, 0x39, 0xa1, 0x3a,
0x9d, 0x22, 0x96, 0xae, 0x91, 0x96, 0xd5, 0x35, 0x8d, 0xf2, 0x67, 0x85, 0xa6, 0x51, 0xc1, 0x41,
0x60, 0x9c, 0xfb, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x21, 0x88, 0xd5, 0xea, 0xcc, 0x27, 0x00,
0x00,
}

View File

@ -571,14 +571,17 @@ message ContainerStatus {
// Reference to the image in use. For most runtimes, this should be an
// image ID
optional string image_ref = 9;
// A string explains why container is in such a status.
// A brief CamelCase string explains why container is in such a status.
optional string reason = 10;
// A human-readable message indication details about why container is in
// this state.
optional string message = 11;
// Labels are key value pairs that may be used to scope and select individual resources.
map<string,string> labels = 11;
map<string,string> labels = 12;
// Annotations is an unstructured key value map.
map<string,string> annotations = 12;
map<string,string> annotations = 13;
// Mounts specifies mounts for the container
repeated Mount mounts = 13;
repeated Mount mounts = 14;
}
message ContainerStatusResponse {

View File

@ -239,7 +239,7 @@ func (ds *dockerService) ContainerStatus(containerID string) (*runtimeApi.Contai
}
// Interpret container states.
var state runtimeApi.ContainerState
var reason string
var reason, message string
if r.State.Running {
// Container is running.
state = runtimeApi.ContainerState_RUNNING
@ -261,9 +261,9 @@ func (ds *dockerService) ContainerStatus(containerID string) (*runtimeApi.Contai
case r.State.ExitCode == 0:
reason = "Completed"
default:
reason = fmt.Sprintf("Error: %s", r.State.Error)
reason = "Error"
}
} else if !finishedAt.IsZero() && r.State.ExitCode != 0 { // Case 2
} else if r.State.ExitCode != 0 { // Case 2
state = runtimeApi.ContainerState_EXITED
// Adjust finshedAt and startedAt time to createdAt time to avoid
// the confusion.
@ -272,6 +272,7 @@ func (ds *dockerService) ContainerStatus(containerID string) (*runtimeApi.Contai
} else { // Case 3
state = runtimeApi.ContainerState_CREATED
}
message = r.State.Error
}
// Convert to unix timestamps.
@ -296,6 +297,7 @@ func (ds *dockerService) ContainerStatus(containerID string) (*runtimeApi.Contai
StartedAt: &st,
FinishedAt: &ft,
Reason: &reason,
Message: &message,
Labels: labels,
Annotations: annotations,
}, nil

View File

@ -104,7 +104,7 @@ func TestContainerStatus(t *testing.T) {
// The following variables are not set in FakeDockerClient.
imageRef := ""
exitCode := int32(0)
reason := ""
var reason, message string
expected := &runtimeApi.ContainerStatus{
State: &state,
@ -116,6 +116,7 @@ func TestContainerStatus(t *testing.T) {
ImageRef: &imageRef,
ExitCode: &exitCode,
Reason: &reason,
Message: &message,
Mounts: []*runtimeApi.Mount{},
Labels: config.Labels,
Annotations: config.Annotations,

View File

@ -377,11 +377,16 @@ func (m *kubeGenericRuntimeManager) getKubeletContainerStatuses(podSandboxID str
cStatus.StartedAt = time.Unix(status.GetStartedAt(), 0)
} else {
cStatus.Reason = status.GetReason()
cStatus.Message = status.GetMessage()
cStatus.ExitCode = int(status.GetExitCode())
cStatus.FinishedAt = time.Unix(status.GetFinishedAt(), 0)
}
cStatus.Message = getTerminationMessage(status, cStatus, annotatedInfo.TerminationMessagePath)
tMessage := getTerminationMessage(status, cStatus, annotatedInfo.TerminationMessagePath)
// Use the termination message written by the application is not empty
if len(tMessage) != 0 {
cStatus.Message = tMessage
}
statuses[i] = cStatus
}