diff --git a/csi.proto b/csi.proto index 14b46ad7..d06b5630 100644 --- a/csi.proto +++ b/csi.proto @@ -100,6 +100,11 @@ service Controller { returns (ControllerGetVolumeResponse) { option (alpha_method) = true; } + + rpc ControllerModifyVolume (ModifyVolumeRequest) + returns (ModifyVolumeResponse) { + option (alpha_method) = true; + } } service GroupController { @@ -376,6 +381,10 @@ message CreateVolumeRequest { // VOLUME_ACCESSIBILITY_CONSTRAINTS plugin capability, the SP MAY // choose where the provisioned volume is accessible from. TopologyRequirement accessibility_requirements = 7; + + // This field is OPTIONAL. This allows the CO to specify the + // volume performance class parameters to apply. + map mutable_parameters = 8; } // Specifies what source the volume will be created from. One of the @@ -974,6 +983,21 @@ message ControllerGetVolumeResponse { // This field is REQUIRED. VolumeStatus status = 2; } +message ModifyVolumeRequest { + option (alpha_message) = true; + + // Contains identity information for the existing volume. + // This field is REQUIRED. + string volume_id = 1; + // This field is OPTIONAL.This allows the CO to specify the + // mutable parameters to apply. + map mutable_parameters = 2; +} + +message ModifyVolumeResponse { + option (alpha_message) = true; +} + message GetCapacityRequest { // If specified, the Plugin SHALL report the capacity of the storage // that can be used to provision volumes that satisfy ALL of the @@ -1113,6 +1137,10 @@ message ControllerServiceCapability { // SINGLE_NODE_SINGLE_WRITER and/or SINGLE_NODE_MULTI_WRITER are // supported, in order to permit older COs to continue working. SINGLE_NODE_MULTI_WRITER = 13 [(alpha_enum_value) = true]; + + // Indicates the SP supports modifying volume with mutable + // parameters. See ModifyVolume for details. + MODIFY_VOLUME = 14 [(alpha_enum_value) = true]; } Type type = 1; diff --git a/lib/go/csi/csi.pb.go b/lib/go/csi/csi.pb.go index fa010c37..c152c2d3 100644 --- a/lib/go/csi/csi.pb.go +++ b/lib/go/csi/csi.pb.go @@ -260,6 +260,9 @@ const ( // SINGLE_NODE_SINGLE_WRITER and/or SINGLE_NODE_MULTI_WRITER are // supported, in order to permit older COs to continue working. ControllerServiceCapability_RPC_SINGLE_NODE_MULTI_WRITER ControllerServiceCapability_RPC_Type = 13 + // Indicates the SP supports modifying volume with mutable + // parameters. See ModifyVolume for details. + ControllerServiceCapability_RPC_MODIFY_VOLUME ControllerServiceCapability_RPC_Type = 14 ) var ControllerServiceCapability_RPC_Type_name = map[int32]string{ @@ -277,6 +280,7 @@ var ControllerServiceCapability_RPC_Type_name = map[int32]string{ 11: "VOLUME_CONDITION", 12: "GET_VOLUME", 13: "SINGLE_NODE_MULTI_WRITER", + 14: "MODIFY_VOLUME", } var ControllerServiceCapability_RPC_Type_value = map[string]int32{ @@ -294,6 +298,7 @@ var ControllerServiceCapability_RPC_Type_value = map[string]int32{ "VOLUME_CONDITION": 11, "GET_VOLUME": 12, "SINGLE_NODE_MULTI_WRITER": 13, + "MODIFY_VOLUME": 14, } func (x ControllerServiceCapability_RPC_Type) String() string { @@ -301,7 +306,7 @@ func (x ControllerServiceCapability_RPC_Type) String() string { } func (ControllerServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{33, 0, 0} } type VolumeUsage_Unit int32 @@ -329,7 +334,7 @@ func (x VolumeUsage_Unit) String() string { } func (VolumeUsage_Unit) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{51, 0} + return fileDescriptor_9cdb00adce470e01, []int{53, 0} } type NodeServiceCapability_RPC_Type int32 @@ -396,7 +401,7 @@ func (x NodeServiceCapability_RPC_Type) String() string { } func (NodeServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{55, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{57, 0, 0} } type GroupControllerServiceCapability_RPC_Type int32 @@ -424,7 +429,7 @@ func (x GroupControllerServiceCapability_RPC_Type) String() string { } func (GroupControllerServiceCapability_RPC_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{62, 0, 0} + return fileDescriptor_9cdb00adce470e01, []int{64, 0, 0} } type GetPluginInfoRequest struct { @@ -918,9 +923,12 @@ type CreateVolumeRequest struct { // VOLUME_ACCESSIBILITY_CONSTRAINTS plugin capability, the SP MAY // choose where the provisioned volume is accessible from. AccessibilityRequirements *TopologyRequirement `protobuf:"bytes,7,opt,name=accessibility_requirements,json=accessibilityRequirements,proto3" json:"accessibility_requirements,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // This field is OPTIONAL. This allows the CO to specify the + // volume performance class parameters to apply. + MutableParameters map[string]string `protobuf:"bytes,8,rep,name=mutable_parameters,json=mutableParameters,proto3" json:"mutable_parameters,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateVolumeRequest) Reset() { *m = CreateVolumeRequest{} } @@ -997,6 +1005,13 @@ func (m *CreateVolumeRequest) GetAccessibilityRequirements() *TopologyRequiremen return nil } +func (m *CreateVolumeRequest) GetMutableParameters() map[string]string { + if m != nil { + return m.MutableParameters + } + return nil +} + // Specifies what source the volume will be created from. One of the // type fields MUST be specified. type VolumeContentSource struct { @@ -2811,6 +2826,88 @@ func (m *ControllerGetVolumeResponse_VolumeStatus) GetVolumeCondition() *VolumeC return nil } +type ModifyVolumeRequest struct { + // Contains identity information for the existing volume. + // This field is REQUIRED. + VolumeId string `protobuf:"bytes,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"` + // This field is OPTIONAL.This allows the CO to specify the + // mutable parameters to apply. + MutableParameters map[string]string `protobuf:"bytes,2,rep,name=mutable_parameters,json=mutableParameters,proto3" json:"mutable_parameters,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ModifyVolumeRequest) Reset() { *m = ModifyVolumeRequest{} } +func (m *ModifyVolumeRequest) String() string { return proto.CompactTextString(m) } +func (*ModifyVolumeRequest) ProtoMessage() {} +func (*ModifyVolumeRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{27} +} + +func (m *ModifyVolumeRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ModifyVolumeRequest.Unmarshal(m, b) +} +func (m *ModifyVolumeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ModifyVolumeRequest.Marshal(b, m, deterministic) +} +func (m *ModifyVolumeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ModifyVolumeRequest.Merge(m, src) +} +func (m *ModifyVolumeRequest) XXX_Size() int { + return xxx_messageInfo_ModifyVolumeRequest.Size(m) +} +func (m *ModifyVolumeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ModifyVolumeRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ModifyVolumeRequest proto.InternalMessageInfo + +func (m *ModifyVolumeRequest) GetVolumeId() string { + if m != nil { + return m.VolumeId + } + return "" +} + +func (m *ModifyVolumeRequest) GetMutableParameters() map[string]string { + if m != nil { + return m.MutableParameters + } + return nil +} + +type ModifyVolumeResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ModifyVolumeResponse) Reset() { *m = ModifyVolumeResponse{} } +func (m *ModifyVolumeResponse) String() string { return proto.CompactTextString(m) } +func (*ModifyVolumeResponse) ProtoMessage() {} +func (*ModifyVolumeResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9cdb00adce470e01, []int{28} +} + +func (m *ModifyVolumeResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ModifyVolumeResponse.Unmarshal(m, b) +} +func (m *ModifyVolumeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ModifyVolumeResponse.Marshal(b, m, deterministic) +} +func (m *ModifyVolumeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ModifyVolumeResponse.Merge(m, src) +} +func (m *ModifyVolumeResponse) XXX_Size() int { + return xxx_messageInfo_ModifyVolumeResponse.Size(m) +} +func (m *ModifyVolumeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ModifyVolumeResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ModifyVolumeResponse proto.InternalMessageInfo + type GetCapacityRequest struct { // If specified, the Plugin SHALL report the capacity of the storage // that can be used to provision volumes that satisfy ALL of the @@ -2839,7 +2936,7 @@ func (m *GetCapacityRequest) Reset() { *m = GetCapacityRequest{} } func (m *GetCapacityRequest) String() string { return proto.CompactTextString(m) } func (*GetCapacityRequest) ProtoMessage() {} func (*GetCapacityRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{27} + return fileDescriptor_9cdb00adce470e01, []int{29} } func (m *GetCapacityRequest) XXX_Unmarshal(b []byte) error { @@ -2930,7 +3027,7 @@ func (m *GetCapacityResponse) Reset() { *m = GetCapacityResponse{} } func (m *GetCapacityResponse) String() string { return proto.CompactTextString(m) } func (*GetCapacityResponse) ProtoMessage() {} func (*GetCapacityResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{28} + return fileDescriptor_9cdb00adce470e01, []int{30} } func (m *GetCapacityResponse) XXX_Unmarshal(b []byte) error { @@ -2982,7 +3079,7 @@ func (m *ControllerGetCapabilitiesRequest) Reset() { *m = ControllerGetC func (m *ControllerGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesRequest) ProtoMessage() {} func (*ControllerGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{29} + return fileDescriptor_9cdb00adce470e01, []int{31} } func (m *ControllerGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -3016,7 +3113,7 @@ func (m *ControllerGetCapabilitiesResponse) Reset() { *m = ControllerGet func (m *ControllerGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*ControllerGetCapabilitiesResponse) ProtoMessage() {} func (*ControllerGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{30} + return fileDescriptor_9cdb00adce470e01, []int{32} } func (m *ControllerGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -3059,7 +3156,7 @@ func (m *ControllerServiceCapability) Reset() { *m = ControllerServiceCa func (m *ControllerServiceCapability) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability) ProtoMessage() {} func (*ControllerServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31} + return fileDescriptor_9cdb00adce470e01, []int{33} } func (m *ControllerServiceCapability) XXX_Unmarshal(b []byte) error { @@ -3122,7 +3219,7 @@ func (m *ControllerServiceCapability_RPC) Reset() { *m = ControllerServi func (m *ControllerServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*ControllerServiceCapability_RPC) ProtoMessage() {} func (*ControllerServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{31, 0} + return fileDescriptor_9cdb00adce470e01, []int{33, 0} } func (m *ControllerServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -3185,7 +3282,7 @@ func (m *CreateSnapshotRequest) Reset() { *m = CreateSnapshotRequest{} } func (m *CreateSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotRequest) ProtoMessage() {} func (*CreateSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{32} + return fileDescriptor_9cdb00adce470e01, []int{34} } func (m *CreateSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -3248,7 +3345,7 @@ func (m *CreateSnapshotResponse) Reset() { *m = CreateSnapshotResponse{} func (m *CreateSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotResponse) ProtoMessage() {} func (*CreateSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{33} + return fileDescriptor_9cdb00adce470e01, []int{35} } func (m *CreateSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -3330,7 +3427,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{34} + return fileDescriptor_9cdb00adce470e01, []int{36} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { @@ -3410,7 +3507,7 @@ func (m *DeleteSnapshotRequest) Reset() { *m = DeleteSnapshotRequest{} } func (m *DeleteSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotRequest) ProtoMessage() {} func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{35} + return fileDescriptor_9cdb00adce470e01, []int{37} } func (m *DeleteSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -3455,7 +3552,7 @@ func (m *DeleteSnapshotResponse) Reset() { *m = DeleteSnapshotResponse{} func (m *DeleteSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotResponse) ProtoMessage() {} func (*DeleteSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{36} + return fileDescriptor_9cdb00adce470e01, []int{38} } func (m *DeleteSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -3515,7 +3612,7 @@ func (m *ListSnapshotsRequest) Reset() { *m = ListSnapshotsRequest{} } func (m *ListSnapshotsRequest) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsRequest) ProtoMessage() {} func (*ListSnapshotsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{37} + return fileDescriptor_9cdb00adce470e01, []int{39} } func (m *ListSnapshotsRequest) XXX_Unmarshal(b []byte) error { @@ -3589,7 +3686,7 @@ func (m *ListSnapshotsResponse) Reset() { *m = ListSnapshotsResponse{} } func (m *ListSnapshotsResponse) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse) ProtoMessage() {} func (*ListSnapshotsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{38} + return fileDescriptor_9cdb00adce470e01, []int{40} } func (m *ListSnapshotsResponse) XXX_Unmarshal(b []byte) error { @@ -3635,7 +3732,7 @@ func (m *ListSnapshotsResponse_Entry) Reset() { *m = ListSnapshotsRespon func (m *ListSnapshotsResponse_Entry) String() string { return proto.CompactTextString(m) } func (*ListSnapshotsResponse_Entry) ProtoMessage() {} func (*ListSnapshotsResponse_Entry) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{38, 0} + return fileDescriptor_9cdb00adce470e01, []int{40, 0} } func (m *ListSnapshotsResponse_Entry) XXX_Unmarshal(b []byte) error { @@ -3689,7 +3786,7 @@ func (m *ControllerExpandVolumeRequest) Reset() { *m = ControllerExpandV func (m *ControllerExpandVolumeRequest) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeRequest) ProtoMessage() {} func (*ControllerExpandVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{39} + return fileDescriptor_9cdb00adce470e01, []int{41} } func (m *ControllerExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3754,7 +3851,7 @@ func (m *ControllerExpandVolumeResponse) Reset() { *m = ControllerExpand func (m *ControllerExpandVolumeResponse) String() string { return proto.CompactTextString(m) } func (*ControllerExpandVolumeResponse) ProtoMessage() {} func (*ControllerExpandVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{40} + return fileDescriptor_9cdb00adce470e01, []int{42} } func (m *ControllerExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3835,7 +3932,7 @@ func (m *NodeStageVolumeRequest) Reset() { *m = NodeStageVolumeRequest{} func (m *NodeStageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeRequest) ProtoMessage() {} func (*NodeStageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{41} + return fileDescriptor_9cdb00adce470e01, []int{43} } func (m *NodeStageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3908,7 +4005,7 @@ func (m *NodeStageVolumeResponse) Reset() { *m = NodeStageVolumeResponse func (m *NodeStageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeStageVolumeResponse) ProtoMessage() {} func (*NodeStageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{42} + return fileDescriptor_9cdb00adce470e01, []int{44} } func (m *NodeStageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -3949,7 +4046,7 @@ func (m *NodeUnstageVolumeRequest) Reset() { *m = NodeUnstageVolumeReque func (m *NodeUnstageVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeRequest) ProtoMessage() {} func (*NodeUnstageVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{43} + return fileDescriptor_9cdb00adce470e01, []int{45} } func (m *NodeUnstageVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -3994,7 +4091,7 @@ func (m *NodeUnstageVolumeResponse) Reset() { *m = NodeUnstageVolumeResp func (m *NodeUnstageVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnstageVolumeResponse) ProtoMessage() {} func (*NodeUnstageVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{44} + return fileDescriptor_9cdb00adce470e01, []int{46} } func (m *NodeUnstageVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4078,7 +4175,7 @@ func (m *NodePublishVolumeRequest) Reset() { *m = NodePublishVolumeReque func (m *NodePublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeRequest) ProtoMessage() {} func (*NodePublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{45} + return fileDescriptor_9cdb00adce470e01, []int{47} } func (m *NodePublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4165,7 +4262,7 @@ func (m *NodePublishVolumeResponse) Reset() { *m = NodePublishVolumeResp func (m *NodePublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodePublishVolumeResponse) ProtoMessage() {} func (*NodePublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{46} + return fileDescriptor_9cdb00adce470e01, []int{48} } func (m *NodePublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4207,7 +4304,7 @@ func (m *NodeUnpublishVolumeRequest) Reset() { *m = NodeUnpublishVolumeR func (m *NodeUnpublishVolumeRequest) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeRequest) ProtoMessage() {} func (*NodeUnpublishVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{47} + return fileDescriptor_9cdb00adce470e01, []int{49} } func (m *NodeUnpublishVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4252,7 +4349,7 @@ func (m *NodeUnpublishVolumeResponse) Reset() { *m = NodeUnpublishVolume func (m *NodeUnpublishVolumeResponse) String() string { return proto.CompactTextString(m) } func (*NodeUnpublishVolumeResponse) ProtoMessage() {} func (*NodeUnpublishVolumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{48} + return fileDescriptor_9cdb00adce470e01, []int{50} } func (m *NodeUnpublishVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4305,7 +4402,7 @@ func (m *NodeGetVolumeStatsRequest) Reset() { *m = NodeGetVolumeStatsReq func (m *NodeGetVolumeStatsRequest) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsRequest) ProtoMessage() {} func (*NodeGetVolumeStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{49} + return fileDescriptor_9cdb00adce470e01, []int{51} } func (m *NodeGetVolumeStatsRequest) XXX_Unmarshal(b []byte) error { @@ -4364,7 +4461,7 @@ func (m *NodeGetVolumeStatsResponse) Reset() { *m = NodeGetVolumeStatsRe func (m *NodeGetVolumeStatsResponse) String() string { return proto.CompactTextString(m) } func (*NodeGetVolumeStatsResponse) ProtoMessage() {} func (*NodeGetVolumeStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{50} + return fileDescriptor_9cdb00adce470e01, []int{52} } func (m *NodeGetVolumeStatsResponse) XXX_Unmarshal(b []byte) error { @@ -4420,7 +4517,7 @@ func (m *VolumeUsage) Reset() { *m = VolumeUsage{} } func (m *VolumeUsage) String() string { return proto.CompactTextString(m) } func (*VolumeUsage) ProtoMessage() {} func (*VolumeUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{51} + return fileDescriptor_9cdb00adce470e01, []int{53} } func (m *VolumeUsage) XXX_Unmarshal(b []byte) error { @@ -4487,7 +4584,7 @@ func (m *VolumeCondition) Reset() { *m = VolumeCondition{} } func (m *VolumeCondition) String() string { return proto.CompactTextString(m) } func (*VolumeCondition) ProtoMessage() {} func (*VolumeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{52} + return fileDescriptor_9cdb00adce470e01, []int{54} } func (m *VolumeCondition) XXX_Unmarshal(b []byte) error { @@ -4532,7 +4629,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{53} + return fileDescriptor_9cdb00adce470e01, []int{55} } func (m *NodeGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -4566,7 +4663,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{54} + return fileDescriptor_9cdb00adce470e01, []int{56} } func (m *NodeGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -4609,7 +4706,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{55} + return fileDescriptor_9cdb00adce470e01, []int{57} } func (m *NodeServiceCapability) XXX_Unmarshal(b []byte) error { @@ -4672,7 +4769,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{55, 0} + return fileDescriptor_9cdb00adce470e01, []int{57, 0} } func (m *NodeServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -4710,7 +4807,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{56} + return fileDescriptor_9cdb00adce470e01, []int{58} } func (m *NodeGetInfoRequest) XXX_Unmarshal(b []byte) error { @@ -4780,7 +4877,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{57} + return fileDescriptor_9cdb00adce470e01, []int{59} } func (m *NodeGetInfoResponse) XXX_Unmarshal(b []byte) error { @@ -4871,7 +4968,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{58} + return fileDescriptor_9cdb00adce470e01, []int{60} } func (m *NodeExpandVolumeRequest) XXX_Unmarshal(b []byte) error { @@ -4946,7 +5043,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{59} + return fileDescriptor_9cdb00adce470e01, []int{61} } func (m *NodeExpandVolumeResponse) XXX_Unmarshal(b []byte) error { @@ -4984,7 +5081,7 @@ func (m *GroupControllerGetCapabilitiesRequest) Reset() { *m = GroupCont func (m *GroupControllerGetCapabilitiesRequest) String() string { return proto.CompactTextString(m) } func (*GroupControllerGetCapabilitiesRequest) ProtoMessage() {} func (*GroupControllerGetCapabilitiesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{60} + return fileDescriptor_9cdb00adce470e01, []int{62} } func (m *GroupControllerGetCapabilitiesRequest) XXX_Unmarshal(b []byte) error { @@ -5020,7 +5117,7 @@ func (m *GroupControllerGetCapabilitiesResponse) Reset() { func (m *GroupControllerGetCapabilitiesResponse) String() string { return proto.CompactTextString(m) } func (*GroupControllerGetCapabilitiesResponse) ProtoMessage() {} func (*GroupControllerGetCapabilitiesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{61} + return fileDescriptor_9cdb00adce470e01, []int{63} } func (m *GroupControllerGetCapabilitiesResponse) XXX_Unmarshal(b []byte) error { @@ -5063,7 +5160,7 @@ func (m *GroupControllerServiceCapability) Reset() { *m = GroupControlle func (m *GroupControllerServiceCapability) String() string { return proto.CompactTextString(m) } func (*GroupControllerServiceCapability) ProtoMessage() {} func (*GroupControllerServiceCapability) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{62} + return fileDescriptor_9cdb00adce470e01, []int{64} } func (m *GroupControllerServiceCapability) XXX_Unmarshal(b []byte) error { @@ -5126,7 +5223,7 @@ func (m *GroupControllerServiceCapability_RPC) Reset() { *m = GroupContr func (m *GroupControllerServiceCapability_RPC) String() string { return proto.CompactTextString(m) } func (*GroupControllerServiceCapability_RPC) ProtoMessage() {} func (*GroupControllerServiceCapability_RPC) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{62, 0} + return fileDescriptor_9cdb00adce470e01, []int{64, 0} } func (m *GroupControllerServiceCapability_RPC) XXX_Unmarshal(b []byte) error { @@ -5185,7 +5282,7 @@ func (m *CreateVolumeGroupSnapshotRequest) Reset() { *m = CreateVolumeGr func (m *CreateVolumeGroupSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*CreateVolumeGroupSnapshotRequest) ProtoMessage() {} func (*CreateVolumeGroupSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{63} + return fileDescriptor_9cdb00adce470e01, []int{65} } func (m *CreateVolumeGroupSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -5247,7 +5344,7 @@ func (m *CreateVolumeGroupSnapshotResponse) Reset() { *m = CreateVolumeG func (m *CreateVolumeGroupSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*CreateVolumeGroupSnapshotResponse) ProtoMessage() {} func (*CreateVolumeGroupSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{64} + return fileDescriptor_9cdb00adce470e01, []int{66} } func (m *CreateVolumeGroupSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -5311,7 +5408,7 @@ func (m *VolumeGroupSnapshot) Reset() { *m = VolumeGroupSnapshot{} } func (m *VolumeGroupSnapshot) String() string { return proto.CompactTextString(m) } func (*VolumeGroupSnapshot) ProtoMessage() {} func (*VolumeGroupSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{65} + return fileDescriptor_9cdb00adce470e01, []int{67} } func (m *VolumeGroupSnapshot) XXX_Unmarshal(b []byte) error { @@ -5390,7 +5487,7 @@ func (m *DeleteVolumeGroupSnapshotRequest) Reset() { *m = DeleteVolumeGr func (m *DeleteVolumeGroupSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeGroupSnapshotRequest) ProtoMessage() {} func (*DeleteVolumeGroupSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{66} + return fileDescriptor_9cdb00adce470e01, []int{68} } func (m *DeleteVolumeGroupSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -5442,7 +5539,7 @@ func (m *DeleteVolumeGroupSnapshotResponse) Reset() { *m = DeleteVolumeG func (m *DeleteVolumeGroupSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeGroupSnapshotResponse) ProtoMessage() {} func (*DeleteVolumeGroupSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{67} + return fileDescriptor_9cdb00adce470e01, []int{69} } func (m *DeleteVolumeGroupSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -5494,7 +5591,7 @@ func (m *GetVolumeGroupSnapshotRequest) Reset() { *m = GetVolumeGroupSna func (m *GetVolumeGroupSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*GetVolumeGroupSnapshotRequest) ProtoMessage() {} func (*GetVolumeGroupSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{68} + return fileDescriptor_9cdb00adce470e01, []int{70} } func (m *GetVolumeGroupSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -5548,7 +5645,7 @@ func (m *GetVolumeGroupSnapshotResponse) Reset() { *m = GetVolumeGroupSn func (m *GetVolumeGroupSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*GetVolumeGroupSnapshotResponse) ProtoMessage() {} func (*GetVolumeGroupSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9cdb00adce470e01, []int{69} + return fileDescriptor_9cdb00adce470e01, []int{71} } func (m *GetVolumeGroupSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -5658,6 +5755,7 @@ func init() { proto.RegisterType((*ProbeRequest)(nil), "csi.v1.ProbeRequest") proto.RegisterType((*ProbeResponse)(nil), "csi.v1.ProbeResponse") proto.RegisterType((*CreateVolumeRequest)(nil), "csi.v1.CreateVolumeRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.CreateVolumeRequest.MutableParametersEntry") proto.RegisterMapType((map[string]string)(nil), "csi.v1.CreateVolumeRequest.ParametersEntry") proto.RegisterMapType((map[string]string)(nil), "csi.v1.CreateVolumeRequest.SecretsEntry") proto.RegisterType((*VolumeContentSource)(nil), "csi.v1.VolumeContentSource") @@ -5700,6 +5798,9 @@ func init() { proto.RegisterType((*ControllerGetVolumeRequest)(nil), "csi.v1.ControllerGetVolumeRequest") proto.RegisterType((*ControllerGetVolumeResponse)(nil), "csi.v1.ControllerGetVolumeResponse") proto.RegisterType((*ControllerGetVolumeResponse_VolumeStatus)(nil), "csi.v1.ControllerGetVolumeResponse.VolumeStatus") + proto.RegisterType((*ModifyVolumeRequest)(nil), "csi.v1.ModifyVolumeRequest") + proto.RegisterMapType((map[string]string)(nil), "csi.v1.ModifyVolumeRequest.MutableParametersEntry") + proto.RegisterType((*ModifyVolumeResponse)(nil), "csi.v1.ModifyVolumeResponse") proto.RegisterType((*GetCapacityRequest)(nil), "csi.v1.GetCapacityRequest") proto.RegisterMapType((map[string]string)(nil), "csi.v1.GetCapacityRequest.ParametersEntry") proto.RegisterType((*GetCapacityResponse)(nil), "csi.v1.GetCapacityResponse") @@ -5778,269 +5879,276 @@ func init() { } var fileDescriptor_9cdb00adce470e01 = []byte{ - // 4182 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5c, 0x4d, 0x6c, 0x1b, 0x49, - 0x76, 0x56, 0xf3, 0x4f, 0xd2, 0xa3, 0x24, 0x53, 0xa5, 0x1f, 0xd3, 0x2d, 0x59, 0x96, 0xda, 0xe3, - 0x19, 0x8d, 0xc7, 0xa6, 0x67, 0xbc, 0x33, 0x83, 0x1d, 0x8d, 0x67, 0x77, 0x48, 0x89, 0x96, 0xb8, - 0xa6, 0x49, 0x6d, 0x93, 0xf2, 0xac, 0x9d, 0x0c, 0x7a, 0x5a, 0x64, 0x49, 0x6e, 0x0c, 0xd9, 0xcd, - 0xe9, 0x6e, 0x2a, 0xd6, 0xe6, 0x90, 0x64, 0x83, 0x20, 0x1b, 0xe4, 0x12, 0x24, 0x87, 0x4c, 0x4e, - 0x59, 0x24, 0x39, 0xee, 0x62, 0x0f, 0x41, 0x10, 0x20, 0x97, 0x00, 0xb9, 0x25, 0x40, 0x90, 0x1c, - 0x93, 0x5c, 0xf6, 0x10, 0x20, 0x87, 0x45, 0x02, 0x4c, 0x2e, 0x39, 0xe4, 0x10, 0x04, 0x5d, 0x55, - 0xfd, 0xff, 0x43, 0xd2, 0x92, 0x33, 0x01, 0xf6, 0x64, 0x75, 0xd5, 0xab, 0x57, 0xaf, 0xaa, 0xde, - 0x7b, 0xf5, 0xde, 0xf7, 0x8a, 0x86, 0xf7, 0x4e, 0x15, 0xf3, 0xf9, 0xf0, 0xb8, 0xd4, 0xd1, 0xfa, - 0xf7, 0x3a, 0x9a, 0x6a, 0xca, 0x8a, 0x8a, 0xf5, 0xbb, 0x86, 0xa9, 0xe9, 0xf2, 0x29, 0xbe, 0xab, - 0xa8, 0x26, 0xd6, 0x4f, 0xe4, 0x0e, 0xbe, 0x67, 0x0c, 0x70, 0xe7, 0x5e, 0xc7, 0x50, 0x4a, 0x03, - 0x5d, 0x33, 0x35, 0x94, 0xb3, 0xfe, 0x3c, 0x7b, 0x87, 0xdf, 0x3c, 0xd5, 0xb4, 0xd3, 0x1e, 0xbe, - 0x47, 0x5a, 0x8f, 0x87, 0x27, 0xf7, 0xba, 0xd8, 0xe8, 0xe8, 0xca, 0xc0, 0xd4, 0x74, 0x4a, 0xc9, - 0xdf, 0x08, 0x52, 0x98, 0x4a, 0x1f, 0x1b, 0xa6, 0xdc, 0x1f, 0x30, 0x82, 0x8d, 0x20, 0xc1, 0xaf, - 0xe8, 0xf2, 0x60, 0x80, 0x75, 0x83, 0xf6, 0x0b, 0xab, 0xb0, 0xbc, 0x8f, 0xcd, 0xc3, 0xde, 0xf0, - 0x54, 0x51, 0x6b, 0xea, 0x89, 0x26, 0xe2, 0x2f, 0x86, 0xd8, 0x30, 0x85, 0x7f, 0xe2, 0x60, 0x25, - 0xd0, 0x61, 0x0c, 0x34, 0xd5, 0xc0, 0x08, 0x41, 0x46, 0x95, 0xfb, 0xb8, 0xc8, 0x6d, 0x72, 0xdb, - 0xb3, 0x22, 0xf9, 0x1b, 0xdd, 0x82, 0x85, 0x33, 0xac, 0x76, 0x35, 0x5d, 0x3a, 0xc3, 0xba, 0xa1, - 0x68, 0x6a, 0x31, 0x45, 0x7a, 0xe7, 0x69, 0xeb, 0x13, 0xda, 0x88, 0xf6, 0x61, 0xa6, 0x2f, 0xab, - 0xca, 0x09, 0x36, 0xcc, 0x62, 0x7a, 0x33, 0xbd, 0x9d, 0xbf, 0xff, 0x56, 0x89, 0x2e, 0xb5, 0x14, - 0x39, 0x57, 0xe9, 0x31, 0xa3, 0xae, 0xaa, 0xa6, 0x7e, 0x2e, 0x3a, 0x83, 0xf9, 0x0f, 0x61, 0xde, - 0xd7, 0x85, 0x0a, 0x90, 0xfe, 0x1c, 0x9f, 0x33, 0x99, 0xac, 0x3f, 0xd1, 0x32, 0x64, 0xcf, 0xe4, - 0xde, 0x10, 0x33, 0x49, 0xe8, 0xc7, 0x4e, 0xea, 0x9b, 0x9c, 0xb0, 0x01, 0xeb, 0xce, 0x6c, 0xbb, - 0xf2, 0x40, 0x3e, 0x56, 0x7a, 0x8a, 0xa9, 0x60, 0xc3, 0x5e, 0xfa, 0xa7, 0x70, 0x3d, 0xa6, 0x9f, - 0xed, 0xc0, 0x03, 0x98, 0xeb, 0x78, 0xda, 0x8b, 0x1c, 0x59, 0x4a, 0xd1, 0x5e, 0x4a, 0x60, 0xe4, - 0xb9, 0xe8, 0xa3, 0x16, 0xfe, 0x33, 0x0d, 0x85, 0x20, 0x09, 0x7a, 0x00, 0xd3, 0x06, 0xd6, 0xcf, - 0x94, 0x0e, 0xdd, 0xd7, 0xfc, 0xfd, 0xcd, 0x38, 0x6e, 0xa5, 0x16, 0xa5, 0x3b, 0x98, 0x12, 0xed, - 0x21, 0xe8, 0x08, 0x0a, 0x67, 0x5a, 0x6f, 0xd8, 0xc7, 0x12, 0x7e, 0x31, 0x90, 0x55, 0xe7, 0x00, - 0xf2, 0xf7, 0xb7, 0x63, 0xd9, 0x3c, 0x21, 0x03, 0xaa, 0x36, 0xfd, 0xc1, 0x94, 0x78, 0xe5, 0xcc, - 0xdf, 0xc4, 0xff, 0x15, 0x07, 0xd3, 0x6c, 0x36, 0xf4, 0x01, 0x64, 0xcc, 0xf3, 0x01, 0x95, 0x6e, - 0xe1, 0xfe, 0xad, 0x51, 0xd2, 0x95, 0xda, 0xe7, 0x03, 0x2c, 0x92, 0x21, 0x82, 0x09, 0x19, 0xeb, - 0x0b, 0xe5, 0x61, 0xfa, 0xa8, 0xf1, 0xa8, 0xd1, 0xfc, 0xa4, 0x51, 0x98, 0x42, 0xab, 0x80, 0x76, - 0x9b, 0x8d, 0xb6, 0xd8, 0xac, 0xd7, 0xab, 0xa2, 0xd4, 0xaa, 0x8a, 0x4f, 0x6a, 0xbb, 0xd5, 0x02, - 0x87, 0x5e, 0x83, 0xcd, 0x27, 0xcd, 0xfa, 0xd1, 0xe3, 0xaa, 0x54, 0xde, 0xdd, 0xad, 0xb6, 0x5a, - 0xb5, 0x4a, 0xad, 0x5e, 0x6b, 0x3f, 0x95, 0x76, 0x9b, 0x8d, 0x56, 0x5b, 0x2c, 0xd7, 0x1a, 0xed, - 0x56, 0x21, 0x85, 0xb6, 0xa0, 0xb8, 0x2f, 0x36, 0x8f, 0x0e, 0xa5, 0x08, 0x1e, 0x69, 0x3e, 0xfd, - 0xa3, 0x0a, 0xc7, 0xff, 0x80, 0x83, 0x2b, 0x81, 0x35, 0xa2, 0xb2, 0x6f, 0x11, 0x77, 0xc7, 0xdd, - 0x1b, 0xef, 0x62, 0xee, 0x44, 0x2d, 0x06, 0x20, 0xd7, 0x6c, 0xd4, 0x6b, 0x0d, 0x6b, 0x01, 0x79, - 0x98, 0x6e, 0x3e, 0x7c, 0x48, 0x3e, 0x52, 0x95, 0x1c, 0x9d, 0x50, 0x58, 0x80, 0xb9, 0x43, 0x5d, - 0x3b, 0xc6, 0xb6, 0x8a, 0x95, 0x61, 0x9e, 0x7d, 0x33, 0x95, 0x7a, 0x1b, 0xb2, 0x3a, 0x96, 0xbb, - 0xe7, 0xec, 0xf4, 0xf9, 0x12, 0x35, 0xdb, 0x92, 0x6d, 0xb6, 0xa5, 0x8a, 0xa6, 0xf5, 0x9e, 0x58, - 0x2a, 0x2c, 0x52, 0x42, 0xe1, 0xab, 0x0c, 0x2c, 0xed, 0xea, 0x58, 0x36, 0x31, 0x95, 0x96, 0xb1, - 0x8e, 0x34, 0xcf, 0x07, 0xb0, 0x60, 0xa9, 0x60, 0x47, 0x31, 0xcf, 0x25, 0x5d, 0x56, 0x4f, 0x31, - 0xd3, 0x8e, 0x15, 0x7b, 0x07, 0x76, 0x59, 0xaf, 0x68, 0x75, 0x8a, 0xf3, 0x1d, 0xef, 0x27, 0xaa, - 0xc1, 0x12, 0xd3, 0x2e, 0x9f, 0xd6, 0xa7, 0xfd, 0x5a, 0x4f, 0xa5, 0xf0, 0x68, 0x3d, 0x3a, 0xf3, - 0xb7, 0x28, 0xd8, 0x40, 0x8f, 0x00, 0x06, 0xb2, 0x2e, 0xf7, 0xb1, 0x89, 0x75, 0xa3, 0x98, 0xf1, - 0xbb, 0x80, 0x88, 0xd5, 0x94, 0x0e, 0x1d, 0x6a, 0xea, 0x02, 0x3c, 0xc3, 0xd1, 0xbe, 0x65, 0x33, - 0x1d, 0x1d, 0x9b, 0x46, 0x31, 0x4b, 0x38, 0x6d, 0x27, 0x71, 0x6a, 0x51, 0x52, 0xc2, 0xa6, 0x92, - 0xfe, 0xb2, 0xc2, 0x89, 0xf6, 0x68, 0xd4, 0x84, 0x15, 0x7b, 0x81, 0x9a, 0x6a, 0x62, 0xd5, 0x94, - 0x0c, 0x6d, 0xa8, 0x77, 0x70, 0x31, 0x47, 0x76, 0x69, 0x2d, 0xb0, 0x44, 0x4a, 0xd3, 0x22, 0x24, - 0x22, 0xdb, 0x1a, 0x5f, 0x23, 0x7a, 0x06, 0xbc, 0xdc, 0xe9, 0x60, 0xc3, 0x50, 0xe8, 0x5e, 0x48, - 0x3a, 0xfe, 0x62, 0xa8, 0xe8, 0xb8, 0x8f, 0x55, 0xd3, 0x28, 0x4e, 0xfb, 0xb9, 0xb6, 0xb5, 0x81, - 0xd6, 0xd3, 0x4e, 0xcf, 0x45, 0x97, 0x46, 0xbc, 0xe6, 0x1b, 0xee, 0xe9, 0x31, 0xf8, 0x8f, 0xe0, - 0x4a, 0x60, 0x53, 0x26, 0x71, 0x7e, 0xfc, 0x0e, 0xcc, 0x79, 0x77, 0x62, 0x22, 0xc7, 0xf9, 0xbb, - 0x29, 0x58, 0x8a, 0xd8, 0x03, 0x74, 0x00, 0x33, 0x86, 0x2a, 0x0f, 0x8c, 0xe7, 0x9a, 0xc9, 0xf4, - 0xf7, 0x76, 0xc2, 0x96, 0x95, 0x5a, 0x8c, 0x96, 0x7e, 0x1e, 0x4c, 0x89, 0xce, 0x68, 0x54, 0x81, - 0x1c, 0xdd, 0xcf, 0xa0, 0xfb, 0x8a, 0xe2, 0x43, 0xdb, 0x1c, 0x2e, 0x6c, 0x24, 0xff, 0x0e, 0x2c, - 0xf8, 0x67, 0x40, 0x37, 0x20, 0x6f, 0xcf, 0x20, 0x29, 0x5d, 0xb6, 0x56, 0xb0, 0x9b, 0x6a, 0x5d, - 0xfe, 0x2d, 0x98, 0xf3, 0x32, 0x43, 0x6b, 0x30, 0xcb, 0x14, 0xc2, 0x21, 0x9f, 0xa1, 0x0d, 0xb5, - 0xae, 0x63, 0xd3, 0xdf, 0x82, 0x65, 0xbf, 0x9e, 0x31, 0x53, 0x7e, 0xdd, 0x59, 0x03, 0xdd, 0x8b, - 0x05, 0xff, 0x1a, 0x6c, 0x39, 0x85, 0x3f, 0xce, 0x42, 0x21, 0x68, 0x34, 0xe8, 0x01, 0x64, 0x8f, - 0x7b, 0x5a, 0xe7, 0x73, 0x36, 0xf6, 0xb5, 0x38, 0xeb, 0x2a, 0x55, 0x2c, 0x2a, 0xda, 0x7a, 0x30, - 0x25, 0xd2, 0x41, 0xd6, 0xe8, 0xbe, 0x36, 0x54, 0x4d, 0xb6, 0x7b, 0xf1, 0xa3, 0x1f, 0x5b, 0x54, - 0xee, 0x68, 0x32, 0x08, 0xed, 0x41, 0x9e, 0xaa, 0x9d, 0xd4, 0xd7, 0xba, 0xb8, 0x98, 0x26, 0x3c, - 0x6e, 0xc6, 0xf2, 0x28, 0x13, 0xda, 0xc7, 0x5a, 0x17, 0x8b, 0x20, 0x3b, 0x7f, 0xf3, 0xf3, 0x90, - 0xf7, 0xc8, 0xc6, 0x0f, 0x21, 0xef, 0x99, 0x0c, 0x5d, 0x85, 0xe9, 0x13, 0x43, 0x72, 0x9c, 0xf0, - 0xac, 0x98, 0x3b, 0x31, 0x88, 0x3f, 0xbd, 0x01, 0x79, 0x22, 0x85, 0x74, 0xd2, 0x93, 0x4f, 0x8d, - 0x62, 0x6a, 0x33, 0x6d, 0x9d, 0x11, 0x69, 0x7a, 0x68, 0xb5, 0xa0, 0x3b, 0xc0, 0x1c, 0x8a, 0x44, - 0xe9, 0x4e, 0x75, 0x6d, 0x38, 0x20, 0x42, 0xce, 0x8a, 0xec, 0xf6, 0x23, 0x13, 0xed, 0x5b, 0xed, - 0xfc, 0x9f, 0xa7, 0x00, 0x5c, 0x01, 0xd1, 0x03, 0xc8, 0x90, 0x35, 0x51, 0xc7, 0xbf, 0x3d, 0xc6, - 0x9a, 0x4a, 0x64, 0x61, 0x64, 0x94, 0xf0, 0x6f, 0x1c, 0x64, 0x08, 0x9b, 0xe0, 0x0d, 0xd6, 0xaa, - 0x35, 0xf6, 0xeb, 0x55, 0xa9, 0xd1, 0xdc, 0xab, 0x4a, 0x9f, 0x88, 0xb5, 0x76, 0x55, 0x2c, 0x70, - 0x68, 0x0d, 0xae, 0x7a, 0xdb, 0xc5, 0x6a, 0x79, 0xaf, 0x2a, 0x4a, 0xcd, 0x46, 0xfd, 0x69, 0x21, - 0x85, 0x78, 0x58, 0x7d, 0x7c, 0x54, 0x6f, 0xd7, 0xc2, 0x7d, 0x69, 0xb4, 0x0e, 0x45, 0x4f, 0x1f, - 0xe3, 0xc1, 0xd8, 0x66, 0x2c, 0xb6, 0x9e, 0x5e, 0xfa, 0x27, 0xeb, 0xcc, 0x22, 0x01, 0xae, 0x79, - 0xe7, 0xf4, 0x8f, 0xcd, 0x91, 0x0b, 0xd1, 0xba, 0x33, 0xbd, 0x34, 0x3e, 0x0e, 0xd3, 0x84, 0xa4, - 0x32, 0xef, 0x68, 0x00, 0xd1, 0xf0, 0x4f, 0x60, 0xde, 0x77, 0x31, 0x58, 0x61, 0x1e, 0xf3, 0x64, - 0x5d, 0xe9, 0xf8, 0xdc, 0x24, 0xa1, 0x0f, 0xb7, 0x9d, 0x16, 0xe7, 0xed, 0xd6, 0x8a, 0xd5, 0x68, - 0x9d, 0x65, 0x4f, 0xe9, 0x2b, 0x26, 0xa3, 0x49, 0x11, 0x1a, 0x20, 0x4d, 0x84, 0x40, 0xf8, 0x59, - 0x0a, 0x72, 0x4c, 0x21, 0x6e, 0x79, 0xae, 0x26, 0x1f, 0x4b, 0xbb, 0x95, 0xb2, 0xf4, 0x59, 0x64, - 0xca, 0x6f, 0x91, 0xe8, 0x00, 0x16, 0xbc, 0xfe, 0xfb, 0x85, 0x1d, 0x5c, 0x6e, 0xf9, 0xcf, 0xd9, - 0xeb, 0x44, 0x5e, 0xb0, 0x90, 0x72, 0xfe, 0xcc, 0xdb, 0x86, 0x2a, 0xb0, 0x10, 0xb8, 0x02, 0x32, - 0xa3, 0xaf, 0x80, 0xf9, 0x8e, 0xcf, 0x1b, 0x96, 0x61, 0xc9, 0xf6, 0xde, 0x3d, 0x2c, 0x99, 0xcc, - 0xbb, 0xb3, 0x2b, 0xaa, 0x10, 0xf2, 0xfa, 0xc8, 0x25, 0xb6, 0xdb, 0xf8, 0x8f, 0x01, 0x85, 0x65, - 0x9d, 0xc8, 0x55, 0x0f, 0x61, 0x29, 0xe2, 0x5e, 0x41, 0x25, 0x98, 0x25, 0x47, 0x65, 0x28, 0x26, - 0x66, 0x61, 0x6b, 0x58, 0x22, 0x97, 0xc4, 0xa2, 0x1f, 0xe8, 0xf8, 0x04, 0xeb, 0x3a, 0xee, 0x12, - 0x9b, 0x8c, 0xa4, 0x77, 0x48, 0x84, 0xdf, 0xe4, 0x60, 0xc6, 0x6e, 0x47, 0x3b, 0x30, 0x63, 0xe0, - 0x53, 0x7a, 0xe7, 0xd1, 0xb9, 0x36, 0x82, 0x63, 0x4b, 0x2d, 0x46, 0xc0, 0x02, 0x7c, 0x9b, 0xde, - 0x0a, 0xf0, 0x7d, 0x5d, 0x13, 0x2d, 0xfe, 0x2f, 0x39, 0x58, 0xda, 0xc3, 0x3d, 0x1c, 0x0c, 0x8d, - 0x92, 0xdc, 0xba, 0x37, 0x9a, 0x48, 0xf9, 0xa3, 0x89, 0x08, 0x56, 0x09, 0xd1, 0xc4, 0x85, 0x6e, - 0xd8, 0x55, 0x58, 0xf6, 0xcf, 0x46, 0xef, 0x14, 0xe1, 0x3f, 0xd2, 0xb0, 0x61, 0xe9, 0x82, 0xae, - 0xf5, 0x7a, 0x58, 0x3f, 0x1c, 0x1e, 0xf7, 0x14, 0xe3, 0xf9, 0x04, 0x8b, 0xbb, 0x0a, 0xd3, 0xaa, - 0xd6, 0xf5, 0x18, 0x4f, 0xce, 0xfa, 0xac, 0x75, 0x51, 0x15, 0x16, 0x83, 0xb1, 0xdd, 0x39, 0xf3, - 0xfc, 0xf1, 0x91, 0x5d, 0xe1, 0x2c, 0x78, 0x6d, 0xf1, 0x30, 0x63, 0x45, 0xa5, 0x9a, 0xda, 0x3b, - 0x27, 0x16, 0x33, 0x23, 0x3a, 0xdf, 0x48, 0x0c, 0x86, 0x69, 0xdf, 0x70, 0xc2, 0xb4, 0xc4, 0x15, - 0x25, 0x45, 0x6c, 0x9f, 0x85, 0x2c, 0x3e, 0x47, 0x58, 0x7f, 0x30, 0x26, 0xeb, 0x91, 0x9e, 0xe0, - 0x22, 0xa7, 0x78, 0x09, 0xe6, 0xfb, 0x77, 0x1c, 0xdc, 0x88, 0x5d, 0x02, 0x8b, 0x33, 0xba, 0x70, - 0x65, 0x40, 0x3b, 0x9c, 0x4d, 0xa0, 0x56, 0xf6, 0xe1, 0xc8, 0x4d, 0x60, 0xd9, 0x35, 0x6b, 0xf5, - 0x6d, 0xc3, 0xc2, 0xc0, 0xd7, 0xc8, 0x97, 0x61, 0x29, 0x82, 0x6c, 0xa2, 0xc5, 0xfc, 0x9c, 0x83, - 0x4d, 0x57, 0x94, 0x23, 0x75, 0x70, 0x79, 0xea, 0xdb, 0x76, 0x75, 0x8b, 0xba, 0xfc, 0xf7, 0xc2, - 0x6b, 0x8f, 0x9e, 0xf0, 0x55, 0x59, 0xf0, 0x4d, 0xd8, 0x4a, 0x98, 0x9a, 0x99, 0xf3, 0xcf, 0x32, - 0xb0, 0xf5, 0x44, 0xee, 0x29, 0x5d, 0x27, 0x7a, 0x8c, 0xc0, 0x21, 0x92, 0xb7, 0xa4, 0x13, 0xb2, - 0x00, 0xea, 0xb5, 0x1e, 0x38, 0x56, 0x3b, 0x8a, 0xff, 0x18, 0xd7, 0xe1, 0x25, 0x66, 0x7e, 0x4f, - 0x23, 0x32, 0xbf, 0x0f, 0xc6, 0x97, 0x35, 0x29, 0x0f, 0x3c, 0x0a, 0x3a, 0x98, 0xf7, 0xc7, 0xe7, - 0x9b, 0xa0, 0x05, 0x17, 0xb6, 0xe2, 0xaf, 0x33, 0x55, 0xfb, 0x9b, 0x0c, 0x08, 0x49, 0xab, 0x67, - 0x3e, 0x44, 0x84, 0xd9, 0x8e, 0xa6, 0x9e, 0x28, 0x7a, 0x1f, 0x77, 0x59, 0xca, 0xf1, 0xee, 0x38, - 0x9b, 0xc7, 0x1c, 0xc8, 0xae, 0x3d, 0x56, 0x74, 0xd9, 0xa0, 0x22, 0x4c, 0xf7, 0xb1, 0x61, 0xc8, - 0xa7, 0xb6, 0x58, 0xf6, 0x27, 0xff, 0x93, 0x34, 0xcc, 0x3a, 0x43, 0x90, 0x1a, 0xd2, 0x60, 0xea, - 0xbe, 0xf6, 0x5f, 0x46, 0x80, 0x97, 0x57, 0xe6, 0xd4, 0x4b, 0x28, 0x73, 0xd7, 0xa7, 0xcc, 0xd4, - 0x1c, 0xf6, 0x5e, 0x4a, 0xec, 0x04, 0xbd, 0xfe, 0xda, 0x15, 0x50, 0xf8, 0x65, 0x40, 0x75, 0xc5, - 0x60, 0xa9, 0x9b, 0xe3, 0x96, 0xac, 0x4c, 0x4d, 0x7e, 0x21, 0x61, 0xd5, 0xd4, 0x15, 0x16, 0xae, - 0x67, 0x45, 0xe8, 0xcb, 0x2f, 0xaa, 0xb4, 0xc5, 0x0a, 0xe9, 0x0d, 0x53, 0xd6, 0x4d, 0x45, 0x3d, - 0x95, 0x4c, 0xed, 0x73, 0xec, 0x80, 0xc1, 0x76, 0x6b, 0xdb, 0x6a, 0x14, 0xfe, 0x3d, 0x05, 0x4b, - 0x3e, 0xf6, 0x4c, 0x27, 0x3f, 0x84, 0x69, 0x97, 0xb7, 0x2f, 0x8c, 0x8f, 0xa0, 0x2e, 0xd1, 0x6d, - 0xb3, 0x47, 0xa0, 0xeb, 0x00, 0x2a, 0x7e, 0x61, 0xfa, 0xe6, 0x9d, 0xb5, 0x5a, 0xc8, 0x9c, 0xfc, - 0x6f, 0x71, 0x4e, 0xa6, 0x6f, 0xca, 0xe6, 0x90, 0x64, 0x95, 0xcc, 0x45, 0xe3, 0xae, 0xc4, 0xee, - 0x18, 0x3a, 0xef, 0xac, 0x58, 0x70, 0x7a, 0x1a, 0xe4, 0xb6, 0x31, 0xd0, 0xbe, 0x83, 0xb3, 0x76, - 0x34, 0xb5, 0xab, 0x98, 0x2e, 0xce, 0x7a, 0x35, 0x94, 0x20, 0xd0, 0xee, 0x8a, 0x95, 0x57, 0xd9, - 0xc8, 0xaa, 0xd3, 0xca, 0x7f, 0x01, 0x59, 0x7a, 0x1c, 0x63, 0x82, 0x05, 0xe8, 0x63, 0xc8, 0x19, - 0x44, 0xe2, 0x20, 0x30, 0x12, 0xb5, 0x27, 0xde, 0x15, 0x8a, 0x6c, 0x9c, 0xf0, 0x2d, 0xe0, 0xdd, - 0x8b, 0x69, 0x1f, 0x9b, 0xe3, 0x5f, 0xbf, 0x3b, 0xd6, 0x1a, 0x84, 0x3f, 0x4c, 0xc1, 0x5a, 0x24, - 0x83, 0xc9, 0x60, 0x0f, 0x74, 0x10, 0x58, 0xc9, 0xdb, 0xe1, 0x1b, 0x3b, 0xc4, 0x3c, 0x72, 0x45, - 0xfc, 0xaf, 0x5f, 0xec, 0x30, 0x2b, 0x13, 0x1f, 0x66, 0xe8, 0x1c, 0xe9, 0xce, 0xfc, 0x24, 0x05, - 0x68, 0x1f, 0x9b, 0x4e, 0xaa, 0xcc, 0xb6, 0x34, 0xc6, 0xdf, 0x70, 0x2f, 0xe1, 0x6f, 0xbe, 0xe3, - 0xf3, 0x37, 0xd4, 0x63, 0xdd, 0xf6, 0x54, 0x4e, 0x02, 0x53, 0x27, 0xde, 0x96, 0x31, 0xe9, 0x29, - 0x8d, 0xf9, 0xc7, 0x4b, 0x4f, 0x2f, 0xe8, 0x56, 0xfe, 0x95, 0x83, 0x25, 0x9f, 0xd0, 0x4c, 0x83, - 0xee, 0x02, 0x92, 0xcf, 0x64, 0xa5, 0x27, 0x5b, 0x82, 0xd9, 0xe9, 0x3f, 0x83, 0x03, 0x16, 0x9d, - 0x1e, 0x7b, 0x18, 0x7a, 0x04, 0x4b, 0x7d, 0xf9, 0x85, 0xd2, 0x1f, 0xf6, 0x25, 0xb6, 0xcf, 0x86, - 0xf2, 0x7d, 0x1b, 0x38, 0x5c, 0x0b, 0x01, 0xe8, 0x35, 0xd5, 0x7c, 0xff, 0x5d, 0x8a, 0xa0, 0x2f, - 0xb2, 0x71, 0x4c, 0x79, 0x94, 0xef, 0x63, 0x74, 0x08, 0x4b, 0x7d, 0x45, 0x0d, 0x31, 0x4b, 0x8f, - 0x64, 0x46, 0x0d, 0x7c, 0x91, 0x0d, 0x76, 0x39, 0x0a, 0x82, 0x37, 0xe8, 0x65, 0xcb, 0x0d, 0x56, - 0x9a, 0x7a, 0xde, 0x60, 0x31, 0x44, 0xc3, 0xb6, 0x65, 0x3f, 0xb2, 0xda, 0x74, 0x33, 0x6c, 0x36, - 0xac, 0xf4, 0x12, 0x5b, 0x78, 0xfa, 0x9f, 0xb4, 0xd7, 0x82, 0x43, 0xd4, 0xe8, 0x43, 0x48, 0xeb, - 0x83, 0x0e, 0x33, 0xdf, 0x37, 0xc6, 0xe0, 0x5f, 0x12, 0x0f, 0x77, 0x0f, 0xa6, 0x44, 0x6b, 0x14, - 0xff, 0x47, 0x69, 0x48, 0x8b, 0x87, 0xbb, 0xe8, 0x63, 0x5f, 0x89, 0xe5, 0xce, 0x98, 0x5c, 0xbc, - 0x15, 0x96, 0x7f, 0x48, 0x45, 0x95, 0x58, 0x8a, 0xb0, 0xbc, 0x2b, 0x56, 0xcb, 0xed, 0xaa, 0xb4, - 0x57, 0xad, 0x57, 0xdb, 0x55, 0x89, 0x56, 0x89, 0x0a, 0x1c, 0x5a, 0x87, 0xe2, 0xe1, 0x51, 0xa5, - 0x5e, 0x6b, 0x1d, 0x48, 0x47, 0x0d, 0xfb, 0x2f, 0xd6, 0x9b, 0x42, 0x05, 0x98, 0xab, 0xd7, 0x5a, - 0x6d, 0xd6, 0xd0, 0x2a, 0xa4, 0xad, 0x96, 0xfd, 0x6a, 0x5b, 0xda, 0x2d, 0x1f, 0x96, 0x77, 0x6b, - 0xed, 0xa7, 0x85, 0x0c, 0xe2, 0x61, 0xd5, 0xcf, 0xbb, 0xd5, 0x28, 0x1f, 0xb6, 0x0e, 0x9a, 0xed, - 0x42, 0x16, 0x21, 0x58, 0x20, 0xe3, 0xed, 0xa6, 0x56, 0x21, 0x67, 0x71, 0xd8, 0xad, 0x37, 0x1b, - 0x8e, 0x0c, 0xd3, 0x68, 0x19, 0x0a, 0xf6, 0xcc, 0x62, 0xb5, 0xbc, 0x47, 0x00, 0xbd, 0x19, 0xb4, - 0x08, 0xf3, 0xd5, 0xef, 0x1d, 0x96, 0x1b, 0x7b, 0x36, 0xe1, 0x2c, 0xda, 0x84, 0x75, 0xaf, 0x38, - 0x12, 0x1b, 0x55, 0xdd, 0x23, 0xa0, 0x5c, 0xab, 0x00, 0xe8, 0x1a, 0x14, 0x58, 0x01, 0x6c, 0xb7, - 0xd9, 0xd8, 0xab, 0xb5, 0x6b, 0xcd, 0x46, 0x21, 0x4f, 0x11, 0xbc, 0x25, 0x00, 0x4b, 0x72, 0xc6, - 0x6c, 0x6e, 0x34, 0xac, 0x37, 0x4f, 0x61, 0x3d, 0x1b, 0xb1, 0xfe, 0x79, 0x0a, 0x56, 0x28, 0x64, - 0x6d, 0x03, 0xe4, 0xb6, 0xaf, 0xda, 0x86, 0x02, 0xc5, 0xbb, 0xa4, 0xe0, 0x2d, 0xb0, 0x40, 0xdb, - 0x9f, 0xd8, 0x79, 0x87, 0x5d, 0x5e, 0x4a, 0x79, 0xca, 0x4b, 0xb5, 0x60, 0x16, 0x76, 0xdb, 0x5f, - 0x88, 0x09, 0xcc, 0x96, 0x94, 0xd8, 0x3f, 0x8e, 0x48, 0x13, 0xee, 0x26, 0x73, 0x4b, 0x0a, 0xa1, - 0x2e, 0x92, 0xc5, 0x5f, 0xd0, 0xcb, 0x3d, 0x84, 0xd5, 0xa0, 0xbc, 0xcc, 0xa0, 0xef, 0x84, 0xca, - 0x25, 0x8e, 0xdb, 0x75, 0x68, 0x1d, 0x0a, 0xe1, 0x87, 0x29, 0x98, 0xb1, 0x9b, 0xad, 0xf0, 0xc6, - 0xf2, 0x4b, 0x3e, 0xa4, 0x74, 0xd6, 0x6a, 0x71, 0x80, 0x57, 0x6f, 0xa1, 0x23, 0x15, 0x2c, 0x74, - 0x44, 0x9e, 0x73, 0x3a, 0xf2, 0x9c, 0xbf, 0x0d, 0xf3, 0x1d, 0x4b, 0x7c, 0x45, 0x53, 0x25, 0x53, - 0xe9, 0xdb, 0x40, 0x68, 0xb8, 0x30, 0xd9, 0xb6, 0x1f, 0x1c, 0x88, 0x73, 0xf6, 0x00, 0xab, 0x09, - 0x6d, 0xc2, 0x1c, 0x29, 0x54, 0x4a, 0xa6, 0x26, 0x0d, 0x0d, 0x5c, 0xcc, 0x12, 0x58, 0x08, 0x48, - 0x5b, 0x5b, 0x3b, 0x32, 0x30, 0xba, 0x07, 0x8b, 0x04, 0xc4, 0x97, 0xbc, 0x32, 0xe7, 0x2c, 0x69, - 0x58, 0xd4, 0x44, 0x7a, 0x5b, 0x8e, 0xf4, 0xc2, 0x5f, 0x73, 0xb0, 0x42, 0xe1, 0xb1, 0xa0, 0xfe, - 0x8e, 0xaa, 0xf0, 0x78, 0x55, 0x34, 0x70, 0x7d, 0x46, 0x32, 0x7c, 0x55, 0xe8, 0x40, 0x11, 0x56, - 0x83, 0xf3, 0x31, 0x48, 0xe0, 0xa7, 0x29, 0x58, 0xb6, 0x62, 0x39, 0xbb, 0xe3, 0xb2, 0xc3, 0xed, - 0x09, 0x8e, 0x3e, 0xb0, 0x99, 0x99, 0xd0, 0x66, 0x1e, 0x04, 0x13, 0xee, 0x37, 0xbd, 0xd1, 0x68, - 0x70, 0x05, 0xaf, 0x6a, 0x2f, 0x7f, 0xcc, 0xc1, 0x4a, 0x60, 0x3e, 0x66, 0x60, 0x1f, 0x05, 0x33, - 0x88, 0x9b, 0x31, 0xf2, 0xbd, 0x54, 0x0e, 0xf1, 0x9e, 0x1d, 0xbb, 0x4f, 0x66, 0xc7, 0xff, 0x98, - 0x82, 0xeb, 0xee, 0x2d, 0x48, 0xde, 0x16, 0x74, 0x27, 0x80, 0xc0, 0x2e, 0x56, 0xc2, 0xff, 0x6e, - 0xd0, 0x43, 0xdf, 0x0f, 0x5f, 0xcc, 0x11, 0x22, 0x25, 0x79, 0xea, 0x48, 0xe4, 0x38, 0x33, 0x29, - 0x72, 0x7c, 0x21, 0x0d, 0xf8, 0x35, 0x2f, 0x28, 0xee, 0x17, 0x9f, 0x69, 0xc2, 0x98, 0xd5, 0xa5, - 0xf7, 0xe1, 0x2a, 0x49, 0x17, 0x9c, 0xd7, 0x33, 0x76, 0xc1, 0x9e, 0xfa, 0xd0, 0x19, 0x71, 0xc5, - 0xea, 0x76, 0xde, 0x83, 0xb0, 0x8a, 0x4a, 0x57, 0xf8, 0x2a, 0x03, 0xab, 0x56, 0x3a, 0xd1, 0x32, - 0xe5, 0xd3, 0x49, 0x6a, 0x0d, 0xbf, 0x14, 0x86, 0x6e, 0x53, 0xfe, 0x63, 0x89, 0xe6, 0x3a, 0x0e, - 0x62, 0x8b, 0x4a, 0xb0, 0x64, 0x98, 0xf2, 0x29, 0x71, 0x07, 0xb2, 0x7e, 0x8a, 0x4d, 0x69, 0x20, - 0x9b, 0xcf, 0x99, 0xad, 0x2f, 0xb2, 0xae, 0x36, 0xe9, 0x39, 0x94, 0xcd, 0xe7, 0x97, 0x74, 0x90, - 0xe8, 0x3b, 0x41, 0xa7, 0xf0, 0xd6, 0x88, 0xb5, 0x24, 0xe8, 0xd6, 0xf7, 0x62, 0xe0, 0xfd, 0x77, - 0x46, 0xb0, 0x1c, 0x0d, 0xeb, 0x5f, 0x1c, 0xce, 0xfe, 0x9a, 0x2b, 0x03, 0xd7, 0xe0, 0x6a, 0x68, - 0xf1, 0xec, 0x0a, 0x39, 0x85, 0xa2, 0xd5, 0x75, 0xa4, 0x1a, 0x13, 0xaa, 0x63, 0x8c, 0xc6, 0xa4, - 0x62, 0x34, 0x46, 0x58, 0x83, 0x6b, 0x11, 0x13, 0x31, 0x29, 0xfe, 0x22, 0x4b, 0xc5, 0x98, 0xbc, - 0x48, 0xf5, 0x69, 0x9c, 0x55, 0xbc, 0xeb, 0x3d, 0xf6, 0xc8, 0x7a, 0xce, 0xab, 0xb0, 0x8b, 0x1b, - 0x90, 0xf7, 0xd2, 0xb1, 0x6b, 0xd0, 0x1c, 0x61, 0x38, 0xd9, 0x0b, 0xd5, 0xce, 0x72, 0x81, 0xda, - 0x59, 0xdd, 0x35, 0xaa, 0x69, 0x7f, 0x2c, 0x1c, 0xbb, 0x15, 0x09, 0x66, 0xf5, 0x2c, 0x64, 0x56, - 0x33, 0xfe, 0x82, 0x5c, 0x2c, 0xd3, 0x5f, 0x00, 0xc3, 0x62, 0x4a, 0x1d, 0x59, 0x29, 0x13, 0x9e, - 0x01, 0x4f, 0x35, 0x7e, 0xf2, 0xda, 0x55, 0x40, 0x8d, 0x52, 0x41, 0x35, 0x12, 0xae, 0xc3, 0x5a, - 0x24, 0x6f, 0x36, 0xf5, 0xef, 0x70, 0x54, 0x30, 0x07, 0x14, 0x6b, 0x99, 0xb2, 0x69, 0x8c, 0x3b, - 0x35, 0xeb, 0xf4, 0x4e, 0x4d, 0x9b, 0x88, 0x06, 0x4f, 0x68, 0x12, 0xc2, 0xef, 0x71, 0x74, 0x1f, - 0x82, 0xb2, 0xb0, 0xdb, 0xf6, 0x4d, 0xc8, 0x0e, 0x09, 0xee, 0x4f, 0xa3, 0xae, 0x25, 0xbf, 0x11, - 0x1c, 0x59, 0x5d, 0x22, 0xa5, 0xb8, 0x34, 0x24, 0x55, 0xf8, 0x29, 0x07, 0x79, 0x0f, 0x7f, 0xb4, - 0x0e, 0xb3, 0x0e, 0x54, 0x64, 0x27, 0x48, 0x4e, 0x83, 0x75, 0xfc, 0xa6, 0x66, 0xca, 0x3d, 0xf6, - 0x26, 0x85, 0x7e, 0x58, 0x39, 0xed, 0xd0, 0xc0, 0x34, 0x1c, 0x4e, 0x8b, 0xe4, 0x6f, 0x74, 0x07, - 0x32, 0x43, 0x55, 0x31, 0x89, 0xd9, 0x2f, 0x04, 0xed, 0x99, 0x4c, 0x55, 0x3a, 0x52, 0x15, 0x53, - 0x24, 0x54, 0xc2, 0x6d, 0xc8, 0x58, 0x5f, 0x7e, 0xc8, 0x62, 0x16, 0xb2, 0x95, 0xa7, 0xed, 0x6a, - 0xab, 0xc0, 0x21, 0x80, 0x5c, 0x8d, 0x26, 0xf8, 0x29, 0xa1, 0x6e, 0xbf, 0x4b, 0x75, 0x16, 0x61, - 0xb9, 0x00, 0xf9, 0x58, 0xd5, 0xf4, 0xbe, 0xdc, 0x23, 0x32, 0xcf, 0x88, 0xce, 0x77, 0x7c, 0x39, - 0x85, 0x82, 0x8f, 0xeb, 0xce, 0x89, 0x44, 0x01, 0x4c, 0x9f, 0x51, 0xdd, 0x8a, 0x83, 0x96, 0xca, - 0x91, 0xd0, 0xd2, 0x75, 0xdf, 0x2d, 0x3b, 0x02, 0x54, 0xfa, 0xdb, 0x14, 0xac, 0x44, 0xd2, 0xa1, - 0xf7, 0xbc, 0x70, 0xd2, 0x56, 0x22, 0x4f, 0x2f, 0x90, 0xf4, 0x15, 0x47, 0x81, 0xa4, 0x1d, 0x1f, - 0x90, 0xf4, 0xfa, 0xc8, 0xf1, 0x5e, 0x08, 0xe9, 0xc7, 0x5c, 0x0c, 0x84, 0xd4, 0x6a, 0x97, 0xf7, - 0xab, 0xd2, 0x51, 0x83, 0xfe, 0xeb, 0x40, 0x48, 0xcb, 0x50, 0x70, 0x81, 0x15, 0xa9, 0xd5, 0x2e, - 0x93, 0x47, 0xc6, 0x21, 0xf8, 0x26, 0x1d, 0x09, 0xce, 0x64, 0x46, 0xe3, 0x30, 0x59, 0x4a, 0xb2, - 0x0a, 0x88, 0x8d, 0x7e, 0xdc, 0x3c, 0x6a, 0xb4, 0x25, 0xf2, 0x84, 0xb9, 0x90, 0x73, 0xf0, 0x99, - 0x65, 0x40, 0xec, 0xb4, 0xbc, 0x2f, 0xf1, 0xff, 0x84, 0x83, 0x25, 0x5f, 0x33, 0x3b, 0x3c, 0x4f, - 0x51, 0x9c, 0xf3, 0x15, 0xc5, 0xef, 0xc1, 0xb2, 0x95, 0x31, 0x52, 0x4b, 0x31, 0xa4, 0x01, 0xd6, - 0x09, 0x18, 0xce, 0x74, 0x7e, 0xb1, 0x2f, 0xbf, 0x60, 0x05, 0x83, 0x43, 0xac, 0x5b, 0x8c, 0x2f, - 0x01, 0x12, 0x16, 0xbe, 0x4c, 0xd3, 0xb8, 0x64, 0xe2, 0xbc, 0x66, 0xa4, 0x8f, 0x0a, 0x27, 0x3e, - 0xe9, 0x09, 0x12, 0x9f, 0x18, 0x0f, 0x97, 0x99, 0x28, 0x18, 0x9e, 0xfc, 0x4e, 0x6f, 0xb8, 0xf7, - 0x36, 0x8d, 0x5c, 0xef, 0x78, 0xf5, 0x77, 0x64, 0xa6, 0x95, 0xfb, 0xb2, 0xc2, 0xfd, 0xe8, 0xb2, - 0xf2, 0xe4, 0x32, 0x8d, 0xc7, 0x2e, 0x90, 0x1f, 0x09, 0x77, 0xe0, 0x16, 0x79, 0x56, 0x39, 0x0a, - 0xd0, 0xa6, 0x2e, 0xe9, 0x57, 0xe1, 0xf5, 0x51, 0xd4, 0x6c, 0xfa, 0x7a, 0xa4, 0xff, 0x71, 0x6a, - 0x5b, 0x01, 0x2e, 0x23, 0x5c, 0x11, 0x9d, 0xfc, 0xb7, 0x53, 0xb0, 0x39, 0x6a, 0x1c, 0xfa, 0xd8, - 0xeb, 0x9a, 0xee, 0x8c, 0x3b, 0x9d, 0xd7, 0x4b, 0xfd, 0x01, 0xf3, 0x52, 0x55, 0x9f, 0x97, 0x7a, - 0x67, 0x12, 0x56, 0x5e, 0x87, 0x55, 0x8d, 0xf2, 0x57, 0x6f, 0xc3, 0x1b, 0x7e, 0x58, 0xda, 0xe3, - 0xa3, 0xe8, 0xaf, 0x1f, 0x1c, 0x9c, 0x9a, 0x23, 0x0e, 0x66, 0xc7, 0x87, 0xf6, 0xfe, 0x7e, 0x1a, - 0x36, 0xbd, 0x0f, 0x94, 0xf7, 0xbd, 0x68, 0x5a, 0xd2, 0xaf, 0x05, 0x6e, 0xc3, 0x62, 0x10, 0x29, - 0xb2, 0x1f, 0xe4, 0x5e, 0xf1, 0x43, 0x45, 0x46, 0xd2, 0x03, 0x9c, 0x11, 0x53, 0x27, 0xe7, 0x7f, - 0x61, 0x14, 0xf8, 0x9b, 0x63, 0x33, 0xfe, 0xff, 0x09, 0x08, 0x53, 0xf5, 0xec, 0xc1, 0x56, 0x82, - 0xfc, 0xcc, 0x2c, 0x2a, 0xb0, 0xe0, 0x07, 0x46, 0x99, 0xa6, 0x06, 0x5e, 0xa1, 0xfa, 0x07, 0xcf, - 0xfb, 0xd0, 0x52, 0x3a, 0xdb, 0x3f, 0x73, 0xf6, 0x83, 0x7d, 0x1f, 0xad, 0x75, 0xc2, 0x61, 0xe4, - 0x95, 0x2e, 0x22, 0x08, 0xba, 0xa2, 0x12, 0xcc, 0xda, 0x54, 0x46, 0xf0, 0x09, 0xa8, 0x33, 0xb9, - 0x4b, 0x12, 0x06, 0x8e, 0xd3, 0x17, 0x04, 0x8e, 0x33, 0x41, 0xe0, 0x98, 0xae, 0xed, 0x87, 0x29, - 0xd8, 0xf4, 0xbe, 0x95, 0x8c, 0x54, 0xef, 0x49, 0x16, 0xba, 0x05, 0x73, 0x1e, 0x2a, 0x5b, 0xe3, - 0xf3, 0x2e, 0xee, 0x99, 0xa4, 0xed, 0xa3, 0x24, 0x79, 0x45, 0x20, 0x28, 0xdd, 0x8a, 0x6d, 0xd8, - 0x4a, 0x98, 0x9f, 0x2a, 0x15, 0xa5, 0xfc, 0x41, 0x8a, 0xfc, 0xb6, 0xed, 0xff, 0x6e, 0xc7, 0xe2, - 0x81, 0xc7, 0x44, 0x31, 0x5e, 0xe9, 0x76, 0x29, 0xb0, 0x11, 0x37, 0xf9, 0x25, 0x1b, 0xe0, 0xfd, - 0xff, 0xe6, 0x60, 0xa6, 0xd6, 0xc5, 0xaa, 0x49, 0x83, 0x82, 0x79, 0xdf, 0xaf, 0x1c, 0xd1, 0x7a, - 0xcc, 0x8f, 0x1f, 0xc9, 0x16, 0xf0, 0xd7, 0x13, 0x7f, 0x1a, 0x29, 0x4c, 0xa1, 0x13, 0xcf, 0x2f, - 0x34, 0x7d, 0xcf, 0x05, 0x5e, 0x0b, 0x8d, 0x8c, 0xb8, 0xab, 0xf9, 0x5b, 0x23, 0xa8, 0x9c, 0x79, - 0xde, 0x87, 0x2c, 0xf9, 0xb1, 0x1a, 0x5a, 0x76, 0x7e, 0x30, 0xe7, 0xf9, 0x2d, 0x1b, 0xbf, 0x12, - 0x68, 0xb5, 0xc7, 0xdd, 0xff, 0xfb, 0x59, 0x00, 0xf7, 0x0e, 0x44, 0x8f, 0x60, 0xce, 0xeb, 0xfa, - 0xd0, 0x5a, 0xc2, 0xaf, 0xb5, 0xf8, 0xf5, 0xe8, 0x4e, 0x47, 0xa6, 0x47, 0x30, 0xe7, 0x55, 0x79, - 0x97, 0x59, 0xc4, 0x63, 0x6d, 0x97, 0x59, 0xe4, 0xdb, 0xea, 0x29, 0xd4, 0x83, 0xab, 0x31, 0x4f, - 0x65, 0xd1, 0xeb, 0xe3, 0x3d, 0x28, 0xe6, 0xdf, 0x18, 0xf3, 0xcd, 0xad, 0x30, 0x85, 0x74, 0xb8, - 0x16, 0xfb, 0x42, 0x14, 0x6d, 0x8f, 0xfb, 0x7e, 0x95, 0x7f, 0x73, 0x0c, 0x4a, 0x67, 0xce, 0x21, - 0xf0, 0xf1, 0xcf, 0xd2, 0xd0, 0x9b, 0x63, 0xbf, 0x97, 0xe4, 0x6f, 0x8f, 0xff, 0xca, 0x4d, 0x98, - 0x42, 0x07, 0x90, 0xf7, 0xbc, 0x4f, 0x42, 0x7c, 0xe4, 0xa3, 0x25, 0xca, 0x78, 0x2d, 0xe1, 0x41, - 0x13, 0xe5, 0xe4, 0x79, 0x32, 0xe2, 0x72, 0x0a, 0x3f, 0x7e, 0x71, 0x39, 0x45, 0xbc, 0x31, 0x09, - 0x6e, 0x7f, 0x20, 0x30, 0x8d, 0xda, 0xfe, 0xe8, 0x48, 0x37, 0x6a, 0xfb, 0x63, 0xa2, 0x5c, 0x61, - 0x0a, 0x7d, 0x17, 0x16, 0xfc, 0xb5, 0x60, 0x74, 0x3d, 0xb1, 0xa6, 0xcd, 0x6f, 0xc4, 0x75, 0x7b, - 0x59, 0xfa, 0x2b, 0x89, 0x2e, 0xcb, 0xc8, 0x8a, 0xa6, 0xcb, 0x32, 0xa6, 0x00, 0x39, 0x65, 0xf9, - 0x27, 0x5f, 0x7d, 0xcc, 0xf5, 0x4f, 0x51, 0x65, 0x3d, 0xd7, 0x3f, 0x45, 0x16, 0xd5, 0x84, 0x29, - 0xa4, 0xc0, 0x6a, 0x74, 0x79, 0x06, 0xdd, 0x1a, 0xab, 0xfa, 0xc4, 0xbf, 0x3e, 0x8a, 0xcc, 0x99, - 0xaa, 0x03, 0x4b, 0x11, 0xcf, 0xc7, 0x90, 0x90, 0xf8, 0xb6, 0x8c, 0x4e, 0x72, 0x73, 0x8c, 0xf7, - 0x67, 0x02, 0x71, 0xe6, 0xff, 0x95, 0x86, 0x2b, 0x81, 0xc0, 0x1e, 0xfd, 0x06, 0x07, 0x1b, 0xc9, - 0xc9, 0x0e, 0xba, 0x1b, 0x93, 0x14, 0xc4, 0x28, 0x56, 0x69, 0x5c, 0x72, 0x8f, 0x71, 0x5f, 0x8b, - 0x8d, 0x29, 0xd1, 0xf6, 0xb8, 0x61, 0xb3, 0x47, 0xa3, 0x47, 0x05, 0xa8, 0x64, 0x3b, 0xac, 0x69, - 0x63, 0xa3, 0x0e, 0xb4, 0x3d, 0x6e, 0x60, 0xe4, 0x4e, 0x3b, 0x32, 0x84, 0xa1, 0xd3, 0xf6, 0x60, - 0x35, 0xfa, 0xf6, 0x46, 0xb7, 0xc6, 0x0a, 0x2d, 0x5c, 0xad, 0x4a, 0x0e, 0x02, 0xc8, 0x6c, 0x24, - 0xad, 0xba, 0xff, 0x2f, 0x59, 0xc8, 0x10, 0xa0, 0xa4, 0x0d, 0x57, 0x02, 0xc5, 0x17, 0xb4, 0x91, - 0x5c, 0x92, 0xe2, 0x6f, 0xc4, 0xf6, 0x3b, 0xe7, 0xf7, 0x0c, 0x16, 0x43, 0xe5, 0x14, 0xb4, 0xe9, - 0x1d, 0x17, 0x55, 0xd2, 0xe1, 0xb7, 0x12, 0x28, 0x82, 0xbc, 0xfd, 0x97, 0xda, 0xe6, 0x28, 0xbc, - 0xdf, 0xcf, 0x3b, 0xee, 0x22, 0xfb, 0x8c, 0xe2, 0x52, 0xc1, 0x2b, 0x4c, 0xf0, 0xcb, 0x15, 0x79, - 0x79, 0xdd, 0x4c, 0xa4, 0x71, 0x66, 0xf8, 0xd4, 0x01, 0xc4, 0x3c, 0x70, 0x33, 0xf2, 0x09, 0x17, - 0x09, 0x8b, 0xf3, 0x42, 0x12, 0x89, 0xc3, 0xfe, 0x13, 0x28, 0x04, 0x91, 0x11, 0x74, 0x63, 0x04, - 0x50, 0xc3, 0x6f, 0xc6, 0x13, 0x04, 0x77, 0x26, 0xe8, 0x09, 0x82, 0x52, 0x45, 0x99, 0xff, 0xcd, - 0x44, 0x1a, 0xef, 0x7d, 0xe8, 0xc1, 0x04, 0xdd, 0xfb, 0x30, 0x8c, 0x1f, 0xba, 0xf7, 0x61, 0x04, - 0x88, 0x28, 0x4c, 0xed, 0x3c, 0x00, 0x90, 0x7b, 0x83, 0xe7, 0xb2, 0x84, 0xd5, 0x61, 0x1f, 0xad, - 0x87, 0xd2, 0xb4, 0xaa, 0x3a, 0xec, 0x37, 0x07, 0x56, 0x76, 0x66, 0x14, 0xff, 0x6c, 0x86, 0xe4, - 0x62, 0xb3, 0x64, 0x80, 0xd5, 0xb1, 0x53, 0x87, 0x82, 0x3b, 0x5a, 0x22, 0x81, 0x36, 0xda, 0x8a, - 0xe4, 0x41, 0x5e, 0x4b, 0x06, 0x18, 0x2d, 0x38, 0x8c, 0x48, 0xef, 0xce, 0x47, 0x00, 0x1d, 0x43, - 0x91, 0x68, 0xa4, 0x8f, 0xae, 0x87, 0xf8, 0x3c, 0x54, 0x70, 0xaf, 0x6b, 0xf3, 0xf8, 0x53, 0x26, - 0x4c, 0xc7, 0x50, 0x68, 0x3e, 0xb0, 0xf3, 0x6d, 0xc8, 0x53, 0x61, 0x4e, 0x2c, 0xba, 0x51, 0xe3, - 0x99, 0x0c, 0x74, 0xf5, 0xa4, 0x67, 0xa7, 0x0a, 0xf3, 0x94, 0x01, 0x83, 0xd8, 0xd1, 0x8d, 0x10, - 0x8b, 0xc7, 0xb4, 0x27, 0xc0, 0x64, 0x8e, 0x0c, 0x63, 0x7d, 0x3b, 0x15, 0x98, 0xb3, 0xd9, 0x98, - 0xcf, 0xb5, 0x2e, 0xda, 0x88, 0xe0, 0x62, 0x75, 0x04, 0x98, 0xe4, 0x19, 0x13, 0xab, 0xcb, 0x15, - 0xc5, 0xfe, 0x3f, 0x3e, 0xc2, 0xa2, 0x30, 0x54, 0x29, 0x52, 0x14, 0xd6, 0x57, 0xc9, 0x3e, 0x4b, - 0x77, 0x0c, 0xe5, 0x38, 0x47, 0x06, 0x7d, 0xe3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x0c, 0x79, - 0xd8, 0xd8, 0x90, 0x46, 0x00, 0x00, + // 4289 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5c, 0x4d, 0x6c, 0x24, 0x49, + 0x56, 0x76, 0xd6, 0x9f, 0xed, 0xe7, 0x9f, 0x2e, 0x87, 0xdd, 0xee, 0xea, 0xb4, 0xdb, 0x6d, 0x67, + 0x4f, 0xf7, 0x78, 0x7a, 0xba, 0xab, 0x67, 0xbc, 0x33, 0xa3, 0x1d, 0x4f, 0xcf, 0xee, 0x54, 0xd9, + 0xd5, 0x76, 0x6d, 0x97, 0xab, 0xbc, 0x59, 0xe5, 0x9e, 0xe9, 0x86, 0x51, 0x4e, 0xba, 0x2a, 0xed, + 0x4e, 0x4d, 0x55, 0x66, 0x4d, 0x66, 0x96, 0x69, 0x2f, 0x07, 0x60, 0x11, 0x62, 0x11, 0x17, 0x04, + 0x12, 0x0c, 0x27, 0x56, 0x80, 0xc4, 0x65, 0x57, 0x2b, 0x84, 0x10, 0x12, 0x17, 0x24, 0x6e, 0x70, + 0xe2, 0x08, 0x5c, 0x16, 0x09, 0x09, 0xa4, 0x15, 0x48, 0xc3, 0x85, 0x03, 0x27, 0x94, 0x11, 0x91, + 0x99, 0x91, 0xbf, 0x55, 0xd5, 0x76, 0x33, 0x48, 0x7b, 0x6a, 0x57, 0xc4, 0x7b, 0x2f, 0x5e, 0x44, + 0xbc, 0x78, 0xf1, 0xde, 0xf7, 0x22, 0x1b, 0xde, 0x3d, 0x55, 0xad, 0xe7, 0x83, 0xe3, 0x62, 0x5b, + 0xef, 0x3d, 0x68, 0xeb, 0x9a, 0x25, 0xab, 0x9a, 0x62, 0xdc, 0x37, 0x2d, 0xdd, 0x90, 0x4f, 0x95, + 0xfb, 0xaa, 0x66, 0x29, 0xc6, 0x89, 0xdc, 0x56, 0x1e, 0x98, 0x7d, 0xa5, 0xfd, 0xa0, 0x6d, 0xaa, + 0xc5, 0xbe, 0xa1, 0x5b, 0x3a, 0xca, 0xd9, 0x7f, 0x9e, 0xbd, 0xcd, 0xaf, 0x9f, 0xea, 0xfa, 0x69, + 0x57, 0x79, 0x80, 0x5b, 0x8f, 0x07, 0x27, 0x0f, 0x3a, 0x8a, 0xd9, 0x36, 0xd4, 0xbe, 0xa5, 0x1b, + 0x84, 0x92, 0xbf, 0x19, 0xa4, 0xb0, 0xd4, 0x9e, 0x62, 0x5a, 0x72, 0xaf, 0x4f, 0x09, 0xd6, 0x82, + 0x04, 0xbf, 0x64, 0xc8, 0xfd, 0xbe, 0x62, 0x98, 0xa4, 0x5f, 0x58, 0x86, 0xa5, 0x3d, 0xc5, 0x3a, + 0xec, 0x0e, 0x4e, 0x55, 0xad, 0xaa, 0x9d, 0xe8, 0xa2, 0xf2, 0xc5, 0x40, 0x31, 0x2d, 0xe1, 0x1f, + 0x39, 0xb8, 0x1a, 0xe8, 0x30, 0xfb, 0xba, 0x66, 0x2a, 0x08, 0x41, 0x46, 0x93, 0x7b, 0x4a, 0x81, + 0x5b, 0xe7, 0x36, 0xa7, 0x45, 0xfc, 0x37, 0xba, 0x0d, 0xf3, 0x67, 0x8a, 0xd6, 0xd1, 0x0d, 0xe9, + 0x4c, 0x31, 0x4c, 0x55, 0xd7, 0x0a, 0x29, 0xdc, 0x3b, 0x47, 0x5a, 0x9f, 0x90, 0x46, 0xb4, 0x07, + 0x53, 0x3d, 0x59, 0x53, 0x4f, 0x14, 0xd3, 0x2a, 0xa4, 0xd7, 0xd3, 0x9b, 0x33, 0x5b, 0x6f, 0x16, + 0xc9, 0x54, 0x8b, 0x91, 0x63, 0x15, 0x0f, 0x28, 0x75, 0x45, 0xb3, 0x8c, 0x73, 0xd1, 0x65, 0xe6, + 0x3f, 0x80, 0x39, 0x5f, 0x17, 0xca, 0x43, 0xfa, 0x73, 0xe5, 0x9c, 0xea, 0x64, 0xff, 0x89, 0x96, + 0x20, 0x7b, 0x26, 0x77, 0x07, 0x0a, 0xd5, 0x84, 0xfc, 0xd8, 0x4e, 0x7d, 0x93, 0x13, 0xd6, 0x60, + 0xd5, 0x1d, 0x6d, 0x47, 0xee, 0xcb, 0xc7, 0x6a, 0x57, 0xb5, 0x54, 0xc5, 0x74, 0xa6, 0xfe, 0x29, + 0xdc, 0x88, 0xe9, 0xa7, 0x2b, 0xf0, 0x10, 0x66, 0xdb, 0x4c, 0x7b, 0x81, 0xc3, 0x53, 0x29, 0x38, + 0x53, 0x09, 0x70, 0x9e, 0x8b, 0x3e, 0x6a, 0xe1, 0xbf, 0xd2, 0x90, 0x0f, 0x92, 0xa0, 0x87, 0x30, + 0x69, 0x2a, 0xc6, 0x99, 0xda, 0x26, 0xeb, 0x3a, 0xb3, 0xb5, 0x1e, 0x27, 0xad, 0xd8, 0x24, 0x74, + 0xfb, 0x13, 0xa2, 0xc3, 0x82, 0x8e, 0x20, 0x7f, 0xa6, 0x77, 0x07, 0x3d, 0x45, 0x52, 0x5e, 0xf4, + 0x65, 0xcd, 0xdd, 0x80, 0x99, 0xad, 0xcd, 0x58, 0x31, 0x4f, 0x30, 0x43, 0xc5, 0xa1, 0xdf, 0x9f, + 0x10, 0xaf, 0x9c, 0xf9, 0x9b, 0xf8, 0xbf, 0xe6, 0x60, 0x92, 0x8e, 0x86, 0xde, 0x87, 0x8c, 0x75, + 0xde, 0x27, 0xda, 0xcd, 0x6f, 0xdd, 0x1e, 0xa6, 0x5d, 0xb1, 0x75, 0xde, 0x57, 0x44, 0xcc, 0x22, + 0x58, 0x90, 0xb1, 0x7f, 0xa1, 0x19, 0x98, 0x3c, 0xaa, 0x3f, 0xae, 0x37, 0x3e, 0xae, 0xe7, 0x27, + 0xd0, 0x32, 0xa0, 0x9d, 0x46, 0xbd, 0x25, 0x36, 0x6a, 0xb5, 0x8a, 0x28, 0x35, 0x2b, 0xe2, 0x93, + 0xea, 0x4e, 0x25, 0xcf, 0xa1, 0xd7, 0x60, 0xfd, 0x49, 0xa3, 0x76, 0x74, 0x50, 0x91, 0x4a, 0x3b, + 0x3b, 0x95, 0x66, 0xb3, 0x5a, 0xae, 0xd6, 0xaa, 0xad, 0xa7, 0xd2, 0x4e, 0xa3, 0xde, 0x6c, 0x89, + 0xa5, 0x6a, 0xbd, 0xd5, 0xcc, 0xa7, 0xd0, 0x06, 0x14, 0xf6, 0xc4, 0xc6, 0xd1, 0xa1, 0x14, 0x21, + 0x23, 0xcd, 0xa7, 0x7f, 0x58, 0xe6, 0xf8, 0xef, 0x73, 0x70, 0x25, 0x30, 0x47, 0x54, 0xf2, 0x4d, + 0xe2, 0xfe, 0xa8, 0x6b, 0xc3, 0x4e, 0xe6, 0x5e, 0xd4, 0x64, 0x00, 0x72, 0x8d, 0x7a, 0xad, 0x5a, + 0xb7, 0x27, 0x30, 0x03, 0x93, 0x8d, 0x47, 0x8f, 0xf0, 0x8f, 0x54, 0x39, 0x47, 0x06, 0x14, 0xe6, + 0x61, 0xf6, 0xd0, 0xd0, 0x8f, 0x15, 0xc7, 0xc4, 0x4a, 0x30, 0x47, 0x7f, 0x53, 0x93, 0x7a, 0x0b, + 0xb2, 0x86, 0x22, 0x77, 0xce, 0xe9, 0xee, 0xf3, 0x45, 0x72, 0x6c, 0x8b, 0xce, 0xb1, 0x2d, 0x96, + 0x75, 0xbd, 0xfb, 0xc4, 0x36, 0x61, 0x91, 0x10, 0x0a, 0x7f, 0x98, 0x83, 0xc5, 0x1d, 0x43, 0x91, + 0x2d, 0x85, 0x68, 0x4b, 0x45, 0x47, 0x1e, 0xcf, 0x87, 0x30, 0x6f, 0x9b, 0x60, 0x5b, 0xb5, 0xce, + 0x25, 0x43, 0xd6, 0x4e, 0x15, 0x6a, 0x1d, 0x57, 0x9d, 0x15, 0xd8, 0xa1, 0xbd, 0xa2, 0xdd, 0x29, + 0xce, 0xb5, 0xd9, 0x9f, 0xa8, 0x0a, 0x8b, 0xd4, 0xba, 0x7c, 0x56, 0x9f, 0xf6, 0x5b, 0x3d, 0xd1, + 0x82, 0xb1, 0x7a, 0x74, 0xe6, 0x6f, 0x51, 0x15, 0x13, 0x3d, 0x06, 0xe8, 0xcb, 0x86, 0xdc, 0x53, + 0x2c, 0xc5, 0x30, 0x0b, 0x19, 0xbf, 0x0b, 0x88, 0x98, 0x4d, 0xf1, 0xd0, 0xa5, 0x26, 0x2e, 0x80, + 0x61, 0x47, 0x7b, 0xf6, 0x99, 0x69, 0x1b, 0x8a, 0x65, 0x16, 0xb2, 0x58, 0xd2, 0x66, 0x92, 0xa4, + 0x26, 0x21, 0xc5, 0x62, 0xca, 0xe9, 0x2f, 0xcb, 0x9c, 0xe8, 0x70, 0xa3, 0x06, 0x5c, 0x75, 0x26, + 0xa8, 0x6b, 0x96, 0xa2, 0x59, 0x92, 0xa9, 0x0f, 0x8c, 0xb6, 0x52, 0xc8, 0xe1, 0x55, 0x5a, 0x09, + 0x4c, 0x91, 0xd0, 0x34, 0x31, 0x89, 0x48, 0x97, 0xc6, 0xd7, 0x88, 0x9e, 0x01, 0x2f, 0xb7, 0xdb, + 0x8a, 0x69, 0xaa, 0x64, 0x2d, 0x24, 0x43, 0xf9, 0x62, 0xa0, 0x1a, 0x4a, 0x4f, 0xd1, 0x2c, 0xb3, + 0x30, 0xe9, 0x97, 0xda, 0xd2, 0xfb, 0x7a, 0x57, 0x3f, 0x3d, 0x17, 0x3d, 0x1a, 0xf1, 0xba, 0x8f, + 0x9d, 0xe9, 0x31, 0x91, 0x0c, 0xa8, 0x37, 0xb0, 0xe4, 0xe3, 0xae, 0x22, 0x31, 0x4b, 0x39, 0x85, + 0x17, 0x60, 0x2b, 0x69, 0x01, 0x0e, 0x08, 0x57, 0x70, 0x45, 0x17, 0x7a, 0xc1, 0x76, 0xfe, 0x43, + 0xb8, 0x12, 0xa0, 0x1a, 0xc7, 0xbf, 0xf2, 0xdb, 0x30, 0xcb, 0x2e, 0xf6, 0x58, 0xbc, 0xbb, 0xb0, + 0x1c, 0xad, 0xe7, 0x58, 0x1e, 0xfe, 0xb7, 0x53, 0xb0, 0x18, 0xb1, 0x59, 0x68, 0x1f, 0xa6, 0x4c, + 0x4d, 0xee, 0x9b, 0xcf, 0x75, 0x8b, 0x1e, 0xb4, 0xbb, 0x09, 0x7b, 0x5b, 0x6c, 0x52, 0x5a, 0xf2, + 0x73, 0x7f, 0x42, 0x74, 0xb9, 0x51, 0x19, 0x72, 0x64, 0xe3, 0x83, 0x7e, 0x36, 0x4a, 0x0e, 0x69, + 0x73, 0xa5, 0x50, 0x4e, 0xfe, 0x6d, 0x98, 0xf7, 0x8f, 0x80, 0x6e, 0xc2, 0x8c, 0x33, 0x82, 0xa4, + 0x76, 0xe8, 0x5c, 0xc1, 0x69, 0xaa, 0x76, 0xf8, 0x37, 0x61, 0x96, 0x15, 0x86, 0x56, 0x60, 0x9a, + 0x5a, 0xae, 0x4b, 0x3e, 0x45, 0x1a, 0xaa, 0x1d, 0xd7, 0xf9, 0x7c, 0x0b, 0x96, 0xfc, 0xf6, 0x40, + 0x7d, 0xce, 0x1d, 0x77, 0x0e, 0x64, 0x2d, 0xe6, 0xfd, 0x73, 0x70, 0xf4, 0x14, 0xfe, 0x28, 0x0b, + 0xf9, 0xe0, 0xe9, 0x46, 0x0f, 0x21, 0x7b, 0xdc, 0xd5, 0xdb, 0x9f, 0x53, 0xde, 0xd7, 0xe2, 0xdc, + 0x40, 0xb1, 0x6c, 0x53, 0x91, 0xd6, 0xfd, 0x09, 0x91, 0x30, 0xd9, 0xdc, 0x3d, 0x7d, 0xa0, 0x59, + 0x74, 0xf5, 0xe2, 0xb9, 0x0f, 0x6c, 0x2a, 0x8f, 0x1b, 0x33, 0xa1, 0x5d, 0x98, 0x21, 0xe7, 0x43, + 0xea, 0xe9, 0x1d, 0xa5, 0x90, 0xc6, 0x32, 0x6e, 0xc5, 0xca, 0x28, 0x61, 0xda, 0x03, 0xbd, 0xa3, + 0x88, 0x20, 0xbb, 0x7f, 0xf3, 0x73, 0x30, 0xc3, 0xe8, 0xc6, 0x0f, 0x60, 0x86, 0x19, 0x0c, 0x5d, + 0x83, 0xc9, 0x13, 0x53, 0x72, 0x6f, 0x8b, 0x69, 0x31, 0x77, 0x62, 0x62, 0xc7, 0x7f, 0x13, 0x66, + 0xb0, 0x16, 0xd2, 0x49, 0x57, 0x3e, 0x35, 0x0b, 0xa9, 0xf5, 0xb4, 0xbd, 0x47, 0xb8, 0xe9, 0x91, + 0xdd, 0x82, 0xee, 0x01, 0xf5, 0x7c, 0x12, 0xa1, 0x3b, 0x35, 0xf4, 0x41, 0x1f, 0x2b, 0x39, 0x2d, + 0xd2, 0x6b, 0x1a, 0x0f, 0xb4, 0x67, 0xb7, 0xf3, 0x7f, 0x91, 0x02, 0xf0, 0x14, 0x44, 0x0f, 0x21, + 0x83, 0xe7, 0x44, 0x6e, 0xa8, 0xcd, 0x11, 0xe6, 0x54, 0xc4, 0x13, 0xc3, 0x5c, 0xc2, 0xbf, 0x71, + 0x90, 0xc1, 0x62, 0x82, 0x57, 0x6d, 0xb3, 0x5a, 0xdf, 0xab, 0x55, 0xa4, 0x7a, 0x63, 0xb7, 0x22, + 0x7d, 0x2c, 0x56, 0x5b, 0x15, 0x31, 0xcf, 0xa1, 0x15, 0xb8, 0xc6, 0xb6, 0x8b, 0x95, 0xd2, 0x6e, + 0x45, 0x94, 0x1a, 0xf5, 0xda, 0xd3, 0x7c, 0x0a, 0xf1, 0xb0, 0x7c, 0x70, 0x54, 0x6b, 0x55, 0xc3, + 0x7d, 0x69, 0xb4, 0x0a, 0x05, 0xa6, 0x8f, 0xca, 0xa0, 0x62, 0x33, 0xb6, 0x58, 0xa6, 0x97, 0xfc, + 0x49, 0x3b, 0xb3, 0x48, 0x80, 0xeb, 0xec, 0x98, 0x7e, 0xde, 0x1c, 0xbe, 0xb9, 0xed, 0xcb, 0x9d, + 0xa5, 0xf1, 0x49, 0x98, 0xc4, 0x24, 0xe5, 0x39, 0xd7, 0x02, 0xb0, 0x85, 0x7f, 0x0c, 0x73, 0xbe, + 0x1b, 0xcc, 0x8e, 0x47, 0xa9, 0xcb, 0xed, 0x48, 0xc7, 0xe7, 0x16, 0x8e, 0xd1, 0xb8, 0xcd, 0xb4, + 0x38, 0xe7, 0xb4, 0x96, 0xed, 0x46, 0x7b, 0x2f, 0xbb, 0x6a, 0x4f, 0xb5, 0x28, 0x4d, 0x0a, 0xd3, + 0x00, 0x6e, 0xc2, 0x04, 0xc2, 0x4f, 0x53, 0x90, 0xa3, 0x06, 0x71, 0x9b, 0xb9, 0x43, 0x7d, 0x22, + 0x9d, 0x56, 0x22, 0xd2, 0x77, 0x22, 0x53, 0xfe, 0x13, 0x89, 0xf6, 0x61, 0x9e, 0xbd, 0x68, 0x5e, + 0x38, 0x51, 0xf0, 0x86, 0x7f, 0x9f, 0x59, 0x27, 0xf2, 0x82, 0xc6, 0xbe, 0x73, 0x67, 0x6c, 0x1b, + 0x2a, 0xc3, 0x7c, 0xe0, 0xae, 0xca, 0x0c, 0xbf, 0xab, 0xe6, 0xda, 0x3e, 0x6f, 0x58, 0x82, 0x45, + 0xe7, 0x9a, 0xe9, 0x2a, 0x92, 0x45, 0xaf, 0x21, 0x7a, 0x97, 0xe6, 0x43, 0xd7, 0x13, 0xf2, 0x88, + 0x9d, 0x36, 0xfe, 0x23, 0x40, 0x61, 0x5d, 0xc7, 0x72, 0xd5, 0x03, 0x58, 0x8c, 0xb8, 0x00, 0x51, + 0x11, 0xa6, 0xf1, 0x56, 0x99, 0xaa, 0xa5, 0xd0, 0xf8, 0x3a, 0xac, 0x91, 0x47, 0x62, 0xd3, 0xf7, + 0x0d, 0xe5, 0x44, 0x31, 0x0c, 0xa5, 0x83, 0xcf, 0x64, 0x24, 0xbd, 0x4b, 0x22, 0xfc, 0x3a, 0x07, + 0x53, 0x4e, 0x3b, 0xda, 0x86, 0x29, 0x53, 0x39, 0x25, 0x97, 0x33, 0x19, 0x6b, 0x2d, 0xc8, 0x5b, + 0x6c, 0x52, 0x02, 0x9a, 0x89, 0x38, 0xf4, 0x76, 0x26, 0xe2, 0xeb, 0x1a, 0x6b, 0xf2, 0x7f, 0xc5, + 0xc1, 0xe2, 0xae, 0xd2, 0x55, 0x82, 0x31, 0x5c, 0x92, 0x5b, 0x67, 0xc3, 0x9e, 0x94, 0x3f, 0xec, + 0x89, 0x10, 0x95, 0x10, 0xf6, 0x5c, 0xe4, 0x9e, 0xb6, 0xd3, 0x46, 0xff, 0x68, 0xe4, 0x4e, 0x11, + 0xfe, 0x33, 0x0d, 0x6b, 0xb6, 0x2d, 0x18, 0x7a, 0xb7, 0xab, 0x18, 0x87, 0x83, 0xe3, 0xae, 0x6a, + 0x3e, 0x1f, 0x63, 0x72, 0xd7, 0x60, 0x52, 0xd3, 0x3b, 0xcc, 0xe1, 0xc9, 0xd9, 0x3f, 0xab, 0x1d, + 0x54, 0x81, 0x85, 0x60, 0x10, 0x7a, 0x4e, 0x3d, 0x7f, 0x7c, 0x08, 0x9a, 0x3f, 0x0b, 0x5e, 0x5b, + 0x3c, 0x4c, 0xd9, 0xe1, 0xb3, 0xae, 0x75, 0xcf, 0xf1, 0x89, 0x99, 0x12, 0xdd, 0xdf, 0x48, 0x0c, + 0xc6, 0x93, 0xdf, 0x70, 0xc3, 0xa9, 0xc4, 0x19, 0x25, 0x85, 0x96, 0x9f, 0x85, 0x4e, 0x7c, 0x0e, + 0x8b, 0x7e, 0x7f, 0x44, 0xd1, 0x43, 0x3d, 0xc1, 0x85, 0xa2, 0xad, 0x8b, 0x1f, 0xdf, 0xbf, 0xe7, + 0xe0, 0x66, 0xec, 0x14, 0x68, 0x9c, 0xd1, 0x81, 0x2b, 0x7d, 0xd2, 0xe1, 0x2e, 0x02, 0x39, 0x65, + 0x1f, 0x0c, 0x5d, 0x04, 0x0a, 0x03, 0xd0, 0x56, 0xdf, 0x32, 0xcc, 0xf7, 0x7d, 0x8d, 0x7c, 0x09, + 0x16, 0x23, 0xc8, 0xc6, 0x9a, 0xcc, 0xcf, 0x38, 0x58, 0xf7, 0x54, 0x39, 0xd2, 0xfa, 0x97, 0x67, + 0xbe, 0x2d, 0xcf, 0xb6, 0x88, 0xcb, 0x7f, 0x37, 0x3c, 0xf7, 0xe8, 0x01, 0x5f, 0xd5, 0x09, 0xbe, + 0x05, 0x1b, 0x09, 0x43, 0xd3, 0xe3, 0xfc, 0xd3, 0x0c, 0x6c, 0x3c, 0x91, 0xbb, 0x6a, 0xc7, 0x8d, + 0x1e, 0x23, 0x00, 0x93, 0xe4, 0x25, 0x69, 0x87, 0x4e, 0x00, 0xf1, 0x5a, 0x0f, 0xdd, 0x53, 0x3b, + 0x4c, 0xfe, 0x08, 0xd7, 0xe1, 0x25, 0xa6, 0xa8, 0x4f, 0x23, 0x52, 0xd4, 0xf7, 0x47, 0xd7, 0x35, + 0x29, 0x61, 0x3d, 0x0a, 0x3a, 0x98, 0xf7, 0x46, 0x97, 0x9b, 0x60, 0x05, 0x17, 0x3e, 0xc5, 0x5f, + 0x63, 0xc2, 0x27, 0xfc, 0x6d, 0x06, 0x84, 0xa4, 0xd9, 0x53, 0x1f, 0x22, 0xc2, 0x74, 0x5b, 0xd7, + 0x4e, 0x54, 0xa3, 0xa7, 0x74, 0x68, 0xca, 0xf1, 0xce, 0x28, 0x8b, 0x47, 0x1d, 0xc8, 0x8e, 0xc3, + 0x2b, 0x7a, 0x62, 0x50, 0x01, 0x26, 0x7b, 0x8a, 0x69, 0xca, 0xa7, 0x8e, 0x5a, 0xce, 0x4f, 0xfe, + 0xc7, 0x69, 0x98, 0x76, 0x59, 0x90, 0x16, 0xb2, 0x60, 0xe2, 0xbe, 0xf6, 0x5e, 0x46, 0x81, 0x97, + 0x37, 0xe6, 0xd4, 0x4b, 0x18, 0x73, 0xc7, 0x67, 0xcc, 0xe4, 0x38, 0xec, 0xbe, 0x94, 0xda, 0x09, + 0x76, 0xfd, 0xb5, 0x1b, 0xa0, 0xf0, 0x8b, 0x80, 0x6a, 0xaa, 0x49, 0x53, 0x37, 0xd7, 0x2d, 0xd9, + 0x99, 0x9a, 0xfc, 0x42, 0x52, 0x34, 0xcb, 0x50, 0x69, 0xb8, 0x9e, 0x15, 0xa1, 0x27, 0xbf, 0xa8, + 0x90, 0x16, 0x3b, 0xa4, 0x37, 0x2d, 0xd9, 0xb0, 0x54, 0xed, 0x54, 0xb2, 0xf4, 0xcf, 0x15, 0x17, + 0xb5, 0x76, 0x5a, 0x5b, 0x76, 0xa3, 0xf0, 0x1f, 0x29, 0x58, 0xf4, 0x89, 0xa7, 0x36, 0xf9, 0x01, + 0x4c, 0x7a, 0xb2, 0x7d, 0x61, 0x7c, 0x04, 0x75, 0x91, 0x2c, 0x9b, 0xc3, 0x81, 0x6e, 0x00, 0x68, + 0xca, 0x0b, 0xcb, 0x37, 0xee, 0xb4, 0xdd, 0x82, 0xc7, 0xe4, 0x7f, 0x83, 0x73, 0x33, 0x7d, 0x4b, + 0xb6, 0x06, 0x38, 0xab, 0xa4, 0x2e, 0x5a, 0xe9, 0x48, 0xf4, 0x8e, 0x21, 0xe3, 0x4e, 0x8b, 0x79, + 0xb7, 0xa7, 0x8e, 0x6f, 0x1b, 0x13, 0xed, 0xb9, 0x80, 0x70, 0x5b, 0xd7, 0x3a, 0xaa, 0xe5, 0x01, + 0xc2, 0xd7, 0x42, 0x09, 0x02, 0xe9, 0x2e, 0xdb, 0x79, 0x95, 0x03, 0x01, 0xbb, 0xad, 0xfc, 0x17, + 0x90, 0x25, 0xdb, 0x31, 0x22, 0x58, 0x80, 0x3e, 0x82, 0x9c, 0x89, 0x35, 0x0e, 0x02, 0x23, 0x51, + 0x6b, 0xc2, 0xce, 0x50, 0xa4, 0x7c, 0xc2, 0xb7, 0x80, 0xf7, 0x2e, 0xa6, 0x3d, 0xc5, 0x1a, 0xfd, + 0xfa, 0xdd, 0xb6, 0xe7, 0x20, 0xfc, 0x41, 0x0a, 0x56, 0x22, 0x05, 0x8c, 0x07, 0x7b, 0xa0, 0xfd, + 0xc0, 0x4c, 0xde, 0x0a, 0xdf, 0xd8, 0x21, 0xe1, 0x91, 0x33, 0xe2, 0x7f, 0xf5, 0x62, 0x9b, 0x59, + 0x1e, 0x7b, 0x33, 0x43, 0xfb, 0x48, 0x56, 0xe6, 0x5f, 0x38, 0x58, 0x3c, 0xd0, 0x3b, 0xea, 0xc9, + 0xf9, 0x18, 0x21, 0x4d, 0x34, 0xde, 0x98, 0xf2, 0xe3, 0x8d, 0x11, 0x52, 0xc7, 0xc0, 0x1b, 0x2f, + 0x05, 0xf4, 0x23, 0x53, 0x5c, 0x81, 0x25, 0xbf, 0x2e, 0x64, 0x5f, 0x48, 0xe7, 0x8f, 0x53, 0x80, + 0xf6, 0x14, 0xcb, 0x85, 0x0a, 0xe8, 0xf4, 0x63, 0xfc, 0x2d, 0xf7, 0x12, 0xfe, 0xf6, 0x3b, 0x3e, + 0x7f, 0x4b, 0x16, 0xe9, 0x2e, 0x53, 0xe2, 0x0a, 0x0c, 0x9d, 0x18, 0x2d, 0xc4, 0xa4, 0xe7, 0x24, + 0xe7, 0x19, 0x2d, 0x3d, 0xbf, 0xa0, 0x5b, 0xfd, 0x57, 0x0e, 0x16, 0x7d, 0x4a, 0xd3, 0x13, 0x74, + 0x1f, 0x90, 0x7c, 0x26, 0xab, 0x5d, 0x6c, 0x14, 0x0e, 0xfc, 0x41, 0xe1, 0x90, 0x05, 0xb7, 0xc7, + 0x61, 0x43, 0x8f, 0x61, 0xb1, 0x27, 0xbf, 0x50, 0x7b, 0x83, 0x9e, 0x44, 0xd7, 0xd9, 0x54, 0xbf, + 0xe7, 0x00, 0xa7, 0x2b, 0xa1, 0x4a, 0x47, 0x55, 0xb3, 0xde, 0x7b, 0x87, 0x94, 0x3a, 0x16, 0x28, + 0x1f, 0x3d, 0x3c, 0xea, 0xf7, 0x14, 0x74, 0x08, 0x8b, 0x3d, 0x55, 0x0b, 0x09, 0x4b, 0x0f, 0x15, + 0x46, 0x1c, 0xdc, 0x02, 0x65, 0xf6, 0x24, 0x0a, 0x02, 0x1b, 0xf4, 0xd3, 0xe9, 0x06, 0x4b, 0x82, + 0x5d, 0x36, 0x58, 0x0e, 0xd1, 0xd0, 0x65, 0xd9, 0x8b, 0x2c, 0x0b, 0xde, 0x0a, 0xbb, 0x0d, 0x5a, + 0x23, 0x8b, 0xad, 0x10, 0xfe, 0x7e, 0x86, 0xf5, 0x60, 0x21, 0x6a, 0xf4, 0x01, 0xa4, 0x8d, 0x7e, + 0x9b, 0xba, 0xaf, 0xd7, 0x47, 0x90, 0x5f, 0x14, 0x0f, 0x77, 0xf6, 0x27, 0x44, 0x9b, 0x8b, 0xff, + 0xf3, 0x34, 0xa4, 0xc5, 0xc3, 0x1d, 0xf4, 0x91, 0xaf, 0x16, 0x76, 0x6f, 0x44, 0x29, 0x6c, 0x29, + 0xec, 0xdf, 0x53, 0x51, 0xb5, 0xb0, 0x02, 0x2c, 0xed, 0x88, 0x95, 0x52, 0xab, 0x22, 0xed, 0x56, + 0x6a, 0x95, 0x56, 0x45, 0x22, 0xe5, 0xbc, 0x3c, 0x87, 0x56, 0xa1, 0x70, 0x78, 0x54, 0xae, 0x55, + 0x9b, 0xfb, 0xd2, 0x51, 0xdd, 0xf9, 0x8b, 0xf6, 0xa6, 0x50, 0x1e, 0x66, 0x6b, 0xd5, 0x66, 0x8b, + 0x36, 0x34, 0xf3, 0x69, 0xbb, 0x65, 0xaf, 0xd2, 0x92, 0x76, 0x4a, 0x87, 0xa5, 0x9d, 0x6a, 0xeb, + 0x69, 0x3e, 0x83, 0x78, 0x58, 0xf6, 0xcb, 0x6e, 0xd6, 0x4b, 0x87, 0xcd, 0xfd, 0x46, 0x2b, 0x9f, + 0x45, 0x08, 0xe6, 0x31, 0xbf, 0xd3, 0xd4, 0xcc, 0xe7, 0x6c, 0x09, 0x3b, 0xb5, 0x46, 0xdd, 0xd5, + 0x61, 0x12, 0x2d, 0x41, 0xde, 0x19, 0x59, 0xac, 0x94, 0x76, 0x31, 0xa0, 0x39, 0x85, 0x16, 0x60, + 0xae, 0xf2, 0xc9, 0x61, 0xa9, 0xbe, 0xeb, 0x10, 0x4e, 0xa3, 0x75, 0x58, 0x65, 0xd5, 0x91, 0x28, + 0x57, 0x65, 0x17, 0x83, 0x92, 0xcd, 0x3c, 0xa0, 0xeb, 0x90, 0xa7, 0x95, 0xca, 0x9d, 0x46, 0x7d, + 0xb7, 0xda, 0xaa, 0x36, 0xea, 0xf9, 0x19, 0x82, 0x60, 0x2e, 0x02, 0xd8, 0x9a, 0x53, 0x61, 0xb3, + 0xc3, 0x61, 0xcd, 0x39, 0x42, 0xb2, 0x0c, 0x73, 0x07, 0x8d, 0xdd, 0xea, 0xa3, 0xa7, 0x0e, 0xeb, + 0x3c, 0x81, 0x3b, 0x1d, 0x24, 0xff, 0x67, 0x29, 0xb8, 0x4a, 0xa0, 0x7c, 0xa7, 0x70, 0xe0, 0xf8, + 0xb0, 0x4d, 0xc8, 0x13, 0x1c, 0x50, 0x0a, 0x7a, 0xf2, 0x79, 0xd2, 0xfe, 0xc4, 0xf1, 0xe7, 0x4e, + 0x7d, 0x30, 0xc5, 0xd4, 0x07, 0xab, 0xc1, 0xec, 0xf4, 0xae, 0xbf, 0x90, 0x14, 0x18, 0x2d, 0x09, + 0xf0, 0x38, 0x88, 0x48, 0x9f, 0xee, 0x27, 0x4b, 0x4b, 0x0a, 0x2d, 0x2f, 0x82, 0x6e, 0x5c, 0xd0, + 0xfb, 0x3d, 0x82, 0xe5, 0xa0, 0xbe, 0xf4, 0xa0, 0xdf, 0x0b, 0x95, 0x91, 0x5c, 0x77, 0xec, 0xd2, + 0xba, 0x14, 0xc2, 0x0f, 0x52, 0x30, 0xe5, 0x34, 0xdb, 0x61, 0x9f, 0xed, 0xaf, 0x7c, 0x08, 0xf2, + 0xb4, 0xdd, 0xe2, 0x02, 0xd2, 0x6c, 0x01, 0x28, 0x15, 0x2c, 0x00, 0x45, 0xee, 0x73, 0x3a, 0x72, + 0x9f, 0xbf, 0x0d, 0x73, 0x6d, 0x5b, 0x7d, 0x55, 0xd7, 0x24, 0x4b, 0xed, 0x39, 0x00, 0x71, 0xb8, + 0xb2, 0xdc, 0x72, 0x5e, 0x8c, 0x88, 0xb3, 0x0e, 0x83, 0xdd, 0x84, 0xd6, 0x61, 0x16, 0x57, 0x9a, + 0x25, 0x4b, 0x97, 0x06, 0xa6, 0x52, 0xc8, 0x62, 0xb8, 0x0c, 0x70, 0x5b, 0x4b, 0x3f, 0x32, 0x15, + 0xf4, 0x00, 0x16, 0x70, 0x71, 0x43, 0x62, 0x75, 0xce, 0xd9, 0xda, 0xd0, 0x68, 0x12, 0xf7, 0x36, + 0x5d, 0xed, 0x85, 0xbf, 0xe1, 0xe0, 0x2a, 0x81, 0x0d, 0x83, 0xf6, 0x3b, 0xac, 0xf2, 0xc5, 0x9a, + 0x68, 0xe0, 0x5a, 0x8d, 0x14, 0xf8, 0xaa, 0x50, 0x93, 0x02, 0x2c, 0x07, 0xc7, 0xa3, 0x50, 0xc9, + 0x4f, 0x52, 0xb0, 0x64, 0xc7, 0xb8, 0x4e, 0xc7, 0x65, 0xa7, 0x21, 0x63, 0x6c, 0x7d, 0x60, 0x31, + 0x33, 0xa1, 0xc5, 0xdc, 0x0f, 0x02, 0x11, 0x6f, 0xb0, 0x51, 0x7a, 0x70, 0x06, 0xaf, 0x6a, 0x2d, + 0x7f, 0xc4, 0xc1, 0xd5, 0xc0, 0x78, 0xf4, 0x80, 0x7d, 0x18, 0xcc, 0xac, 0x6e, 0xc5, 0xe8, 0xf7, + 0x52, 0xb9, 0xd5, 0xbb, 0x4e, 0x4e, 0x33, 0xde, 0x39, 0xfe, 0x87, 0x14, 0xdc, 0xf0, 0x6e, 0x47, + 0xfc, 0x38, 0xa4, 0x33, 0x46, 0x1c, 0x7d, 0xb1, 0x37, 0x18, 0xdf, 0x0d, 0x7a, 0xe8, 0xad, 0xf0, + 0x85, 0x1d, 0xa1, 0x52, 0x92, 0xa7, 0x8e, 0x44, 0xd4, 0x33, 0xe3, 0x22, 0xea, 0x17, 0xb2, 0x80, + 0x5f, 0x61, 0x8b, 0x05, 0x7e, 0xf5, 0xa9, 0x25, 0x8c, 0x58, 0x75, 0x7b, 0x0f, 0xae, 0xe1, 0x34, + 0xca, 0x7d, 0xfe, 0xe4, 0xbc, 0xb8, 0x20, 0x3e, 0x74, 0x4a, 0xbc, 0x6a, 0x77, 0xbb, 0x0f, 0x7a, + 0x68, 0xa5, 0xa9, 0x23, 0x7c, 0x95, 0x81, 0x65, 0x3b, 0xcd, 0x6a, 0x5a, 0xf2, 0xe9, 0x38, 0x35, + 0x98, 0x5f, 0x08, 0x43, 0xda, 0x81, 0x8c, 0x28, 0x5a, 0xea, 0x28, 0x48, 0x36, 0x2a, 0xc2, 0xa2, + 0x69, 0xc9, 0xa7, 0xd8, 0x1d, 0xc8, 0xc6, 0xa9, 0x62, 0x49, 0x7d, 0xd9, 0x7a, 0x4e, 0xcf, 0xfa, + 0x02, 0xed, 0x6a, 0xe1, 0x9e, 0x43, 0xd9, 0x7a, 0x7e, 0x49, 0x1b, 0x89, 0xbe, 0x13, 0x74, 0x0a, + 0x6f, 0x0e, 0x99, 0x4b, 0x82, 0x6d, 0x7d, 0x12, 0x53, 0xf6, 0x78, 0x7b, 0x88, 0xc8, 0xe1, 0xe5, + 0x8e, 0x8b, 0xc3, 0xfc, 0x5f, 0x73, 0xc5, 0xe4, 0x3a, 0x5c, 0x0b, 0x4d, 0x9e, 0x5e, 0x21, 0xa7, + 0x50, 0xb0, 0xbb, 0x8e, 0x34, 0x73, 0x4c, 0x73, 0x8c, 0xb1, 0x98, 0x54, 0x8c, 0xc5, 0x08, 0x2b, + 0x70, 0x3d, 0x62, 0x20, 0xaa, 0xc5, 0x5f, 0x66, 0x89, 0x1a, 0xe3, 0x17, 0xef, 0x3e, 0x8d, 0x3b, + 0x15, 0xef, 0xb0, 0xdb, 0x1e, 0x59, 0xe7, 0x7a, 0x15, 0xe7, 0xe2, 0x26, 0xcc, 0xb0, 0x74, 0xf4, + 0x1a, 0xb4, 0x86, 0x1c, 0x9c, 0xec, 0x85, 0x6a, 0x8a, 0xb9, 0x40, 0x4d, 0xb1, 0xe6, 0x1d, 0xaa, + 0x49, 0x7f, 0x2c, 0x1c, 0xbb, 0x14, 0x09, 0xc7, 0xea, 0x59, 0xe8, 0x58, 0x4d, 0xf9, 0x0b, 0x95, + 0xb1, 0x42, 0x7f, 0x0e, 0x0e, 0x16, 0x35, 0xea, 0xc8, 0x0a, 0xa2, 0xf0, 0x0c, 0x78, 0x62, 0xf1, + 0xe3, 0xd7, 0xf4, 0x02, 0x66, 0x94, 0x0a, 0x9a, 0x91, 0x70, 0x03, 0x56, 0x22, 0x65, 0xd3, 0xa1, + 0x7f, 0x8b, 0x23, 0x8a, 0xb9, 0x60, 0x61, 0xd3, 0x92, 0x2d, 0x73, 0xd4, 0xa1, 0x69, 0x27, 0x3b, + 0x34, 0x69, 0xc2, 0x16, 0x3c, 0xe6, 0x91, 0x10, 0x7e, 0x87, 0x23, 0xeb, 0x10, 0xd4, 0x85, 0xde, + 0xb6, 0x6f, 0x40, 0x76, 0x80, 0xeb, 0x21, 0x24, 0xea, 0x5a, 0xf4, 0x1f, 0x82, 0x23, 0xbb, 0x4b, + 0x24, 0x14, 0x97, 0x86, 0x30, 0x0b, 0x3f, 0xe1, 0x60, 0x86, 0x91, 0x8f, 0x56, 0x61, 0xda, 0x85, + 0x90, 0x9c, 0x04, 0xc9, 0x6d, 0xb0, 0xb7, 0xdf, 0xd2, 0x2d, 0xb9, 0x4b, 0xdf, 0xea, 0x90, 0x1f, + 0x76, 0x4e, 0x3b, 0x30, 0x15, 0x12, 0x0e, 0xa7, 0x45, 0xfc, 0x37, 0xba, 0x07, 0x99, 0x81, 0xa6, + 0x5a, 0xf8, 0xd8, 0xcf, 0x07, 0xcf, 0x33, 0x1e, 0xaa, 0x78, 0xa4, 0xa9, 0x96, 0x88, 0xa9, 0x84, + 0xbb, 0x90, 0xb1, 0x7f, 0xf9, 0xa1, 0x8c, 0x69, 0xc8, 0x96, 0x9f, 0xb6, 0x2a, 0xcd, 0x3c, 0x87, + 0x00, 0x72, 0x55, 0x92, 0xf8, 0xa7, 0x84, 0x9a, 0xf3, 0xb0, 0xd8, 0x9d, 0x84, 0xed, 0x02, 0xe4, + 0x63, 0x4d, 0x37, 0x7a, 0x72, 0x17, 0xeb, 0x3c, 0x25, 0xba, 0xbf, 0xe3, 0xcb, 0x4c, 0x04, 0x94, + 0x5c, 0x75, 0x77, 0x24, 0x0a, 0x78, 0xfa, 0x8c, 0xd8, 0x56, 0x1c, 0xe4, 0x54, 0x8a, 0x84, 0x9c, + 0x6e, 0xf8, 0x6e, 0xd9, 0x21, 0x60, 0xd3, 0xdf, 0xa5, 0xe0, 0x6a, 0x24, 0x1d, 0x7a, 0x97, 0x85, + 0x99, 0x36, 0x12, 0x65, 0xb2, 0x00, 0xd3, 0x57, 0x1c, 0x01, 0x98, 0xb6, 0x7d, 0x00, 0xd3, 0x9d, + 0xa1, 0xfc, 0x2c, 0xb4, 0xf4, 0x23, 0x2e, 0x06, 0x5a, 0x6a, 0xb6, 0x4a, 0x7b, 0x15, 0xe9, 0xa8, + 0x4e, 0xfe, 0x75, 0xa1, 0xa5, 0x25, 0xc8, 0x7b, 0x80, 0x8b, 0xd4, 0x6c, 0x95, 0xf0, 0x2b, 0xf1, + 0x10, 0xac, 0x93, 0x8e, 0x04, 0x6d, 0x32, 0xc3, 0xf1, 0x99, 0xac, 0x83, 0xcf, 0x20, 0xca, 0x7d, + 0xd0, 0x38, 0xaa, 0xb7, 0x24, 0xfc, 0x06, 0x3d, 0x9f, 0x73, 0xf1, 0x99, 0x25, 0x40, 0x74, 0xb7, + 0xd8, 0x4f, 0x29, 0xfe, 0x98, 0x83, 0x45, 0x5f, 0x33, 0xdd, 0x3c, 0xe6, 0xb1, 0x00, 0xe7, 0x7b, + 0x2c, 0xf0, 0x00, 0x96, 0xec, 0x8c, 0x91, 0x9c, 0x14, 0x53, 0xea, 0x2b, 0x06, 0x2e, 0x12, 0x50, + 0x9b, 0x5f, 0xe8, 0xc9, 0x2f, 0x68, 0x21, 0xe5, 0x50, 0x31, 0x6c, 0xc1, 0x97, 0x00, 0x15, 0x0b, + 0x5f, 0xa6, 0x49, 0x5c, 0x32, 0x76, 0x5e, 0x33, 0xd4, 0x47, 0x85, 0x13, 0x9f, 0xf4, 0x18, 0x89, + 0x4f, 0x8c, 0x87, 0xcb, 0x8c, 0x15, 0x0c, 0x8f, 0x7f, 0xa7, 0xd7, 0xbd, 0x7b, 0x9b, 0x44, 0xae, + 0xf7, 0x58, 0xfb, 0x1d, 0x9a, 0x69, 0xe5, 0xbe, 0x2c, 0x73, 0x3f, 0xbc, 0xac, 0x3c, 0xb9, 0x44, + 0xe2, 0xb1, 0x0b, 0xe4, 0x47, 0xc2, 0x3d, 0xb8, 0x8d, 0x9f, 0x9b, 0x0e, 0x03, 0xba, 0x89, 0x4b, + 0xfa, 0x65, 0xb8, 0x33, 0x8c, 0x9a, 0x0e, 0x5f, 0x8b, 0xf4, 0x3f, 0x6e, 0xcd, 0x2f, 0x20, 0x65, + 0x88, 0x2b, 0x22, 0x83, 0xff, 0x66, 0x0a, 0xd6, 0x87, 0xf1, 0xa1, 0x8f, 0x58, 0xd7, 0x74, 0x6f, + 0xd4, 0xe1, 0x58, 0x2f, 0xf5, 0x7b, 0xd4, 0x4b, 0x55, 0x7c, 0x5e, 0xea, 0xed, 0x71, 0x44, 0xb1, + 0x0e, 0xab, 0x12, 0xe5, 0xaf, 0xde, 0x82, 0xd7, 0xfd, 0x70, 0x35, 0xe3, 0xa3, 0xc8, 0xe7, 0x2b, + 0x2e, 0x7e, 0xcd, 0x61, 0x07, 0xb3, 0xed, 0x43, 0x7b, 0x7f, 0x37, 0x0d, 0xeb, 0xec, 0xc3, 0xed, + 0x3d, 0x16, 0x4d, 0x4b, 0xfa, 0xdc, 0xe3, 0x2e, 0x2c, 0x04, 0x91, 0x22, 0xe7, 0xa1, 0xf2, 0x15, + 0x3f, 0x54, 0x64, 0x26, 0x3d, 0x4c, 0x1a, 0x32, 0x74, 0x72, 0xfe, 0x17, 0x46, 0x81, 0xbf, 0x39, + 0xb2, 0xe0, 0xff, 0x9f, 0x80, 0x30, 0x31, 0xcf, 0x2e, 0x6c, 0x24, 0xe8, 0x4f, 0x8f, 0x45, 0x19, + 0xe6, 0xfd, 0xc0, 0x28, 0xb5, 0xd4, 0xc0, 0xeb, 0x5c, 0x3f, 0xf3, 0x9c, 0x0f, 0x2d, 0x25, 0xa3, + 0xfd, 0x13, 0xe7, 0x7c, 0xc8, 0xe0, 0xa3, 0xb5, 0x77, 0x38, 0x8c, 0xbc, 0x92, 0x49, 0x04, 0x41, + 0x57, 0x54, 0x84, 0x69, 0x87, 0xca, 0x0c, 0x3e, 0x8d, 0x75, 0x07, 0xf7, 0x48, 0xc2, 0xc0, 0x71, + 0xfa, 0x82, 0xc0, 0x71, 0x26, 0x08, 0x1c, 0x93, 0xb9, 0xfd, 0x20, 0x05, 0xeb, 0xec, 0x1b, 0xd2, + 0x48, 0xf3, 0x1e, 0x67, 0xa2, 0x1b, 0x30, 0xcb, 0x50, 0x39, 0x16, 0x3f, 0xe3, 0xe1, 0x9e, 0x49, + 0xd6, 0x3e, 0x4c, 0x93, 0x57, 0x04, 0x82, 0x92, 0xa5, 0xd8, 0x84, 0x8d, 0x84, 0xf1, 0xd9, 0x12, + 0xf6, 0xf7, 0x53, 0xf8, 0xe3, 0xc4, 0xff, 0xbb, 0x15, 0x8b, 0x07, 0x1e, 0x13, 0xd5, 0x78, 0xa5, + 0xcb, 0xa5, 0xc2, 0x5a, 0xdc, 0xe0, 0x97, 0x7c, 0x00, 0xb7, 0xfe, 0x87, 0x83, 0xa9, 0x6a, 0x47, + 0xd1, 0x2c, 0x12, 0x14, 0xcc, 0xf9, 0x3e, 0x53, 0x45, 0xab, 0x31, 0x5f, 0xaf, 0xe2, 0x25, 0xe0, + 0x6f, 0x24, 0x7e, 0xdb, 0x2a, 0x4c, 0xa0, 0x13, 0xe6, 0x13, 0x5b, 0xdf, 0x33, 0x82, 0xd7, 0x42, + 0x9c, 0x11, 0x77, 0x35, 0x7f, 0x7b, 0x08, 0x95, 0x3b, 0xce, 0x7b, 0x90, 0xc5, 0x5f, 0x1b, 0xa2, + 0x25, 0xf7, 0x8b, 0x47, 0xe6, 0x63, 0x44, 0xfe, 0x6a, 0xa0, 0xd5, 0xe1, 0xdb, 0xfa, 0x33, 0x00, + 0xf0, 0xee, 0x40, 0xf4, 0x18, 0x66, 0x59, 0xd7, 0x87, 0x56, 0x12, 0xbe, 0x36, 0xe3, 0x57, 0xa3, + 0x3b, 0x5d, 0x9d, 0x1e, 0xc3, 0x2c, 0x6b, 0xf2, 0x9e, 0xb0, 0x88, 0x47, 0xec, 0x9e, 0xb0, 0xc8, + 0x37, 0xe7, 0x13, 0xa8, 0x0b, 0xd7, 0x62, 0x9e, 0x10, 0xa3, 0x3b, 0xa3, 0x3d, 0xb4, 0xe6, 0x5f, + 0x1f, 0xf1, 0x2d, 0xb2, 0x30, 0x81, 0x0c, 0xb8, 0x1e, 0xfb, 0x72, 0x16, 0x6d, 0x8e, 0xfa, 0xae, + 0x97, 0x7f, 0x63, 0x04, 0x4a, 0x77, 0xcc, 0x01, 0xf0, 0xf1, 0xcf, 0xf5, 0xd0, 0x1b, 0x23, 0xbf, + 0x23, 0xe5, 0xef, 0x8e, 0xfe, 0xfa, 0x4f, 0x98, 0x40, 0xfb, 0x30, 0xc3, 0xbc, 0xdb, 0x42, 0x7c, + 0xe4, 0x63, 0x2e, 0x22, 0x78, 0x25, 0xe1, 0xa1, 0x17, 0x91, 0xc4, 0x3c, 0x25, 0xf1, 0x24, 0x85, + 0x1f, 0xc5, 0x78, 0x92, 0x22, 0xde, 0x9e, 0x04, 0x97, 0x3f, 0x10, 0x98, 0x46, 0x2d, 0x7f, 0x74, + 0xa4, 0x1b, 0xb5, 0xfc, 0x31, 0x51, 0xae, 0x30, 0x81, 0xbe, 0x0b, 0xf3, 0xfe, 0x5a, 0x30, 0xba, + 0x91, 0x58, 0xd3, 0xe6, 0xd7, 0xe2, 0xba, 0x59, 0x91, 0xfe, 0x4a, 0xa2, 0x27, 0x32, 0xb2, 0xa2, + 0xe9, 0x89, 0x8c, 0x29, 0x40, 0x4e, 0xd8, 0xfe, 0xc9, 0x57, 0x1f, 0xf3, 0xfc, 0x53, 0x54, 0x59, + 0xcf, 0xf3, 0x4f, 0x91, 0x45, 0x35, 0x61, 0x02, 0xa9, 0xb0, 0x1c, 0x5d, 0x9e, 0x41, 0xb7, 0x47, + 0xaa, 0x3e, 0xf1, 0x77, 0x86, 0x91, 0xb9, 0x43, 0xb5, 0x61, 0x31, 0xe2, 0x59, 0x1d, 0x12, 0x12, + 0xdf, 0xdc, 0x91, 0x41, 0x6e, 0x8d, 0xf0, 0x2e, 0x4f, 0xc0, 0xe9, 0xfb, 0x27, 0xec, 0x7c, 0xd8, + 0x67, 0x62, 0x9e, 0xf7, 0x89, 0x78, 0xc8, 0xe6, 0x79, 0x9f, 0xa8, 0x97, 0x65, 0x58, 0xf2, 0xd6, + 0x7f, 0xa7, 0xe1, 0x4a, 0x20, 0x65, 0x40, 0xbf, 0xc6, 0xc1, 0x5a, 0x72, 0x1a, 0x85, 0xee, 0xc7, + 0xa4, 0x1b, 0x31, 0x26, 0x5b, 0x1c, 0x95, 0x9c, 0x71, 0x1b, 0xd7, 0x63, 0xa3, 0x55, 0xb4, 0x39, + 0x6a, 0x40, 0xce, 0x9c, 0x95, 0x61, 0xa1, 0x2f, 0x59, 0xe8, 0x01, 0x5c, 0x8f, 0x8d, 0x67, 0xd0, + 0xe6, 0xa8, 0x21, 0x97, 0x37, 0xec, 0xd0, 0xe0, 0x88, 0x0c, 0xdb, 0x85, 0xe5, 0xe8, 0xb8, 0x00, + 0xdd, 0x1e, 0x29, 0x68, 0xf1, 0xec, 0x35, 0x39, 0xbc, 0xc0, 0xa3, 0xe1, 0x84, 0x6d, 0xeb, 0x9f, + 0xb3, 0x90, 0xc1, 0x10, 0x4c, 0x0b, 0xae, 0x04, 0xca, 0x3a, 0x68, 0x2d, 0xb9, 0xd8, 0xc5, 0xdf, + 0x8c, 0xed, 0x77, 0xf7, 0xef, 0x19, 0x2c, 0x84, 0x0a, 0x35, 0x68, 0x9d, 0xe5, 0x8b, 0x2a, 0x16, + 0xf1, 0x1b, 0x09, 0x14, 0x41, 0xd9, 0xfe, 0xeb, 0x72, 0x7d, 0x58, 0x25, 0xc1, 0x2f, 0x3b, 0xee, + 0x8a, 0xfc, 0x8c, 0x20, 0x5e, 0xc1, 0xcb, 0x51, 0xf0, 0xeb, 0x15, 0x79, 0x2d, 0xde, 0x4a, 0xa4, + 0x71, 0x47, 0xf8, 0xd4, 0x85, 0xda, 0x18, 0x20, 0x1b, 0xf9, 0x94, 0x8b, 0x04, 0xdc, 0x79, 0x21, + 0x89, 0xc4, 0x15, 0xff, 0x31, 0xe4, 0x83, 0x98, 0x0b, 0xba, 0x39, 0x04, 0x02, 0xe2, 0xd7, 0xe3, + 0x09, 0x82, 0x2b, 0x13, 0xf4, 0x04, 0x41, 0xad, 0xa2, 0x8e, 0xff, 0xad, 0x44, 0x1a, 0xf6, 0xa6, + 0x65, 0xd0, 0x46, 0xef, 0xa6, 0x0d, 0x23, 0x93, 0xde, 0x4d, 0x1b, 0x01, 0x4f, 0x0a, 0x13, 0xdb, + 0x0f, 0x01, 0xe4, 0x6e, 0xff, 0xb9, 0x2c, 0x29, 0xda, 0xa0, 0x87, 0x56, 0x43, 0x09, 0x60, 0x45, + 0x1b, 0xf4, 0x1a, 0x7d, 0x3b, 0xef, 0x33, 0x0b, 0x7f, 0x3a, 0x85, 0xb3, 0xbc, 0x69, 0xcc, 0x60, + 0x77, 0x6c, 0xd7, 0x20, 0xef, 0x71, 0x4b, 0x38, 0x84, 0x47, 0x1b, 0x91, 0x32, 0xf0, 0xfb, 0xcc, + 0x80, 0xa0, 0x79, 0x57, 0x10, 0xee, 0xdd, 0xfe, 0x10, 0xa0, 0x6d, 0xaa, 0x12, 0xc9, 0x21, 0xd0, + 0x8d, 0x90, 0x9c, 0x47, 0xaa, 0xd2, 0xed, 0x38, 0x32, 0xfe, 0x84, 0x2a, 0xd3, 0x36, 0x55, 0x92, + 0x69, 0x6c, 0x7f, 0x1b, 0x66, 0x88, 0x32, 0x27, 0x36, 0xdd, 0x30, 0x7e, 0xaa, 0x03, 0x99, 0x3d, + 0xee, 0xd9, 0xae, 0xc0, 0x1c, 0x11, 0x40, 0xc1, 0x7b, 0x74, 0x33, 0x24, 0xe2, 0x80, 0xf4, 0x04, + 0x84, 0xcc, 0x62, 0x36, 0xda, 0xb7, 0x5d, 0x86, 0x59, 0x47, 0x8c, 0xf5, 0x5c, 0xef, 0xa0, 0xb5, + 0x08, 0x29, 0x76, 0x47, 0x40, 0xc8, 0x0c, 0x15, 0x62, 0x77, 0x79, 0xaa, 0x38, 0xff, 0xfd, 0x4b, + 0x58, 0x15, 0x8a, 0x57, 0x45, 0xaa, 0x42, 0xfb, 0xca, 0xd9, 0x67, 0xe9, 0xb6, 0xa9, 0x1e, 0xe7, + 0x30, 0xd3, 0x37, 0xfe, 0x37, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x4d, 0xd1, 0x8b, 0xab, 0x48, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -6212,6 +6320,7 @@ type ControllerClient interface { ListSnapshots(ctx context.Context, in *ListSnapshotsRequest, opts ...grpc.CallOption) (*ListSnapshotsResponse, error) ControllerExpandVolume(ctx context.Context, in *ControllerExpandVolumeRequest, opts ...grpc.CallOption) (*ControllerExpandVolumeResponse, error) ControllerGetVolume(ctx context.Context, in *ControllerGetVolumeRequest, opts ...grpc.CallOption) (*ControllerGetVolumeResponse, error) + ControllerModifyVolume(ctx context.Context, in *ModifyVolumeRequest, opts ...grpc.CallOption) (*ModifyVolumeResponse, error) } type controllerClient struct { @@ -6339,6 +6448,15 @@ func (c *controllerClient) ControllerGetVolume(ctx context.Context, in *Controll return out, nil } +func (c *controllerClient) ControllerModifyVolume(ctx context.Context, in *ModifyVolumeRequest, opts ...grpc.CallOption) (*ModifyVolumeResponse, error) { + out := new(ModifyVolumeResponse) + err := c.cc.Invoke(ctx, "/csi.v1.Controller/ControllerModifyVolume", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ControllerServer is the server API for Controller service. type ControllerServer interface { CreateVolume(context.Context, *CreateVolumeRequest) (*CreateVolumeResponse, error) @@ -6354,6 +6472,7 @@ type ControllerServer interface { ListSnapshots(context.Context, *ListSnapshotsRequest) (*ListSnapshotsResponse, error) ControllerExpandVolume(context.Context, *ControllerExpandVolumeRequest) (*ControllerExpandVolumeResponse, error) ControllerGetVolume(context.Context, *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) + ControllerModifyVolume(context.Context, *ModifyVolumeRequest) (*ModifyVolumeResponse, error) } // UnimplementedControllerServer can be embedded to have forward compatible implementations. @@ -6399,6 +6518,9 @@ func (*UnimplementedControllerServer) ControllerExpandVolume(ctx context.Context func (*UnimplementedControllerServer) ControllerGetVolume(ctx context.Context, req *ControllerGetVolumeRequest) (*ControllerGetVolumeResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ControllerGetVolume not implemented") } +func (*UnimplementedControllerServer) ControllerModifyVolume(ctx context.Context, req *ModifyVolumeRequest) (*ModifyVolumeResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ControllerModifyVolume not implemented") +} func RegisterControllerServer(s *grpc.Server, srv ControllerServer) { s.RegisterService(&_Controller_serviceDesc, srv) @@ -6638,6 +6760,24 @@ func _Controller_ControllerGetVolume_Handler(srv interface{}, ctx context.Contex return interceptor(ctx, in, info, handler) } +func _Controller_ControllerModifyVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ModifyVolumeRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ControllerServer).ControllerModifyVolume(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/csi.v1.Controller/ControllerModifyVolume", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ControllerServer).ControllerModifyVolume(ctx, req.(*ModifyVolumeRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Controller_serviceDesc = grpc.ServiceDesc{ ServiceName: "csi.v1.Controller", HandlerType: (*ControllerServer)(nil), @@ -6694,6 +6834,10 @@ var _Controller_serviceDesc = grpc.ServiceDesc{ MethodName: "ControllerGetVolume", Handler: _Controller_ControllerGetVolume_Handler, }, + { + MethodName: "ControllerModifyVolume", + Handler: _Controller_ControllerModifyVolume_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "github.com/container-storage-interface/spec/csi.proto", diff --git a/spec.md b/spec.md index f16e8a47..766244e7 100644 --- a/spec.md +++ b/spec.md @@ -381,6 +381,11 @@ service Controller { returns (ControllerGetVolumeResponse) { option (alpha_method) = true; } + + rpc ControllerModifyVolume (ModifyVolumeRequest) + returns (ModifyVolumeResponse) { + option (alpha_method) = true; + } } service GroupController { @@ -843,6 +848,10 @@ message CreateVolumeRequest { // VOLUME_ACCESSIBILITY_CONSTRAINTS plugin capability, the SP MAY // choose where the provisioned volume is accessible from. TopologyRequirement accessibility_requirements = 7; + + // This field is OPTIONAL. This allows the CO to specify the + // volume performance class parameters to apply. + map mutable_parameters = 8; } // Specifies what source the volume will be created from. One of the @@ -1617,6 +1626,40 @@ The CO MUST implement the specified error recovery behavior when it encounters t |-----------|-----------|-------------|-------------------| | Volume does not exist | 5 NOT_FOUND | Indicates that a volume corresponding to the specified `volume_id` does not exist. | Caller MUST verify that the `volume_id` is correct and that the volume is accessible and has not been deleted before retrying with exponential back off. | + +#### `ModifyVolume` + +A Controller plugin SHALL implement this RPC call. If the MODIFY_VOLUME capability is present, a Controller plugin MUST implement this RPC call. This RPC allows the CO to change mutable key attributes of a volume. + +This operation MUST be idempotent. The preset parameters in the VolumePerformanceClass can be greater than or less than the current values. + + +```protobuf +message ModifyVolumeRequest { + option (alpha_message) = true; + + // Contains identity information for the existing volume. + // This field is REQUIRED. + string volume_id = 1; + // This field is OPTIONAL.This allows the CO to specify the + // mutable parameters to apply. + map mutable_parameters = 2; +} + +message ModifyVolumeResponse { + option (alpha_message) = true; +} + +``` + +##### ModifyVolume Errors + +| Condition | gRPC Code | Description | Recovery Behavior | +|-----------|-----------|-------------|-------------------| +| Parameters not supported | 3 INVALID_ARGUMENT | Indicates that the CO has specified volume performance parameters not supported by the volume. | Caller MAY verify volume performance parameters. | +| Exceeds capabilities | 3 INVALID_ARGUMENT | Indicates that the CO has specified capabilities not supported by the volume. | Caller MAY verify volume capabilities by calling ValidateVolumeCapabilities and retry with matching capabilities. | +| Volume does not exist | 5 NOT FOUND | Indicates that a volume corresponding to the specified volume_id does not exist. | Caller MUST verify that the volume_id is correct and that the volume is accessible and has not been deleted before retrying with exponential back off. | + #### `GetCapacity` A Controller Plugin MUST implement this RPC call if it has `GET_CAPACITY` controller capability. @@ -1773,6 +1816,10 @@ message ControllerServiceCapability { // SINGLE_NODE_SINGLE_WRITER and/or SINGLE_NODE_MULTI_WRITER are // supported, in order to permit older COs to continue working. SINGLE_NODE_MULTI_WRITER = 13 [(alpha_enum_value) = true]; + + // Indicates the SP supports modifying volume with mutable + // parameters. See ModifyVolume for details. + MODIFY_VOLUME = 14 [(alpha_enum_value) = true]; } Type type = 1;