diff --git a/csi.proto b/csi.proto index 479c9f2a..32e2218c 100644 --- a/csi.proto +++ b/csi.proto @@ -877,7 +877,7 @@ message GetVolumeResponse { // volume_health shows error conditions reported by the SP. // This field MUST be specified if the // VOLUME_HEALTH controller capability is supported. - VolumeHealth volume_health = 1 [(alpha_field) = true]; + VolumeHealth volume_health = 1; } // This field is REQUIRED @@ -1299,7 +1299,7 @@ message NodeGetVolumeStatsResponse { // This field is OPTIONAL. repeated VolumeUsage usage = 1; // This field is OPTIONAL. - VolumeHealth volume_health = 2 [(alpha_field) = true]; + VolumeHealth volume_health = 2; } message VolumeUsage { @@ -1328,32 +1328,40 @@ message VolumeHealth { option (alpha_message) = true; enum Condition { - // Volume health condition is unknown; If this is the initial - // report of volume health, treat it as healthy. If there was - // already a condition reported previously, treat unknown as - // unchanged from the previous condition. + // Volume health condition is unknown. UNKNOWN = 0; // Volume is accessible and no problems are detected. HEALTHY = 1; // Volume is not accessible currently, but there's no reason to // expect data loss. Examples: power outage, network outage, // maintenance. - TEMPORARY_INACCESSIBLE = 2; + TEMPORARY_INACCESSIBLE = 10; // Volume is accessible currently, but is degraded. Data loss - // is unlikely as the storage system is rebuilding to fix the + // is unlikely as the storage system may be rebuilding to fix the // problem automatically. For example, a replica is lost on // the storage system but a spare is configured, and the storage // system is resyncing/reconstructing. - TEMPORARY_DEGRADED = 3; + TEMPORARY_DEGRADED = 20; // Volume is accessible currently, but a problem is detected that // could lead to eventual data loss. Examples: recoverable hardware // failure (i.e. the disk needs to be manually replaced by a human), // cooling failure, equipment significantly past end of life. - FAILURE_LIKELY = 4; + FAILURE_LIKELY = 30; // Volume is not accessible currently, and there is reason to // believe the outage may be permanent. Examples: unrecoverable // hardware failure, natural disasters, damage to equipment. - FATAL = 5; + FATAL = 40; + } + + message VolumeHealthError { + // The code describing the health condition of the volume. + // This is an opaque field to CO. + // This field is OPTIONAL. + string code = 1; + + // The error message associated with the above error code. + // This field is REQUIRED. + string message = 2; } // The level of the health condition of the volume. @@ -1364,17 +1372,6 @@ message VolumeHealth { // the volume. This field is REQUIRED. repeated VolumeHealthError error = 2; } - -message VolumeHealthError { - // The error code describing the health condition of the volume. - // This is an opaque field to CO. - // This field is REQUIRED. - string error_code = 1; - - // The error message associated with the above error code. - // This field is OPTIONAL. - string message = 2; -} message NodeGetCapabilitiesRequest { // Intentionally empty. } diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index 1a8f0831..c9a0c675 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -288,50 +288,47 @@ func (VolumeUsage_Unit) EnumDescriptor() ([]byte, []int) { type VolumeHealth_Condition int32 const ( - // Volume health condition is unknown; If this is the initial - // report of volume health, treat it as healthy. If there was - // already a condition reported previously, treat unknown as - // unchanged from the previous condition. + // Volume health condition is unknown. VolumeHealth_UNKNOWN VolumeHealth_Condition = 0 // Volume is accessible and no problems are detected. VolumeHealth_HEALTHY VolumeHealth_Condition = 1 // Volume is not accessible currently, but there's no reason to // expect data loss. Examples: power outage, network outage, // maintenance. - VolumeHealth_TEMPORARY_INACCESSIBLE VolumeHealth_Condition = 2 + VolumeHealth_TEMPORARY_INACCESSIBLE VolumeHealth_Condition = 10 // Volume is accessible currently, but is degraded. Data loss - // is unlikely as the storage system is rebuilding to fix the + // is unlikely as the storage system may be rebuilding to fix the // problem automatically. For example, a replica is lost on // the storage system but a spare is configured, and the storage // system is resyncing/reconstructing. - VolumeHealth_TEMPORARY_DEGRADED VolumeHealth_Condition = 3 + VolumeHealth_TEMPORARY_DEGRADED VolumeHealth_Condition = 20 // Volume is accessible currently, but a problem is detected that // could lead to eventual data loss. Examples: recoverable hardware // failure (i.e. the disk needs to be manually replaced by a human), // cooling failure, equipment significantly past end of life. - VolumeHealth_FAILURE_LIKELY VolumeHealth_Condition = 4 + VolumeHealth_FAILURE_LIKELY VolumeHealth_Condition = 30 // Volume is not accessible currently, and there is reason to // believe the outage may be permanent. Examples: unrecoverable // hardware failure, natural disasters, damage to equipment. - VolumeHealth_FATAL VolumeHealth_Condition = 5 + VolumeHealth_FATAL VolumeHealth_Condition = 40 ) var VolumeHealth_Condition_name = map[int32]string{ - 0: "UNKNOWN", - 1: "HEALTHY", - 2: "TEMPORARY_INACCESSIBLE", - 3: "TEMPORARY_DEGRADED", - 4: "FAILURE_LIKELY", - 5: "FATAL", + 0: "UNKNOWN", + 1: "HEALTHY", + 10: "TEMPORARY_INACCESSIBLE", + 20: "TEMPORARY_DEGRADED", + 30: "FAILURE_LIKELY", + 40: "FATAL", } var VolumeHealth_Condition_value = map[string]int32{ "UNKNOWN": 0, "HEALTHY": 1, - "TEMPORARY_INACCESSIBLE": 2, - "TEMPORARY_DEGRADED": 3, - "FAILURE_LIKELY": 4, - "FATAL": 5, + "TEMPORARY_INACCESSIBLE": 10, + "TEMPORARY_DEGRADED": 20, + "FAILURE_LIKELY": 30, + "FATAL": 40, } func (x VolumeHealth_Condition) String() string { @@ -380,7 +377,7 @@ func (x NodeServiceCapability_RPC_Type) String() string { } func (NodeServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{56, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{55, 0, 0} } type GetPluginInfoRequest struct { @@ -4259,10 +4256,10 @@ type VolumeHealth struct { Condition VolumeHealth_Condition `protobuf:"varint,1,opt,name=condition,proto3,enum=csi.v1.VolumeHealth_Condition" json:"condition,omitempty"` // The error code and message describing the health condition of // the volume. This field is REQUIRED. - Error []*VolumeHealthError `protobuf:"bytes,2,rep,name=error,proto3" json:"error,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Error []*VolumeHealth_VolumeHealthError `protobuf:"bytes,2,rep,name=error,proto3" json:"error,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *VolumeHealth) Reset() { *m = VolumeHealth{} } @@ -4297,59 +4294,59 @@ func (m *VolumeHealth) GetCondition() VolumeHealth_Condition { return VolumeHealth_UNKNOWN } -func (m *VolumeHealth) GetError() []*VolumeHealthError { +func (m *VolumeHealth) GetError() []*VolumeHealth_VolumeHealthError { if m != nil { return m.Error } return nil } -type VolumeHealthError struct { - // The error code describing the health condition of the volume. +type VolumeHealth_VolumeHealthError struct { + // The code describing the health condition of the volume. // This is an opaque field to CO. - // This field is REQUIRED. - ErrorCode string `protobuf:"bytes,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` - // The error message associated with the above error code. // This field is OPTIONAL. + Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` + // The error message associated with the above error code. + // This field is REQUIRED. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } -func (m *VolumeHealthError) Reset() { *m = VolumeHealthError{} } -func (m *VolumeHealthError) String() string { return proto.CompactTextString(m) } -func (*VolumeHealthError) ProtoMessage() {} -func (*VolumeHealthError) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{53} +func (m *VolumeHealth_VolumeHealthError) Reset() { *m = VolumeHealth_VolumeHealthError{} } +func (m *VolumeHealth_VolumeHealthError) String() string { return proto.CompactTextString(m) } +func (*VolumeHealth_VolumeHealthError) ProtoMessage() {} +func (*VolumeHealth_VolumeHealthError) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{52, 0} } -func (m *VolumeHealthError) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_VolumeHealthError.Unmarshal(m, b) +func (m *VolumeHealth_VolumeHealthError) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VolumeHealth_VolumeHealthError.Unmarshal(m, b) } -func (m *VolumeHealthError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_VolumeHealthError.Marshal(b, m, deterministic) +func (m *VolumeHealth_VolumeHealthError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VolumeHealth_VolumeHealthError.Marshal(b, m, deterministic) } -func (m *VolumeHealthError) XXX_Merge(src proto.Message) { - xxx_messageInfo_VolumeHealthError.Merge(m, src) +func (m *VolumeHealth_VolumeHealthError) XXX_Merge(src proto.Message) { + xxx_messageInfo_VolumeHealth_VolumeHealthError.Merge(m, src) } -func (m *VolumeHealthError) XXX_Size() int { - return xxx_messageInfo_VolumeHealthError.Size(m) +func (m *VolumeHealth_VolumeHealthError) XXX_Size() int { + return xxx_messageInfo_VolumeHealth_VolumeHealthError.Size(m) } -func (m *VolumeHealthError) XXX_DiscardUnknown() { - xxx_messageInfo_VolumeHealthError.DiscardUnknown(m) +func (m *VolumeHealth_VolumeHealthError) XXX_DiscardUnknown() { + xxx_messageInfo_VolumeHealth_VolumeHealthError.DiscardUnknown(m) } -var xxx_messageInfo_VolumeHealthError proto.InternalMessageInfo +var xxx_messageInfo_VolumeHealth_VolumeHealthError proto.InternalMessageInfo -func (m *VolumeHealthError) GetErrorCode() string { +func (m *VolumeHealth_VolumeHealthError) GetCode() string { if m != nil { - return m.ErrorCode + return m.Code } return "" } -func (m *VolumeHealthError) GetMessage() string { +func (m *VolumeHealth_VolumeHealthError) GetMessage() string { if m != nil { return m.Message } @@ -4366,7 +4363,7 @@ func (m *NodeGetCapabilitiesRequest) Reset() { *m = NodeGetCapabilitiesR func (m *NodeGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesRequest) ProtoMessage() {} func (*NodeGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{54} + return fileDescriptor_9cdb00adce470e01, []int{53} } func (m *NodeGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -4400,7 +4397,7 @@ func (m *NodeGetCapabilitiesResponse) Reset() { *m = NodeGetCapabilities func (m *NodeGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetCapabilitiesResponse) ProtoMessage() {} func (*NodeGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{55} + return fileDescriptor_9cdb00adce470e01, []int{54} } func (m *NodeGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -4442,7 +4439,7 @@ func (m *NodeServiceCapability) Reset() { *m = NodeServiceCapability{} } func (m *NodeServiceCapability) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability) ProtoMessage() {} func (*NodeServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{56} + return fileDescriptor_9cdb00adce470e01, []int{55} } func (m *NodeServiceCapability) XXX_Unmarshal(b []byte) error { @@ -4505,7 +4502,7 @@ func (m *NodeServiceCapability_RPC) Reset() { *m = NodeServiceCapability func (m *NodeServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*NodeServiceCapability_RPC) ProtoMessage() {} func (*NodeServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{56, 0} + return fileDescriptor_9cdb00adce470e01, []int{55, 0} } func (m *NodeServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -4543,7 +4540,7 @@ func (m *NodeGetInfoRequest) Reset() { *m = NodeGetInfoRequest{} } func (m *NodeGetInfoRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoRequest) ProtoMessage() {} func (*NodeGetInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{57} + return fileDescriptor_9cdb00adce470e01, []int{56} } func (m *NodeGetInfoRequest) XXX_Unmarshal(b []byte) error { @@ -4607,7 +4604,7 @@ func (m *NodeGetInfoResponse) Reset() { *m = NodeGetInfoResponse{} } func (m *NodeGetInfoResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetInfoResponse) ProtoMessage() {} func (*NodeGetInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{58} + return fileDescriptor_9cdb00adce470e01, []int{57} } func (m *NodeGetInfoResponse) XXX_Unmarshal(b []byte) error { @@ -4686,7 +4683,7 @@ func (m *NodeExpandVolumeRequest) Reset() { *m = NodeExpandVolumeRequest func (m *NodeExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeRequest) ProtoMessage() {} func (*NodeExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{59} + return fileDescriptor_9cdb00adce470e01, []int{58} } func (m *NodeExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4754,7 +4751,7 @@ func (m *NodeExpandVolumeResponse) Reset() { *m = NodeExpandVolumeRespon func (m *NodeExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeExpandVolumeResponse) ProtoMessage() {} func (*NodeExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{60} + return fileDescriptor_9cdb00adce470e01, []int{59} } func (m *NodeExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4919,7 +4916,7 @@ func init() { proto.RegisterType((*NodeGetVolumeStatsResponse)(nil), "csi.v1.NodeGetVolumeStatsResponse") proto.RegisterType((*VolumeUsage)(nil), "csi.v1.VolumeUsage") proto.RegisterType((*VolumeHealth)(nil), "csi.v1.VolumeHealth") - proto.RegisterType((*VolumeHealthError)(nil), "csi.v1.VolumeHealthError") + proto.RegisterType((*VolumeHealth_VolumeHealthError)(nil), "csi.v1.VolumeHealth.VolumeHealthError") proto.RegisterType((*NodeGetCapabilitiesRequest)(nil), "csi.v1.NodeGetCapabilitiesRequest") proto.RegisterType((*NodeGetCapabilitiesResponse)(nil), "csi.v1.NodeGetCapabilitiesResponse") proto.RegisterType((*NodeServiceCapability)(nil), "csi.v1.NodeServiceCapability") @@ -4939,239 +4936,239 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 3707 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4d, 0x6c, 0x1b, 0x47, - 0x77, 0x5a, 0xfe, 0x48, 0xe2, 0xa3, 0x24, 0xaf, 0x46, 0x3f, 0xa6, 0x57, 0x3f, 0x96, 0xd7, 0xb1, - 0x23, 0x3b, 0x36, 0xdd, 0x28, 0x71, 0xd0, 0xc8, 0xce, 0x0f, 0x49, 0xad, 0x25, 0xc6, 0x14, 0xa5, - 0x2c, 0x29, 0x3b, 0x72, 0x1b, 0x6c, 0x56, 0xe4, 0x48, 0x5a, 0x84, 0xe4, 0x32, 0xbb, 0x4b, 0x55, - 0x2a, 0x0a, 0x14, 0x68, 0x51, 0x14, 0x41, 0x7b, 0x6f, 0x6f, 0x2d, 0xda, 0x9e, 0x8a, 0x04, 0x39, - 0x15, 0x3d, 0x06, 0xe8, 0xb1, 0x87, 0x22, 0xb7, 0x16, 0xbd, 0x04, 0xe8, 0x31, 0xe8, 0xf7, 0x21, - 0xe7, 0x0f, 0xdf, 0xe1, 0xc3, 0xce, 0xcc, 0x2e, 0x77, 0x97, 0xbb, 0xfc, 0xb1, 0x6c, 0xe4, 0xf0, - 0x9d, 0xc4, 0x7d, 0xf3, 0xde, 0x9b, 0x37, 0x33, 0xef, 0xbd, 0x79, 0x3f, 0x23, 0x78, 0x78, 0xa2, - 0x59, 0xa7, 0x9d, 0xa3, 0x6c, 0x4d, 0x6f, 0x3e, 0xa8, 0xe9, 0x2d, 0x4b, 0xd5, 0x5a, 0xd8, 0xb8, - 0x6f, 0x5a, 0xba, 0xa1, 0x9e, 0xe0, 0xfb, 0x5a, 0xcb, 0xc2, 0xc6, 0xb1, 0x5a, 0xc3, 0x0f, 0xcc, - 0x36, 0xae, 0x3d, 0xa8, 0x99, 0x5a, 0xb6, 0x6d, 0xe8, 0x96, 0x8e, 0xc6, 0xed, 0x9f, 0x67, 0x6f, - 0x0b, 0x6b, 0x27, 0xba, 0x7e, 0xd2, 0xc0, 0x0f, 0x08, 0xf4, 0xa8, 0x73, 0xfc, 0xa0, 0x8e, 0xcd, - 0x9a, 0xa1, 0xb5, 0x2d, 0xdd, 0xa0, 0x98, 0xc2, 0xf5, 0x20, 0x86, 0xa5, 0x35, 0xb1, 0x69, 0xa9, - 0xcd, 0x36, 0x43, 0x58, 0x0d, 0x22, 0xfc, 0x89, 0xa1, 0xb6, 0xdb, 0xd8, 0x30, 0xe9, 0xb8, 0xb8, - 0x08, 0xf3, 0xdb, 0xd8, 0xda, 0x6f, 0x74, 0x4e, 0xb4, 0x56, 0xb1, 0x75, 0xac, 0xcb, 0xf8, 0xab, - 0x0e, 0x36, 0x2d, 0xf1, 0x7f, 0x38, 0x58, 0x08, 0x0c, 0x98, 0x6d, 0xbd, 0x65, 0x62, 0x84, 0x20, - 0xd1, 0x52, 0x9b, 0x38, 0xc3, 0xad, 0x71, 0xeb, 0x29, 0x99, 0xfc, 0x46, 0xb7, 0x60, 0xe6, 0x0c, - 0xb7, 0xea, 0xba, 0xa1, 0x9c, 0x61, 0xc3, 0xd4, 0xf4, 0x56, 0x26, 0x46, 0x46, 0xa7, 0x29, 0xf4, - 0x19, 0x05, 0xa2, 0x6d, 0x98, 0x6c, 0xaa, 0x2d, 0xed, 0x18, 0x9b, 0x56, 0x26, 0xbe, 0x16, 0x5f, - 0x4f, 0x6f, 0xbc, 0x95, 0xa5, 0x4b, 0xcd, 0x86, 0xce, 0x95, 0xdd, 0x65, 0xd8, 0x52, 0xcb, 0x32, - 0x2e, 0x64, 0x97, 0x58, 0x78, 0x04, 0xd3, 0xbe, 0x21, 0xc4, 0x43, 0xfc, 0x4b, 0x7c, 0xc1, 0x64, - 0xb2, 0x7f, 0xa2, 0x79, 0x48, 0x9e, 0xa9, 0x8d, 0x0e, 0x66, 0x92, 0xd0, 0x8f, 0xcd, 0xd8, 0x1f, - 0x72, 0xe2, 0x2a, 0x2c, 0xbb, 0xb3, 0x15, 0xd4, 0xb6, 0x7a, 0xa4, 0x35, 0x34, 0x4b, 0xc3, 0xa6, - 0xb3, 0xf4, 0xcf, 0x61, 0x25, 0x62, 0x9c, 0xed, 0xc0, 0x63, 0x98, 0xaa, 0x79, 0xe0, 0x19, 0x8e, - 0x2c, 0x25, 0xe3, 0x2c, 0x25, 0x40, 0x79, 0x21, 0xfb, 0xb0, 0xc5, 0xff, 0x8a, 0x03, 0x1f, 0x44, - 0x41, 0x8f, 0x61, 0xc2, 0xc4, 0xc6, 0x99, 0x56, 0xa3, 0xfb, 0x9a, 0xde, 0x58, 0x8b, 0xe2, 0x96, - 0xad, 0x50, 0xbc, 0x9d, 0x31, 0xd9, 0x21, 0x41, 0x07, 0xc0, 0x9f, 0xe9, 0x8d, 0x4e, 0x13, 0x2b, - 0xf8, 0xbc, 0xad, 0xb6, 0xdc, 0x03, 0x48, 0x6f, 0xac, 0x47, 0xb2, 0x79, 0x46, 0x08, 0x24, 0x07, - 0x7f, 0x67, 0x4c, 0xbe, 0x72, 0xe6, 0x07, 0x09, 0x7f, 0xc7, 0xc1, 0x04, 0x9b, 0x0d, 0xbd, 0x0f, - 0x09, 0xeb, 0xa2, 0x4d, 0xa5, 0x9b, 0xd9, 0xb8, 0x35, 0x48, 0xba, 0x6c, 0xf5, 0xa2, 0x8d, 0x65, - 0x42, 0x22, 0x7e, 0x0a, 0x09, 0xfb, 0x0b, 0xa5, 0x61, 0xe2, 0xa0, 0xfc, 0xb4, 0xbc, 0xf7, 0xbc, - 0xcc, 0x8f, 0xa1, 0x45, 0x40, 0x85, 0xbd, 0x72, 0x55, 0xde, 0x2b, 0x95, 0x24, 0x59, 0xa9, 0x48, - 0xf2, 0xb3, 0x62, 0x41, 0xe2, 0x39, 0xf4, 0x06, 0xac, 0x3d, 0xdb, 0x2b, 0x1d, 0xec, 0x4a, 0x4a, - 0xae, 0x50, 0x90, 0x2a, 0x95, 0x62, 0xbe, 0x58, 0x2a, 0x56, 0x0f, 0x95, 0xc2, 0x5e, 0xb9, 0x52, - 0x95, 0x73, 0xc5, 0x72, 0xb5, 0xc2, 0xc7, 0x84, 0xbf, 0xe0, 0xe0, 0x4a, 0x60, 0x01, 0x28, 0xe7, - 0x93, 0xf0, 0xfe, 0xb0, 0x0b, 0xf7, 0x4a, 0x7a, 0x2f, 0x4c, 0x52, 0x80, 0xf1, 0xbd, 0x72, 0xa9, - 0x58, 0xb6, 0xa5, 0x4b, 0xc3, 0xc4, 0xde, 0x93, 0x27, 0xe4, 0x23, 0x96, 0x1f, 0xa7, 0x13, 0x8a, - 0x33, 0x30, 0xb5, 0x6f, 0xe8, 0x47, 0xd8, 0xd1, 0x9f, 0x1c, 0x4c, 0xb3, 0x6f, 0xa6, 0x2f, 0x7f, - 0x00, 0x49, 0x03, 0xab, 0xf5, 0x0b, 0x76, 0xb4, 0x42, 0x96, 0xda, 0x64, 0xd6, 0xb1, 0xc9, 0x6c, - 0x5e, 0xd7, 0x1b, 0xcf, 0x6c, 0xfd, 0x94, 0x29, 0xa2, 0xf8, 0x73, 0x02, 0xe6, 0x0a, 0x06, 0x56, - 0x2d, 0x4c, 0xa5, 0x65, 0xac, 0x43, 0x6d, 0xef, 0x31, 0xcc, 0xd8, 0xfa, 0x55, 0xd3, 0xac, 0x0b, - 0xc5, 0x50, 0x5b, 0x27, 0x98, 0x1d, 0xfd, 0x82, 0xb3, 0x03, 0x05, 0x36, 0x2a, 0xdb, 0x83, 0xf2, - 0x74, 0xcd, 0xfb, 0x89, 0x8a, 0x30, 0xc7, 0x54, 0xc7, 0xa7, 0xd2, 0x71, 0xbf, 0x4a, 0x53, 0x29, - 0x3c, 0x2a, 0x8d, 0xce, 0xfc, 0x10, 0x0d, 0x9b, 0xe8, 0x29, 0x40, 0x5b, 0x35, 0xd4, 0x26, 0xb6, - 0xb0, 0x61, 0x66, 0x12, 0x7e, 0xfb, 0x0e, 0x59, 0x4d, 0x76, 0xdf, 0xc5, 0xa6, 0xf6, 0xed, 0x21, - 0x47, 0xdb, 0xb6, 0x41, 0xd4, 0x0c, 0x6c, 0x99, 0x99, 0x24, 0xe1, 0xb4, 0xde, 0x8f, 0x53, 0x85, - 0xa2, 0x12, 0x36, 0xf9, 0xf8, 0xdf, 0xe7, 0x39, 0xd9, 0xa1, 0x46, 0x7b, 0xb0, 0xe0, 0x2c, 0x50, - 0x6f, 0x59, 0xb8, 0x65, 0x29, 0xa6, 0xde, 0x31, 0x6a, 0x38, 0x33, 0x4e, 0x76, 0x69, 0x29, 0xb0, - 0x44, 0x8a, 0x53, 0x21, 0x28, 0x32, 0xdb, 0x1a, 0x1f, 0x10, 0xbd, 0x00, 0x41, 0xad, 0xd5, 0xb0, - 0x69, 0x6a, 0x74, 0x2f, 0x14, 0x03, 0x7f, 0xd5, 0xd1, 0x0c, 0xdc, 0xc4, 0x2d, 0xcb, 0xcc, 0x4c, - 0xf8, 0xb9, 0x56, 0xf5, 0xb6, 0xde, 0xd0, 0x4f, 0x2e, 0xe4, 0x2e, 0x8e, 0x7c, 0xcd, 0x47, 0xee, - 0x19, 0x31, 0x85, 0x0f, 0xe0, 0x4a, 0x60, 0x53, 0x46, 0xf1, 0x6c, 0xc2, 0x26, 0x4c, 0x79, 0x77, - 0x62, 0x24, 0xaf, 0xf8, 0x37, 0x31, 0x98, 0x0b, 0xd9, 0x03, 0xb4, 0x03, 0x93, 0x66, 0x4b, 0x6d, - 0x9b, 0xa7, 0xba, 0xc5, 0xf4, 0xf7, 0x6e, 0x9f, 0x2d, 0xcb, 0x56, 0x18, 0x2e, 0xfd, 0xdc, 0x19, - 0x93, 0x5d, 0x6a, 0x94, 0x87, 0x71, 0xba, 0x9f, 0x41, 0xdf, 0x14, 0xc6, 0x87, 0xc2, 0x5c, 0x2e, - 0x8c, 0x52, 0x78, 0x1b, 0x66, 0xfc, 0x33, 0xa0, 0xeb, 0x90, 0x76, 0x66, 0x50, 0xb4, 0x3a, 0x5b, - 0x2b, 0x38, 0xa0, 0x62, 0x5d, 0x78, 0x0b, 0xa6, 0xbc, 0xcc, 0xd0, 0x12, 0xa4, 0x98, 0x42, 0xb8, - 0xe8, 0x93, 0x14, 0x50, 0xac, 0xbb, 0x36, 0xfd, 0x21, 0xcc, 0xfb, 0xf5, 0x8c, 0x99, 0xf2, 0x6d, - 0x77, 0x0d, 0x74, 0x2f, 0x66, 0xfc, 0x6b, 0x70, 0xe4, 0x14, 0xff, 0x35, 0x01, 0x7c, 0xd0, 0x68, - 0xd0, 0x63, 0x48, 0x1e, 0x35, 0xf4, 0xda, 0x97, 0x8c, 0xf6, 0x8d, 0x28, 0xeb, 0xca, 0xe6, 0x6d, - 0x2c, 0x0a, 0xdd, 0x19, 0x93, 0x29, 0x91, 0x4d, 0xdd, 0xd4, 0x3b, 0x2d, 0x8b, 0xed, 0x5e, 0x34, - 0xf5, 0xae, 0x8d, 0xd5, 0xa5, 0x26, 0x44, 0x68, 0x0b, 0xd2, 0x54, 0xed, 0x94, 0xa6, 0x5e, 0xc7, - 0x99, 0x38, 0xe1, 0x71, 0x33, 0x92, 0x47, 0x8e, 0xe0, 0xee, 0xea, 0x75, 0x2c, 0x83, 0xea, 0xfe, - 0x16, 0xa6, 0x21, 0xed, 0x91, 0x4d, 0xd8, 0x86, 0xb4, 0x67, 0x32, 0x74, 0x15, 0x26, 0x8e, 0x4d, - 0xc5, 0x75, 0xc2, 0x29, 0x79, 0xfc, 0xd8, 0x24, 0xfe, 0xf4, 0x3a, 0xa4, 0x89, 0x14, 0xca, 0x71, - 0x43, 0x3d, 0x31, 0x33, 0xb1, 0xb5, 0xb8, 0x7d, 0x46, 0x04, 0xf4, 0xc4, 0x86, 0x08, 0xff, 0xcf, - 0x01, 0x74, 0xa7, 0x44, 0x8f, 0x21, 0x41, 0xa4, 0xa4, 0xae, 0x7c, 0x7d, 0x08, 0x29, 0xb3, 0x44, - 0x54, 0x42, 0x25, 0xfe, 0x03, 0x07, 0x09, 0xc2, 0x26, 0x78, 0xe1, 0x54, 0x8a, 0xe5, 0xed, 0x92, - 0xa4, 0x94, 0xf7, 0xb6, 0x24, 0xe5, 0xb9, 0x5c, 0xac, 0x4a, 0x32, 0xcf, 0xa1, 0x25, 0xb8, 0xea, - 0x85, 0xcb, 0x52, 0x6e, 0x4b, 0x92, 0x95, 0xbd, 0x72, 0xe9, 0x90, 0x8f, 0x21, 0x01, 0x16, 0x77, - 0x0f, 0x4a, 0xd5, 0x62, 0xef, 0x58, 0x1c, 0x2d, 0x43, 0xc6, 0x33, 0xc6, 0x78, 0x30, 0xb6, 0x09, - 0x9b, 0xad, 0x67, 0x94, 0xfe, 0x64, 0x83, 0xc9, 0xfc, 0xb4, 0x7b, 0x18, 0x44, 0xd9, 0x9e, 0xc3, - 0xb4, 0xcf, 0x47, 0xdb, 0xe1, 0x14, 0x73, 0x2a, 0x75, 0xe5, 0xe8, 0xc2, 0x22, 0x21, 0x06, 0xb7, - 0x1e, 0x97, 0xa7, 0x1d, 0x68, 0xde, 0x06, 0xda, 0xdb, 0xda, 0xd0, 0x9a, 0x9a, 0xc5, 0x70, 0x62, - 0x04, 0x07, 0x08, 0x88, 0x20, 0x88, 0x3f, 0xc6, 0x60, 0x9c, 0x9d, 0xcd, 0x2d, 0xcf, 0x2d, 0xe1, - 0x63, 0xe9, 0x40, 0x29, 0x4b, 0x9f, 0x71, 0xc4, 0xfc, 0xc6, 0x81, 0x76, 0x60, 0xc6, 0xeb, 0x4a, - 0xcf, 0x9d, 0x20, 0xee, 0x86, 0xff, 0x80, 0xbc, 0xf6, 0x7c, 0xce, 0x42, 0xb7, 0xe9, 0x33, 0x2f, - 0x0c, 0xe5, 0x61, 0x26, 0xe0, 0x8d, 0x13, 0x83, 0xbd, 0xf1, 0x74, 0xcd, 0xe7, 0x98, 0x72, 0x30, - 0xe7, 0x38, 0xd2, 0x06, 0x56, 0x2c, 0xe6, 0x68, 0xd9, 0x6d, 0xc1, 0xf7, 0x38, 0x60, 0xd4, 0x45, - 0x76, 0x60, 0xc2, 0xc7, 0x80, 0x7a, 0x65, 0x1d, 0xc9, 0x6b, 0x76, 0x60, 0x2e, 0xc4, 0xc5, 0xa3, - 0x2c, 0xa4, 0xc8, 0x51, 0x99, 0x9a, 0x85, 0x59, 0x78, 0xd8, 0x2b, 0x51, 0x17, 0xc5, 0xc6, 0x6f, - 0x1b, 0xf8, 0x18, 0x1b, 0x06, 0xae, 0x13, 0xf3, 0x08, 0xc5, 0x77, 0x51, 0xc4, 0xbf, 0xe4, 0x60, - 0xd2, 0x81, 0xa3, 0x4d, 0x98, 0x34, 0xf1, 0x09, 0xbd, 0x7e, 0xe8, 0x5c, 0xab, 0x41, 0xda, 0x6c, - 0x85, 0x21, 0xb0, 0x40, 0xda, 0xc1, 0xb7, 0x03, 0x69, 0xdf, 0xd0, 0x48, 0x8b, 0xff, 0x77, 0x0e, - 0xe6, 0xb6, 0x70, 0x03, 0x07, 0xa3, 0x94, 0x7e, 0x1e, 0xd6, 0x7b, 0xb1, 0xc7, 0xfc, 0x17, 0x7b, - 0x08, 0xab, 0x3e, 0x17, 0xfb, 0xa5, 0x2e, 0xbb, 0x45, 0x98, 0xf7, 0xcf, 0x46, 0xdd, 0xbb, 0xf8, - 0xab, 0x38, 0xac, 0xda, 0xba, 0x60, 0xe8, 0x8d, 0x06, 0x36, 0xf6, 0x3b, 0x47, 0x0d, 0xcd, 0x3c, - 0x1d, 0x61, 0x71, 0x57, 0x61, 0xa2, 0xa5, 0xd7, 0x3d, 0xc6, 0x33, 0x6e, 0x7f, 0x16, 0xeb, 0x48, - 0x82, 0xd9, 0x60, 0x98, 0x75, 0xc1, 0x9c, 0x70, 0x74, 0x90, 0xc5, 0x9f, 0x05, 0x6f, 0x10, 0x01, - 0x26, 0xed, 0x00, 0x51, 0x6f, 0x35, 0x2e, 0x88, 0xc5, 0x4c, 0xca, 0xee, 0x37, 0x92, 0x83, 0x11, - 0xd3, 0x3b, 0x6e, 0xc4, 0xd4, 0x77, 0x45, 0xfd, 0x82, 0xa7, 0x2f, 0x7a, 0x2c, 0x7e, 0x9c, 0xb0, - 0x7e, 0x7f, 0x48, 0xd6, 0x03, 0x3d, 0xc1, 0x65, 0x4e, 0xf1, 0x15, 0x98, 0xef, 0x7f, 0x72, 0x70, - 0x3d, 0x72, 0x09, 0xec, 0xca, 0xaf, 0xc3, 0x95, 0x36, 0x1d, 0x70, 0x37, 0x81, 0x5a, 0xd9, 0xa3, - 0x81, 0x9b, 0xc0, 0xb2, 0x58, 0x06, 0xf5, 0x6d, 0xc3, 0x4c, 0xdb, 0x07, 0x14, 0x72, 0x30, 0x17, - 0x82, 0x36, 0xd2, 0x62, 0x7e, 0xe2, 0x60, 0xad, 0x2b, 0xca, 0x41, 0xab, 0xfd, 0xea, 0xd4, 0xb7, - 0xda, 0xd5, 0x2d, 0xea, 0xf2, 0x1f, 0xf6, 0xae, 0x3d, 0x7c, 0xc2, 0xd7, 0x65, 0xc1, 0x37, 0xe1, - 0x46, 0x9f, 0xa9, 0x99, 0x39, 0xff, 0x98, 0x80, 0x1b, 0xcf, 0xd4, 0x86, 0x56, 0x77, 0x03, 0xb9, - 0x90, 0x7c, 0xbf, 0xff, 0x96, 0xd4, 0x7a, 0x2c, 0x80, 0x7a, 0xad, 0xc7, 0xae, 0xd5, 0x0e, 0xe2, - 0x3f, 0xc4, 0x75, 0xf8, 0x0a, 0x93, 0xb0, 0xc3, 0x90, 0x24, 0xec, 0xfd, 0xe1, 0x65, 0xed, 0x97, - 0x92, 0x1d, 0x04, 0x1d, 0xcc, 0x7b, 0xc3, 0xf3, 0xed, 0xa3, 0x05, 0x97, 0xb6, 0xe2, 0x5f, 0x32, - 0x6b, 0xfa, 0x8f, 0x04, 0x88, 0xfd, 0x56, 0xcf, 0x7c, 0x88, 0x0c, 0xa9, 0x9a, 0xde, 0x3a, 0xd6, - 0x8c, 0x26, 0xae, 0xb3, 0xe8, 0xff, 0xdd, 0x61, 0x36, 0x8f, 0x39, 0x90, 0x82, 0x43, 0x2b, 0x77, - 0xd9, 0xa0, 0x0c, 0x4c, 0x34, 0xb1, 0x69, 0xaa, 0x27, 0x8e, 0x58, 0xce, 0xa7, 0xf0, 0x6d, 0x1c, - 0x52, 0x2e, 0x09, 0x6a, 0xf5, 0x68, 0x30, 0x75, 0x5f, 0xdb, 0x2f, 0x23, 0xc0, 0xcb, 0x2b, 0x73, - 0xec, 0x25, 0x94, 0xb9, 0xee, 0x53, 0x66, 0x6a, 0x0e, 0x5b, 0x2f, 0x25, 0x76, 0x1f, 0xbd, 0xfe, - 0xc5, 0x15, 0x50, 0xfc, 0x63, 0x40, 0x25, 0xcd, 0x64, 0x59, 0x94, 0xeb, 0x96, 0xec, 0xa4, 0x49, - 0x3d, 0x57, 0x70, 0xcb, 0x32, 0x34, 0x16, 0xae, 0x27, 0x65, 0x68, 0xaa, 0xe7, 0x12, 0x85, 0xd8, - 0x21, 0xbd, 0x69, 0xa9, 0x86, 0xa5, 0xb5, 0x4e, 0x14, 0x4b, 0xff, 0x12, 0xbb, 0x45, 0x57, 0x07, - 0x5a, 0xb5, 0x81, 0xe2, 0xff, 0xc5, 0x60, 0xce, 0xc7, 0x9e, 0xe9, 0xe4, 0x23, 0x98, 0xe8, 0xf2, - 0xf6, 0x85, 0xf1, 0x21, 0xd8, 0x59, 0xba, 0x6d, 0x0e, 0x05, 0x5a, 0x01, 0x68, 0xe1, 0x73, 0xcb, - 0x37, 0x6f, 0xca, 0x86, 0x90, 0x39, 0x85, 0x3f, 0x73, 0x73, 0x6e, 0x4b, 0xb5, 0x3a, 0x26, 0xba, - 0x07, 0x88, 0x79, 0x68, 0x5c, 0x57, 0xd8, 0x15, 0x43, 0xa7, 0x4d, 0xc9, 0xbc, 0x3b, 0x52, 0x26, - 0x97, 0x8d, 0x89, 0x3e, 0x04, 0xa6, 0x52, 0xca, 0x29, 0x56, 0x1b, 0xd6, 0x29, 0xcb, 0x78, 0xe7, - 0xfd, 0xba, 0xb3, 0x43, 0xc6, 0xf2, 0xf1, 0x7f, 0xcc, 0x73, 0xf2, 0xd4, 0x99, 0x07, 0x24, 0x7c, - 0x05, 0x49, 0x7a, 0x08, 0x43, 0x66, 0xeb, 0xe8, 0x63, 0x18, 0x37, 0x89, 0xa0, 0xc1, 0xca, 0x44, - 0xd8, 0x4e, 0x78, 0x17, 0x26, 0x33, 0x3a, 0xf1, 0x5d, 0xe0, 0xb7, 0xb1, 0x35, 0xfc, 0x55, 0xbb, - 0x69, 0x8b, 0x2d, 0xfe, 0xc0, 0xc1, 0xac, 0x87, 0x6c, 0xb4, 0x1a, 0x03, 0xfa, 0x30, 0x20, 0xf5, - 0x6d, 0x4f, 0x2d, 0x3d, 0x10, 0x81, 0x84, 0xc9, 0x2c, 0x94, 0x03, 0x87, 0xd4, 0xb3, 0xed, 0xdc, - 0x48, 0xdb, 0x4e, 0x97, 0xf4, 0x6d, 0x0c, 0xd0, 0x36, 0xb6, 0xdc, 0x7c, 0x96, 0xed, 0x45, 0x84, - 0x53, 0xe0, 0x5e, 0xc2, 0x29, 0x7c, 0xe2, 0x73, 0x0a, 0xd4, 0xad, 0xdc, 0xf5, 0x2c, 0x3d, 0x30, - 0x75, 0xdf, 0x2b, 0x2d, 0x22, 0x87, 0xa4, 0x81, 0xf9, 0x70, 0x39, 0xe4, 0x25, 0x6d, 0x7f, 0x0b, - 0xe6, 0x7c, 0x32, 0x33, 0x1d, 0xb8, 0x0f, 0x48, 0x3d, 0x53, 0xb5, 0x86, 0x6a, 0xcb, 0xe5, 0xa4, - 0xe8, 0x2c, 0x65, 0x9f, 0x75, 0x47, 0x1c, 0x32, 0x51, 0xf4, 0x46, 0x7e, 0x8c, 0x5f, 0xb0, 0xad, - 0xd1, 0xf0, 0x46, 0x4c, 0x3d, 0x38, 0x6c, 0xde, 0xed, 0xd0, 0xd6, 0xc6, 0xcd, 0xde, 0x68, 0x8f, - 0xd5, 0xf9, 0x23, 0xbb, 0x1c, 0xbf, 0x8e, 0xc3, 0x52, 0x1f, 0x6c, 0xf4, 0x08, 0xe2, 0x46, 0xbb, - 0xc6, 0x54, 0xec, 0xcd, 0x21, 0xf8, 0x67, 0xe5, 0xfd, 0xc2, 0xce, 0x98, 0x6c, 0x53, 0x09, 0x5f, - 0xc7, 0x21, 0x2e, 0xef, 0x17, 0xd0, 0xc7, 0xbe, 0x92, 0xff, 0xbd, 0x21, 0xb9, 0x78, 0x2b, 0xfe, - 0xdf, 0xc7, 0xc2, 0x4a, 0xfe, 0x19, 0x98, 0x2f, 0xc8, 0x52, 0xae, 0x2a, 0x29, 0x5b, 0x52, 0x49, - 0xaa, 0x4a, 0x0a, 0x6d, 0x49, 0xf0, 0x1c, 0x5a, 0x86, 0xcc, 0xfe, 0x41, 0xbe, 0x54, 0xac, 0xec, - 0x28, 0x07, 0x65, 0xe7, 0x17, 0x1b, 0x8d, 0x21, 0x1e, 0xa6, 0x4a, 0xc5, 0x4a, 0x95, 0x01, 0x2a, - 0x7c, 0xdc, 0x86, 0x6c, 0x4b, 0x55, 0xa5, 0x90, 0xdb, 0xcf, 0x15, 0x8a, 0xd5, 0x43, 0x3e, 0x81, - 0x04, 0x58, 0xf4, 0xf3, 0xae, 0x94, 0x73, 0xfb, 0x95, 0x9d, 0xbd, 0x2a, 0x9f, 0x44, 0x08, 0x66, - 0x08, 0xbd, 0x03, 0xaa, 0xf0, 0xe3, 0x36, 0x87, 0x42, 0x69, 0xaf, 0xec, 0xca, 0x30, 0x81, 0xe6, - 0x81, 0x77, 0x66, 0x96, 0xa5, 0xdc, 0x16, 0x29, 0x47, 0x4d, 0xa2, 0x59, 0x98, 0x96, 0x3e, 0xdb, - 0xcf, 0x95, 0xb7, 0x1c, 0xc4, 0x14, 0x5a, 0x83, 0x65, 0xaf, 0x38, 0x0a, 0xa3, 0x92, 0xb6, 0x48, - 0x51, 0xaa, 0xc2, 0x03, 0x5a, 0x05, 0xc1, 0x87, 0xc1, 0x5a, 0x2f, 0x3b, 0x52, 0xae, 0x54, 0xdd, - 0xe1, 0xd3, 0x68, 0x06, 0xc0, 0x16, 0x9f, 0x71, 0x9c, 0xb2, 0x27, 0xf1, 0xa3, 0x4c, 0xbb, 0x15, - 0xd3, 0x9f, 0x62, 0xb0, 0x40, 0x4b, 0xa6, 0x4e, 0x81, 0xd6, 0xb1, 0xfd, 0x75, 0xe0, 0x69, 0x91, - 0x47, 0x09, 0xba, 0xc3, 0x19, 0x0a, 0x7f, 0xe6, 0x04, 0xdb, 0x4e, 0x7b, 0x23, 0xe6, 0x69, 0x6f, - 0x14, 0x83, 0xa9, 0xc7, 0x5d, 0x7f, 0x23, 0x20, 0x30, 0x5b, 0xbf, 0x6c, 0x76, 0x37, 0x24, 0x36, - 0xbe, 0xdf, 0x9f, 0x5b, 0xbf, 0xb8, 0xe1, 0x32, 0xa9, 0xeb, 0x25, 0xbd, 0xc6, 0x13, 0x58, 0x0c, - 0xca, 0xcb, 0x0c, 0xf8, 0x5e, 0x4f, 0xb9, 0xde, 0x75, 0x63, 0x2e, 0xae, 0x8b, 0x21, 0xfe, 0x37, - 0x07, 0x93, 0x0e, 0xd8, 0xbe, 0xd3, 0x4d, 0xed, 0x4f, 0xb1, 0xaf, 0x3c, 0x98, 0xb2, 0x21, 0x6e, - 0xb5, 0xd1, 0x5b, 0x68, 0x8f, 0x05, 0x0b, 0xed, 0xa1, 0xe7, 0x1c, 0x0f, 0x3d, 0xe7, 0x8f, 0x60, - 0xba, 0x66, 0x8b, 0xaf, 0xe9, 0x2d, 0xc5, 0xd2, 0x9a, 0x4e, 0xf5, 0xaf, 0xb7, 0x31, 0x56, 0x75, - 0xba, 0xd9, 0xf2, 0x94, 0x43, 0x60, 0x83, 0xd0, 0x1a, 0x4c, 0x91, 0x46, 0x99, 0x62, 0xe9, 0x4a, - 0xc7, 0xc4, 0x99, 0x24, 0xa9, 0x85, 0x00, 0x81, 0x55, 0xf5, 0x03, 0x13, 0x8b, 0xdf, 0x73, 0xb0, - 0x40, 0x4b, 0x3c, 0x41, 0x75, 0x1c, 0xd4, 0x30, 0xf0, 0x6a, 0x5c, 0xe0, 0x76, 0x09, 0x65, 0xf8, - 0xba, 0x32, 0xdc, 0x0c, 0x2c, 0x06, 0xe7, 0x63, 0x69, 0xed, 0x77, 0x31, 0x98, 0xb7, 0x23, 0x13, - 0x67, 0xe0, 0x55, 0x87, 0x8c, 0x23, 0x9c, 0x64, 0x60, 0x33, 0x13, 0x3d, 0x9b, 0xb9, 0x13, 0x4c, - 0x1a, 0xef, 0x78, 0x63, 0xab, 0xe0, 0x0a, 0x5e, 0xd7, 0x5e, 0x7e, 0xc3, 0xc1, 0x42, 0x60, 0x3e, - 0x66, 0x2f, 0x1f, 0x04, 0xa3, 0xe0, 0x9b, 0x11, 0xf2, 0xbd, 0x54, 0x1c, 0xfc, 0xd0, 0x89, 0x44, - 0x47, 0x33, 0xcb, 0x1f, 0x62, 0xb0, 0xd2, 0xbd, 0xc4, 0x48, 0xab, 0xba, 0x3e, 0x42, 0x19, 0xe7, - 0x72, 0x1d, 0xe1, 0x4f, 0x83, 0x0e, 0x77, 0xa3, 0xf7, 0x5e, 0x0d, 0x11, 0xa9, 0x9f, 0xe3, 0x0d, - 0xad, 0x7e, 0x26, 0x46, 0xad, 0x7e, 0x5e, 0x4a, 0x03, 0xfe, 0xdc, 0x5b, 0xd8, 0xf5, 0x8b, 0xcf, - 0x34, 0x61, 0xc8, 0x0e, 0xc9, 0x7b, 0x70, 0x95, 0x24, 0x30, 0xee, 0x4b, 0x0b, 0xa7, 0xff, 0x4b, - 0x5d, 0xe2, 0xa4, 0xbc, 0x60, 0x0f, 0xbb, 0xcf, 0x0b, 0x58, 0x57, 0xa0, 0x2e, 0xfe, 0x9c, 0x80, - 0x45, 0x3b, 0xc1, 0xa9, 0x58, 0xea, 0xc9, 0x28, 0xf5, 0xf2, 0x3f, 0xea, 0x2d, 0x3f, 0xc6, 0xfc, - 0xc7, 0x12, 0xce, 0x75, 0x98, 0xaa, 0x23, 0xca, 0xc2, 0x9c, 0x69, 0xa9, 0x27, 0xc4, 0x1d, 0xa8, - 0xc6, 0x09, 0xb6, 0x94, 0xb6, 0x6a, 0x9d, 0x32, 0x5b, 0x9f, 0x65, 0x43, 0x55, 0x32, 0xb2, 0xaf, - 0x5a, 0xa7, 0xaf, 0xe8, 0x20, 0xd1, 0x27, 0x41, 0xa7, 0xf0, 0xd6, 0x80, 0xb5, 0xf4, 0xd1, 0xad, - 0xcf, 0x22, 0x4a, 0xd4, 0x6f, 0x0f, 0x60, 0x39, 0xb8, 0x34, 0x7d, 0xf9, 0x92, 0xec, 0x2f, 0x5c, - 0xdd, 0xbe, 0x06, 0x57, 0x7b, 0x16, 0xcf, 0xae, 0x90, 0x13, 0xc8, 0xd8, 0x43, 0x07, 0x2d, 0x73, - 0x44, 0x75, 0x8c, 0xd0, 0x98, 0x58, 0x84, 0xc6, 0x88, 0x4b, 0x70, 0x2d, 0x64, 0x22, 0x26, 0xc5, - 0xbf, 0x25, 0xa9, 0x18, 0xa3, 0x37, 0x5a, 0x3e, 0x8f, 0xb2, 0x8a, 0x77, 0xbd, 0xc7, 0x1e, 0xda, - 0x93, 0x78, 0x1d, 0x76, 0x71, 0x1d, 0xd2, 0x5e, 0x3c, 0x76, 0x0d, 0x5a, 0x03, 0x0c, 0x27, 0x79, - 0xa9, 0xfe, 0xcf, 0x78, 0xa0, 0xff, 0x53, 0xea, 0x1a, 0xd5, 0x84, 0x3f, 0xb4, 0x8d, 0xdc, 0x8a, - 0x3e, 0x66, 0xf5, 0xa2, 0xc7, 0xac, 0x26, 0xfd, 0x4d, 0xa5, 0x48, 0xa6, 0xbf, 0x07, 0x86, 0xc5, - 0x94, 0x3a, 0xb4, 0xdb, 0x23, 0xbe, 0x00, 0x81, 0x6a, 0xfc, 0xe8, 0xfd, 0x97, 0x80, 0x1a, 0xc5, - 0x82, 0x6a, 0x24, 0xae, 0xc0, 0x52, 0x28, 0x6f, 0x36, 0xf5, 0xd7, 0x1c, 0x15, 0xcc, 0x2d, 0x00, - 0x55, 0x2c, 0xd5, 0x32, 0x87, 0x9d, 0x9a, 0x0d, 0x7a, 0xa7, 0xa6, 0x20, 0xa2, 0xc1, 0x23, 0x9a, - 0x84, 0xf8, 0xd7, 0x1c, 0xdd, 0x87, 0xa0, 0x2c, 0xec, 0xb6, 0xbd, 0x03, 0xc9, 0x0e, 0xa9, 0x5d, - 0xd3, 0xa8, 0x6b, 0xce, 0x6f, 0x04, 0x07, 0xf6, 0x90, 0x4c, 0x31, 0x2e, 0x5b, 0x0e, 0x14, 0xbf, - 0xe3, 0x20, 0xed, 0x61, 0x8b, 0x96, 0x21, 0xe5, 0x56, 0x50, 0x9c, 0x34, 0xc7, 0x05, 0xd8, 0xa7, - 0x6e, 0xe9, 0x96, 0xda, 0x60, 0xcf, 0x29, 0xe8, 0x87, 0x9d, 0x99, 0x76, 0x4c, 0x4c, 0xa3, 0xe0, - 0xb8, 0x4c, 0x7e, 0xa3, 0x7b, 0x90, 0xe8, 0xb4, 0x34, 0x8b, 0x58, 0xfb, 0x4c, 0xd0, 0x8c, 0xc9, - 0x54, 0xd9, 0x83, 0x96, 0x66, 0xc9, 0x04, 0x4b, 0xbc, 0x0b, 0x09, 0xfb, 0xcb, 0x5f, 0x68, 0x48, - 0x41, 0x32, 0x7f, 0x58, 0x95, 0x2a, 0x3c, 0x87, 0x00, 0xc6, 0x8b, 0x34, 0x2d, 0x8f, 0x89, 0xbf, - 0xe5, 0x9c, 0xd2, 0x1c, 0x5d, 0x02, 0x7a, 0x4c, 0xfa, 0x07, 0x75, 0xcd, 0x4e, 0x80, 0x58, 0xb5, - 0x63, 0x35, 0x6c, 0xf9, 0x76, 0x88, 0x46, 0xb1, 0xe4, 0x2e, 0x01, 0x7a, 0x00, 0x49, 0x6c, 0x18, - 0xba, 0xc1, 0x5c, 0xe4, 0xb5, 0x30, 0x4a, 0xc9, 0x46, 0x90, 0x29, 0x9e, 0x78, 0x4e, 0xfa, 0x07, - 0x8c, 0xda, 0x27, 0x70, 0x1a, 0x26, 0x68, 0xe6, 0x7f, 0xc8, 0x73, 0x48, 0x80, 0xc5, 0xaa, 0xb4, - 0xbb, 0xbf, 0x27, 0xe7, 0xe4, 0x43, 0xa5, 0x58, 0x76, 0x1e, 0x6c, 0x96, 0x24, 0x3e, 0x86, 0x16, - 0x01, 0x75, 0xc7, 0xb6, 0xa4, 0x6d, 0x39, 0xb7, 0x25, 0x6d, 0xf1, 0x71, 0x84, 0x60, 0xe6, 0x49, - 0xae, 0x58, 0x3a, 0x90, 0x25, 0xa5, 0x54, 0x7c, 0x2a, 0x95, 0x0e, 0xf9, 0x84, 0xbd, 0x0b, 0x4f, - 0x72, 0xd5, 0x5c, 0x89, 0x4f, 0xd2, 0x1a, 0x62, 0x09, 0x66, 0x7b, 0x44, 0xb3, 0x23, 0x6d, 0x22, - 0x9c, 0x52, 0x73, 0x5e, 0x06, 0xa5, 0xe4, 0x14, 0x81, 0x14, 0xf4, 0x3a, 0x8e, 0xee, 0x86, 0x88, - 0xcb, 0xae, 0x1e, 0x86, 0x55, 0xc5, 0xbe, 0xa0, 0x16, 0x15, 0x55, 0x0f, 0xcb, 0x85, 0xd6, 0xc3, - 0x56, 0x7c, 0xb1, 0xc5, 0x80, 0x4a, 0xd8, 0x5f, 0xc5, 0x60, 0x21, 0x14, 0x0f, 0x3d, 0xf4, 0xd6, - 0xc0, 0x6e, 0xf4, 0xe5, 0xe9, 0xad, 0x7e, 0x7d, 0xc3, 0xd1, 0xea, 0xd7, 0xa6, 0xaf, 0xfa, 0x75, - 0x7b, 0x20, 0xbd, 0xb7, 0xee, 0xa5, 0x45, 0x94, 0xbd, 0x2a, 0xd5, 0xdc, 0xb6, 0xa4, 0x1c, 0x94, - 0xe9, 0x5f, 0xb7, 0xec, 0x35, 0x0f, 0x7c, 0xb7, 0x0e, 0xa4, 0x54, 0xaa, 0xb9, 0x6a, 0x85, 0x8f, - 0xf5, 0x96, 0x9c, 0xe2, 0xbd, 0x05, 0xa2, 0x84, 0x5b, 0x20, 0x9a, 0x07, 0xc4, 0x76, 0xda, 0xfb, - 0xce, 0xfc, 0x9f, 0x38, 0x98, 0xf3, 0x81, 0xd9, 0xc6, 0x7b, 0x5a, 0xd1, 0x9c, 0xaf, 0x15, 0xfd, - 0x00, 0xe6, 0xed, 0x1c, 0x97, 0x5a, 0xb8, 0xa9, 0xb4, 0xb1, 0x41, 0x1a, 0x0a, 0xcc, 0x5c, 0x67, - 0x9b, 0xea, 0x39, 0x2b, 0xd8, 0xef, 0x63, 0xc3, 0x66, 0xfc, 0x0a, 0x6a, 0xbc, 0xe2, 0xdf, 0xc6, - 0x68, 0x24, 0x35, 0x72, 0x26, 0x36, 0xd0, 0xab, 0xf6, 0xa6, 0x6a, 0xf1, 0x11, 0x52, 0xb5, 0x08, - 0x9f, 0x9c, 0x18, 0x29, 0x7c, 0x1f, 0x39, 0x0a, 0x11, 0x73, 0x34, 0x6a, 0xbb, 0x44, 0x16, 0xb5, - 0xf1, 0x1b, 0x0e, 0x26, 0x8b, 0x75, 0xdc, 0xb2, 0x6c, 0x3b, 0x28, 0xc3, 0xb4, 0xef, 0xf9, 0x3f, - 0x5a, 0x8e, 0xf8, 0xaf, 0x00, 0xb2, 0xe3, 0xc2, 0x4a, 0xdf, 0xff, 0x19, 0x10, 0xc7, 0xd0, 0xb1, - 0xe7, 0x5f, 0x17, 0x7c, 0xad, 0x83, 0x37, 0x7a, 0x28, 0x43, 0x5c, 0x82, 0x70, 0x6b, 0x00, 0x96, - 0x3b, 0xcf, 0x7b, 0x90, 0x24, 0x0f, 0xbd, 0x91, 0x7b, 0x15, 0x79, 0xdf, 0x81, 0x0b, 0x0b, 0x01, - 0xa8, 0x43, 0xb7, 0xf1, 0x5d, 0x0a, 0xa0, 0x9b, 0x8c, 0xa2, 0xa7, 0x30, 0xe5, 0x7d, 0x6b, 0x8a, - 0x96, 0xfa, 0xbc, 0x74, 0x16, 0x96, 0xc3, 0x07, 0x5d, 0x99, 0x9e, 0xc2, 0x94, 0xf7, 0x65, 0x53, - 0x97, 0x59, 0xc8, 0xeb, 0xaa, 0x2e, 0xb3, 0xd0, 0xc7, 0x50, 0x63, 0xa8, 0x01, 0x57, 0x23, 0xde, - 0xb6, 0xa0, 0xdb, 0xc3, 0xbd, 0x00, 0x12, 0xde, 0x1c, 0xf2, 0x91, 0x8c, 0x38, 0x86, 0x0c, 0xb8, - 0x16, 0xf9, 0xa4, 0x03, 0xad, 0x0f, 0xfb, 0xe0, 0x44, 0xb8, 0x33, 0x04, 0xa6, 0x3b, 0x67, 0x07, - 0x84, 0xe8, 0x3e, 0x32, 0xba, 0x33, 0xf4, 0x03, 0x07, 0xe1, 0xee, 0xf0, 0x6d, 0x69, 0x71, 0x0c, - 0xed, 0x40, 0xda, 0xd3, 0x5a, 0x44, 0x42, 0x68, 0xbf, 0x91, 0x32, 0x5e, 0xea, 0xd3, 0x8b, 0xa4, - 0x9c, 0x3c, 0xfd, 0xa3, 0x2e, 0xa7, 0xde, 0x46, 0x58, 0x97, 0x53, 0x48, 0xc3, 0x29, 0xb8, 0xfd, - 0x81, 0xfb, 0x30, 0x6c, 0xfb, 0xc3, 0x2f, 0xd4, 0xb0, 0xed, 0x8f, 0xb8, 0x5c, 0xc5, 0x31, 0xf4, - 0x29, 0xcc, 0xf8, 0xeb, 0xd8, 0x68, 0xa5, 0x6f, 0x3d, 0x5e, 0x58, 0x8d, 0x1a, 0xf6, 0xb2, 0xf4, - 0x97, 0x4d, 0xbb, 0x2c, 0x43, 0xcb, 0xb7, 0x5d, 0x96, 0x11, 0xd5, 0xd6, 0x31, 0xdb, 0x3f, 0xf9, - 0x8a, 0x81, 0x5d, 0xff, 0x14, 0x56, 0xc3, 0xec, 0xfa, 0xa7, 0xd0, 0x0a, 0xa2, 0x38, 0x86, 0x34, - 0x58, 0x0c, 0xaf, 0x45, 0xa1, 0x5b, 0x43, 0x95, 0xda, 0x84, 0xdb, 0x83, 0xd0, 0xdc, 0xa9, 0x24, - 0x48, 0xb9, 0x01, 0x38, 0xca, 0x84, 0x34, 0x88, 0x29, 0xc3, 0x6b, 0x91, 0xad, 0x63, 0xd1, 0x8e, - 0xc8, 0x36, 0xfe, 0x37, 0x09, 0x09, 0x72, 0x99, 0x56, 0xe1, 0x4a, 0xa0, 0xa4, 0x80, 0x56, 0xfb, - 0x17, 0x5a, 0x84, 0xeb, 0x91, 0xe3, 0xae, 0x94, 0x2f, 0x60, 0xb6, 0xa7, 0x48, 0x80, 0xd6, 0xbc, - 0x74, 0x61, 0x85, 0x0a, 0xe1, 0x46, 0x1f, 0x8c, 0x20, 0x6f, 0xbf, 0xf7, 0x5a, 0x1b, 0x94, 0xc5, - 0xfa, 0x79, 0x47, 0x79, 0xac, 0x2f, 0x68, 0xec, 0x12, 0xf4, 0x55, 0xa2, 0x5f, 0xae, 0x50, 0x2f, - 0x75, 0xb3, 0x2f, 0x8e, 0x3b, 0xc3, 0xe7, 0x6e, 0xd0, 0xe4, 0x49, 0xa2, 0x90, 0x4f, 0xb8, 0xd0, - 0x64, 0x4f, 0x10, 0xfb, 0xa1, 0xb8, 0xec, 0x9f, 0x03, 0x1f, 0xbc, 0xc9, 0x91, 0xef, 0xbc, 0xc2, - 0xb4, 0x6f, 0x2d, 0x1a, 0x21, 0xb8, 0x33, 0x41, 0x37, 0x12, 0x94, 0x2a, 0xcc, 0x81, 0xdc, 0xec, - 0x8b, 0xe3, 0x75, 0x7c, 0x9e, 0xb8, 0xb1, 0xeb, 0xf8, 0x7a, 0x63, 0xcc, 0xae, 0xe3, 0x0b, 0x09, - 0x34, 0xc5, 0xb1, 0xcd, 0x0f, 0x00, 0x6a, 0xa6, 0xa6, 0xd0, 0xca, 0x07, 0x5a, 0xe9, 0x69, 0x42, - 0x3d, 0xd1, 0x70, 0xa3, 0xbe, 0xd7, 0xb6, 0x93, 0x21, 0x33, 0xf3, 0xcf, 0x93, 0xa4, 0xec, 0x92, - 0xaa, 0x99, 0x1a, 0x2d, 0x40, 0x6c, 0x7e, 0x04, 0x69, 0xb5, 0xd1, 0x3e, 0x55, 0x95, 0x63, 0x1b, - 0x6f, 0x10, 0xfd, 0xbf, 0x50, 0x7a, 0x20, 0x24, 0x64, 0x64, 0x53, 0x82, 0x69, 0xca, 0x80, 0x65, - 0x2c, 0xe8, 0x7a, 0x0f, 0x8b, 0x5d, 0x3a, 0x12, 0x60, 0x32, 0x45, 0xc8, 0xd8, 0xd8, 0x66, 0x1e, - 0xa6, 0x1c, 0x36, 0xd6, 0xa9, 0x5e, 0x47, 0xab, 0x21, 0x5c, 0xec, 0x81, 0x00, 0x93, 0x34, 0x63, - 0x62, 0x0f, 0xe5, 0x93, 0x2f, 0xe2, 0x35, 0x53, 0x3b, 0x1a, 0x27, 0x24, 0xef, 0xfc, 0x2e, 0x00, - 0x00, 0xff, 0xff, 0x98, 0x67, 0x3c, 0xbd, 0xbf, 0x3a, 0x00, 0x00, + // 3711 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3b, 0x4b, 0x6c, 0x1c, 0xc7, + 0x72, 0x9c, 0xfd, 0x90, 0xdc, 0x5a, 0x92, 0x1a, 0x36, 0x3f, 0x5a, 0x0d, 0x3f, 0xa2, 0x46, 0x96, + 0x4c, 0xc9, 0xd2, 0x2a, 0xa6, 0x2d, 0x23, 0xa2, 0xe8, 0xcf, 0x2e, 0x39, 0x22, 0xd7, 0x5a, 0x2e, + 0xe9, 0xd9, 0xa5, 0x64, 0x2a, 0x31, 0xc6, 0xc3, 0xdd, 0x26, 0x39, 0xf0, 0xee, 0xce, 0x7a, 0x66, + 0x96, 0x21, 0x83, 0x00, 0x01, 0x1c, 0xe4, 0x60, 0x24, 0xf7, 0xe4, 0x96, 0x20, 0xc9, 0x29, 0xb0, + 0xe1, 0x53, 0x90, 0xa3, 0x81, 0x1c, 0x93, 0x20, 0xc8, 0xed, 0x3d, 0xbc, 0x8b, 0x81, 0x77, 0x34, + 0xde, 0x7b, 0xf0, 0xf9, 0x9d, 0x1e, 0xa6, 0xbb, 0x67, 0x76, 0x66, 0x76, 0x66, 0x3f, 0xa2, 0x04, + 0x1f, 0xde, 0x89, 0x3b, 0xd5, 0x55, 0xd5, 0xd5, 0xd5, 0x55, 0xd5, 0xd5, 0x55, 0x4d, 0x78, 0x78, + 0xa2, 0x59, 0xa7, 0xed, 0xa3, 0x6c, 0x55, 0x6f, 0x3c, 0xa8, 0xea, 0x4d, 0x4b, 0xd5, 0x9a, 0xd8, + 0xb8, 0x6f, 0x5a, 0xba, 0xa1, 0x9e, 0xe0, 0xfb, 0x5a, 0xd3, 0xc2, 0xc6, 0xb1, 0x5a, 0xc5, 0x0f, + 0xcc, 0x16, 0xae, 0x3e, 0xa8, 0x9a, 0x5a, 0xb6, 0x65, 0xe8, 0x96, 0x8e, 0x46, 0xed, 0x9f, 0x67, + 0x6f, 0x0b, 0x2b, 0x27, 0xba, 0x7e, 0x52, 0xc7, 0x0f, 0x08, 0xf4, 0xa8, 0x7d, 0xfc, 0xa0, 0x86, + 0xcd, 0xaa, 0xa1, 0xb5, 0x2c, 0xdd, 0xa0, 0x98, 0xc2, 0xf5, 0x20, 0x86, 0xa5, 0x35, 0xb0, 0x69, + 0xa9, 0x8d, 0x16, 0x43, 0x58, 0x0e, 0x22, 0xfc, 0x85, 0xa1, 0xb6, 0x5a, 0xd8, 0x30, 0xe9, 0xb8, + 0x38, 0x0f, 0xb3, 0xdb, 0xd8, 0xda, 0xaf, 0xb7, 0x4f, 0xb4, 0x66, 0xa1, 0x79, 0xac, 0xcb, 0xf8, + 0xcb, 0x36, 0x36, 0x2d, 0xf1, 0x97, 0x1c, 0xcc, 0x05, 0x06, 0xcc, 0x96, 0xde, 0x34, 0x31, 0x42, + 0x90, 0x68, 0xaa, 0x0d, 0x9c, 0xe1, 0x56, 0xb8, 0xd5, 0x94, 0x4c, 0x7e, 0xa3, 0x5b, 0x30, 0x75, + 0x86, 0x9b, 0x35, 0xdd, 0x50, 0xce, 0xb0, 0x61, 0x6a, 0x7a, 0x33, 0x13, 0x23, 0xa3, 0x93, 0x14, + 0xfa, 0x8c, 0x02, 0xd1, 0x36, 0x8c, 0x37, 0xd4, 0xa6, 0x76, 0x8c, 0x4d, 0x2b, 0x13, 0x5f, 0x89, + 0xaf, 0xa6, 0xd7, 0xde, 0xca, 0xd2, 0xa5, 0x66, 0x43, 0xe7, 0xca, 0xee, 0x32, 0x6c, 0xa9, 0x69, + 0x19, 0x17, 0xb2, 0x4b, 0x2c, 0x3c, 0x86, 0x49, 0xdf, 0x10, 0xe2, 0x21, 0xfe, 0x05, 0xbe, 0x60, + 0x32, 0xd9, 0x3f, 0xd1, 0x2c, 0x24, 0xcf, 0xd4, 0x7a, 0x1b, 0x33, 0x49, 0xe8, 0xc7, 0x7a, 0xec, + 0x4f, 0x39, 0x71, 0x19, 0x16, 0xdd, 0xd9, 0x36, 0xd5, 0x96, 0x7a, 0xa4, 0xd5, 0x35, 0x4b, 0xc3, + 0xa6, 0xb3, 0xf4, 0xcf, 0x60, 0x29, 0x62, 0x9c, 0x69, 0x60, 0x03, 0x26, 0xaa, 0x1e, 0x78, 0x86, + 0x23, 0x4b, 0xc9, 0x38, 0x4b, 0x09, 0x50, 0x5e, 0xc8, 0x3e, 0x6c, 0xf1, 0xff, 0xe2, 0xc0, 0x07, + 0x51, 0xd0, 0x06, 0x8c, 0x99, 0xd8, 0x38, 0xd3, 0xaa, 0x54, 0xaf, 0xe9, 0xb5, 0x95, 0x28, 0x6e, + 0xd9, 0x32, 0xc5, 0xdb, 0x19, 0x91, 0x1d, 0x12, 0x74, 0x00, 0xfc, 0x99, 0x5e, 0x6f, 0x37, 0xb0, + 0x82, 0xcf, 0x5b, 0x6a, 0xd3, 0xdd, 0x80, 0xf4, 0xda, 0x6a, 0x24, 0x9b, 0x67, 0x84, 0x40, 0x72, + 0xf0, 0x77, 0x46, 0xe4, 0x2b, 0x67, 0x7e, 0x90, 0xf0, 0x0f, 0x1c, 0x8c, 0xb1, 0xd9, 0xd0, 0x23, + 0x48, 0x58, 0x17, 0x2d, 0x2a, 0xdd, 0xd4, 0xda, 0xad, 0x7e, 0xd2, 0x65, 0x2b, 0x17, 0x2d, 0x2c, + 0x13, 0x12, 0xf1, 0x13, 0x48, 0xd8, 0x5f, 0x28, 0x0d, 0x63, 0x07, 0xa5, 0xa7, 0xa5, 0xbd, 0xe7, + 0x25, 0x7e, 0x04, 0xcd, 0x03, 0xda, 0xdc, 0x2b, 0x55, 0xe4, 0xbd, 0x62, 0x51, 0x92, 0x95, 0xb2, + 0x24, 0x3f, 0x2b, 0x6c, 0x4a, 0x3c, 0x87, 0xde, 0x80, 0x95, 0x67, 0x7b, 0xc5, 0x83, 0x5d, 0x49, + 0xc9, 0x6d, 0x6e, 0x4a, 0xe5, 0x72, 0x21, 0x5f, 0x28, 0x16, 0x2a, 0x87, 0xca, 0xe6, 0x5e, 0xa9, + 0x5c, 0x91, 0x73, 0x85, 0x52, 0xa5, 0xcc, 0xc7, 0x84, 0xaf, 0x38, 0xb8, 0x12, 0x58, 0x00, 0xca, + 0xf9, 0x24, 0xbc, 0x3f, 0xe8, 0xc2, 0xbd, 0x92, 0xde, 0x0b, 0x93, 0x14, 0x60, 0x74, 0xaf, 0x54, + 0x2c, 0x94, 0x6c, 0xe9, 0xd2, 0x30, 0xb6, 0xf7, 0xe4, 0x09, 0xf9, 0x88, 0xe5, 0x47, 0xe9, 0x84, + 0xe2, 0x14, 0x4c, 0xec, 0x1b, 0xfa, 0x11, 0x76, 0xec, 0x27, 0x07, 0x93, 0xec, 0x9b, 0xd9, 0xcb, + 0x9f, 0x40, 0xd2, 0xc0, 0x6a, 0xed, 0x82, 0x6d, 0xad, 0x90, 0xa5, 0x3e, 0x99, 0x75, 0x7c, 0x32, + 0x9b, 0xd7, 0xf5, 0xfa, 0x33, 0xdb, 0x3e, 0x65, 0x8a, 0x28, 0xfe, 0x94, 0x80, 0x99, 0x4d, 0x03, + 0xab, 0x16, 0xa6, 0xd2, 0x32, 0xd6, 0xa1, 0xbe, 0xb7, 0x01, 0x53, 0xb6, 0x7d, 0x55, 0x35, 0xeb, + 0x42, 0x31, 0xd4, 0xe6, 0x09, 0x66, 0x5b, 0x3f, 0xe7, 0x68, 0x60, 0x93, 0x8d, 0xca, 0xf6, 0xa0, + 0x3c, 0x59, 0xf5, 0x7e, 0xa2, 0x02, 0xcc, 0x30, 0xd3, 0xf1, 0x99, 0x74, 0xdc, 0x6f, 0xd2, 0x54, + 0x0a, 0x8f, 0x49, 0xa3, 0x33, 0x3f, 0x44, 0xc3, 0x26, 0x7a, 0x0a, 0xd0, 0x52, 0x0d, 0xb5, 0x81, + 0x2d, 0x6c, 0x98, 0x99, 0x84, 0xdf, 0xbf, 0x43, 0x56, 0x93, 0xdd, 0x77, 0xb1, 0xa9, 0x7f, 0x7b, + 0xc8, 0xd1, 0xb6, 0xed, 0x10, 0x55, 0x03, 0x5b, 0x66, 0x26, 0x49, 0x38, 0xad, 0xf6, 0xe2, 0x54, + 0xa6, 0xa8, 0x84, 0x4d, 0x3e, 0xfe, 0x8f, 0x79, 0x4e, 0x76, 0xa8, 0xd1, 0x1e, 0xcc, 0x39, 0x0b, + 0xd4, 0x9b, 0x16, 0x6e, 0x5a, 0x8a, 0xa9, 0xb7, 0x8d, 0x2a, 0xce, 0x8c, 0x12, 0x2d, 0x2d, 0x04, + 0x96, 0x48, 0x71, 0xca, 0x04, 0x45, 0x66, 0xaa, 0xf1, 0x01, 0xd1, 0x0b, 0x10, 0xd4, 0x6a, 0x15, + 0x9b, 0xa6, 0x46, 0x75, 0xa1, 0x18, 0xf8, 0xcb, 0xb6, 0x66, 0xe0, 0x06, 0x6e, 0x5a, 0x66, 0x66, + 0xcc, 0xcf, 0xb5, 0xa2, 0xb7, 0xf4, 0xba, 0x7e, 0x72, 0x21, 0x77, 0x70, 0xe4, 0x6b, 0x3e, 0x72, + 0xcf, 0x88, 0x29, 0xbc, 0x0f, 0x57, 0x02, 0x4a, 0x19, 0x26, 0xb2, 0x09, 0xeb, 0x30, 0xe1, 0xd5, + 0xc4, 0x50, 0x51, 0xf1, 0xef, 0x62, 0x30, 0x13, 0xa2, 0x03, 0xb4, 0x03, 0xe3, 0x66, 0x53, 0x6d, + 0x99, 0xa7, 0xba, 0xc5, 0xec, 0xf7, 0x6e, 0x0f, 0x95, 0x65, 0xcb, 0x0c, 0x97, 0x7e, 0xee, 0x8c, + 0xc8, 0x2e, 0x35, 0xca, 0xc3, 0x28, 0xd5, 0x67, 0x30, 0x36, 0x85, 0xf1, 0xa1, 0x30, 0x97, 0x0b, + 0xa3, 0x14, 0xde, 0x86, 0x29, 0xff, 0x0c, 0xe8, 0x3a, 0xa4, 0x9d, 0x19, 0x14, 0xad, 0xc6, 0xd6, + 0x0a, 0x0e, 0xa8, 0x50, 0x13, 0xde, 0x82, 0x09, 0x2f, 0x33, 0xb4, 0x00, 0x29, 0x66, 0x10, 0x2e, + 0xfa, 0x38, 0x05, 0x14, 0x6a, 0xae, 0x4f, 0x7f, 0x00, 0xb3, 0x7e, 0x3b, 0x63, 0xae, 0x7c, 0xdb, + 0x5d, 0x03, 0xd5, 0xc5, 0x94, 0x7f, 0x0d, 0x8e, 0x9c, 0xe2, 0xbf, 0x27, 0x80, 0x0f, 0x3a, 0x0d, + 0xda, 0x80, 0xe4, 0x51, 0x5d, 0xaf, 0x7e, 0xc1, 0x68, 0xdf, 0x88, 0xf2, 0xae, 0x6c, 0xde, 0xc6, + 0xa2, 0xd0, 0x9d, 0x11, 0x99, 0x12, 0xd9, 0xd4, 0x0d, 0xbd, 0xdd, 0xb4, 0x98, 0xf6, 0xa2, 0xa9, + 0x77, 0x6d, 0xac, 0x0e, 0x35, 0x21, 0x42, 0x5b, 0x90, 0xa6, 0x66, 0xa7, 0x34, 0xf4, 0x1a, 0xce, + 0xc4, 0x09, 0x8f, 0x9b, 0x91, 0x3c, 0x72, 0x04, 0x77, 0x57, 0xaf, 0x61, 0x19, 0x54, 0xf7, 0xb7, + 0x30, 0x09, 0x69, 0x8f, 0x6c, 0xc2, 0x36, 0xa4, 0x3d, 0x93, 0xa1, 0xab, 0x30, 0x76, 0x6c, 0x2a, + 0x6e, 0x10, 0x4e, 0xc9, 0xa3, 0xc7, 0x26, 0x89, 0xa7, 0xd7, 0x21, 0x4d, 0xa4, 0x50, 0x8e, 0xeb, + 0xea, 0x89, 0x99, 0x89, 0xad, 0xc4, 0xed, 0x3d, 0x22, 0xa0, 0x27, 0x36, 0x44, 0xf8, 0x0d, 0x07, + 0xd0, 0x99, 0x12, 0x6d, 0x40, 0x82, 0x48, 0x49, 0x43, 0xf9, 0xea, 0x00, 0x52, 0x66, 0x89, 0xa8, + 0x84, 0x4a, 0xfc, 0x27, 0x0e, 0x12, 0x84, 0x4d, 0xf0, 0xc0, 0x29, 0x17, 0x4a, 0xdb, 0x45, 0x49, + 0x29, 0xed, 0x6d, 0x49, 0xca, 0x73, 0xb9, 0x50, 0x91, 0x64, 0x9e, 0x43, 0x0b, 0x70, 0xd5, 0x0b, + 0x97, 0xa5, 0xdc, 0x96, 0x24, 0x2b, 0x7b, 0xa5, 0xe2, 0x21, 0x1f, 0x43, 0x02, 0xcc, 0xef, 0x1e, + 0x14, 0x2b, 0x85, 0xee, 0xb1, 0x38, 0x5a, 0x84, 0x8c, 0x67, 0x8c, 0xf1, 0x60, 0x6c, 0x13, 0x36, + 0x5b, 0xcf, 0x28, 0xfd, 0xc9, 0x06, 0x93, 0xf9, 0x49, 0x77, 0x33, 0x88, 0xb1, 0x3d, 0x87, 0x49, + 0x5f, 0x8c, 0xb6, 0xd3, 0x29, 0x16, 0x54, 0x6a, 0xca, 0xd1, 0x85, 0x45, 0x52, 0x0c, 0x6e, 0x35, + 0x2e, 0x4f, 0x3a, 0xd0, 0xbc, 0x0d, 0xb4, 0xd5, 0x5a, 0xd7, 0x1a, 0x9a, 0xc5, 0x70, 0x62, 0x04, + 0x07, 0x08, 0x88, 0x20, 0x88, 0x3f, 0xc4, 0x60, 0x94, 0xed, 0xcd, 0x2d, 0xcf, 0x29, 0xe1, 0x63, + 0xe9, 0x40, 0x29, 0x4b, 0x9f, 0x73, 0xc4, 0xfc, 0xce, 0x81, 0x76, 0x60, 0xca, 0x1b, 0x4a, 0xcf, + 0x9d, 0x24, 0xee, 0x86, 0x7f, 0x83, 0xbc, 0xfe, 0x7c, 0xce, 0x52, 0xb7, 0xc9, 0x33, 0x2f, 0x0c, + 0xe5, 0x61, 0x2a, 0x10, 0x8d, 0x13, 0xfd, 0xa3, 0xf1, 0x64, 0xd5, 0x17, 0x98, 0x72, 0x30, 0xe3, + 0x04, 0xd2, 0x3a, 0x56, 0x2c, 0x16, 0x68, 0xd9, 0x69, 0xc1, 0x77, 0x05, 0x60, 0xd4, 0x41, 0x76, + 0x60, 0xc2, 0x47, 0x80, 0xba, 0x65, 0x1d, 0x2a, 0x6a, 0xb6, 0x61, 0x26, 0x24, 0xc4, 0xa3, 0x2c, + 0xa4, 0xc8, 0x56, 0x99, 0x9a, 0x85, 0x59, 0x7a, 0xd8, 0x2d, 0x51, 0x07, 0xc5, 0xc6, 0x6f, 0x19, + 0xf8, 0x18, 0x1b, 0x06, 0xae, 0x11, 0xf7, 0x08, 0xc5, 0x77, 0x51, 0xc4, 0xbf, 0xe1, 0x60, 0xdc, + 0x81, 0xa3, 0x75, 0x18, 0x37, 0xf1, 0x09, 0x3d, 0x7e, 0xe8, 0x5c, 0xcb, 0x41, 0xda, 0x6c, 0x99, + 0x21, 0xb0, 0x44, 0xda, 0xc1, 0xb7, 0x13, 0x69, 0xdf, 0xd0, 0x50, 0x8b, 0xff, 0x4f, 0x0e, 0x66, + 0xb6, 0x70, 0x1d, 0x07, 0xb3, 0x94, 0x5e, 0x11, 0xd6, 0x7b, 0xb0, 0xc7, 0xfc, 0x07, 0x7b, 0x08, + 0xab, 0x1e, 0x07, 0xfb, 0xa5, 0x0e, 0xbb, 0x79, 0x98, 0xf5, 0xcf, 0x46, 0xc3, 0xbb, 0xf8, 0xdb, + 0x38, 0x2c, 0xdb, 0xb6, 0x60, 0xe8, 0xf5, 0x3a, 0x36, 0xf6, 0xdb, 0x47, 0x75, 0xcd, 0x3c, 0x1d, + 0x62, 0x71, 0x57, 0x61, 0xac, 0xa9, 0xd7, 0x3c, 0xce, 0x33, 0x6a, 0x7f, 0x16, 0x6a, 0x48, 0x82, + 0xe9, 0x60, 0x9a, 0x75, 0xc1, 0x82, 0x70, 0x74, 0x92, 0xc5, 0x9f, 0x05, 0x4f, 0x10, 0x01, 0xc6, + 0xed, 0x04, 0x51, 0x6f, 0xd6, 0x2f, 0x88, 0xc7, 0x8c, 0xcb, 0xee, 0x37, 0x92, 0x83, 0x19, 0xd3, + 0x3b, 0x6e, 0xc6, 0xd4, 0x73, 0x45, 0xbd, 0x92, 0xa7, 0xcf, 0xbb, 0x3c, 0x7e, 0x94, 0xb0, 0x7e, + 0x34, 0x20, 0xeb, 0xbe, 0x91, 0xe0, 0x32, 0xbb, 0xf8, 0x0a, 0xdc, 0xf7, 0xbf, 0x39, 0xb8, 0x1e, + 0xb9, 0x04, 0x76, 0xe4, 0xd7, 0xe0, 0x4a, 0x8b, 0x0e, 0xb8, 0x4a, 0xa0, 0x5e, 0xf6, 0xb8, 0xaf, + 0x12, 0xd8, 0x2d, 0x96, 0x41, 0x7d, 0x6a, 0x98, 0x6a, 0xf9, 0x80, 0x42, 0x0e, 0x66, 0x42, 0xd0, + 0x86, 0x5a, 0xcc, 0x8f, 0x1c, 0xac, 0x74, 0x44, 0x39, 0x68, 0xb6, 0x5e, 0x9d, 0xf9, 0x56, 0x3a, + 0xb6, 0x45, 0x43, 0xfe, 0xc3, 0xee, 0xb5, 0x87, 0x4f, 0xf8, 0xba, 0x3c, 0xf8, 0x26, 0xdc, 0xe8, + 0x31, 0x35, 0x73, 0xe7, 0x1f, 0x12, 0x70, 0xe3, 0x99, 0x5a, 0xd7, 0x6a, 0x6e, 0x22, 0x17, 0x72, + 0xdf, 0xef, 0xad, 0x92, 0x6a, 0x97, 0x07, 0xd0, 0xa8, 0xb5, 0xe1, 0x7a, 0x6d, 0x3f, 0xfe, 0x03, + 0x1c, 0x87, 0xaf, 0xf0, 0x12, 0x76, 0x18, 0x72, 0x09, 0x7b, 0x34, 0xb8, 0xac, 0xbd, 0xae, 0x64, + 0x07, 0xc1, 0x00, 0xf3, 0xde, 0xe0, 0x7c, 0x7b, 0x58, 0xc1, 0xa5, 0xbd, 0xf8, 0xe7, 0xbc, 0x35, + 0xfd, 0x57, 0x02, 0xc4, 0x5e, 0xab, 0x67, 0x31, 0x44, 0x86, 0x54, 0x55, 0x6f, 0x1e, 0x6b, 0x46, + 0x03, 0xd7, 0x58, 0xf6, 0xff, 0xee, 0x20, 0xca, 0x63, 0x01, 0x64, 0xd3, 0xa1, 0x95, 0x3b, 0x6c, + 0x50, 0x06, 0xc6, 0x1a, 0xd8, 0x34, 0xd5, 0x13, 0x47, 0x2c, 0xe7, 0x53, 0xf8, 0x36, 0x0e, 0x29, + 0x97, 0x04, 0x35, 0xbb, 0x2c, 0x98, 0x86, 0xaf, 0xed, 0x97, 0x11, 0xe0, 0xe5, 0x8d, 0x39, 0xf6, + 0x12, 0xc6, 0x5c, 0xf3, 0x19, 0x33, 0x75, 0x87, 0xad, 0x97, 0x12, 0xbb, 0x87, 0x5d, 0xff, 0xec, + 0x06, 0x28, 0xfe, 0x39, 0xa0, 0xa2, 0x66, 0xb2, 0x5b, 0x94, 0x1b, 0x96, 0xec, 0x4b, 0x93, 0x7a, + 0xae, 0xe0, 0xa6, 0x65, 0x68, 0x2c, 0x5d, 0x4f, 0xca, 0xd0, 0x50, 0xcf, 0x25, 0x0a, 0xb1, 0x53, + 0x7a, 0xd3, 0x52, 0x0d, 0x4b, 0x6b, 0x9e, 0x28, 0x96, 0xfe, 0x05, 0x76, 0x8b, 0xae, 0x0e, 0xb4, + 0x62, 0x03, 0xc5, 0x5f, 0xc7, 0x60, 0xc6, 0xc7, 0x9e, 0xd9, 0xe4, 0x63, 0x18, 0xeb, 0xf0, 0xf6, + 0xa5, 0xf1, 0x21, 0xd8, 0x59, 0xaa, 0x36, 0x87, 0x02, 0x2d, 0x01, 0x34, 0xf1, 0xb9, 0xe5, 0x9b, + 0x37, 0x65, 0x43, 0xc8, 0x9c, 0xc2, 0x5f, 0xb9, 0x77, 0x6e, 0x4b, 0xb5, 0xda, 0x26, 0xba, 0x07, + 0x88, 0x45, 0x68, 0x5c, 0x53, 0xd8, 0x11, 0x43, 0xa7, 0x4d, 0xc9, 0xbc, 0x3b, 0x52, 0x22, 0x87, + 0x8d, 0x89, 0x3e, 0x00, 0x66, 0x52, 0xca, 0x29, 0x56, 0xeb, 0xd6, 0x29, 0xbb, 0xf1, 0xce, 0xfa, + 0x6d, 0x67, 0x87, 0x8c, 0xe5, 0xe3, 0xff, 0x9c, 0xe7, 0xe4, 0x89, 0x33, 0x0f, 0x48, 0xf8, 0x12, + 0x92, 0x74, 0x13, 0x06, 0xbc, 0xad, 0xa3, 0x8f, 0x60, 0xd4, 0x24, 0x82, 0x06, 0x2b, 0x13, 0x61, + 0x9a, 0xf0, 0x2e, 0x4c, 0x66, 0x74, 0xe2, 0xbb, 0xc0, 0x6f, 0x63, 0x6b, 0xf0, 0xa3, 0x76, 0xdd, + 0x16, 0x5b, 0xfc, 0x1f, 0x0e, 0xa6, 0x3d, 0x64, 0xc3, 0xd5, 0x18, 0xd0, 0x07, 0x01, 0xa9, 0x6f, + 0x7b, 0x6a, 0xe9, 0x81, 0x0c, 0x24, 0x4c, 0x66, 0xa1, 0x10, 0xd8, 0xa4, 0x47, 0x41, 0xb5, 0x73, + 0xd1, 0x6a, 0xf7, 0x6b, 0x9c, 0xae, 0xe6, 0xdb, 0x18, 0xa0, 0x6d, 0x6c, 0xb9, 0x57, 0x59, 0xa6, + 0x86, 0x88, 0x78, 0xc0, 0xbd, 0x44, 0x3c, 0xf8, 0xd8, 0x17, 0x0f, 0x68, 0x44, 0xb9, 0xeb, 0x59, + 0x75, 0x60, 0xea, 0x9e, 0xa7, 0x59, 0xc4, 0xf5, 0x91, 0xe6, 0xe4, 0x83, 0x5d, 0x1f, 0x2f, 0xe9, + 0xf6, 0x5b, 0x30, 0xe3, 0x93, 0x99, 0x6d, 0xff, 0x7d, 0x40, 0xea, 0x99, 0xaa, 0xd5, 0x55, 0x5b, + 0x2e, 0xe7, 0x76, 0xce, 0x6e, 0xeb, 0xd3, 0xee, 0x88, 0x43, 0x26, 0x8a, 0xde, 0xa4, 0x8f, 0xf1, + 0x0b, 0x76, 0x34, 0xea, 0xde, 0x64, 0xa9, 0x0b, 0x87, 0xcd, 0xbb, 0x1d, 0xda, 0xd5, 0xb8, 0xd9, + 0x9d, 0xe8, 0xb1, 0x12, 0x7f, 0x64, 0x83, 0xe3, 0x77, 0x71, 0x58, 0xe8, 0x81, 0x8d, 0x1e, 0x43, + 0xdc, 0x68, 0x55, 0x99, 0x75, 0xbd, 0x39, 0x00, 0xff, 0xac, 0xbc, 0xbf, 0xb9, 0x33, 0x22, 0xdb, + 0x54, 0xc2, 0xd7, 0x71, 0x88, 0xcb, 0xfb, 0x9b, 0xe8, 0x23, 0x5f, 0xb5, 0xff, 0xde, 0x80, 0x5c, + 0xbc, 0xc5, 0xfe, 0xef, 0x63, 0x61, 0xd5, 0xfe, 0x0c, 0xcc, 0x6e, 0xca, 0x52, 0xae, 0x22, 0x29, + 0x5b, 0x52, 0x51, 0xaa, 0x48, 0x0a, 0xed, 0x46, 0xf0, 0x1c, 0x5a, 0x84, 0xcc, 0xfe, 0x41, 0xbe, + 0x58, 0x28, 0xef, 0x28, 0x07, 0x25, 0xe7, 0x17, 0x1b, 0x8d, 0x21, 0x1e, 0x26, 0x8a, 0x85, 0x72, + 0x85, 0x01, 0xca, 0x7c, 0xdc, 0x86, 0x6c, 0x4b, 0x15, 0x65, 0x33, 0xb7, 0x9f, 0xdb, 0x2c, 0x54, + 0x0e, 0xf9, 0x04, 0x12, 0x60, 0xde, 0xcf, 0xbb, 0x5c, 0xca, 0xed, 0x97, 0x77, 0xf6, 0x2a, 0x7c, + 0x12, 0x21, 0x98, 0x22, 0xf4, 0x0e, 0xa8, 0xcc, 0x8f, 0xda, 0x1c, 0x36, 0x8b, 0x7b, 0x25, 0x57, + 0x86, 0x31, 0x34, 0x0b, 0xbc, 0x33, 0xb3, 0x2c, 0xe5, 0xb6, 0x48, 0x25, 0x6a, 0x1c, 0x4d, 0xc3, + 0xa4, 0xf4, 0xe9, 0x7e, 0xae, 0xb4, 0xe5, 0x20, 0xa6, 0xd0, 0x0a, 0x2c, 0x7a, 0xc5, 0x51, 0x18, + 0x95, 0xb4, 0x45, 0xea, 0x51, 0x65, 0x1e, 0xd0, 0x32, 0x08, 0x3e, 0x0c, 0xd6, 0x75, 0xd9, 0x91, + 0x72, 0xc5, 0xca, 0x0e, 0x9f, 0x46, 0x53, 0x00, 0xb6, 0xf8, 0x8c, 0xe3, 0x84, 0x3d, 0x89, 0x1f, + 0x65, 0xd2, 0x2d, 0x96, 0xfe, 0x18, 0x83, 0x39, 0x5a, 0x2d, 0x75, 0x6a, 0xb3, 0x8e, 0xef, 0xaf, + 0x02, 0x4f, 0xeb, 0x3b, 0x4a, 0x30, 0x12, 0x4e, 0x51, 0xf8, 0x33, 0x27, 0xcf, 0x76, 0x3a, 0x1b, + 0x31, 0x4f, 0x67, 0xa3, 0x10, 0xbc, 0x75, 0xdc, 0xf5, 0xf7, 0x00, 0x02, 0xb3, 0xf5, 0xba, 0xc8, + 0xee, 0x86, 0xa4, 0xc5, 0xf7, 0x7b, 0x73, 0xeb, 0x95, 0x32, 0x5c, 0xe6, 0xd6, 0x7a, 0xc9, 0xa8, + 0xf1, 0x04, 0xe6, 0x83, 0xf2, 0x32, 0x07, 0xbe, 0xd7, 0x55, 0xa9, 0x77, 0xc3, 0x98, 0x8b, 0xeb, + 0x62, 0x88, 0xbf, 0xe0, 0x60, 0xdc, 0x01, 0xdb, 0xc7, 0xb9, 0xa9, 0xfd, 0x25, 0xf6, 0x55, 0x06, + 0x53, 0x36, 0xc4, 0x2d, 0x34, 0x7a, 0x6b, 0xec, 0xb1, 0x60, 0x8d, 0x3d, 0x74, 0x9f, 0xe3, 0xa1, + 0xfb, 0xfc, 0x21, 0x4c, 0x56, 0x6d, 0xf1, 0x35, 0xbd, 0xa9, 0x58, 0x5a, 0xc3, 0x29, 0xfc, 0x75, + 0xf7, 0xc4, 0x2a, 0x4e, 0x23, 0x5b, 0x9e, 0x70, 0x08, 0x6c, 0x10, 0x5a, 0x81, 0x09, 0xd2, 0x23, + 0x53, 0x2c, 0x5d, 0x69, 0x9b, 0x38, 0x93, 0x24, 0x65, 0x10, 0x20, 0xb0, 0x8a, 0x7e, 0x60, 0x62, + 0xf1, 0x7b, 0x0e, 0xe6, 0x68, 0x75, 0x27, 0x68, 0x8e, 0xfd, 0x7a, 0x05, 0x5e, 0x8b, 0x0b, 0x9c, + 0x2e, 0xa1, 0x0c, 0x5f, 0xd7, 0xe5, 0x36, 0x03, 0xf3, 0xc1, 0xf9, 0xd8, 0x8d, 0xf6, 0xbb, 0x18, + 0xcc, 0xda, 0x49, 0x89, 0x33, 0xf0, 0xaa, 0xb3, 0xc5, 0x21, 0x76, 0x32, 0xa0, 0xcc, 0x44, 0x97, + 0x32, 0x77, 0x82, 0xf7, 0xc5, 0x3b, 0xde, 0xb4, 0x2a, 0xb8, 0x82, 0xd7, 0xa5, 0xcb, 0x6f, 0x38, + 0x98, 0x0b, 0xcc, 0xc7, 0xfc, 0xe5, 0xfd, 0x60, 0x02, 0x7c, 0x33, 0x42, 0xbe, 0x97, 0x4a, 0x81, + 0x1f, 0x3a, 0x49, 0xe8, 0x70, 0x6e, 0xf9, 0xff, 0x31, 0x58, 0xea, 0x1c, 0x62, 0xa4, 0x4b, 0x5d, + 0x1b, 0xa2, 0x82, 0x73, 0xb9, 0x66, 0xf0, 0x27, 0xc1, 0x80, 0xbb, 0xd6, 0x7d, 0xae, 0x86, 0x88, + 0xd4, 0x2b, 0xf0, 0x86, 0x16, 0x3e, 0x13, 0xc3, 0x16, 0x3e, 0x2f, 0x65, 0x01, 0x7f, 0xed, 0xad, + 0xe9, 0xfa, 0xc5, 0x67, 0x96, 0x30, 0x60, 0x73, 0xe4, 0x3d, 0xb8, 0x4a, 0xee, 0x2e, 0xee, 0x23, + 0x0b, 0xa7, 0xf5, 0x4b, 0x43, 0xe2, 0xb8, 0x3c, 0x67, 0x0f, 0xbb, 0x2f, 0x0b, 0x58, 0x43, 0xa0, + 0x26, 0xfe, 0x94, 0x80, 0x79, 0xfb, 0x6e, 0x53, 0xb6, 0xd4, 0x93, 0x61, 0x4a, 0xe5, 0x7f, 0xd6, + 0x5d, 0x79, 0x8c, 0xf9, 0xb7, 0x25, 0x9c, 0xeb, 0x20, 0x05, 0x47, 0x94, 0x85, 0x19, 0xd3, 0x52, + 0x4f, 0x48, 0x38, 0x50, 0x8d, 0x13, 0x6c, 0x29, 0x2d, 0xd5, 0x3a, 0x65, 0xbe, 0x3e, 0xcd, 0x86, + 0x2a, 0x64, 0x64, 0x5f, 0xb5, 0x4e, 0x5f, 0xd1, 0x46, 0xa2, 0x8f, 0x83, 0x41, 0xe1, 0xad, 0x3e, + 0x6b, 0xe9, 0x61, 0x5b, 0x9f, 0x46, 0x54, 0xa7, 0xdf, 0xee, 0xc3, 0xb2, 0x7f, 0x55, 0xfa, 0xf2, + 0xd5, 0xd8, 0x9f, 0xb9, 0xb0, 0x7d, 0x0d, 0xae, 0x76, 0x2d, 0x9e, 0x1d, 0x21, 0x27, 0x90, 0xb1, + 0x87, 0x0e, 0x9a, 0xe6, 0x90, 0xe6, 0x18, 0x61, 0x31, 0xb1, 0x08, 0x8b, 0x11, 0x17, 0xe0, 0x5a, + 0xc8, 0x44, 0x4c, 0x8a, 0xff, 0x48, 0x52, 0x31, 0x86, 0xef, 0xb1, 0x7c, 0x16, 0xe5, 0x15, 0xef, + 0x7a, 0xb7, 0x3d, 0xb4, 0x1d, 0xf1, 0x3a, 0xfc, 0xe2, 0x3a, 0xa4, 0xbd, 0x78, 0xec, 0x18, 0xb4, + 0xfa, 0x38, 0x4e, 0xf2, 0x52, 0xad, 0x9f, 0xd1, 0x40, 0xeb, 0xa7, 0xd8, 0x71, 0xaa, 0x31, 0x7f, + 0x6a, 0x1b, 0xa9, 0x8a, 0x1e, 0x6e, 0xf5, 0xa2, 0xcb, 0xad, 0xc6, 0xfd, 0xfd, 0xa4, 0x48, 0xa6, + 0x7f, 0x04, 0x8e, 0xc5, 0x8c, 0x3a, 0xb4, 0xd1, 0x23, 0xbe, 0x00, 0x81, 0x5a, 0xfc, 0xf0, 0xad, + 0x97, 0x80, 0x19, 0xc5, 0x82, 0x66, 0x24, 0x2e, 0xc1, 0x42, 0x28, 0x6f, 0x36, 0xf5, 0xd7, 0x1c, + 0x15, 0xcc, 0xad, 0xfd, 0x94, 0x2d, 0xd5, 0x32, 0x07, 0x9d, 0x9a, 0x0d, 0x7a, 0xa7, 0xa6, 0x20, + 0x62, 0xc1, 0x43, 0xba, 0x84, 0xf8, 0x15, 0x47, 0xf5, 0x10, 0x94, 0x85, 0x9d, 0xb6, 0x77, 0x20, + 0xd9, 0x26, 0x65, 0x6b, 0x9a, 0x75, 0xcd, 0xf8, 0x9d, 0xe0, 0xc0, 0x1e, 0x92, 0x29, 0x46, 0x77, + 0x49, 0x2a, 0x36, 0x68, 0x49, 0x4a, 0xfc, 0x8e, 0x83, 0xb4, 0x87, 0x23, 0x5a, 0x84, 0x94, 0x5b, + 0x3c, 0x71, 0x6e, 0x38, 0x2e, 0xc0, 0xde, 0x70, 0x4b, 0xb7, 0xd4, 0x3a, 0x7b, 0x44, 0x41, 0x3f, + 0xec, 0x4b, 0x69, 0xdb, 0xc4, 0x34, 0x01, 0x8e, 0xcb, 0xe4, 0x37, 0xba, 0x07, 0x89, 0x76, 0x53, + 0xb3, 0x88, 0xa3, 0x4f, 0x05, 0x3d, 0x98, 0x4c, 0x95, 0x3d, 0x68, 0x6a, 0x96, 0x4c, 0xb0, 0xc4, + 0xbb, 0x90, 0xb0, 0xbf, 0xfc, 0x35, 0x86, 0x14, 0x24, 0xf3, 0x87, 0x15, 0xa9, 0xcc, 0x73, 0x08, + 0x60, 0xb4, 0x40, 0x6f, 0xe4, 0x31, 0xf1, 0x7f, 0x63, 0x4e, 0x41, 0x8e, 0x2e, 0x01, 0x6d, 0x90, + 0xae, 0x41, 0x4d, 0xb3, 0xef, 0x3e, 0xac, 0xd0, 0xb1, 0x1c, 0xb6, 0x72, 0x3b, 0x3b, 0xa3, 0x58, + 0x72, 0x87, 0x00, 0x6d, 0x40, 0x12, 0x1b, 0x86, 0x6e, 0xb0, 0xe8, 0x78, 0x3b, 0x94, 0xd2, 0xfb, + 0x21, 0xd9, 0xd8, 0x32, 0x25, 0x12, 0x72, 0x30, 0xdd, 0x35, 0x66, 0xeb, 0xa3, 0xea, 0xbc, 0xcb, + 0x49, 0xc9, 0xe4, 0x77, 0x74, 0x1b, 0x42, 0x3c, 0x27, 0x5d, 0x08, 0x26, 0x8d, 0x4f, 0x01, 0x69, + 0x18, 0xa3, 0x45, 0x84, 0x43, 0x9e, 0x43, 0x02, 0xcc, 0x57, 0xa4, 0xdd, 0xfd, 0x3d, 0x39, 0x27, + 0x1f, 0x2a, 0x85, 0x92, 0xf3, 0xec, 0xb3, 0x28, 0xf1, 0x80, 0xe6, 0x01, 0x75, 0xc6, 0xb6, 0xa4, + 0x6d, 0x39, 0xb7, 0x25, 0x6d, 0xf1, 0xb3, 0x08, 0xc1, 0xd4, 0x93, 0x5c, 0xa1, 0x78, 0x20, 0x4b, + 0x4a, 0xb1, 0xf0, 0x54, 0x2a, 0x1e, 0xf2, 0xcb, 0xb6, 0x56, 0x9f, 0xe4, 0x2a, 0xb9, 0x22, 0xbf, + 0x4a, 0xcb, 0x91, 0x8b, 0xae, 0x11, 0x86, 0x95, 0xc4, 0x3e, 0xa7, 0xee, 0x14, 0x55, 0x0c, 0xcb, + 0x85, 0x16, 0xc3, 0x96, 0x7c, 0x89, 0x45, 0x9f, 0x32, 0xd8, 0xdf, 0xc6, 0x60, 0x2e, 0x14, 0x0f, + 0x3d, 0xf4, 0x16, 0xc0, 0x6e, 0xf4, 0xe4, 0xe9, 0x2d, 0x7d, 0x7d, 0xc3, 0xd1, 0xd2, 0xd7, 0xba, + 0xaf, 0xf4, 0x75, 0xbb, 0x2f, 0xbd, 0xb7, 0xe8, 0xa5, 0x45, 0xd4, 0xbc, 0xca, 0x95, 0xdc, 0xb6, + 0xa4, 0x1c, 0x94, 0xe8, 0x5f, 0xb7, 0xe6, 0x35, 0x0b, 0x7c, 0xa7, 0x08, 0xa4, 0x94, 0x2b, 0xb9, + 0x4a, 0x99, 0x8f, 0x75, 0xd7, 0x9b, 0xe2, 0xdd, 0xd5, 0xa1, 0x84, 0x5b, 0x1d, 0x9a, 0x05, 0xc4, + 0x34, 0xed, 0x7d, 0x5f, 0xfe, 0x2f, 0x1c, 0xcc, 0xf8, 0xc0, 0x4c, 0xf1, 0x9e, 0x16, 0x34, 0xe7, + 0x6b, 0x41, 0x3f, 0x80, 0x59, 0xfb, 0x82, 0x4b, 0x7d, 0xdc, 0x54, 0x5a, 0xd8, 0x20, 0x8d, 0x04, + 0xe6, 0xb0, 0xd3, 0x0d, 0xf5, 0x9c, 0x15, 0xea, 0xf7, 0xb1, 0x61, 0x33, 0x7e, 0x05, 0x05, 0x5e, + 0xf1, 0xef, 0x63, 0x34, 0x8d, 0x1a, 0xfa, 0x1a, 0xd6, 0x37, 0xa4, 0x76, 0xdf, 0xd3, 0xe2, 0x43, + 0xdc, 0xd3, 0x22, 0x02, 0x72, 0x62, 0xa8, 0xdc, 0x7d, 0xe8, 0x14, 0x44, 0xcc, 0xd1, 0x94, 0xed, + 0x12, 0x57, 0xa8, 0xb5, 0xdf, 0x73, 0x30, 0x5e, 0xa8, 0xe1, 0xa6, 0x65, 0xfb, 0x41, 0x09, 0x26, + 0x7d, 0xcf, 0xfe, 0xd1, 0x62, 0xc4, 0x7f, 0x03, 0x10, 0x8d, 0x0b, 0x4b, 0x3d, 0xff, 0x57, 0x40, + 0x1c, 0x41, 0xc7, 0x9e, 0x7f, 0x59, 0xf0, 0xf5, 0x0d, 0xde, 0xe8, 0xa2, 0x0c, 0x09, 0x09, 0xc2, + 0xad, 0x3e, 0x58, 0xee, 0x3c, 0xef, 0x41, 0x92, 0x3c, 0xf0, 0x46, 0xee, 0x39, 0xe4, 0x7d, 0xff, + 0x2d, 0xcc, 0x05, 0xa0, 0x0e, 0xdd, 0xda, 0x77, 0x29, 0x80, 0xce, 0x4d, 0x14, 0x3d, 0x85, 0x09, + 0xef, 0x1b, 0x53, 0xb4, 0xd0, 0xe3, 0x85, 0xb3, 0xb0, 0x18, 0x3e, 0xe8, 0xca, 0xf4, 0x14, 0x26, + 0xbc, 0x2f, 0x9a, 0x3a, 0xcc, 0x42, 0x5e, 0x55, 0x75, 0x98, 0x85, 0x3e, 0x82, 0x1a, 0x41, 0x75, + 0xb8, 0x1a, 0xf1, 0xa6, 0x05, 0xdd, 0x1e, 0xec, 0xe5, 0x8f, 0xf0, 0xe6, 0x80, 0x8f, 0x63, 0xc4, + 0x11, 0x64, 0xc0, 0xb5, 0xc8, 0xa7, 0x1c, 0x68, 0x75, 0xd0, 0x87, 0x26, 0xc2, 0x9d, 0x01, 0x30, + 0xdd, 0x39, 0xdb, 0x20, 0x44, 0xf7, 0x8f, 0xd1, 0x9d, 0x81, 0x1f, 0x36, 0x08, 0x77, 0x07, 0x6f, + 0x47, 0x8b, 0x23, 0x68, 0x07, 0xd2, 0x9e, 0x96, 0x22, 0x12, 0x42, 0xfb, 0x8c, 0x94, 0xf1, 0x42, + 0x8f, 0x1e, 0x24, 0xe5, 0xe4, 0x69, 0x1e, 0x75, 0x38, 0x75, 0x77, 0xc1, 0x3a, 0x9c, 0x42, 0xba, + 0x4d, 0x41, 0xf5, 0x07, 0xce, 0xc3, 0x30, 0xf5, 0x87, 0x1f, 0xa8, 0x61, 0xea, 0x8f, 0x38, 0x5c, + 0xc5, 0x11, 0xf4, 0x09, 0x4c, 0xf9, 0x8b, 0xd8, 0x68, 0xa9, 0x67, 0x31, 0x5e, 0x58, 0x8e, 0x1a, + 0xf6, 0xb2, 0xf4, 0xd7, 0x4c, 0x3b, 0x2c, 0x43, 0x6b, 0xb7, 0x1d, 0x96, 0x11, 0xa5, 0xd6, 0x11, + 0x3b, 0x3e, 0xf9, 0x2a, 0x81, 0x9d, 0xf8, 0x14, 0x56, 0xc0, 0xec, 0xc4, 0xa7, 0xd0, 0xf2, 0xa1, + 0x38, 0x82, 0x34, 0x98, 0x0f, 0x2f, 0x44, 0xa1, 0x5b, 0x03, 0xd5, 0xd9, 0x84, 0xdb, 0xfd, 0xd0, + 0xdc, 0xa9, 0x24, 0x48, 0xb9, 0xd9, 0x37, 0xca, 0x84, 0x34, 0x86, 0x29, 0xc3, 0x6b, 0x91, 0x2d, + 0x63, 0xd1, 0xce, 0xa1, 0xd6, 0x7e, 0x95, 0x84, 0x04, 0x39, 0x4c, 0x2b, 0x70, 0x25, 0x50, 0x4f, + 0x40, 0xcb, 0xbd, 0xab, 0x2c, 0xc2, 0xf5, 0xc8, 0x71, 0x57, 0xca, 0x17, 0x30, 0xdd, 0x55, 0x21, + 0x40, 0x2b, 0x5e, 0xba, 0xb0, 0x2a, 0x85, 0x70, 0xa3, 0x07, 0x46, 0x90, 0xb7, 0x3f, 0x7a, 0xad, + 0xf4, 0xbb, 0xc2, 0xfa, 0x79, 0x47, 0x45, 0xac, 0xcf, 0x69, 0xee, 0x12, 0x8c, 0x55, 0xa2, 0x5f, + 0xae, 0xd0, 0x28, 0x75, 0xb3, 0x27, 0x8e, 0x3b, 0xc3, 0x67, 0x6e, 0xd2, 0xe4, 0xb9, 0x41, 0x21, + 0x9f, 0x70, 0xa1, 0x37, 0x3d, 0x41, 0xec, 0x85, 0xe2, 0xb2, 0x7f, 0x0e, 0x7c, 0xf0, 0x24, 0x47, + 0xbe, 0xfd, 0x0a, 0xb3, 0xbe, 0x95, 0x68, 0x84, 0xa0, 0x66, 0x82, 0x61, 0x24, 0x28, 0x55, 0x58, + 0x00, 0xb9, 0xd9, 0x13, 0xc7, 0x1b, 0xf8, 0x3c, 0x79, 0x63, 0x27, 0xf0, 0x75, 0xe7, 0x98, 0x9d, + 0xc0, 0x17, 0x92, 0x68, 0x8a, 0x23, 0xeb, 0xef, 0x03, 0x54, 0x4d, 0x4d, 0xa1, 0x65, 0x0f, 0xb4, + 0xd4, 0xd5, 0x81, 0x7a, 0xa2, 0xe1, 0x7a, 0x6d, 0xaf, 0x65, 0x5f, 0x5f, 0xcc, 0xcc, 0xbf, 0x8e, + 0x93, 0x9a, 0x4b, 0xaa, 0x6a, 0x6a, 0xb4, 0xfa, 0xb0, 0xfe, 0x21, 0xa4, 0xd5, 0x7a, 0xeb, 0x54, + 0x55, 0x8e, 0x6d, 0xbc, 0x7e, 0xf4, 0xff, 0x46, 0xe9, 0x81, 0x90, 0x90, 0x91, 0x75, 0x09, 0x26, + 0x29, 0x03, 0x76, 0x61, 0x42, 0xd7, 0xbb, 0x58, 0xec, 0xd2, 0x91, 0x00, 0x93, 0x09, 0x42, 0xc6, + 0xc6, 0xd6, 0xf3, 0x30, 0xe1, 0xb0, 0xb1, 0x4e, 0xf5, 0x1a, 0x5a, 0x0e, 0xe1, 0x62, 0x0f, 0x04, + 0x98, 0xa4, 0x19, 0x13, 0x7b, 0x28, 0x9f, 0x7c, 0x11, 0xaf, 0x9a, 0xda, 0xd1, 0x28, 0x21, 0x79, + 0xe7, 0x0f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9a, 0xfd, 0x29, 0xf3, 0xb7, 0x3a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/spec.md b/spec.md index 4af8c032..3c03d7b5 100644 --- a/spec.md +++ b/spec.md @@ -1508,7 +1508,7 @@ message GetVolumeResponse { // volume_health shows error conditions reported by the SP. // This field MUST be specified if the // VOLUME_HEALTH controller capability is supported. - VolumeHealth volume_health = 1 [(alpha_field) = true]; + VolumeHealth volume_health = 1; } // This field is REQUIRED @@ -1528,9 +1528,11 @@ If the plugin is unable to complete the GetVolume call successfully, it MUST ret A SP can implement `VolumeHealth` in only the Controller Plugin, only the Node Plugin, or both if possible. -If `VolumeHealth` is implemented in both the Controller and Node Plugins, it SHALL try to avoid confusion by reporting from different perspectives. +If `VolumeHealth` is implemented in both the Controller and Node Plugins, it SHALL report from different perspectives. For example, `VolumeHealth` information from the Controller Plugin SHALL be from the storage system but not specific for one node, while information from the Node Plugin SHALL be specific for that node. +If for some reason Controller and Node Plugins report misaligned health conditions, CO SHALL assume the worst case is the truth. + Note that for this initial implementation of `VolumeHealth` support, the intended consumer of signal should be informative for humans, not for automated machine response. #### `GetCapacity` @@ -2307,7 +2309,7 @@ message NodeGetVolumeStatsResponse { // This field is OPTIONAL. repeated VolumeUsage usage = 1; // This field is OPTIONAL. - VolumeHealth volume_health = 2 [(alpha_field) = true]; + VolumeHealth volume_health = 2; } message VolumeUsage { @@ -2336,32 +2338,40 @@ message VolumeHealth { option (alpha_message) = true; enum Condition { - // Volume health condition is unknown; If this is the initial - // report of volume health, treat it as healthy. If there was - // already a condition reported previously, treat unknown as - // unchanged from the previous condition. + // Volume health condition is unknown. UNKNOWN = 0; // Volume is accessible and no problems are detected. HEALTHY = 1; // Volume is not accessible currently, but there's no reason to // expect data loss. Examples: power outage, network outage, // maintenance. - TEMPORARY_INACCESSIBLE = 2; + TEMPORARY_INACCESSIBLE = 10; // Volume is accessible currently, but is degraded. Data loss - // is unlikely as the storage system is rebuilding to fix the + // is unlikely as the storage system may be rebuilding to fix the // problem automatically. For example, a replica is lost on // the storage system but a spare is configured, and the storage // system is resyncing/reconstructing. - TEMPORARY_DEGRADED = 3; + TEMPORARY_DEGRADED = 20; // Volume is accessible currently, but a problem is detected that // could lead to eventual data loss. Examples: recoverable hardware // failure (i.e. the disk needs to be manually replaced by a human), // cooling failure, equipment significantly past end of life. - FAILURE_LIKELY = 4; + FAILURE_LIKELY = 30; // Volume is not accessible currently, and there is reason to // believe the outage may be permanent. Examples: unrecoverable // hardware failure, natural disasters, damage to equipment. - FATAL = 5; + FATAL = 40; + } + + message VolumeHealthError { + // The code describing the health condition of the volume. + // This is an opaque field to CO. + // This field is OPTIONAL. + string code = 1; + + // The error message associated with the above error code. + // This field is REQUIRED. + string message = 2; } // The level of the health condition of the volume. @@ -2372,17 +2382,6 @@ message VolumeHealth { // the volume. This field is REQUIRED. repeated VolumeHealthError error = 2; } - -message VolumeHealthError { - // The error code describing the health condition of the volume. - // This is an opaque field to CO. - // This field is REQUIRED. - string error_code = 1; - - // The error message associated with the above error code. - // This field is OPTIONAL. - string message = 2; -} ``` ##### NodeGetVolumeStats Errors