From 4b3fe18eda4f1994c285844230bc6aa94086ee53 Mon Sep 17 00:00:00 2001 From: ekexium Date: Wed, 10 Jan 2024 13:12:16 +0800 Subject: [PATCH] add rpc to Tikv service Signed-off-by: ekexium --- pkg/tikvpb/tikvpb.pb.go | 750 +++++++++++++++++++++++++++++++--------- proto/tikvpb.proto | 7 + scripts/proto.lock | 30 ++ 3 files changed, 617 insertions(+), 170 deletions(-) diff --git a/pkg/tikvpb/tikvpb.pb.go b/pkg/tikvpb/tikvpb.pb.go index f002e33e8..6ab9b8de1 100644 --- a/pkg/tikvpb/tikvpb.pb.go +++ b/pkg/tikvpb/tikvpb.pb.go @@ -120,6 +120,8 @@ type BatchCommandsRequest_Request struct { // *BatchCommandsRequest_Request_RawCoprocessor // *BatchCommandsRequest_Request_FlashbackToVersion // *BatchCommandsRequest_Request_PrepareFlashbackToVersion + // *BatchCommandsRequest_Request_Flush + // *BatchCommandsRequest_Request_BufferBatchGet // *BatchCommandsRequest_Request_Empty Cmd isBatchCommandsRequest_Request_Cmd `protobuf_oneof:"cmd"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -256,6 +258,12 @@ type BatchCommandsRequest_Request_FlashbackToVersion struct { type BatchCommandsRequest_Request_PrepareFlashbackToVersion struct { PrepareFlashbackToVersion *kvrpcpb.PrepareFlashbackToVersionRequest `protobuf:"bytes,36,opt,name=PrepareFlashbackToVersion,proto3,oneof" json:"PrepareFlashbackToVersion,omitempty"` } +type BatchCommandsRequest_Request_Flush struct { + Flush *kvrpcpb.FlushRequest `protobuf:"bytes,37,opt,name=Flush,proto3,oneof" json:"Flush,omitempty"` +} +type BatchCommandsRequest_Request_BufferBatchGet struct { + BufferBatchGet *kvrpcpb.BufferBatchGetRequest `protobuf:"bytes,38,opt,name=BufferBatchGet,proto3,oneof" json:"BufferBatchGet,omitempty"` +} type BatchCommandsRequest_Request_Empty struct { Empty *BatchCommandsEmptyRequest `protobuf:"bytes,255,opt,name=Empty,proto3,oneof" json:"Empty,omitempty"` } @@ -290,6 +298,8 @@ func (*BatchCommandsRequest_Request_CheckSecondaryLocks) isBatchCommandsRequest_ func (*BatchCommandsRequest_Request_RawCoprocessor) isBatchCommandsRequest_Request_Cmd() {} func (*BatchCommandsRequest_Request_FlashbackToVersion) isBatchCommandsRequest_Request_Cmd() {} func (*BatchCommandsRequest_Request_PrepareFlashbackToVersion) isBatchCommandsRequest_Request_Cmd() {} +func (*BatchCommandsRequest_Request_Flush) isBatchCommandsRequest_Request_Cmd() {} +func (*BatchCommandsRequest_Request_BufferBatchGet) isBatchCommandsRequest_Request_Cmd() {} func (*BatchCommandsRequest_Request_Empty) isBatchCommandsRequest_Request_Cmd() {} func (m *BatchCommandsRequest_Request) GetCmd() isBatchCommandsRequest_Request_Cmd { @@ -509,6 +519,20 @@ func (m *BatchCommandsRequest_Request) GetPrepareFlashbackToVersion() *kvrpcpb.P return nil } +func (m *BatchCommandsRequest_Request) GetFlush() *kvrpcpb.FlushRequest { + if x, ok := m.GetCmd().(*BatchCommandsRequest_Request_Flush); ok { + return x.Flush + } + return nil +} + +func (m *BatchCommandsRequest_Request) GetBufferBatchGet() *kvrpcpb.BufferBatchGetRequest { + if x, ok := m.GetCmd().(*BatchCommandsRequest_Request_BufferBatchGet); ok { + return x.BufferBatchGet + } + return nil +} + func (m *BatchCommandsRequest_Request) GetEmpty() *BatchCommandsEmptyRequest { if x, ok := m.GetCmd().(*BatchCommandsRequest_Request_Empty); ok { return x.Empty @@ -549,6 +573,8 @@ func (*BatchCommandsRequest_Request) XXX_OneofWrappers() []interface{} { (*BatchCommandsRequest_Request_RawCoprocessor)(nil), (*BatchCommandsRequest_Request_FlashbackToVersion)(nil), (*BatchCommandsRequest_Request_PrepareFlashbackToVersion)(nil), + (*BatchCommandsRequest_Request_Flush)(nil), + (*BatchCommandsRequest_Request_BufferBatchGet)(nil), (*BatchCommandsRequest_Request_Empty)(nil), } } @@ -649,6 +675,8 @@ type BatchCommandsResponse_Response struct { // *BatchCommandsResponse_Response_RawCoprocessor // *BatchCommandsResponse_Response_FlashbackToVersion // *BatchCommandsResponse_Response_PrepareFlashbackToVersion + // *BatchCommandsResponse_Response_Flush + // *BatchCommandsResponse_Response_BufferBatchGet // *BatchCommandsResponse_Response_Empty Cmd isBatchCommandsResponse_Response_Cmd `protobuf_oneof:"cmd"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -785,6 +813,12 @@ type BatchCommandsResponse_Response_FlashbackToVersion struct { type BatchCommandsResponse_Response_PrepareFlashbackToVersion struct { PrepareFlashbackToVersion *kvrpcpb.PrepareFlashbackToVersionResponse `protobuf:"bytes,36,opt,name=PrepareFlashbackToVersion,proto3,oneof" json:"PrepareFlashbackToVersion,omitempty"` } +type BatchCommandsResponse_Response_Flush struct { + Flush *kvrpcpb.FlushResponse `protobuf:"bytes,37,opt,name=Flush,proto3,oneof" json:"Flush,omitempty"` +} +type BatchCommandsResponse_Response_BufferBatchGet struct { + BufferBatchGet *kvrpcpb.BufferBatchGetResponse `protobuf:"bytes,38,opt,name=BufferBatchGet,proto3,oneof" json:"BufferBatchGet,omitempty"` +} type BatchCommandsResponse_Response_Empty struct { Empty *BatchCommandsEmptyResponse `protobuf:"bytes,255,opt,name=Empty,proto3,oneof" json:"Empty,omitempty"` } @@ -820,7 +854,9 @@ func (*BatchCommandsResponse_Response_RawCoprocessor) isBatchCommandsResponse_Re func (*BatchCommandsResponse_Response_FlashbackToVersion) isBatchCommandsResponse_Response_Cmd() {} func (*BatchCommandsResponse_Response_PrepareFlashbackToVersion) isBatchCommandsResponse_Response_Cmd() { } -func (*BatchCommandsResponse_Response_Empty) isBatchCommandsResponse_Response_Cmd() {} +func (*BatchCommandsResponse_Response_Flush) isBatchCommandsResponse_Response_Cmd() {} +func (*BatchCommandsResponse_Response_BufferBatchGet) isBatchCommandsResponse_Response_Cmd() {} +func (*BatchCommandsResponse_Response_Empty) isBatchCommandsResponse_Response_Cmd() {} func (m *BatchCommandsResponse_Response) GetCmd() isBatchCommandsResponse_Response_Cmd { if m != nil { @@ -1039,6 +1075,20 @@ func (m *BatchCommandsResponse_Response) GetPrepareFlashbackToVersion() *kvrpcpb return nil } +func (m *BatchCommandsResponse_Response) GetFlush() *kvrpcpb.FlushResponse { + if x, ok := m.GetCmd().(*BatchCommandsResponse_Response_Flush); ok { + return x.Flush + } + return nil +} + +func (m *BatchCommandsResponse_Response) GetBufferBatchGet() *kvrpcpb.BufferBatchGetResponse { + if x, ok := m.GetCmd().(*BatchCommandsResponse_Response_BufferBatchGet); ok { + return x.BufferBatchGet + } + return nil +} + func (m *BatchCommandsResponse_Response) GetEmpty() *BatchCommandsEmptyResponse { if x, ok := m.GetCmd().(*BatchCommandsResponse_Response_Empty); ok { return x.Empty @@ -1079,6 +1129,8 @@ func (*BatchCommandsResponse_Response) XXX_OneofWrappers() []interface{} { (*BatchCommandsResponse_Response_RawCoprocessor)(nil), (*BatchCommandsResponse_Response_FlashbackToVersion)(nil), (*BatchCommandsResponse_Response_PrepareFlashbackToVersion)(nil), + (*BatchCommandsResponse_Response_Flush)(nil), + (*BatchCommandsResponse_Response_BufferBatchGet)(nil), (*BatchCommandsResponse_Response_Empty)(nil), } } @@ -1248,166 +1300,172 @@ func init() { func init() { proto.RegisterFile("tikvpb.proto", fileDescriptor_274fe050f0c997b3) } var fileDescriptor_274fe050f0c997b3 = []byte{ - // 2540 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0x6d, 0x53, 0xdb, 0xc8, - 0x1d, 0xc0, 0xe5, 0xc4, 0xe1, 0x61, 0x39, 0x02, 0x2c, 0x10, 0x84, 0x42, 0x20, 0x51, 0x48, 0x8e, - 0x5c, 0x67, 0x68, 0x92, 0x4b, 0x2f, 0xbd, 0x87, 0x5e, 0x01, 0x93, 0x00, 0x67, 0x98, 0xf3, 0xd8, - 0xce, 0x5d, 0xda, 0x69, 0x87, 0x59, 0xec, 0xc5, 0xa8, 0xd8, 0x92, 0x2b, 0x2d, 0x22, 0xfe, 0x26, - 0xfd, 0x08, 0x9d, 0xce, 0xf4, 0x7b, 0xf4, 0x65, 0x67, 0xfa, 0xa2, 0x7d, 0xd9, 0x49, 0x3f, 0x44, - 0x5f, 0xb6, 0xb3, 0x2b, 0x69, 0x9f, 0xb4, 0x92, 0xb9, 0x57, 0x11, 0xff, 0xc7, 0xdd, 0x95, 0xf6, - 0xbf, 0xbf, 0xff, 0xc6, 0xe0, 0x13, 0xe2, 0x5d, 0xc6, 0xc3, 0xb3, 0xed, 0x61, 0x18, 0x90, 0x00, - 0x4e, 0x24, 0x7f, 0x39, 0x0b, 0x9d, 0x60, 0x18, 0x06, 0x1d, 0x1c, 0x45, 0x41, 0x98, 0xa8, 0x9c, - 0xd9, 0xcb, 0x38, 0x1c, 0x76, 0x32, 0x4b, 0x67, 0x7a, 0x30, 0x1c, 0xa6, 0x8f, 0x8b, 0x21, 0x3a, - 0x27, 0xa7, 0x11, 0x0e, 0x63, 0x1c, 0x72, 0xfd, 0x62, 0xd7, 0x8b, 0x50, 0xaf, 0x17, 0xe2, 0x1e, - 0x22, 0xb8, 0x9b, 0x0a, 0x97, 0x7a, 0x41, 0x2f, 0x60, 0x8f, 0x3f, 0xa7, 0x4f, 0xa9, 0x74, 0x2e, - 0xbc, 0x8a, 0x08, 0x7b, 0x4c, 0x04, 0xee, 0x3f, 0xe6, 0xc1, 0xd2, 0x1e, 0x22, 0x9d, 0x8b, 0x5a, - 0x30, 0x18, 0x20, 0xbf, 0x1b, 0x35, 0xf1, 0x1f, 0xaf, 0x70, 0x44, 0xe0, 0x0e, 0x98, 0x0a, 0x93, - 0xc7, 0xc8, 0xae, 0x3c, 0xbc, 0xbd, 0x35, 0xf3, 0x72, 0x73, 0x3b, 0x1d, 0xbf, 0xc9, 0x7e, 0x3b, - 0xfd, 0xb7, 0xc9, 0xbd, 0xe0, 0x06, 0x98, 0x49, 0x9f, 0x4f, 0xbd, 0x6e, 0x64, 0xdf, 0x7a, 0x78, - 0x7b, 0xab, 0xda, 0x04, 0xa9, 0xe8, 0xa8, 0x1b, 0x39, 0xff, 0x9c, 0x03, 0x93, 0x59, 0xba, 0x4f, - 0xc1, 0xed, 0x03, 0x4c, 0xec, 0xca, 0xc3, 0xca, 0xd6, 0xcc, 0xcb, 0xc5, 0xed, 0x6c, 0x01, 0x0e, - 0x30, 0x49, 0x2d, 0x0e, 0xad, 0x26, 0xb5, 0x80, 0x9f, 0x81, 0x6a, 0xab, 0x83, 0x7c, 0xfb, 0x16, - 0xb3, 0x5c, 0xe2, 0x96, 0x54, 0x28, 0x4c, 0x99, 0x0d, 0xfc, 0x02, 0x4c, 0x35, 0x42, 0x7c, 0x1d, - 0x7a, 0x04, 0xdb, 0xb7, 0x99, 0xbd, 0xcd, 0xed, 0x33, 0x85, 0xf0, 0xe1, 0xb6, 0xf0, 0x39, 0x98, - 0xa0, 0xd3, 0xf3, 0x88, 0x5d, 0x65, 0x5e, 0xf7, 0xb8, 0x57, 0x22, 0x16, 0x3e, 0xa9, 0x1d, 0xf5, - 0x38, 0x1a, 0x0c, 0x83, 0x90, 0xd8, 0x77, 0x34, 0x8f, 0x44, 0x2c, 0x79, 0x24, 0x02, 0xf8, 0x39, - 0x98, 0xac, 0xf5, 0x31, 0xf2, 0xaf, 0x86, 0xf6, 0x04, 0x73, 0x59, 0x11, 0x49, 0x12, 0xb9, 0xf0, - 0xc9, 0x2c, 0xe9, 0x84, 0xd8, 0xe2, 0xd3, 0xa5, 0x9a, 0xd4, 0x26, 0x94, 0x29, 0xa4, 0x09, 0x65, - 0x22, 0xf8, 0x06, 0xcc, 0xb2, 0xe7, 0x66, 0xd0, 0xef, 0x9f, 0xa1, 0xce, 0xa5, 0x3d, 0xc5, 0x9c, - 0x1f, 0xa8, 0xce, 0x99, 0x56, 0x44, 0x50, 0xbd, 0x68, 0x7a, 0xba, 0xae, 0xc7, 0x41, 0xe7, 0xd2, - 0x9e, 0xd6, 0xd2, 0x67, 0x0a, 0x29, 0x7d, 0x26, 0x82, 0xbf, 0x06, 0x33, 0x4d, 0x1c, 0x05, 0xfd, - 0x18, 0x33, 0x57, 0xc0, 0x5c, 0xef, 0x73, 0x57, 0x49, 0x27, 0xbc, 0x65, 0x0f, 0xb8, 0x09, 0x6e, - 0x1d, 0xd4, 0xec, 0x19, 0xe6, 0x07, 0xc5, 0xc7, 0x51, 0x13, 0xe6, 0xb7, 0x0e, 0x6a, 0x34, 0xcd, - 0x3e, 0xee, 0x63, 0x82, 0x9b, 0xc8, 0xef, 0x61, 0xfb, 0x13, 0x2d, 0x8d, 0xa4, 0x93, 0xd2, 0x48, - 0x52, 0xfa, 0x16, 0x9b, 0xe8, 0x9a, 0x2e, 0xee, 0xac, 0xf6, 0x16, 0x13, 0xb1, 0xf4, 0x16, 0x13, - 0x01, 0x9b, 0x19, 0xba, 0xe6, 0xef, 0xe4, 0xae, 0x3e, 0x33, 0xa1, 0x93, 0x67, 0x26, 0xa4, 0x69, - 0xca, 0xc6, 0x15, 0xb1, 0xe7, 0xf2, 0x29, 0x1b, 0x57, 0x5a, 0xca, 0xc6, 0x95, 0x92, 0x92, 0xba, - 0xcd, 0x17, 0xa4, 0x54, 0x7c, 0x65, 0x0f, 0xf8, 0x25, 0x98, 0x6e, 0xa2, 0xeb, 0x64, 0xde, 0xf6, - 0x02, 0x73, 0x5f, 0x95, 0xdd, 0xd3, 0x15, 0xe1, 0xce, 0xc2, 0x1a, 0x1e, 0x82, 0xbb, 0x59, 0xa4, - 0xd4, 0x1f, 0x32, 0xff, 0xf5, 0x5c, 0x7a, 0x3d, 0x88, 0xe6, 0x47, 0x3f, 0xff, 0x26, 0xba, 0x66, - 0x3b, 0x79, 0x51, 0xfb, 0xfc, 0x53, 0xb9, 0xf4, 0xf9, 0xa7, 0x92, 0x34, 0xbd, 0xfc, 0x8e, 0x97, - 0xf2, 0xe9, 0x8d, 0xaf, 0x59, 0xf3, 0x83, 0x7b, 0xe0, 0x93, 0x6c, 0x40, 0x6c, 0x0c, 0xcb, 0x2c, - 0xce, 0x5a, 0x6e, 0x1a, 0xea, 0x40, 0x14, 0x1f, 0xf8, 0x4b, 0x30, 0x53, 0x13, 0xa5, 0xdb, 0xbe, - 0x97, 0x16, 0x24, 0xb9, 0x9c, 0x4b, 0x6f, 0x40, 0x32, 0x85, 0x75, 0x30, 0xd7, 0xc0, 0x51, 0xe4, - 0x0d, 0xbc, 0x88, 0x78, 0x1d, 0xb6, 0x27, 0x56, 0x98, 0xf7, 0x86, 0x28, 0x4f, 0xaa, 0x5e, 0x04, - 0xd2, 0x3d, 0xe1, 0x8f, 0x60, 0x51, 0x12, 0xf1, 0x1d, 0x6e, 0xb3, 0x80, 0x8f, 0x4d, 0x01, 0xf3, - 0xfb, 0xdc, 0x14, 0x81, 0xae, 0x76, 0xed, 0x02, 0x77, 0x2e, 0xdb, 0x1f, 0xfc, 0x16, 0x41, 0xe4, - 0x2a, 0xb2, 0x57, 0xb5, 0xd5, 0x56, 0xd5, 0xd2, 0x6a, 0xab, 0x0a, 0xba, 0xda, 0xed, 0x0f, 0xfe, - 0x21, 0x46, 0x21, 0xd9, 0xc3, 0x88, 0xd8, 0x8e, 0xb6, 0xda, 0xb2, 0x52, 0x5a, 0x6d, 0x59, 0x4c, - 0xa7, 0xc9, 0xa2, 0xb6, 0x70, 0x27, 0xf0, 0xbb, 0x28, 0x1c, 0xd1, 0xc9, 0x47, 0xf6, 0x23, 0x6d, - 0x9a, 0x06, 0x1b, 0x69, 0x9a, 0x06, 0x6d, 0xfa, 0x51, 0xc9, 0x6f, 0xd2, 0xcd, 0x7f, 0x54, 0x92, - 0x5a, 0xfd, 0xa8, 0xe4, 0xd7, 0xda, 0x06, 0xf0, 0x6d, 0x1f, 0x45, 0x17, 0x74, 0xf5, 0xda, 0xc1, - 0x0f, 0x38, 0x8c, 0xbc, 0xc0, 0xb7, 0x1f, 0xb3, 0x68, 0x2e, 0x8f, 0x96, 0x37, 0x11, 0x11, 0x0d, - 0xfe, 0xd0, 0x03, 0xab, 0x8d, 0x10, 0x0f, 0x51, 0x88, 0x0d, 0xc1, 0x37, 0x59, 0xf0, 0x67, 0xf2, - 0xa9, 0x66, 0xb6, 0x14, 0x39, 0x8a, 0xa3, 0xc1, 0xaf, 0xc0, 0x9d, 0x37, 0x83, 0x21, 0x19, 0xd9, - 0xff, 0x4b, 0xce, 0xe1, 0x47, 0xc6, 0x13, 0x9f, 0x99, 0x88, 0x78, 0x89, 0xcb, 0xde, 0x1d, 0x70, - 0xbb, 0x33, 0xe8, 0x7e, 0x57, 0x9d, 0xba, 0x3f, 0xff, 0xc8, 0xfd, 0xcb, 0x02, 0x58, 0xd6, 0x28, - 0x21, 0x1a, 0x06, 0x7e, 0x84, 0xe1, 0x3e, 0x98, 0x0e, 0xd3, 0xe7, 0x8c, 0x2b, 0x9e, 0x16, 0x70, - 0x45, 0x62, 0xb5, 0x9d, 0x3d, 0x34, 0x85, 0xe3, 0x58, 0xb4, 0x80, 0xcf, 0xc1, 0x12, 0x09, 0x91, - 0x1f, 0xd1, 0xa3, 0xf6, 0xb4, 0x8f, 0x46, 0x38, 0x3c, 0xed, 0x07, 0xa8, 0xcb, 0x28, 0xa0, 0xda, - 0x84, 0x5c, 0x77, 0x4c, 0x55, 0xc7, 0x01, 0xea, 0x3a, 0xff, 0x9d, 0x03, 0x53, 0x7c, 0x94, 0x5b, - 0x32, 0x8d, 0x2c, 0xa9, 0x34, 0x92, 0x98, 0x64, 0x38, 0xf2, 0x33, 0x05, 0x47, 0x96, 0x35, 0x1c, - 0xe1, 0xb6, 0x09, 0x8f, 0xbc, 0xce, 0xf1, 0xc8, 0xaa, 0x81, 0x47, 0xb8, 0x93, 0x00, 0x92, 0x17, - 0x1a, 0x90, 0xac, 0xe4, 0x80, 0x84, 0x3b, 0x65, 0x44, 0xf2, 0x42, 0x23, 0x92, 0x95, 0x1c, 0x91, - 0x08, 0x97, 0x14, 0x49, 0x5e, 0xe9, 0x48, 0x62, 0xe7, 0x91, 0x84, 0x3b, 0x71, 0x26, 0x79, 0x9d, - 0x63, 0x92, 0x55, 0x03, 0x93, 0x88, 0x49, 0xf1, 0xa3, 0xef, 0xad, 0x19, 0x4a, 0xd6, 0x8b, 0xa0, - 0x84, 0x87, 0xd0, 0xa8, 0xe4, 0x75, 0x8e, 0x4a, 0x56, 0x0d, 0x54, 0x22, 0x06, 0xc0, 0xb1, 0x64, - 0xc7, 0x84, 0x25, 0x6b, 0x66, 0x2c, 0xe1, 0xee, 0x0a, 0x97, 0x3c, 0x91, 0xb8, 0x64, 0x51, 0xe1, - 0x12, 0x6e, 0x4f, 0xc1, 0x64, 0xc7, 0x04, 0x26, 0x6b, 0x66, 0x30, 0x11, 0x89, 0xe4, 0xf3, 0xea, - 0x85, 0x46, 0x26, 0x2b, 0x39, 0x32, 0x11, 0x6f, 0x33, 0x45, 0x93, 0x1d, 0x13, 0x9a, 0xac, 0x99, - 0xd1, 0x44, 0x9a, 0x9d, 0xc4, 0x26, 0x2f, 0x34, 0x36, 0x59, 0xc9, 0xb1, 0x89, 0x92, 0x94, 0xb2, - 0xc5, 0x8e, 0x09, 0x4e, 0xd6, 0xcc, 0x70, 0x92, 0x4f, 0x4a, 0x23, 0x7c, 0x95, 0xa7, 0x13, 0xc7, - 0x44, 0x27, 0xdc, 0x5b, 0xc2, 0x93, 0xa3, 0x02, 0x3c, 0xd9, 0x28, 0xc4, 0x13, 0x1e, 0x45, 0xe7, - 0x93, 0x57, 0x3a, 0x9f, 0xd8, 0x79, 0x3e, 0x11, 0x7b, 0x21, 0x03, 0x94, 0xa3, 0x02, 0x40, 0xd9, - 0x28, 0x04, 0x14, 0x65, 0x00, 0xf2, 0x1b, 0xaf, 0x19, 0x09, 0xe5, 0x41, 0x01, 0xa1, 0xf0, 0x30, - 0x2a, 0xa2, 0x7c, 0x69, 0x42, 0x94, 0x65, 0x0d, 0x51, 0xc4, 0x7b, 0x90, 0x0f, 0xb3, 0xe3, 0x22, - 0x46, 0x79, 0x58, 0xcc, 0x28, 0x3c, 0x52, 0x0e, 0x52, 0xde, 0x97, 0x41, 0xca, 0x66, 0x39, 0xa4, - 0xf0, 0xa8, 0x46, 0x4a, 0x39, 0x2a, 0xa0, 0x94, 0x8d, 0x42, 0x4a, 0x11, 0x4b, 0xae, 0x61, 0x4a, - 0xcd, 0x88, 0x29, 0x0f, 0x0a, 0x30, 0x45, 0x2c, 0xb9, 0xc2, 0x29, 0xef, 0xcb, 0x38, 0x65, 0xb3, - 0x9c, 0x53, 0xc4, 0x4c, 0x4d, 0xa0, 0x72, 0x54, 0x00, 0x2a, 0x1b, 0x85, 0xa0, 0xa2, 0x7c, 0x5c, - 0xf2, 0xcb, 0x7d, 0x57, 0x42, 0x2a, 0x8f, 0x4b, 0x49, 0x85, 0x87, 0x34, 0xa1, 0xca, 0x1f, 0xc6, - 0xa3, 0xca, 0x67, 0x37, 0x41, 0x15, 0x9e, 0xa4, 0x84, 0x55, 0xbe, 0xd6, 0x58, 0xc5, 0x2d, 0x63, - 0x15, 0x1e, 0xd0, 0x04, 0x2b, 0x7b, 0x60, 0x3e, 0x39, 0x50, 0xd0, 0x39, 0x39, 0xc1, 0x51, 0x84, - 0x7a, 0x18, 0x6e, 0x83, 0xea, 0x20, 0xea, 0x65, 0x84, 0xe2, 0x6c, 0xab, 0xd7, 0x2e, 0x92, 0x65, - 0x93, 0xd9, 0xb9, 0x2d, 0xb0, 0x5a, 0xc8, 0x48, 0x70, 0x05, 0x4c, 0x92, 0x04, 0x55, 0x18, 0x51, - 0x54, 0x9b, 0x13, 0x84, 0x61, 0x0a, 0x7c, 0x00, 0x40, 0x17, 0xf7, 0xd1, 0xe8, 0x94, 0x78, 0x03, - 0xcc, 0x10, 0xa2, 0xda, 0x9c, 0x66, 0x92, 0xb6, 0x37, 0xc0, 0xee, 0x2f, 0x80, 0x53, 0x3c, 0x99, - 0xc2, 0xa8, 0x2f, 0xff, 0xfa, 0x0c, 0x54, 0xdb, 0xde, 0x65, 0x0c, 0x5f, 0x81, 0x3b, 0xf5, 0x98, - 0x16, 0x72, 0xd3, 0x7d, 0x8a, 0x63, 0xc4, 0x1a, 0xd7, 0x82, 0xaf, 0xc1, 0x44, 0x3d, 0x66, 0xd5, - 0xc3, 0x78, 0xb9, 0xe2, 0x98, 0x19, 0xc7, 0xb5, 0x60, 0x0d, 0x80, 0x7a, 0xcc, 0x91, 0xa5, 0xf0, - 0xa6, 0xc5, 0x29, 0x66, 0x1e, 0xd7, 0x82, 0xef, 0xc1, 0x42, 0x3d, 0xd6, 0xab, 0xc7, 0xb8, 0xb6, - 0xc8, 0x19, 0x5b, 0x93, 0x5c, 0x0b, 0x76, 0xc1, 0x72, 0xfd, 0x07, 0x53, 0x05, 0xb9, 0x49, 0x8f, - 0xe4, 0xdc, 0xa8, 0x46, 0xb9, 0x16, 0xfc, 0x1e, 0xdc, 0xad, 0xc7, 0x4a, 0x41, 0x28, 0x6d, 0x73, - 0x9c, 0xf2, 0xea, 0xe2, 0x5a, 0xf0, 0x1d, 0x98, 0xaf, 0xc7, 0x5a, 0xa1, 0x1a, 0xd3, 0x81, 0x39, - 0xe3, 0x6a, 0x5f, 0xba, 0x1a, 0xb1, 0xa9, 0xca, 0xdc, 0xa4, 0x95, 0x72, 0x6e, 0x54, 0xc7, 0x5c, - 0x0b, 0xfe, 0x0a, 0x4c, 0xd5, 0xe3, 0x14, 0x48, 0x0b, 0x2e, 0xd1, 0x9c, 0x22, 0x96, 0xcd, 0xdc, - 0x53, 0x38, 0x2d, 0xb8, 0x51, 0x73, 0x8a, 0xb8, 0xd6, 0xb5, 0xe0, 0x0e, 0x98, 0xae, 0xc7, 0x19, - 0xa6, 0x16, 0x5d, 0xaf, 0x39, 0x85, 0x90, 0x9b, 0x7d, 0xd2, 0x9c, 0x87, 0x0a, 0xef, 0xda, 0x9c, - 0x62, 0xe2, 0x75, 0x2d, 0xd8, 0x04, 0x73, 0x69, 0x10, 0xfe, 0xc9, 0x95, 0x5f, 0xbc, 0x39, 0x63, - 0x10, 0x38, 0x1b, 0x18, 0x07, 0xd9, 0xc2, 0x5b, 0x38, 0xa7, 0x98, 0x84, 0x5d, 0x0b, 0x1e, 0x83, - 0xd9, 0x7a, 0x2c, 0xe3, 0x6c, 0xd9, 0x95, 0x9c, 0x53, 0x0a, 0xc6, 0xae, 0x05, 0x5f, 0x80, 0x6a, - 0x3d, 0x3e, 0xa8, 0x41, 0xc3, 0xfd, 0x9c, 0x63, 0x62, 0xe3, 0x6c, 0x00, 0x32, 0xf4, 0x94, 0x5d, - 0xd6, 0x39, 0xa5, 0xc0, 0xec, 0x5a, 0x30, 0x06, 0xf7, 0x59, 0xfd, 0x29, 0x38, 0x30, 0x6e, 0xde, - 0x24, 0x3b, 0x3f, 0xe1, 0x90, 0x72, 0x2d, 0x88, 0xc0, 0x52, 0x3d, 0x36, 0x24, 0xbc, 0x41, 0xcb, - 0xef, 0xdc, 0xe4, 0xb0, 0x75, 0x2d, 0xf8, 0x75, 0x86, 0xff, 0xb0, 0xe0, 0x4a, 0xd2, 0x29, 0x6a, - 0x08, 0x5c, 0x0b, 0x7e, 0xa7, 0x34, 0x02, 0xb0, 0xec, 0x76, 0xd2, 0x29, 0xed, 0x0f, 0xf8, 0x40, - 0x28, 0xa7, 0x17, 0x5c, 0x54, 0x3a, 0x45, 0x4d, 0x82, 0x3a, 0x10, 0x1a, 0xa1, 0xec, 0xce, 0xd2, - 0x29, 0xed, 0x19, 0x5c, 0x0b, 0xee, 0x4b, 0x6d, 0x02, 0x2c, 0xbe, 0xbe, 0x74, 0x4a, 0x7a, 0x07, - 0xd7, 0x82, 0x2d, 0xbd, 0x61, 0x80, 0x63, 0x6e, 0x32, 0x9d, 0x71, 0xad, 0x84, 0x6b, 0xc1, 0x6f, - 0x79, 0xeb, 0x00, 0x8b, 0x2e, 0x35, 0x9d, 0xc2, 0x6e, 0x82, 0x0f, 0x4a, 0xde, 0x16, 0x63, 0xee, - 0x37, 0x9d, 0x71, 0xed, 0x85, 0x6b, 0xc1, 0x13, 0xb5, 0x9d, 0x80, 0xa5, 0x57, 0x9d, 0x4e, 0x79, - 0x9b, 0xc1, 0xc3, 0x1d, 0x60, 0x52, 0xc7, 0xa3, 0x76, 0xfb, 0x58, 0x0d, 0xc7, 0xc5, 0xc6, 0x70, - 0x92, 0x96, 0x87, 0x7b, 0x0b, 0x16, 0x18, 0xa1, 0x0e, 0xe8, 0x66, 0xdb, 0xf5, 0xbb, 0xad, 0x6b, - 0x34, 0x54, 0xbf, 0xb0, 0xda, 0x6e, 0xcb, 0xf8, 0x85, 0x31, 0xb9, 0xf6, 0x85, 0xb1, 0x33, 0x29, - 0xba, 0x1a, 0xa8, 0x5f, 0x58, 0x26, 0x35, 0x7e, 0x61, 0x42, 0xc9, 0x63, 0x9d, 0x02, 0xf8, 0xce, - 0x8f, 0xd0, 0x39, 0xde, 0xc7, 0x11, 0x09, 0x83, 0x51, 0xf2, 0x2a, 0xc4, 0xa6, 0xce, 0x2b, 0xf3, - 0x9b, 0xda, 0x64, 0xc3, 0x13, 0x60, 0xb0, 0xd4, 0xc4, 0x3d, 0x2f, 0x22, 0x38, 0xa4, 0xa5, 0xf4, - 0xfb, 0xb3, 0x84, 0x2f, 0xe1, 0xa6, 0x54, 0x68, 0xf3, 0xea, 0x2c, 0xc9, 0x93, 0x31, 0x56, 0x3c, - 0xcd, 0xef, 0xc0, 0x02, 0x9b, 0x9d, 0x92, 0xe3, 0x91, 0x7a, 0x80, 0x9b, 0x12, 0xb8, 0x65, 0x26, - 0xf2, 0x2a, 0x35, 0xf1, 0x20, 0x48, 0x4e, 0x03, 0x1e, 0xde, 0x95, 0x06, 0xa7, 0x2b, 0xf3, 0xab, - 0x64, 0xb2, 0xe1, 0x09, 0x7e, 0x03, 0xe6, 0x1b, 0x17, 0xa3, 0xc8, 0xeb, 0xa0, 0x3e, 0x3f, 0xef, - 0x24, 0xdc, 0xd3, 0x54, 0x59, 0xf0, 0x47, 0x25, 0x16, 0x3c, 0xf4, 0x37, 0x4a, 0x77, 0x0c, 0x8d, - 0x57, 0xf7, 0x8e, 0xb9, 0x5b, 0x66, 0x15, 0x68, 0x41, 0xf2, 0x6e, 0x91, 0x10, 0xa3, 0xc1, 0x4f, - 0x8c, 0xf1, 0xbc, 0x02, 0x4f, 0xd2, 0xe6, 0x43, 0x1e, 0xc8, 0xaa, 0x62, 0x9e, 0x20, 0x00, 0x2f, - 0x67, 0x06, 0x95, 0x14, 0xae, 0xa5, 0xf7, 0x88, 0x70, 0xcc, 0x35, 0xb6, 0x33, 0xae, 0x7b, 0x64, - 0x45, 0xbf, 0x4a, 0x3b, 0x1e, 0x58, 0xd2, 0x06, 0x39, 0x8b, 0x9a, 0x6e, 0x3f, 0xf0, 0xb1, 0x6b, - 0x6d, 0x55, 0xe0, 0xb7, 0x60, 0x9a, 0x77, 0x57, 0xd0, 0x56, 0x9a, 0xb4, 0x1b, 0xf9, 0xef, 0x82, - 0xa9, 0x96, 0x8f, 0x86, 0xd1, 0x45, 0x40, 0x51, 0x5a, 0x35, 0xca, 0x14, 0xb5, 0x8b, 0x2b, 0xff, - 0xb2, 0x38, 0x44, 0x07, 0xdc, 0x6d, 0xa3, 0xb3, 0x3e, 0x26, 0x3c, 0xd0, 0xa6, 0x66, 0xaa, 0xaa, - 0xc5, 0x16, 0x2b, 0xb7, 0xca, 0x16, 0x68, 0xab, 0xf2, 0xbc, 0x42, 0x4b, 0x4f, 0x6b, 0xd8, 0xa7, - 0xf8, 0xda, 0xa3, 0x87, 0xbf, 0x28, 0x3d, 0x92, 0x34, 0x5f, 0x7a, 0x14, 0xa5, 0x72, 0xb8, 0x61, - 0xd4, 0x3d, 0xf2, 0xbb, 0xf8, 0x83, 0x7c, 0xb8, 0x65, 0x32, 0xc3, 0xe1, 0x26, 0x54, 0x72, 0x8d, - 0x3e, 0x89, 0x3b, 0x9d, 0x03, 0x4c, 0xf6, 0x46, 0x75, 0x3c, 0x92, 0x6a, 0xb4, 0x2c, 0xce, 0xd7, - 0x68, 0x55, 0x2b, 0x6f, 0x44, 0xae, 0x69, 0x11, 0x14, 0x92, 0x76, 0x24, 0x6d, 0x44, 0x5d, 0x95, - 0xdf, 0x88, 0x79, 0x0b, 0x89, 0x90, 0x67, 0x95, 0x46, 0x17, 0xae, 0x95, 0xfd, 0xd4, 0xc0, 0x79, - 0x50, 0xfa, 0x1f, 0x06, 0xe9, 0xfb, 0x38, 0x04, 0x73, 0xfb, 0x5e, 0x34, 0xa4, 0x16, 0x27, 0x8d, - 0x46, 0x1b, 0x45, 0x14, 0x93, 0x07, 0xc3, 0xe1, 0x76, 0x26, 0xa5, 0x22, 0x81, 0xc9, 0x79, 0x0d, - 0x1f, 0xdd, 0x1e, 0x98, 0xad, 0x21, 0xbf, 0x83, 0xfb, 0x59, 0x9c, 0x7b, 0xcc, 0x3a, 0x91, 0xc9, - 0x51, 0x56, 0x72, 0x72, 0x1e, 0xa3, 0x0d, 0xee, 0xbd, 0x89, 0x08, 0x3a, 0xeb, 0x7b, 0x11, 0x1d, - 0x4e, 0x2d, 0xf0, 0x7d, 0xdc, 0x21, 0x09, 0x25, 0x52, 0x27, 0xb3, 0x32, 0x0b, 0x0c, 0x99, 0xcd, - 0x49, 0xa3, 0xb1, 0x8f, 0x08, 0x6a, 0xa0, 0xce, 0x25, 0x26, 0x6c, 0xb7, 0x7f, 0x01, 0x26, 0x8f, - 0xa2, 0xdd, 0xbe, 0x17, 0x63, 0xb8, 0xc8, 0x4c, 0xd2, 0xbf, 0x44, 0x8b, 0xaf, 0x08, 0xa5, 0xd1, - 0x2c, 0x36, 0x31, 0x6d, 0x96, 0xd2, 0x19, 0xa5, 0x6d, 0xe5, 0x1a, 0x33, 0x4f, 0x34, 0x42, 0x2c, - 0x56, 0xdd, 0xac, 0xe5, 0x51, 0x0f, 0xc1, 0x4c, 0x72, 0x52, 0x60, 0xd4, 0xc5, 0xa1, 0xb4, 0x03, - 0x24, 0x69, 0x7e, 0x07, 0x28, 0xca, 0xf4, 0x6a, 0xa3, 0x0e, 0xee, 0x1e, 0x60, 0xd2, 0x22, 0x41, - 0x88, 0x5b, 0xe8, 0x1c, 0xb7, 0x5b, 0xf2, 0x76, 0x12, 0x52, 0xc3, 0x76, 0x92, 0x95, 0x69, 0xb0, - 0x36, 0x98, 0x3b, 0xc0, 0x84, 0x96, 0xfe, 0x1f, 0x91, 0x47, 0x8e, 0xfc, 0xf3, 0x40, 0xba, 0x4f, - 0xd0, 0x34, 0xf9, 0xfb, 0x84, 0x9c, 0x41, 0x1a, 0xf5, 0x1b, 0x30, 0xc9, 0x70, 0xa5, 0x43, 0xa0, - 0xd2, 0xc0, 0x52, 0x89, 0xa1, 0xb3, 0xcc, 0x14, 0xa9, 0xf7, 0xef, 0x01, 0x94, 0x02, 0x1f, 0x7a, - 0x11, 0x09, 0xc2, 0x91, 0x74, 0x6a, 0xe6, 0x95, 0xf9, 0x53, 0xd3, 0x64, 0x93, 0x86, 0x3f, 0x03, - 0xcb, 0x07, 0x98, 0xb4, 0x3d, 0xd6, 0x53, 0xb4, 0x46, 0x11, 0xc1, 0x03, 0x56, 0xbb, 0xa4, 0x0c, - 0x79, 0x65, 0x3e, 0x83, 0xc9, 0x46, 0xa2, 0x54, 0x40, 0xc2, 0xd1, 0x6e, 0xb7, 0x9b, 0x9e, 0xc8, - 0xea, 0x6f, 0x90, 0xda, 0x5c, 0x25, 0x0a, 0x41, 0xb1, 0x85, 0xc4, 0x2a, 0xb3, 0x24, 0x1c, 0x9d, - 0xa0, 0xf0, 0x32, 0xc5, 0xf1, 0xc7, 0x79, 0x2f, 0xa1, 0x15, 0xb7, 0x11, 0xa5, 0x46, 0x3c, 0xba, - 0x0f, 0x16, 0xf9, 0x3e, 0xdb, 0x67, 0x1e, 0x6c, 0x3b, 0x3f, 0xd3, 0xdc, 0x0d, 0x36, 0xa2, 0x31, - 0xbc, 0x81, 0xa9, 0x04, 0x78, 0xf3, 0x49, 0x31, 0x90, 0x92, 0x3d, 0xd5, 0x22, 0xe8, 0x06, 0x59, - 0xa6, 0x4f, 0xc7, 0xda, 0xf1, 0x34, 0xbf, 0x05, 0xf3, 0x6f, 0x31, 0x6d, 0x44, 0x98, 0xb2, 0x81, - 0x7a, 0x38, 0xca, 0xa5, 0xd1, 0x0d, 0xc4, 0x09, 0xa2, 0xda, 0x31, 0xa5, 0x54, 0x61, 0xce, 0xd8, - 0xe6, 0x49, 0x1c, 0x6b, 0x81, 0x7f, 0xee, 0xf5, 0xe0, 0x13, 0xcd, 0x45, 0xd3, 0x67, 0x91, 0x9f, - 0x8e, 0x33, 0xcb, 0xc6, 0xbf, 0xf7, 0xf4, 0x5f, 0x7f, 0x9e, 0xaa, 0xfc, 0xed, 0xe3, 0x7a, 0xe5, - 0xef, 0x1f, 0xd7, 0x2b, 0xff, 0xfe, 0xb8, 0x5e, 0xf9, 0xd3, 0x7f, 0xd6, 0x2d, 0x30, 0x1f, 0x84, - 0x3d, 0x56, 0xe7, 0xb7, 0x2f, 0x63, 0xf6, 0x53, 0xb5, 0xb3, 0x09, 0xf6, 0xcf, 0xe7, 0xff, 0x0f, - 0x00, 0x00, 0xff, 0xff, 0x57, 0x97, 0x63, 0x5f, 0x47, 0x27, 0x00, 0x00, + // 2633 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0xdb, 0x52, 0x1b, 0xc9, + 0xf9, 0xc0, 0x07, 0x5b, 0xe6, 0xd0, 0x18, 0x03, 0x0d, 0x98, 0x61, 0x8c, 0xc1, 0x1e, 0x63, 0x2f, + 0xeb, 0x7f, 0xfd, 0x89, 0xed, 0x75, 0xd6, 0x59, 0xef, 0x66, 0x83, 0x11, 0x36, 0xb0, 0x82, 0x5a, + 0x95, 0x24, 0xef, 0x3a, 0xa9, 0xa4, 0xa8, 0x46, 0x6a, 0x84, 0x82, 0x34, 0xa3, 0xcc, 0xb4, 0x84, + 0xf5, 0x26, 0x79, 0x81, 0x54, 0xe5, 0x31, 0x72, 0x99, 0x8b, 0x5c, 0xec, 0x65, 0x2e, 0x53, 0xce, + 0x1b, 0xe4, 0x05, 0x92, 0xea, 0x9e, 0x99, 0x3e, 0x4d, 0xf7, 0x88, 0xbd, 0x62, 0xf8, 0x8e, 0xdd, + 0x3d, 0xd3, 0x5f, 0xff, 0xbe, 0x06, 0x70, 0x9b, 0x74, 0x2e, 0x87, 0xfd, 0xb3, 0x9d, 0x7e, 0x14, + 0x92, 0x10, 0x4e, 0x26, 0xbf, 0x79, 0x8b, 0xcd, 0xb0, 0x1f, 0x85, 0x4d, 0x1c, 0xc7, 0x61, 0x94, + 0xa8, 0xbc, 0xb9, 0xcb, 0x61, 0xd4, 0x6f, 0x66, 0x96, 0xde, 0x4c, 0xaf, 0xdf, 0x4f, 0x1f, 0x97, + 0x22, 0x74, 0x4e, 0x4e, 0x63, 0x1c, 0x0d, 0x71, 0xc4, 0xf5, 0x4b, 0xad, 0x4e, 0x8c, 0xda, 0xed, + 0x08, 0xb7, 0x11, 0xc1, 0xad, 0x54, 0xb8, 0xdc, 0x0e, 0xdb, 0x21, 0x7b, 0xfc, 0x05, 0x7d, 0x4a, + 0xa5, 0xf3, 0xd1, 0x20, 0x26, 0xec, 0x31, 0x11, 0xf8, 0xff, 0x58, 0x04, 0xcb, 0x7b, 0x88, 0x34, + 0x2f, 0xca, 0x61, 0xaf, 0x87, 0x82, 0x56, 0x5c, 0xc3, 0x7f, 0x1a, 0xe0, 0x98, 0xc0, 0x5d, 0x30, + 0x1d, 0x25, 0x8f, 0xb1, 0x3b, 0xf1, 0xe0, 0xe6, 0xf6, 0xec, 0x8b, 0xad, 0x9d, 0x74, 0xfc, 0x26, + 0xfb, 0x9d, 0xf4, 0x67, 0x8d, 0x7b, 0xc1, 0x4d, 0x30, 0x9b, 0x3e, 0x9f, 0x76, 0x5a, 0xb1, 0x7b, + 0xe3, 0xc1, 0xcd, 0xed, 0x52, 0x0d, 0xa4, 0xa2, 0xa3, 0x56, 0xec, 0xfd, 0xb4, 0x00, 0xa6, 0xb2, + 0x74, 0x9f, 0x81, 0x9b, 0x07, 0x98, 0xb8, 0x13, 0x0f, 0x26, 0xb6, 0x67, 0x5f, 0x2c, 0xed, 0x64, + 0x0b, 0x70, 0x80, 0x49, 0x6a, 0x71, 0xe8, 0xd4, 0xa8, 0x05, 0x7c, 0x0a, 0x4a, 0xf5, 0x26, 0x0a, + 0xdc, 0x1b, 0xcc, 0x72, 0x99, 0x5b, 0x52, 0xa1, 0x30, 0x65, 0x36, 0xf0, 0x4b, 0x30, 0x5d, 0x8d, + 0xf0, 0x55, 0xd4, 0x21, 0xd8, 0xbd, 0xc9, 0xec, 0x5d, 0x6e, 0x9f, 0x29, 0x84, 0x0f, 0xb7, 0x85, + 0xcf, 0xc0, 0x24, 0x9d, 0x5e, 0x87, 0xb8, 0x25, 0xe6, 0x75, 0x97, 0x7b, 0x25, 0x62, 0xe1, 0x93, + 0xda, 0x51, 0x8f, 0xa3, 0x5e, 0x3f, 0x8c, 0x88, 0x7b, 0x4b, 0xf3, 0x48, 0xc4, 0x92, 0x47, 0x22, + 0x80, 0x5f, 0x80, 0xa9, 0x72, 0x17, 0xa3, 0x60, 0xd0, 0x77, 0x27, 0x99, 0xcb, 0xaa, 0x48, 0x92, + 0xc8, 0x85, 0x4f, 0x66, 0x49, 0x27, 0xc4, 0x16, 0x9f, 0x2e, 0xd5, 0x94, 0x36, 0xa1, 0x4c, 0x21, + 0x4d, 0x28, 0x13, 0xc1, 0xb7, 0x60, 0x8e, 0x3d, 0xd7, 0xc2, 0x6e, 0xf7, 0x0c, 0x35, 0x2f, 0xdd, + 0x69, 0xe6, 0x7c, 0x5f, 0x75, 0xce, 0xb4, 0x22, 0x82, 0xea, 0x45, 0xd3, 0xd3, 0x75, 0x3d, 0x0e, + 0x9b, 0x97, 0xee, 0x8c, 0x96, 0x3e, 0x53, 0x48, 0xe9, 0x33, 0x11, 0xfc, 0x0d, 0x98, 0xad, 0xe1, + 0x38, 0xec, 0x0e, 0x31, 0x73, 0x05, 0xcc, 0xf5, 0x1e, 0x77, 0x95, 0x74, 0xc2, 0x5b, 0xf6, 0x80, + 0x5b, 0xe0, 0xc6, 0x41, 0xd9, 0x9d, 0x65, 0x7e, 0x50, 0x7c, 0x1c, 0x65, 0x61, 0x7e, 0xe3, 0xa0, + 0x4c, 0xd3, 0xec, 0xe3, 0x2e, 0x26, 0xb8, 0x86, 0x82, 0x36, 0x76, 0x6f, 0x6b, 0x69, 0x24, 0x9d, + 0x94, 0x46, 0x92, 0xd2, 0xb7, 0x58, 0x43, 0x57, 0x74, 0x71, 0xe7, 0xb4, 0xb7, 0x98, 0x88, 0xa5, + 0xb7, 0x98, 0x08, 0xd8, 0xcc, 0xd0, 0x15, 0x7f, 0x27, 0x77, 0xf4, 0x99, 0x09, 0x9d, 0x3c, 0x33, + 0x21, 0x4d, 0x53, 0x56, 0x07, 0xc4, 0x9d, 0xcf, 0xa7, 0xac, 0x0e, 0xb4, 0x94, 0xd5, 0x81, 0x92, + 0x92, 0xba, 0x2d, 0x58, 0x52, 0x2a, 0xbe, 0xb2, 0x07, 0xfc, 0x0a, 0xcc, 0xd4, 0xd0, 0x55, 0x32, + 0x6f, 0x77, 0x91, 0xb9, 0xaf, 0xc9, 0xee, 0xe9, 0x8a, 0x70, 0x67, 0x61, 0x0d, 0x0f, 0xc1, 0x9d, + 0x2c, 0x52, 0xea, 0x0f, 0x99, 0xff, 0x46, 0x2e, 0xbd, 0x1e, 0x44, 0xf3, 0xa3, 0x9f, 0x7f, 0x0d, + 0x5d, 0xb1, 0x9d, 0xbc, 0xa4, 0x7d, 0xfe, 0xa9, 0x5c, 0xfa, 0xfc, 0x53, 0x49, 0x9a, 0x5e, 0x7e, + 0xc7, 0xcb, 0xf9, 0xf4, 0xc6, 0xd7, 0xac, 0xf9, 0xc1, 0x3d, 0x70, 0x3b, 0x1b, 0x10, 0x1b, 0xc3, + 0x0a, 0x8b, 0xb3, 0x9e, 0x9b, 0x86, 0x3a, 0x10, 0xc5, 0x07, 0xfe, 0x0a, 0xcc, 0x96, 0x45, 0xe9, + 0x76, 0xef, 0xa6, 0x05, 0x49, 0x2e, 0xe7, 0xd2, 0x1b, 0x90, 0x4c, 0x61, 0x05, 0xcc, 0x57, 0x71, + 0x1c, 0x77, 0x7a, 0x9d, 0x98, 0x74, 0x9a, 0x6c, 0x4f, 0xac, 0x32, 0xef, 0x4d, 0x51, 0x9e, 0x54, + 0xbd, 0x08, 0xa4, 0x7b, 0xc2, 0x1f, 0xc1, 0x92, 0x24, 0xe2, 0x3b, 0xdc, 0x65, 0x01, 0x1f, 0x99, + 0x02, 0xe6, 0xf7, 0xb9, 0x29, 0x02, 0x5d, 0xed, 0xf2, 0x05, 0x6e, 0x5e, 0x36, 0x3e, 0x06, 0x75, + 0x82, 0xc8, 0x20, 0x76, 0xd7, 0xb4, 0xd5, 0x56, 0xd5, 0xd2, 0x6a, 0xab, 0x0a, 0xba, 0xda, 0x8d, + 0x8f, 0xc1, 0x21, 0x46, 0x11, 0xd9, 0xc3, 0x88, 0xb8, 0x9e, 0xb6, 0xda, 0xb2, 0x52, 0x5a, 0x6d, + 0x59, 0x4c, 0xa7, 0xc9, 0xa2, 0xd6, 0x71, 0x33, 0x0c, 0x5a, 0x28, 0x1a, 0xd1, 0xc9, 0xc7, 0xee, + 0x43, 0x6d, 0x9a, 0x06, 0x1b, 0x69, 0x9a, 0x06, 0x6d, 0xfa, 0x51, 0xc9, 0x6f, 0xd2, 0xcf, 0x7f, + 0x54, 0x92, 0x5a, 0xfd, 0xa8, 0xe4, 0xd7, 0xda, 0x00, 0xf0, 0x5d, 0x17, 0xc5, 0x17, 0x74, 0xf5, + 0x1a, 0xe1, 0x0f, 0x38, 0x8a, 0x3b, 0x61, 0xe0, 0x3e, 0x62, 0xd1, 0x7c, 0x1e, 0x2d, 0x6f, 0x22, + 0x22, 0x1a, 0xfc, 0x61, 0x07, 0xac, 0x55, 0x23, 0xdc, 0x47, 0x11, 0x36, 0x04, 0xdf, 0x62, 0xc1, + 0x3f, 0x97, 0x4f, 0x35, 0xb3, 0xa5, 0xc8, 0x61, 0x8f, 0x06, 0xff, 0x1f, 0xdc, 0x7a, 0xd7, 0x1d, + 0xc4, 0x17, 0xee, 0x63, 0x16, 0x76, 0x45, 0x1a, 0xf3, 0x20, 0xbe, 0x10, 0x21, 0x12, 0x2b, 0xba, + 0x72, 0x7b, 0x83, 0xf3, 0x73, 0x1c, 0xf1, 0xfa, 0xf7, 0x44, 0x5b, 0x39, 0x55, 0x2d, 0xad, 0x9c, + 0xaa, 0x80, 0xaf, 0xc1, 0xad, 0xb7, 0xbd, 0x3e, 0x19, 0xb9, 0xff, 0x4d, 0x00, 0xe0, 0xa1, 0x11, + 0x35, 0x98, 0x89, 0x34, 0x0a, 0xf6, 0xfb, 0xde, 0x2d, 0x70, 0xb3, 0xd9, 0x6b, 0x7d, 0x57, 0x9a, + 0xbe, 0xb7, 0xf0, 0xd0, 0xff, 0x0b, 0x04, 0x2b, 0x1a, 0x9e, 0xc4, 0xfd, 0x30, 0x88, 0x31, 0xdc, + 0x07, 0x33, 0x51, 0xfa, 0x9c, 0x01, 0xcd, 0x13, 0x0b, 0xd0, 0x24, 0x56, 0x3b, 0xd9, 0x43, 0x4d, + 0x38, 0x8e, 0x65, 0x1a, 0xf8, 0x0c, 0x2c, 0x93, 0x08, 0x05, 0x31, 0x3d, 0xe3, 0x4f, 0xbb, 0x68, + 0x84, 0xa3, 0xd3, 0x6e, 0x88, 0x5a, 0x0c, 0x3f, 0x4a, 0x35, 0xc8, 0x75, 0xc7, 0x54, 0x75, 0x1c, + 0xa2, 0x96, 0xf7, 0x9f, 0x05, 0x30, 0xcd, 0x47, 0xb9, 0x2d, 0x63, 0xd0, 0xb2, 0x8a, 0x41, 0x89, + 0x49, 0xc6, 0x41, 0xff, 0xa7, 0x70, 0xd0, 0x8a, 0xc6, 0x41, 0xdc, 0x36, 0x01, 0xa1, 0x57, 0x39, + 0x10, 0x5a, 0x33, 0x80, 0x10, 0x77, 0x12, 0x24, 0xf4, 0x5c, 0x23, 0xa1, 0xd5, 0x1c, 0x09, 0x71, + 0xa7, 0x0c, 0x85, 0x9e, 0x6b, 0x28, 0xb4, 0x9a, 0x43, 0x21, 0xe1, 0x92, 0xb2, 0xd0, 0x4b, 0x9d, + 0x85, 0xdc, 0x3c, 0x0b, 0x71, 0x27, 0x0e, 0x43, 0xaf, 0x72, 0x30, 0xb4, 0x66, 0x80, 0x21, 0x31, + 0x29, 0xfe, 0xb5, 0xbd, 0x33, 0xd3, 0xd0, 0x86, 0x8d, 0x86, 0x78, 0x08, 0x0d, 0x87, 0x5e, 0xe5, + 0x70, 0x68, 0xcd, 0x80, 0x43, 0x62, 0x00, 0x9c, 0x87, 0x76, 0x4d, 0x3c, 0xb4, 0x6e, 0xe6, 0x21, + 0xee, 0xae, 0x00, 0xd1, 0x63, 0x09, 0x88, 0x96, 0x14, 0x20, 0xe2, 0xf6, 0x94, 0x88, 0x76, 0x4d, + 0x44, 0xb4, 0x6e, 0x26, 0x22, 0x91, 0x48, 0x3e, 0x28, 0x9f, 0x6b, 0x48, 0xb4, 0x9a, 0x43, 0x22, + 0xf1, 0x36, 0x53, 0x26, 0xda, 0x35, 0x31, 0xd1, 0xba, 0x99, 0x89, 0xa4, 0xd9, 0x49, 0x50, 0xf4, + 0x5c, 0x83, 0xa2, 0xd5, 0x1c, 0x14, 0x29, 0x49, 0x29, 0xd4, 0xec, 0x9a, 0xa8, 0x68, 0xdd, 0x4c, + 0x45, 0xf9, 0xa4, 0x34, 0xc2, 0xeb, 0x3c, 0x16, 0x79, 0x26, 0x2c, 0xe2, 0xde, 0x12, 0x17, 0x1d, + 0x59, 0xb8, 0x68, 0xd3, 0xca, 0x45, 0x3c, 0x8a, 0x0e, 0x46, 0x2f, 0x75, 0x30, 0x72, 0xf3, 0x60, + 0x24, 0xf6, 0x42, 0x46, 0x46, 0x47, 0x16, 0x32, 0xda, 0xb4, 0x92, 0x91, 0x32, 0x00, 0xf9, 0x8d, + 0x97, 0x8d, 0x68, 0x74, 0xdf, 0x82, 0x46, 0x3c, 0x8c, 0xca, 0x46, 0x5f, 0x99, 0xd8, 0x68, 0x45, + 0x63, 0x23, 0xf1, 0x1e, 0xe4, 0x53, 0xf4, 0xd8, 0x06, 0x47, 0x0f, 0xec, 0x70, 0xc4, 0x23, 0xe5, + 0xe8, 0xe8, 0x43, 0x11, 0x1d, 0x6d, 0x15, 0xd3, 0x11, 0x8f, 0x6a, 0xc4, 0xa3, 0x23, 0x0b, 0x1e, + 0x6d, 0x5a, 0xf1, 0x48, 0x2c, 0xb9, 0xc6, 0x47, 0x65, 0x23, 0x1f, 0xdd, 0xb7, 0xf0, 0x91, 0x58, + 0x72, 0x05, 0x90, 0x3e, 0x14, 0x01, 0xd2, 0x56, 0x31, 0x20, 0x89, 0x99, 0x9a, 0x08, 0xe9, 0xc8, + 0x42, 0x48, 0x9b, 0x56, 0x42, 0x52, 0x3e, 0x2e, 0xf9, 0xe5, 0xbe, 0x2f, 0x40, 0xa4, 0x47, 0x85, + 0x88, 0xc4, 0x43, 0x9a, 0x18, 0xe9, 0x8f, 0xe3, 0x19, 0xe9, 0xe9, 0x75, 0x18, 0x89, 0x27, 0x29, + 0x80, 0xa4, 0x1d, 0x15, 0x92, 0xee, 0xea, 0x90, 0xc4, 0x63, 0xa4, 0x94, 0x74, 0x64, 0xa1, 0xa4, + 0x4d, 0x2b, 0x25, 0x89, 0xd5, 0xd3, 0x30, 0xe9, 0x6b, 0x0d, 0x93, 0xfc, 0x22, 0x4c, 0x12, 0xe3, + 0x30, 0x70, 0xd2, 0x1e, 0x58, 0x48, 0xce, 0x32, 0x74, 0x4e, 0x4e, 0x70, 0x1c, 0xa3, 0x36, 0x86, + 0x3b, 0xa0, 0xd4, 0x8b, 0xdb, 0x19, 0x1c, 0x79, 0x3b, 0xea, 0x55, 0x93, 0x64, 0x59, 0x63, 0x76, + 0x7e, 0x1d, 0xac, 0x59, 0xf1, 0x0c, 0xae, 0x82, 0x29, 0x92, 0x50, 0x12, 0x83, 0x99, 0x52, 0x6d, + 0x92, 0x30, 0x42, 0x82, 0xf7, 0x01, 0x68, 0xe1, 0x2e, 0x1a, 0x9d, 0x92, 0x4e, 0x0f, 0x33, 0x7a, + 0x29, 0xd5, 0x66, 0x98, 0xa4, 0xd1, 0xe9, 0x61, 0xff, 0x97, 0xc0, 0xb3, 0x4f, 0xc6, 0x1a, 0xf5, + 0xc5, 0xdf, 0x9e, 0x82, 0x52, 0xa3, 0x73, 0x39, 0x84, 0x2f, 0xc1, 0xad, 0xca, 0x90, 0xae, 0x95, + 0xe9, 0x0e, 0xc9, 0x33, 0x12, 0x95, 0xef, 0xc0, 0x57, 0x60, 0xb2, 0x32, 0x64, 0x85, 0xcb, 0x78, + 0xa1, 0xe4, 0x99, 0xf1, 0xca, 0x77, 0x60, 0x19, 0x80, 0xca, 0x90, 0xd3, 0x92, 0xf5, 0x76, 0xc9, + 0xb3, 0xe3, 0x96, 0xef, 0xc0, 0x0f, 0x60, 0xb1, 0x32, 0xd4, 0x0b, 0xd7, 0xb8, 0x56, 0xd0, 0x1b, + 0x5b, 0x0e, 0x7d, 0x07, 0xb6, 0xc0, 0x4a, 0xe5, 0x07, 0x53, 0xf1, 0xba, 0x4e, 0x5f, 0xe8, 0x5d, + 0xab, 0x3c, 0xfa, 0x0e, 0xfc, 0x1e, 0xdc, 0xa9, 0x0c, 0x95, 0x5a, 0x54, 0xd8, 0xda, 0x79, 0xc5, + 0x85, 0xcd, 0x77, 0xe0, 0x7b, 0xb0, 0x50, 0x19, 0x6a, 0x35, 0x72, 0x4c, 0xd7, 0xe9, 0x8d, 0x2b, + 0xbb, 0xe9, 0x6a, 0x0c, 0x4d, 0x05, 0xee, 0x3a, 0xed, 0xa3, 0x77, 0xad, 0x12, 0xea, 0x3b, 0xf0, + 0xd7, 0x60, 0xba, 0x32, 0x4c, 0x59, 0xd8, 0x72, 0x71, 0xe8, 0xd9, 0x30, 0x3a, 0x73, 0x4f, 0xb9, + 0xd8, 0x72, 0x8b, 0xe8, 0xd9, 0x90, 0xda, 0x77, 0xe0, 0x2e, 0x98, 0xa9, 0x0c, 0x33, 0x42, 0xb6, + 0x5d, 0x29, 0x7a, 0x56, 0xbe, 0xce, 0x3e, 0x69, 0x5e, 0x72, 0xac, 0xf7, 0x8b, 0x9e, 0x1d, 0xb6, + 0x7d, 0x07, 0xd6, 0xc0, 0x7c, 0x1a, 0x84, 0x7f, 0x72, 0xc5, 0x97, 0x8d, 0xde, 0x18, 0xfa, 0xce, + 0x06, 0xc6, 0x19, 0xda, 0x7a, 0xf3, 0xe8, 0xd9, 0x21, 0xdc, 0x77, 0xe0, 0x31, 0x98, 0xab, 0x0c, + 0x65, 0x92, 0x2e, 0xba, 0x86, 0xf4, 0x0a, 0x99, 0xdc, 0x77, 0xe0, 0x73, 0x50, 0xaa, 0x0c, 0x0f, + 0xca, 0xd0, 0x70, 0x27, 0xe9, 0x99, 0xb0, 0x3c, 0x1b, 0x80, 0xcc, 0x5b, 0x45, 0x17, 0x94, 0x5e, + 0x21, 0xab, 0xfb, 0x0e, 0x1c, 0x82, 0x7b, 0xac, 0xfe, 0x58, 0xce, 0xaa, 0xeb, 0x5f, 0x0c, 0x78, + 0x3f, 0xe3, 0x7c, 0xf4, 0x1d, 0x88, 0xc0, 0x72, 0x65, 0x68, 0x48, 0x78, 0x8d, 0x6b, 0x0e, 0xef, + 0x3a, 0xe7, 0xbc, 0xef, 0xc0, 0xd7, 0x60, 0x8a, 0xa6, 0xa0, 0x47, 0xa8, 0xf9, 0x22, 0xc2, 0xb3, + 0x1c, 0xbd, 0x59, 0x01, 0xd1, 0x0e, 0xcf, 0x31, 0xb7, 0x12, 0xde, 0xb8, 0xf3, 0xd8, 0x77, 0xe0, + 0xd7, 0x59, 0x33, 0x04, 0x2d, 0x37, 0xc3, 0x9e, 0xad, 0x3d, 0xf2, 0x1d, 0xf8, 0x9d, 0xd2, 0x16, + 0xc1, 0xa2, 0x4b, 0x62, 0xaf, 0xb0, 0x5b, 0xe2, 0x03, 0xa1, 0x5d, 0x8b, 0xe5, 0xbe, 0xd8, 0xb3, + 0xb5, 0x4c, 0xea, 0x40, 0x68, 0x84, 0xa2, 0xab, 0x63, 0xaf, 0xb0, 0x83, 0xf2, 0x1d, 0xb8, 0x2f, + 0x35, 0x4d, 0xd0, 0x7e, 0x8b, 0xec, 0x15, 0x74, 0x52, 0xbe, 0x03, 0xeb, 0x7a, 0xfb, 0x04, 0xc7, + 0x5c, 0x28, 0x7b, 0xe3, 0x1a, 0x2b, 0xdf, 0x81, 0xdf, 0xf2, 0x46, 0x0a, 0xda, 0xee, 0x96, 0x3d, + 0x6b, 0x6f, 0xc5, 0x07, 0x25, 0xef, 0xd4, 0x31, 0xd7, 0xcc, 0xde, 0xb8, 0x66, 0xcb, 0x77, 0xe0, + 0x89, 0xda, 0x5c, 0xc1, 0xc2, 0x1b, 0x67, 0xaf, 0xb8, 0xe9, 0xe2, 0xe1, 0x0e, 0x30, 0xa9, 0xe0, + 0x51, 0xa3, 0x71, 0xac, 0x86, 0xe3, 0x62, 0x63, 0x38, 0x49, 0xcb, 0xc3, 0xbd, 0x03, 0x8b, 0x8c, + 0xd7, 0x7b, 0x74, 0xff, 0xbf, 0x09, 0x5a, 0xf5, 0x2b, 0xd4, 0x57, 0xbf, 0xb0, 0xf2, 0x9b, 0xba, + 0xf1, 0x0b, 0x63, 0x72, 0xed, 0x0b, 0x63, 0xc7, 0x64, 0x3c, 0xe8, 0xa9, 0x5f, 0x58, 0x26, 0x35, + 0x7e, 0x61, 0x42, 0xc9, 0x63, 0x9d, 0x02, 0xf8, 0x3e, 0x88, 0xd1, 0x39, 0xde, 0xc7, 0x31, 0x89, + 0xc2, 0x51, 0xf2, 0x2a, 0x44, 0x9d, 0xc9, 0x2b, 0xf3, 0x75, 0xc6, 0x64, 0xc3, 0x13, 0x60, 0xb0, + 0x5c, 0xc3, 0xed, 0x4e, 0x4c, 0x70, 0x44, 0xab, 0xfb, 0xf7, 0x67, 0x09, 0xf2, 0xc2, 0x2d, 0xa9, + 0xf6, 0xe7, 0xd5, 0x59, 0x92, 0xc7, 0x63, 0xac, 0x78, 0x9a, 0xdf, 0x83, 0x45, 0x36, 0x3b, 0x25, + 0xc7, 0x43, 0x95, 0x29, 0x4c, 0x09, 0xfc, 0x22, 0x13, 0x79, 0x95, 0x6a, 0xb8, 0x17, 0x26, 0x07, + 0x14, 0x0f, 0xef, 0x4b, 0x83, 0xd3, 0x95, 0xf9, 0x55, 0x32, 0xd9, 0xf0, 0x04, 0xbf, 0x05, 0x0b, + 0xd5, 0x8b, 0x51, 0xdc, 0x69, 0xa2, 0x2e, 0x3f, 0x82, 0x25, 0x02, 0xd5, 0x54, 0x59, 0xf0, 0x87, + 0x05, 0x16, 0x3c, 0xf4, 0x37, 0xca, 0x5d, 0x01, 0x34, 0xfe, 0x05, 0xc5, 0x33, 0xdf, 0x1d, 0xb0, + 0x0a, 0xb4, 0x28, 0x79, 0xd7, 0x49, 0x84, 0x51, 0xef, 0x67, 0xc6, 0x78, 0x36, 0x01, 0x4f, 0xd2, + 0x7e, 0x48, 0x1e, 0xc8, 0x9a, 0x62, 0x9e, 0x50, 0x09, 0x2f, 0x67, 0x06, 0x95, 0x14, 0xae, 0xae, + 0x77, 0xcc, 0x70, 0xcc, 0x5f, 0x13, 0xbc, 0x71, 0xbd, 0x34, 0x2b, 0xfa, 0x25, 0xda, 0x84, 0xc1, + 0x82, 0xce, 0xcc, 0x5b, 0xd2, 0x74, 0xfb, 0x61, 0x80, 0x7d, 0x67, 0x7b, 0x02, 0x7e, 0x0b, 0x66, + 0x78, 0xc3, 0x07, 0x5d, 0xa5, 0x6f, 0xbc, 0x96, 0xff, 0x1b, 0x30, 0x5d, 0x0f, 0x50, 0x3f, 0xbe, + 0x08, 0x29, 0xdd, 0xab, 0x46, 0x99, 0xa2, 0x7c, 0x31, 0x08, 0x2e, 0xed, 0x21, 0x9a, 0xe0, 0x4e, + 0x03, 0x9d, 0x75, 0x31, 0xe1, 0x81, 0xb6, 0x34, 0x53, 0x55, 0x2d, 0xb6, 0x58, 0xb1, 0x55, 0xb6, + 0x40, 0xdb, 0x13, 0xcf, 0x26, 0x68, 0xe9, 0xa9, 0xf7, 0xbb, 0x94, 0xa8, 0xdb, 0x94, 0x47, 0x44, + 0xe9, 0x91, 0xa4, 0xf9, 0xd2, 0xa3, 0x28, 0x95, 0xc3, 0x0d, 0xa3, 0xd6, 0x51, 0xd0, 0xc2, 0x1f, + 0xe5, 0xc3, 0x2d, 0x93, 0x19, 0x0e, 0x37, 0xa1, 0x92, 0x6b, 0xf4, 0xc9, 0xb0, 0xd9, 0x3c, 0xc0, + 0x64, 0x6f, 0x54, 0xc1, 0x23, 0xa9, 0x46, 0xcb, 0xe2, 0x7c, 0x8d, 0x56, 0xb5, 0xf2, 0x46, 0xe4, + 0x9a, 0x3a, 0x41, 0x11, 0x69, 0xc4, 0xd2, 0x46, 0xd4, 0x55, 0xf9, 0x8d, 0x98, 0xb7, 0x90, 0xa0, + 0x7d, 0x4e, 0xe9, 0xbd, 0xe1, 0x7a, 0xd1, 0x7f, 0x7c, 0x78, 0xf7, 0x0b, 0xff, 0x7c, 0x92, 0xbe, + 0x8f, 0x43, 0x30, 0xbf, 0xdf, 0x89, 0xfb, 0xd4, 0xe2, 0xa4, 0x5a, 0x6d, 0xa0, 0x98, 0x92, 0x7b, + 0xaf, 0xdf, 0xdf, 0xc9, 0xa4, 0x54, 0x24, 0xc8, 0x3d, 0xaf, 0xe1, 0xa3, 0xdb, 0x03, 0x73, 0x65, + 0x14, 0x34, 0x71, 0x37, 0x8b, 0x73, 0x97, 0x59, 0x27, 0x32, 0x39, 0xca, 0x6a, 0x4e, 0xce, 0x63, + 0x34, 0xc0, 0xdd, 0xb7, 0x31, 0x41, 0x67, 0xdd, 0x4e, 0x4c, 0x87, 0x53, 0x0e, 0x83, 0x00, 0x37, + 0x49, 0x02, 0xae, 0xd4, 0xc9, 0xac, 0xcc, 0x02, 0x43, 0x66, 0x73, 0x52, 0xad, 0xee, 0x23, 0x82, + 0xaa, 0xa8, 0x79, 0x89, 0x09, 0xdb, 0xed, 0x5f, 0x82, 0xa9, 0xa3, 0xf8, 0x4d, 0xb7, 0x33, 0xc4, + 0x70, 0x89, 0x99, 0xa4, 0xbf, 0x89, 0x5b, 0x07, 0x45, 0x28, 0x8d, 0x66, 0xa9, 0x86, 0x69, 0xff, + 0x96, 0xce, 0x28, 0xed, 0x74, 0xd7, 0x99, 0x79, 0xa2, 0x11, 0x62, 0xb1, 0xea, 0x66, 0x2d, 0x8f, + 0x7a, 0x08, 0x66, 0x93, 0x93, 0x02, 0xa3, 0x16, 0x8e, 0xa4, 0x1d, 0x20, 0x49, 0xf3, 0x3b, 0x40, + 0x51, 0xa6, 0xb7, 0x2d, 0x15, 0x70, 0xe7, 0x00, 0x93, 0x3a, 0x09, 0x23, 0x5c, 0x47, 0xe7, 0xb8, + 0x51, 0x97, 0xb7, 0x93, 0x90, 0x1a, 0xb6, 0x93, 0xac, 0x4c, 0x83, 0x35, 0xc0, 0xfc, 0x01, 0x26, + 0xb4, 0xf4, 0xff, 0x88, 0x3a, 0xe4, 0x28, 0x38, 0x0f, 0xa5, 0x2b, 0x0e, 0x4d, 0x93, 0xbf, 0xe2, + 0xc8, 0x19, 0xa4, 0x51, 0xbf, 0x01, 0x53, 0x0c, 0x57, 0x9a, 0x04, 0x2a, 0x3d, 0x35, 0x95, 0x18, + 0x9a, 0xdd, 0x4c, 0x91, 0x7a, 0xff, 0x01, 0x40, 0x29, 0xf0, 0x61, 0x27, 0x26, 0x61, 0x34, 0x92, + 0x4e, 0xcd, 0xbc, 0x32, 0x7f, 0x6a, 0x9a, 0x6c, 0xd2, 0xf0, 0x67, 0x60, 0xe5, 0x00, 0x93, 0x46, + 0x87, 0xb5, 0x39, 0xf5, 0x51, 0x4c, 0x70, 0x8f, 0xd5, 0x2e, 0x29, 0x43, 0x5e, 0x99, 0xcf, 0x60, + 0xb2, 0x91, 0x28, 0x15, 0x90, 0x68, 0xf4, 0xa6, 0xd5, 0x4a, 0x4f, 0x64, 0xf5, 0x5f, 0xc1, 0x1a, + 0x5c, 0x25, 0x0a, 0x81, 0xdd, 0x42, 0x62, 0x95, 0x39, 0x12, 0x8d, 0x4e, 0x50, 0x74, 0x99, 0xe2, + 0xf8, 0xa3, 0xbc, 0x97, 0xd0, 0x8a, 0x0b, 0x92, 0x42, 0x23, 0x1e, 0x3d, 0x00, 0x4b, 0x7c, 0x9f, + 0xed, 0x33, 0x0f, 0xb6, 0x9d, 0x3f, 0xd7, 0xdc, 0x0d, 0x36, 0xa2, 0x57, 0xbd, 0x86, 0xa9, 0x04, + 0x78, 0x0b, 0x49, 0x31, 0x90, 0x92, 0x3d, 0xd1, 0x22, 0xe8, 0x06, 0x59, 0xa6, 0xcf, 0xc6, 0xda, + 0xf1, 0x34, 0xbf, 0x03, 0x0b, 0xef, 0x30, 0x6d, 0x44, 0x98, 0xb2, 0x8a, 0xda, 0x38, 0xce, 0xa5, + 0xd1, 0x0d, 0xc4, 0x09, 0xa2, 0xda, 0x31, 0xa5, 0x54, 0x61, 0xce, 0xd8, 0xe6, 0x49, 0x1c, 0xcb, + 0x61, 0x70, 0xde, 0x69, 0xc3, 0xc7, 0x9a, 0x8b, 0xa6, 0xcf, 0x22, 0x3f, 0x19, 0x67, 0x96, 0x8d, + 0x7f, 0xef, 0xc9, 0x3f, 0xff, 0x3a, 0x3d, 0xf1, 0xf7, 0x4f, 0x1b, 0x13, 0x3f, 0x7d, 0xda, 0x98, + 0xf8, 0xd7, 0xa7, 0x8d, 0x89, 0x3f, 0xff, 0x7b, 0xc3, 0x01, 0x0b, 0x61, 0xd4, 0x66, 0x75, 0x7e, + 0xe7, 0x72, 0xc8, 0xfe, 0x63, 0xf0, 0x6c, 0x92, 0xfd, 0xf8, 0xe2, 0x7f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x2c, 0x3f, 0xfa, 0xa2, 0xce, 0x28, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1442,6 +1500,8 @@ type TikvClient interface { KvDeleteRange(ctx context.Context, in *kvrpcpb.DeleteRangeRequest, opts ...grpc.CallOption) (*kvrpcpb.DeleteRangeResponse, error) KvPrepareFlashbackToVersion(ctx context.Context, in *kvrpcpb.PrepareFlashbackToVersionRequest, opts ...grpc.CallOption) (*kvrpcpb.PrepareFlashbackToVersionResponse, error) KvFlashbackToVersion(ctx context.Context, in *kvrpcpb.FlashbackToVersionRequest, opts ...grpc.CallOption) (*kvrpcpb.FlashbackToVersionResponse, error) + KvFlush(ctx context.Context, in *kvrpcpb.FlushRequest, opts ...grpc.CallOption) (*kvrpcpb.FlushResponse, error) + KvBufferBatchGet(ctx context.Context, in *kvrpcpb.BufferBatchGetRequest, opts ...grpc.CallOption) (*kvrpcpb.BufferBatchGetResponse, error) // Raw commands; no transaction support. RawGet(ctx context.Context, in *kvrpcpb.RawGetRequest, opts ...grpc.CallOption) (*kvrpcpb.RawGetResponse, error) RawBatchGet(ctx context.Context, in *kvrpcpb.RawBatchGetRequest, opts ...grpc.CallOption) (*kvrpcpb.RawBatchGetResponse, error) @@ -1703,6 +1763,24 @@ func (c *tikvClient) KvFlashbackToVersion(ctx context.Context, in *kvrpcpb.Flash return out, nil } +func (c *tikvClient) KvFlush(ctx context.Context, in *kvrpcpb.FlushRequest, opts ...grpc.CallOption) (*kvrpcpb.FlushResponse, error) { + out := new(kvrpcpb.FlushResponse) + err := c.cc.Invoke(ctx, "/tikvpb.Tikv/KvFlush", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *tikvClient) KvBufferBatchGet(ctx context.Context, in *kvrpcpb.BufferBatchGetRequest, opts ...grpc.CallOption) (*kvrpcpb.BufferBatchGetResponse, error) { + out := new(kvrpcpb.BufferBatchGetResponse) + err := c.cc.Invoke(ctx, "/tikvpb.Tikv/KvBufferBatchGet", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *tikvClient) RawGet(ctx context.Context, in *kvrpcpb.RawGetRequest, opts ...grpc.CallOption) (*kvrpcpb.RawGetResponse, error) { out := new(kvrpcpb.RawGetResponse) err := c.cc.Invoke(ctx, "/tikvpb.Tikv/RawGet", in, out, opts...) @@ -2359,6 +2437,8 @@ type TikvServer interface { KvDeleteRange(context.Context, *kvrpcpb.DeleteRangeRequest) (*kvrpcpb.DeleteRangeResponse, error) KvPrepareFlashbackToVersion(context.Context, *kvrpcpb.PrepareFlashbackToVersionRequest) (*kvrpcpb.PrepareFlashbackToVersionResponse, error) KvFlashbackToVersion(context.Context, *kvrpcpb.FlashbackToVersionRequest) (*kvrpcpb.FlashbackToVersionResponse, error) + KvFlush(context.Context, *kvrpcpb.FlushRequest) (*kvrpcpb.FlushResponse, error) + KvBufferBatchGet(context.Context, *kvrpcpb.BufferBatchGetRequest) (*kvrpcpb.BufferBatchGetResponse, error) // Raw commands; no transaction support. RawGet(context.Context, *kvrpcpb.RawGetRequest) (*kvrpcpb.RawGetResponse, error) RawBatchGet(context.Context, *kvrpcpb.RawBatchGetRequest) (*kvrpcpb.RawBatchGetResponse, error) @@ -2502,6 +2582,12 @@ func (*UnimplementedTikvServer) KvPrepareFlashbackToVersion(ctx context.Context, func (*UnimplementedTikvServer) KvFlashbackToVersion(ctx context.Context, req *kvrpcpb.FlashbackToVersionRequest) (*kvrpcpb.FlashbackToVersionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method KvFlashbackToVersion not implemented") } +func (*UnimplementedTikvServer) KvFlush(ctx context.Context, req *kvrpcpb.FlushRequest) (*kvrpcpb.FlushResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method KvFlush not implemented") +} +func (*UnimplementedTikvServer) KvBufferBatchGet(ctx context.Context, req *kvrpcpb.BufferBatchGetRequest) (*kvrpcpb.BufferBatchGetResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method KvBufferBatchGet not implemented") +} func (*UnimplementedTikvServer) RawGet(ctx context.Context, req *kvrpcpb.RawGetRequest) (*kvrpcpb.RawGetResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method RawGet not implemented") } @@ -2990,6 +3076,42 @@ func _Tikv_KvFlashbackToVersion_Handler(srv interface{}, ctx context.Context, de return interceptor(ctx, in, info, handler) } +func _Tikv_KvFlush_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(kvrpcpb.FlushRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(TikvServer).KvFlush(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tikvpb.Tikv/KvFlush", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(TikvServer).KvFlush(ctx, req.(*kvrpcpb.FlushRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _Tikv_KvBufferBatchGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(kvrpcpb.BufferBatchGetRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(TikvServer).KvBufferBatchGet(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tikvpb.Tikv/KvBufferBatchGet", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(TikvServer).KvBufferBatchGet(ctx, req.(*kvrpcpb.BufferBatchGetRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _Tikv_RawGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(kvrpcpb.RawGetRequest) if err := dec(in); err != nil { @@ -3968,6 +4090,14 @@ var _Tikv_serviceDesc = grpc.ServiceDesc{ MethodName: "KvFlashbackToVersion", Handler: _Tikv_KvFlashbackToVersion_Handler, }, + { + MethodName: "KvFlush", + Handler: _Tikv_KvFlush_Handler, + }, + { + MethodName: "KvBufferBatchGet", + Handler: _Tikv_KvBufferBatchGet_Handler, + }, { MethodName: "RawGet", Handler: _Tikv_RawGet_Handler, @@ -4928,6 +5058,52 @@ func (m *BatchCommandsRequest_Request_PrepareFlashbackToVersion) MarshalToSizedB } return len(dAtA) - i, nil } +func (m *BatchCommandsRequest_Request_Flush) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BatchCommandsRequest_Request_Flush) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.Flush != nil { + { + size, err := m.Flush.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTikvpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2 + i-- + dAtA[i] = 0xaa + } + return len(dAtA) - i, nil +} +func (m *BatchCommandsRequest_Request_BufferBatchGet) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BatchCommandsRequest_Request_BufferBatchGet) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.BufferBatchGet != nil { + { + size, err := m.BufferBatchGet.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTikvpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2 + i-- + dAtA[i] = 0xb2 + } + return len(dAtA) - i, nil +} func (m *BatchCommandsRequest_Request_Empty) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -4981,20 +5157,20 @@ func (m *BatchCommandsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x18 } if len(m.RequestIds) > 0 { - dAtA35 := make([]byte, len(m.RequestIds)*10) - var j34 int + dAtA37 := make([]byte, len(m.RequestIds)*10) + var j36 int for _, num := range m.RequestIds { for num >= 1<<7 { - dAtA35[j34] = uint8(uint64(num)&0x7f | 0x80) + dAtA37[j36] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j34++ + j36++ } - dAtA35[j34] = uint8(num) - j34++ + dAtA37[j36] = uint8(num) + j36++ } - i -= j34 - copy(dAtA[i:], dAtA35[:j34]) - i = encodeVarintTikvpb(dAtA, i, uint64(j34)) + i -= j36 + copy(dAtA[i:], dAtA37[:j36]) + i = encodeVarintTikvpb(dAtA, i, uint64(j36)) i-- dAtA[i] = 0x12 } @@ -5711,6 +5887,52 @@ func (m *BatchCommandsResponse_Response_PrepareFlashbackToVersion) MarshalToSize } return len(dAtA) - i, nil } +func (m *BatchCommandsResponse_Response_Flush) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BatchCommandsResponse_Response_Flush) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.Flush != nil { + { + size, err := m.Flush.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTikvpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2 + i-- + dAtA[i] = 0xaa + } + return len(dAtA) - i, nil +} +func (m *BatchCommandsResponse_Response_BufferBatchGet) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BatchCommandsResponse_Response_BufferBatchGet) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.BufferBatchGet != nil { + { + size, err := m.BufferBatchGet.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTikvpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2 + i-- + dAtA[i] = 0xb2 + } + return len(dAtA) - i, nil +} func (m *BatchCommandsResponse_Response_Empty) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -6255,6 +6477,30 @@ func (m *BatchCommandsRequest_Request_PrepareFlashbackToVersion) Size() (n int) } return n } +func (m *BatchCommandsRequest_Request_Flush) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Flush != nil { + l = m.Flush.Size() + n += 2 + l + sovTikvpb(uint64(l)) + } + return n +} +func (m *BatchCommandsRequest_Request_BufferBatchGet) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.BufferBatchGet != nil { + l = m.BufferBatchGet.Size() + n += 2 + l + sovTikvpb(uint64(l)) + } + return n +} func (m *BatchCommandsRequest_Request_Empty) Size() (n int) { if m == nil { return 0 @@ -6670,6 +6916,30 @@ func (m *BatchCommandsResponse_Response_PrepareFlashbackToVersion) Size() (n int } return n } +func (m *BatchCommandsResponse_Response_Flush) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Flush != nil { + l = m.Flush.Size() + n += 2 + l + sovTikvpb(uint64(l)) + } + return n +} +func (m *BatchCommandsResponse_Response_BufferBatchGet) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.BufferBatchGet != nil { + l = m.BufferBatchGet.Size() + n += 2 + l + sovTikvpb(uint64(l)) + } + return n +} func (m *BatchCommandsResponse_Response_Empty) Size() (n int) { if m == nil { return 0 @@ -7979,6 +8249,76 @@ func (m *BatchCommandsRequest_Request) Unmarshal(dAtA []byte) error { } m.Cmd = &BatchCommandsRequest_Request_PrepareFlashbackToVersion{v} iNdEx = postIndex + case 37: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Flush", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTikvpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTikvpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &kvrpcpb.FlushRequest{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Cmd = &BatchCommandsRequest_Request_Flush{v} + iNdEx = postIndex + case 38: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BufferBatchGet", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTikvpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTikvpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &kvrpcpb.BufferBatchGetRequest{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Cmd = &BatchCommandsRequest_Request_BufferBatchGet{v} + iNdEx = postIndex case 255: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Empty", wireType) @@ -9295,6 +9635,76 @@ func (m *BatchCommandsResponse_Response) Unmarshal(dAtA []byte) error { } m.Cmd = &BatchCommandsResponse_Response_PrepareFlashbackToVersion{v} iNdEx = postIndex + case 37: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Flush", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTikvpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTikvpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &kvrpcpb.FlushResponse{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Cmd = &BatchCommandsResponse_Response_Flush{v} + iNdEx = postIndex + case 38: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BufferBatchGet", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTikvpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTikvpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &kvrpcpb.BufferBatchGetResponse{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Cmd = &BatchCommandsResponse_Response_BufferBatchGet{v} + iNdEx = postIndex case 255: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Empty", wireType) diff --git a/proto/tikvpb.proto b/proto/tikvpb.proto index f48e9d14a..1fb73a002 100644 --- a/proto/tikvpb.proto +++ b/proto/tikvpb.proto @@ -39,6 +39,8 @@ service Tikv { rpc KvDeleteRange(kvrpcpb.DeleteRangeRequest) returns (kvrpcpb.DeleteRangeResponse) {} rpc KvPrepareFlashbackToVersion(kvrpcpb.PrepareFlashbackToVersionRequest) returns (kvrpcpb.PrepareFlashbackToVersionResponse) {} rpc KvFlashbackToVersion(kvrpcpb.FlashbackToVersionRequest) returns (kvrpcpb.FlashbackToVersionResponse) {} + rpc KvFlush(kvrpcpb.FlushRequest) returns (kvrpcpb.FlushResponse) {} + rpc KvBufferBatchGet(kvrpcpb.BufferBatchGetRequest) returns (kvrpcpb.BufferBatchGetResponse) {} // Raw commands; no transaction support. rpc RawGet(kvrpcpb.RawGetRequest) returns (kvrpcpb.RawGetResponse) {} @@ -178,6 +180,8 @@ message BatchCommandsRequest { kvrpcpb.FlashbackToVersionRequest FlashbackToVersion = 35; kvrpcpb.PrepareFlashbackToVersionRequest PrepareFlashbackToVersion = 36; + kvrpcpb.FlushRequest Flush = 37; + kvrpcpb.BufferBatchGetRequest BufferBatchGet = 38; // For some test cases. BatchCommandsEmptyRequest Empty = 255; @@ -232,6 +236,9 @@ message BatchCommandsResponse { kvrpcpb.FlashbackToVersionResponse FlashbackToVersion = 35; kvrpcpb.PrepareFlashbackToVersionResponse PrepareFlashbackToVersion = 36; + + kvrpcpb.FlushResponse Flush = 37; + kvrpcpb.BufferBatchGetResponse BufferBatchGet = 38; // For some test cases. BatchCommandsEmptyResponse Empty = 255; diff --git a/scripts/proto.lock b/scripts/proto.lock index cdb795484..5e38442aa 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -19799,6 +19799,16 @@ "name": "PrepareFlashbackToVersion", "type": "kvrpcpb.PrepareFlashbackToVersionRequest" }, + { + "id": 37, + "name": "Flush", + "type": "kvrpcpb.FlushRequest" + }, + { + "id": 38, + "name": "BufferBatchGet", + "type": "kvrpcpb.BufferBatchGetRequest" + }, { "id": 255, "name": "Empty", @@ -19991,6 +20001,16 @@ "name": "PrepareFlashbackToVersion", "type": "kvrpcpb.PrepareFlashbackToVersionResponse" }, + { + "id": 37, + "name": "Flush", + "type": "kvrpcpb.FlushResponse" + }, + { + "id": 38, + "name": "BufferBatchGet", + "type": "kvrpcpb.BufferBatchGetResponse" + }, { "id": 255, "name": "Empty", @@ -20144,6 +20164,16 @@ "in_type": "kvrpcpb.FlashbackToVersionRequest", "out_type": "kvrpcpb.FlashbackToVersionResponse" }, + { + "name": "KvFlush", + "in_type": "kvrpcpb.FlushRequest", + "out_type": "kvrpcpb.FlushResponse" + }, + { + "name": "KvBufferBatchGet", + "in_type": "kvrpcpb.BufferBatchGetRequest", + "out_type": "kvrpcpb.BufferBatchGetResponse" + }, { "name": "RawGet", "in_type": "kvrpcpb.RawGetRequest",