diff --git a/proto/greenfield/storage/events.proto b/proto/greenfield/storage/events.proto index 50c671886..e1ab29b44 100644 --- a/proto/greenfield/storage/events.proto +++ b/proto/greenfield/storage/events.proto @@ -178,6 +178,8 @@ message EventSealObject { uint32 global_virtual_group_id = 7; // local_virtual_group_id defines the unique id of lvg which the object stored uint32 local_virtual_group_id = 8; + // for_update indicates whether sealing on a updating object + bool for_update = 9; } // EventCopyObject is emitted on MsgCopyObject @@ -240,6 +242,8 @@ message EventRejectSealObject { (gogoproto.customtype) = "Uint", (gogoproto.nullable) = false ]; + // for_update indicates whether reject sealing on a updating object + bool for_update = 5; } // EventDiscontinueObject is emitted on MsgDiscontinueObject @@ -578,10 +582,8 @@ message EventUpdateObjectContent { uint64 payload_size = 5; // checksums define the total checksums of the object which generated by redundancy repeated bytes checksums = 6; - // updated_at define the block timestamp when the object is updated - int64 updated_at = 7; // version define the version of object - int64 version = 8; + int64 version = 7; } // EventUpdateObjectContentSuccess is emitted on the MsgSealObject for updating object @@ -606,6 +608,8 @@ message EventUpdateObjectContentSuccess { repeated bytes new_checksums = 8; // version define the version of object int64 version = 9; + // updated_at define the block timestamp when the object is updated + int64 updated_at = 10; } // EventCancelUpdateObjectContent is emitted on MsgCancelUpdateObjectContent diff --git a/x/storage/keeper/keeper.go b/x/storage/keeper/keeper.go index 215d70914..995561d91 100644 --- a/x/storage/keeper/keeper.go +++ b/x/storage/keeper/keeper.go @@ -850,17 +850,7 @@ func (k Keeper) SealObject( obz := k.cdc.MustMarshal(objectInfo) store.Set(types.GetObjectByIDKey(objectInfo.Id), obz) - if err := ctx.EventManager().EmitTypedEvents(&types.EventSealObject{ - Operator: spSealAcc.String(), - BucketName: bucketInfo.BucketName, - ObjectName: objectInfo.ObjectName, - ObjectId: objectInfo.Id, - Status: objectInfo.ObjectStatus, - GlobalVirtualGroupId: opts.GlobalVirtualGroupId, - LocalVirtualGroupId: objectInfo.LocalVirtualGroupId, - }); err != nil { - return err - } + // if isUpdate { if err := ctx.EventManager().EmitTypedEvents(&types.EventUpdateObjectContentSuccess{ Operator: spSealAcc.String(), @@ -872,10 +862,23 @@ func (k Keeper) SealObject( PrevChecksums: prevCheckSums, NewChecksums: objectInfo.Checksums, Version: objectInfo.Version, + UpdatedAt: objectInfo.UpdatedAt, }); err != nil { return err } } + if err := ctx.EventManager().EmitTypedEvents(&types.EventSealObject{ + Operator: spSealAcc.String(), + BucketName: bucketInfo.BucketName, + ObjectName: objectInfo.ObjectName, + ObjectId: objectInfo.Id, + Status: objectInfo.ObjectStatus, + GlobalVirtualGroupId: opts.GlobalVirtualGroupId, + LocalVirtualGroupId: objectInfo.LocalVirtualGroupId, + ForUpdate: isUpdate, + }); err != nil { + return err + } return nil } @@ -1198,7 +1201,8 @@ func (k Keeper) RejectSealObject(ctx sdk.Context, operator sdk.AccAddress, bucke if sp.Id != spInState.Id { return errors.Wrapf(types.ErrAccessDenied, "Only allowed primary SP to do reject seal object") } - if objectInfo.IsUpdating { + forUpdate := objectInfo.IsUpdating + if forUpdate { shadowObjectInfo := k.MustGetShadowObjectInfo(ctx, bucketName, objectName) err := k.UnlockShadowObjectFeeAndDeleteShadowObjectInfo(ctx, bucketInfo, shadowObjectInfo, objectName) if err != nil { @@ -1219,12 +1223,12 @@ func (k Keeper) RejectSealObject(ctx sdk.Context, operator sdk.AccAddress, bucke store.Delete(types.GetObjectKey(bucketName, objectName)) store.Delete(types.GetObjectByIDKey(objectInfo.Id)) } - // todo sp receive rejectSeal event for sealed object should not cause GC. return ctx.EventManager().EmitTypedEvents(&types.EventRejectSealObject{ Operator: operator.String(), BucketName: bucketInfo.BucketName, ObjectName: objectInfo.ObjectName, ObjectId: objectInfo.Id, + ForUpdate: forUpdate, }) } diff --git a/x/storage/types/events.pb.go b/x/storage/types/events.pb.go index 8f45e352a..b1bcf0481 100644 --- a/x/storage/types/events.pb.go +++ b/x/storage/types/events.pb.go @@ -650,6 +650,8 @@ type EventSealObject struct { GlobalVirtualGroupId uint32 `protobuf:"varint,7,opt,name=global_virtual_group_id,json=globalVirtualGroupId,proto3" json:"global_virtual_group_id,omitempty"` // local_virtual_group_id defines the unique id of lvg which the object stored LocalVirtualGroupId uint32 `protobuf:"varint,8,opt,name=local_virtual_group_id,json=localVirtualGroupId,proto3" json:"local_virtual_group_id,omitempty"` + // for_update indicates whether sealing on a updating object + ForUpdate bool `protobuf:"varint,9,opt,name=for_update,json=forUpdate,proto3" json:"for_update,omitempty"` } func (m *EventSealObject) Reset() { *m = EventSealObject{} } @@ -727,6 +729,13 @@ func (m *EventSealObject) GetLocalVirtualGroupId() uint32 { return 0 } +func (m *EventSealObject) GetForUpdate() bool { + if m != nil { + return m.ForUpdate + } + return false +} + // EventCopyObject is emitted on MsgCopyObject type EventCopyObject struct { // operator define the account address of operator who copy the object @@ -907,6 +916,8 @@ type EventRejectSealObject struct { ObjectName string `protobuf:"bytes,3,opt,name=object_name,json=objectName,proto3" json:"object_name,omitempty"` // id define an u256 id for object ObjectId Uint `protobuf:"bytes,4,opt,name=object_id,json=objectId,proto3,customtype=Uint" json:"object_id"` + // for_update indicates whether reject sealing on a updating object + ForUpdate bool `protobuf:"varint,5,opt,name=for_update,json=forUpdate,proto3" json:"for_update,omitempty"` } func (m *EventRejectSealObject) Reset() { *m = EventRejectSealObject{} } @@ -963,6 +974,13 @@ func (m *EventRejectSealObject) GetObjectName() string { return "" } +func (m *EventRejectSealObject) GetForUpdate() bool { + if m != nil { + return m.ForUpdate + } + return false +} + // EventDiscontinueObject is emitted on MsgDiscontinueObject type EventDiscontinueObject struct { // bucket_name define the name of the bucket @@ -2385,10 +2403,8 @@ type EventUpdateObjectContent struct { PayloadSize uint64 `protobuf:"varint,5,opt,name=payload_size,json=payloadSize,proto3" json:"payload_size,omitempty"` // checksums define the total checksums of the object which generated by redundancy Checksums [][]byte `protobuf:"bytes,6,rep,name=checksums,proto3" json:"checksums,omitempty"` - // updated_at define the block timestamp when the object is updated - UpdatedAt int64 `protobuf:"varint,7,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"` // version define the version of object - Version int64 `protobuf:"varint,8,opt,name=version,proto3" json:"version,omitempty"` + Version int64 `protobuf:"varint,7,opt,name=version,proto3" json:"version,omitempty"` } func (m *EventUpdateObjectContent) Reset() { *m = EventUpdateObjectContent{} } @@ -2459,13 +2475,6 @@ func (m *EventUpdateObjectContent) GetChecksums() [][]byte { return nil } -func (m *EventUpdateObjectContent) GetUpdatedAt() int64 { - if m != nil { - return m.UpdatedAt - } - return 0 -} - func (m *EventUpdateObjectContent) GetVersion() int64 { if m != nil { return m.Version @@ -2491,6 +2500,8 @@ type EventUpdateObjectContentSuccess struct { NewChecksums [][]byte `protobuf:"bytes,8,rep,name=new_checksums,json=newChecksums,proto3" json:"new_checksums,omitempty"` // version define the version of object Version int64 `protobuf:"varint,9,opt,name=version,proto3" json:"version,omitempty"` + // updated_at define the block timestamp when the object is updated + UpdatedAt int64 `protobuf:"varint,10,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"` } func (m *EventUpdateObjectContentSuccess) Reset() { *m = EventUpdateObjectContentSuccess{} } @@ -2582,6 +2593,13 @@ func (m *EventUpdateObjectContentSuccess) GetVersion() int64 { return 0 } +func (m *EventUpdateObjectContentSuccess) GetUpdatedAt() int64 { + if m != nil { + return m.UpdatedAt + } + return 0 +} + // EventCancelUpdateObjectContent is emitted on MsgCancelUpdateObjectContent type EventCancelUpdateObjectContent struct { // operator define the account address of operator who cancel create object @@ -2688,124 +2706,126 @@ func init() { func init() { proto.RegisterFile("greenfield/storage/events.proto", fileDescriptor_946dcba4f763ddc4) } var fileDescriptor_946dcba4f763ddc4 = []byte{ - // 1868 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcf, 0x8f, 0xdb, 0xc6, - 0x15, 0x36, 0xf5, 0x6b, 0xa5, 0xa7, 0x95, 0xe4, 0x65, 0xb7, 0x8e, 0xba, 0x49, 0xb4, 0x0a, 0x8b, - 0xa6, 0x9b, 0xa0, 0x96, 0x0a, 0x27, 0x2d, 0x7c, 0x33, 0x76, 0xd7, 0x69, 0x21, 0xb4, 0x49, 0x5c, - 0xca, 0xc9, 0xa1, 0x17, 0x62, 0x44, 0xce, 0xca, 0xac, 0x49, 0x0e, 0xcb, 0x19, 0xee, 0x5a, 0xf9, - 0x07, 0x7a, 0x2a, 0x1a, 0xa0, 0x28, 0xd0, 0x5e, 0x72, 0x2e, 0x50, 0x14, 0xe8, 0x21, 0xd7, 0x5e, - 0x0b, 0xf7, 0x96, 0xba, 0x97, 0xfe, 0x00, 0xd2, 0xc2, 0x3e, 0xa5, 0x40, 0xd1, 0x9e, 0x7b, 0x2a, - 0x38, 0x33, 0xa4, 0x48, 0x51, 0x6b, 0x2d, 0xe5, 0xd8, 0xbb, 0xce, 0x4d, 0x1c, 0x7d, 0x1c, 0xbd, - 0xf7, 0xbd, 0x6f, 0xde, 0xbc, 0x79, 0x23, 0xd8, 0x9d, 0x06, 0x18, 0x7b, 0x47, 0x36, 0x76, 0xac, - 0x21, 0x65, 0x24, 0x40, 0x53, 0x3c, 0xc4, 0xc7, 0xd8, 0x63, 0x74, 0xe0, 0x07, 0x84, 0x11, 0x55, - 0x9d, 0x03, 0x06, 0x12, 0xb0, 0xf3, 0x15, 0x93, 0x50, 0x97, 0x50, 0x83, 0x23, 0x86, 0xe2, 0x41, - 0xc0, 0x77, 0xb6, 0xa7, 0x64, 0x4a, 0xc4, 0x78, 0xf4, 0x49, 0x8e, 0xee, 0x4e, 0x09, 0x99, 0x3a, - 0x78, 0xc8, 0x9f, 0x26, 0xe1, 0xd1, 0x90, 0xd9, 0x2e, 0xa6, 0x0c, 0xb9, 0x7e, 0x02, 0x98, 0x9b, - 0x11, 0x60, 0x4a, 0xc2, 0xc0, 0xc4, 0x43, 0x36, 0xf3, 0x31, 0x5d, 0x02, 0x88, 0xed, 0x34, 0x89, - 0xeb, 0x12, 0x4f, 0x02, 0x7a, 0x4b, 0x00, 0xa9, 0x09, 0xb4, 0x3f, 0x57, 0x60, 0xeb, 0xad, 0xc8, - 0xb1, 0xc3, 0x00, 0x23, 0x86, 0x0f, 0x42, 0xf3, 0x2e, 0x66, 0xea, 0x00, 0xaa, 0xe4, 0xc4, 0xc3, - 0x41, 0x57, 0xe9, 0x2b, 0x7b, 0x8d, 0x83, 0xee, 0x83, 0x8f, 0xaf, 0x6e, 0x4b, 0x7f, 0xf6, 0x2d, - 0x2b, 0xc0, 0x94, 0x8e, 0x59, 0x60, 0x7b, 0x53, 0x5d, 0xc0, 0xd4, 0x5d, 0x68, 0x4e, 0xf8, 0x9b, - 0x86, 0x87, 0x5c, 0xdc, 0x2d, 0x45, 0x6f, 0xe9, 0x20, 0x86, 0xde, 0x41, 0x2e, 0x56, 0x0f, 0x00, - 0x8e, 0x6d, 0x6a, 0x4f, 0x6c, 0xc7, 0x66, 0xb3, 0x6e, 0xb9, 0xaf, 0xec, 0xb5, 0xaf, 0x69, 0x83, - 0x3c, 0x87, 0x83, 0xf7, 0x13, 0xd4, 0xed, 0x99, 0x8f, 0xf5, 0xd4, 0x5b, 0xea, 0x8b, 0xd0, 0x30, - 0xb9, 0x91, 0x06, 0x62, 0xdd, 0x4a, 0x5f, 0xd9, 0x2b, 0xeb, 0x75, 0x31, 0xb0, 0xcf, 0xd4, 0xeb, - 0xd0, 0x90, 0x16, 0xd8, 0x56, 0xb7, 0xca, 0xad, 0x7e, 0xf1, 0xfe, 0xa7, 0xbb, 0x97, 0xfe, 0xf6, - 0xe9, 0x6e, 0xe5, 0x3d, 0xdb, 0x63, 0x0f, 0x3e, 0xbe, 0xda, 0x94, 0x1e, 0x44, 0x8f, 0x7a, 0x5d, - 0xa0, 0x47, 0x96, 0x7a, 0x03, 0x9a, 0x82, 0x58, 0x23, 0xe2, 0xa5, 0x5b, 0xe3, 0xb6, 0xf5, 0x96, - 0xd9, 0x36, 0xe6, 0x30, 0x61, 0x17, 0x4d, 0x3e, 0xab, 0xdf, 0x00, 0xd5, 0xbc, 0x83, 0x82, 0x29, - 0xb6, 0x8c, 0x00, 0x23, 0xcb, 0xf8, 0x71, 0x48, 0x18, 0xea, 0x6e, 0xf4, 0x95, 0xbd, 0x8a, 0x7e, - 0x59, 0x7e, 0xa3, 0x63, 0x64, 0xfd, 0x20, 0x1a, 0x57, 0xf7, 0xa1, 0xe3, 0xa3, 0x99, 0x8b, 0x3d, - 0x66, 0x20, 0x41, 0x65, 0xb7, 0xbe, 0x82, 0xe4, 0xb6, 0x7c, 0x41, 0x8e, 0xaa, 0x1a, 0xb4, 0xfc, - 0xc0, 0x76, 0x51, 0x30, 0x33, 0xa8, 0x1f, 0xf9, 0xdb, 0xe8, 0x2b, 0x7b, 0x2d, 0xbd, 0x29, 0x07, - 0xc7, 0xfe, 0xc8, 0x52, 0x0f, 0xa0, 0x37, 0x75, 0xc8, 0x04, 0x39, 0xc6, 0xb1, 0x1d, 0xb0, 0x10, - 0x39, 0xc6, 0x34, 0x20, 0xa1, 0x6f, 0x1c, 0x21, 0xd7, 0x76, 0x66, 0xd1, 0x4b, 0xc0, 0x5f, 0xda, - 0x11, 0xa8, 0xf7, 0x05, 0xe8, 0xbb, 0x11, 0xe6, 0x3b, 0x1c, 0x32, 0xb2, 0xd4, 0xeb, 0x50, 0xa3, - 0x0c, 0xb1, 0x90, 0x76, 0x9b, 0x9c, 0x94, 0xfe, 0x32, 0x52, 0x84, 0x62, 0xc6, 0x1c, 0xa7, 0x4b, - 0xbc, 0xf6, 0xcb, 0x92, 0x54, 0xd5, 0x4d, 0xec, 0xe0, 0x44, 0x55, 0x6f, 0x42, 0x9d, 0xf8, 0x38, - 0x40, 0x8c, 0xac, 0x16, 0x56, 0x82, 0x9c, 0x6b, 0xb1, 0xb4, 0x96, 0x16, 0xcb, 0x39, 0x2d, 0x66, - 0xa4, 0x52, 0x29, 0x22, 0x95, 0xd5, 0xa4, 0x56, 0x57, 0x91, 0xaa, 0xfd, 0xa4, 0x0c, 0x5f, 0xe6, - 0xd4, 0xbc, 0xe7, 0x5b, 0xc9, 0x82, 0x1b, 0x79, 0x47, 0x64, 0x4d, 0x7a, 0x56, 0x2e, 0xbd, 0x8c, - 0xbb, 0xe5, 0x22, 0xee, 0x2e, 0x17, 0x76, 0xe5, 0x14, 0x61, 0x7f, 0x3d, 0x2f, 0x6c, 0xbe, 0x0e, - 0x73, 0xf2, 0xcd, 0xe6, 0x82, 0xda, 0x5a, 0xb9, 0x60, 0x75, 0x24, 0x36, 0x56, 0x46, 0xe2, 0xd7, - 0x0a, 0x5c, 0x11, 0x22, 0xb5, 0xa9, 0x49, 0x3c, 0x66, 0x7b, 0x61, 0xac, 0xd4, 0x0c, 0x67, 0x4a, - 0x11, 0xce, 0x56, 0x86, 0xe3, 0x0a, 0xd4, 0x02, 0x8c, 0x28, 0xf1, 0xa4, 0x32, 0xe5, 0x53, 0x94, - 0xdd, 0x2c, 0xbe, 0x58, 0x52, 0xd9, 0x4d, 0x0c, 0xec, 0x33, 0xed, 0xe7, 0xb5, 0x4c, 0x96, 0x7e, - 0x77, 0xf2, 0x23, 0x6c, 0x32, 0xf5, 0x1a, 0x6c, 0xf0, 0xfc, 0x77, 0x06, 0xbd, 0xc4, 0xc0, 0xcf, - 0x7f, 0x35, 0xed, 0x42, 0x93, 0x70, 0x73, 0x04, 0xa0, 0x22, 0x00, 0x62, 0x28, 0xaf, 0xbf, 0x5a, - 0x11, 0x2e, 0xaf, 0x43, 0x43, 0x4e, 0x2d, 0xe3, 0xb9, 0xea, 0x4d, 0x81, 0x1e, 0x59, 0xf9, 0x0c, - 0x59, 0xcf, 0x67, 0xc8, 0x57, 0x60, 0xd3, 0x47, 0x33, 0x87, 0x20, 0xcb, 0xa0, 0xf6, 0x07, 0x98, - 0x27, 0xd1, 0x8a, 0xde, 0x94, 0x63, 0x63, 0xfb, 0x83, 0xc5, 0x5d, 0x0b, 0xd6, 0x52, 0xea, 0x2b, - 0xb0, 0x19, 0x89, 0x2b, 0x5a, 0x16, 0x7c, 0x7f, 0x69, 0x72, 0x82, 0x9a, 0x72, 0x8c, 0x6f, 0x20, - 0x99, 0x8d, 0x6d, 0x33, 0xb7, 0xb1, 0xc5, 0x49, 0xb8, 0x75, 0x7a, 0x12, 0x16, 0x82, 0xc8, 0x26, - 0x61, 0xf5, 0x7b, 0xd0, 0x09, 0xb0, 0x15, 0x7a, 0x16, 0xf2, 0xcc, 0x99, 0xf8, 0xf1, 0xf6, 0xe9, - 0x2e, 0xe8, 0x09, 0x94, 0xbb, 0xd0, 0x0e, 0x32, 0xcf, 0x8b, 0xbb, 0x64, 0xa7, 0xf0, 0x2e, 0xf9, - 0x12, 0x34, 0xcc, 0x3b, 0xd8, 0xbc, 0x4b, 0x43, 0x97, 0x76, 0x2f, 0xf7, 0xcb, 0x7b, 0x9b, 0xfa, - 0x7c, 0x40, 0x7d, 0x03, 0xae, 0x38, 0xc4, 0xcc, 0x2d, 0x67, 0xdb, 0xea, 0x6e, 0xf1, 0xc8, 0x7d, - 0x89, 0x7f, 0x9b, 0x5e, 0xc6, 0x23, 0x4b, 0xfb, 0x8f, 0x02, 0x2f, 0x88, 0x55, 0x81, 0x3c, 0x13, - 0x3b, 0x99, 0xb5, 0xf1, 0x94, 0x92, 0xe9, 0x82, 0xda, 0xcb, 0x39, 0xb5, 0xe7, 0x94, 0x57, 0xc9, - 0x2b, 0x2f, 0xa3, 0xeb, 0x5a, 0x01, 0x5d, 0x6b, 0x9f, 0x95, 0xa0, 0xc3, 0x3d, 0x1e, 0x63, 0xe4, - 0x9c, 0xb3, 0xa7, 0x19, 0x2f, 0xaa, 0x45, 0x56, 0xe7, 0x5c, 0xd2, 0xb5, 0x82, 0x92, 0xfe, 0x16, - 0xbc, 0xb0, 0x34, 0xed, 0x27, 0xf9, 0x7e, 0x3b, 0x9f, 0xef, 0x47, 0xd6, 0x63, 0xd4, 0x55, 0x3f, - 0x5d, 0x5d, 0x1f, 0x95, 0x25, 0xd7, 0x87, 0xc4, 0x9f, 0x3d, 0x11, 0xd7, 0xaf, 0x42, 0x87, 0x06, - 0xa6, 0x91, 0xe7, 0xbb, 0x45, 0x03, 0xf3, 0x60, 0x4e, 0xb9, 0xc4, 0xe5, 0x69, 0x8f, 0x70, 0xef, - 0xce, 0x99, 0x7f, 0x15, 0x3a, 0x16, 0x65, 0x99, 0xf9, 0x44, 0xda, 0x6d, 0x59, 0x94, 0x65, 0xe7, - 0x8b, 0x70, 0xe9, 0xf9, 0xaa, 0x09, 0x2e, 0x35, 0xdf, 0x0d, 0x68, 0xa5, 0x7e, 0xf7, 0x6c, 0x9a, - 0x6c, 0x26, 0x26, 0xf1, 0x12, 0xba, 0x95, 0xfa, 0xa1, 0xb3, 0x25, 0xeb, 0x66, 0x62, 0xc3, 0xba, - 0x01, 0xfa, 0x9f, 0x92, 0x29, 0x32, 0x2f, 0xd2, 0x72, 0xa8, 0x14, 0x59, 0x0e, 0xa7, 0x3b, 0x5f, - 0x3d, 0xdd, 0xf9, 0x3f, 0x2a, 0xb2, 0x8c, 0xd4, 0x31, 0x5f, 0x27, 0x17, 0x2c, 0x1f, 0x14, 0x21, - 0x60, 0x69, 0x21, 0x26, 0x9d, 0x59, 0x30, 0x4b, 0x59, 0x56, 0xdd, 0xce, 0x7f, 0xb5, 0x54, 0x84, - 0xf6, 0xb5, 0x0a, 0xb1, 0x9f, 0x96, 0x32, 0xd5, 0xbb, 0x14, 0xf0, 0x53, 0xac, 0xde, 0x9f, 0xa2, - 0xee, 0xb2, 0xd5, 0x4d, 0x75, 0x9d, 0xea, 0x46, 0xfb, 0xaf, 0x02, 0x97, 0x53, 0x85, 0x29, 0x57, - 0x67, 0xe1, 0xee, 0xc1, 0xcb, 0x00, 0x42, 0xf2, 0x29, 0x0e, 0x1a, 0x7c, 0x84, 0x7b, 0xf8, 0x6d, - 0xa8, 0x27, 0x2b, 0xe2, 0x0c, 0xe7, 0x97, 0x8d, 0xa9, 0xcc, 0xfa, 0x0b, 0x25, 0x4b, 0xa5, 0x70, - 0xc9, 0xb2, 0x0d, 0x55, 0x7c, 0x8f, 0x05, 0x48, 0x66, 0x4d, 0xf1, 0xa0, 0xfd, 0x2a, 0x76, 0x59, - 0xa4, 0x9d, 0x05, 0x97, 0x4b, 0xeb, 0xb8, 0x5c, 0x7e, 0x9c, 0xcb, 0x95, 0xb3, 0xbb, 0xac, 0xfd, - 0x55, 0x91, 0x7b, 0xd6, 0xf7, 0x31, 0x3a, 0x96, 0xa6, 0xdd, 0x80, 0xb6, 0x8b, 0xdd, 0x09, 0x0e, - 0x92, 0x63, 0xd9, 0xaa, 0xb0, 0xb4, 0x04, 0x3e, 0x3e, 0xaf, 0x5d, 0x10, 0xdf, 0xfe, 0x5d, 0x92, - 0x59, 0x42, 0x2c, 0x3d, 0xee, 0xdc, 0xdb, 0xdc, 0xd0, 0x67, 0xd4, 0x58, 0x78, 0x3a, 0x7e, 0xa9, - 0xb7, 0xe2, 0xf8, 0x50, 0x83, 0x91, 0x28, 0x46, 0xdd, 0x6a, 0xbf, 0xbc, 0xd7, 0xbc, 0xf6, 0xfa, - 0x32, 0xa5, 0x72, 0x02, 0x52, 0xae, 0xdf, 0xc4, 0x0c, 0xd9, 0x8e, 0xbe, 0x29, 0x67, 0xb8, 0x4d, - 0xf6, 0x2d, 0x4b, 0xbd, 0x09, 0x5b, 0xa9, 0x19, 0x45, 0xee, 0xea, 0xd6, 0xfa, 0xe5, 0xc7, 0x3a, - 0xd9, 0x49, 0xa6, 0x10, 0xba, 0xd6, 0xfe, 0x5e, 0x4a, 0x76, 0x18, 0x0f, 0x9f, 0x7c, 0x61, 0xe8, - 0x5e, 0xc8, 0x0a, 0xd5, 0xc2, 0x59, 0xe1, 0x26, 0x6c, 0x48, 0xaa, 0x38, 0xa7, 0xc5, 0x02, 0x15, - 0xbf, 0xaa, 0xfd, 0x22, 0xde, 0xf3, 0x72, 0x18, 0xf5, 0x9b, 0x50, 0x13, 0xa8, 0x95, 0xe4, 0x4a, - 0x9c, 0x3a, 0x82, 0x0e, 0xbe, 0xe7, 0xdb, 0x01, 0x62, 0x36, 0xf1, 0x0c, 0x66, 0xcb, 0x2c, 0xda, - 0xbc, 0xb6, 0x33, 0x10, 0x1d, 0xe6, 0x41, 0xdc, 0x61, 0x1e, 0xdc, 0x8e, 0x3b, 0xcc, 0x07, 0x95, - 0x0f, 0xff, 0xb1, 0xab, 0xe8, 0xed, 0xf9, 0x8b, 0xd1, 0x57, 0xda, 0xbf, 0x94, 0xcc, 0x06, 0xc7, - 0xad, 0x7b, 0x2b, 0xca, 0x7b, 0xcf, 0x77, 0xd4, 0x97, 0xa7, 0xf2, 0xfb, 0x71, 0x05, 0xf9, 0xb6, - 0x1d, 0x04, 0x24, 0x78, 0xa2, 0x36, 0x65, 0xb1, 0x3e, 0x5c, 0xa1, 0xb6, 0xa3, 0x06, 0x2d, 0x0b, - 0x53, 0x66, 0x98, 0x77, 0x90, 0xed, 0xcd, 0xeb, 0xc2, 0x66, 0x34, 0x78, 0x18, 0x8d, 0x8d, 0x2c, - 0xed, 0x77, 0xf1, 0x59, 0x38, 0xed, 0x8a, 0x8e, 0x69, 0xe8, 0xb0, 0xa8, 0xd2, 0x91, 0xe7, 0x2d, - 0x85, 0xbf, 0x18, 0x9f, 0xa6, 0xce, 0xd9, 0xe4, 0xcf, 0xb2, 0xec, 0x3f, 0xb7, 0xf5, 0xfb, 0x59, - 0x7c, 0xfd, 0x53, 0x36, 0x3c, 0xc2, 0xd7, 0x27, 0x0d, 0xcf, 0x39, 0xfb, 0xf4, 0xfb, 0xb8, 0x10, - 0x12, 0x3e, 0x5d, 0xa8, 0xda, 0x2f, 0x67, 0x7f, 0x25, 0x6f, 0xff, 0x6f, 0xe2, 0x14, 0x9c, 0xb2, - 0x7f, 0x45, 0x48, 0xce, 0xd1, 0xda, 0x63, 0x29, 0xa0, 0x31, 0x43, 0x0e, 0xbe, 0x45, 0x1c, 0xdb, - 0x9c, 0x1d, 0x3a, 0x18, 0x79, 0xa1, 0xaf, 0xee, 0x40, 0x7d, 0xe2, 0x10, 0xf3, 0xee, 0x3b, 0xa1, - 0xcb, 0xed, 0x2d, 0xeb, 0xc9, 0x73, 0xb4, 0xdd, 0xc9, 0xd3, 0x8c, 0xed, 0x1d, 0x11, 0xb9, 0x2d, - 0x2c, 0xdd, 0xee, 0xc4, 0xb6, 0x1f, 0x9d, 0x65, 0x74, 0xb0, 0x92, 0xcf, 0xda, 0x03, 0x05, 0xb6, - 0x25, 0x4b, 0x53, 0xb1, 0x4f, 0x3c, 0xc3, 0x34, 0x59, 0xe8, 0xba, 0xe2, 0x35, 0xd8, 0xb2, 0x28, - 0x33, 0x96, 0xb5, 0xdf, 0xda, 0x16, 0x65, 0xb7, 0xe6, 0x1d, 0x38, 0xed, 0xb7, 0x0a, 0xec, 0xa4, - 0x3a, 0x87, 0x17, 0xdd, 0xb5, 0x48, 0xaa, 0xdd, 0xd4, 0x69, 0x5f, 0xd8, 0x8b, 0x2f, 0xaa, 0xb5, - 0x1f, 0x95, 0xe0, 0x25, 0xd9, 0x39, 0x73, 0xfd, 0x48, 0x48, 0x17, 0x5e, 0x3a, 0xab, 0xaf, 0x93, - 0x2a, 0x2b, 0x6f, 0x4b, 0x5f, 0x83, 0x2d, 0x1a, 0x98, 0x0b, 0xf2, 0x13, 0x69, 0xb3, 0x4d, 0x03, - 0x33, 0x2d, 0x3f, 0x03, 0x9a, 0xb2, 0x8b, 0xcb, 0x6e, 0xa3, 0x69, 0xb4, 0x7e, 0xe3, 0xcb, 0x7d, - 0xd9, 0xe1, 0x48, 0x9e, 0xd5, 0x37, 0xa1, 0xc2, 0xd0, 0x94, 0xca, 0x85, 0xdb, 0x5f, 0xde, 0xb9, - 0x97, 0xd5, 0x29, 0x9a, 0x52, 0x9d, 0xa3, 0xb5, 0x3f, 0x94, 0xa4, 0x5e, 0xd2, 0x6d, 0x8a, 0x43, - 0x71, 0xe5, 0xb0, 0x26, 0xfb, 0xeb, 0x37, 0x5a, 0x9e, 0xfc, 0x0a, 0x69, 0xf1, 0xaa, 0xa6, 0x9a, - 0xbf, 0xaa, 0xc9, 0x5c, 0x2f, 0xd4, 0x16, 0xaf, 0x17, 0x5e, 0x06, 0x08, 0x39, 0x13, 0x96, 0x81, - 0x18, 0xef, 0x4e, 0x96, 0xf5, 0x86, 0x1c, 0xd9, 0x67, 0x6a, 0x17, 0x36, 0x8e, 0x71, 0x40, 0x6d, - 0xe2, 0xf1, 0x7e, 0x63, 0x59, 0x8f, 0x1f, 0xb5, 0x9f, 0x95, 0x61, 0xf7, 0x34, 0x22, 0xc7, 0xa1, - 0x69, 0x46, 0xe7, 0xe3, 0xe7, 0x8f, 0xcf, 0xd7, 0x61, 0xcb, 0x0f, 0xf0, 0xb1, 0xb1, 0x84, 0xd4, - 0x4e, 0xf4, 0xc5, 0xad, 0x14, 0xb1, 0x7b, 0x70, 0xd9, 0xc3, 0x27, 0x59, 0x68, 0x8d, 0x43, 0xdb, - 0x1e, 0x3e, 0x49, 0x23, 0xbf, 0x06, 0x6d, 0x3e, 0xeb, 0x3c, 0x0e, 0x1b, 0x3c, 0x0e, 0xad, 0x68, - 0xf4, 0x30, 0x89, 0xc5, 0x57, 0xa1, 0x15, 0x4d, 0x38, 0x47, 0xd5, 0x39, 0x6a, 0xd3, 0xc3, 0x27, - 0x73, 0x50, 0x2a, 0x22, 0x8d, 0x6c, 0x44, 0x1e, 0x28, 0xd0, 0x4b, 0xa5, 0xee, 0xcf, 0x4f, 0xe0, - 0xe7, 0x58, 0x6e, 0x1d, 0x8c, 0xee, 0x3f, 0xec, 0x29, 0x9f, 0x3c, 0xec, 0x29, 0xff, 0x7c, 0xd8, - 0x53, 0x3e, 0x7c, 0xd4, 0xbb, 0xf4, 0xc9, 0xa3, 0xde, 0xa5, 0xbf, 0x3c, 0xea, 0x5d, 0xfa, 0xe1, - 0x70, 0x6a, 0xb3, 0x3b, 0xe1, 0x64, 0x60, 0x12, 0x77, 0x38, 0xf1, 0x26, 0x57, 0x79, 0x89, 0x30, - 0x4c, 0xfd, 0xa9, 0xe7, 0x5e, 0xf6, 0x6f, 0x3d, 0x93, 0x1a, 0x3f, 0xea, 0xbd, 0xf1, 0xff, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xe0, 0xb9, 0x84, 0xc7, 0xc2, 0x24, 0x00, 0x00, + // 1890 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcb, 0x8f, 0xdb, 0xc6, + 0x19, 0x37, 0xf5, 0x5a, 0x69, 0xb4, 0x92, 0xbc, 0xec, 0xd6, 0x61, 0x37, 0x89, 0x56, 0x61, 0xd1, + 0x74, 0x13, 0xd4, 0x52, 0xe1, 0xa4, 0x85, 0x6f, 0xc6, 0xee, 0x3a, 0x2d, 0x84, 0x36, 0x89, 0x4b, + 0x39, 0x39, 0xf4, 0x42, 0x8c, 0xc8, 0x59, 0x9a, 0x35, 0xc9, 0x61, 0x67, 0x86, 0xbb, 0x56, 0xfe, + 0x81, 0xf6, 0x52, 0x20, 0x40, 0x51, 0xa0, 0xbd, 0xe4, 0xda, 0x02, 0x45, 0x8b, 0x1e, 0x72, 0xed, + 0xdd, 0xc7, 0xd4, 0xbd, 0xf4, 0x01, 0xa4, 0x85, 0x7d, 0x69, 0x0b, 0x14, 0xed, 0xb9, 0xa7, 0x82, + 0x33, 0x43, 0x8a, 0x14, 0xb5, 0xd6, 0x52, 0x8e, 0xbd, 0xeb, 0xdc, 0xc4, 0xd1, 0x8f, 0xa3, 0xef, + 0xf1, 0xfb, 0x1e, 0xf3, 0x8d, 0xc0, 0xae, 0x43, 0x10, 0x0a, 0x8e, 0x5c, 0xe4, 0xd9, 0x23, 0xca, + 0x30, 0x81, 0x0e, 0x1a, 0xa1, 0x63, 0x14, 0x30, 0x3a, 0x0c, 0x09, 0x66, 0x58, 0x55, 0xe7, 0x80, + 0xa1, 0x04, 0xec, 0x7c, 0xc9, 0xc2, 0xd4, 0xc7, 0xd4, 0xe4, 0x88, 0x91, 0x78, 0x10, 0xf0, 0x9d, + 0x6d, 0x07, 0x3b, 0x58, 0xac, 0xc7, 0x9f, 0xe4, 0xea, 0xae, 0x83, 0xb1, 0xe3, 0xa1, 0x11, 0x7f, + 0x9a, 0x46, 0x47, 0x23, 0xe6, 0xfa, 0x88, 0x32, 0xe8, 0x87, 0x29, 0x60, 0x2e, 0x06, 0x41, 0x14, + 0x47, 0xc4, 0x42, 0x23, 0x36, 0x0b, 0x11, 0x5d, 0x02, 0x48, 0xe4, 0xb4, 0xb0, 0xef, 0xe3, 0x40, + 0x02, 0xfa, 0x4b, 0x00, 0x99, 0x0d, 0xf4, 0x3f, 0xd6, 0xc0, 0xd6, 0x5b, 0xb1, 0x62, 0x87, 0x04, + 0x41, 0x86, 0x0e, 0x22, 0xeb, 0x2e, 0x62, 0xea, 0x10, 0xd4, 0xf1, 0x49, 0x80, 0x88, 0xa6, 0x0c, + 0x94, 0xbd, 0xd6, 0x81, 0xf6, 0xe0, 0xe3, 0xab, 0xdb, 0x52, 0x9f, 0x7d, 0xdb, 0x26, 0x88, 0xd2, + 0x09, 0x23, 0x6e, 0xe0, 0x18, 0x02, 0xa6, 0xee, 0x82, 0xf6, 0x94, 0xbf, 0x69, 0x06, 0xd0, 0x47, + 0x5a, 0x25, 0x7e, 0xcb, 0x00, 0x62, 0xe9, 0x1d, 0xe8, 0x23, 0xf5, 0x00, 0x80, 0x63, 0x97, 0xba, + 0x53, 0xd7, 0x73, 0xd9, 0x4c, 0xab, 0x0e, 0x94, 0xbd, 0xee, 0x35, 0x7d, 0x58, 0xb4, 0xe1, 0xf0, + 0xfd, 0x14, 0x75, 0x7b, 0x16, 0x22, 0x23, 0xf3, 0x96, 0xfa, 0x22, 0x68, 0x59, 0x5c, 0x48, 0x13, + 0x32, 0xad, 0x36, 0x50, 0xf6, 0xaa, 0x46, 0x53, 0x2c, 0xec, 0x33, 0xf5, 0x3a, 0x68, 0x49, 0x09, + 0x5c, 0x5b, 0xab, 0x73, 0xa9, 0x5f, 0xbc, 0xff, 0xe9, 0xee, 0xa5, 0xbf, 0x7c, 0xba, 0x5b, 0x7b, + 0xcf, 0x0d, 0xd8, 0x83, 0x8f, 0xaf, 0xb6, 0xa5, 0x06, 0xf1, 0xa3, 0xd1, 0x14, 0xe8, 0xb1, 0xad, + 0xde, 0x00, 0x6d, 0x61, 0x58, 0x33, 0xb6, 0x8b, 0xd6, 0xe0, 0xb2, 0xf5, 0x97, 0xc9, 0x36, 0xe1, + 0x30, 0x21, 0x17, 0x4d, 0x3f, 0xab, 0x5f, 0x03, 0xaa, 0x75, 0x07, 0x12, 0x07, 0xd9, 0x26, 0x41, + 0xd0, 0x36, 0x7f, 0x18, 0x61, 0x06, 0xb5, 0x8d, 0x81, 0xb2, 0x57, 0x33, 0x2e, 0xcb, 0x6f, 0x0c, + 0x04, 0xed, 0xef, 0xc5, 0xeb, 0xea, 0x3e, 0xe8, 0x85, 0x70, 0xe6, 0xa3, 0x80, 0x99, 0x50, 0x98, + 0x52, 0x6b, 0xae, 0x30, 0x72, 0x57, 0xbe, 0x20, 0x57, 0x55, 0x1d, 0x74, 0x42, 0xe2, 0xfa, 0x90, + 0xcc, 0x4c, 0x1a, 0xc6, 0xfa, 0xb6, 0x06, 0xca, 0x5e, 0xc7, 0x68, 0xcb, 0xc5, 0x49, 0x38, 0xb6, + 0xd5, 0x03, 0xd0, 0x77, 0x3c, 0x3c, 0x85, 0x9e, 0x79, 0xec, 0x12, 0x16, 0x41, 0xcf, 0x74, 0x08, + 0x8e, 0x42, 0xf3, 0x08, 0xfa, 0xae, 0x37, 0x8b, 0x5f, 0x02, 0xfc, 0xa5, 0x1d, 0x81, 0x7a, 0x5f, + 0x80, 0xbe, 0x1d, 0x63, 0xbe, 0xc5, 0x21, 0x63, 0x5b, 0xbd, 0x0e, 0x1a, 0x94, 0x41, 0x16, 0x51, + 0xad, 0xcd, 0x8d, 0x32, 0x58, 0x66, 0x14, 0xc1, 0x98, 0x09, 0xc7, 0x19, 0x12, 0xaf, 0xff, 0xbc, + 0x22, 0x59, 0x75, 0x13, 0x79, 0x28, 0x65, 0xd5, 0x9b, 0xa0, 0x89, 0x43, 0x44, 0x20, 0xc3, 0xab, + 0x89, 0x95, 0x22, 0xe7, 0x5c, 0xac, 0xac, 0xc5, 0xc5, 0x6a, 0x81, 0x8b, 0x39, 0xaa, 0xd4, 0xca, + 0x50, 0x65, 0xb5, 0x51, 0xeb, 0xab, 0x8c, 0xaa, 0xff, 0xa8, 0x0a, 0xbe, 0xc8, 0x4d, 0xf3, 0x5e, + 0x68, 0xa7, 0x01, 0x37, 0x0e, 0x8e, 0xf0, 0x9a, 0xe6, 0x59, 0x19, 0x7a, 0x39, 0x75, 0xab, 0x65, + 0xd4, 0x5d, 0x4e, 0xec, 0xda, 0x29, 0xc4, 0xfe, 0x6a, 0x91, 0xd8, 0x3c, 0x0e, 0x0b, 0xf4, 0xcd, + 0xe7, 0x82, 0xc6, 0x5a, 0xb9, 0x60, 0xb5, 0x27, 0x36, 0x56, 0x7a, 0xe2, 0x57, 0x0a, 0xb8, 0x22, + 0x48, 0xea, 0x52, 0x0b, 0x07, 0xcc, 0x0d, 0xa2, 0x84, 0xa9, 0x39, 0x9b, 0x29, 0x65, 0x6c, 0xb6, + 0xd2, 0x1d, 0x57, 0x40, 0x83, 0x20, 0x48, 0x71, 0x20, 0x99, 0x29, 0x9f, 0xe2, 0xec, 0x66, 0xf3, + 0x60, 0xc9, 0x64, 0x37, 0xb1, 0xb0, 0xcf, 0xf4, 0x9f, 0x36, 0x72, 0x59, 0xfa, 0xdd, 0xe9, 0x0f, + 0x90, 0xc5, 0xd4, 0x6b, 0x60, 0x83, 0xe7, 0xbf, 0x33, 0xf0, 0x25, 0x01, 0x7e, 0xf6, 0xd1, 0xb4, + 0x0b, 0xda, 0x98, 0x8b, 0x23, 0x00, 0x35, 0x01, 0x10, 0x4b, 0x45, 0xfe, 0x35, 0xca, 0xd8, 0xf2, + 0x3a, 0x68, 0xc9, 0xad, 0xa5, 0x3f, 0x57, 0xbd, 0x29, 0xd0, 0x63, 0xbb, 0x98, 0x21, 0x9b, 0xc5, + 0x0c, 0xf9, 0x0a, 0xd8, 0x0c, 0xe1, 0xcc, 0xc3, 0xd0, 0x36, 0xa9, 0xfb, 0x01, 0xe2, 0x49, 0xb4, + 0x66, 0xb4, 0xe5, 0xda, 0xc4, 0xfd, 0x60, 0xb1, 0x6a, 0x81, 0xb5, 0x98, 0xfa, 0x0a, 0xd8, 0x8c, + 0xc9, 0x15, 0x87, 0x05, 0xaf, 0x2f, 0x6d, 0x6e, 0xa0, 0xb6, 0x5c, 0xe3, 0x05, 0x24, 0x57, 0xd8, + 0x36, 0x0b, 0x85, 0x2d, 0x49, 0xc2, 0x9d, 0xd3, 0x93, 0xb0, 0x20, 0x44, 0x3e, 0x09, 0xab, 0xdf, + 0x01, 0x3d, 0x82, 0xec, 0x28, 0xb0, 0x61, 0x60, 0xcd, 0xc4, 0x8f, 0x77, 0x4f, 0x57, 0xc1, 0x48, + 0xa1, 0x5c, 0x85, 0x2e, 0xc9, 0x3d, 0x2f, 0x56, 0xc9, 0x5e, 0xe9, 0x2a, 0xf9, 0x12, 0x68, 0x59, + 0x77, 0x90, 0x75, 0x97, 0x46, 0x3e, 0xd5, 0x2e, 0x0f, 0xaa, 0x7b, 0x9b, 0xc6, 0x7c, 0x41, 0x7d, + 0x03, 0x5c, 0xf1, 0xb0, 0x55, 0x08, 0x67, 0xd7, 0xd6, 0xb6, 0xb8, 0xe7, 0xbe, 0xc0, 0xbf, 0xcd, + 0x86, 0xf1, 0xd8, 0xd6, 0xff, 0xa3, 0x80, 0x17, 0x44, 0x54, 0xc0, 0xc0, 0x42, 0x5e, 0x2e, 0x36, + 0x9e, 0x52, 0x32, 0x5d, 0x60, 0x7b, 0xb5, 0xc0, 0xf6, 0x02, 0xf3, 0x6a, 0x45, 0xe6, 0xe5, 0x78, + 0xdd, 0x28, 0xc1, 0x6b, 0xfd, 0xc7, 0x55, 0xd0, 0xe3, 0x1a, 0x4f, 0x10, 0xf4, 0xce, 0x59, 0xd3, + 0x9c, 0x16, 0xf5, 0x32, 0xd1, 0x39, 0xa7, 0x74, 0xa3, 0x24, 0xa5, 0xbf, 0x01, 0x5e, 0x58, 0x9a, + 0xf6, 0xd3, 0x7c, 0xbf, 0x5d, 0xcc, 0xf7, 0x63, 0xfb, 0x31, 0xec, 0x6a, 0x9e, 0xca, 0x2e, 0xf5, + 0x65, 0x00, 0x8e, 0x30, 0x31, 0x23, 0x5e, 0xa6, 0x79, 0x76, 0x68, 0x1a, 0xad, 0x23, 0x4c, 0x44, + 0xdd, 0xd6, 0x3f, 0x4a, 0x5c, 0x71, 0x88, 0xc3, 0xd9, 0x13, 0xb9, 0xe2, 0x55, 0xd0, 0xa3, 0xc4, + 0x32, 0x8b, 0xee, 0xe8, 0x50, 0x62, 0x1d, 0xcc, 0x3d, 0x22, 0x71, 0x45, 0xaf, 0xc4, 0xb8, 0x77, + 0xe7, 0x8e, 0x79, 0x15, 0xf4, 0x6c, 0xca, 0x72, 0xfb, 0x89, 0xac, 0xdc, 0xb1, 0x29, 0xcb, 0xef, + 0x17, 0xe3, 0xb2, 0xfb, 0xd5, 0x53, 0x5c, 0x66, 0xbf, 0x1b, 0xa0, 0x93, 0xf9, 0xdd, 0xb3, 0x51, + 0xb6, 0x9d, 0x8a, 0xc4, 0x3b, 0xec, 0x4e, 0xe6, 0x87, 0xce, 0x96, 0xcb, 0xdb, 0xa9, 0x0c, 0x6b, + 0xfa, 0x4f, 0xff, 0x9f, 0x92, 0xeb, 0x41, 0x2f, 0x52, 0xb4, 0xd4, 0xca, 0x44, 0xcb, 0xe9, 0xca, + 0xd7, 0x4f, 0x57, 0xfe, 0x1f, 0x8a, 0xec, 0x32, 0x0d, 0xc4, 0xc3, 0xe8, 0x82, 0xa5, 0x8b, 0x52, + 0x06, 0xc8, 0x07, 0x62, 0x7d, 0x31, 0x10, 0x97, 0xb5, 0x71, 0x52, 0xd7, 0x05, 0xa9, 0x95, 0x65, + 0xbd, 0xf1, 0x5c, 0xa8, 0x4a, 0x19, 0xa1, 0xd6, 0x6a, 0xe3, 0x7e, 0x52, 0xc9, 0xf5, 0xfe, 0x92, + 0xdf, 0x4f, 0xb1, 0xf7, 0x7f, 0x8a, 0x5e, 0xc9, 0xf7, 0x46, 0xf5, 0x75, 0x7a, 0x23, 0xfd, 0xbf, + 0x0a, 0xb8, 0x9c, 0x69, 0x6b, 0x39, 0x79, 0x4b, 0xcf, 0x1e, 0x5e, 0x06, 0x40, 0x44, 0x44, 0xc6, + 0x06, 0x2d, 0xbe, 0xc2, 0x35, 0xfc, 0x26, 0x68, 0xa6, 0x01, 0x73, 0x86, 0xd3, 0xcf, 0x86, 0x23, + 0xd3, 0xff, 0x42, 0xc3, 0x53, 0x2b, 0xdd, 0xf0, 0x6c, 0x83, 0x3a, 0xba, 0xc7, 0x08, 0x94, 0x49, + 0x55, 0x3c, 0xe8, 0xbf, 0x48, 0x54, 0x16, 0x59, 0x69, 0x41, 0xe5, 0xca, 0x3a, 0x2a, 0x57, 0x1f, + 0xa7, 0x72, 0xed, 0xec, 0x2a, 0xeb, 0x7f, 0x56, 0x64, 0x49, 0xfb, 0x2e, 0x82, 0xc7, 0x52, 0xb4, + 0x1b, 0xa0, 0xeb, 0x23, 0x7f, 0x8a, 0x48, 0x7a, 0xa8, 0x5b, 0xe5, 0x96, 0x8e, 0xc0, 0x27, 0xa7, + 0xbd, 0x0b, 0xa2, 0xdb, 0xbf, 0x2b, 0x32, 0x4b, 0x88, 0xd0, 0xe3, 0xca, 0xbd, 0xcd, 0x05, 0x7d, + 0x46, 0x63, 0x89, 0xa7, 0xa3, 0x97, 0x7a, 0x2b, 0xf1, 0x0f, 0x35, 0x19, 0x8e, 0x7d, 0xa4, 0xd5, + 0x07, 0xd5, 0xbd, 0xf6, 0xb5, 0xd7, 0x97, 0x31, 0x95, 0x1b, 0x20, 0xa3, 0xfa, 0x4d, 0xc4, 0xa0, + 0xeb, 0x19, 0x9b, 0x72, 0x87, 0xdb, 0x78, 0xdf, 0xb6, 0xd5, 0x9b, 0x60, 0x2b, 0xb3, 0xa3, 0xc8, + 0x5d, 0x5a, 0x63, 0x50, 0x7d, 0xac, 0x92, 0xbd, 0x74, 0x0b, 0xc1, 0x6b, 0xfd, 0xaf, 0x95, 0xb4, + 0x00, 0x05, 0xe8, 0xe4, 0x73, 0x63, 0xee, 0x85, 0xac, 0x50, 0x2f, 0x9d, 0x15, 0x6e, 0x82, 0x0d, + 0x69, 0x2a, 0x6e, 0xd3, 0x72, 0x8e, 0x4a, 0x5e, 0xd5, 0x7f, 0x96, 0xd4, 0xbc, 0x02, 0x46, 0xfd, + 0x3a, 0x68, 0x08, 0xd4, 0x4a, 0xe3, 0x4a, 0x9c, 0x3a, 0x06, 0x3d, 0x74, 0x2f, 0x74, 0x09, 0x64, + 0x2e, 0x0e, 0x4c, 0xe6, 0xca, 0x2c, 0xda, 0xbe, 0xb6, 0x33, 0x14, 0xf3, 0xe9, 0x61, 0x32, 0x9f, + 0x1e, 0xde, 0x4e, 0xe6, 0xd3, 0x07, 0xb5, 0x0f, 0xff, 0xb6, 0xab, 0x18, 0xdd, 0xf9, 0x8b, 0xf1, + 0x57, 0xfa, 0xbf, 0x94, 0x5c, 0x81, 0xe3, 0xd2, 0xbd, 0x15, 0xe7, 0xbd, 0xe7, 0xdb, 0xeb, 0xcb, + 0x53, 0xf9, 0xfd, 0xa4, 0xc1, 0x7c, 0xdb, 0x25, 0x04, 0x93, 0x27, 0x1a, 0x72, 0x96, 0x9b, 0xe2, + 0x95, 0x1a, 0x5a, 0xea, 0xa0, 0x63, 0x23, 0xca, 0x4c, 0xeb, 0x0e, 0x74, 0x83, 0x79, 0xdb, 0xd8, + 0x8e, 0x17, 0x0f, 0xe3, 0xb5, 0xb1, 0xad, 0xff, 0x2e, 0x39, 0x49, 0x67, 0x55, 0x31, 0x10, 0x8d, + 0x3c, 0x16, 0x77, 0x3a, 0xf2, 0xb4, 0xa6, 0xf0, 0x17, 0x93, 0xb3, 0xd8, 0x39, 0x8b, 0xfc, 0xcf, + 0xbc, 0xf5, 0x9f, 0xdb, 0xee, 0xf6, 0x2c, 0xba, 0xfe, 0x21, 0xef, 0x1e, 0xa1, 0xeb, 0x93, 0xba, + 0xe7, 0x9c, 0x75, 0xfa, 0x7d, 0xd2, 0x08, 0x09, 0x9d, 0x2e, 0x54, 0xef, 0x57, 0x90, 0xbf, 0x56, + 0x94, 0xff, 0xd7, 0x49, 0x0a, 0xce, 0xc8, 0xbf, 0xc2, 0x25, 0xe7, 0x28, 0xed, 0xb1, 0x24, 0xd0, + 0x84, 0x41, 0x0f, 0xdd, 0xc2, 0x9e, 0x6b, 0xcd, 0x0e, 0x3d, 0x04, 0x83, 0x28, 0x54, 0x77, 0x40, + 0x73, 0xea, 0x61, 0xeb, 0xee, 0x3b, 0x91, 0xcf, 0xe5, 0xad, 0x1a, 0xe9, 0x73, 0x5c, 0xee, 0xe4, + 0x69, 0xc6, 0x0d, 0x8e, 0xb0, 0x2c, 0x0b, 0x4b, 0xcb, 0x9d, 0x28, 0xfb, 0xf1, 0x59, 0xc6, 0x00, + 0x76, 0xfa, 0x59, 0x7f, 0xa0, 0x80, 0x6d, 0x69, 0x25, 0x47, 0xd4, 0x89, 0x67, 0x98, 0x26, 0x4b, + 0x5d, 0x76, 0xbc, 0x06, 0xb6, 0x6c, 0xca, 0xcc, 0x65, 0xc3, 0xbb, 0xae, 0x4d, 0xd9, 0xad, 0xf9, + 0xfc, 0x4e, 0xff, 0x8d, 0x02, 0x76, 0x32, 0x73, 0xc7, 0x8b, 0xae, 0x5a, 0x4c, 0x55, 0x2d, 0x33, + 0x0c, 0x10, 0xf2, 0xa2, 0x8b, 0x2a, 0xed, 0x47, 0x15, 0xf0, 0x92, 0x1c, 0xac, 0xf9, 0x61, 0x4c, + 0xa4, 0x0b, 0x4f, 0x9d, 0xd5, 0x97, 0x51, 0xb5, 0x95, 0x77, 0xad, 0xaf, 0x81, 0x2d, 0x4a, 0xac, + 0x05, 0xfa, 0x89, 0xb4, 0xd9, 0xa5, 0xc4, 0xca, 0xd2, 0xcf, 0x04, 0x6d, 0x39, 0x03, 0x66, 0xb7, + 0xa1, 0x13, 0xc7, 0x6f, 0xf2, 0xd7, 0x00, 0x39, 0xe1, 0x48, 0x9f, 0xd5, 0x37, 0x41, 0x8d, 0x41, + 0x87, 0xca, 0xc0, 0x1d, 0x2c, 0x9f, 0xfb, 0xcb, 0xee, 0x14, 0x3a, 0xd4, 0xe0, 0x68, 0xfd, 0x97, + 0x15, 0xc9, 0x97, 0xec, 0x98, 0xe2, 0x50, 0x5c, 0x58, 0xac, 0x69, 0xfd, 0xf5, 0x07, 0x2d, 0x4f, + 0x7e, 0x01, 0xb5, 0x78, 0xd1, 0x53, 0x2f, 0x5e, 0xf4, 0xe4, 0x2e, 0x27, 0x1a, 0x8b, 0x97, 0x13, + 0x1a, 0xd8, 0x38, 0x46, 0x84, 0xba, 0x38, 0xe0, 0x93, 0xcb, 0xaa, 0x91, 0x3c, 0xea, 0xbf, 0xad, + 0x82, 0xdd, 0xd3, 0x2c, 0x35, 0x89, 0x2c, 0x2b, 0x3e, 0x00, 0x3f, 0x7f, 0x06, 0x7b, 0x1d, 0x6c, + 0x85, 0x04, 0x1d, 0x9b, 0x4b, 0xac, 0xd6, 0x8b, 0xbf, 0xb8, 0x95, 0xb1, 0xdc, 0x1e, 0xb8, 0x1c, + 0xa0, 0x93, 0x3c, 0xb4, 0xc1, 0xa1, 0xdd, 0x00, 0x9d, 0x64, 0x91, 0x5f, 0x01, 0x5d, 0xbe, 0xeb, + 0xdc, 0xd0, 0x1b, 0xdc, 0xd0, 0x9d, 0x78, 0xf5, 0x30, 0x35, 0xf6, 0x97, 0x41, 0x27, 0xde, 0x70, + 0x8e, 0x6a, 0x72, 0xd4, 0x66, 0x80, 0x4e, 0x0e, 0x97, 0x79, 0xa4, 0x95, 0xf3, 0x48, 0x5c, 0x63, + 0xc5, 0xa0, 0xd0, 0x36, 0x21, 0xe3, 0x57, 0x76, 0x55, 0xa3, 0x25, 0x57, 0xf6, 0x59, 0x5c, 0x8f, + 0xfa, 0x99, 0xd4, 0xfd, 0xd9, 0x11, 0xfc, 0x1c, 0xdb, 0xad, 0x83, 0xf1, 0xfd, 0x87, 0x7d, 0xe5, + 0x93, 0x87, 0x7d, 0xe5, 0xef, 0x0f, 0xfb, 0xca, 0x87, 0x8f, 0xfa, 0x97, 0x3e, 0x79, 0xd4, 0xbf, + 0xf4, 0xa7, 0x47, 0xfd, 0x4b, 0xdf, 0x1f, 0x39, 0x2e, 0xbb, 0x13, 0x4d, 0x87, 0x16, 0xf6, 0x47, + 0xd3, 0x60, 0x7a, 0x95, 0xb7, 0x08, 0xa3, 0xcc, 0x5f, 0x82, 0xee, 0xe5, 0xff, 0x14, 0x34, 0x6d, + 0xf0, 0xa3, 0xde, 0x1b, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x18, 0x58, 0xcb, 0x0d, 0x00, 0x25, + 0x00, 0x00, } func (m *EventCreateBucket) Marshal() (dAtA []byte, err error) { @@ -3287,6 +3307,16 @@ func (m *EventSealObject) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.ForUpdate { + i-- + if m.ForUpdate { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x48 + } if m.LocalVirtualGroupId != 0 { i = encodeVarintEvents(dAtA, i, uint64(m.LocalVirtualGroupId)) i-- @@ -3498,6 +3528,16 @@ func (m *EventRejectSealObject) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.ForUpdate { + i-- + if m.ForUpdate { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + } { size := m.ObjectId.Size() i -= size @@ -4682,11 +4722,6 @@ func (m *EventUpdateObjectContent) MarshalToSizedBuffer(dAtA []byte) (int, error if m.Version != 0 { i = encodeVarintEvents(dAtA, i, uint64(m.Version)) i-- - dAtA[i] = 0x40 - } - if m.UpdatedAt != 0 { - i = encodeVarintEvents(dAtA, i, uint64(m.UpdatedAt)) - i-- dAtA[i] = 0x38 } if len(m.Checksums) > 0 { @@ -4757,6 +4792,11 @@ func (m *EventUpdateObjectContentSuccess) MarshalToSizedBuffer(dAtA []byte) (int _ = i var l int _ = l + if m.UpdatedAt != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.UpdatedAt)) + i-- + dAtA[i] = 0x50 + } if m.Version != 0 { i = encodeVarintEvents(dAtA, i, uint64(m.Version)) i-- @@ -5131,6 +5171,9 @@ func (m *EventSealObject) Size() (n int) { if m.LocalVirtualGroupId != 0 { n += 1 + sovEvents(uint64(m.LocalVirtualGroupId)) } + if m.ForUpdate { + n += 2 + } return n } @@ -5216,6 +5259,9 @@ func (m *EventRejectSealObject) Size() (n int) { } l = m.ObjectId.Size() n += 1 + l + sovEvents(uint64(l)) + if m.ForUpdate { + n += 2 + } return n } @@ -5730,9 +5776,6 @@ func (m *EventUpdateObjectContent) Size() (n int) { n += 1 + l + sovEvents(uint64(l)) } } - if m.UpdatedAt != 0 { - n += 1 + sovEvents(uint64(m.UpdatedAt)) - } if m.Version != 0 { n += 1 + sovEvents(uint64(m.Version)) } @@ -5780,6 +5823,9 @@ func (m *EventUpdateObjectContentSuccess) Size() (n int) { if m.Version != 0 { n += 1 + sovEvents(uint64(m.Version)) } + if m.UpdatedAt != 0 { + n += 1 + sovEvents(uint64(m.UpdatedAt)) + } return n } @@ -7605,6 +7651,26 @@ func (m *EventSealObject) Unmarshal(dAtA []byte) error { break } } + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ForUpdate", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ForUpdate = bool(v != 0) default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -8281,6 +8347,26 @@ func (m *EventRejectSealObject) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ForUpdate", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ForUpdate = bool(v != 0) default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -12114,25 +12200,6 @@ func (m *EventUpdateObjectContent) Unmarshal(dAtA []byte) error { copy(m.Checksums[len(m.Checksums)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex case 7: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field UpdatedAt", wireType) - } - m.UpdatedAt = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.UpdatedAt |= int64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 8: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType) } @@ -12452,6 +12519,25 @@ func (m *EventUpdateObjectContentSuccess) Unmarshal(dAtA []byte) error { break } } + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field UpdatedAt", wireType) + } + m.UpdatedAt = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.UpdatedAt |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:])