diff --git a/pkg/configpb/configpb.pb.gw.go b/pkg/configpb/configpb.pb.gw.go index c0385b0e4..9b4675b32 100644 --- a/pkg/configpb/configpb.pb.gw.go +++ b/pkg/configpb/configpb.pb.gw.go @@ -20,6 +20,7 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/grpclog" + "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" ) @@ -30,6 +31,7 @@ var _ status.Status var _ = runtime.String var _ = utilities.NewDoubleArray var _ = descriptor.ForMessage +var _ = metadata.Join var ( filter_Config_Get_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)} @@ -55,7 +57,10 @@ func local_request_Config_Get_0(ctx context.Context, marshaler runtime.Marshaler var protoReq GetRequest var metadata runtime.ServerMetadata - if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Get_0); err != nil { + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Config_Get_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -122,7 +127,10 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha var protoReq DeleteRequest var metadata runtime.ServerMetadata - if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Delete_0); err != nil { + if err := req.ParseForm(); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Config_Delete_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -134,11 +142,14 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha // RegisterConfigHandlerServer registers the http handlers for service Config to "mux". // UnaryRPC :call ConfigServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterConfigHandlerFromEndpoint instead. func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ConfigServer) error { mux.Handle("GET", pattern_Config_Get_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -146,6 +157,7 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Get_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -159,6 +171,8 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser mux.Handle("POST", pattern_Config_Update_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -166,6 +180,7 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Update_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -179,6 +194,8 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser mux.Handle("DELETE", pattern_Config_Delete_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -186,6 +203,7 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Delete_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) diff --git a/pkg/raft_serverpb/raft_serverpb.pb.go b/pkg/raft_serverpb/raft_serverpb.pb.go index b6baf28d9..6f11236cf 100644 --- a/pkg/raft_serverpb/raft_serverpb.pb.go +++ b/pkg/raft_serverpb/raft_serverpb.pb.go @@ -86,6 +86,7 @@ const ( ExtraMessageType_MsgGcPeerRequest ExtraMessageType = 11 ExtraMessageType_MsgGcPeerResponse ExtraMessageType = 12 ExtraMessageType_MsgFlushMemtable ExtraMessageType = 13 + ExtraMessageType_MsgRefreshBuckets ExtraMessageType = 14 ) var ExtraMessageType_name = map[int32]string{ @@ -103,6 +104,7 @@ var ExtraMessageType_name = map[int32]string{ 11: "MsgGcPeerRequest", 12: "MsgGcPeerResponse", 13: "MsgFlushMemtable", + 14: "MsgRefreshBuckets", } var ExtraMessageType_value = map[string]int32{ @@ -120,6 +122,7 @@ var ExtraMessageType_value = map[string]int32{ "MsgGcPeerRequest": 11, "MsgGcPeerResponse": 12, "MsgFlushMemtable": 13, + "MsgRefreshBuckets": 14, } func (x ExtraMessageType) String() string { @@ -1959,6 +1962,53 @@ func (m *FlushMemtable) GetRegionId() uint64 { return 0 } +type RefreshBuckets struct { + Version uint64 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RefreshBuckets) Reset() { *m = RefreshBuckets{} } +func (m *RefreshBuckets) String() string { return proto.CompactTextString(m) } +func (*RefreshBuckets) ProtoMessage() {} +func (*RefreshBuckets) Descriptor() ([]byte, []int) { + return fileDescriptor_130ebc2f2c37a342, []int{26} +} +func (m *RefreshBuckets) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RefreshBuckets) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RefreshBuckets.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RefreshBuckets) XXX_Merge(src proto.Message) { + xxx_messageInfo_RefreshBuckets.Merge(m, src) +} +func (m *RefreshBuckets) XXX_Size() int { + return m.Size() +} +func (m *RefreshBuckets) XXX_DiscardUnknown() { + xxx_messageInfo_RefreshBuckets.DiscardUnknown(m) +} + +var xxx_messageInfo_RefreshBuckets proto.InternalMessageInfo + +func (m *RefreshBuckets) GetVersion() uint64 { + if m != nil { + return m.Version + } + return 0 +} + type CheckGcPeer struct { // The region ID who triggers the check and wait for report. It should be // the ID of RaftMessage.from. @@ -1978,7 +2028,7 @@ func (m *CheckGcPeer) Reset() { *m = CheckGcPeer{} } func (m *CheckGcPeer) String() string { return proto.CompactTextString(m) } func (*CheckGcPeer) ProtoMessage() {} func (*CheckGcPeer) Descriptor() ([]byte, []int) { - return fileDescriptor_130ebc2f2c37a342, []int{26} + return fileDescriptor_130ebc2f2c37a342, []int{27} } func (m *CheckGcPeer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2049,17 +2099,19 @@ type ExtraMessage struct { CheckGcPeer *CheckGcPeer `protobuf:"bytes,6,opt,name=check_gc_peer,json=checkGcPeer,proto3" json:"check_gc_peer,omitempty"` FlushMemtable *FlushMemtable `protobuf:"bytes,7,opt,name=flush_memtable,json=flushMemtable,proto3" json:"flush_memtable,omitempty"` // Used by `MsgAvailabilityRequest` and `MsgAvailabilityResponse` in v2. - AvailabilityContext *AvailabilityContext `protobuf:"bytes,8,opt,name=availability_context,json=availabilityContext,proto3" json:"availability_context,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + AvailabilityContext *AvailabilityContext `protobuf:"bytes,8,opt,name=availability_context,json=availabilityContext,proto3" json:"availability_context,omitempty"` + // notice the peer to refresh buckets version + RefreshBuckets *RefreshBuckets `protobuf:"bytes,9,opt,name=refresh_buckets,json=refreshBuckets,proto3" json:"refresh_buckets,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ExtraMessage) Reset() { *m = ExtraMessage{} } func (m *ExtraMessage) String() string { return proto.CompactTextString(m) } func (*ExtraMessage) ProtoMessage() {} func (*ExtraMessage) Descriptor() ([]byte, []int) { - return fileDescriptor_130ebc2f2c37a342, []int{27} + return fileDescriptor_130ebc2f2c37a342, []int{28} } func (m *ExtraMessage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2144,6 +2196,13 @@ func (m *ExtraMessage) GetAvailabilityContext() *AvailabilityContext { return nil } +func (m *ExtraMessage) GetRefreshBuckets() *RefreshBuckets { + if m != nil { + return m.RefreshBuckets + } + return nil +} + func init() { proto.RegisterEnum("raft_serverpb.PeerState", PeerState_name, PeerState_value) proto.RegisterEnum("raft_serverpb.ExtraMessageType", ExtraMessageType_name, ExtraMessageType_value) @@ -2173,6 +2232,7 @@ func init() { proto.RegisterType((*RegionSequenceNumberRelation)(nil), "raft_serverpb.RegionSequenceNumberRelation") proto.RegisterType((*AvailabilityContext)(nil), "raft_serverpb.AvailabilityContext") proto.RegisterType((*FlushMemtable)(nil), "raft_serverpb.FlushMemtable") + proto.RegisterType((*RefreshBuckets)(nil), "raft_serverpb.RefreshBuckets") proto.RegisterType((*CheckGcPeer)(nil), "raft_serverpb.CheckGcPeer") proto.RegisterType((*ExtraMessage)(nil), "raft_serverpb.ExtraMessage") } @@ -2180,147 +2240,150 @@ func init() { func init() { proto.RegisterFile("raft_serverpb.proto", fileDescriptor_130ebc2f2c37a342) } var fileDescriptor_130ebc2f2c37a342 = []byte{ - // 2231 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x58, 0xcd, 0x73, 0x13, 0xc9, - 0x15, 0xb7, 0x3e, 0xac, 0x8f, 0xa7, 0x0f, 0x8b, 0x36, 0x06, 0x81, 0x17, 0x30, 0xc3, 0x02, 0x5e, - 0x36, 0x31, 0xb5, 0x5e, 0xb2, 0xd9, 0xda, 0x54, 0x91, 0xd8, 0x06, 0x62, 0x42, 0x44, 0x51, 0x6d, - 0x03, 0x95, 0xd3, 0x54, 0x7b, 0xa6, 0x25, 0x4d, 0x34, 0x5f, 0x3b, 0xdd, 0x12, 0x56, 0x2a, 0xff, - 0x45, 0x2e, 0x1c, 0x73, 0xdc, 0xca, 0x5f, 0x90, 0x3f, 0x20, 0x87, 0x54, 0x72, 0xc9, 0x31, 0xc7, - 0x14, 0xb9, 0xe4, 0x92, 0x43, 0x8e, 0xb9, 0xa5, 0xba, 0x5f, 0x8f, 0x34, 0x23, 0x0b, 0x93, 0xe5, - 0xa4, 0xe9, 0xf7, 0xd1, 0xfd, 0x3e, 0x7e, 0xef, 0xf5, 0x6b, 0xc1, 0x7a, 0xc2, 0xfa, 0xd2, 0x16, - 0x3c, 0x99, 0xf0, 0x24, 0x3e, 0xd9, 0x89, 0x93, 0x48, 0x46, 0xa4, 0x95, 0x23, 0x5e, 0x6d, 0x71, - 0xb5, 0x4e, 0xb9, 0x57, 0x9b, 0x01, 0x97, 0x6c, 0xb6, 0x6a, 0x8d, 0x26, 0x49, 0xec, 0xcc, 0x96, - 0x1d, 0xd7, 0x13, 0x23, 0x7b, 0x2c, 0xd8, 0x80, 0x1b, 0x0a, 0xe1, 0xa1, 0x93, 0x4c, 0x63, 0xe9, - 0x45, 0xe1, 0x4c, 0x6a, 0x2d, 0x19, 0x0b, 0xa9, 0x3f, 0x91, 0x60, 0xfd, 0xb7, 0x04, 0x0d, 0xca, - 0xfa, 0xb2, 0xc7, 0x85, 0x52, 0x25, 0x9b, 0x50, 0x4f, 0xf8, 0xc0, 0x8b, 0x42, 0xdb, 0x73, 0xbb, - 0x85, 0xad, 0xc2, 0x76, 0x99, 0xd6, 0x90, 0xf0, 0xd4, 0x25, 0x9f, 0x41, 0xbd, 0x9f, 0x44, 0x81, - 0x1d, 0x73, 0x9e, 0x74, 0x8b, 0x5b, 0x85, 0xed, 0xc6, 0x6e, 0x73, 0xc7, 0x18, 0xf5, 0x82, 0xf3, - 0x84, 0xd6, 0x14, 0x5b, 0x7d, 0x91, 0xdb, 0x50, 0x95, 0x11, 0x0a, 0x96, 0x96, 0x08, 0x56, 0x64, - 0xa4, 0xc5, 0xee, 0x41, 0x35, 0xc0, 0x93, 0xbb, 0x65, 0x2d, 0xd6, 0xd9, 0x49, 0x7d, 0x36, 0x16, - 0xd1, 0x54, 0x80, 0x7c, 0x05, 0x4d, 0x63, 0x1a, 0x8f, 0x23, 0x67, 0xd8, 0x5d, 0xd5, 0x0a, 0xeb, - 0xe9, 0xbe, 0x54, 0xf3, 0x1e, 0x2b, 0x16, 0x6d, 0x24, 0xf3, 0x05, 0xb9, 0x09, 0x4d, 0x4f, 0xd8, - 0x32, 0x0a, 0x4e, 0x84, 0x8c, 0x42, 0xde, 0xad, 0x6c, 0x15, 0xb6, 0x6b, 0xb4, 0xe1, 0x89, 0xe3, - 0x94, 0xa4, 0xbc, 0x16, 0x92, 0x25, 0xd2, 0x1e, 0xf1, 0x69, 0xb7, 0xba, 0x55, 0xd8, 0x6e, 0xd2, - 0x9a, 0x26, 0x3c, 0xe3, 0x53, 0x72, 0x19, 0xaa, 0x3c, 0x74, 0x35, 0xab, 0xa6, 0x59, 0x15, 0x1e, - 0xba, 0x8a, 0xf1, 0x05, 0x34, 0x03, 0x9e, 0x0c, 0xb8, 0x2d, 0x59, 0x32, 0xe0, 0xb2, 0x5b, 0xd7, - 0x06, 0xb5, 0xf3, 0x06, 0xd1, 0x86, 0x96, 0x39, 0xd6, 0x22, 0xe4, 0x6b, 0xa8, 0xf3, 0x53, 0x99, - 0x30, 0x3b, 0x10, 0x83, 0x2e, 0x68, 0xf9, 0xcd, 0x9d, 0x3c, 0x12, 0x1e, 0x2b, 0x7e, 0xea, 0x7c, - 0x4d, 0x4b, 0xf7, 0xc4, 0x40, 0x99, 0x88, 0x9a, 0x8e, 0x3c, 0xed, 0x36, 0xd0, 0x44, 0x4d, 0x38, - 0x90, 0xa7, 0xe4, 0x01, 0xc0, 0x3c, 0xfd, 0xdd, 0xe6, 0x56, 0x61, 0xbb, 0xbd, 0xbb, 0xb1, 0x93, - 0x41, 0xc4, 0x23, 0x4f, 0x8c, 0x5e, 0xea, 0x1d, 0xeb, 0x6e, 0xfa, 0x69, 0x3d, 0x04, 0xa2, 0x52, - 0x7f, 0x9c, 0x8c, 0x43, 0x87, 0x49, 0xee, 0x1e, 0x49, 0x26, 0x39, 0xb9, 0x08, 0xab, 0x5e, 0xe8, - 0xf2, 0x53, 0x93, 0x7d, 0x5c, 0x10, 0x02, 0x65, 0xc9, 0x93, 0x40, 0x67, 0xbd, 0x4c, 0xf5, 0xb7, - 0xf5, 0x02, 0xda, 0x47, 0x21, 0x8b, 0xc5, 0x30, 0x92, 0x07, 0x4f, 0x9e, 0x78, 0x3e, 0x27, 0x6d, - 0x28, 0x3a, 0x7d, 0xad, 0x58, 0xa7, 0x45, 0xa7, 0xaf, 0xb4, 0x84, 0xf7, 0x1b, 0x9e, 0x6a, 0xa9, - 0x6f, 0x72, 0x15, 0x6a, 0xce, 0x90, 0x3b, 0x23, 0x31, 0x0e, 0x34, 0x34, 0x5a, 0x74, 0xb6, 0xb6, - 0xfe, 0x50, 0x84, 0x66, 0xba, 0x65, 0x8f, 0x4b, 0x46, 0xbe, 0x86, 0x9a, 0xd3, 0xb7, 0xfb, 0x9e, - 0xcf, 0x45, 0xb7, 0xb0, 0x55, 0xda, 0x6e, 0xec, 0x5e, 0x5b, 0x08, 0x57, 0xde, 0x02, 0x5a, 0x75, - 0xfa, 0xea, 0x57, 0x90, 0x1b, 0xd0, 0xe8, 0x47, 0x89, 0x7d, 0xc2, 0x7c, 0x16, 0x3a, 0x68, 0x41, - 0x8d, 0x42, 0x3f, 0x4a, 0xf6, 0x91, 0x92, 0x0a, 0xbc, 0xf1, 0x64, 0xc8, 0x85, 0xd0, 0xa6, 0xa0, - 0xc0, 0x6b, 0xa4, 0xa8, 0x40, 0x68, 0x0c, 0x68, 0x64, 0x96, 0x29, 0x2e, 0xc8, 0x2e, 0x6c, 0x0c, - 0x78, 0xc8, 0x13, 0x26, 0xb9, 0xed, 0x8e, 0x13, 0xa6, 0xca, 0xcb, 0x16, 0xdc, 0xd1, 0x70, 0x2c, - 0xd3, 0xf5, 0x94, 0xf9, 0xc8, 0xf0, 0x8e, 0xb8, 0x43, 0xb6, 0xa1, 0x23, 0xd9, 0x89, 0xcf, 0xa5, - 0x2d, 0x42, 0x16, 0xdb, 0x31, 0x93, 0x43, 0x8d, 0xc2, 0x3a, 0x6d, 0x23, 0x5d, 0x39, 0xf1, 0x82, - 0xc9, 0x21, 0xb9, 0x07, 0x17, 0x9c, 0x28, 0x08, 0x3c, 0x69, 0xeb, 0xb0, 0xdb, 0x43, 0x2f, 0x94, - 0x1a, 0x90, 0x65, 0xba, 0x86, 0x8c, 0xa7, 0x8a, 0x7e, 0xe8, 0x85, 0xd2, 0xfa, 0x15, 0xb4, 0x66, - 0xce, 0x0f, 0xc7, 0xe1, 0x88, 0x3c, 0x98, 0x17, 0x53, 0x41, 0x43, 0xeb, 0xea, 0x42, 0xac, 0x32, - 0x85, 0x3e, 0x2f, 0x2b, 0x02, 0x65, 0x97, 0x49, 0xa6, 0x23, 0xd4, 0xa4, 0xfa, 0xdb, 0xaa, 0x40, - 0xf9, 0x51, 0x14, 0x72, 0xeb, 0x6d, 0x01, 0x2e, 0x1d, 0xcf, 0x2c, 0x54, 0x27, 0xa9, 0xe0, 0xea, - 0xcc, 0x6c, 0x42, 0x5d, 0xa5, 0xc5, 0xd6, 0xf9, 0x35, 0x8d, 0x42, 0x11, 0x8e, 0x54, 0x8e, 0x53, - 0x66, 0xc8, 0x02, 0x0c, 0x7d, 0x1d, 0x99, 0xcf, 0x59, 0xc0, 0xc9, 0x35, 0x80, 0x21, 0x67, 0xae, - 0xed, 0x28, 0xa3, 0x75, 0xdc, 0x9b, 0xb4, 0xae, 0x28, 0xe8, 0xc5, 0x6d, 0x68, 0xcb, 0x84, 0x79, - 0xbe, 0x17, 0x0e, 0x8c, 0x48, 0x59, 0x8b, 0xb4, 0x52, 0xaa, 0x16, 0xb3, 0xfa, 0xb0, 0x91, 0xb7, - 0xec, 0x45, 0xc2, 0x27, 0x1e, 0x7f, 0x43, 0x7e, 0x02, 0xab, 0xaa, 0x00, 0x53, 0xbc, 0xdc, 0x5e, - 0x88, 0xc1, 0x72, 0x77, 0x28, 0xea, 0x90, 0x0e, 0x94, 0x78, 0xe8, 0x1a, 0xb4, 0xa8, 0x4f, 0xeb, - 0xf7, 0x05, 0xb8, 0x7c, 0x56, 0x07, 0x4d, 0xfd, 0xf8, 0x18, 0xa4, 0x41, 0x2f, 0xcd, 0x83, 0xae, - 0x8a, 0xc7, 0x9b, 0x18, 0x67, 0x8b, 0xde, 0x84, 0xdc, 0x85, 0x92, 0xea, 0x39, 0xd8, 0xe6, 0x36, - 0x76, 0x72, 0xdd, 0xfc, 0x11, 0x93, 0xec, 0x19, 0x9f, 0x52, 0x25, 0x61, 0x0d, 0x80, 0xe4, 0x2d, - 0x3c, 0xe4, 0xcc, 0xfd, 0x48, 0x34, 0x6c, 0x42, 0x7d, 0x2c, 0xb8, 0xed, 0x30, 0x67, 0x98, 0x16, - 0x4d, 0x6d, 0x2c, 0xf8, 0x81, 0x5a, 0x5b, 0xf7, 0xe1, 0x42, 0xfe, 0xa0, 0xc7, 0xa1, 0x9b, 0xab, - 0x67, 0x13, 0x83, 0x59, 0x3d, 0xff, 0xae, 0xb8, 0x98, 0x25, 0xca, 0xbf, 0x1d, 0x73, 0x21, 0xc9, - 0x8f, 0xa1, 0xac, 0x52, 0x6e, 0x4c, 0xbb, 0x79, 0x6e, 0x92, 0x94, 0x3b, 0x87, 0x2b, 0x54, 0x2b, - 0x90, 0x9f, 0x41, 0x35, 0xc6, 0x4c, 0x9b, 0x1b, 0xe8, 0xd3, 0x73, 0x75, 0x0d, 0x2a, 0x0e, 0x57, - 0x68, 0xaa, 0x46, 0x1e, 0xc2, 0xea, 0x1c, 0x7a, 0x8d, 0xdd, 0x3b, 0x1f, 0x04, 0x88, 0x4e, 0xf6, - 0xe1, 0x0a, 0x45, 0x35, 0xf2, 0x00, 0x31, 0x82, 0xf7, 0xd5, 0xd6, 0xb9, 0xda, 0x8f, 0x43, 0x65, - 0xb8, 0x12, 0xdf, 0xaf, 0x43, 0x35, 0x66, 0x53, 0x3f, 0x62, 0xae, 0xf5, 0x00, 0x36, 0xf6, 0x1c, - 0x87, 0xc7, 0xaa, 0xe5, 0x66, 0x8e, 0x11, 0x79, 0xc8, 0x28, 0xf8, 0x66, 0x20, 0x63, 0x1d, 0x2f, - 0x96, 0x22, 0xe5, 0x22, 0x8e, 0x42, 0xc1, 0xc9, 0x37, 0xb0, 0x9a, 0x76, 0xc8, 0x65, 0x01, 0x59, - 0x7a, 0x16, 0x45, 0x15, 0x6b, 0x17, 0x6a, 0xcf, 0xf8, 0xf4, 0x15, 0xf3, 0xc7, 0x5c, 0x81, 0x5f, - 0x01, 0xae, 0xa0, 0x11, 0xa8, 0x3e, 0x55, 0x0b, 0x9c, 0x28, 0x96, 0x69, 0x0e, 0xb8, 0xb0, 0xfe, - 0x52, 0x84, 0x8e, 0x02, 0x4f, 0xba, 0xa1, 0x02, 0x23, 0xb9, 0x03, 0x15, 0xbc, 0x74, 0x8d, 0x15, - 0x8b, 0xd7, 0xa0, 0xe1, 0xe6, 0x6b, 0xa6, 0xb8, 0x50, 0x33, 0x9f, 0xcf, 0xca, 0x42, 0x95, 0xee, - 0xe5, 0x05, 0x47, 0x52, 0x43, 0x4d, 0xbd, 0x74, 0xa1, 0x3a, 0xe1, 0x89, 0x50, 0x47, 0x62, 0x87, - 0x4e, 0x97, 0xe4, 0x3e, 0x94, 0xd5, 0xe1, 0xa6, 0x74, 0x36, 0xdf, 0x73, 0x63, 0xe8, 0xba, 0xd7, - 0x82, 0xe4, 0x47, 0xb0, 0x96, 0xf0, 0x20, 0x9a, 0x70, 0xd7, 0x4e, 0xb8, 0x13, 0x25, 0xae, 0xe8, - 0x56, 0xb4, 0x09, 0xf9, 0xa9, 0xa5, 0x6d, 0x84, 0x28, 0xca, 0x90, 0x7d, 0x68, 0xeb, 0xcb, 0x7d, - 0xae, 0x55, 0xd5, 0x5a, 0x8b, 0x27, 0xf6, 0xb4, 0x10, 0x6a, 0xd1, 0x56, 0x90, 0x59, 0x09, 0xeb, - 0xb7, 0x00, 0x47, 0x32, 0x4a, 0xf8, 0x53, 0x97, 0x87, 0x52, 0xf5, 0x46, 0xc7, 0x1f, 0x0b, 0xc9, - 0x93, 0xf9, 0xfc, 0x55, 0x37, 0x94, 0xa7, 0x2e, 0xb9, 0x02, 0x35, 0xa1, 0x84, 0x15, 0x13, 0x63, - 0x57, 0x15, 0xa8, 0x4c, 0x1e, 0x40, 0x83, 0xc5, 0x9e, 0x9d, 0x46, 0xa4, 0xa4, 0x67, 0x80, 0xf5, - 0x9d, 0x74, 0x48, 0xdc, 0x7b, 0xf1, 0xf4, 0x15, 0xb2, 0x28, 0xb0, 0xd8, 0x33, 0xdf, 0xd6, 0x67, - 0x70, 0x41, 0x9f, 0xae, 0xac, 0x99, 0xf0, 0x64, 0x36, 0x01, 0x08, 0xfe, 0x6d, 0x18, 0xa5, 0x13, - 0x80, 0x5e, 0x58, 0x27, 0xd0, 0x56, 0x49, 0xff, 0x65, 0xe4, 0x30, 0x1f, 0xe5, 0xbe, 0x00, 0x18, - 0xb2, 0xc4, 0xb5, 0x85, 0x5a, 0x99, 0xb4, 0x93, 0xd9, 0xfc, 0x76, 0xc8, 0x12, 0x9c, 0x28, 0x68, - 0x7d, 0x98, 0x7e, 0x2a, 0xff, 0x7c, 0x26, 0xcc, 0xed, 0x66, 0x5c, 0xa8, 0x2b, 0x8a, 0xbe, 0xd6, - 0xac, 0xff, 0x14, 0xf0, 0x90, 0xbd, 0x38, 0xf6, 0xa7, 0xa8, 0x71, 0x0b, 0x5a, 0x2c, 0x8e, 0x7d, - 0x8f, 0xbb, 0x76, 0x76, 0x2c, 0x69, 0x1a, 0xa2, 0xd6, 0x53, 0xd7, 0xa6, 0xde, 0x36, 0x7b, 0x77, - 0xea, 0x10, 0x94, 0xe9, 0x9a, 0x62, 0x1c, 0xcc, 0xaf, 0x4e, 0x35, 0x0e, 0xe6, 0xc4, 0x10, 0x3b, - 0x8d, 0xcc, 0xed, 0xaa, 0x46, 0x03, 0x23, 0xa2, 0x67, 0x1e, 0xbc, 0xd9, 0x01, 0x49, 0xc7, 0x3c, - 0x09, 0xc8, 0x2f, 0x60, 0x4d, 0xa6, 0x53, 0x93, 0x71, 0xbf, 0xb8, 0xb4, 0x91, 0x9d, 0x9d, 0xaf, - 0x68, 0x5b, 0xe6, 0xd6, 0x96, 0x07, 0xa0, 0xf1, 0x81, 0xee, 0x6e, 0x42, 0x3d, 0xf0, 0xc2, 0x9c, - 0xab, 0xb5, 0xc0, 0x0b, 0xd1, 0xae, 0x3b, 0x50, 0x31, 0xa3, 0x66, 0x71, 0x79, 0x8d, 0x21, 0x97, - 0x5c, 0x82, 0x0a, 0x1a, 0x6b, 0x62, 0x60, 0x56, 0xd6, 0xbf, 0x8b, 0xd0, 0xcc, 0x62, 0x51, 0x0d, - 0x26, 0x22, 0x1a, 0x27, 0x0e, 0xb7, 0x17, 0x87, 0xfe, 0x36, 0xd2, 0x69, 0x3a, 0xfa, 0x7f, 0x05, - 0x4d, 0x23, 0x89, 0xc3, 0x77, 0xf1, 0x9c, 0xe1, 0x1b, 0x05, 0x71, 0xf8, 0xbe, 0x3f, 0xd3, 0x53, - 0x6f, 0x01, 0x61, 0x2a, 0x3b, 0x5f, 0x56, 0x46, 0x41, 0x7d, 0x0b, 0x9c, 0x95, 0x94, 0x17, 0x19, - 0x93, 0x30, 0x45, 0x6d, 0xa4, 0x67, 0x4d, 0x32, 0x92, 0x1f, 0x7e, 0x0f, 0xa0, 0xe0, 0xcc, 0x24, - 0xa3, 0x87, 0x26, 0x2d, 0xab, 0x74, 0xa3, 0x80, 0x26, 0xcd, 0x26, 0xe2, 0x6a, 0x76, 0x22, 0xbe, - 0x39, 0xf3, 0x0c, 0x99, 0x35, 0xc4, 0x11, 0xd2, 0x10, 0xce, 0x7f, 0x52, 0x8d, 0x52, 0x9b, 0x91, - 0xa9, 0x9a, 0x1d, 0x3d, 0x56, 0x9a, 0x82, 0x69, 0xef, 0x76, 0x17, 0x10, 0xa3, 0x8e, 0x44, 0xa0, - 0xa0, 0x58, 0xa6, 0xb1, 0x16, 0xcf, 0x6d, 0xac, 0xdf, 0x00, 0xbe, 0x34, 0x0c, 0x1e, 0xf1, 0x72, - 0xbb, 0xb2, 0xac, 0x13, 0xe1, 0xf6, 0x10, 0xcc, 0x51, 0x77, 0x53, 0x85, 0x44, 0x0f, 0xa8, 0xb9, - 0x9a, 0x40, 0x1a, 0x62, 0x6f, 0x49, 0x8b, 0x5c, 0xfd, 0xa8, 0x16, 0x59, 0xf9, 0xde, 0x2d, 0xf2, - 0x5f, 0x05, 0xf8, 0x04, 0x9d, 0x3d, 0x52, 0xd3, 0x43, 0xe8, 0xf0, 0xe7, 0xe3, 0xe0, 0x84, 0x27, - 0x94, 0xfb, 0x7a, 0xc4, 0x3e, 0xff, 0xd1, 0x7a, 0x17, 0xd6, 0x84, 0x51, 0xb3, 0x43, 0xad, 0x67, - 0xfa, 0x4e, 0x5b, 0xe4, 0x76, 0x23, 0x0f, 0x55, 0x07, 0x8d, 0xfd, 0x69, 0x2e, 0x80, 0xd7, 0x96, - 0x14, 0xf4, 0xbc, 0x3b, 0xa9, 0x5e, 0x3a, 0xeb, 0x54, 0xfb, 0xb3, 0xf7, 0x29, 0x6e, 0x80, 0x03, - 0xc2, 0x8d, 0xc5, 0x0d, 0x16, 0xf0, 0x90, 0xbe, 0x55, 0xb1, 0x19, 0xfc, 0xb1, 0x00, 0xeb, 0x7b, - 0x13, 0xe6, 0xf9, 0xec, 0xc4, 0xf3, 0x3d, 0x39, 0x3d, 0x88, 0x42, 0xc9, 0x4f, 0x25, 0xf9, 0x14, - 0xda, 0xfa, 0xe5, 0xbd, 0xe8, 0x66, 0x53, 0x51, 0x67, 0x15, 0xf1, 0x53, 0xb8, 0x90, 0x95, 0xfa, - 0x60, 0xa5, 0xae, 0xcd, 0xb5, 0xb1, 0x34, 0xb6, 0xa0, 0x31, 0x0e, 0x19, 0x9e, 0xef, 0x73, 0xf3, - 0x26, 0xca, 0x92, 0xd4, 0xa5, 0x2b, 0x13, 0x2f, 0x08, 0x38, 0x56, 0x65, 0x8d, 0xa6, 0x4b, 0xeb, - 0x07, 0xd0, 0x7a, 0xe2, 0x8f, 0xc5, 0xb0, 0xc7, 0x03, 0x8d, 0x9b, 0x73, 0xb3, 0x62, 0xfd, 0xb5, - 0x00, 0x8d, 0x03, 0x35, 0x26, 0xfe, 0xdc, 0xd1, 0x7f, 0x04, 0xfc, 0x7f, 0x0e, 0xde, 0x81, 0x35, - 0x3d, 0x5b, 0x66, 0xc4, 0x30, 0x97, 0x2d, 0x4d, 0x9e, 0xc9, 0xed, 0x01, 0xc9, 0xc9, 0x61, 0x24, - 0x4a, 0xef, 0x8f, 0x44, 0x27, 0xa3, 0x8f, 0xa1, 0xf8, 0x1c, 0x00, 0xb7, 0xd0, 0xff, 0x61, 0x94, - 0x97, 0xfc, 0x87, 0x51, 0xd7, 0x7c, 0xf5, 0x69, 0x7d, 0x57, 0x82, 0x66, 0xf6, 0xdd, 0x4e, 0xbe, - 0x84, 0xb2, 0x9c, 0xc6, 0x69, 0x8d, 0xdf, 0x38, 0xe7, 0x89, 0x7f, 0x3c, 0x8d, 0x39, 0xd5, 0xc2, - 0xf3, 0x3e, 0x53, 0xcc, 0xf6, 0x99, 0x1f, 0x42, 0x63, 0x6e, 0xc8, 0xf2, 0x06, 0x0a, 0x33, 0x4b, - 0xf4, 0x0c, 0xf9, 0x86, 0x79, 0xd2, 0xd6, 0x73, 0x14, 0xa6, 0xa8, 0xa6, 0x08, 0x7a, 0x48, 0xbb, - 0x0d, 0xed, 0x7e, 0x94, 0x38, 0xdc, 0x9f, 0xda, 0xec, 0x0d, 0x1b, 0xf1, 0x50, 0x37, 0xcd, 0x1a, - 0x6d, 0x19, 0xea, 0x9e, 0x26, 0x92, 0x87, 0x80, 0xf1, 0xb4, 0x07, 0x0e, 0xba, 0x5f, 0x59, 0xfa, - 0x80, 0xc8, 0xe4, 0x8f, 0xa2, 0x8d, 0x26, 0x99, 0x07, 0xd0, 0xee, 0x2b, 0x28, 0xd8, 0x81, 0xc1, - 0x82, 0xee, 0x9c, 0x8d, 0xdd, 0x4f, 0x16, 0x36, 0xc8, 0xe1, 0x85, 0xb6, 0xfa, 0x39, 0xf8, 0xbc, - 0x84, 0x8b, 0x2c, 0x53, 0x09, 0xb6, 0x83, 0xa5, 0xa0, 0xfb, 0x6c, 0x63, 0xd7, 0x5a, 0x1c, 0x72, - 0xcf, 0x16, 0x0d, 0x5d, 0x67, 0x67, 0x89, 0xf7, 0x28, 0xd4, 0x67, 0x2d, 0x96, 0x00, 0x54, 0x9e, - 0x47, 0x49, 0xc0, 0xfc, 0xce, 0x0a, 0x69, 0x42, 0x4d, 0x17, 0xb6, 0x17, 0x0e, 0x3a, 0x05, 0xd2, - 0x82, 0xfa, 0xec, 0xef, 0xa1, 0x4e, 0x91, 0x34, 0xa0, 0xaa, 0x3a, 0x94, 0xe2, 0x95, 0xc8, 0x1a, - 0x34, 0x5e, 0xce, 0x4b, 0xa2, 0x53, 0xbe, 0xf7, 0xb6, 0x04, 0x9d, 0xc5, 0x9c, 0x92, 0x75, 0x58, - 0xeb, 0x89, 0x01, 0x42, 0xea, 0x35, 0x1b, 0xf1, 0x97, 0x71, 0x67, 0x85, 0x74, 0xe1, 0x62, 0x4f, - 0x0c, 0x5e, 0xb3, 0x50, 0xd2, 0xc8, 0xf7, 0x4f, 0x98, 0x33, 0xd2, 0x8d, 0xaf, 0x53, 0x20, 0x1b, - 0x70, 0xa1, 0x27, 0x06, 0x3a, 0xa4, 0x47, 0x92, 0xf9, 0xfa, 0x36, 0xec, 0x14, 0xc9, 0x35, 0xb8, - 0x72, 0x86, 0x9c, 0x0e, 0xfe, 0x9d, 0x12, 0xb9, 0x0c, 0xeb, 0x3d, 0x31, 0x38, 0xf4, 0x4e, 0x78, - 0x12, 0xaa, 0x66, 0x82, 0xaf, 0xab, 0x4e, 0xd9, 0x1c, 0x94, 0x61, 0x18, 0x95, 0x55, 0x72, 0x17, - 0x6e, 0x69, 0xbb, 0x7e, 0xcd, 0x1d, 0x89, 0x03, 0xdd, 0xe0, 0x80, 0x8d, 0x05, 0x77, 0xf7, 0xa7, - 0x3d, 0x1e, 0x44, 0xc9, 0x54, 0xff, 0x39, 0xd4, 0xa9, 0x90, 0xab, 0x70, 0xa9, 0x27, 0x06, 0xd9, - 0xc0, 0xa6, 0xdb, 0x57, 0xc9, 0x26, 0x5c, 0x3e, 0xc3, 0x33, 0x27, 0xd4, 0x88, 0x05, 0xd7, 0x7b, - 0x62, 0xf0, 0x2a, 0x92, 0xca, 0xd4, 0xd8, 0xf7, 0xf4, 0xb0, 0xa3, 0x6f, 0x91, 0x74, 0x83, 0x3a, - 0xb9, 0x05, 0x37, 0xde, 0x2b, 0x63, 0x36, 0x02, 0x72, 0x11, 0x3a, 0x3d, 0x31, 0x30, 0x08, 0x33, - 0xaa, 0x0d, 0x13, 0xa9, 0x94, 0x6a, 0x84, 0x9b, 0x46, 0x38, 0x07, 0xa9, 0x4e, 0x6b, 0xff, 0xce, - 0xdf, 0xbf, 0xab, 0x15, 0xfe, 0xfc, 0xee, 0x7a, 0xe1, 0x6f, 0xef, 0xae, 0x17, 0xfe, 0xf1, 0xee, - 0x7a, 0xe1, 0xed, 0x3f, 0xaf, 0xaf, 0x40, 0x27, 0x4a, 0x06, 0x3b, 0xd2, 0x1b, 0x4d, 0x76, 0x46, - 0x13, 0xfd, 0x3f, 0xe8, 0x49, 0x45, 0xff, 0x7c, 0xf9, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x95, - 0x19, 0xb8, 0x79, 0x97, 0x15, 0x00, 0x00, + // 2280 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x58, 0xcd, 0x73, 0x1b, 0x49, + 0x15, 0xf7, 0x48, 0xb2, 0x3e, 0x9e, 0x3e, 0xac, 0xb4, 0xe3, 0x8d, 0x12, 0x6f, 0x12, 0x67, 0xb2, + 0x49, 0xbc, 0x59, 0x70, 0x6a, 0xbd, 0x61, 0xd9, 0x5a, 0xaa, 0x02, 0xb6, 0x93, 0xe0, 0x10, 0x94, + 0x4a, 0xb5, 0x9d, 0xa4, 0x38, 0x4d, 0xb5, 0x66, 0x5a, 0xd2, 0xa0, 0xf9, 0xda, 0xee, 0x96, 0x12, + 0x51, 0xfc, 0x17, 0x5c, 0xf6, 0xc8, 0x91, 0xe2, 0xc2, 0x95, 0x3f, 0x80, 0x03, 0x05, 0x17, 0x8e, + 0x1c, 0xa9, 0x70, 0xe1, 0x42, 0x15, 0x1c, 0xb9, 0x51, 0xfd, 0x31, 0xa3, 0x19, 0x59, 0x71, 0x20, + 0xa7, 0xe9, 0x7e, 0x1f, 0xdd, 0xaf, 0xdf, 0xfb, 0xbd, 0xd7, 0xaf, 0x07, 0x36, 0x19, 0x19, 0x0a, + 0x87, 0x53, 0x36, 0xa3, 0x2c, 0x19, 0xec, 0x25, 0x2c, 0x16, 0x31, 0x6a, 0x17, 0x88, 0x57, 0xda, + 0x54, 0xce, 0x53, 0xee, 0x95, 0x56, 0x48, 0x05, 0xc9, 0x66, 0xed, 0xc9, 0x8c, 0x25, 0x6e, 0x36, + 0xed, 0x7a, 0x3e, 0x9f, 0x38, 0x53, 0x4e, 0x46, 0xd4, 0x50, 0x10, 0x8d, 0x5c, 0x36, 0x4f, 0x84, + 0x1f, 0x47, 0x99, 0xd4, 0x06, 0x9b, 0x72, 0xa1, 0x86, 0x9a, 0x60, 0xff, 0xa7, 0x0c, 0x4d, 0x4c, + 0x86, 0xa2, 0x4f, 0xb9, 0x54, 0x45, 0xdb, 0xd0, 0x60, 0x74, 0xe4, 0xc7, 0x91, 0xe3, 0x7b, 0x3d, + 0x6b, 0xc7, 0xda, 0xad, 0xe0, 0xba, 0x26, 0x3c, 0xf1, 0xd0, 0xa7, 0xd0, 0x18, 0xb2, 0x38, 0x74, + 0x12, 0x4a, 0x59, 0xaf, 0xb4, 0x63, 0xed, 0x36, 0xf7, 0x5b, 0x7b, 0xc6, 0xa8, 0xe7, 0x94, 0x32, + 0x5c, 0x97, 0x6c, 0x39, 0x42, 0xb7, 0xa0, 0x26, 0x62, 0x2d, 0x58, 0x5e, 0x21, 0x58, 0x15, 0xb1, + 0x12, 0xbb, 0x0b, 0xb5, 0x50, 0xef, 0xdc, 0xab, 0x28, 0xb1, 0xee, 0x5e, 0x7a, 0x66, 0x63, 0x11, + 0x4e, 0x05, 0xd0, 0x97, 0xd0, 0x32, 0xa6, 0xd1, 0x24, 0x76, 0xc7, 0xbd, 0x75, 0xa5, 0xb0, 0x99, + 0xae, 0x8b, 0x15, 0xef, 0x91, 0x64, 0xe1, 0x26, 0x5b, 0x4c, 0xd0, 0x0d, 0x68, 0xf9, 0xdc, 0x11, + 0x71, 0x38, 0xe0, 0x22, 0x8e, 0x68, 0xaf, 0xba, 0x63, 0xed, 0xd6, 0x71, 0xd3, 0xe7, 0xa7, 0x29, + 0x49, 0x9e, 0x9a, 0x0b, 0xc2, 0x84, 0x33, 0xa1, 0xf3, 0x5e, 0x6d, 0xc7, 0xda, 0x6d, 0xe1, 0xba, + 0x22, 0x3c, 0xa5, 0x73, 0x74, 0x09, 0x6a, 0x34, 0xf2, 0x14, 0xab, 0xae, 0x58, 0x55, 0x1a, 0x79, + 0x92, 0xf1, 0x39, 0xb4, 0x42, 0xca, 0x46, 0xd4, 0x11, 0x84, 0x8d, 0xa8, 0xe8, 0x35, 0x94, 0x41, + 0x9d, 0xa2, 0x41, 0xb8, 0xa9, 0x64, 0x4e, 0x95, 0x08, 0xfa, 0x0a, 0x1a, 0xf4, 0x8d, 0x60, 0xc4, + 0x09, 0xf9, 0xa8, 0x07, 0x4a, 0x7e, 0x7b, 0xaf, 0x88, 0x84, 0x47, 0x92, 0x9f, 0x1e, 0xbe, 0xae, + 0xa4, 0xfb, 0x7c, 0x24, 0x4d, 0xd4, 0x9a, 0xae, 0x78, 0xd3, 0x6b, 0x6a, 0x13, 0x15, 0xe1, 0x48, + 0xbc, 0x41, 0xf7, 0x01, 0x16, 0xe1, 0xef, 0xb5, 0x76, 0xac, 0xdd, 0xce, 0xfe, 0xd6, 0x5e, 0x0e, + 0x11, 0x0f, 0x7d, 0x3e, 0x79, 0xa1, 0x56, 0x6c, 0x78, 0xe9, 0xd0, 0x7e, 0x00, 0x48, 0x86, 0xfe, + 0x94, 0x4d, 0x23, 0x97, 0x08, 0xea, 0x9d, 0x08, 0x22, 0x28, 0xba, 0x08, 0xeb, 0x7e, 0xe4, 0xd1, + 0x37, 0x26, 0xfa, 0x7a, 0x82, 0x10, 0x54, 0x04, 0x65, 0xa1, 0x8a, 0x7a, 0x05, 0xab, 0xb1, 0xfd, + 0x1c, 0x3a, 0x27, 0x11, 0x49, 0xf8, 0x38, 0x16, 0x47, 0x8f, 0x1f, 0xfb, 0x01, 0x45, 0x1d, 0x28, + 0xb9, 0x43, 0xa5, 0xd8, 0xc0, 0x25, 0x77, 0x28, 0xb5, 0xb8, 0xff, 0x0b, 0x9a, 0x6a, 0xc9, 0x31, + 0xba, 0x02, 0x75, 0x77, 0x4c, 0xdd, 0x09, 0x9f, 0x86, 0x0a, 0x1a, 0x6d, 0x9c, 0xcd, 0xed, 0xdf, + 0x96, 0xa0, 0x95, 0x2e, 0xd9, 0xa7, 0x82, 0xa0, 0xaf, 0xa0, 0xee, 0x0e, 0x9d, 0xa1, 0x1f, 0x50, + 0xde, 0xb3, 0x76, 0xca, 0xbb, 0xcd, 0xfd, 0xab, 0x4b, 0xee, 0x2a, 0x5a, 0x80, 0x6b, 0xee, 0x50, + 0x7e, 0x39, 0xba, 0x0e, 0xcd, 0x61, 0xcc, 0x9c, 0x01, 0x09, 0x48, 0xe4, 0x6a, 0x0b, 0xea, 0x18, + 0x86, 0x31, 0x3b, 0xd4, 0x94, 0x54, 0xe0, 0xb5, 0x2f, 0x22, 0xca, 0xb9, 0x32, 0x45, 0x0b, 0xbc, + 0xd2, 0x14, 0xe9, 0x08, 0x85, 0x01, 0x85, 0xcc, 0x0a, 0xd6, 0x13, 0xb4, 0x0f, 0x5b, 0x23, 0x1a, + 0x51, 0x46, 0x04, 0x75, 0xbc, 0x29, 0x23, 0x32, 0xbd, 0x1c, 0x4e, 0x5d, 0x05, 0xc7, 0x0a, 0xde, + 0x4c, 0x99, 0x0f, 0x0d, 0xef, 0x84, 0xba, 0x68, 0x17, 0xba, 0x82, 0x0c, 0x02, 0x2a, 0x1c, 0x1e, + 0x91, 0xc4, 0x49, 0x88, 0x18, 0x2b, 0x14, 0x36, 0x70, 0x47, 0xd3, 0xe5, 0x21, 0x9e, 0x13, 0x31, + 0x46, 0x77, 0xe1, 0x82, 0x1b, 0x87, 0xa1, 0x2f, 0x1c, 0xe5, 0x76, 0x67, 0xec, 0x47, 0x42, 0x01, + 0xb2, 0x82, 0x37, 0x34, 0xe3, 0x89, 0xa4, 0x1f, 0xfb, 0x91, 0xb0, 0x7f, 0x06, 0xed, 0xec, 0xf0, + 0xe3, 0x69, 0x34, 0x41, 0xf7, 0x17, 0xc9, 0x64, 0x29, 0x68, 0x5d, 0x59, 0xf2, 0x55, 0x2e, 0xd1, + 0x17, 0x69, 0x85, 0xa0, 0xe2, 0x11, 0x41, 0x94, 0x87, 0x5a, 0x58, 0x8d, 0xed, 0x2a, 0x54, 0x1e, + 0xc6, 0x11, 0xb5, 0xbf, 0xb5, 0xe0, 0xa3, 0xd3, 0xcc, 0x42, 0xb9, 0x93, 0x74, 0xae, 0x8a, 0xcc, + 0x36, 0x34, 0x64, 0x58, 0x1c, 0x15, 0x5f, 0x53, 0x28, 0x24, 0xe1, 0x44, 0xc6, 0x38, 0x65, 0x46, + 0x24, 0xd4, 0xae, 0x6f, 0x68, 0xe6, 0x33, 0x12, 0x52, 0x74, 0x15, 0x60, 0x4c, 0x89, 0xe7, 0xb8, + 0xd2, 0x68, 0xe5, 0xf7, 0x16, 0x6e, 0x48, 0x8a, 0x3e, 0xc5, 0x2d, 0xe8, 0x08, 0x46, 0xfc, 0xc0, + 0x8f, 0x46, 0x46, 0xa4, 0xa2, 0x44, 0xda, 0x29, 0x55, 0x89, 0xd9, 0x43, 0xd8, 0x2a, 0x5a, 0xf6, + 0x9c, 0xd1, 0x99, 0x4f, 0x5f, 0xa3, 0x1f, 0xc0, 0xba, 0x4c, 0xc0, 0x14, 0x2f, 0xb7, 0x96, 0x7c, + 0xb0, 0xfa, 0x38, 0x58, 0xeb, 0xa0, 0x2e, 0x94, 0x69, 0xe4, 0x19, 0xb4, 0xc8, 0xa1, 0xfd, 0x6b, + 0x0b, 0x2e, 0x9d, 0xd5, 0xd1, 0xa6, 0x7e, 0xb8, 0x0f, 0x52, 0xa7, 0x97, 0x17, 0x4e, 0x97, 0xc9, + 0xe3, 0xcf, 0xcc, 0x61, 0x4b, 0xfe, 0x0c, 0xdd, 0x81, 0xb2, 0xac, 0x39, 0xba, 0xcc, 0x6d, 0xed, + 0x15, 0xaa, 0xf9, 0x43, 0x22, 0xc8, 0x53, 0x3a, 0xc7, 0x52, 0xc2, 0x1e, 0x01, 0x2a, 0x5a, 0x78, + 0x4c, 0x89, 0xf7, 0x81, 0x68, 0xd8, 0x86, 0xc6, 0x94, 0x53, 0xc7, 0x25, 0xee, 0x38, 0x4d, 0x9a, + 0xfa, 0x94, 0xd3, 0x23, 0x39, 0xb7, 0xef, 0xc1, 0x85, 0xe2, 0x46, 0x8f, 0x22, 0xaf, 0x90, 0xcf, + 0xc6, 0x07, 0x59, 0x3e, 0xff, 0xaa, 0xb4, 0x1c, 0x25, 0x4c, 0xbf, 0x99, 0x52, 0x2e, 0xd0, 0xf7, + 0xa1, 0x22, 0x43, 0x6e, 0x4c, 0xbb, 0x71, 0x6e, 0x90, 0xe4, 0x71, 0x8e, 0xd7, 0xb0, 0x52, 0x40, + 0x3f, 0x82, 0x5a, 0xa2, 0x23, 0x6d, 0x6e, 0xa0, 0x4f, 0xce, 0xd5, 0x35, 0xa8, 0x38, 0x5e, 0xc3, + 0xa9, 0x1a, 0x7a, 0x00, 0xeb, 0x0b, 0xe8, 0x35, 0xf7, 0x6f, 0xbf, 0x17, 0x20, 0x2a, 0xd8, 0xc7, + 0x6b, 0x58, 0xab, 0xa1, 0xfb, 0x1a, 0x23, 0xfa, 0xbe, 0xda, 0x39, 0x57, 0xfb, 0x51, 0x24, 0x0d, + 0x97, 0xe2, 0x87, 0x0d, 0xa8, 0x25, 0x64, 0x1e, 0xc4, 0xc4, 0xb3, 0xef, 0xc3, 0xd6, 0x81, 0xeb, + 0xd2, 0x44, 0x96, 0xdc, 0xdc, 0x36, 0xbc, 0x08, 0x19, 0x09, 0xdf, 0x1c, 0x64, 0xec, 0xd3, 0xe5, + 0x54, 0xc4, 0x94, 0x27, 0x71, 0xc4, 0x29, 0xfa, 0x1a, 0xd6, 0xd3, 0x0a, 0xb9, 0xca, 0x21, 0x2b, + 0xf7, 0xc2, 0x5a, 0xc5, 0xde, 0x87, 0xfa, 0x53, 0x3a, 0x7f, 0x49, 0x82, 0x29, 0x95, 0xe0, 0x97, + 0x80, 0xb3, 0x14, 0x02, 0xe5, 0x50, 0x96, 0xc0, 0x99, 0x64, 0x99, 0xe2, 0xa0, 0x27, 0xf6, 0x9f, + 0x4a, 0xd0, 0x95, 0xe0, 0x49, 0x17, 0x94, 0x60, 0x44, 0xb7, 0xa1, 0xaa, 0x2f, 0x5d, 0x63, 0xc5, + 0xf2, 0x35, 0x68, 0xb8, 0xc5, 0x9c, 0x29, 0x2d, 0xe5, 0xcc, 0x67, 0x59, 0x5a, 0xc8, 0xd4, 0xbd, + 0xb4, 0x74, 0x90, 0xd4, 0x50, 0x93, 0x2f, 0x3d, 0xa8, 0xcd, 0x28, 0xe3, 0x72, 0x4b, 0x5d, 0xa1, + 0xd3, 0x29, 0xba, 0x07, 0x15, 0xb9, 0xb9, 0x49, 0x9d, 0xed, 0x77, 0xdc, 0x18, 0x2a, 0xef, 0x95, + 0x20, 0xfa, 0x1e, 0x6c, 0x30, 0x1a, 0xc6, 0x33, 0xea, 0x39, 0x8c, 0xba, 0x31, 0xf3, 0x78, 0xaf, + 0xaa, 0x4c, 0x28, 0x76, 0x2d, 0x1d, 0x23, 0x84, 0xb5, 0x0c, 0x3a, 0x84, 0x8e, 0xba, 0xdc, 0x17, + 0x5a, 0x35, 0xa5, 0xb5, 0xbc, 0x63, 0x5f, 0x09, 0x69, 0x2d, 0xdc, 0x0e, 0x73, 0x33, 0x6e, 0xff, + 0x12, 0xe0, 0x44, 0xc4, 0x8c, 0x3e, 0xf1, 0x68, 0x24, 0x64, 0x6d, 0x74, 0x83, 0x29, 0x17, 0x94, + 0x2d, 0xfa, 0xaf, 0x86, 0xa1, 0x3c, 0xf1, 0xd0, 0x65, 0xa8, 0x73, 0x29, 0x2c, 0x99, 0xda, 0x77, + 0x35, 0xae, 0x95, 0xd1, 0x7d, 0x68, 0x92, 0xc4, 0x77, 0x52, 0x8f, 0x94, 0x55, 0x0f, 0xb0, 0xb9, + 0x97, 0x36, 0x89, 0x07, 0xcf, 0x9f, 0xbc, 0xd4, 0x2c, 0x0c, 0x24, 0xf1, 0xcd, 0xd8, 0xfe, 0x14, + 0x2e, 0xa8, 0xdd, 0xa5, 0x35, 0x33, 0xca, 0xb2, 0x0e, 0x80, 0xd3, 0x6f, 0xa2, 0x38, 0xed, 0x00, + 0xd4, 0xc4, 0x1e, 0x40, 0x47, 0x06, 0xfd, 0xa7, 0xb1, 0x4b, 0x02, 0x2d, 0xf7, 0x39, 0xc0, 0x98, + 0x30, 0xcf, 0xe1, 0x72, 0x66, 0xc2, 0x8e, 0xb2, 0xfe, 0xed, 0x98, 0x30, 0xdd, 0x51, 0xe0, 0xc6, + 0x38, 0x1d, 0xca, 0xf3, 0x05, 0x84, 0x9b, 0xdb, 0xcd, 0x1c, 0xa1, 0x21, 0x29, 0xea, 0x5a, 0xb3, + 0xff, 0x6d, 0xe9, 0x4d, 0x0e, 0x92, 0x24, 0x98, 0x6b, 0x8d, 0x9b, 0xd0, 0x26, 0x49, 0x12, 0xf8, + 0xd4, 0x73, 0xf2, 0x6d, 0x49, 0xcb, 0x10, 0x95, 0x9e, 0xbc, 0x36, 0xd5, 0xb2, 0xf9, 0xbb, 0x53, + 0xb9, 0xa0, 0x82, 0x37, 0x24, 0xe3, 0x68, 0x71, 0x75, 0xca, 0x76, 0xb0, 0x20, 0xa6, 0xb1, 0xd3, + 0xcc, 0xdd, 0xae, 0xb2, 0x35, 0x30, 0x22, 0xaa, 0xe7, 0xd1, 0x37, 0x3b, 0x68, 0xd2, 0x29, 0x65, + 0x21, 0xfa, 0x09, 0x6c, 0x88, 0xb4, 0x6b, 0x32, 0xc7, 0x2f, 0xad, 0x2c, 0x64, 0x67, 0xfb, 0x2b, + 0xdc, 0x11, 0x85, 0xb9, 0xed, 0x03, 0x28, 0x7c, 0xe8, 0xe3, 0x6e, 0x43, 0x23, 0xf4, 0xa3, 0xc2, + 0x51, 0xeb, 0xa1, 0x1f, 0x69, 0xbb, 0x6e, 0x43, 0xd5, 0xb4, 0x9a, 0xa5, 0xd5, 0x39, 0xa6, 0xb9, + 0xe8, 0x23, 0xa8, 0x6a, 0x63, 0x8d, 0x0f, 0xcc, 0xcc, 0xfe, 0x67, 0x09, 0x5a, 0x79, 0x2c, 0xca, + 0xc6, 0x84, 0xc7, 0x53, 0xe6, 0x52, 0x67, 0xb9, 0xe9, 0xef, 0x68, 0x3a, 0x4e, 0x5b, 0xff, 0x2f, + 0xa1, 0x65, 0x24, 0x75, 0xf3, 0x5d, 0x3a, 0xa7, 0xf9, 0xd6, 0x82, 0xba, 0xf9, 0xbe, 0x97, 0xe9, + 0xc9, 0xb7, 0x00, 0x37, 0x99, 0x5d, 0x4c, 0x2b, 0xa3, 0x20, 0xc7, 0x5c, 0xf7, 0x4a, 0xf2, 0x14, + 0x39, 0x93, 0x74, 0x88, 0x3a, 0x9a, 0x9e, 0x37, 0xc9, 0x48, 0xbe, 0xff, 0x3d, 0xa0, 0x05, 0x33, + 0x93, 0x8c, 0x9e, 0x36, 0x69, 0x55, 0xa6, 0x1b, 0x05, 0x6d, 0x52, 0xd6, 0x11, 0xd7, 0xf2, 0x1d, + 0xf1, 0x8d, 0xec, 0x64, 0x9a, 0x59, 0xd7, 0x38, 0xd2, 0x34, 0x0d, 0xe7, 0x3f, 0xc8, 0x42, 0xa9, + 0xcc, 0xc8, 0x65, 0xcd, 0x9e, 0x6a, 0x2b, 0x4d, 0xc2, 0x74, 0xf6, 0x7b, 0x4b, 0x88, 0x91, 0x5b, + 0x6a, 0xa0, 0x68, 0xb1, 0x5c, 0x61, 0x2d, 0x9d, 0x5b, 0x58, 0xbf, 0x06, 0xfd, 0xd2, 0x30, 0x78, + 0xd4, 0x97, 0xdb, 0xe5, 0x55, 0x95, 0x48, 0x2f, 0x0f, 0xe1, 0x02, 0x75, 0x37, 0xa4, 0x4b, 0x54, + 0x83, 0x5a, 0xc8, 0x09, 0x4d, 0xd3, 0xd8, 0x5b, 0x51, 0x22, 0xd7, 0x3f, 0xa8, 0x44, 0x56, 0xff, + 0xef, 0x12, 0xf9, 0x0f, 0x0b, 0x3e, 0xd6, 0x87, 0x3d, 0x91, 0xdd, 0x43, 0xe4, 0xd2, 0x67, 0xd3, + 0x70, 0x40, 0x19, 0xa6, 0x81, 0x6a, 0xb1, 0xcf, 0x7f, 0xb4, 0xde, 0x81, 0x0d, 0x6e, 0xd4, 0x9c, + 0x48, 0xe9, 0x99, 0xba, 0xd3, 0xe1, 0x85, 0xd5, 0xd0, 0x03, 0x59, 0x41, 0x93, 0x60, 0x5e, 0x70, + 0xe0, 0xd5, 0x15, 0x09, 0xbd, 0xa8, 0x4e, 0xb2, 0x96, 0x66, 0x95, 0xea, 0x30, 0x7b, 0x9f, 0xea, + 0x05, 0x74, 0x83, 0x70, 0x7d, 0x79, 0x81, 0x25, 0x3c, 0xa4, 0x6f, 0x55, 0x5d, 0x0c, 0x7e, 0x6f, + 0xc1, 0xe6, 0xc1, 0x8c, 0xf8, 0x01, 0x19, 0xf8, 0x81, 0x2f, 0xe6, 0x47, 0x71, 0x24, 0xe8, 0x1b, + 0x81, 0x3e, 0x81, 0x8e, 0x7a, 0x79, 0x2f, 0x1f, 0xb3, 0x25, 0xa9, 0x59, 0x46, 0xfc, 0x10, 0x2e, + 0xe4, 0xa5, 0xde, 0x9b, 0xa9, 0x1b, 0x0b, 0x6d, 0x9d, 0x1a, 0x3b, 0xd0, 0x9c, 0x46, 0x44, 0xef, + 0x1f, 0x50, 0xf3, 0x26, 0xca, 0x93, 0xe4, 0xa5, 0x2b, 0x98, 0x1f, 0x86, 0x54, 0x67, 0x65, 0x1d, + 0xa7, 0x53, 0xfb, 0x3b, 0xd0, 0x7e, 0x1c, 0x4c, 0xf9, 0xb8, 0x4f, 0x43, 0x85, 0x9b, 0x73, 0xa3, + 0x62, 0xdf, 0x85, 0x0e, 0xa6, 0x43, 0x46, 0xf9, 0xf8, 0x70, 0xea, 0x4e, 0xa8, 0xe0, 0xf9, 0xeb, + 0xdc, 0x2a, 0x5c, 0xe7, 0xf6, 0x9f, 0x2d, 0x68, 0x1e, 0xc9, 0x96, 0xf2, 0xc7, 0xae, 0xfa, 0x69, + 0xf0, 0xbf, 0x39, 0xe3, 0x36, 0x6c, 0xa8, 0x3e, 0x34, 0x27, 0xa6, 0xe3, 0xde, 0x56, 0xe4, 0x4c, + 0xee, 0x00, 0x50, 0x41, 0x4e, 0x7b, 0xad, 0xfc, 0x6e, 0xaf, 0x75, 0x73, 0xfa, 0xda, 0x6d, 0x9f, + 0x01, 0xe8, 0x25, 0xd4, 0xff, 0x8e, 0xca, 0x8a, 0xff, 0x1d, 0x0d, 0xc5, 0x97, 0x43, 0xfb, 0x5f, + 0x65, 0x68, 0xe5, 0xdf, 0xf8, 0xe8, 0x0b, 0xa8, 0x88, 0x79, 0x92, 0xd6, 0x83, 0xeb, 0xe7, 0xfc, + 0x0e, 0x38, 0x9d, 0x27, 0x14, 0x2b, 0xe1, 0x45, 0x4d, 0x2a, 0xe5, 0x6b, 0xd2, 0x77, 0xa1, 0xb9, + 0x30, 0x64, 0x75, 0xb1, 0x85, 0xcc, 0x12, 0xd5, 0x6f, 0xbe, 0x26, 0xbe, 0x70, 0x54, 0xcf, 0xa5, + 0xc3, 0x59, 0x97, 0x04, 0xd5, 0xd0, 0xdd, 0x82, 0xce, 0x30, 0x66, 0x2e, 0x0d, 0xe6, 0x0e, 0x79, + 0x4d, 0x26, 0x34, 0x52, 0x05, 0xb6, 0x8e, 0xdb, 0x86, 0x7a, 0xa0, 0x88, 0xe8, 0x01, 0x68, 0x7f, + 0x3a, 0x23, 0x57, 0x1f, 0xbf, 0xba, 0xf2, 0xb1, 0x91, 0x8b, 0x1f, 0xd6, 0x36, 0x9a, 0x60, 0x1e, + 0x41, 0x67, 0x28, 0x61, 0xe3, 0x84, 0x06, 0x37, 0xaa, 0xca, 0x36, 0xf7, 0x3f, 0x5e, 0x5a, 0xa0, + 0x80, 0x2d, 0xdc, 0x1e, 0x16, 0xa0, 0xf6, 0x02, 0x2e, 0x92, 0x5c, 0xd6, 0x38, 0xae, 0x4e, 0x1b, + 0x55, 0x93, 0x9b, 0xfb, 0xf6, 0x72, 0x43, 0x7c, 0x36, 0xc1, 0xf0, 0x26, 0x59, 0x91, 0x75, 0x8f, + 0x65, 0xcd, 0x53, 0x20, 0x75, 0x06, 0x1a, 0xa5, 0xe6, 0x1f, 0xcf, 0x99, 0xaa, 0x50, 0x80, 0xb2, + 0x2c, 0x82, 0xf9, 0xf9, 0x5d, 0x0c, 0x8d, 0xac, 0xac, 0x23, 0x80, 0xea, 0xb3, 0x98, 0x85, 0x24, + 0xe8, 0xae, 0xa1, 0x16, 0xd4, 0x55, 0x31, 0xf1, 0xa3, 0x51, 0xd7, 0x42, 0x6d, 0x68, 0x64, 0xbf, + 0xa4, 0xba, 0x25, 0xd4, 0x84, 0x9a, 0xac, 0x8a, 0x92, 0x57, 0x46, 0x1b, 0xd0, 0x7c, 0xb1, 0x48, + 0xc3, 0x6e, 0xe5, 0xee, 0xef, 0xca, 0xd0, 0x5d, 0xc6, 0x06, 0xda, 0x84, 0x8d, 0x3e, 0x1f, 0x69, + 0x68, 0xbe, 0x22, 0x13, 0xfa, 0x22, 0xe9, 0xae, 0xa1, 0x1e, 0x5c, 0xec, 0xf3, 0xd1, 0x2b, 0x12, + 0x09, 0x1c, 0x07, 0xc1, 0x80, 0xb8, 0x13, 0x55, 0x6c, 0xbb, 0x16, 0xda, 0x82, 0x0b, 0x7d, 0x3e, + 0x52, 0xa1, 0x39, 0x11, 0x24, 0x50, 0x37, 0x70, 0xb7, 0x84, 0xae, 0xc2, 0xe5, 0x33, 0xe4, 0xf4, + 0xb1, 0xd1, 0x2d, 0xa3, 0x4b, 0xb0, 0xd9, 0xe7, 0xa3, 0x63, 0x7f, 0x40, 0x59, 0x24, 0x0b, 0x98, + 0x7e, 0xd1, 0x75, 0x2b, 0x66, 0xa3, 0x1c, 0xc3, 0xa8, 0xac, 0xa3, 0x3b, 0x70, 0x53, 0xd9, 0xf5, + 0x73, 0xea, 0x0a, 0xdd, 0x44, 0x8e, 0x8e, 0xc8, 0x94, 0x53, 0xef, 0x70, 0xde, 0xa7, 0x61, 0xcc, + 0xe6, 0xea, 0x87, 0x54, 0xb7, 0x8a, 0xae, 0xc0, 0x47, 0x7d, 0x3e, 0xca, 0x07, 0x28, 0x5d, 0xbe, + 0x86, 0xb6, 0xe1, 0xd2, 0x19, 0x9e, 0xd9, 0xa1, 0x8e, 0x6c, 0xb8, 0xd6, 0xe7, 0xa3, 0x97, 0xb1, + 0x90, 0xa6, 0x26, 0x81, 0xaf, 0x1a, 0x2c, 0x75, 0x73, 0xa5, 0x0b, 0x34, 0xd0, 0x4d, 0xb8, 0xfe, + 0x4e, 0x19, 0xb3, 0x10, 0xa0, 0x8b, 0xd0, 0xed, 0xf3, 0x91, 0x41, 0xaa, 0x51, 0x6d, 0x1a, 0x4f, + 0xa5, 0x54, 0x23, 0xdc, 0x32, 0xc2, 0x05, 0x68, 0x76, 0xdb, 0x46, 0xb8, 0x88, 0x89, 0x6e, 0xe7, + 0xf0, 0xf6, 0x5f, 0x7f, 0x53, 0xb7, 0xfe, 0xf8, 0xf6, 0x9a, 0xf5, 0x97, 0xb7, 0xd7, 0xac, 0xbf, + 0xbd, 0xbd, 0x66, 0x7d, 0xfb, 0xf7, 0x6b, 0x6b, 0xd0, 0x8d, 0xd9, 0x68, 0x4f, 0xf8, 0x93, 0xd9, + 0xde, 0x64, 0xa6, 0x7e, 0xc9, 0x0e, 0xaa, 0xea, 0xf3, 0xc5, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, + 0x23, 0xc0, 0x8f, 0x3c, 0x22, 0x16, 0x00, 0x00, } func (m *RaftMessage) Marshal() (dAtA []byte, err error) { @@ -3860,6 +3923,38 @@ func (m *FlushMemtable) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *RefreshBuckets) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RefreshBuckets) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RefreshBuckets) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.Version != 0 { + i = encodeVarintRaftServerpb(dAtA, i, uint64(m.Version)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *CheckGcPeer) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3945,6 +4040,18 @@ func (m *ExtraMessage) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.RefreshBuckets != nil { + { + size, err := m.RefreshBuckets.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRaftServerpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x4a + } if m.AvailabilityContext != nil { { size, err := m.AvailabilityContext.MarshalToSizedBuffer(dAtA[:i]) @@ -4732,6 +4839,21 @@ func (m *FlushMemtable) Size() (n int) { return n } +func (m *RefreshBuckets) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Version != 0 { + n += 1 + sovRaftServerpb(uint64(m.Version)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *CheckGcPeer) Size() (n int) { if m == nil { return 0 @@ -4794,6 +4916,10 @@ func (m *ExtraMessage) Size() (n int) { l = m.AvailabilityContext.Size() n += 1 + l + sovRaftServerpb(uint64(l)) } + if m.RefreshBuckets != nil { + l = m.RefreshBuckets.Size() + n += 1 + l + sovRaftServerpb(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -8675,6 +8801,76 @@ func (m *FlushMemtable) Unmarshal(dAtA []byte) error { } return nil } +func (m *RefreshBuckets) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftServerpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RefreshBuckets: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RefreshBuckets: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType) + } + m.Version = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftServerpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Version |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipRaftServerpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthRaftServerpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *CheckGcPeer) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -9085,6 +9281,42 @@ func (m *ExtraMessage) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RefreshBuckets", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftServerpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRaftServerpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRaftServerpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.RefreshBuckets == nil { + m.RefreshBuckets = &RefreshBuckets{} + } + if err := m.RefreshBuckets.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRaftServerpb(dAtA[iNdEx:]) diff --git a/proto/raft_serverpb.proto b/proto/raft_serverpb.proto index 033392b87..30221c765 100644 --- a/proto/raft_serverpb.proto +++ b/proto/raft_serverpb.proto @@ -246,12 +246,17 @@ enum ExtraMessageType { MsgGcPeerRequest = 11; MsgGcPeerResponse = 12; MsgFlushMemtable = 13; + MsgRefreshBuckets = 14; } message FlushMemtable { uint64 region_id = 1; } +message RefreshBuckets{ + uint64 version = 1; +} + message CheckGcPeer { // The region ID who triggers the check and wait for report. It should be // the ID of RaftMessage.from. @@ -279,4 +284,6 @@ message ExtraMessage { FlushMemtable flush_memtable = 7; // Used by `MsgAvailabilityRequest` and `MsgAvailabilityResponse` in v2. AvailabilityContext availability_context = 8; + // notice the peer to refresh buckets version + RefreshBuckets refresh_buckets = 9; } diff --git a/scripts/proto.lock b/scripts/proto.lock index e82148f67..07def5123 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -16567,6 +16567,10 @@ { "name": "MsgFlushMemtable", "integer": 13 + }, + { + "name": "MsgRefreshBuckets", + "integer": 14 } ] } @@ -17170,6 +17174,16 @@ } ] }, + { + "name": "RefreshBuckets", + "fields": [ + { + "id": 1, + "name": "version", + "type": "uint64" + } + ] + }, { "name": "CheckGcPeer", "fields": [ @@ -17238,6 +17252,11 @@ "id": 8, "name": "availability_context", "type": "AvailabilityContext" + }, + { + "id": 9, + "name": "refresh_buckets", + "type": "RefreshBuckets" } ] }