From cd6769a15c69b48fd65ecb6d813b861156be4d61 Mon Sep 17 00:00:00 2001 From: Spade A <71589810+SpadeA-Tang@users.noreply.github.com> Date: Wed, 5 Jul 2023 10:05:36 +0800 Subject: [PATCH 1/4] switch mode request (#1138) Signed-off-by: Spade A --- pkg/configpb/configpb.pb.gw.go | 22 +- pkg/import_sstpb/import_sstpb.pb.go | 314 +++++++++++++++++----------- proto/import_sstpb.proto | 1 + scripts/proto.lock | 5 + 4 files changed, 195 insertions(+), 147 deletions(-) diff --git a/pkg/configpb/configpb.pb.gw.go b/pkg/configpb/configpb.pb.gw.go index 9b4675b32..c0385b0e4 100644 --- a/pkg/configpb/configpb.pb.gw.go +++ b/pkg/configpb/configpb.pb.gw.go @@ -20,7 +20,6 @@ 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" ) @@ -31,7 +30,6 @@ 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)} @@ -57,10 +55,7 @@ func local_request_Config_Get_0(ctx context.Context, marshaler runtime.Marshaler var protoReq GetRequest var metadata runtime.ServerMetadata - 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 { + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Get_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -127,10 +122,7 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha var protoReq DeleteRequest var metadata runtime.ServerMetadata - 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 { + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Delete_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -142,14 +134,11 @@ 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 { @@ -157,7 +146,6 @@ 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) @@ -171,8 +159,6 @@ 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 { @@ -180,7 +166,6 @@ 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) @@ -194,8 +179,6 @@ 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 { @@ -203,7 +186,6 @@ 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/import_sstpb/import_sstpb.pb.go b/pkg/import_sstpb/import_sstpb.pb.go index 51e6a344d..4ea8f6e91 100644 --- a/pkg/import_sstpb/import_sstpb.pb.go +++ b/pkg/import_sstpb/import_sstpb.pb.go @@ -111,6 +111,7 @@ func (Pair_OP) EnumDescriptor() ([]byte, []int) { type SwitchModeRequest struct { Mode SwitchMode `protobuf:"varint,1,opt,name=mode,proto3,enum=import_sstpb.SwitchMode" json:"mode,omitempty"` + Range *Range `protobuf:"bytes,2,opt,name=range,proto3" json:"range,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -156,6 +157,13 @@ func (m *SwitchModeRequest) GetMode() SwitchMode { return SwitchMode_Normal } +func (m *SwitchModeRequest) GetRange() *Range { + if m != nil { + return m.Range + } + return nil +} + type SwitchModeResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -2471,133 +2479,133 @@ func init() { func init() { proto.RegisterFile("import_sstpb.proto", fileDescriptor_4d076b7935cfab6b) } var fileDescriptor_4d076b7935cfab6b = []byte{ - // 2007 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcd, 0x72, 0x1b, 0x4b, - 0x15, 0xf6, 0xe8, 0x5f, 0x47, 0xbf, 0xe9, 0xe4, 0x3a, 0x13, 0x25, 0xb1, 0x9d, 0x21, 0xf7, 0xe2, - 0x38, 0x60, 0x07, 0x07, 0xb2, 0x60, 0x41, 0x2a, 0xfe, 0xe1, 0xc6, 0x38, 0xbe, 0x36, 0x23, 0x13, - 0x16, 0x2c, 0xa6, 0xc6, 0xa3, 0xb6, 0x3c, 0x68, 0x34, 0x33, 0x4c, 0xb7, 0xe4, 0x68, 0xc3, 0x03, - 0xf0, 0x04, 0x14, 0x1b, 0x0a, 0x56, 0xb7, 0x58, 0x53, 0x45, 0xf1, 0x06, 0x77, 0x09, 0x3b, 0x56, - 0x14, 0x15, 0x5e, 0x84, 0xea, 0xd3, 0x3d, 0xd2, 0xcc, 0x44, 0x8e, 0x62, 0x17, 0x77, 0xa5, 0xee, - 0xd3, 0x67, 0x4e, 0x9f, 0x3e, 0x3f, 0x5f, 0x7f, 0x2d, 0x20, 0xee, 0x30, 0x0c, 0x22, 0x6e, 0x31, - 0xc6, 0xc3, 0xb3, 0xcd, 0x30, 0x0a, 0x78, 0x40, 0xea, 0x49, 0x59, 0xa7, 0x3e, 0xa4, 0xdc, 0x8e, - 0xd7, 0x3a, 0x0d, 0x1a, 0x45, 0x41, 0x34, 0x9b, 0x0e, 0xc6, 0x51, 0xe8, 0x4c, 0xa7, 0x77, 0xfa, - 0x41, 0x3f, 0xc0, 0xe1, 0x96, 0x18, 0x29, 0x69, 0x2b, 0x1a, 0x31, 0x8e, 0x43, 0x25, 0x80, 0xb3, - 0xa9, 0x05, 0xe3, 0x15, 0xdc, 0xea, 0x5e, 0xba, 0xdc, 0xb9, 0x38, 0x0a, 0x7a, 0xd4, 0xa4, 0xbf, - 0x19, 0x51, 0xc6, 0xc9, 0xf7, 0xa0, 0x30, 0x0c, 0x7a, 0x54, 0xd7, 0xd6, 0xb4, 0xf5, 0xe6, 0xb6, - 0xbe, 0x99, 0x72, 0x32, 0xa1, 0x8e, 0x5a, 0xc6, 0x1d, 0x20, 0x49, 0x13, 0x2c, 0x0c, 0x7c, 0x46, - 0x8d, 0x36, 0x34, 0xbf, 0xa4, 0x3c, 0x61, 0xd5, 0x78, 0x09, 0xad, 0xa9, 0x44, 0x2a, 0x5d, 0x73, - 0xa3, 0x2d, 0x28, 0x9a, 0xb6, 0xdf, 0xa7, 0xe4, 0x0e, 0x14, 0x19, 0xb7, 0x23, 0x8e, 0xdf, 0xd5, - 0x4d, 0x39, 0x21, 0x6d, 0xc8, 0x53, 0xbf, 0xa7, 0xe7, 0x50, 0x26, 0x86, 0xc6, 0x9f, 0xf2, 0x50, - 0xee, 0x76, 0x4f, 0x8f, 0x28, 0xb7, 0x09, 0x81, 0xc2, 0x68, 0xe4, 0xf6, 0xd4, 0x27, 0x38, 0x26, - 0x4f, 0xa0, 0x18, 0x09, 0x83, 0xf8, 0x4d, 0x6d, 0xfb, 0x76, 0x7a, 0x7f, 0xdc, 0xcb, 0x94, 0x1a, - 0x62, 0x4b, 0x27, 0x72, 0x9e, 0x6f, 0xeb, 0xf9, 0x35, 0x6d, 0xbd, 0x61, 0xca, 0x09, 0x59, 0x86, - 0x92, 0x47, 0xfd, 0x3e, 0xbf, 0xd0, 0x0b, 0x6b, 0xda, 0x7a, 0xc1, 0x54, 0x33, 0x72, 0x17, 0xca, - 0xce, 0xb9, 0xe5, 0xdb, 0x43, 0xaa, 0x17, 0xd7, 0xb4, 0xf5, 0xaa, 0x59, 0x72, 0xce, 0xbf, 0xb2, - 0x87, 0x94, 0xdc, 0x87, 0x6a, 0x44, 0xfb, 0x6e, 0xe0, 0x5b, 0x6e, 0x4f, 0x2f, 0xe1, 0x37, 0x15, - 0x29, 0x38, 0xe8, 0x91, 0x17, 0x50, 0x57, 0x8b, 0x34, 0x0c, 0x9c, 0x0b, 0xbd, 0xac, 0xbc, 0x52, - 0x15, 0x60, 0xe2, 0xda, 0xbe, 0x58, 0x32, 0x6b, 0xd1, 0x6c, 0x42, 0x36, 0xe0, 0x16, 0xf5, 0x7b, - 0xd6, 0x80, 0x4e, 0x2c, 0xfa, 0xce, 0xf1, 0x46, 0xcc, 0x1d, 0x53, 0xbd, 0xb2, 0xa6, 0xad, 0x57, - 0xcc, 0x16, 0xf5, 0x7b, 0x87, 0x74, 0xb2, 0x1f, 0x8b, 0x85, 0x03, 0x3c, 0xe0, 0xb6, 0x67, 0x0d, - 0xc6, 0x4c, 0xaf, 0x4a, 0x07, 0x50, 0x70, 0x38, 0x66, 0x64, 0x15, 0x6a, 0x72, 0xf1, 0x6c, 0xc2, - 0x29, 0xd3, 0x01, 0x97, 0x01, 0x45, 0x3b, 0x42, 0x42, 0x7e, 0x08, 0x35, 0x3b, 0x74, 0xad, 0x31, - 0x8d, 0x98, 0x1b, 0xf8, 0x7a, 0x0d, 0xd3, 0x76, 0x7b, 0x33, 0xae, 0xc2, 0x57, 0x27, 0x07, 0x6f, - 0xe5, 0x92, 0x09, 0x76, 0xe8, 0xaa, 0xb1, 0xd8, 0xd3, 0x71, 0xc3, 0x0b, 0x1a, 0x59, 0xee, 0x58, - 0xaf, 0x63, 0xfc, 0x2b, 0x52, 0x70, 0x30, 0x36, 0x7e, 0x0b, 0x35, 0x93, 0x5e, 0x46, 0x2e, 0xa7, - 0xe6, 0xc8, 0xa3, 0xe4, 0x31, 0x34, 0x03, 0x4f, 0x9e, 0x25, 0x8c, 0xe8, 0xb9, 0xfb, 0x4e, 0x25, - 0xac, 0x1e, 0x78, 0xe2, 0x20, 0x27, 0x28, 0x13, 0x5a, 0x3e, 0xbd, 0x4c, 0x6a, 0xc9, 0xac, 0xd7, - 0x7d, 0x7a, 0x39, 0xd3, 0xfa, 0x0e, 0x34, 0x84, 0x16, 0x77, 0x87, 0x94, 0x71, 0x7b, 0x18, 0x62, - 0xee, 0x0a, 0xa8, 0x74, 0x1a, 0xcb, 0x8c, 0x5f, 0x41, 0xe3, 0x17, 0xa1, 0x17, 0xd8, 0xbd, 0xb8, - 0xf8, 0x9f, 0x42, 0x41, 0x04, 0x1c, 0xf7, 0xad, 0x6d, 0x7f, 0x96, 0xa9, 0x49, 0x59, 0x4d, 0xaf, - 0x97, 0x4c, 0x54, 0x22, 0x77, 0xa0, 0xd0, 0xb3, 0xb9, 0x2d, 0xb7, 0x17, 0x52, 0x31, 0xdb, 0x29, - 0x43, 0xd1, 0xb9, 0x18, 0xf9, 0x03, 0xd1, 0x04, 0xb1, 0x71, 0xd5, 0x16, 0x3d, 0x68, 0x1c, 0xf8, - 0x7d, 0xca, 0x78, 0xbc, 0xdd, 0x06, 0x94, 0x9d, 0xc0, 0xe7, 0xf4, 0x1d, 0x57, 0x3b, 0xb6, 0xa7, - 0xe1, 0xdc, 0x95, 0x72, 0x33, 0x56, 0x20, 0xdf, 0x85, 0x3c, 0x63, 0x5c, 0x55, 0xeb, 0x7c, 0xcf, - 0x4c, 0xa1, 0x61, 0x0c, 0x80, 0x1c, 0x8d, 0x3c, 0xee, 0xde, 0x7c, 0xab, 0x27, 0x50, 0x60, 0x8c, - 0x33, 0x3d, 0xb7, 0x96, 0xbf, 0x7a, 0x2f, 0x54, 0x31, 0x5e, 0x40, 0x33, 0xde, 0x47, 0xb5, 0xf5, - 0x63, 0x28, 0x22, 0x4e, 0xa9, 0x6d, 0x9a, 0x9b, 0x31, 0x6a, 0xed, 0x8b, 0x5f, 0x53, 0x2e, 0x1a, - 0xbf, 0xd3, 0xa0, 0xb9, 0x1b, 0x0c, 0x43, 0xdb, 0x99, 0x7a, 0x38, 0x6d, 0x48, 0x6d, 0x61, 0x43, - 0x3e, 0x82, 0x7a, 0x30, 0xe2, 0xe1, 0x88, 0x5b, 0x1e, 0x1d, 0x53, 0x0f, 0x83, 0x52, 0x34, 0x6b, - 0x52, 0xf6, 0x46, 0x88, 0x92, 0xe7, 0xcd, 0x2f, 0x38, 0xaf, 0x71, 0x0b, 0x5a, 0x53, 0x5f, 0x54, - 0xaa, 0xfe, 0x99, 0x87, 0xd6, 0x5e, 0x70, 0xe9, 0x27, 0x8b, 0xe3, 0xfb, 0x8b, 0x33, 0xb0, 0x53, - 0xf8, 0xe6, 0xdf, 0xab, 0x4b, 0x98, 0x07, 0x01, 0x3a, 0x08, 0x02, 0x55, 0x04, 0x01, 0x1c, 0x93, - 0x1d, 0xd1, 0xe5, 0x58, 0xf0, 0x56, 0x34, 0xf2, 0xa8, 0xde, 0x40, 0x5b, 0xf7, 0x32, 0x47, 0x9d, - 0xb5, 0x84, 0xb2, 0x57, 0x8b, 0x12, 0x5d, 0xf2, 0x12, 0x5a, 0x8c, 0x07, 0x91, 0xdd, 0xa7, 0xd6, - 0x99, 0xed, 0x0c, 0x04, 0xec, 0x35, 0xd1, 0xcc, 0xf2, 0xa6, 0x98, 0x8f, 0xc2, 0xcd, 0xae, 0x5c, - 0xde, 0x91, 0xab, 0x66, 0x93, 0xa5, 0xe6, 0x64, 0x1d, 0xda, 0xb1, 0x01, 0xc7, 0x76, 0x2e, 0xa8, - 0x80, 0xa3, 0x5b, 0xe8, 0x64, 0xac, 0xb9, 0x2b, 0xc4, 0x07, 0x3d, 0xd2, 0x81, 0xaa, 0xcb, 0xac, - 0xc8, 0xbe, 0xb4, 0x06, 0x63, 0xbd, 0x85, 0xa0, 0x52, 0x76, 0x99, 0x69, 0x5f, 0x1e, 0x8e, 0xc9, - 0x73, 0xa8, 0xc5, 0x8d, 0xed, 0x9f, 0x07, 0x7a, 0x1b, 0x5d, 0x20, 0xb1, 0x0b, 0xbb, 0xb2, 0xc5, - 0xfd, 0xf3, 0xc0, 0x04, 0x67, 0x3a, 0x26, 0x7b, 0xe2, 0xfc, 0x18, 0x4d, 0x8b, 0x4f, 0x42, 0xaa, - 0x13, 0x04, 0x91, 0x47, 0xe9, 0xf3, 0x67, 0xe2, 0x7e, 0x3a, 0x09, 0xa9, 0x88, 0xc0, 0x74, 0x92, - 0xcc, 0xed, 0xed, 0x05, 0xb9, 0xfd, 0x59, 0xa1, 0x52, 0x69, 0x57, 0xcd, 0xfc, 0x28, 0xf2, 0x0c, - 0x13, 0x8a, 0x58, 0x83, 0x44, 0x87, 0xf2, 0x90, 0x32, 0x66, 0xab, 0x5a, 0xab, 0x9a, 0xf1, 0x94, - 0x6c, 0x41, 0x4d, 0x84, 0x80, 0x5a, 0xb2, 0x84, 0x73, 0x73, 0x4b, 0x18, 0x50, 0x05, 0xc7, 0xc6, - 0xdf, 0x34, 0x68, 0xcf, 0xfc, 0x55, 0x2d, 0xb0, 0xb5, 0xb8, 0x92, 0x55, 0x62, 0x55, 0x3d, 0xdf, - 0x83, 0x8a, 0xcb, 0x2c, 0x3a, 0x0c, 0xf9, 0x04, 0xf7, 0xc4, 0x30, 0xef, 0x8b, 0xa9, 0xe8, 0x0a, - 0xe9, 0x4b, 0x7e, 0x9e, 0xad, 0x64, 0x4f, 0xcd, 0xae, 0xa9, 0xc2, 0xfc, 0x6b, 0xaa, 0x98, 0xbc, - 0xa6, 0x8c, 0x97, 0xf0, 0xa0, 0x4b, 0x79, 0xec, 0x7b, 0x37, 0xa4, 0xb4, 0xf7, 0xc6, 0x1d, 0xba, - 0xd3, 0x76, 0x5c, 0x85, 0x1a, 0x13, 0x42, 0xcb, 0x13, 0x52, 0x3c, 0x4a, 0xc1, 0x04, 0x36, 0xd5, - 0x33, 0x56, 0xe1, 0xe1, 0x15, 0x06, 0x54, 0x0f, 0x85, 0x50, 0x38, 0xb1, 0xdd, 0x48, 0xdc, 0xcd, - 0x03, 0x3a, 0x51, 0x58, 0x2e, 0x86, 0xc2, 0xd3, 0xb1, 0xed, 0x8d, 0xa8, 0x42, 0x6e, 0x39, 0x21, - 0x9f, 0x43, 0x2e, 0x90, 0x38, 0xdd, 0xcc, 0xb6, 0x97, 0xb0, 0xb3, 0x79, 0x7c, 0x62, 0xe6, 0x82, - 0xd0, 0xb8, 0x07, 0xb9, 0xe3, 0x13, 0x52, 0x86, 0xfc, 0xc9, 0x88, 0xb7, 0x97, 0x08, 0x40, 0x69, - 0x8f, 0x7a, 0x94, 0xd3, 0xb6, 0x66, 0x74, 0x01, 0x7e, 0x29, 0xfa, 0x64, 0xc7, 0xe6, 0xce, 0x05, - 0x5e, 0x3d, 0xc1, 0x70, 0xe8, 0x72, 0x8b, 0x33, 0xe5, 0x7f, 0x45, 0x0a, 0x4e, 0x19, 0x59, 0x87, - 0x62, 0x68, 0xbb, 0x51, 0x0c, 0x72, 0xe4, 0xc3, 0xfd, 0x4c, 0xa9, 0x60, 0xfc, 0x59, 0x83, 0x3a, - 0x5a, 0xbd, 0xd1, 0x25, 0xf1, 0x0c, 0x8a, 0x67, 0xc2, 0x1b, 0x55, 0x4b, 0x19, 0x9a, 0x33, 0xf3, - 0xf6, 0xf5, 0x92, 0x29, 0x15, 0xaf, 0x83, 0x5c, 0xb3, 0xcb, 0xa6, 0x0f, 0x0d, 0xe5, 0xa3, 0xaa, - 0xc1, 0x27, 0x69, 0x18, 0xfe, 0x58, 0xdd, 0x3c, 0x85, 0xa2, 0x70, 0x75, 0x01, 0xde, 0x4b, 0x1d, - 0x71, 0x65, 0x9a, 0xf6, 0x65, 0x22, 0xca, 0x6d, 0xc8, 0x73, 0xee, 0xa9, 0xf8, 0x8a, 0xe1, 0xa7, - 0x87, 0x96, 0x34, 0x21, 0xc7, 0x99, 0xba, 0x99, 0x73, 0x9c, 0x19, 0x5f, 0x6b, 0xd0, 0x8a, 0xad, - 0xdf, 0x28, 0xda, 0xcf, 0xd3, 0xd1, 0xbe, 0x9f, 0xed, 0xbc, 0xcb, 0xff, 0x5b, 0xc0, 0x7f, 0x0d, - 0xed, 0x99, 0xa7, 0xdf, 0x72, 0xcc, 0xff, 0xae, 0xc1, 0xf2, 0xde, 0x28, 0xf4, 0x5c, 0xc7, 0xe6, - 0x74, 0x8f, 0x72, 0xea, 0xdc, 0xe8, 0x5a, 0xbf, 0x0f, 0x55, 0x24, 0xcb, 0x82, 0x3a, 0xa9, 0xce, - 0xab, 0xa0, 0xe0, 0x90, 0x4e, 0x04, 0x6b, 0x55, 0x3c, 0x12, 0x83, 0x50, 0x37, 0x4b, 0x92, 0x3d, - 0x0a, 0x6c, 0x12, 0x54, 0x2b, 0xf0, 0xbd, 0x09, 0x02, 0x4b, 0xc5, 0x2c, 0x0f, 0xe8, 0xe4, 0xd8, - 0xf7, 0x26, 0xc4, 0x80, 0xc6, 0xd0, 0xf5, 0xad, 0x59, 0x93, 0x49, 0x84, 0xa9, 0x0d, 0x5d, 0x7f, - 0x57, 0xf5, 0x99, 0x71, 0x04, 0xa5, 0xc3, 0xf1, 0xb5, 0x60, 0x20, 0xd5, 0xb6, 0xf9, 0x74, 0xdb, - 0x1a, 0x7f, 0xd1, 0xe0, 0xee, 0x07, 0xa1, 0x50, 0xe1, 0xff, 0xc1, 0x8c, 0x42, 0x7f, 0x84, 0x80, - 0xc4, 0xec, 0x19, 0xd3, 0xf0, 0x0c, 0xaa, 0xc8, 0x9c, 0x13, 0x68, 0x3f, 0x37, 0x6b, 0x22, 0x04, - 0xf2, 0x8b, 0x8d, 0xb8, 0xb8, 0xf3, 0x98, 0xb8, 0x3b, 0x69, 0x6d, 0x79, 0xd4, 0x18, 0x39, 0xfe, - 0x98, 0x87, 0xd2, 0xe1, 0xdb, 0xf8, 0x05, 0x82, 0x64, 0x40, 0x4b, 0x90, 0x81, 0x47, 0x50, 0x47, - 0xf8, 0xb7, 0x82, 0xf3, 0x73, 0x46, 0x39, 0x32, 0xea, 0x82, 0x59, 0x43, 0xd9, 0x31, 0x8a, 0x12, - 0xe0, 0x9d, 0x4b, 0xbd, 0x31, 0xa6, 0x9f, 0xaa, 0xd5, 0x7a, 0xe2, 0xd3, 0x37, 0x52, 0xa5, 0x09, - 0x39, 0xe7, 0x1c, 0xe3, 0x57, 0x35, 0x73, 0xce, 0xb9, 0x08, 0xab, 0xcb, 0xac, 0x1e, 0x42, 0xa5, - 0x4a, 0x64, 0xc5, 0x65, 0x12, 0x3a, 0x45, 0x92, 0x65, 0x69, 0xf0, 0x98, 0xf9, 0x97, 0x71, 0x7e, - 0xca, 0xc8, 0x43, 0x80, 0x88, 0xca, 0x4b, 0x71, 0x9a, 0xe1, 0xaa, 0x92, 0x9c, 0xb2, 0x74, 0x51, - 0x95, 0xae, 0x2e, 0xaa, 0x72, 0xaa, 0xa8, 0x96, 0xa1, 0xc4, 0x2e, 0xec, 0xed, 0x1f, 0xbd, 0xc0, - 0xa7, 0x4a, 0xdd, 0x54, 0x33, 0xf1, 0x9a, 0x91, 0xd6, 0x98, 0x6f, 0x87, 0xec, 0x22, 0x40, 0x87, - 0xe4, 0x4b, 0xa5, 0x85, 0x0b, 0x5d, 0x25, 0x3f, 0x65, 0x64, 0x07, 0xda, 0x4e, 0x30, 0x0c, 0x23, - 0xca, 0xc4, 0x43, 0x43, 0xf2, 0x89, 0x06, 0x5e, 0x1e, 0x77, 0xa7, 0x2c, 0x64, 0xb6, 0x8e, 0x2c, - 0xa2, 0xe5, 0xa4, 0x05, 0xc6, 0x5f, 0xf3, 0x50, 0x7f, 0x15, 0x86, 0xde, 0x24, 0xee, 0xa7, 0xf5, - 0x14, 0xda, 0x64, 0xb3, 0xfb, 0x56, 0x32, 0x5f, 0x84, 0x9a, 0x8d, 0xb8, 0x83, 0xeb, 0x73, 0x0b, - 0xe1, 0x6d, 0xa2, 0x81, 0x3f, 0xa0, 0x7d, 0xb9, 0x1b, 0xd0, 0xbe, 0x9f, 0x40, 0x23, 0x69, 0x83, - 0xe9, 0x0d, 0xdc, 0xf7, 0x6a, 0x23, 0x66, 0x3d, 0xf1, 0x39, 0x9b, 0xcb, 0xfa, 0x8a, 0x73, 0x59, - 0xdf, 0x1c, 0x82, 0x99, 0xbf, 0x16, 0xc1, 0x4c, 0x80, 0x52, 0x61, 0x11, 0x28, 0x65, 0x68, 0x64, - 0xed, 0x53, 0x68, 0xa4, 0x31, 0x80, 0x86, 0xca, 0xda, 0x4d, 0x19, 0xd7, 0x14, 0xaa, 0x73, 0x8b, - 0xa0, 0xda, 0xf8, 0x02, 0xea, 0xbb, 0x1e, 0xb5, 0xa3, 0xb8, 0x44, 0x96, 0xa1, 0x94, 0x78, 0x9d, - 0x56, 0x4d, 0x35, 0x33, 0x7e, 0x0c, 0x0d, 0xa5, 0x77, 0xed, 0xeb, 0x60, 0xe3, 0x31, 0xc0, 0xec, - 0x1f, 0x0f, 0x41, 0x69, 0xbe, 0x0a, 0xa2, 0xa1, 0xed, 0x49, 0x7a, 0x73, 0x80, 0x9f, 0xb5, 0xb5, - 0x8d, 0x2d, 0xb8, 0x3d, 0x87, 0x1b, 0x0b, 0x95, 0x37, 0xb4, 0x6f, 0x3b, 0x93, 0xf6, 0x12, 0xa9, - 0x43, 0xe5, 0x90, 0x4e, 0x58, 0x68, 0x3b, 0xb4, 0xad, 0x6d, 0xff, 0xa1, 0x02, 0x55, 0xf9, 0x75, - 0xb7, 0x7b, 0x4a, 0x7e, 0x9e, 0xda, 0x64, 0xf5, 0xca, 0x3f, 0x5c, 0xa4, 0xe9, 0xce, 0xda, 0xd5, - 0x0a, 0x8a, 0xe0, 0x2d, 0x91, 0xd7, 0x50, 0x56, 0x7f, 0xeb, 0x90, 0x07, 0x69, 0xf5, 0xf4, 0xff, - 0x3f, 0x9d, 0x87, 0x57, 0xac, 0x4e, 0x2d, 0x7d, 0x09, 0x25, 0xf9, 0x5a, 0x26, 0x99, 0x4b, 0x3b, - 0xf5, 0x40, 0xef, 0x3c, 0x98, 0xbf, 0x18, 0x9b, 0x59, 0xd7, 0xc8, 0x3e, 0x94, 0xe4, 0x8b, 0x34, - 0x6b, 0x28, 0xf5, 0x1e, 0xce, 0x1a, 0x4a, 0x3f, 0x62, 0xe5, 0xc9, 0xd4, 0x9b, 0x30, 0x7b, 0xb2, - 0xf4, 0xb3, 0x35, 0x7b, 0xb2, 0xec, 0x43, 0x72, 0x89, 0x44, 0xf0, 0xd9, 0x5c, 0x9e, 0x4c, 0x36, - 0x32, 0x01, 0xfe, 0x08, 0x1b, 0xef, 0x3c, 0xfd, 0x24, 0xdd, 0xe9, 0x9e, 0x87, 0x50, 0x89, 0xd7, - 0xc9, 0xc3, 0x8f, 0xbe, 0xae, 0x3a, 0x2b, 0x57, 0x2d, 0x4f, 0x8d, 0xed, 0x41, 0x11, 0x79, 0x0e, - 0xe9, 0xcc, 0x21, 0xaf, 0xb1, 0x99, 0xfb, 0x73, 0xd7, 0x12, 0x79, 0x39, 0x82, 0x4a, 0x4c, 0x98, - 0xb2, 0x2e, 0x65, 0x28, 0x5f, 0xd6, 0xa5, 0x2c, 0xcf, 0x42, 0x73, 0xc7, 0x50, 0x4b, 0xfc, 0xcb, - 0x41, 0x32, 0xc5, 0xfa, 0xe1, 0x1f, 0x20, 0x0b, 0x13, 0x7e, 0x06, 0xad, 0x0c, 0xb1, 0x20, 0x8f, - 0x33, 0xa1, 0x99, 0x4b, 0xc1, 0x3a, 0x9f, 0x2f, 0xd0, 0x8a, 0x77, 0x78, 0xa6, 0x91, 0x1d, 0x28, - 0x22, 0x6e, 0x65, 0x23, 0x99, 0xbc, 0x82, 0xb2, 0x91, 0x4c, 0x01, 0x1d, 0x36, 0x0a, 0x20, 0xcc, - 0xfc, 0xd4, 0x15, 0xa8, 0x9e, 0x31, 0x94, 0x04, 0xaa, 0xac, 0xa1, 0x14, 0x38, 0x19, 0x4b, 0x3b, - 0x5f, 0xfc, 0xeb, 0xeb, 0x8a, 0xf6, 0xcd, 0xfb, 0x15, 0xed, 0x1f, 0xef, 0x57, 0xb4, 0xff, 0xbc, - 0x5f, 0xd1, 0x7e, 0xff, 0xdf, 0x95, 0x25, 0x68, 0x07, 0x51, 0x7f, 0x93, 0xbb, 0x83, 0xf1, 0xe6, - 0x60, 0x8c, 0xff, 0x12, 0x9f, 0x95, 0xf0, 0xe7, 0xf9, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x06, - 0x3a, 0x49, 0xd6, 0xaf, 0x16, 0x00, 0x00, + // 2014 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4b, 0x73, 0x1b, 0x4b, + 0xf5, 0xf7, 0xe8, 0xad, 0xa3, 0xd1, 0x23, 0x1d, 0x5f, 0x67, 0xa2, 0x24, 0xb6, 0x33, 0xff, 0xdc, + 0xfb, 0x57, 0x1c, 0xb0, 0x83, 0x03, 0x59, 0xb0, 0x20, 0x75, 0xfd, 0xe0, 0xc6, 0x38, 0xbe, 0x36, + 0x2d, 0x13, 0x16, 0x2c, 0xa6, 0xc6, 0xa3, 0xb6, 0x3c, 0x68, 0x34, 0x33, 0x4c, 0xb7, 0xa4, 0x68, + 0xc3, 0x07, 0xe0, 0x13, 0x50, 0x6c, 0x28, 0x58, 0xdd, 0x62, 0x4d, 0x15, 0xc5, 0x37, 0xb8, 0x4b, + 0xd8, 0xb1, 0xa2, 0xa8, 0xf0, 0x45, 0xa8, 0x7e, 0x8c, 0x34, 0x33, 0x91, 0xa3, 0xd8, 0x05, 0x2b, + 0x75, 0x9f, 0x3e, 0x73, 0xfa, 0xf4, 0x79, 0xfc, 0xfa, 0xd7, 0x02, 0xe4, 0x0e, 0xc3, 0x20, 0x62, + 0x16, 0xa5, 0x2c, 0xbc, 0xd8, 0x0e, 0xa3, 0x80, 0x05, 0x48, 0x4f, 0xca, 0xda, 0xfa, 0x90, 0x30, + 0x3b, 0x5e, 0x6b, 0xd7, 0x49, 0x14, 0x05, 0xd1, 0x7c, 0x3a, 0x18, 0x47, 0xa1, 0x33, 0x9b, 0xae, + 0xf6, 0x83, 0x7e, 0x20, 0x86, 0x3b, 0x7c, 0xa4, 0xa4, 0xcd, 0x68, 0x44, 0x99, 0x18, 0x2a, 0x01, + 0x5c, 0xcc, 0x2c, 0x98, 0x1e, 0xdc, 0xe9, 0x4e, 0x5c, 0xe6, 0x5c, 0x9d, 0x04, 0x3d, 0x82, 0xc9, + 0xaf, 0x46, 0x84, 0x32, 0xf4, 0x1d, 0x28, 0x0c, 0x83, 0x1e, 0x31, 0xb4, 0x4d, 0xad, 0xd3, 0xd8, + 0x35, 0xb6, 0x53, 0x4e, 0x26, 0xd4, 0x85, 0x16, 0x7a, 0x0a, 0xc5, 0xc8, 0xf6, 0xfb, 0xc4, 0xc8, + 0x6d, 0x6a, 0x9d, 0xda, 0xee, 0xdd, 0xb4, 0x3a, 0xe6, 0x4b, 0x58, 0x6a, 0x98, 0xab, 0x80, 0x92, + 0xbb, 0xd1, 0x30, 0xf0, 0x29, 0x31, 0x5b, 0xd0, 0xf8, 0x8a, 0xb0, 0x84, 0x03, 0xe6, 0x2b, 0x68, + 0xce, 0x24, 0x52, 0xe9, 0x66, 0x3e, 0x99, 0x3b, 0x50, 0x14, 0x1b, 0xa3, 0x55, 0x28, 0x52, 0x66, + 0x47, 0x4c, 0x7c, 0xa7, 0x63, 0x39, 0x41, 0x2d, 0xc8, 0x13, 0xbf, 0x27, 0x1c, 0xd6, 0x31, 0x1f, + 0x9a, 0x7f, 0xc8, 0x43, 0xb9, 0xdb, 0x3d, 0x3f, 0x21, 0xcc, 0x46, 0x08, 0x0a, 0xa3, 0x91, 0xdb, + 0x53, 0x9f, 0x88, 0xf1, 0x0d, 0x0e, 0xc9, 0xb7, 0x74, 0x22, 0xe7, 0xc5, 0xae, 0x91, 0xdf, 0xd4, + 0x3a, 0x75, 0x2c, 0x27, 0x68, 0x0d, 0x4a, 0x1e, 0xf1, 0xfb, 0xec, 0xca, 0x28, 0x6c, 0x6a, 0x9d, + 0x02, 0x56, 0x33, 0x74, 0x0f, 0xca, 0xce, 0xa5, 0xe5, 0xdb, 0x43, 0x62, 0x14, 0x37, 0xb5, 0x4e, + 0x15, 0x97, 0x9c, 0xcb, 0xaf, 0xed, 0x21, 0x41, 0x0f, 0xa0, 0x1a, 0x91, 0xbe, 0x1b, 0xf8, 0x96, + 0xdb, 0x33, 0x4a, 0xe2, 0x9b, 0x8a, 0x14, 0x1c, 0xf5, 0xd0, 0x4b, 0xd0, 0xd5, 0x22, 0x09, 0x03, + 0xe7, 0xca, 0x28, 0x2b, 0xaf, 0x54, 0xb1, 0x60, 0xb1, 0x76, 0xc8, 0x97, 0x70, 0x2d, 0x9a, 0x4f, + 0xd0, 0x16, 0xdc, 0x21, 0x7e, 0xcf, 0x1a, 0x90, 0xa9, 0x45, 0xde, 0x39, 0xde, 0x88, 0xba, 0x63, + 0x62, 0x54, 0x36, 0xb5, 0x4e, 0x05, 0x37, 0x89, 0xdf, 0x3b, 0x26, 0xd3, 0xc3, 0x58, 0xcc, 0x1d, + 0x60, 0x01, 0xb3, 0x3d, 0x6b, 0x30, 0xa6, 0x46, 0x55, 0x3a, 0x20, 0x04, 0xc7, 0x63, 0x8a, 0x36, + 0xa0, 0x26, 0x17, 0x2f, 0xa6, 0x8c, 0x50, 0x03, 0xc4, 0x32, 0x08, 0xd1, 0x1e, 0x97, 0xa0, 0xef, + 0x43, 0xcd, 0x0e, 0x5d, 0x6b, 0x4c, 0x22, 0xea, 0x06, 0xbe, 0x51, 0x13, 0x69, 0xbb, 0xbb, 0x1d, + 0x17, 0xec, 0x97, 0x67, 0x47, 0x6f, 0xe5, 0x12, 0x06, 0x3b, 0x74, 0xd5, 0x98, 0xef, 0xe9, 0xb8, + 0xe1, 0x15, 0x89, 0x2c, 0x77, 0x6c, 0xe8, 0x22, 0xfe, 0x15, 0x29, 0x38, 0x1a, 0x9b, 0xbf, 0x86, + 0x1a, 0x26, 0x93, 0xc8, 0x65, 0x04, 0x8f, 0x3c, 0x82, 0x9e, 0x40, 0x23, 0xf0, 0xe4, 0x59, 0xc2, + 0x88, 0x5c, 0xba, 0xef, 0x54, 0xc2, 0xf4, 0xc0, 0xe3, 0x07, 0x39, 0x13, 0x32, 0xae, 0xe5, 0x93, + 0x49, 0x52, 0x4b, 0x66, 0x5d, 0xf7, 0xc9, 0x64, 0xae, 0xf5, 0x7f, 0x50, 0xe7, 0x5a, 0xcc, 0x1d, + 0x12, 0xca, 0xec, 0x61, 0x28, 0x72, 0x57, 0x10, 0x4a, 0xe7, 0xb1, 0xcc, 0xfc, 0x05, 0xd4, 0x7f, + 0x16, 0x7a, 0x81, 0xdd, 0x8b, 0xfb, 0xe4, 0x19, 0x14, 0x78, 0xc0, 0xc5, 0xbe, 0xb5, 0xdd, 0xcf, + 0x32, 0x35, 0x29, 0xab, 0xe9, 0xf5, 0x0a, 0x16, 0x4a, 0x68, 0x15, 0x0a, 0x3d, 0x9b, 0xd9, 0x72, + 0x7b, 0x2e, 0xe5, 0xb3, 0xbd, 0x32, 0x14, 0x9d, 0xab, 0x91, 0x3f, 0xe0, 0x4d, 0x10, 0x1b, 0x57, + 0x6d, 0xd1, 0x83, 0xfa, 0x91, 0xdf, 0x27, 0x94, 0xc5, 0xdb, 0x6d, 0x41, 0xd9, 0x09, 0x7c, 0x46, + 0xde, 0x31, 0xb5, 0x63, 0x6b, 0x16, 0xce, 0x7d, 0x29, 0xc7, 0xb1, 0x02, 0xfa, 0x7f, 0xc8, 0x53, + 0xca, 0x54, 0xb5, 0x2e, 0xf6, 0x0c, 0x73, 0x0d, 0x73, 0x00, 0xe8, 0x64, 0xe4, 0x31, 0xf7, 0xf6, + 0x5b, 0x3d, 0x85, 0x02, 0xa5, 0x8c, 0x1a, 0xb9, 0xcd, 0xfc, 0xf5, 0x7b, 0x09, 0x15, 0xf3, 0x25, + 0x34, 0xe2, 0x7d, 0x54, 0x5b, 0x3f, 0x81, 0xa2, 0x80, 0x34, 0xb5, 0x4d, 0x63, 0x3b, 0x06, 0xb8, + 0x43, 0xfe, 0x8b, 0xe5, 0xa2, 0xf9, 0x1b, 0x0d, 0x1a, 0xfb, 0xc1, 0x30, 0xb4, 0x9d, 0x99, 0x87, + 0xb3, 0x86, 0xd4, 0x96, 0x36, 0xe4, 0x63, 0xd0, 0x83, 0x11, 0x0b, 0x47, 0xcc, 0xf2, 0xc8, 0x98, + 0x78, 0x22, 0x28, 0x45, 0x5c, 0x93, 0xb2, 0x37, 0x5c, 0x94, 0x3c, 0x6f, 0x7e, 0xc9, 0x79, 0xcd, + 0x3b, 0xd0, 0x9c, 0xf9, 0xa2, 0x52, 0xf5, 0xf7, 0x3c, 0x34, 0x0f, 0x82, 0x89, 0x9f, 0x2c, 0x8e, + 0xef, 0x2e, 0xcf, 0xc0, 0x5e, 0xe1, 0xdb, 0x7f, 0x6e, 0xac, 0x88, 0x3c, 0x70, 0xd0, 0x11, 0x20, + 0x50, 0x15, 0x20, 0x20, 0xc6, 0x68, 0x8f, 0x77, 0xb9, 0x28, 0x78, 0x2b, 0x1a, 0x79, 0xc4, 0xa8, + 0x0b, 0x5b, 0xf7, 0x33, 0x47, 0x9d, 0xb7, 0x84, 0xb2, 0x57, 0x8b, 0x12, 0x5d, 0xf2, 0x0a, 0x9a, + 0x94, 0x05, 0x91, 0xdd, 0x27, 0xd6, 0x85, 0xed, 0x0c, 0x38, 0xec, 0x35, 0x84, 0x99, 0xb5, 0x6d, + 0x3e, 0x1f, 0x85, 0xdb, 0x5d, 0xb9, 0xbc, 0x27, 0x57, 0x71, 0x83, 0xa6, 0xe6, 0xa8, 0x03, 0xad, + 0xd8, 0x80, 0x63, 0x3b, 0x57, 0x84, 0xc3, 0xd1, 0x1d, 0xe1, 0x64, 0xac, 0xb9, 0xcf, 0xc5, 0x47, + 0x3d, 0xd4, 0x86, 0xaa, 0x4b, 0xad, 0xc8, 0x9e, 0x58, 0x83, 0xb1, 0xd1, 0x14, 0xa0, 0x52, 0x76, + 0x29, 0xb6, 0x27, 0xc7, 0x63, 0xf4, 0x02, 0x6a, 0x71, 0x63, 0xfb, 0x97, 0x81, 0xd1, 0x12, 0x2e, + 0xa0, 0xd8, 0x85, 0x7d, 0xd9, 0xe2, 0xfe, 0x65, 0x80, 0xc1, 0x99, 0x8d, 0xd1, 0x01, 0x3f, 0xbf, + 0x88, 0xa6, 0xc5, 0xa6, 0x21, 0x31, 0x90, 0x00, 0x91, 0xc7, 0xe9, 0xf3, 0x67, 0xe2, 0x7e, 0x3e, + 0x0d, 0x09, 0x8f, 0xc0, 0x6c, 0x92, 0xcc, 0xed, 0xdd, 0x25, 0xb9, 0xfd, 0x49, 0xa1, 0x52, 0x69, + 0x55, 0x71, 0x7e, 0x14, 0x79, 0x26, 0x86, 0xa2, 0xa8, 0x41, 0x64, 0x40, 0x79, 0x48, 0x28, 0xb5, + 0x55, 0xad, 0x55, 0x71, 0x3c, 0x45, 0x3b, 0x50, 0xe3, 0x21, 0x20, 0x96, 0x2c, 0xe1, 0xdc, 0xc2, + 0x12, 0x06, 0xa1, 0x22, 0xc6, 0xe6, 0x5f, 0x34, 0x68, 0xcd, 0xfd, 0x55, 0x2d, 0xb0, 0xb3, 0xbc, + 0x92, 0x55, 0x62, 0x55, 0x3d, 0xdf, 0x87, 0x8a, 0x4b, 0x2d, 0x32, 0x0c, 0xd9, 0x54, 0xec, 0x29, + 0xc2, 0x7c, 0xc8, 0xa7, 0xbc, 0x2b, 0xa4, 0x2f, 0xf9, 0x45, 0xb6, 0x92, 0x3d, 0x35, 0xbf, 0xa6, + 0x0a, 0x8b, 0xaf, 0xa9, 0x62, 0xf2, 0x9a, 0x32, 0x5f, 0xc1, 0xc3, 0x2e, 0x61, 0xb1, 0xef, 0xdd, + 0x90, 0x90, 0xde, 0x1b, 0x77, 0xe8, 0xce, 0xda, 0x71, 0x03, 0x6a, 0x94, 0x0b, 0x2d, 0x8f, 0x4b, + 0xc5, 0x51, 0x0a, 0x18, 0xe8, 0x4c, 0xcf, 0xdc, 0x80, 0x47, 0xd7, 0x18, 0x50, 0x3d, 0x14, 0x42, + 0xe1, 0xcc, 0x76, 0x23, 0x7e, 0x37, 0x0f, 0xc8, 0x54, 0x61, 0x39, 0x1f, 0x72, 0x4f, 0xc7, 0xb6, + 0x37, 0x22, 0x0a, 0xb9, 0xe5, 0x04, 0x7d, 0x0e, 0xb9, 0x40, 0xe2, 0x74, 0x23, 0xdb, 0x5e, 0xdc, + 0xce, 0xf6, 0xe9, 0x19, 0xce, 0x05, 0xa1, 0x79, 0x1f, 0x72, 0xa7, 0x67, 0xa8, 0x0c, 0xf9, 0xb3, + 0x11, 0x6b, 0xad, 0x20, 0x80, 0xd2, 0x01, 0xf1, 0x08, 0x23, 0x2d, 0xcd, 0xec, 0x02, 0xfc, 0x9c, + 0xf7, 0xc9, 0x9e, 0xcd, 0x9c, 0x2b, 0x71, 0xf5, 0x04, 0xc3, 0xa1, 0xcb, 0x2c, 0x46, 0x95, 0xff, + 0x15, 0x29, 0x38, 0xa7, 0xa8, 0x03, 0xc5, 0xd0, 0x76, 0xa3, 0x18, 0xe4, 0xd0, 0x87, 0xfb, 0x61, + 0xa9, 0x60, 0xfe, 0x51, 0x03, 0x5d, 0x58, 0xbd, 0xd5, 0x25, 0xf1, 0x1c, 0x8a, 0x17, 0xdc, 0x1b, + 0x55, 0x4b, 0x19, 0x9a, 0x33, 0xf7, 0xf6, 0xf5, 0x0a, 0x96, 0x8a, 0x37, 0x41, 0xae, 0xf9, 0x65, + 0xd3, 0x87, 0xba, 0xf2, 0x51, 0xd5, 0xe0, 0xd3, 0x34, 0x0c, 0x7f, 0xac, 0x6e, 0x9e, 0x41, 0x91, + 0xbb, 0xba, 0x04, 0xef, 0xa5, 0x0e, 0xbf, 0x32, 0xb1, 0x3d, 0x49, 0x44, 0xb9, 0x05, 0x79, 0xc6, + 0x3c, 0x15, 0x5f, 0x3e, 0xfc, 0xf4, 0xd0, 0xa2, 0x06, 0xe4, 0x18, 0x55, 0x37, 0x73, 0x8e, 0x51, + 0xf3, 0x1b, 0x0d, 0x9a, 0xb1, 0xf5, 0x5b, 0x45, 0xfb, 0x45, 0x3a, 0xda, 0x0f, 0xb2, 0x9d, 0x37, + 0xf9, 0xaf, 0x05, 0xfc, 0x97, 0xd0, 0x9a, 0x7b, 0xfa, 0x3f, 0x8e, 0xf9, 0x5f, 0x35, 0x58, 0x3b, + 0x18, 0x85, 0x9e, 0xeb, 0xd8, 0x8c, 0x1c, 0x10, 0x46, 0x9c, 0x5b, 0x5d, 0xeb, 0x0f, 0xa0, 0x2a, + 0xc8, 0x32, 0xa7, 0x4e, 0xaa, 0xf3, 0x2a, 0x42, 0x70, 0x4c, 0xa6, 0x9c, 0xb5, 0x2a, 0x1e, 0x29, + 0x82, 0xa0, 0xe3, 0x92, 0x64, 0x8f, 0x1c, 0x9b, 0x38, 0xd5, 0x0a, 0x7c, 0x6f, 0x2a, 0x80, 0xa5, + 0x82, 0xcb, 0x03, 0x32, 0x3d, 0xf5, 0xbd, 0x29, 0x32, 0xa1, 0x3e, 0x74, 0x7d, 0x6b, 0xde, 0x64, + 0x12, 0x61, 0x6a, 0x43, 0xd7, 0xdf, 0x57, 0x7d, 0x66, 0x9e, 0x40, 0xe9, 0x78, 0x7c, 0x23, 0x18, + 0x48, 0xb5, 0x6d, 0x3e, 0xdd, 0xb6, 0xe6, 0x9f, 0x34, 0xb8, 0xf7, 0x41, 0x28, 0x54, 0xf8, 0xbf, + 0x37, 0xa7, 0xd0, 0x1f, 0x21, 0x20, 0x31, 0x7b, 0x16, 0x69, 0x78, 0x0e, 0x55, 0xc1, 0x9c, 0x13, + 0x68, 0xbf, 0x30, 0x6b, 0x3c, 0x04, 0xf2, 0x8b, 0xad, 0xb8, 0xb8, 0xf3, 0x22, 0x71, 0xab, 0x69, + 0x6d, 0x79, 0xd4, 0x18, 0x39, 0x7e, 0x9f, 0x87, 0xd2, 0xf1, 0xdb, 0xf8, 0x05, 0x22, 0xc8, 0x80, + 0x96, 0x20, 0x03, 0x8f, 0x41, 0x17, 0xf0, 0x6f, 0x05, 0x97, 0x97, 0x94, 0x30, 0xc1, 0xa8, 0x0b, + 0xb8, 0x26, 0x64, 0xa7, 0x42, 0x94, 0x00, 0xef, 0x5c, 0xea, 0x8d, 0x31, 0xfb, 0x54, 0xad, 0xea, + 0x89, 0x4f, 0xdf, 0x48, 0x95, 0x06, 0xe4, 0x9c, 0x4b, 0x11, 0xbf, 0x2a, 0xce, 0x39, 0x97, 0x3c, + 0xac, 0x2e, 0xb5, 0x7a, 0x02, 0x2a, 0x55, 0x22, 0x2b, 0x2e, 0x95, 0xd0, 0xc9, 0x93, 0x2c, 0x4b, + 0x83, 0xc5, 0xcc, 0xbf, 0x2c, 0xe6, 0xe7, 0x14, 0x3d, 0x02, 0x88, 0x88, 0xbc, 0x14, 0x67, 0x19, + 0xae, 0x2a, 0xc9, 0x39, 0x4d, 0x17, 0x55, 0xe9, 0xfa, 0xa2, 0x2a, 0xa7, 0x8a, 0x6a, 0x0d, 0x4a, + 0xf4, 0xca, 0xde, 0xfd, 0xc1, 0x4b, 0xf1, 0x54, 0xd1, 0xb1, 0x9a, 0xf1, 0xd7, 0x8c, 0xb4, 0x46, + 0x7d, 0x3b, 0xa4, 0x57, 0x81, 0x70, 0x48, 0xbe, 0x54, 0x9a, 0x62, 0xa1, 0xab, 0xe4, 0xe7, 0x14, + 0xed, 0x41, 0xcb, 0x09, 0x86, 0x61, 0x44, 0x28, 0x7f, 0x68, 0x48, 0x3e, 0x51, 0x17, 0x97, 0xc7, + 0xbd, 0x19, 0x0b, 0x99, 0xaf, 0x0b, 0x16, 0xd1, 0x74, 0xd2, 0x02, 0xf3, 0xcf, 0x79, 0xd0, 0xbf, + 0x0c, 0x43, 0x6f, 0x1a, 0xf7, 0x53, 0x27, 0x85, 0x36, 0xd9, 0xec, 0xbe, 0x95, 0xcc, 0x57, 0x40, + 0xcd, 0x56, 0xdc, 0xc1, 0xfa, 0xc2, 0x42, 0x78, 0x9b, 0x68, 0xe0, 0x0f, 0x68, 0x5f, 0xee, 0x16, + 0xb4, 0xef, 0x47, 0x50, 0x4f, 0xda, 0xa0, 0x46, 0x5d, 0xec, 0x7b, 0xbd, 0x11, 0xac, 0x27, 0x3e, + 0xa7, 0x0b, 0x59, 0x5f, 0x71, 0x21, 0xeb, 0x5b, 0x40, 0x30, 0xf3, 0x37, 0x22, 0x98, 0x09, 0x50, + 0x2a, 0x2c, 0x03, 0xa5, 0x0c, 0x8d, 0xac, 0x7d, 0x0a, 0x8d, 0x34, 0x07, 0x50, 0x57, 0x59, 0xbb, + 0x2d, 0xe3, 0x9a, 0x41, 0x75, 0x6e, 0x19, 0x54, 0x9b, 0x5f, 0x80, 0xbe, 0xef, 0x11, 0x3b, 0x8a, + 0x4b, 0x64, 0x0d, 0x4a, 0x89, 0xd7, 0x69, 0x15, 0xab, 0x99, 0xf9, 0x43, 0xa8, 0x2b, 0xbd, 0x1b, + 0x5f, 0x07, 0x5b, 0x4f, 0x00, 0xe6, 0xff, 0x78, 0x70, 0x4a, 0xf3, 0x75, 0x10, 0x0d, 0x6d, 0x4f, + 0xd2, 0x9b, 0x23, 0xf1, 0x59, 0x4b, 0xdb, 0xda, 0x81, 0xbb, 0x0b, 0xb8, 0x31, 0x57, 0x79, 0x43, + 0xfa, 0xb6, 0x33, 0x6d, 0xad, 0x20, 0x1d, 0x2a, 0xc7, 0x64, 0x4a, 0x43, 0xdb, 0x21, 0x2d, 0x6d, + 0xf7, 0x77, 0x15, 0xa8, 0xca, 0xaf, 0xbb, 0xdd, 0x73, 0xf4, 0xd3, 0xd4, 0x26, 0x1b, 0xd7, 0xfe, + 0xe1, 0x22, 0x4d, 0xb7, 0x37, 0xaf, 0x57, 0x50, 0x04, 0x6f, 0x05, 0xbd, 0x86, 0xb2, 0xfa, 0x5b, + 0x07, 0x3d, 0x4c, 0xab, 0xa7, 0xff, 0xff, 0x69, 0x3f, 0xba, 0x66, 0x75, 0x66, 0xe9, 0x2b, 0x28, + 0xc9, 0xd7, 0x32, 0xca, 0x5c, 0xda, 0xa9, 0x07, 0x7a, 0xfb, 0xe1, 0xe2, 0xc5, 0xd8, 0x4c, 0x47, + 0x43, 0x87, 0x50, 0x92, 0x2f, 0xd2, 0xac, 0xa1, 0xd4, 0x7b, 0x38, 0x6b, 0x28, 0xfd, 0x88, 0x95, + 0x27, 0x53, 0x6f, 0xc2, 0xec, 0xc9, 0xd2, 0xcf, 0xd6, 0xec, 0xc9, 0xb2, 0x0f, 0xc9, 0x15, 0x14, + 0xc1, 0x67, 0x0b, 0x79, 0x32, 0xda, 0xca, 0x04, 0xf8, 0x23, 0x6c, 0xbc, 0xfd, 0xec, 0x93, 0x74, + 0x67, 0x7b, 0x1e, 0x43, 0x25, 0x5e, 0x47, 0x8f, 0x3e, 0xfa, 0xba, 0x6a, 0xaf, 0x5f, 0xb7, 0x3c, + 0x33, 0x76, 0x00, 0x45, 0xc1, 0x73, 0x50, 0x7b, 0x01, 0x79, 0x8d, 0xcd, 0x3c, 0x58, 0xb8, 0x96, + 0xc8, 0xcb, 0x09, 0x54, 0x62, 0xc2, 0x94, 0x75, 0x29, 0x43, 0xf9, 0xb2, 0x2e, 0x65, 0x79, 0x96, + 0x30, 0x77, 0x0a, 0xb5, 0xc4, 0xbf, 0x1c, 0x28, 0x53, 0xac, 0x1f, 0xfe, 0x01, 0xb2, 0x34, 0xe1, + 0x17, 0xd0, 0xcc, 0x10, 0x0b, 0xf4, 0x24, 0x13, 0x9a, 0x85, 0x14, 0xac, 0xfd, 0xf9, 0x12, 0xad, + 0x78, 0x87, 0xe7, 0x1a, 0xda, 0x83, 0xa2, 0xc0, 0xad, 0x6c, 0x24, 0x93, 0x57, 0x50, 0x36, 0x92, + 0x29, 0xa0, 0x13, 0x8d, 0x02, 0x02, 0x66, 0x7e, 0xec, 0x72, 0x54, 0xcf, 0x18, 0x4a, 0x02, 0x55, + 0xd6, 0x50, 0x0a, 0x9c, 0xcc, 0x95, 0xbd, 0x2f, 0xfe, 0xf1, 0x4d, 0x45, 0xfb, 0xf6, 0xfd, 0xba, + 0xf6, 0xb7, 0xf7, 0xeb, 0xda, 0xbf, 0xde, 0xaf, 0x6b, 0xbf, 0xfd, 0xf7, 0xfa, 0x0a, 0xb4, 0x82, + 0xa8, 0xbf, 0xcd, 0xdc, 0xc1, 0x78, 0x7b, 0x30, 0x16, 0x7f, 0x28, 0x5f, 0x94, 0xc4, 0xcf, 0x8b, + 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x14, 0x60, 0x56, 0x1f, 0xda, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3290,6 +3298,18 @@ func (m *SwitchModeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.Range != nil { + { + size, err := m.Range.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintImportSstpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } if m.Mode != 0 { i = encodeVarintImportSstpb(dAtA, i, uint64(m.Mode)) i-- @@ -5180,6 +5200,10 @@ func (m *SwitchModeRequest) Size() (n int) { if m.Mode != 0 { n += 1 + sovImportSstpb(uint64(m.Mode)) } + if m.Range != nil { + l = m.Range.Size() + n += 1 + l + sovImportSstpb(uint64(l)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -6064,6 +6088,42 @@ func (m *SwitchModeRequest) Unmarshal(dAtA []byte) error { break } } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Range", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowImportSstpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthImportSstpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthImportSstpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Range == nil { + m.Range = &Range{} + } + if err := m.Range.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipImportSstpb(dAtA[iNdEx:]) diff --git a/proto/import_sstpb.proto b/proto/import_sstpb.proto index 3ed20a79f..e26b40145 100644 --- a/proto/import_sstpb.proto +++ b/proto/import_sstpb.proto @@ -72,6 +72,7 @@ enum SwitchMode { message SwitchModeRequest { SwitchMode mode = 1; + Range range = 2; } message SwitchModeResponse { diff --git a/scripts/proto.lock b/scripts/proto.lock index 1b486b547..71a27149b 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -6151,6 +6151,11 @@ "id": 1, "name": "mode", "type": "SwitchMode" + }, + { + "id": 2, + "name": "range", + "type": "Range" } ] }, From e1ba3b628ed96b26eb700f8cdbed455556062b79 Mon Sep 17 00:00:00 2001 From: xufei Date: Wed, 5 Jul 2023 12:57:41 +0800 Subject: [PATCH 2/4] add `gather_id` to `DisaggTaskMeta` (#1147) * save work Signed-off-by: xufei * address comments Signed-off-by: xufei --------- Signed-off-by: xufei --- pkg/configpb/configpb.pb.gw.go | 22 +++- pkg/disaggregated/disaggregated.pb.go | 183 +++++++++++++++----------- proto/disaggregated.proto | 3 +- proto/mpp.proto | 2 +- scripts/proto.lock | 5 + 5 files changed, 137 insertions(+), 78 deletions(-) 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/disaggregated/disaggregated.pb.go b/pkg/disaggregated/disaggregated.pb.go index d76bfc7f7..322243880 100644 --- a/pkg/disaggregated/disaggregated.pb.go +++ b/pkg/disaggregated/disaggregated.pb.go @@ -614,7 +614,8 @@ func (m *GetDisaggConfigResponse) GetS3Config() *DisaggS3Config { type DisaggTaskMeta struct { StartTs uint64 `protobuf:"varint,1,opt,name=start_ts,json=startTs,proto3" json:"start_ts,omitempty"` - // query_ts + server_id + local_query_id to represent a global unique query. + // gather_id + query_ts + server_id + local_query_id to represent a global unique query. + GatherId int64 `protobuf:"varint,9,opt,name=gather_id,json=gatherId,proto3" json:"gather_id,omitempty"` QueryTs uint64 `protobuf:"varint,2,opt,name=query_ts,json=queryTs,proto3" json:"query_ts,omitempty"` ServerId uint64 `protobuf:"varint,3,opt,name=server_id,json=serverId,proto3" json:"server_id,omitempty"` LocalQueryId uint64 `protobuf:"varint,4,opt,name=local_query_id,json=localQueryId,proto3" json:"local_query_id,omitempty"` @@ -667,6 +668,13 @@ func (m *DisaggTaskMeta) GetStartTs() uint64 { return 0 } +func (m *DisaggTaskMeta) GetGatherId() int64 { + if m != nil { + return m.GatherId + } + return 0 +} + func (m *DisaggTaskMeta) GetQueryTs() uint64 { if m != nil { return m.QueryTs @@ -1481,79 +1489,79 @@ func init() { func init() { proto.RegisterFile("disaggregated.proto", fileDescriptor_1026192e39a9f8dc) } var fileDescriptor_1026192e39a9f8dc = []byte{ - // 1141 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xdd, 0x72, 0xdb, 0x44, - 0x14, 0x8e, 0x62, 0xc7, 0x92, 0x8f, 0x9c, 0xd2, 0x6e, 0x4b, 0xa3, 0xa4, 0x34, 0x04, 0x0d, 0x33, - 0x98, 0x9b, 0xcc, 0x34, 0x29, 0x30, 0xd3, 0x81, 0x32, 0xfd, 0x25, 0x86, 0x94, 0x86, 0x4d, 0xe8, - 0x70, 0xa7, 0xd9, 0x48, 0xa7, 0x8e, 0x46, 0xb2, 0x56, 0xd9, 0x5d, 0x07, 0xf2, 0x14, 0xdc, 0x32, - 0x3c, 0x04, 0x0f, 0x00, 0x2f, 0xc0, 0x1d, 0x3c, 0x02, 0x53, 0x78, 0x10, 0x66, 0x7f, 0x64, 0xc7, - 0xae, 0xf9, 0xe9, 0xc0, 0x95, 0xf5, 0x9d, 0xbf, 0x3d, 0xe7, 0x3b, 0x7b, 0xce, 0x1a, 0xae, 0x66, - 0xb9, 0x64, 0xc3, 0xa1, 0xc0, 0x21, 0x53, 0x98, 0x6d, 0xd7, 0x82, 0x2b, 0x4e, 0x56, 0x67, 0x84, - 0x1b, 0x57, 0x52, 0x5e, 0x0b, 0x9e, 0xa2, 0x94, 0x5c, 0x58, 0x8b, 0x8d, 0xd5, 0xe2, 0x4c, 0xd4, - 0x69, 0x7d, 0x6c, 0x61, 0xfc, 0xa3, 0x07, 0xbd, 0xc3, 0xdd, 0x7d, 0x9e, 0x16, 0x14, 0xe5, 0xb8, - 0x54, 0x64, 0x07, 0x7c, 0x39, 0x4e, 0xb5, 0x4b, 0xe4, 0x6d, 0x79, 0xfd, 0x70, 0xe7, 0xfa, 0xf6, - 0xec, 0x41, 0x87, 0x56, 0xbb, 0xb7, 0x44, 0x1b, 0x43, 0xf2, 0x3e, 0x74, 0x2b, 0xae, 0x12, 0xfe, - 0x75, 0x85, 0x22, 0x5a, 0x36, 0x5e, 0x6b, 0x73, 0x5e, 0x9f, 0x73, 0xf5, 0x54, 0xab, 0xf7, 0x96, - 0x68, 0x50, 0xb9, 0x6f, 0xf2, 0x1e, 0x04, 0x29, 0xaf, 0x9e, 0x97, 0x79, 0xaa, 0xa2, 0xd6, 0x42, - 0xb7, 0x07, 0x4e, 0xad, 0xdd, 0x1a, 0xd3, 0xfb, 0x3e, 0xac, 0xa0, 0x10, 0x5c, 0xc4, 0x5d, 0xf0, - 0x5d, 0x36, 0x31, 0x40, 0xd0, 0x1c, 0x11, 0xc7, 0x10, 0x34, 0x7e, 0xe4, 0x3a, 0x74, 0x04, 0x32, - 0xc9, 0x2b, 0x53, 0x4d, 0x97, 0x3a, 0x14, 0x9f, 0xc1, 0x95, 0x23, 0x71, 0x7e, 0x2f, 0xcb, 0x6c, - 0xe9, 0xa7, 0x63, 0x94, 0x8a, 0xc4, 0xb0, 0x9a, 0x31, 0xc5, 0x92, 0xe7, 0x79, 0x89, 0x49, 0x81, - 0xe7, 0xc6, 0xa7, 0x47, 0x43, 0x2d, 0x7c, 0x9c, 0x97, 0xf8, 0x19, 0x9e, 0x6b, 0x9b, 0x92, 0xa7, - 0x45, 0x22, 0x15, 0x17, 0x98, 0xe4, 0x99, 0x49, 0xbc, 0x4d, 0x43, 0x2d, 0x3c, 0xd4, 0xb2, 0x41, - 0x46, 0xd6, 0x21, 0xb0, 0x36, 0x78, 0x1a, 0xb5, 0x8d, 0xda, 0x37, 0x6a, 0x3c, 0x8d, 0x07, 0x40, - 0x2e, 0x9e, 0x2b, 0x6b, 0x5e, 0x49, 0x24, 0xbb, 0x3a, 0x4b, 0x4d, 0xbf, 0xe3, 0xfc, 0xc6, 0x3c, - 0xe7, 0x17, 0x3a, 0x44, 0x9d, 0x69, 0x7c, 0x07, 0xae, 0x1d, 0x89, 0xf3, 0x27, 0x4c, 0x14, 0x0f, - 0xb1, 0x44, 0x85, 0xaf, 0x50, 0x45, 0xbc, 0x0f, 0xaf, 0xcf, 0xf9, 0xfe, 0x97, 0x4c, 0x22, 0xb8, - 0xfe, 0x09, 0xaa, 0x87, 0xc6, 0x50, 0x33, 0x9f, 0x0f, 0x5d, 0x2e, 0xf1, 0x57, 0x70, 0xc9, 0x8a, - 0x0f, 0x77, 0xad, 0x42, 0x37, 0xe4, 0x78, 0x9c, 0x16, 0xa8, 0x9a, 0x86, 0x58, 0x44, 0x08, 0xb4, - 0x05, 0xe7, 0xca, 0x5c, 0x9f, 0x2e, 0x35, 0xdf, 0x64, 0x03, 0x02, 0xac, 0xb2, 0x9a, 0xe7, 0x95, - 0xbd, 0x1f, 0x5d, 0x3a, 0xc1, 0xf1, 0x97, 0xb0, 0xf6, 0xd2, 0x99, 0xae, 0x86, 0x3b, 0xd0, 0x95, - 0xbb, 0x49, 0x6a, 0x84, 0xae, 0x8c, 0x9b, 0x73, 0x65, 0xcc, 0x26, 0x45, 0x03, 0xe9, 0xbe, 0xe2, - 0xef, 0x97, 0x9b, 0x8c, 0x8f, 0x98, 0x2c, 0x9e, 0xa0, 0x62, 0xba, 0x9b, 0x52, 0x31, 0xa1, 0x12, - 0x65, 0x47, 0xa2, 0x4d, 0x7d, 0x83, 0x8f, 0xa4, 0x56, 0x9d, 0x8e, 0x51, 0x9c, 0x6b, 0xd5, 0xb2, - 0x55, 0x19, 0x7c, 0x24, 0xc9, 0x0d, 0xe8, 0x4a, 0x14, 0x67, 0x28, 0xa6, 0x77, 0x24, 0xb0, 0x82, - 0x41, 0x46, 0xde, 0x86, 0x4b, 0x25, 0x4f, 0x59, 0x99, 0x58, 0xef, 0x3c, 0x73, 0xd7, 0xa4, 0x67, - 0xa4, 0x5f, 0x68, 0xe1, 0x20, 0x23, 0x6b, 0xe0, 0x2b, 0x26, 0x0b, 0xad, 0x5e, 0xd9, 0xf2, 0xfa, - 0x2d, 0xda, 0xd1, 0x70, 0x90, 0x91, 0x37, 0x21, 0xc4, 0x6f, 0x30, 0x1d, 0x2b, 0x6e, 0xa2, 0x77, - 0x0c, 0x35, 0xd0, 0x88, 0xac, 0x41, 0x81, 0xe7, 0xb2, 0x66, 0xa9, 0xb9, 0xa2, 0xfe, 0x96, 0xd7, - 0x5f, 0xa5, 0xd0, 0x88, 0x06, 0x19, 0xb9, 0x0d, 0x21, 0xab, 0xf3, 0xe4, 0x0c, 0x85, 0xcc, 0x79, - 0x15, 0x05, 0x5b, 0x5e, 0xff, 0xd2, 0xce, 0xd5, 0xed, 0x66, 0x37, 0xdc, 0x3b, 0x18, 0x3c, 0xb3, - 0x2a, 0x0a, 0xac, 0xce, 0xdd, 0x77, 0xfc, 0x01, 0xbc, 0x66, 0xb9, 0xa1, 0xc8, 0xb2, 0x47, 0x7a, - 0x04, 0x75, 0xdb, 0x52, 0x9e, 0xa1, 0x21, 0x66, 0x85, 0x9a, 0x6f, 0x72, 0x19, 0x5a, 0x23, 0x39, - 0x74, 0x9d, 0xd4, 0x9f, 0xf1, 0x1f, 0x1e, 0x44, 0x8f, 0xa4, 0x62, 0xc7, 0x65, 0x2e, 0x4f, 0xa6, - 0xf4, 0xda, 0x10, 0x1f, 0x43, 0xcf, 0x8c, 0x73, 0x22, 0x70, 0x98, 0xbb, 0x41, 0x0d, 0x77, 0x36, - 0xe6, 0x3a, 0x66, 0x6c, 0xa9, 0xb1, 0xd8, 0x5b, 0xa2, 0x21, 0x4e, 0xe1, 0x34, 0x80, 0x1e, 0x32, - 0xcc, 0xdc, 0x06, 0x5a, 0x18, 0x60, 0xdf, 0x58, 0x4c, 0x02, 0x58, 0x48, 0x3e, 0x04, 0x0b, 0x13, - 0xae, 0x4e, 0x50, 0x44, 0xa9, 0xf1, 0x5f, 0x5f, 0xe4, 0xff, 0x54, 0x1b, 0xec, 0x2d, 0x51, 0xc0, - 0x09, 0xba, 0x1f, 0x40, 0xc7, 0x20, 0x19, 0xdf, 0x85, 0xf0, 0x42, 0x9a, 0x0d, 0x0f, 0xde, 0x84, - 0x07, 0x72, 0x13, 0xc0, 0x16, 0x99, 0xe4, 0x99, 0xbe, 0x31, 0xad, 0x7e, 0x9b, 0x76, 0xad, 0x64, - 0x90, 0xc9, 0xf8, 0x53, 0xe7, 0xef, 0xd2, 0x7a, 0xd9, 0xff, 0x5d, 0xe8, 0x4c, 0x6a, 0x6c, 0xf5, - 0xc3, 0x9d, 0x2b, 0x93, 0x8e, 0x69, 0x97, 0x41, 0xf5, 0x9c, 0x53, 0x67, 0x10, 0xef, 0x00, 0x4c, - 0x33, 0xfe, 0x97, 0x6d, 0xfa, 0x69, 0x19, 0x36, 0x16, 0xb4, 0xa9, 0x59, 0x2c, 0xb7, 0xa0, 0x3d, - 0x42, 0xc5, 0xfe, 0x76, 0xa4, 0x9a, 0xa9, 0xa1, 0xc6, 0x94, 0x44, 0xe0, 0xb3, 0x2c, 0x13, 0xfa, - 0x35, 0xb1, 0xe7, 0x34, 0x50, 0xcf, 0x87, 0xca, 0x47, 0xc8, 0xc7, 0x2a, 0x91, 0x66, 0x3e, 0x5a, - 0x34, 0x70, 0x82, 0x43, 0x72, 0x0b, 0x7c, 0xcb, 0x8a, 0x8c, 0xda, 0xa6, 0xd0, 0xb5, 0xed, 0x8b, - 0x2f, 0x99, 0xe5, 0xd7, 0x94, 0xdb, 0xd8, 0x69, 0x6a, 0x65, 0x7a, 0x82, 0x23, 0xa6, 0x2f, 0xb5, - 0x9b, 0x97, 0xae, 0x95, 0x3c, 0x43, 0x41, 0xee, 0xc2, 0xaa, 0xae, 0x0b, 0x93, 0x26, 0x6e, 0xc7, - 0xc4, 0x5d, 0x9f, 0x89, 0x7b, 0xa4, 0x2d, 0x6c, 0x70, 0x49, 0x7b, 0xea, 0x02, 0x22, 0x6f, 0x41, - 0x0f, 0x2b, 0x4d, 0x5b, 0x96, 0xd4, 0x25, 0xab, 0xcc, 0x48, 0xf5, 0x68, 0xe8, 0x64, 0x07, 0x25, - 0xab, 0xe2, 0x5f, 0x3c, 0xb8, 0xb1, 0x90, 0x3d, 0xb7, 0x96, 0x3e, 0x72, 0xcf, 0x96, 0xe3, 0xef, - 0x9d, 0xf9, 0xfb, 0xf5, 0x17, 0xf3, 0x41, 0xad, 0x97, 0x5d, 0x43, 0x33, 0x6f, 0x8e, 0x2f, 0xdd, - 0x7b, 0x73, 0x17, 0x42, 0x59, 0xb1, 0x5a, 0x9e, 0x70, 0xd5, 0xec, 0x92, 0x7f, 0xec, 0x0f, 0x34, - 0x1e, 0x83, 0x4c, 0xef, 0x64, 0x53, 0xac, 0x8c, 0x56, 0xb6, 0x5a, 0xfd, 0x1e, 0x75, 0x28, 0xde, - 0x87, 0xb5, 0x07, 0xac, 0x4a, 0xb1, 0xfc, 0x3f, 0xee, 0x42, 0xbc, 0x01, 0xd1, 0xcb, 0xd1, 0x2c, - 0x37, 0xf1, 0x0f, 0x1e, 0xac, 0x3d, 0x46, 0x95, 0xba, 0xe2, 0x0f, 0xd8, 0x10, 0x65, 0x73, 0xd4, - 0x5c, 0x75, 0xde, 0xab, 0x56, 0xb7, 0x0e, 0x81, 0x6d, 0x7d, 0x6e, 0x57, 0x43, 0x8b, 0xfa, 0x06, - 0x0f, 0x32, 0x73, 0x69, 0x70, 0x38, 0xc2, 0x4a, 0x4d, 0x59, 0xed, 0x3a, 0x89, 0xf5, 0xac, 0xd9, - 0x10, 0xcd, 0xb0, 0xb6, 0xcd, 0xb0, 0xfa, 0x1a, 0xeb, 0x51, 0xfd, 0xd6, 0x83, 0xd0, 0x64, 0x79, - 0xc0, 0xcc, 0xf3, 0x75, 0x7b, 0xb6, 0xb9, 0x9b, 0x0b, 0xd3, 0x9b, 0xac, 0xcd, 0xa6, 0xa7, 0xd7, - 0x60, 0x45, 0x07, 0xb4, 0xab, 0xa0, 0x47, 0x2d, 0xd0, 0xed, 0x48, 0x4f, 0xc6, 0x55, 0xa1, 0xe7, - 0xc2, 0xb4, 0xc3, 0x22, 0xf2, 0x06, 0x74, 0xe5, 0x78, 0x34, 0x62, 0x22, 0x47, 0x9b, 0x4f, 0x8f, - 0x4e, 0x05, 0xf7, 0xe3, 0x9f, 0x5f, 0x6c, 0x7a, 0xbf, 0xbe, 0xd8, 0xf4, 0x7e, 0x7b, 0xb1, 0xe9, - 0x7d, 0xf7, 0xfb, 0xe6, 0x12, 0x5c, 0xe6, 0x62, 0xb8, 0xad, 0xf2, 0xe2, 0x6c, 0xbb, 0x38, 0x33, - 0xff, 0xf6, 0x8e, 0x3b, 0xe6, 0x67, 0xf7, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4c, 0xd1, 0xfd, - 0x96, 0x3c, 0x0a, 0x00, 0x00, + // 1150 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xdd, 0x6e, 0xdc, 0x44, + 0x14, 0x8e, 0xb3, 0x9b, 0xb5, 0x7d, 0xbc, 0x29, 0xed, 0xb4, 0x34, 0x4e, 0x4a, 0x43, 0xb0, 0x90, + 0x58, 0x6e, 0x22, 0x35, 0x29, 0x20, 0x55, 0x50, 0xd4, 0x5f, 0xb2, 0x90, 0xd2, 0x30, 0x09, 0x15, + 0x77, 0xd6, 0xc4, 0x3e, 0xdd, 0x58, 0xf6, 0x7a, 0x9c, 0x99, 0xd9, 0x40, 0x9e, 0x82, 0x5b, 0x9e, + 0x82, 0x5b, 0x24, 0x78, 0x01, 0xee, 0xe0, 0x11, 0x50, 0xe1, 0x41, 0xd0, 0xfc, 0x78, 0x93, 0x6c, + 0x97, 0x9f, 0x0a, 0xae, 0xd6, 0xdf, 0x99, 0xf3, 0x9d, 0x39, 0xff, 0xb3, 0x70, 0x35, 0x2f, 0x24, + 0x1b, 0x8d, 0x04, 0x8e, 0x98, 0xc2, 0x7c, 0xb3, 0x11, 0x5c, 0x71, 0xb2, 0x7c, 0x41, 0xb8, 0x76, + 0x25, 0xe3, 0x8d, 0xe0, 0x19, 0x4a, 0xc9, 0x85, 0xd5, 0x58, 0x5b, 0x2e, 0x4f, 0x44, 0x93, 0x35, + 0x87, 0x16, 0x26, 0x3f, 0x7a, 0xd0, 0xdf, 0xdf, 0xde, 0xe5, 0x59, 0x49, 0x51, 0x4e, 0x2a, 0x45, + 0xb6, 0xc0, 0x97, 0x93, 0x4c, 0x53, 0x62, 0x6f, 0xc3, 0x1b, 0x44, 0x5b, 0xd7, 0x37, 0x2f, 0x5e, + 0xb4, 0x6f, 0x4f, 0x77, 0x16, 0x68, 0xab, 0x48, 0xde, 0x87, 0xb0, 0xe6, 0x2a, 0xe5, 0x5f, 0xd7, + 0x28, 0xe2, 0x45, 0xc3, 0x5a, 0x99, 0x61, 0x7d, 0xce, 0xd5, 0x53, 0x7d, 0xbc, 0xb3, 0x40, 0x83, + 0xda, 0x7d, 0x93, 0xf7, 0x20, 0xc8, 0x78, 0xfd, 0xbc, 0x2a, 0x32, 0x15, 0x77, 0xe6, 0xd2, 0x1e, + 0xb8, 0x63, 0x4d, 0x6b, 0x55, 0xef, 0xfb, 0xb0, 0x84, 0x42, 0x70, 0x91, 0x84, 0xe0, 0x3b, 0x6f, + 0x12, 0x80, 0xa0, 0xbd, 0x22, 0x49, 0x20, 0x68, 0x79, 0xe4, 0x3a, 0xf4, 0x04, 0x32, 0xc9, 0x6b, + 0x13, 0x4d, 0x48, 0x1d, 0x4a, 0x4e, 0xe0, 0xca, 0x81, 0x38, 0xbd, 0x97, 0xe7, 0x36, 0xf4, 0xe3, + 0x09, 0x4a, 0x45, 0x12, 0x58, 0xce, 0x99, 0x62, 0xe9, 0xf3, 0xa2, 0xc2, 0xb4, 0xc4, 0x53, 0xc3, + 0xe9, 0xd3, 0x48, 0x0b, 0x1f, 0x17, 0x15, 0x7e, 0x86, 0xa7, 0x5a, 0xa7, 0xe2, 0x59, 0x99, 0x4a, + 0xc5, 0x05, 0xa6, 0x45, 0x6e, 0x1c, 0xef, 0xd2, 0x48, 0x0b, 0xf7, 0xb5, 0x6c, 0x98, 0x93, 0x55, + 0x08, 0xac, 0x0e, 0x1e, 0xc7, 0x5d, 0x73, 0xec, 0x9b, 0x63, 0x3c, 0x4e, 0x86, 0x40, 0xce, 0xdf, + 0x2b, 0x1b, 0x5e, 0x4b, 0x24, 0xdb, 0xda, 0x4b, 0x9d, 0x7e, 0x97, 0xf3, 0x1b, 0xb3, 0x39, 0x3f, + 0x57, 0x21, 0xea, 0x54, 0x93, 0x3b, 0x70, 0xed, 0x40, 0x9c, 0x3e, 0x61, 0xa2, 0x7c, 0x88, 0x15, + 0x2a, 0x7c, 0x85, 0x28, 0x92, 0x5d, 0x78, 0x7d, 0x86, 0xfb, 0x5f, 0x3c, 0x89, 0xe1, 0xfa, 0x27, + 0xa8, 0x1e, 0x1a, 0x45, 0x9d, 0xf9, 0x62, 0xe4, 0x7c, 0x49, 0xbe, 0x82, 0x4b, 0x56, 0xbc, 0xbf, + 0x6d, 0x0f, 0x74, 0x41, 0x0e, 0x27, 0x59, 0x89, 0xaa, 0x2d, 0x88, 0x45, 0x84, 0x40, 0x57, 0x70, + 0xae, 0x4c, 0xfb, 0x84, 0xd4, 0x7c, 0x93, 0x35, 0x08, 0xb0, 0xce, 0x1b, 0x5e, 0xd4, 0xb6, 0x3f, + 0x42, 0x3a, 0xc5, 0xc9, 0x97, 0xb0, 0xf2, 0xd2, 0x9d, 0x2e, 0x86, 0x3b, 0x10, 0xca, 0xed, 0x34, + 0x33, 0x42, 0x17, 0xc6, 0xcd, 0x99, 0x30, 0x2e, 0x3a, 0x45, 0x03, 0xe9, 0xbe, 0x92, 0x1f, 0x16, + 0x5b, 0x8f, 0x0f, 0x98, 0x2c, 0x9f, 0xa0, 0x62, 0xba, 0x9a, 0x52, 0x31, 0xa1, 0x52, 0x65, 0x47, + 0xa2, 0x4b, 0x7d, 0x83, 0x0f, 0x24, 0xb9, 0x01, 0xe1, 0x88, 0xa9, 0x23, 0x14, 0xba, 0x11, 0xc2, + 0x0d, 0x6f, 0xd0, 0xa1, 0x81, 0x15, 0xd8, 0x2e, 0x38, 0x9e, 0xa0, 0x38, 0xd5, 0xbc, 0x45, 0xcb, + 0x33, 0xd8, 0xf2, 0x24, 0x8a, 0x13, 0xcb, 0xb3, 0x0d, 0x14, 0x58, 0xc1, 0x30, 0x27, 0x6f, 0xc3, + 0xa5, 0x8a, 0x67, 0xac, 0x4a, 0x2d, 0xbb, 0xc8, 0x5d, 0x0f, 0xf5, 0x8d, 0xf4, 0x0b, 0x2d, 0x1c, + 0xe6, 0x64, 0x05, 0x7c, 0xc5, 0x64, 0xa9, 0x8f, 0x97, 0xcc, 0xc5, 0x3d, 0x0d, 0x87, 0x39, 0x79, + 0x13, 0x22, 0xfc, 0x06, 0xb3, 0x89, 0xe2, 0xc6, 0x7a, 0xcf, 0xe4, 0x0d, 0x5a, 0x91, 0x55, 0x28, + 0xf1, 0x54, 0x36, 0x2c, 0x33, 0xfd, 0xeb, 0x6f, 0x78, 0x83, 0x65, 0x0a, 0xad, 0x68, 0x98, 0x93, + 0xdb, 0x10, 0xb1, 0xa6, 0x48, 0x4f, 0x50, 0xc8, 0x82, 0xd7, 0x71, 0xb0, 0xe1, 0x0d, 0x2e, 0x6d, + 0x5d, 0xdd, 0x6c, 0x17, 0xc7, 0xbd, 0xbd, 0xe1, 0x33, 0x7b, 0x44, 0x81, 0x35, 0x85, 0xfb, 0x4e, + 0x3e, 0x80, 0xd7, 0x6c, 0xe2, 0x28, 0xb2, 0xfc, 0x91, 0x9e, 0x4f, 0x5d, 0xd3, 0x8c, 0xe7, 0x68, + 0xb2, 0xb6, 0x44, 0xcd, 0x37, 0xb9, 0x0c, 0x9d, 0xb1, 0x1c, 0xb9, 0x32, 0xeb, 0xcf, 0xe4, 0x0f, + 0x0f, 0xe2, 0x47, 0x52, 0xb1, 0xc3, 0xaa, 0x90, 0x47, 0x67, 0xb9, 0xb7, 0x26, 0x3e, 0x86, 0xbe, + 0x99, 0xf5, 0x54, 0xe0, 0xa8, 0x70, 0x53, 0x1c, 0x6d, 0xad, 0xcd, 0x94, 0xd3, 0xe8, 0x52, 0xa3, + 0xb1, 0xb3, 0x40, 0x23, 0x3c, 0x83, 0x67, 0x06, 0xf4, 0x04, 0x62, 0xee, 0xd6, 0xd3, 0x5c, 0x03, + 0xbb, 0x46, 0x63, 0x6a, 0xc0, 0x42, 0xf2, 0x21, 0x58, 0x98, 0x72, 0x5d, 0xd7, 0x38, 0x33, 0xfc, + 0xd5, 0x79, 0xfc, 0xa7, 0x5a, 0x61, 0x67, 0x81, 0x02, 0x4e, 0xd1, 0xfd, 0x00, 0x7a, 0x06, 0xc9, + 0xe4, 0x2e, 0x44, 0xe7, 0xdc, 0x6c, 0xf3, 0xe0, 0x4d, 0xf3, 0x40, 0x6e, 0x02, 0xd8, 0x20, 0xd3, + 0x22, 0xd7, 0x1d, 0xd3, 0x19, 0x74, 0x69, 0x68, 0x25, 0xc3, 0x5c, 0x26, 0x9f, 0x3a, 0xbe, 0x73, + 0xeb, 0x65, 0xfe, 0xbb, 0xd0, 0x9b, 0xc6, 0xd8, 0x19, 0x44, 0x5b, 0x57, 0xa6, 0x15, 0xd3, 0x94, + 0x61, 0xfd, 0x9c, 0x53, 0xa7, 0x90, 0x6c, 0x01, 0x9c, 0x79, 0xfc, 0x2f, 0xcb, 0xf4, 0xd3, 0x22, + 0xac, 0xcd, 0x29, 0x53, 0xbb, 0x75, 0x6e, 0x41, 0x77, 0x8c, 0x8a, 0xfd, 0xed, 0xbc, 0xb5, 0x23, + 0x45, 0x8d, 0x2a, 0x89, 0xc1, 0x67, 0x79, 0x2e, 0xf4, 0x53, 0x63, 0xef, 0x69, 0xa1, 0x9e, 0x0f, + 0x55, 0x8c, 0x91, 0x4f, 0x54, 0x2a, 0xcd, 0x7c, 0x74, 0x68, 0xe0, 0x04, 0xfb, 0xe4, 0x16, 0xf8, + 0x36, 0x2b, 0x32, 0xee, 0x9a, 0x40, 0x57, 0x36, 0xcf, 0x3f, 0x73, 0x36, 0xbf, 0x26, 0xdc, 0x56, + 0x4f, 0xa7, 0x56, 0x66, 0x47, 0x38, 0x66, 0xba, 0xa9, 0xdd, 0xbc, 0x84, 0x56, 0xf2, 0x0c, 0x05, + 0xb9, 0x0b, 0xcb, 0x3a, 0x2e, 0x4c, 0x5b, 0xbb, 0x3d, 0x63, 0x77, 0xf5, 0x82, 0xdd, 0x03, 0xad, + 0x61, 0x8d, 0x4b, 0xda, 0x57, 0xe7, 0x10, 0x79, 0x0b, 0xfa, 0x58, 0xeb, 0xb4, 0xe5, 0x69, 0x53, + 0xb1, 0xda, 0x8c, 0x54, 0x9f, 0x46, 0x4e, 0xb6, 0x57, 0xb1, 0x3a, 0xf9, 0xc5, 0x83, 0x1b, 0x73, + 0xb3, 0xe7, 0x76, 0xd6, 0x47, 0xee, 0x4d, 0x73, 0xf9, 0x7b, 0x67, 0xb6, 0xbf, 0xfe, 0x62, 0x3e, + 0xa8, 0x65, 0xd9, 0x1d, 0x75, 0xe1, 0x41, 0xf2, 0xa5, 0x7b, 0x8c, 0xee, 0x42, 0x24, 0x6b, 0xd6, + 0xc8, 0x23, 0xae, 0xda, 0x5d, 0xf2, 0x8f, 0xf5, 0x81, 0x96, 0x31, 0xcc, 0xf5, 0xc2, 0x36, 0xc1, + 0xca, 0x78, 0x69, 0xa3, 0x33, 0xe8, 0x53, 0x87, 0x92, 0x5d, 0x58, 0x79, 0xc0, 0xea, 0x0c, 0xab, + 0xff, 0xa3, 0x17, 0x92, 0x35, 0x88, 0x5f, 0xb6, 0x66, 0x73, 0x93, 0x7c, 0xef, 0xc1, 0xca, 0x63, + 0x54, 0x99, 0x0b, 0x7e, 0x8f, 0x8d, 0x50, 0xb6, 0x57, 0xcd, 0x44, 0xe7, 0xbd, 0x6a, 0x74, 0xab, + 0x10, 0xd8, 0xd2, 0x17, 0x76, 0x35, 0x74, 0xa8, 0x6f, 0xf0, 0x30, 0x37, 0x4d, 0x83, 0xa3, 0x31, + 0xd6, 0xea, 0x2c, 0xab, 0xa1, 0x93, 0x58, 0x66, 0xc3, 0x46, 0x68, 0x86, 0xb5, 0x6b, 0x86, 0xd5, + 0xd7, 0x58, 0x8f, 0xea, 0xb7, 0x1e, 0x44, 0xc6, 0xcb, 0x3d, 0x66, 0xde, 0xb6, 0xdb, 0x17, 0x8b, + 0xbb, 0x3e, 0xd7, 0xbd, 0xe9, 0xda, 0x6c, 0x6b, 0x7a, 0x0d, 0x96, 0xb4, 0x41, 0xbb, 0x0a, 0xfa, + 0xd4, 0x02, 0x5d, 0x8e, 0xec, 0x68, 0x52, 0x97, 0x7a, 0x2e, 0x4c, 0x39, 0x2c, 0x22, 0x6f, 0x40, + 0x28, 0x27, 0xe3, 0x31, 0x13, 0x05, 0x5a, 0x7f, 0xfa, 0xf4, 0x4c, 0x70, 0x3f, 0xf9, 0xf9, 0xc5, + 0xba, 0xf7, 0xeb, 0x8b, 0x75, 0xef, 0xb7, 0x17, 0xeb, 0xde, 0x77, 0xbf, 0xaf, 0x2f, 0xc0, 0x65, + 0x2e, 0x46, 0x9b, 0xaa, 0x28, 0x4f, 0x36, 0xcb, 0x13, 0xf3, 0x57, 0xf0, 0xb0, 0x67, 0x7e, 0xb6, + 0xff, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x93, 0x0b, 0x62, 0x47, 0x59, 0x0a, 0x00, 0x00, } func (m *S3LockResult) Marshal() (dAtA []byte, err error) { @@ -2037,6 +2045,11 @@ func (m *DisaggTaskMeta) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.GatherId != 0 { + i = encodeVarintDisaggregated(dAtA, i, uint64(m.GatherId)) + i-- + dAtA[i] = 0x48 + } if m.ApiVersion != 0 { i = encodeVarintDisaggregated(dAtA, i, uint64(m.ApiVersion)) i-- @@ -2971,6 +2984,9 @@ func (m *DisaggTaskMeta) Size() (n int) { if m.ApiVersion != 0 { n += 1 + sovDisaggregated(uint64(m.ApiVersion)) } + if m.GatherId != 0 { + n += 1 + sovDisaggregated(uint64(m.GatherId)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -4481,6 +4497,25 @@ func (m *DisaggTaskMeta) Unmarshal(dAtA []byte) error { break } } + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GatherId", wireType) + } + m.GatherId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowDisaggregated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GatherId |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipDisaggregated(dAtA[iNdEx:]) diff --git a/proto/disaggregated.proto b/proto/disaggregated.proto index 78158aadf..b6b429b8e 100644 --- a/proto/disaggregated.proto +++ b/proto/disaggregated.proto @@ -65,7 +65,8 @@ message GetDisaggConfigResponse { message DisaggTaskMeta { uint64 start_ts = 1; // start ts of a query - // query_ts + server_id + local_query_id to represent a global unique query. + // gather_id + query_ts + server_id + local_query_id to represent a global unique query. + int64 gather_id = 9; // used to distinguish different gathers in the mpp query uint64 query_ts = 2; // timestamp when start to execute query, used for TiFlash miniTSO schedule. uint64 server_id = 3; // TiDB server id uint64 local_query_id = 4; // unique local query_id if tidb don't restart. diff --git a/proto/mpp.proto b/proto/mpp.proto index 642f4e81a..c62a6c574 100644 --- a/proto/mpp.proto +++ b/proto/mpp.proto @@ -20,7 +20,7 @@ message TaskMeta { string address = 4; // target address of this task. uint64 gather_id = 5; // used to distinguish different gathers in the mpp query. uint64 query_ts = 6; // timestamp when start to execute query, used for TiFlash miniTSO schedule. - uint64 local_query_id = 7; // unique local query_id if tidb don't restart. So we can use query_ts + local_query_id + server_id to represent a global unique query. + uint64 local_query_id = 7; // unique local query_id if tidb don't restart. So we can use gather_id + query_ts + local_query_id + server_id to represent a global unique query. uint64 server_id = 8; // TiDB server id int64 mpp_version = 9; // mpp version uint32 keyspace_id = 10; // keyspace id of the request diff --git a/scripts/proto.lock b/scripts/proto.lock index 71a27149b..de6f58b6e 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -4229,6 +4229,11 @@ "name": "start_ts", "type": "uint64" }, + { + "id": 9, + "name": "gather_id", + "type": "int64" + }, { "id": 2, "name": "query_ts", From a48f4fe282a2b59673a3dd989debeda377483f8c Mon Sep 17 00:00:00 2001 From: ystaticy Date: Wed, 5 Jul 2023 16:08:16 +0800 Subject: [PATCH 3/4] Get all keyspace gc safepoint (#1140) * get all GC safe point v2 Signed-off-by: ystaticy --- pkg/pdpb/pdpb.pb.go | 1610 +++++++++++++++++++++++++++++++------------ proto/pdpb.proto | 17 + scripts/proto.lock | 51 ++ 3 files changed, 1232 insertions(+), 446 deletions(-) diff --git a/pkg/pdpb/pdpb.pb.go b/pkg/pdpb/pdpb.pb.go index d8228d010..fb5b75e1f 100644 --- a/pkg/pdpb/pdpb.pb.go +++ b/pkg/pdpb/pdpb.pb.go @@ -6289,6 +6289,171 @@ func (m *UpdateServiceSafePointV2Response) GetMinSafePoint() uint64 { return 0 } +type GetAllGCSafePointV2Request struct { + Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetAllGCSafePointV2Request) Reset() { *m = GetAllGCSafePointV2Request{} } +func (m *GetAllGCSafePointV2Request) String() string { return proto.CompactTextString(m) } +func (*GetAllGCSafePointV2Request) ProtoMessage() {} +func (*GetAllGCSafePointV2Request) Descriptor() ([]byte, []int) { + return fileDescriptor_78b27e6f04f44c6e, []int{92} +} +func (m *GetAllGCSafePointV2Request) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *GetAllGCSafePointV2Request) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_GetAllGCSafePointV2Request.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 *GetAllGCSafePointV2Request) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetAllGCSafePointV2Request.Merge(m, src) +} +func (m *GetAllGCSafePointV2Request) XXX_Size() int { + return m.Size() +} +func (m *GetAllGCSafePointV2Request) XXX_DiscardUnknown() { + xxx_messageInfo_GetAllGCSafePointV2Request.DiscardUnknown(m) +} + +var xxx_messageInfo_GetAllGCSafePointV2Request proto.InternalMessageInfo + +func (m *GetAllGCSafePointV2Request) GetHeader() *RequestHeader { + if m != nil { + return m.Header + } + return nil +} + +type GCSafePointV2 struct { + KeyspaceId uint32 `protobuf:"varint,1,opt,name=keyspace_id,json=keyspaceId,proto3" json:"keyspace_id,omitempty"` + GcSafePoint uint64 `protobuf:"varint,2,opt,name=gc_safe_point,json=gcSafePoint,proto3" json:"gc_safe_point,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GCSafePointV2) Reset() { *m = GCSafePointV2{} } +func (m *GCSafePointV2) String() string { return proto.CompactTextString(m) } +func (*GCSafePointV2) ProtoMessage() {} +func (*GCSafePointV2) Descriptor() ([]byte, []int) { + return fileDescriptor_78b27e6f04f44c6e, []int{93} +} +func (m *GCSafePointV2) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *GCSafePointV2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_GCSafePointV2.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 *GCSafePointV2) XXX_Merge(src proto.Message) { + xxx_messageInfo_GCSafePointV2.Merge(m, src) +} +func (m *GCSafePointV2) XXX_Size() int { + return m.Size() +} +func (m *GCSafePointV2) XXX_DiscardUnknown() { + xxx_messageInfo_GCSafePointV2.DiscardUnknown(m) +} + +var xxx_messageInfo_GCSafePointV2 proto.InternalMessageInfo + +func (m *GCSafePointV2) GetKeyspaceId() uint32 { + if m != nil { + return m.KeyspaceId + } + return 0 +} + +func (m *GCSafePointV2) GetGcSafePoint() uint64 { + if m != nil { + return m.GcSafePoint + } + return 0 +} + +type GetAllGCSafePointV2Response struct { + Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` + GcSafePoints []*GCSafePointV2 `protobuf:"bytes,2,rep,name=gc_safe_points,json=gcSafePoints,proto3" json:"gc_safe_points,omitempty"` + Revision int64 `protobuf:"varint,3,opt,name=revision,proto3" json:"revision,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetAllGCSafePointV2Response) Reset() { *m = GetAllGCSafePointV2Response{} } +func (m *GetAllGCSafePointV2Response) String() string { return proto.CompactTextString(m) } +func (*GetAllGCSafePointV2Response) ProtoMessage() {} +func (*GetAllGCSafePointV2Response) Descriptor() ([]byte, []int) { + return fileDescriptor_78b27e6f04f44c6e, []int{94} +} +func (m *GetAllGCSafePointV2Response) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *GetAllGCSafePointV2Response) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_GetAllGCSafePointV2Response.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 *GetAllGCSafePointV2Response) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetAllGCSafePointV2Response.Merge(m, src) +} +func (m *GetAllGCSafePointV2Response) XXX_Size() int { + return m.Size() +} +func (m *GetAllGCSafePointV2Response) XXX_DiscardUnknown() { + xxx_messageInfo_GetAllGCSafePointV2Response.DiscardUnknown(m) +} + +var xxx_messageInfo_GetAllGCSafePointV2Response proto.InternalMessageInfo + +func (m *GetAllGCSafePointV2Response) GetHeader() *ResponseHeader { + if m != nil { + return m.Header + } + return nil +} + +func (m *GetAllGCSafePointV2Response) GetGcSafePoints() []*GCSafePointV2 { + if m != nil { + return m.GcSafePoints + } + return nil +} + +func (m *GetAllGCSafePointV2Response) GetRevision() int64 { + if m != nil { + return m.Revision + } + return 0 +} + type RegionStat struct { // Bytes read/written during this period. BytesWritten uint64 `protobuf:"varint,1,opt,name=bytes_written,json=bytesWritten,proto3" json:"bytes_written,omitempty"` @@ -6305,7 +6470,7 @@ func (m *RegionStat) Reset() { *m = RegionStat{} } func (m *RegionStat) String() string { return proto.CompactTextString(m) } func (*RegionStat) ProtoMessage() {} func (*RegionStat) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{92} + return fileDescriptor_78b27e6f04f44c6e, []int{95} } func (m *RegionStat) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6377,7 +6542,7 @@ func (m *SyncRegionRequest) Reset() { *m = SyncRegionRequest{} } func (m *SyncRegionRequest) String() string { return proto.CompactTextString(m) } func (*SyncRegionRequest) ProtoMessage() {} func (*SyncRegionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{93} + return fileDescriptor_78b27e6f04f44c6e, []int{96} } func (m *SyncRegionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6438,7 +6603,7 @@ func (m *PeersStats) Reset() { *m = PeersStats{} } func (m *PeersStats) String() string { return proto.CompactTextString(m) } func (*PeersStats) ProtoMessage() {} func (*PeersStats) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{94} + return fileDescriptor_78b27e6f04f44c6e, []int{97} } func (m *PeersStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6485,7 +6650,7 @@ func (m *Peers) Reset() { *m = Peers{} } func (m *Peers) String() string { return proto.CompactTextString(m) } func (*Peers) ProtoMessage() {} func (*Peers) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{95} + return fileDescriptor_78b27e6f04f44c6e, []int{98} } func (m *Peers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6542,7 +6707,7 @@ func (m *SyncRegionResponse) Reset() { *m = SyncRegionResponse{} } func (m *SyncRegionResponse) String() string { return proto.CompactTextString(m) } func (*SyncRegionResponse) ProtoMessage() {} func (*SyncRegionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{96} + return fileDescriptor_78b27e6f04f44c6e, []int{99} } func (m *SyncRegionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6639,7 +6804,7 @@ func (m *GetOperatorRequest) Reset() { *m = GetOperatorRequest{} } func (m *GetOperatorRequest) String() string { return proto.CompactTextString(m) } func (*GetOperatorRequest) ProtoMessage() {} func (*GetOperatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{97} + return fileDescriptor_78b27e6f04f44c6e, []int{100} } func (m *GetOperatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6697,7 +6862,7 @@ func (m *GetOperatorResponse) Reset() { *m = GetOperatorResponse{} } func (m *GetOperatorResponse) String() string { return proto.CompactTextString(m) } func (*GetOperatorResponse) ProtoMessage() {} func (*GetOperatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{98} + return fileDescriptor_78b27e6f04f44c6e, []int{101} } func (m *GetOperatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6775,7 +6940,7 @@ func (m *SyncMaxTSRequest) Reset() { *m = SyncMaxTSRequest{} } func (m *SyncMaxTSRequest) String() string { return proto.CompactTextString(m) } func (*SyncMaxTSRequest) ProtoMessage() {} func (*SyncMaxTSRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{99} + return fileDescriptor_78b27e6f04f44c6e, []int{102} } func (m *SyncMaxTSRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6838,7 +7003,7 @@ func (m *SyncMaxTSResponse) Reset() { *m = SyncMaxTSResponse{} } func (m *SyncMaxTSResponse) String() string { return proto.CompactTextString(m) } func (*SyncMaxTSResponse) ProtoMessage() {} func (*SyncMaxTSResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{100} + return fileDescriptor_78b27e6f04f44c6e, []int{103} } func (m *SyncMaxTSResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6901,7 +7066,7 @@ func (m *SplitRegionsRequest) Reset() { *m = SplitRegionsRequest{} } func (m *SplitRegionsRequest) String() string { return proto.CompactTextString(m) } func (*SplitRegionsRequest) ProtoMessage() {} func (*SplitRegionsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{101} + return fileDescriptor_78b27e6f04f44c6e, []int{104} } func (m *SplitRegionsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6964,7 +7129,7 @@ func (m *SplitRegionsResponse) Reset() { *m = SplitRegionsResponse{} } func (m *SplitRegionsResponse) String() string { return proto.CompactTextString(m) } func (*SplitRegionsResponse) ProtoMessage() {} func (*SplitRegionsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{102} + return fileDescriptor_78b27e6f04f44c6e, []int{105} } func (m *SplitRegionsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7028,7 +7193,7 @@ func (m *SplitAndScatterRegionsRequest) Reset() { *m = SplitAndScatterRe func (m *SplitAndScatterRegionsRequest) String() string { return proto.CompactTextString(m) } func (*SplitAndScatterRegionsRequest) ProtoMessage() {} func (*SplitAndScatterRegionsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{103} + return fileDescriptor_78b27e6f04f44c6e, []int{106} } func (m *SplitAndScatterRegionsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7099,7 +7264,7 @@ func (m *SplitAndScatterRegionsResponse) Reset() { *m = SplitAndScatterR func (m *SplitAndScatterRegionsResponse) String() string { return proto.CompactTextString(m) } func (*SplitAndScatterRegionsResponse) ProtoMessage() {} func (*SplitAndScatterRegionsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{104} + return fileDescriptor_78b27e6f04f44c6e, []int{107} } func (m *SplitAndScatterRegionsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7168,7 +7333,7 @@ func (m *GetDCLocationInfoRequest) Reset() { *m = GetDCLocationInfoReque func (m *GetDCLocationInfoRequest) String() string { return proto.CompactTextString(m) } func (*GetDCLocationInfoRequest) ProtoMessage() {} func (*GetDCLocationInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{105} + return fileDescriptor_78b27e6f04f44c6e, []int{108} } func (m *GetDCLocationInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7227,7 +7392,7 @@ func (m *GetDCLocationInfoResponse) Reset() { *m = GetDCLocationInfoResp func (m *GetDCLocationInfoResponse) String() string { return proto.CompactTextString(m) } func (*GetDCLocationInfoResponse) ProtoMessage() {} func (*GetDCLocationInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{106} + return fileDescriptor_78b27e6f04f44c6e, []int{109} } func (m *GetDCLocationInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7298,7 +7463,7 @@ func (m *QueryStats) Reset() { *m = QueryStats{} } func (m *QueryStats) String() string { return proto.CompactTextString(m) } func (*QueryStats) ProtoMessage() {} func (*QueryStats) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{107} + return fileDescriptor_78b27e6f04f44c6e, []int{110} } func (m *QueryStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7417,7 +7582,7 @@ func (m *ReportBucketsRequest) Reset() { *m = ReportBucketsRequest{} } func (m *ReportBucketsRequest) String() string { return proto.CompactTextString(m) } func (*ReportBucketsRequest) ProtoMessage() {} func (*ReportBucketsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{108} + return fileDescriptor_78b27e6f04f44c6e, []int{111} } func (m *ReportBucketsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7478,7 +7643,7 @@ func (m *ReportBucketsResponse) Reset() { *m = ReportBucketsResponse{} } func (m *ReportBucketsResponse) String() string { return proto.CompactTextString(m) } func (*ReportBucketsResponse) ProtoMessage() {} func (*ReportBucketsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{109} + return fileDescriptor_78b27e6f04f44c6e, []int{112} } func (m *ReportBucketsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7527,7 +7692,7 @@ func (m *ReportMinResolvedTsRequest) Reset() { *m = ReportMinResolvedTsR func (m *ReportMinResolvedTsRequest) String() string { return proto.CompactTextString(m) } func (*ReportMinResolvedTsRequest) ProtoMessage() {} func (*ReportMinResolvedTsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{110} + return fileDescriptor_78b27e6f04f44c6e, []int{113} } func (m *ReportMinResolvedTsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7588,7 +7753,7 @@ func (m *ReportMinResolvedTsResponse) Reset() { *m = ReportMinResolvedTs func (m *ReportMinResolvedTsResponse) String() string { return proto.CompactTextString(m) } func (*ReportMinResolvedTsResponse) ProtoMessage() {} func (*ReportMinResolvedTsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{111} + return fileDescriptor_78b27e6f04f44c6e, []int{114} } func (m *ReportMinResolvedTsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7636,7 +7801,7 @@ func (m *SetExternalTimestampRequest) Reset() { *m = SetExternalTimestam func (m *SetExternalTimestampRequest) String() string { return proto.CompactTextString(m) } func (*SetExternalTimestampRequest) ProtoMessage() {} func (*SetExternalTimestampRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{112} + return fileDescriptor_78b27e6f04f44c6e, []int{115} } func (m *SetExternalTimestampRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7690,7 +7855,7 @@ func (m *SetExternalTimestampResponse) Reset() { *m = SetExternalTimesta func (m *SetExternalTimestampResponse) String() string { return proto.CompactTextString(m) } func (*SetExternalTimestampResponse) ProtoMessage() {} func (*SetExternalTimestampResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{113} + return fileDescriptor_78b27e6f04f44c6e, []int{116} } func (m *SetExternalTimestampResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7737,7 +7902,7 @@ func (m *GetExternalTimestampRequest) Reset() { *m = GetExternalTimestam func (m *GetExternalTimestampRequest) String() string { return proto.CompactTextString(m) } func (*GetExternalTimestampRequest) ProtoMessage() {} func (*GetExternalTimestampRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{114} + return fileDescriptor_78b27e6f04f44c6e, []int{117} } func (m *GetExternalTimestampRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7785,7 +7950,7 @@ func (m *GetExternalTimestampResponse) Reset() { *m = GetExternalTimesta func (m *GetExternalTimestampResponse) String() string { return proto.CompactTextString(m) } func (*GetExternalTimestampResponse) ProtoMessage() {} func (*GetExternalTimestampResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{115} + return fileDescriptor_78b27e6f04f44c6e, []int{118} } func (m *GetExternalTimestampResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7839,7 +8004,7 @@ func (m *GetMinTSRequest) Reset() { *m = GetMinTSRequest{} } func (m *GetMinTSRequest) String() string { return proto.CompactTextString(m) } func (*GetMinTSRequest) ProtoMessage() {} func (*GetMinTSRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{116} + return fileDescriptor_78b27e6f04f44c6e, []int{119} } func (m *GetMinTSRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7887,7 +8052,7 @@ func (m *GetMinTSResponse) Reset() { *m = GetMinTSResponse{} } func (m *GetMinTSResponse) String() string { return proto.CompactTextString(m) } func (*GetMinTSResponse) ProtoMessage() {} func (*GetMinTSResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_78b27e6f04f44c6e, []int{117} + return fileDescriptor_78b27e6f04f44c6e, []int{120} } func (m *GetMinTSResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8030,6 +8195,9 @@ func init() { proto.RegisterType((*UpdateGCSafePointV2Response)(nil), "pdpb.UpdateGCSafePointV2Response") proto.RegisterType((*UpdateServiceSafePointV2Request)(nil), "pdpb.UpdateServiceSafePointV2Request") proto.RegisterType((*UpdateServiceSafePointV2Response)(nil), "pdpb.UpdateServiceSafePointV2Response") + proto.RegisterType((*GetAllGCSafePointV2Request)(nil), "pdpb.GetAllGCSafePointV2Request") + proto.RegisterType((*GCSafePointV2)(nil), "pdpb.GCSafePointV2") + proto.RegisterType((*GetAllGCSafePointV2Response)(nil), "pdpb.GetAllGCSafePointV2Response") proto.RegisterType((*RegionStat)(nil), "pdpb.RegionStat") proto.RegisterType((*SyncRegionRequest)(nil), "pdpb.SyncRegionRequest") proto.RegisterType((*PeersStats)(nil), "pdpb.PeersStats") @@ -8061,379 +8229,384 @@ func init() { func init() { proto.RegisterFile("pdpb.proto", fileDescriptor_78b27e6f04f44c6e) } var fileDescriptor_78b27e6f04f44c6e = []byte{ - // 5944 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x4b, 0x73, 0xe3, 0x48, - 0x72, 0xb0, 0xc0, 0x87, 0x44, 0x26, 0x1f, 0xa2, 0xaa, 0xd5, 0x2d, 0x36, 0xd5, 0x0f, 0x0d, 0x7a, - 0xa6, 0xbf, 0x9e, 0xde, 0x99, 0x9e, 0x19, 0xcd, 0x7c, 0xeb, 0xf1, 0xd8, 0x3b, 0x61, 0x4a, 0x64, - 0x6b, 0x38, 0xad, 0x07, 0x0d, 0xb2, 0x7b, 0x76, 0xec, 0x0d, 0x23, 0x20, 0xa0, 0x24, 0x61, 0x45, - 0x02, 0x1c, 0x14, 0x28, 0x35, 0x37, 0x7c, 0xf0, 0x63, 0x6d, 0xef, 0x86, 0x77, 0xc3, 0x8e, 0xf0, - 0xda, 0xde, 0xd3, 0x1e, 0xfc, 0xbe, 0x38, 0x7c, 0x73, 0xd8, 0x27, 0xdf, 0x1c, 0x3e, 0xfa, 0xe8, - 0x93, 0x63, 0x63, 0x7d, 0xf2, 0x1f, 0xd8, 0x8b, 0x7d, 0x70, 0xd4, 0x0b, 0x04, 0x40, 0x50, 0x52, - 0xa3, 0xa7, 0x37, 0xf6, 0x44, 0x20, 0x33, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x33, 0xab, 0x40, - 0x80, 0x91, 0x35, 0x3a, 0x7c, 0x34, 0xf2, 0x5c, 0xdf, 0x45, 0x39, 0xfa, 0xdc, 0x28, 0x0f, 0xb1, - 0x6f, 0x48, 0x58, 0xa3, 0x82, 0x3d, 0xe3, 0xc8, 0x0f, 0x5e, 0xaf, 0xd1, 0x37, 0x9d, 0x60, 0xef, - 0x0c, 0x7b, 0x01, 0xb0, 0xee, 0xe1, 0xd1, 0xc0, 0x36, 0x0d, 0xdf, 0x76, 0x1d, 0x7d, 0xe8, 0x5a, - 0x38, 0xc0, 0xac, 0x1e, 0xbb, 0xc7, 0x2e, 0x7b, 0x7c, 0x87, 0x3e, 0x09, 0xe8, 0xb2, 0x37, 0x26, - 0x3e, 0x7b, 0xe4, 0x00, 0xf5, 0x33, 0xa8, 0x7f, 0x66, 0xf8, 0xe6, 0xc9, 0xce, 0xc0, 0x3d, 0x34, - 0x06, 0xdb, 0xae, 0x73, 0x64, 0x1f, 0x6b, 0xf8, 0x8b, 0x31, 0x26, 0x3e, 0xba, 0x0b, 0x25, 0x93, - 0x01, 0xf4, 0x91, 0xe1, 0x9f, 0xd4, 0x95, 0x0d, 0xe5, 0x41, 0x51, 0x03, 0x0e, 0xea, 0x1a, 0xfe, - 0x09, 0x6a, 0x40, 0xc1, 0xc3, 0x67, 0x36, 0xb1, 0x5d, 0xa7, 0x9e, 0xd9, 0x50, 0x1e, 0x64, 0xb5, - 0xe0, 0x5d, 0xfd, 0x73, 0x05, 0x6e, 0x26, 0x70, 0x26, 0x23, 0xd7, 0x21, 0x18, 0xbd, 0x0b, 0x4b, - 0xe6, 0x89, 0xe1, 0x1c, 0x63, 0x52, 0x57, 0x36, 0xb2, 0x0f, 0x4a, 0x9b, 0x37, 0x1e, 0x31, 0x6d, - 0x84, 0x89, 0x3b, 0x3e, 0x1e, 0x6a, 0x92, 0xec, 0xa2, 0xbe, 0xd0, 0x5b, 0xb0, 0x78, 0x82, 0x0d, - 0x0b, 0x7b, 0xf5, 0xec, 0x86, 0xf2, 0xa0, 0xb4, 0xb9, 0xca, 0x99, 0xc9, 0xde, 0x3e, 0x61, 0x38, - 0x4d, 0xd0, 0xa8, 0x43, 0xa8, 0xf7, 0x7c, 0xd7, 0xc3, 0x49, 0x43, 0x7e, 0x71, 0xb9, 0x62, 0x4a, - 0xca, 0xc4, 0x95, 0xa4, 0x7e, 0x0c, 0x37, 0x13, 0xba, 0x13, 0x7a, 0x78, 0x0d, 0xf2, 0xd8, 0xf3, - 0x5c, 0x8f, 0x29, 0xb7, 0xb4, 0x59, 0xe2, 0xbd, 0xb5, 0x29, 0x48, 0xe3, 0x18, 0xb5, 0x0b, 0x6b, - 0xbb, 0xae, 0x61, 0x25, 0x49, 0xbb, 0x0a, 0x79, 0xc7, 0x18, 0x0a, 0x59, 0x8b, 0x1a, 0x7f, 0xb9, - 0x5c, 0x22, 0x0b, 0xea, 0xb3, 0x1c, 0x85, 0x40, 0x6f, 0x41, 0xde, 0xf6, 0xf1, 0xf0, 0xb2, 0xe1, - 0x73, 0xa2, 0x0b, 0x0d, 0xe0, 0x47, 0x0a, 0xd4, 0xe2, 0xed, 0x10, 0x82, 0x1c, 0x15, 0x52, 0xd8, - 0x12, 0x7b, 0xa6, 0xa3, 0x38, 0x33, 0x06, 0x63, 0x2c, 0x24, 0xe5, 0x2f, 0x53, 0xcd, 0x64, 0xe7, - 0x69, 0x06, 0xdd, 0x83, 0xdc, 0xa9, 0xed, 0x58, 0xf5, 0xdc, 0x86, 0xf2, 0xa0, 0xba, 0xb9, 0x2c, - 0x28, 0xce, 0xb0, 0xe3, 0xf7, 0x27, 0x23, 0xac, 0x31, 0x24, 0xaa, 0xc3, 0xd2, 0xc8, 0x98, 0x0c, - 0x5c, 0xc3, 0xaa, 0xe7, 0x37, 0x94, 0x07, 0x65, 0x4d, 0xbe, 0xaa, 0x4f, 0xa0, 0x22, 0x14, 0xc9, - 0x0d, 0x04, 0xdd, 0x06, 0x30, 0x07, 0x63, 0xe2, 0x63, 0x4f, 0xb7, 0x2d, 0x26, 0x62, 0x4e, 0x2b, - 0x0a, 0x48, 0xc7, 0x42, 0xeb, 0x50, 0x24, 0xd8, 0xb1, 0x38, 0x36, 0xc3, 0xb0, 0x05, 0x0e, 0xe8, - 0x58, 0xaa, 0x06, 0xd5, 0xa8, 0xb9, 0x5d, 0xc6, 0x2d, 0x18, 0x5f, 0x66, 0xee, 0xcc, 0x3f, 0x86, - 0x7c, 0x5b, 0x0e, 0xd4, 0x9f, 0x8c, 0xb8, 0xd6, 0xa6, 0x03, 0xa5, 0x28, 0x3e, 0x50, 0x8a, 0xa4, - 0x03, 0x1d, 0x62, 0x42, 0x8c, 0x63, 0xa9, 0x48, 0xf9, 0xaa, 0x8e, 0x00, 0xfa, 0xc4, 0x95, 0x46, - 0xf3, 0x95, 0x60, 0xb1, 0x70, 0x9b, 0xbb, 0x26, 0x17, 0x4b, 0x48, 0x15, 0x72, 0xad, 0xd0, 0xb9, - 0x31, 0xdd, 0xb1, 0xe3, 0x33, 0x96, 0x15, 0x8d, 0xbf, 0x50, 0x0b, 0xb3, 0x4c, 0x7d, 0xe0, 0x72, - 0xbf, 0xc3, 0x66, 0xa8, 0xa8, 0x81, 0x65, 0xee, 0x0a, 0x88, 0x7a, 0x08, 0xc5, 0xbe, 0x3d, 0xc4, - 0xc4, 0x37, 0x86, 0x23, 0x6a, 0x24, 0xa3, 0x93, 0x09, 0xb1, 0x4d, 0x63, 0xc0, 0xba, 0xcc, 0x6a, - 0xc1, 0x3b, 0x15, 0x7a, 0xe0, 0x1e, 0x33, 0x14, 0xb7, 0x1f, 0xf9, 0x4a, 0xfb, 0x20, 0xe3, 0xa3, - 0x23, 0xfb, 0xb9, 0x7e, 0x68, 0xfb, 0x84, 0xf5, 0x51, 0xd1, 0x80, 0x83, 0xb6, 0x6c, 0x9f, 0xa8, - 0xbf, 0xa5, 0x40, 0x89, 0x0d, 0x2b, 0xb0, 0xdc, 0xe8, 0xb8, 0x2e, 0x74, 0x02, 0x73, 0x06, 0xf6, - 0x36, 0x14, 0x7d, 0x29, 0xb7, 0x30, 0x3c, 0xa1, 0xed, 0x60, 0x38, 0xda, 0x94, 0x42, 0xfd, 0x9e, - 0x02, 0xb5, 0x2d, 0xd7, 0xf5, 0x89, 0xef, 0x19, 0xa3, 0x54, 0xfa, 0xbd, 0x07, 0x79, 0x42, 0x9d, - 0x83, 0xb0, 0x82, 0xca, 0x23, 0xb1, 0x03, 0x30, 0x8f, 0xa1, 0x71, 0x1c, 0xba, 0x0f, 0x8b, 0x1e, - 0x3e, 0x96, 0x9a, 0x2e, 0x6d, 0x56, 0x25, 0x95, 0xc6, 0xa0, 0x9a, 0xc0, 0x52, 0x97, 0xbb, 0x12, - 0x12, 0x27, 0x95, 0x5e, 0xfa, 0x80, 0xc2, 0x5b, 0x0a, 0xf1, 0x0d, 0x7f, 0x4c, 0x84, 0x74, 0x6f, - 0x3c, 0x4a, 0xd8, 0x6d, 0xb4, 0x29, 0xa8, 0xc7, 0x88, 0xb5, 0x15, 0x2f, 0x0e, 0x52, 0x5b, 0x70, - 0xbd, 0x43, 0x02, 0xd1, 0x46, 0xd8, 0x4a, 0xa3, 0x2c, 0xf5, 0x9b, 0x70, 0x23, 0xce, 0x25, 0xd5, - 0x18, 0x55, 0x28, 0x1f, 0x86, 0xb8, 0xb0, 0xd1, 0x15, 0xb4, 0x08, 0x4c, 0xfd, 0x1a, 0x54, 0x9b, - 0x83, 0x81, 0x6b, 0x76, 0x5a, 0xa9, 0x44, 0x3d, 0x80, 0xe5, 0xa0, 0x79, 0x2a, 0x19, 0xab, 0x90, - 0x09, 0xbc, 0x4c, 0xc6, 0xb6, 0xd4, 0x4f, 0x61, 0xbd, 0x43, 0x7a, 0x8e, 0x31, 0x22, 0x27, 0xae, - 0xaf, 0x61, 0xd3, 0x3d, 0xc3, 0x9e, 0xed, 0x1c, 0xa7, 0x12, 0xce, 0x82, 0x5b, 0xc9, 0xbc, 0x52, - 0x49, 0x7a, 0x03, 0x16, 0x87, 0x86, 0x77, 0x1a, 0xe8, 0x51, 0xbc, 0xa9, 0x9f, 0xc3, 0xf2, 0x0e, - 0xf6, 0xb9, 0x21, 0xa7, 0x59, 0x1a, 0x37, 0xa1, 0xc0, 0xcc, 0x7f, 0xea, 0x6d, 0x97, 0xd8, 0x7b, - 0xc7, 0x52, 0xbf, 0x4f, 0xb7, 0x96, 0x80, 0x77, 0x2a, 0xa9, 0xaf, 0xb8, 0xf0, 0xf2, 0x74, 0x01, - 0x10, 0xb1, 0xee, 0x6a, 0x9c, 0x23, 0x23, 0xa1, 0x86, 0x4d, 0x34, 0x8e, 0x56, 0x4d, 0x58, 0xee, - 0x8e, 0x5f, 0x62, 0xa8, 0x57, 0x11, 0x46, 0xfd, 0x33, 0x05, 0x6a, 0xd3, 0x5e, 0x7e, 0x8e, 0x16, - 0xf7, 0x6f, 0xc2, 0xb5, 0x1d, 0xec, 0x37, 0x07, 0x03, 0x26, 0x1a, 0x49, 0xa5, 0x81, 0x0f, 0xa1, - 0x8e, 0x9f, 0x9b, 0x83, 0xb1, 0x85, 0x75, 0xdf, 0x1d, 0x1e, 0x12, 0xdf, 0x75, 0xb0, 0xce, 0xc6, - 0x4d, 0x84, 0x59, 0xdd, 0x10, 0xf8, 0xbe, 0x44, 0xf3, 0xde, 0xd4, 0x53, 0x58, 0x8d, 0xf6, 0x9e, - 0x4a, 0x33, 0x6f, 0xc0, 0x62, 0xd0, 0x5b, 0x76, 0x76, 0x0a, 0x04, 0x52, 0xfd, 0x6d, 0x6e, 0x78, - 0xc2, 0xef, 0xa6, 0x19, 0xe8, 0x6d, 0x00, 0xee, 0xad, 0xf5, 0x53, 0x3c, 0x61, 0x43, 0x2b, 0x6b, - 0x45, 0x0e, 0x79, 0x82, 0x27, 0xe8, 0x35, 0x28, 0x3b, 0x18, 0x5b, 0xfa, 0xe1, 0xd8, 0x3c, 0xc5, - 0xc2, 0xf0, 0x0a, 0x5a, 0x89, 0xc2, 0xb6, 0x38, 0x48, 0xfd, 0xcb, 0x0c, 0xac, 0x84, 0x64, 0x48, - 0x35, 0xdc, 0xe9, 0x8e, 0x92, 0xb9, 0x68, 0x47, 0x41, 0xaf, 0xc3, 0xe2, 0x20, 0x1c, 0x58, 0x97, - 0x25, 0x5d, 0x17, 0x53, 0x6e, 0x1c, 0x87, 0x1e, 0x01, 0x58, 0xee, 0xb9, 0xa3, 0x8f, 0x30, 0xf6, - 0x48, 0x3d, 0xcf, 0x14, 0x28, 0xb6, 0x4d, 0x4a, 0xc7, 0x97, 0x4a, 0x91, 0x92, 0xd0, 0x57, 0x82, - 0xde, 0x83, 0xca, 0x08, 0x3b, 0x96, 0xed, 0x1c, 0x8b, 0x26, 0x8b, 0xac, 0x49, 0x94, 0x79, 0x59, - 0x90, 0xf0, 0x26, 0x6f, 0xc2, 0x92, 0x54, 0xc9, 0x92, 0xd8, 0x96, 0x05, 0xb1, 0x50, 0x8b, 0x26, - 0xf1, 0x9f, 0xe6, 0x0a, 0xb9, 0x5a, 0x5e, 0xfd, 0x5d, 0x85, 0xd9, 0x05, 0x1f, 0xcf, 0xd6, 0x24, - 0x9d, 0x1b, 0xa7, 0x21, 0x9f, 0x98, 0xad, 0x69, 0xc8, 0xc7, 0x01, 0x2c, 0x82, 0xbb, 0x74, 0xae, - 0xbe, 0xaf, 0x00, 0xea, 0x99, 0x86, 0xc3, 0xc5, 0x20, 0x69, 0x65, 0x20, 0xbe, 0xe1, 0xf9, 0x21, - 0x83, 0x29, 0x30, 0x00, 0xb5, 0x97, 0x55, 0xc8, 0x0f, 0xec, 0xa1, 0xed, 0xb3, 0xce, 0xf3, 0x1a, - 0x7f, 0x41, 0x6b, 0xb0, 0x84, 0x1d, 0x8b, 0x35, 0xc8, 0xb1, 0x06, 0x8b, 0xd8, 0xb1, 0x9e, 0xe0, - 0x89, 0xfa, 0xcf, 0x0a, 0x2c, 0x72, 0x59, 0x42, 0x26, 0xa0, 0x5c, 0xd1, 0x04, 0x32, 0x57, 0x36, - 0x81, 0xec, 0x8b, 0x9b, 0x40, 0xee, 0x32, 0x13, 0x50, 0xff, 0x55, 0x81, 0x6b, 0x11, 0x5d, 0xa6, - 0xb2, 0xfc, 0xf7, 0xa0, 0x2c, 0x66, 0x94, 0xf6, 0x24, 0x97, 0x7b, 0x7c, 0xf0, 0x25, 0x4e, 0xb3, - 0x47, 0x49, 0xd0, 0x7d, 0x58, 0xe2, 0xa3, 0x94, 0x03, 0x8b, 0x4a, 0x29, 0x91, 0x94, 0x8e, 0x37, - 0x9b, 0x8e, 0x46, 0x48, 0xc2, 0x78, 0x4a, 0xa4, 0xfa, 0x18, 0xd6, 0x76, 0xb0, 0xbf, 0xcd, 0x33, - 0x81, 0x68, 0x42, 0xf7, 0x42, 0xdb, 0x38, 0x81, 0xfa, 0x2c, 0x9f, 0x54, 0x4a, 0x79, 0x13, 0x96, - 0x44, 0x62, 0x22, 0x26, 0x39, 0x58, 0x5d, 0x82, 0xbb, 0x26, 0xf1, 0xea, 0x17, 0xb0, 0xd6, 0x1d, - 0xbf, 0xbc, 0xf0, 0x2f, 0xd2, 0xe5, 0x27, 0x50, 0x9f, 0xed, 0x32, 0xcd, 0x38, 0xd5, 0xbf, 0xca, - 0xc0, 0xe2, 0x1e, 0x1e, 0x1e, 0x62, 0x2f, 0x31, 0x11, 0x5d, 0x87, 0xe2, 0x90, 0x61, 0x43, 0xab, - 0x9d, 0x03, 0x78, 0xf6, 0x47, 0x2d, 0x55, 0x1f, 0x7b, 0x03, 0x6e, 0x07, 0x45, 0xad, 0x40, 0x01, - 0x4f, 0xbd, 0x01, 0x4f, 0xb9, 0x07, 0x36, 0x76, 0x7c, 0x8e, 0xce, 0x31, 0x34, 0x70, 0x10, 0x23, - 0xf8, 0x7f, 0xb0, 0xcc, 0xcd, 0x44, 0x1f, 0x79, 0xb6, 0xeb, 0xd9, 0xfe, 0x84, 0x65, 0xa3, 0x79, - 0xad, 0xca, 0xc1, 0x5d, 0x01, 0x65, 0xa9, 0x15, 0x1e, 0x0d, 0xdc, 0x09, 0x4f, 0xde, 0x17, 0x45, - 0x6a, 0xc5, 0x40, 0xac, 0xe6, 0xf2, 0x06, 0x54, 0x0f, 0x6d, 0xc7, 0xf0, 0x26, 0xfa, 0x19, 0xf6, - 0x58, 0xe2, 0xbd, 0xc4, 0x68, 0x2a, 0x1c, 0xfa, 0x8c, 0x03, 0x69, 0xf4, 0x74, 0x6c, 0xfb, 0xfa, - 0x89, 0x41, 0x4e, 0xea, 0x05, 0x9e, 0x0e, 0x1e, 0xdb, 0xfe, 0x27, 0x06, 0x39, 0x89, 0x67, 0x6f, - 0xc5, 0x99, 0xec, 0xed, 0x57, 0xd8, 0x06, 0xc3, 0x15, 0x95, 0xca, 0x67, 0xa9, 0xff, 0x9b, 0x01, - 0x14, 0x66, 0x91, 0x72, 0x93, 0x5a, 0xe2, 0xda, 0x97, 0xab, 0x54, 0xac, 0x27, 0xce, 0x55, 0x93, - 0xc8, 0x84, 0x4d, 0x2a, 0x4c, 0x26, 0x3d, 0xd4, 0xdb, 0x50, 0xc2, 0xbe, 0x69, 0xe9, 0x82, 0x34, - 0x97, 0x40, 0x0a, 0x94, 0x60, 0x97, 0x93, 0x63, 0xb8, 0xee, 0x13, 0x57, 0x37, 0x06, 0x4c, 0x4f, - 0xae, 0xa7, 0x4b, 0x17, 0xc0, 0xb7, 0xb7, 0xf7, 0x44, 0x5d, 0x64, 0x66, 0x8c, 0x8f, 0xfa, 0xc4, - 0x6d, 0xca, 0x46, 0x9c, 0x17, 0x69, 0x3b, 0xbe, 0x37, 0xd1, 0xae, 0xf9, 0xb3, 0x98, 0x46, 0x1f, - 0xea, 0xf3, 0x1a, 0xa0, 0x1a, 0x64, 0xa9, 0x07, 0xe7, 0x16, 0x4a, 0x1f, 0x91, 0x1a, 0xae, 0x94, - 0xc4, 0xa5, 0xe7, 0xa8, 0x8f, 0x32, 0x1f, 0x2a, 0x6a, 0x1b, 0xae, 0x4f, 0x3d, 0x43, 0xc7, 0x39, - 0x0a, 0x72, 0xff, 0x17, 0x5b, 0x2e, 0x3f, 0x54, 0xe0, 0x46, 0x9c, 0x4f, 0xaa, 0x99, 0xfc, 0xff, - 0x50, 0x26, 0xd8, 0x3b, 0xb3, 0x4d, 0xbc, 0xe7, 0x5a, 0x22, 0xc6, 0xaa, 0x6e, 0xae, 0x88, 0x70, - 0x7a, 0x8a, 0xd1, 0x22, 0x64, 0xd4, 0x86, 0xe9, 0x1c, 0x84, 0x56, 0xdc, 0x92, 0x4f, 0x5c, 0xba, - 0x9e, 0xd4, 0x2e, 0x14, 0x83, 0x7d, 0x05, 0x6d, 0x40, 0x8e, 0xae, 0x44, 0x21, 0x4a, 0xd4, 0x3b, - 0x33, 0x0c, 0xdd, 0xaa, 0xd9, 0xf6, 0x44, 0xb0, 0xe9, 0x3a, 0x16, 0x11, 0x8b, 0xbb, 0x44, 0x61, - 0x3d, 0x0e, 0x52, 0x7f, 0x9a, 0x87, 0x1b, 0xdc, 0x53, 0x7f, 0x82, 0x0d, 0xcf, 0x3f, 0xc4, 0x86, - 0x9f, 0xca, 0xb1, 0xbd, 0xca, 0xd0, 0x2a, 0xf7, 0xe2, 0xfb, 0x6a, 0xfe, 0xd2, 0xd0, 0xea, 0x1e, - 0x54, 0x0e, 0x27, 0x3e, 0x26, 0xfa, 0xb9, 0x67, 0xfb, 0x3e, 0x76, 0x98, 0xcf, 0xc9, 0x69, 0x65, - 0x06, 0xfc, 0x8c, 0xc3, 0x68, 0xd8, 0xca, 0x89, 0x3c, 0x6c, 0x58, 0xcc, 0xe3, 0xe4, 0xb4, 0x22, - 0x83, 0x68, 0xd8, 0x60, 0xa1, 0xd0, 0x29, 0x9e, 0x4c, 0x59, 0x14, 0xb8, 0x7e, 0x29, 0x4c, 0x72, - 0x58, 0x87, 0x22, 0x23, 0x61, 0x0c, 0x8a, 0xdc, 0xb9, 0x52, 0x00, 0x6b, 0xff, 0x26, 0xd4, 0x8c, - 0xd1, 0xc8, 0x73, 0x9f, 0xdb, 0x43, 0xc3, 0xc7, 0x3a, 0xb1, 0xbf, 0x85, 0xeb, 0xc0, 0x68, 0x96, - 0x43, 0xf0, 0x9e, 0xfd, 0x2d, 0x8c, 0x1e, 0x41, 0xc1, 0x76, 0x7c, 0xec, 0x9d, 0x19, 0x83, 0x7a, - 0x99, 0x69, 0x0e, 0x4d, 0x2b, 0x34, 0x1d, 0x81, 0xd1, 0x02, 0x9a, 0x38, 0x6b, 0xda, 0x65, 0xbd, - 0x32, 0xc3, 0xfa, 0x09, 0x9e, 0x10, 0xba, 0x27, 0xf8, 0xd8, 0x1b, 0xd6, 0xab, 0x0c, 0xcd, 0x9e, - 0xd1, 0xaf, 0x25, 0xa6, 0x4c, 0xcb, 0xac, 0xe3, 0xaf, 0x24, 0xa7, 0x4c, 0x3c, 0x2e, 0xbf, 0x3c, - 0x71, 0x42, 0xef, 0x41, 0xe9, 0x8b, 0x31, 0xf6, 0x26, 0x3a, 0x4f, 0x32, 0x6b, 0xe1, 0x24, 0xf3, - 0x57, 0x29, 0x82, 0x4f, 0x2f, 0x7c, 0x11, 0x3c, 0x53, 0x2d, 0x9a, 0xa3, 0xb1, 0x3e, 0x66, 0x65, - 0xbe, 0x15, 0xae, 0x45, 0x73, 0x34, 0x7e, 0x4a, 0xdf, 0xd1, 0x23, 0xb8, 0x16, 0x19, 0xea, 0x19, - 0x57, 0x24, 0x62, 0x64, 0x2b, 0xe1, 0xd1, 0x9e, 0x51, 0x55, 0x7e, 0x9a, 0x2b, 0x94, 0x6a, 0x65, - 0xf5, 0x04, 0x60, 0x9b, 0xd5, 0xb2, 0xa9, 0x39, 0x5c, 0x61, 0x2d, 0x7d, 0x08, 0x25, 0x5e, 0xfb, - 0xd6, 0x59, 0x4d, 0x32, 0xc3, 0x6a, 0x92, 0x6b, 0x8f, 0xe4, 0x61, 0x05, 0xdd, 0xa0, 0x39, 0x3f, - 0x56, 0x9b, 0x04, 0x33, 0x78, 0x56, 0x3f, 0x82, 0xf2, 0xb4, 0xa7, 0x67, 0x9b, 0xe8, 0x61, 0xbc, - 0xd8, 0x2e, 0xc6, 0x3e, 0x25, 0x0a, 0xca, 0xec, 0xea, 0x33, 0xa8, 0xf6, 0x3d, 0xc3, 0x21, 0x47, - 0x58, 0x38, 0xc9, 0x2b, 0x48, 0xaa, 0x42, 0x9e, 0x2f, 0x82, 0x4c, 0xc2, 0x22, 0xe0, 0x28, 0xf5, - 0x1d, 0xc8, 0xef, 0x61, 0xef, 0x98, 0x15, 0xd9, 0x7c, 0xc3, 0x3b, 0xc6, 0xfe, 0xbc, 0x78, 0x98, - 0x63, 0xd5, 0x5d, 0x28, 0xf5, 0x46, 0x03, 0x5b, 0x64, 0x16, 0xe8, 0x4d, 0x58, 0x1c, 0xb9, 0x03, - 0xdb, 0x9c, 0x88, 0xe2, 0xec, 0x8a, 0x1c, 0x02, 0x36, 0x4f, 0xbb, 0x0c, 0xa1, 0x09, 0x02, 0x6a, - 0x5e, 0xcc, 0xfa, 0xa8, 0x34, 0x65, 0x8d, 0x3d, 0xab, 0x3b, 0x50, 0xe9, 0x9d, 0xdb, 0xbe, 0x79, - 0xf2, 0x99, 0xed, 0x3b, 0x98, 0x10, 0x1a, 0xba, 0xb3, 0x30, 0x23, 0x28, 0x19, 0x2f, 0xd2, 0xd7, - 0x8e, 0x45, 0x57, 0xa0, 0x4d, 0xf4, 0x73, 0x4e, 0x26, 0x72, 0xe2, 0xa2, 0x4d, 0x44, 0x3b, 0xb5, - 0x0f, 0x68, 0xcb, 0xf0, 0xcd, 0x93, 0x28, 0xb7, 0x8f, 0xa1, 0x46, 0x18, 0x40, 0x36, 0x0c, 0x54, - 0x2d, 0x7c, 0x58, 0x84, 0x5c, 0x5b, 0x26, 0xe1, 0x57, 0x4c, 0xd4, 0x3f, 0xcd, 0xc1, 0xda, 0x8c, - 0x53, 0x4c, 0x19, 0x77, 0x4b, 0xab, 0x61, 0x93, 0x96, 0x09, 0xdb, 0x7a, 0x68, 0xbe, 0x85, 0xb9, - 0x30, 0x53, 0xfc, 0x1a, 0x2c, 0xfb, 0x62, 0xca, 0xf5, 0x41, 0xc2, 0xf1, 0x4e, 0xd4, 0x1e, 0xb4, - 0xaa, 0x1f, 0xb5, 0x8f, 0x48, 0xee, 0x96, 0x8b, 0xe5, 0x6e, 0x5f, 0x0d, 0xd2, 0x00, 0x3c, 0x72, - 0xcd, 0x13, 0x16, 0x8c, 0x51, 0xa5, 0x44, 0xe6, 0xbc, 0x4d, 0x51, 0x32, 0x17, 0x60, 0x2f, 0x34, - 0x8a, 0xe0, 0x76, 0xc0, 0x87, 0xb1, 0x98, 0x60, 0x7b, 0xc0, 0x09, 0xba, 0x7c, 0xdf, 0xc9, 0x0f, - 0xa9, 0x75, 0x89, 0xa4, 0xb5, 0x24, 0x37, 0x6c, 0xef, 0x18, 0x6b, 0x1c, 0x83, 0x3e, 0x80, 0x32, - 0xa1, 0xf6, 0xa4, 0x8b, 0x5d, 0xa3, 0xc0, 0x28, 0xe5, 0xde, 0x38, 0xb5, 0x34, 0xad, 0x44, 0x42, - 0x66, 0xf7, 0x21, 0x54, 0x43, 0xea, 0xd4, 0xcf, 0x36, 0x99, 0x4b, 0x0d, 0x7c, 0x61, 0x78, 0x99, - 0x69, 0x65, 0x33, 0xbc, 0xe8, 0xb6, 0x13, 0x4c, 0x02, 0x58, 0xdb, 0x3a, 0x6f, 0x3b, 0x6b, 0x46, - 0xb3, 0x76, 0x71, 0x04, 0xcb, 0x4d, 0x72, 0x2a, 0xa4, 0x7b, 0x75, 0x9b, 0xa4, 0xfa, 0xfb, 0x0a, - 0xd4, 0xa6, 0x1d, 0xa5, 0x2c, 0xf6, 0x56, 0x1c, 0x7c, 0xae, 0xc7, 0xd3, 0xf8, 0x92, 0x83, 0xcf, - 0x35, 0x69, 0x0d, 0x1b, 0x34, 0x93, 0x3f, 0xd7, 0xc5, 0xc2, 0xe3, 0xc1, 0x46, 0x4e, 0x03, 0x07, - 0x9f, 0x77, 0xd9, 0xe2, 0x23, 0xea, 0x1f, 0x2a, 0x80, 0x34, 0x3c, 0x72, 0x3d, 0x3f, 0xfd, 0xa0, - 0x55, 0xc8, 0x0d, 0xf0, 0x91, 0x3f, 0x67, 0xc8, 0x0c, 0x87, 0x5e, 0x87, 0xbc, 0x67, 0x1f, 0x9f, - 0xf8, 0x73, 0x2a, 0xfd, 0x1c, 0xa9, 0x6e, 0xc3, 0xb5, 0x88, 0x30, 0xa9, 0x92, 0xa1, 0xef, 0x29, - 0xb0, 0xda, 0x24, 0xa7, 0x7c, 0xba, 0x5f, 0xf5, 0x4c, 0xb2, 0xe3, 0x1c, 0x66, 0xe6, 0xfc, 0xd4, - 0x45, 0x1e, 0xe7, 0x50, 0xd0, 0x36, 0x85, 0xa8, 0x07, 0xb0, 0xc4, 0xa4, 0xe8, 0xb4, 0x66, 0xa7, - 0x4c, 0xb9, 0x7c, 0xca, 0x32, 0x33, 0x53, 0x76, 0x04, 0xd7, 0x63, 0xc3, 0x4b, 0x65, 0x3f, 0x77, - 0x21, 0x2b, 0xf9, 0x97, 0x36, 0x2b, 0xa1, 0x65, 0xd9, 0x69, 0x69, 0x14, 0xa3, 0x8e, 0xa8, 0x8b, - 0xa4, 0x93, 0xf1, 0x92, 0x9a, 0x7c, 0x30, 0x2d, 0x1f, 0x24, 0x17, 0x25, 0x82, 0x02, 0xc2, 0x27, - 0x50, 0x9f, 0xed, 0x31, 0x95, 0x0d, 0x7c, 0x03, 0xca, 0xe1, 0xb0, 0x89, 0xa6, 0xa9, 0xbc, 0xd6, - 0x34, 0x3d, 0x05, 0xe3, 0xba, 0xaf, 0x32, 0xf0, 0xf4, 0x4c, 0xef, 0x1e, 0x54, 0xb0, 0x63, 0x85, - 0xc8, 0xf8, 0xaa, 0x2a, 0x63, 0xc7, 0x0a, 0x88, 0xd4, 0x0f, 0x00, 0x34, 0x6c, 0xba, 0x9e, 0xd5, - 0x35, 0x6c, 0x2f, 0x21, 0x9d, 0x89, 0x1c, 0xfc, 0xe6, 0x44, 0x02, 0xa3, 0xfe, 0xa7, 0x02, 0x05, - 0x19, 0xdb, 0x46, 0x9d, 0xb8, 0x12, 0x73, 0xe2, 0x0c, 0x69, 0x58, 0xba, 0xd8, 0x55, 0x05, 0xd2, - 0xb0, 0x58, 0x30, 0xc7, 0x0a, 0xad, 0x86, 0xa5, 0xb3, 0x20, 0x95, 0xd9, 0x5b, 0x4e, 0x63, 0xe4, - 0x5b, 0x14, 0x10, 0x8f, 0xbd, 0x72, 0x57, 0x88, 0xbd, 0x5e, 0x83, 0xb2, 0x88, 0x6f, 0x79, 0x8f, - 0x79, 0x6e, 0x95, 0x02, 0xc6, 0x3a, 0xbd, 0x07, 0x15, 0x49, 0xc2, 0xfb, 0x15, 0xb1, 0xb4, 0x00, - 0xb2, 0xae, 0xd5, 0x7f, 0x28, 0x00, 0x4c, 0xcf, 0x10, 0x22, 0xe7, 0x1c, 0x4a, 0xe4, 0x9c, 0x03, - 0x35, 0xa0, 0x60, 0x1a, 0x23, 0xc3, 0xb4, 0xfd, 0x89, 0x1c, 0x9f, 0x7c, 0x47, 0xb7, 0xa0, 0x68, - 0x9c, 0x19, 0xf6, 0xc0, 0x38, 0x1c, 0x60, 0x39, 0xbc, 0x00, 0x40, 0x65, 0x15, 0x7a, 0xe3, 0xeb, - 0x2d, 0xc7, 0xd6, 0x9b, 0xd8, 0xca, 0xd8, 0x82, 0x43, 0x6f, 0x01, 0x22, 0x22, 0x55, 0x20, 0x8e, - 0x31, 0x12, 0x84, 0x79, 0x46, 0x58, 0x13, 0x98, 0x9e, 0x63, 0x8c, 0x38, 0xf5, 0xbb, 0xb0, 0xea, - 0x61, 0x13, 0xdb, 0x67, 0x31, 0xfa, 0x45, 0x46, 0x8f, 0x02, 0xdc, 0xb4, 0xc5, 0x6d, 0x80, 0xa9, - 0x2d, 0xb1, 0x0d, 0xb0, 0xa2, 0x15, 0x03, 0x33, 0x12, 0xc1, 0xea, 0x60, 0x12, 0xe3, 0x57, 0x60, - 0x74, 0x2b, 0x12, 0x35, 0x65, 0xb7, 0x06, 0x4b, 0x36, 0xd1, 0x0f, 0xc7, 0x64, 0xc2, 0xb6, 0xba, - 0x82, 0xb6, 0x68, 0x93, 0xad, 0x31, 0x99, 0x50, 0x2b, 0x18, 0x13, 0x6c, 0x85, 0x93, 0x86, 0x02, - 0x05, 0xb0, 0x6c, 0x61, 0x26, 0xb9, 0x29, 0x25, 0x24, 0x37, 0xf1, 0xec, 0xa5, 0x3c, 0x9b, 0xbd, - 0x44, 0xf3, 0x9f, 0x4a, 0x3c, 0xff, 0x89, 0x24, 0x37, 0xd5, 0x58, 0x72, 0x13, 0xce, 0x58, 0x96, - 0xaf, 0x90, 0xb1, 0xbc, 0x03, 0x10, 0xc4, 0xf8, 0x34, 0x2b, 0x08, 0x45, 0xc6, 0xd3, 0xe5, 0xa4, - 0x15, 0x65, 0xd8, 0x4f, 0xd0, 0x07, 0x50, 0x61, 0xa6, 0x6e, 0xbb, 0xba, 0x67, 0x50, 0xab, 0x5b, - 0x99, 0xd3, 0xa6, 0x44, 0xc9, 0x3a, 0xae, 0x46, 0x89, 0xd0, 0x57, 0xa1, 0x4a, 0x07, 0x8c, 0xa7, - 0xcd, 0xd0, 0x9c, 0x66, 0xcc, 0x7c, 0xb1, 0x6c, 0xf7, 0x3e, 0x94, 0xdd, 0x91, 0x3e, 0x30, 0x7c, - 0xec, 0x98, 0x36, 0x26, 0xf5, 0x6b, 0xf3, 0x3a, 0x73, 0x47, 0xbb, 0x92, 0x08, 0xbd, 0x0d, 0xc0, - 0x5c, 0x35, 0x5f, 0x6d, 0xab, 0xc2, 0xbf, 0x45, 0xf2, 0x58, 0x8d, 0xd5, 0xd7, 0xf8, 0x9a, 0x88, - 0xad, 0xce, 0xeb, 0x57, 0x58, 0x9d, 0xd4, 0xdc, 0x06, 0xee, 0xb9, 0x4e, 0x4c, 0xd7, 0xc3, 0xf5, - 0x1b, 0x7c, 0x86, 0x28, 0xa4, 0x47, 0x01, 0xd4, 0xda, 0x2d, 0x63, 0x68, 0x1c, 0x63, 0x4b, 0xec, - 0x2b, 0x84, 0xae, 0xb7, 0x35, 0xb6, 0x6b, 0xd4, 0x04, 0x46, 0x54, 0x96, 0x3b, 0x16, 0xdd, 0x81, - 0x6c, 0xa2, 0x33, 0x23, 0xe4, 0x26, 0x57, 0xe7, 0xb5, 0x7d, 0x9b, 0x34, 0x29, 0x8c, 0xd9, 0xdd, - 0x2f, 0x42, 0x95, 0x88, 0x33, 0x54, 0x21, 0xe6, 0x4d, 0x36, 0x2c, 0x31, 0xb9, 0xf2, 0x7c, 0x95, - 0x0d, 0xad, 0x42, 0x42, 0x6f, 0x84, 0x66, 0xf5, 0x4c, 0x56, 0xdf, 0xc3, 0x8e, 0x55, 0x6f, 0x84, - 0xef, 0x19, 0xf4, 0x06, 0xee, 0x79, 0x9f, 0x82, 0xb9, 0xf0, 0xec, 0x51, 0xfd, 0x23, 0x05, 0x8a, - 0x01, 0x82, 0x15, 0x1b, 0x8d, 0x31, 0xc1, 0x3a, 0x77, 0x9e, 0xd4, 0x67, 0x28, 0x1a, 0x30, 0xd0, - 0x33, 0x76, 0x75, 0xe6, 0x36, 0xf0, 0x37, 0x36, 0xad, 0xcc, 0x71, 0x28, 0x5a, 0x91, 0x41, 0xe8, - 0x0c, 0x72, 0xdf, 0x40, 0xc6, 0x03, 0x5f, 0x30, 0xc8, 0x32, 0x82, 0x12, 0x87, 0x71, 0x0e, 0x77, - 0x41, 0xbc, 0x72, 0x16, 0x39, 0xde, 0x05, 0x07, 0x51, 0x1e, 0xea, 0x8f, 0x15, 0x28, 0x87, 0x47, - 0x78, 0xb1, 0xa3, 0xde, 0x84, 0xeb, 0xc7, 0xd8, 0xc1, 0x94, 0x97, 0x6e, 0x8d, 0x3d, 0x91, 0x4a, - 0x63, 0x53, 0x38, 0xb5, 0x6b, 0x12, 0xd9, 0x12, 0xb8, 0x1e, 0x36, 0xd1, 0x43, 0x58, 0xa1, 0x4e, - 0x28, 0x4a, 0xcf, 0xfd, 0xdc, 0x32, 0x45, 0x84, 0x69, 0xdf, 0x02, 0xe4, 0xbb, 0xbe, 0x31, 0x88, - 0x12, 0xf3, 0x98, 0xbf, 0xc6, 0x30, 0x61, 0xea, 0x37, 0x80, 0xa7, 0x0a, 0x74, 0x07, 0xe5, 0x5e, - 0x83, 0x7b, 0xf2, 0x4a, 0x00, 0xa5, 0xae, 0x83, 0x0e, 0x11, 0x58, 0x40, 0xcf, 0xb6, 0x5a, 0xf4, - 0xcb, 0x00, 0xfc, 0x02, 0x9e, 0x4f, 0x35, 0xc2, 0x37, 0xd7, 0xdb, 0x8f, 0xa2, 0x77, 0xf2, 0x34, - 0xe3, 0xc8, 0xdf, 0x75, 0x4d, 0x63, 0x40, 0x55, 0x82, 0xb5, 0x22, 0xc5, 0xb2, 0x47, 0xb4, 0x15, - 0xf8, 0x63, 0xde, 0x9e, 0x07, 0x4b, 0x77, 0xe3, 0xed, 0x19, 0x49, 0x88, 0x83, 0x70, 0xd8, 0x9c, - 0xc7, 0x7d, 0x58, 0xb6, 0x89, 0x7e, 0xe4, 0x7a, 0x26, 0x0e, 0xe7, 0x43, 0x05, 0xad, 0x62, 0x93, - 0xc7, 0x14, 0xba, 0x2b, 0x03, 0x89, 0xda, 0x89, 0x41, 0x74, 0xd3, 0x1d, 0x0e, 0x6d, 0x5f, 0xe7, - 0xf9, 0x47, 0x8e, 0x11, 0x56, 0x4f, 0x0c, 0xb2, 0xcd, 0xc0, 0x2c, 0x05, 0x51, 0x9f, 0x41, 0x49, - 0x1c, 0x27, 0xb3, 0x21, 0xbe, 0x0f, 0x65, 0xb6, 0x48, 0x3d, 0xf6, 0x1a, 0x4b, 0xca, 0xa7, 0xaa, - 0xd0, 0x4a, 0xa3, 0xe0, 0x99, 0x15, 0x4d, 0x88, 0x8f, 0x65, 0x00, 0xc0, 0x9e, 0xd5, 0xff, 0x51, - 0xe0, 0x3a, 0x63, 0xfc, 0xb2, 0xa5, 0x34, 0x71, 0xfc, 0x9e, 0xb9, 0xf0, 0xf8, 0x9d, 0xa5, 0x50, - 0x6c, 0x07, 0xe5, 0x82, 0x8b, 0xd8, 0x79, 0x25, 0x44, 0x2e, 0x05, 0x27, 0xa1, 0xd1, 0x7e, 0x06, - 0xc8, 0xf2, 0x74, 0x63, 0xec, 0xbb, 0x64, 0xe2, 0x98, 0xb2, 0xb2, 0xc3, 0x03, 0x81, 0x37, 0x93, - 0x2a, 0x3b, 0x8c, 0x53, 0x4b, 0x6b, 0x8e, 0x7d, 0xb7, 0x37, 0x71, 0x4c, 0x51, 0xd7, 0xa9, 0x59, - 0x5e, 0x53, 0xf0, 0x10, 0xe7, 0xe1, 0x16, 0xa0, 0x16, 0x1e, 0xba, 0x3e, 0x7e, 0x6c, 0xd8, 0x03, - 0x6c, 0x3d, 0x73, 0x7d, 0xec, 0x91, 0x8b, 0x17, 0xc8, 0x7b, 0x50, 0x39, 0x62, 0xc4, 0xfa, 0x19, - 0xa3, 0x4e, 0xac, 0x58, 0x94, 0x8f, 0x42, 0xfc, 0xd4, 0x43, 0x28, 0x85, 0x27, 0xfd, 0x5e, 0xc0, - 0x41, 0x9c, 0x63, 0x2b, 0xcc, 0xb5, 0x89, 0x36, 0xfc, 0x6c, 0x9c, 0xee, 0xb9, 0x98, 0xee, 0x32, - 0x11, 0x23, 0x92, 0xb1, 0xf3, 0x0a, 0x43, 0x85, 0x78, 0x12, 0xf5, 0xdb, 0x19, 0x28, 0x8b, 0xfb, - 0x21, 0x93, 0xee, 0xc0, 0x70, 0x68, 0x8c, 0x6a, 0x7a, 0x98, 0x6d, 0x16, 0x4a, 0x72, 0x8c, 0x2a, - 0xd0, 0xe8, 0x2d, 0x58, 0x1a, 0x8f, 0x2c, 0x46, 0x99, 0x18, 0xcd, 0x6e, 0x65, 0xea, 0x8a, 0x26, - 0x49, 0xd0, 0x1d, 0x80, 0xe0, 0xd8, 0x3f, 0x48, 0xbf, 0xa6, 0x10, 0xb4, 0x09, 0x4b, 0x16, 0x53, - 0xa9, 0xac, 0x81, 0x8a, 0x5c, 0x75, 0x56, 0xcf, 0x9a, 0x24, 0xa4, 0x56, 0x11, 0x59, 0x2b, 0xf9, - 0xb0, 0x55, 0x84, 0x86, 0xa9, 0x95, 0x8e, 0x42, 0x7a, 0x94, 0xe6, 0xbc, 0x18, 0x32, 0xe7, 0x0f, - 0xa1, 0xd2, 0x3c, 0x37, 0x4e, 0xb1, 0x3c, 0x7a, 0xa4, 0x61, 0xb2, 0x71, 0xe8, 0xb8, 0xde, 0xd0, - 0x18, 0x44, 0xd5, 0x5d, 0x95, 0x60, 0x71, 0x39, 0xe1, 0xa7, 0x19, 0xb8, 0x11, 0x5f, 0x08, 0x3f, - 0x3f, 0x37, 0x37, 0xe8, 0x38, 0xe4, 0x15, 0x45, 0x79, 0x98, 0xc4, 0xef, 0xf2, 0x55, 0x05, 0x58, - 0x9e, 0x26, 0x7d, 0x04, 0x6b, 0x1e, 0xfe, 0x62, 0x6c, 0x7b, 0x58, 0xb7, 0xb0, 0xcf, 0xed, 0x4c, - 0x2c, 0x36, 0xe6, 0x59, 0xd8, 0x6c, 0x5e, 0x17, 0x24, 0x2d, 0x41, 0x21, 0xd6, 0xd9, 0x2f, 0xd0, - 0xe8, 0x84, 0xdb, 0x90, 0x3e, 0x1a, 0x18, 0x8e, 0x98, 0x08, 0x34, 0x0d, 0x18, 0xa4, 0x79, 0x69, - 0x65, 0x2f, 0x6c, 0x6c, 0x1f, 0x41, 0xd5, 0x60, 0x6a, 0x97, 0x3b, 0xb6, 0x28, 0xb7, 0x08, 0x9f, - 0x11, 0x99, 0x12, 0xad, 0x62, 0x84, 0x5f, 0xd5, 0xef, 0x64, 0x60, 0xb5, 0x67, 0x1a, 0xbe, 0x4f, - 0x1d, 0x55, 0xea, 0xcb, 0x1a, 0x77, 0x67, 0x8e, 0xff, 0xd9, 0x40, 0xa7, 0xeb, 0xf6, 0x8a, 0x37, - 0xf3, 0x42, 0xc5, 0xfe, 0xdc, 0x05, 0xc5, 0xfe, 0x55, 0xc8, 0x1f, 0x7b, 0xee, 0x78, 0xc4, 0x34, - 0x54, 0xd4, 0xf8, 0xcb, 0xf4, 0xc6, 0x08, 0x8b, 0x58, 0x16, 0x99, 0x9d, 0x09, 0xb1, 0x68, 0xa8, - 0xc2, 0xb6, 0x6a, 0xdf, 0x9b, 0xe8, 0xfc, 0x1e, 0x00, 0x2f, 0xcd, 0x03, 0x03, 0xed, 0x52, 0x88, - 0x7a, 0x06, 0xd7, 0x63, 0x9a, 0x48, 0x65, 0x81, 0xef, 0xc0, 0xb5, 0x23, 0xdb, 0xb1, 0xc9, 0x09, - 0xb6, 0xf4, 0x11, 0xf6, 0x4c, 0xec, 0xf8, 0xf2, 0xaa, 0x69, 0x4e, 0x43, 0x12, 0xd5, 0x0d, 0x30, - 0x6a, 0x8b, 0x1d, 0x42, 0xed, 0x6c, 0xf7, 0x8c, 0x23, 0xdc, 0x75, 0x6d, 0x27, 0xd5, 0x1e, 0xa0, - 0x62, 0x76, 0x04, 0x15, 0xe1, 0x92, 0x4a, 0x7c, 0x1a, 0x1e, 0x1a, 0x47, 0x58, 0x1f, 0x51, 0x1e, - 0x42, 0xea, 0x22, 0x91, 0x4c, 0xd5, 0x23, 0xa8, 0x3f, 0x65, 0xbe, 0xe8, 0x25, 0xe5, 0xbd, 0xac, - 0x1f, 0x17, 0x6e, 0x26, 0xf4, 0x93, 0x6a, 0x44, 0xaf, 0x43, 0xd5, 0xc1, 0xe7, 0xfa, 0x4c, 0x6f, - 0x65, 0x07, 0x9f, 0x07, 0xbc, 0xd5, 0x1f, 0x29, 0x70, 0x97, 0xf7, 0x28, 0xce, 0xd9, 0xbe, 0x8c, - 0x01, 0x72, 0x4e, 0x72, 0x51, 0x94, 0xb5, 0xa2, 0x80, 0x74, 0x2c, 0x9a, 0xe5, 0xf7, 0xfb, 0xbb, - 0x6c, 0x39, 0x64, 0x35, 0xfa, 0x18, 0xd3, 0x48, 0x2e, 0xae, 0x91, 0xbf, 0x55, 0x60, 0x63, 0xbe, - 0x80, 0xa9, 0xe7, 0xfa, 0x85, 0x44, 0x7c, 0x1d, 0xaa, 0x43, 0xdb, 0xd1, 0x67, 0xc4, 0x2c, 0x0f, - 0x6d, 0x67, 0xaa, 0xca, 0x63, 0x76, 0x6f, 0x23, 0x24, 0xde, 0xb3, 0xcd, 0x94, 0x5e, 0x85, 0xa5, - 0x96, 0x23, 0x63, 0x2a, 0x5f, 0x45, 0x03, 0x09, 0xea, 0x58, 0xea, 0x31, 0xbb, 0xd8, 0x11, 0xeb, - 0xe8, 0x55, 0x58, 0xbd, 0x25, 0x3f, 0xd1, 0x78, 0xe9, 0x31, 0x5d, 0xf4, 0x21, 0xc0, 0x18, 0xaa, - 0x01, 0x7b, 0x76, 0x3b, 0x3f, 0xae, 0x01, 0x25, 0xae, 0x81, 0x4b, 0xe4, 0x0e, 0xee, 0xc3, 0x67, - 0xe7, 0x5c, 0xfc, 0xa7, 0x48, 0xf5, 0x07, 0x0a, 0x34, 0x92, 0x46, 0x97, 0x4a, 0x91, 0x6f, 0xc1, - 0x22, 0xa6, 0xfc, 0x65, 0x34, 0x23, 0xa8, 0xa3, 0xe3, 0xd2, 0x04, 0x4d, 0x44, 0x1b, 0xd9, 0x98, - 0x36, 0xbe, 0xab, 0x40, 0x63, 0xc6, 0x05, 0xbc, 0x22, 0x4b, 0x8a, 0xe9, 0x31, 0x1b, 0x9f, 0xff, - 0x2f, 0x60, 0x3d, 0x51, 0x94, 0x57, 0xe8, 0x8f, 0xfe, 0x25, 0xee, 0x8f, 0x7e, 0x26, 0x3a, 0x98, - 0x7a, 0x83, 0x6c, 0xdc, 0x1b, 0x5c, 0xec, 0x9e, 0xa8, 0xb3, 0xf0, 0xfd, 0x01, 0xdb, 0x91, 0xb3, - 0x1a, 0x7d, 0x9c, 0x75, 0x58, 0x5f, 0xce, 0x32, 0xbd, 0xd8, 0x61, 0x51, 0x19, 0xb2, 0x81, 0x0c, - 0x57, 0x74, 0x58, 0x7f, 0xac, 0x00, 0x68, 0x41, 0x02, 0x39, 0x5b, 0x0b, 0x53, 0x2e, 0x3d, 0xe8, - 0xcf, 0x5c, 0x76, 0xd0, 0x9f, 0xbd, 0xe4, 0xa0, 0x3f, 0x17, 0xad, 0x85, 0xa9, 0x7f, 0xa0, 0xc0, - 0x0a, 0x4d, 0x9e, 0x5e, 0x22, 0x28, 0x7b, 0x1d, 0x16, 0xf9, 0xcd, 0x9f, 0xc4, 0x5b, 0x30, 0x02, - 0xc7, 0xce, 0x1b, 0x58, 0xf5, 0xd1, 0x76, 0x2c, 0xfc, 0x5c, 0xc8, 0xc9, 0x0b, 0x92, 0x1d, 0x0a, - 0x51, 0xdf, 0xe7, 0xd9, 0x3d, 0xe1, 0x15, 0x99, 0x37, 0xe4, 0x51, 0xb1, 0x92, 0x7c, 0xc5, 0x42, - 0x9c, 0x16, 0x7f, 0x05, 0xf2, 0xfc, 0xd2, 0x84, 0x1a, 0xa5, 0x4f, 0x3c, 0x5a, 0xfe, 0xbd, 0x2c, - 0xa0, 0xf0, 0x58, 0x53, 0x99, 0xc6, 0x95, 0x4f, 0x05, 0x2e, 0x1d, 0x31, 0x4d, 0xef, 0x43, 0x35, - 0x08, 0x99, 0x49, 0xd5, 0xc2, 0x97, 0x14, 0x59, 0xb1, 0x2a, 0x54, 0x74, 0x20, 0xe8, 0x7d, 0xa8, - 0x8a, 0x46, 0xd1, 0x0b, 0x50, 0xd1, 0x11, 0x57, 0x38, 0x8d, 0xc8, 0x1b, 0xc3, 0xb7, 0x75, 0x17, - 0x85, 0x3e, 0xe7, 0xdc, 0xd6, 0x45, 0xef, 0x44, 0x2e, 0xb8, 0xd4, 0xe2, 0x15, 0x07, 0x32, 0x73, - 0xc3, 0xe5, 0xdd, 0xf8, 0x0d, 0x17, 0x5e, 0xec, 0x2c, 0x85, 0xda, 0xc4, 0x2e, 0x8e, 0xfe, 0x06, - 0xbb, 0x8b, 0x76, 0x30, 0xc2, 0x9e, 0xe1, 0xbb, 0xde, 0x97, 0x7e, 0x0f, 0x58, 0xfd, 0x47, 0x85, - 0x5d, 0x80, 0x9f, 0x76, 0x90, 0x6a, 0xa2, 0x2f, 0xbc, 0x6a, 0x8c, 0x20, 0x67, 0x61, 0x62, 0x0a, - 0xef, 0xc5, 0x9e, 0x29, 0xfb, 0x50, 0xcd, 0xa2, 0x2a, 0xd9, 0x4b, 0x31, 0x44, 0xd6, 0x27, 0x68, - 0xd8, 0xe5, 0x03, 0xdb, 0x91, 0xdf, 0xc0, 0xb1, 0x67, 0x76, 0xba, 0x4a, 0x0d, 0x74, 0xcf, 0x78, - 0xde, 0xef, 0xa5, 0x3d, 0xfd, 0x1b, 0x1a, 0xcf, 0xf5, 0xa0, 0x44, 0x33, 0xf3, 0xb1, 0x54, 0x7e, - 0x68, 0x3c, 0xef, 0xf3, 0xe2, 0xec, 0xa9, 0x3d, 0xd2, 0xcd, 0x13, 0x6c, 0x9e, 0x8a, 0xaa, 0x55, - 0x91, 0x42, 0xd8, 0x3d, 0x09, 0xf5, 0x4f, 0x84, 0x57, 0x10, 0x82, 0xa4, 0xbd, 0xd8, 0x4b, 0x45, - 0x19, 0xb8, 0xa6, 0x31, 0xb8, 0x40, 0x20, 0x18, 0x1a, 0xcf, 0x59, 0x81, 0x4d, 0x48, 0x35, 0x71, - 0x4c, 0x6c, 0xe9, 0x96, 0x29, 0x6f, 0x98, 0x15, 0x39, 0xa4, 0x65, 0x12, 0xf5, 0x77, 0x14, 0xb8, - 0x16, 0x3a, 0x80, 0x27, 0xa9, 0xc3, 0x65, 0x76, 0xee, 0x19, 0xba, 0xfa, 0x51, 0x64, 0x10, 0x76, - 0x60, 0x14, 0xcb, 0xde, 0xb2, 0x33, 0xd9, 0xdb, 0x0f, 0x14, 0x58, 0x8d, 0x0a, 0xf1, 0x33, 0xc9, - 0xde, 0x62, 0x59, 0x67, 0x36, 0x96, 0x75, 0xaa, 0x7f, 0xa1, 0xc0, 0x6d, 0x26, 0x56, 0xd3, 0xb1, - 0x22, 0xd9, 0xe5, 0x2b, 0xd1, 0x52, 0x90, 0x18, 0x67, 0xc3, 0x89, 0x71, 0x4c, 0x77, 0xb9, 0x19, - 0xdd, 0xfd, 0xb7, 0x02, 0x77, 0xe6, 0x09, 0x99, 0x4a, 0x8b, 0x1f, 0xc1, 0x4d, 0x2e, 0xe6, 0x7c, - 0x5d, 0xae, 0x31, 0x82, 0xc7, 0xb3, 0x0a, 0xfd, 0x18, 0xd6, 0x09, 0x97, 0x21, 0xb1, 0x35, 0x9f, - 0xf9, 0x9b, 0x82, 0xe4, 0xf1, 0x65, 0x13, 0x92, 0x8b, 0x4f, 0xc8, 0x09, 0xcb, 0x19, 0x5a, 0xdb, - 0xf2, 0x12, 0x6f, 0xf8, 0xd6, 0xe7, 0x8b, 0xc6, 0x53, 0xe1, 0xdb, 0xc1, 0x99, 0x99, 0xdb, 0xc1, - 0xdf, 0x55, 0xe0, 0x66, 0x42, 0x57, 0x69, 0xbf, 0x1d, 0xe3, 0x5f, 0x74, 0xb2, 0x7e, 0xf2, 0x9a, - 0x78, 0x0b, 0xf9, 0x95, 0xec, 0x45, 0x7e, 0x45, 0xfd, 0xa7, 0x0c, 0xc0, 0xf4, 0x3c, 0x08, 0x55, - 0x21, 0xb3, 0xb3, 0x2d, 0xc2, 0x9a, 0xcc, 0xce, 0x36, 0x0d, 0x9c, 0x76, 0xb0, 0x8c, 0x43, 0xe9, - 0x23, 0x75, 0x83, 0x3d, 0xd3, 0x90, 0x71, 0x0b, 0x7b, 0x46, 0x1b, 0x50, 0xda, 0x76, 0x47, 0x9e, - 0x6b, 0x62, 0x42, 0x5c, 0x4f, 0xd8, 0x51, 0x18, 0x44, 0xc5, 0x6c, 0xe1, 0x01, 0xf6, 0xe5, 0x49, - 0x81, 0x78, 0xa3, 0x2d, 0xf9, 0x93, 0x66, 0x38, 0xc7, 0x58, 0xd4, 0x0c, 0xc3, 0x20, 0x2a, 0x41, - 0x77, 0x2c, 0xab, 0x32, 0xf4, 0x91, 0xe6, 0x06, 0x5d, 0x0f, 0xb3, 0x13, 0x35, 0x71, 0x4d, 0x32, - 0x78, 0x47, 0x5f, 0x85, 0x1b, 0x4d, 0x93, 0xd5, 0xd0, 0xba, 0x98, 0x10, 0x7b, 0x68, 0x13, 0xdf, - 0xa6, 0x8a, 0x3f, 0x15, 0x17, 0x26, 0xe7, 0x60, 0xa9, 0x7c, 0xbc, 0xac, 0x2f, 0xce, 0x3f, 0xc5, - 0x1b, 0xed, 0x4b, 0x73, 0x07, 0x83, 0x43, 0xc3, 0x3c, 0x15, 0x07, 0x9f, 0xc1, 0xbb, 0xfa, 0x37, - 0x0a, 0xac, 0x8a, 0x5b, 0x04, 0x62, 0x4f, 0x4e, 0x63, 0x2d, 0xf1, 0x7b, 0x54, 0x99, 0x2b, 0xde, - 0xa3, 0x0a, 0x45, 0x08, 0xd9, 0x8b, 0xbf, 0xe7, 0x51, 0xdb, 0x70, 0x3d, 0x26, 0x67, 0xda, 0xeb, - 0x2e, 0x0d, 0xce, 0x67, 0xcf, 0xa6, 0xc1, 0x98, 0x3b, 0x38, 0xc3, 0x56, 0x9f, 0x7c, 0xc9, 0x9f, - 0x26, 0xa2, 0xfb, 0xb0, 0x4c, 0x23, 0x73, 0x4f, 0x74, 0x20, 0x4d, 0x38, 0xa7, 0x55, 0x86, 0xe1, - 0x6e, 0xd5, 0x27, 0xb0, 0x9e, 0x28, 0x4d, 0xaa, 0xb1, 0x9d, 0xc0, 0x7a, 0x0f, 0xfb, 0xed, 0xe7, - 0x3e, 0xf6, 0x1c, 0x63, 0x30, 0x5d, 0x25, 0x69, 0xc6, 0x76, 0x2b, 0xfc, 0x09, 0xb4, 0x88, 0xff, - 0xa7, 0x5f, 0x3c, 0xef, 0xc2, 0xad, 0xe4, 0x9e, 0x52, 0xc9, 0xfd, 0x29, 0xac, 0xef, 0x7c, 0x49, - 0x72, 0xab, 0xdf, 0x84, 0x5b, 0x3b, 0x5f, 0x9a, 0x64, 0x97, 0x68, 0xe1, 0x63, 0xf6, 0x69, 0xeb, - 0x9e, 0xed, 0xa4, 0x0b, 0x9b, 0x54, 0x97, 0x7d, 0x45, 0x28, 0xda, 0xa7, 0x92, 0xef, 0xed, 0xb8, - 0x7c, 0x17, 0x7e, 0xa8, 0xfe, 0x70, 0x03, 0x8a, 0x41, 0x79, 0x04, 0x2d, 0x41, 0xb6, 0xfb, 0xb4, - 0x5f, 0x5b, 0x40, 0x00, 0x8b, 0xad, 0xf6, 0x6e, 0xbb, 0xdf, 0xae, 0x29, 0x0f, 0xbf, 0x9d, 0x81, - 0x62, 0xf0, 0x8f, 0x02, 0x68, 0x11, 0x32, 0x07, 0x4f, 0x6a, 0x0b, 0xa8, 0x04, 0x4b, 0x4f, 0xf7, - 0x9f, 0xec, 0x1f, 0x7c, 0xb6, 0x5f, 0x53, 0xd0, 0x2a, 0xd4, 0xf6, 0x0f, 0xfa, 0xfa, 0xd6, 0xc1, - 0x41, 0xbf, 0xd7, 0xd7, 0x9a, 0xdd, 0x6e, 0xbb, 0x55, 0xcb, 0xa0, 0x6b, 0xb0, 0xdc, 0xeb, 0x1f, - 0x68, 0x6d, 0xbd, 0x7f, 0xb0, 0xb7, 0xd5, 0xeb, 0x1f, 0xec, 0xb7, 0x6b, 0x59, 0x54, 0x87, 0xd5, - 0xe6, 0xae, 0xd6, 0x6e, 0xb6, 0x3e, 0x8f, 0x92, 0xe7, 0x28, 0xa6, 0xb3, 0xbf, 0x7d, 0xb0, 0xd7, - 0x6d, 0xf6, 0x3b, 0x5b, 0xbb, 0x6d, 0xfd, 0x59, 0x5b, 0xeb, 0x75, 0x0e, 0xf6, 0x6b, 0x79, 0xca, - 0x5e, 0x6b, 0xef, 0x74, 0x0e, 0xf6, 0x75, 0xda, 0xcb, 0xe3, 0x83, 0xa7, 0xfb, 0xad, 0xda, 0x22, - 0x5a, 0x87, 0xb5, 0x9d, 0xdd, 0x83, 0xad, 0xe6, 0xae, 0xbe, 0x7d, 0xb0, 0xff, 0xb8, 0xb3, 0x13, - 0x42, 0x2e, 0xd1, 0x26, 0xad, 0xa7, 0xdd, 0xdd, 0xce, 0x76, 0xb3, 0xdf, 0x6e, 0xe9, 0xed, 0xfd, - 0xbe, 0xf6, 0x79, 0xad, 0x40, 0x25, 0x62, 0x8f, 0x21, 0xd2, 0x22, 0x5a, 0x81, 0x4a, 0x67, 0xff, - 0x59, 0x73, 0xb7, 0xd3, 0xd2, 0x9f, 0x35, 0x77, 0x9f, 0xb6, 0x6b, 0x80, 0x10, 0x54, 0x5b, 0xcd, - 0x7e, 0x53, 0x67, 0xd2, 0x6c, 0xf7, 0xdb, 0xad, 0x5a, 0xe9, 0xe1, 0x63, 0x28, 0x85, 0xbe, 0x47, - 0xa0, 0x1d, 0x88, 0xf1, 0xeb, 0xbd, 0x67, 0xdb, 0xfa, 0xde, 0x41, 0xab, 0x5d, 0x5b, 0x40, 0xcb, - 0x50, 0xea, 0xb6, 0xa6, 0x00, 0x05, 0xd5, 0xa0, 0xdc, 0xec, 0x76, 0xa6, 0x90, 0xcc, 0xc3, 0x0f, - 0xa0, 0x14, 0xba, 0x02, 0x8c, 0x0a, 0x90, 0xeb, 0x6d, 0x37, 0xf7, 0x79, 0xdb, 0x66, 0xb7, 0xab, - 0x1d, 0x7c, 0xbd, 0xb3, 0xd7, 0xa4, 0x8a, 0xa7, 0x93, 0xf0, 0xb4, 0xd7, 0x7e, 0xd2, 0xfe, 0xbc, - 0x96, 0x79, 0xd8, 0x85, 0x6a, 0x34, 0x7c, 0xa7, 0x13, 0xd0, 0x7b, 0xba, 0xbd, 0xdd, 0xee, 0xf5, - 0xf8, 0x6c, 0xf4, 0x3b, 0x7b, 0xed, 0x83, 0xa7, 0x7d, 0xde, 0x6e, 0xbb, 0xb9, 0xbf, 0xdd, 0xde, - 0xad, 0x65, 0x28, 0x42, 0x6b, 0x77, 0x77, 0x9b, 0xdb, 0x54, 0xf7, 0xf4, 0xe5, 0xe9, 0xfe, 0x7e, - 0x67, 0x7f, 0xa7, 0x96, 0x7b, 0xf8, 0xf7, 0x0a, 0x14, 0xd9, 0x06, 0xf9, 0xc4, 0x76, 0x2c, 0xda, - 0xe6, 0xc0, 0x3f, 0xc1, 0x1e, 0xa9, 0x2d, 0xd0, 0x29, 0xde, 0xd9, 0xae, 0x29, 0xd4, 0x1a, 0x76, - 0xb0, 0x5f, 0xcb, 0x30, 0x19, 0x4d, 0xc3, 0xa9, 0x65, 0xa9, 0x8c, 0xa1, 0xdd, 0xaf, 0x96, 0x63, - 0x86, 0xc2, 0x36, 0xb5, 0x5a, 0x9e, 0x22, 0x43, 0x1b, 0x5c, 0x6d, 0x91, 0x99, 0xd3, 0xd8, 0xaf, - 0x2d, 0xa1, 0xf2, 0x74, 0x67, 0xab, 0x15, 0x50, 0x63, 0xde, 0x5e, 0x56, 0x2b, 0x32, 0xd9, 0xd9, - 0x0e, 0x55, 0x03, 0xda, 0x4a, 0xee, 0x49, 0xb5, 0xd2, 0xe6, 0x5f, 0xaf, 0x43, 0xa6, 0xdb, 0x42, - 0x7b, 0x50, 0x8d, 0x7e, 0x78, 0x82, 0xd6, 0x83, 0x0f, 0x6e, 0x66, 0x3f, 0x6b, 0x69, 0xdc, 0x4a, - 0x46, 0xf2, 0x95, 0xa3, 0x2e, 0xa0, 0x26, 0xc0, 0xf4, 0x4b, 0x1d, 0xb4, 0x36, 0xfb, 0xed, 0x0e, - 0x67, 0x53, 0x9f, 0xf7, 0x51, 0x8f, 0xba, 0x80, 0xde, 0x85, 0x6c, 0x9f, 0xb8, 0x48, 0xa4, 0xa6, - 0xd3, 0xbf, 0xd3, 0x68, 0xac, 0x84, 0x20, 0x92, 0xfa, 0x81, 0xf2, 0xae, 0x82, 0x3e, 0x86, 0x62, - 0xf0, 0x5f, 0x05, 0x48, 0xfc, 0x8f, 0x4a, 0xfc, 0xcf, 0x22, 0x1a, 0x6b, 0x33, 0xf0, 0xa0, 0xc7, - 0x3d, 0xa8, 0x46, 0xff, 0xed, 0x40, 0xea, 0x20, 0xf1, 0x9f, 0x14, 0xa4, 0x0e, 0x92, 0xff, 0x20, - 0x41, 0x5d, 0x40, 0x1f, 0xc2, 0x92, 0xf8, 0x47, 0x02, 0x24, 0x5c, 0x4b, 0xf4, 0xff, 0x0d, 0x1a, - 0xd7, 0x63, 0xd0, 0xa0, 0xa5, 0x0e, 0xab, 0x49, 0x7f, 0x17, 0x80, 0x5e, 0x93, 0x3d, 0xce, 0xfd, - 0x5b, 0x82, 0x86, 0x7a, 0x11, 0x49, 0xd0, 0xc1, 0x2f, 0x41, 0x41, 0x7e, 0xcd, 0x8f, 0xae, 0x07, - 0x73, 0x10, 0xfe, 0x9c, 0xbe, 0x71, 0x23, 0x0e, 0x0e, 0x37, 0x96, 0x5f, 0xc5, 0xcb, 0xc6, 0xb1, - 0x6f, 0xf1, 0x65, 0xe3, 0xf8, 0xc7, 0xf3, 0xea, 0x02, 0xda, 0x81, 0x72, 0xf8, 0xe3, 0x71, 0x74, - 0x33, 0xe8, 0x26, 0xfe, 0x39, 0x7b, 0xa3, 0x91, 0x84, 0x0a, 0x4f, 0x56, 0xf4, 0x9c, 0x57, 0x4e, - 0x56, 0xe2, 0x35, 0x08, 0x39, 0x59, 0xc9, 0x47, 0xc3, 0xea, 0x02, 0xea, 0xc3, 0x72, 0xec, 0xda, - 0x3d, 0xba, 0x15, 0xae, 0xd3, 0xcc, 0x30, 0xbc, 0x3d, 0x07, 0x1b, 0xb7, 0xc8, 0xe0, 0x93, 0x68, - 0x34, 0xd5, 0x68, 0xa4, 0x16, 0xd7, 0x58, 0x9b, 0x81, 0x07, 0x52, 0x6d, 0x41, 0x65, 0x07, 0xfb, - 0x5d, 0x0f, 0x9f, 0xa5, 0xe7, 0xf1, 0x98, 0xf1, 0x98, 0x7e, 0x96, 0x8d, 0x1a, 0x31, 0xda, 0xd0, - 0xb7, 0xda, 0x17, 0xf1, 0x69, 0x41, 0x29, 0xf4, 0x31, 0x30, 0x12, 0x4b, 0x77, 0xf6, 0x5b, 0xeb, - 0xc6, 0xcd, 0x04, 0x4c, 0xc0, 0xe5, 0x63, 0x28, 0xc8, 0xeb, 0xe5, 0xd2, 0x78, 0x62, 0xf7, 0xda, - 0xa5, 0xf1, 0xc4, 0x6f, 0xa1, 0xab, 0xd9, 0xef, 0x64, 0x14, 0xb4, 0x03, 0xa5, 0xd0, 0x45, 0x6c, - 0x29, 0xc5, 0xec, 0x45, 0x71, 0x29, 0x45, 0xc2, 0xad, 0x6d, 0xce, 0xe8, 0x53, 0xa8, 0x44, 0x2e, - 0x2b, 0x4b, 0xb5, 0x24, 0x5d, 0xd0, 0x6e, 0xac, 0x27, 0xe2, 0x82, 0x41, 0xf5, 0xa0, 0x16, 0xbf, - 0x1e, 0x8c, 0x6e, 0x87, 0xfb, 0x9f, 0xe5, 0x78, 0x67, 0x1e, 0x3a, 0xcc, 0x34, 0xfe, 0xb1, 0xb1, - 0x64, 0x3a, 0xe7, 0x63, 0x66, 0xc9, 0x74, 0xde, 0x37, 0xca, 0x9c, 0x69, 0xfc, 0xcb, 0x5e, 0xc9, - 0x74, 0xce, 0x47, 0xc6, 0x92, 0xe9, 0xbc, 0x0f, 0x82, 0xd5, 0x05, 0xaa, 0xca, 0x48, 0xb2, 0x2f, - 0x55, 0x99, 0x74, 0x1d, 0x40, 0xaa, 0x32, 0xf1, 0x80, 0x9c, 0x2f, 0xeb, 0xe8, 0x49, 0x5c, 0x68, - 0x1f, 0x9a, 0x3d, 0x48, 0x0d, 0xed, 0x43, 0x09, 0x87, 0x98, 0xea, 0x02, 0x7a, 0x06, 0x2b, 0x33, - 0xe7, 0x2d, 0x48, 0x8c, 0x68, 0xde, 0xf1, 0x73, 0xe3, 0xee, 0x5c, 0x7c, 0xc0, 0xf7, 0x54, 0x9e, - 0x5e, 0xcf, 0x1e, 0xa1, 0xa2, 0x37, 0xc2, 0xcd, 0xe7, 0x9e, 0x01, 0x37, 0xee, 0x5f, 0x46, 0x16, - 0xb3, 0x84, 0xc8, 0x89, 0x51, 0xc8, 0x12, 0x92, 0x0e, 0xb5, 0x42, 0x96, 0x90, 0x78, 0xd0, 0xa4, - 0x2e, 0xa0, 0x5f, 0x07, 0x34, 0x7b, 0x56, 0x87, 0xc4, 0xd0, 0xe7, 0x9e, 0x51, 0x36, 0x36, 0xe6, - 0x13, 0x48, 0xd6, 0xef, 0x2a, 0xe8, 0x1b, 0x70, 0x2d, 0xe1, 0x98, 0x0b, 0x6d, 0xcc, 0x51, 0xec, - 0x94, 0xfd, 0x6b, 0x17, 0x50, 0xcc, 0x55, 0x7e, 0xb8, 0x8b, 0x24, 0xe5, 0x27, 0xf4, 0x73, 0xff, - 0x32, 0xb2, 0x90, 0xfb, 0x2c, 0x4d, 0x8f, 0x14, 0x82, 0x50, 0x66, 0xe6, 0x44, 0x45, 0x86, 0x32, - 0xb3, 0xc7, 0x0f, 0x62, 0x2b, 0x68, 0x41, 0x29, 0x54, 0xb2, 0x46, 0xd3, 0xc8, 0x27, 0x56, 0x26, - 0x6f, 0xdc, 0x4c, 0xc0, 0x84, 0xdc, 0x67, 0x31, 0x28, 0xdb, 0xca, 0xcd, 0x20, 0x5e, 0x50, 0x6e, - 0xac, 0xcd, 0xc0, 0xc3, 0xdb, 0x6f, 0xb8, 0xb6, 0x29, 0xb7, 0xdf, 0x84, 0xa2, 0xab, 0xdc, 0x7e, - 0x93, 0x4a, 0xa1, 0xea, 0x02, 0xc2, 0x70, 0x23, 0xb9, 0xd0, 0x87, 0xee, 0x85, 0xda, 0xcd, 0xab, - 0x55, 0x36, 0x5e, 0xbf, 0x98, 0x28, 0xbc, 0x7e, 0x67, 0x2a, 0x5f, 0x68, 0x6a, 0xdc, 0x89, 0xd5, - 0x37, 0xb9, 0x7e, 0xe7, 0x96, 0xcc, 0x38, 0xdf, 0x99, 0xbf, 0x08, 0x94, 0x7c, 0xe7, 0xfd, 0x55, - 0xa1, 0xe4, 0x3b, 0xf7, 0xbf, 0x05, 0xf9, 0x52, 0x8d, 0xff, 0xd1, 0x9f, 0x5c, 0xaa, 0x73, 0xfe, - 0x52, 0x50, 0x2e, 0xd5, 0x79, 0xff, 0x0f, 0xa8, 0x2e, 0xa0, 0xaf, 0xc3, 0xca, 0xcc, 0xff, 0x3a, - 0x4a, 0x61, 0xe7, 0xfd, 0x95, 0x64, 0xe3, 0xee, 0x5c, 0x7c, 0x68, 0x9d, 0xee, 0x42, 0x25, 0x52, - 0xe9, 0x91, 0x9e, 0x3b, 0xa9, 0x4c, 0x25, 0x3d, 0x77, 0x62, 0x69, 0x88, 0x1a, 0x39, 0x5d, 0xf5, - 0xb3, 0x15, 0x96, 0x9e, 0x5c, 0xf5, 0xf3, 0x4b, 0x41, 0x72, 0xd5, 0x5f, 0x50, 0x9e, 0xe1, 0x41, - 0x71, 0x52, 0x21, 0x44, 0x06, 0xc5, 0x17, 0x94, 0x63, 0x64, 0x50, 0x7c, 0x51, 0x1d, 0x85, 0x77, - 0xb0, 0x73, 0x41, 0x07, 0x3b, 0x97, 0x77, 0xb0, 0x73, 0x71, 0x07, 0x3c, 0xea, 0x66, 0x45, 0x88, - 0x50, 0xd4, 0x1d, 0x2e, 0x6a, 0x84, 0xa2, 0xee, 0x48, 0xad, 0x42, 0x5d, 0xd8, 0xba, 0xff, 0x1f, - 0x7f, 0x57, 0x50, 0xfe, 0xed, 0x27, 0x77, 0x94, 0x7f, 0xff, 0xc9, 0x1d, 0xe5, 0xc7, 0x3f, 0xb9, - 0xa3, 0xfc, 0xf0, 0xbf, 0xee, 0x2c, 0x40, 0xcd, 0xf5, 0x8e, 0x1f, 0xf9, 0xf6, 0xe9, 0xd9, 0xa3, - 0xd3, 0x33, 0xf6, 0xf7, 0xa2, 0x87, 0x8b, 0xec, 0xe7, 0xfd, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, - 0x01, 0x06, 0x0f, 0x63, 0xec, 0x54, 0x00, 0x00, + // 6018 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7c, 0x4b, 0x73, 0x23, 0xc9, + 0x71, 0x30, 0x1b, 0x0f, 0x12, 0x48, 0x3c, 0x08, 0xd6, 0x70, 0x86, 0x18, 0xcc, 0x73, 0x7b, 0x76, + 0xe7, 0x9b, 0x1d, 0xed, 0xce, 0xee, 0x72, 0xf7, 0xd3, 0xb7, 0xda, 0xcf, 0xda, 0x30, 0x48, 0x60, + 0xb8, 0xd8, 0xe1, 0x03, 0x6e, 0x60, 0x66, 0xb5, 0xb6, 0xc2, 0x1d, 0xcd, 0xee, 0x22, 0xd9, 0x22, + 0xd0, 0x8d, 0xed, 0x6a, 0x90, 0x03, 0x85, 0x0f, 0xb6, 0x25, 0xdb, 0x52, 0x58, 0x0a, 0x3b, 0xc2, + 0xb2, 0xad, 0x93, 0x0e, 0xb6, 0xc3, 0xf6, 0xc5, 0xe1, 0x9b, 0xc3, 0x3e, 0xf9, 0xe6, 0xf0, 0xd1, + 0x47, 0x9f, 0x1c, 0x0a, 0xf9, 0xe4, 0x3f, 0xa0, 0x8b, 0x7d, 0x70, 0xd4, 0xab, 0xd1, 0xdd, 0x68, + 0x80, 0x9c, 0x9e, 0x1d, 0x85, 0x4e, 0x40, 0x67, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x66, + 0x55, 0x37, 0xc0, 0xc8, 0x1a, 0x1d, 0x3e, 0x1a, 0x79, 0xae, 0xef, 0xa2, 0x1c, 0xfd, 0xdf, 0x28, + 0x0f, 0xb1, 0x6f, 0x48, 0x58, 0xa3, 0x82, 0x3d, 0xe3, 0xc8, 0x0f, 0x1e, 0xaf, 0xd0, 0x27, 0x9d, + 0x60, 0xef, 0x0c, 0x7b, 0x01, 0xb0, 0xee, 0xe1, 0xd1, 0xc0, 0x36, 0x0d, 0xdf, 0x76, 0x1d, 0x7d, + 0xe8, 0x5a, 0x38, 0xc0, 0xac, 0x1f, 0xbb, 0xc7, 0x2e, 0xfb, 0xfb, 0x0e, 0xfd, 0x27, 0xa0, 0xab, + 0xde, 0x98, 0xf8, 0xec, 0x2f, 0x07, 0xa8, 0x9f, 0x41, 0xfd, 0x33, 0xc3, 0x37, 0x4f, 0x76, 0x06, + 0xee, 0xa1, 0x31, 0xd8, 0x76, 0x9d, 0x23, 0xfb, 0x58, 0xc3, 0x5f, 0x8c, 0x31, 0xf1, 0xd1, 0x1d, + 0x28, 0x99, 0x0c, 0xa0, 0x8f, 0x0c, 0xff, 0xa4, 0xae, 0xdc, 0x55, 0x1e, 0x14, 0x35, 0xe0, 0xa0, + 0xae, 0xe1, 0x9f, 0xa0, 0x06, 0x14, 0x3c, 0x7c, 0x66, 0x13, 0xdb, 0x75, 0xea, 0x99, 0xbb, 0xca, + 0x83, 0xac, 0x16, 0x3c, 0xab, 0x7f, 0xae, 0xc0, 0xf5, 0x04, 0xce, 0x64, 0xe4, 0x3a, 0x04, 0xa3, + 0x77, 0x61, 0xc5, 0x3c, 0x31, 0x9c, 0x63, 0x4c, 0xea, 0xca, 0xdd, 0xec, 0x83, 0xd2, 0xe6, 0xb5, + 0x47, 0x4c, 0x1b, 0x61, 0xe2, 0x8e, 0x8f, 0x87, 0x9a, 0x24, 0x5b, 0xd4, 0x17, 0x7a, 0x0b, 0x96, + 0x4f, 0xb0, 0x61, 0x61, 0xaf, 0x9e, 0xbd, 0xab, 0x3c, 0x28, 0x6d, 0xae, 0x73, 0x66, 0xb2, 0xb7, + 0x4f, 0x18, 0x4e, 0x13, 0x34, 0xea, 0x10, 0xea, 0x3d, 0xdf, 0xf5, 0x70, 0xd2, 0x90, 0x5f, 0x5c, + 0xae, 0x98, 0x92, 0x32, 0x71, 0x25, 0xa9, 0x1f, 0xc3, 0xf5, 0x84, 0xee, 0x84, 0x1e, 0x5e, 0x83, + 0x3c, 0xf6, 0x3c, 0xd7, 0x63, 0xca, 0x2d, 0x6d, 0x96, 0x78, 0x6f, 0x6d, 0x0a, 0xd2, 0x38, 0x46, + 0xed, 0xc2, 0xc6, 0xae, 0x6b, 0x58, 0x49, 0xd2, 0xae, 0x43, 0xde, 0x31, 0x86, 0x42, 0xd6, 0xa2, + 0xc6, 0x1f, 0x2e, 0x96, 0xc8, 0x82, 0xfa, 0x2c, 0x47, 0x21, 0xd0, 0x5b, 0x90, 0xb7, 0x7d, 0x3c, + 0xbc, 0x68, 0xf8, 0x9c, 0x68, 0xa1, 0x01, 0xfc, 0x44, 0x81, 0x5a, 0xbc, 0x1d, 0x42, 0x90, 0xa3, + 0x42, 0x0a, 0x5b, 0x62, 0xff, 0xe9, 0x28, 0xce, 0x8c, 0xc1, 0x18, 0x0b, 0x49, 0xf9, 0xc3, 0x54, + 0x33, 0xd9, 0x79, 0x9a, 0x41, 0xf7, 0x20, 0x77, 0x6a, 0x3b, 0x56, 0x3d, 0x77, 0x57, 0x79, 0x50, + 0xdd, 0x5c, 0x15, 0x14, 0x67, 0xd8, 0xf1, 0xfb, 0x93, 0x11, 0xd6, 0x18, 0x12, 0xd5, 0x61, 0x65, + 0x64, 0x4c, 0x06, 0xae, 0x61, 0xd5, 0xf3, 0x77, 0x95, 0x07, 0x65, 0x4d, 0x3e, 0xaa, 0x4f, 0xa0, + 0x22, 0x14, 0xc9, 0x0d, 0x04, 0xdd, 0x02, 0x30, 0x07, 0x63, 0xe2, 0x63, 0x4f, 0xb7, 0x2d, 0x26, + 0x62, 0x4e, 0x2b, 0x0a, 0x48, 0xc7, 0x42, 0x37, 0xa0, 0x48, 0xb0, 0x63, 0x71, 0x6c, 0x86, 0x61, + 0x0b, 0x1c, 0xd0, 0xb1, 0x54, 0x0d, 0xaa, 0x51, 0x73, 0xbb, 0x88, 0x5b, 0x30, 0xbe, 0xcc, 0xdc, + 0x99, 0x7f, 0x0c, 0xf9, 0xb6, 0x1c, 0xa8, 0x3f, 0x19, 0x71, 0xad, 0x4d, 0x07, 0x4a, 0x51, 0x7c, + 0xa0, 0x14, 0x49, 0x07, 0x3a, 0xc4, 0x84, 0x18, 0xc7, 0x52, 0x91, 0xf2, 0x51, 0x1d, 0x01, 0xf4, + 0x89, 0x2b, 0x8d, 0xe6, 0x2b, 0xc1, 0x62, 0xe1, 0x36, 0x77, 0x45, 0x2e, 0x96, 0x90, 0x2a, 0xe4, + 0x5a, 0xa1, 0x73, 0x63, 0xba, 0x63, 0xc7, 0x67, 0x2c, 0x2b, 0x1a, 0x7f, 0xa0, 0x16, 0x66, 0x99, + 0xfa, 0xc0, 0xe5, 0x7e, 0x87, 0xcd, 0x50, 0x51, 0x03, 0xcb, 0xdc, 0x15, 0x10, 0xf5, 0x10, 0x8a, + 0x7d, 0x7b, 0x88, 0x89, 0x6f, 0x0c, 0x47, 0xd4, 0x48, 0x46, 0x27, 0x13, 0x62, 0x9b, 0xc6, 0x80, + 0x75, 0x99, 0xd5, 0x82, 0x67, 0x2a, 0xf4, 0xc0, 0x3d, 0x66, 0x28, 0x6e, 0x3f, 0xf2, 0x91, 0xf6, + 0x41, 0xc6, 0x47, 0x47, 0xf6, 0x73, 0xfd, 0xd0, 0xf6, 0x09, 0xeb, 0xa3, 0xa2, 0x01, 0x07, 0x6d, + 0xd9, 0x3e, 0x51, 0x7f, 0x5b, 0x81, 0x12, 0x1b, 0x56, 0x60, 0xb9, 0xd1, 0x71, 0x2d, 0x74, 0x02, + 0x73, 0x06, 0xf6, 0x36, 0x14, 0x7d, 0x29, 0xb7, 0x30, 0x3c, 0xa1, 0xed, 0x60, 0x38, 0xda, 0x94, + 0x42, 0xfd, 0x81, 0x02, 0xb5, 0x2d, 0xd7, 0xf5, 0x89, 0xef, 0x19, 0xa3, 0x54, 0xfa, 0xbd, 0x07, + 0x79, 0x42, 0x9d, 0x83, 0xb0, 0x82, 0xca, 0x23, 0xb1, 0x03, 0x30, 0x8f, 0xa1, 0x71, 0x1c, 0xba, + 0x0f, 0xcb, 0x1e, 0x3e, 0x96, 0x9a, 0x2e, 0x6d, 0x56, 0x25, 0x95, 0xc6, 0xa0, 0x9a, 0xc0, 0x52, + 0x97, 0xbb, 0x16, 0x12, 0x27, 0x95, 0x5e, 0xfa, 0x80, 0xc2, 0x5b, 0x0a, 0xf1, 0x0d, 0x7f, 0x4c, + 0x84, 0x74, 0x6f, 0x3c, 0x4a, 0xd8, 0x6d, 0xb4, 0x29, 0xa8, 0xc7, 0x88, 0xb5, 0x35, 0x2f, 0x0e, + 0x52, 0x5b, 0x70, 0xb5, 0x43, 0x02, 0xd1, 0x46, 0xd8, 0x4a, 0xa3, 0x2c, 0xf5, 0x5b, 0x70, 0x2d, + 0xce, 0x25, 0xd5, 0x18, 0x55, 0x28, 0x1f, 0x86, 0xb8, 0xb0, 0xd1, 0x15, 0xb4, 0x08, 0x4c, 0xfd, + 0x3a, 0x54, 0x9b, 0x83, 0x81, 0x6b, 0x76, 0x5a, 0xa9, 0x44, 0x3d, 0x80, 0xd5, 0xa0, 0x79, 0x2a, + 0x19, 0xab, 0x90, 0x09, 0xbc, 0x4c, 0xc6, 0xb6, 0xd4, 0x4f, 0xe1, 0x46, 0x87, 0xf4, 0x1c, 0x63, + 0x44, 0x4e, 0x5c, 0x5f, 0xc3, 0xa6, 0x7b, 0x86, 0x3d, 0xdb, 0x39, 0x4e, 0x25, 0x9c, 0x05, 0x37, + 0x93, 0x79, 0xa5, 0x92, 0xf4, 0x1a, 0x2c, 0x0f, 0x0d, 0xef, 0x34, 0xd0, 0xa3, 0x78, 0x52, 0x3f, + 0x87, 0xd5, 0x1d, 0xec, 0x73, 0x43, 0x4e, 0xb3, 0x34, 0xae, 0x43, 0x81, 0x99, 0xff, 0xd4, 0xdb, + 0xae, 0xb0, 0xe7, 0x8e, 0xa5, 0xfe, 0x90, 0x6e, 0x2d, 0x01, 0xef, 0x54, 0x52, 0x5f, 0x72, 0xe1, + 0xe5, 0xe9, 0x02, 0x20, 0x62, 0xdd, 0xd5, 0x38, 0x47, 0x46, 0x42, 0x0d, 0x9b, 0x68, 0x1c, 0xad, + 0x9a, 0xb0, 0xda, 0x1d, 0xbf, 0xc4, 0x50, 0x2f, 0x23, 0x8c, 0xfa, 0x67, 0x0a, 0xd4, 0xa6, 0xbd, + 0xfc, 0x12, 0x2d, 0xee, 0xdf, 0x82, 0x2b, 0x3b, 0xd8, 0x6f, 0x0e, 0x06, 0x4c, 0x34, 0x92, 0x4a, + 0x03, 0x1f, 0x42, 0x1d, 0x3f, 0x37, 0x07, 0x63, 0x0b, 0xeb, 0xbe, 0x3b, 0x3c, 0x24, 0xbe, 0xeb, + 0x60, 0x9d, 0x8d, 0x9b, 0x08, 0xb3, 0xba, 0x26, 0xf0, 0x7d, 0x89, 0xe6, 0xbd, 0xa9, 0xa7, 0xb0, + 0x1e, 0xed, 0x3d, 0x95, 0x66, 0xde, 0x80, 0xe5, 0xa0, 0xb7, 0xec, 0xec, 0x14, 0x08, 0xa4, 0xfa, + 0x3b, 0xdc, 0xf0, 0x84, 0xdf, 0x4d, 0x33, 0xd0, 0x5b, 0x00, 0xdc, 0x5b, 0xeb, 0xa7, 0x78, 0xc2, + 0x86, 0x56, 0xd6, 0x8a, 0x1c, 0xf2, 0x04, 0x4f, 0xd0, 0x6b, 0x50, 0x76, 0x30, 0xb6, 0xf4, 0xc3, + 0xb1, 0x79, 0x8a, 0x85, 0xe1, 0x15, 0xb4, 0x12, 0x85, 0x6d, 0x71, 0x90, 0xfa, 0x97, 0x19, 0x58, + 0x0b, 0xc9, 0x90, 0x6a, 0xb8, 0xd3, 0x1d, 0x25, 0xb3, 0x68, 0x47, 0x41, 0xaf, 0xc3, 0xf2, 0x20, + 0x1c, 0x58, 0x97, 0x25, 0x5d, 0x17, 0x53, 0x6e, 0x1c, 0x87, 0x1e, 0x01, 0x58, 0xee, 0xb9, 0xa3, + 0x8f, 0x30, 0xf6, 0x48, 0x3d, 0xcf, 0x14, 0x28, 0xb6, 0x4d, 0x4a, 0xc7, 0x97, 0x4a, 0x91, 0x92, + 0xd0, 0x47, 0x82, 0xde, 0x83, 0xca, 0x08, 0x3b, 0x96, 0xed, 0x1c, 0x8b, 0x26, 0xcb, 0xac, 0x49, + 0x94, 0x79, 0x59, 0x90, 0xf0, 0x26, 0x6f, 0xc2, 0x8a, 0x54, 0xc9, 0x8a, 0xd8, 0x96, 0x05, 0xb1, + 0x50, 0x8b, 0x26, 0xf1, 0x9f, 0xe6, 0x0a, 0xb9, 0x5a, 0x5e, 0xfd, 0x8e, 0xc2, 0xec, 0x82, 0x8f, + 0x67, 0x6b, 0x92, 0xce, 0x8d, 0xd3, 0x90, 0x4f, 0xcc, 0xd6, 0x34, 0xe4, 0xe3, 0x00, 0x16, 0xc1, + 0x5d, 0x38, 0x57, 0x3f, 0x54, 0x00, 0xf5, 0x4c, 0xc3, 0xe1, 0x62, 0x90, 0xb4, 0x32, 0x10, 0xdf, + 0xf0, 0xfc, 0x90, 0xc1, 0x14, 0x18, 0x80, 0xda, 0xcb, 0x3a, 0xe4, 0x07, 0xf6, 0xd0, 0xf6, 0x59, + 0xe7, 0x79, 0x8d, 0x3f, 0xa0, 0x0d, 0x58, 0xc1, 0x8e, 0xc5, 0x1a, 0xe4, 0x58, 0x83, 0x65, 0xec, + 0x58, 0x4f, 0xf0, 0x44, 0xfd, 0x27, 0x05, 0x96, 0xb9, 0x2c, 0x21, 0x13, 0x50, 0x2e, 0x69, 0x02, + 0x99, 0x4b, 0x9b, 0x40, 0xf6, 0xc5, 0x4d, 0x20, 0x77, 0x91, 0x09, 0xa8, 0xff, 0xa2, 0xc0, 0x95, + 0x88, 0x2e, 0x53, 0x59, 0xfe, 0x7b, 0x50, 0x16, 0x33, 0x4a, 0x7b, 0x92, 0xcb, 0x3d, 0x3e, 0xf8, + 0x12, 0xa7, 0xd9, 0xa3, 0x24, 0xe8, 0x3e, 0xac, 0xf0, 0x51, 0xca, 0x81, 0x45, 0xa5, 0x94, 0x48, + 0x4a, 0xc7, 0x9b, 0x4d, 0x47, 0x23, 0x24, 0x61, 0x3c, 0x25, 0x52, 0x7d, 0x0c, 0x1b, 0x3b, 0xd8, + 0xdf, 0xe6, 0x99, 0x40, 0x34, 0xa1, 0x7b, 0xa1, 0x6d, 0x9c, 0x40, 0x7d, 0x96, 0x4f, 0x2a, 0xa5, + 0xbc, 0x09, 0x2b, 0x22, 0x31, 0x11, 0x93, 0x1c, 0xac, 0x2e, 0xc1, 0x5d, 0x93, 0x78, 0xf5, 0x0b, + 0xd8, 0xe8, 0x8e, 0x5f, 0x5e, 0xf8, 0x17, 0xe9, 0xf2, 0x13, 0xa8, 0xcf, 0x76, 0x99, 0x66, 0x9c, + 0xea, 0x5f, 0x65, 0x60, 0x79, 0x0f, 0x0f, 0x0f, 0xb1, 0x97, 0x98, 0x88, 0xde, 0x80, 0xe2, 0x90, + 0x61, 0x43, 0xab, 0x9d, 0x03, 0x78, 0xf6, 0x47, 0x2d, 0x55, 0x1f, 0x7b, 0x03, 0x6e, 0x07, 0x45, + 0xad, 0x40, 0x01, 0x4f, 0xbd, 0x01, 0x4f, 0xb9, 0x07, 0x36, 0x76, 0x7c, 0x8e, 0xce, 0x31, 0x34, + 0x70, 0x10, 0x23, 0xf8, 0x3f, 0xb0, 0xca, 0xcd, 0x44, 0x1f, 0x79, 0xb6, 0xeb, 0xd9, 0xfe, 0x84, + 0x65, 0xa3, 0x79, 0xad, 0xca, 0xc1, 0x5d, 0x01, 0x65, 0xa9, 0x15, 0x1e, 0x0d, 0xdc, 0x09, 0x4f, + 0xde, 0x97, 0x45, 0x6a, 0xc5, 0x40, 0xac, 0xe6, 0xf2, 0x06, 0x54, 0x0f, 0x6d, 0xc7, 0xf0, 0x26, + 0xfa, 0x19, 0xf6, 0x58, 0xe2, 0xbd, 0xc2, 0x68, 0x2a, 0x1c, 0xfa, 0x8c, 0x03, 0x69, 0xf4, 0x74, + 0x6c, 0xfb, 0xfa, 0x89, 0x41, 0x4e, 0xea, 0x05, 0x9e, 0x0e, 0x1e, 0xdb, 0xfe, 0x27, 0x06, 0x39, + 0x89, 0x67, 0x6f, 0xc5, 0x99, 0xec, 0xed, 0x57, 0xd9, 0x06, 0xc3, 0x15, 0x95, 0xca, 0x67, 0xa9, + 0xff, 0x93, 0x01, 0x14, 0x66, 0x91, 0x72, 0x93, 0x5a, 0xe1, 0xda, 0x97, 0xab, 0x54, 0xac, 0x27, + 0xce, 0x55, 0x93, 0xc8, 0x84, 0x4d, 0x2a, 0x4c, 0x26, 0x3d, 0xd4, 0xdb, 0x50, 0xc2, 0xbe, 0x69, + 0xe9, 0x82, 0x34, 0x97, 0x40, 0x0a, 0x94, 0x60, 0x97, 0x93, 0x63, 0xb8, 0xea, 0x13, 0x57, 0x37, + 0x06, 0x4c, 0x4f, 0xae, 0xa7, 0x4b, 0x17, 0xc0, 0xb7, 0xb7, 0xf7, 0x44, 0x5d, 0x64, 0x66, 0x8c, + 0x8f, 0xfa, 0xc4, 0x6d, 0xca, 0x46, 0x9c, 0x17, 0x69, 0x3b, 0xbe, 0x37, 0xd1, 0xae, 0xf8, 0xb3, + 0x98, 0x46, 0x1f, 0xea, 0xf3, 0x1a, 0xa0, 0x1a, 0x64, 0xa9, 0x07, 0xe7, 0x16, 0x4a, 0xff, 0x22, + 0x35, 0x5c, 0x29, 0x89, 0x4b, 0xcf, 0x51, 0x1f, 0x65, 0x3e, 0x54, 0xd4, 0x36, 0x5c, 0x9d, 0x7a, + 0x86, 0x8e, 0x73, 0x14, 0xe4, 0xfe, 0x2f, 0xb6, 0x5c, 0x7e, 0xac, 0xc0, 0xb5, 0x38, 0x9f, 0x54, + 0x33, 0xf9, 0x7f, 0xa1, 0x4c, 0xb0, 0x77, 0x66, 0x9b, 0x78, 0xcf, 0xb5, 0x44, 0x8c, 0x55, 0xdd, + 0x5c, 0x13, 0xe1, 0xf4, 0x14, 0xa3, 0x45, 0xc8, 0xa8, 0x0d, 0xd3, 0x39, 0x08, 0xad, 0xb8, 0x15, + 0x9f, 0xb8, 0x74, 0x3d, 0xa9, 0x5d, 0x28, 0x06, 0xfb, 0x0a, 0xba, 0x0b, 0x39, 0xba, 0x12, 0x85, + 0x28, 0x51, 0xef, 0xcc, 0x30, 0x74, 0xab, 0x66, 0xdb, 0x13, 0xc1, 0xa6, 0xeb, 0x58, 0x44, 0x2c, + 0xee, 0x12, 0x85, 0xf5, 0x38, 0x48, 0xfd, 0x79, 0x1e, 0xae, 0x71, 0x4f, 0xfd, 0x09, 0x36, 0x3c, + 0xff, 0x10, 0x1b, 0x7e, 0x2a, 0xc7, 0xf6, 0x2a, 0x43, 0xab, 0xdc, 0x8b, 0xef, 0xab, 0xf9, 0x0b, + 0x43, 0xab, 0x7b, 0x50, 0x39, 0x9c, 0xf8, 0x98, 0xe8, 0xe7, 0x9e, 0xed, 0xfb, 0xd8, 0x61, 0x3e, + 0x27, 0xa7, 0x95, 0x19, 0xf0, 0x33, 0x0e, 0xa3, 0x61, 0x2b, 0x27, 0xf2, 0xb0, 0x61, 0x31, 0x8f, + 0x93, 0xd3, 0x8a, 0x0c, 0xa2, 0x61, 0x83, 0x85, 0x42, 0xa7, 0x78, 0x32, 0x65, 0x51, 0xe0, 0xfa, + 0xa5, 0x30, 0xc9, 0xe1, 0x06, 0x14, 0x19, 0x09, 0x63, 0x50, 0xe4, 0xce, 0x95, 0x02, 0x58, 0xfb, + 0x37, 0xa1, 0x66, 0x8c, 0x46, 0x9e, 0xfb, 0xdc, 0x1e, 0x1a, 0x3e, 0xd6, 0x89, 0xfd, 0x6d, 0x5c, + 0x07, 0x46, 0xb3, 0x1a, 0x82, 0xf7, 0xec, 0x6f, 0x63, 0xf4, 0x08, 0x0a, 0xb6, 0xe3, 0x63, 0xef, + 0xcc, 0x18, 0xd4, 0xcb, 0x4c, 0x73, 0x68, 0x5a, 0xa1, 0xe9, 0x08, 0x8c, 0x16, 0xd0, 0xc4, 0x59, + 0xd3, 0x2e, 0xeb, 0x95, 0x19, 0xd6, 0x4f, 0xf0, 0x84, 0xd0, 0x3d, 0xc1, 0xc7, 0xde, 0xb0, 0x5e, + 0x65, 0x68, 0xf6, 0x1f, 0xfd, 0x7a, 0x62, 0xca, 0xb4, 0xca, 0x3a, 0xfe, 0x4a, 0x72, 0xca, 0xc4, + 0xe3, 0xf2, 0x8b, 0x13, 0x27, 0xf4, 0x1e, 0x94, 0xbe, 0x18, 0x63, 0x6f, 0xa2, 0xf3, 0x24, 0xb3, + 0x16, 0x4e, 0x32, 0x7f, 0x8d, 0x22, 0xf8, 0xf4, 0xc2, 0x17, 0xc1, 0x7f, 0xaa, 0x45, 0x73, 0x34, + 0xd6, 0xc7, 0xac, 0xcc, 0xb7, 0xc6, 0xb5, 0x68, 0x8e, 0xc6, 0x4f, 0xe9, 0x33, 0x7a, 0x04, 0x57, + 0x22, 0x43, 0x3d, 0xe3, 0x8a, 0x44, 0x8c, 0x6c, 0x2d, 0x3c, 0xda, 0x33, 0xaa, 0xca, 0x4f, 0x73, + 0x85, 0x52, 0xad, 0xac, 0x9e, 0x00, 0x6c, 0xb3, 0x5a, 0x36, 0x35, 0x87, 0x4b, 0xac, 0xa5, 0x0f, + 0xa1, 0xc4, 0x6b, 0xdf, 0x3a, 0xab, 0x49, 0x66, 0x58, 0x4d, 0x72, 0xe3, 0x91, 0x3c, 0xac, 0xa0, + 0x1b, 0x34, 0xe7, 0xc7, 0x6a, 0x93, 0x60, 0x06, 0xff, 0xd5, 0x8f, 0xa0, 0x3c, 0xed, 0xe9, 0xd9, + 0x26, 0x7a, 0x18, 0x2f, 0xb6, 0x8b, 0xb1, 0x4f, 0x89, 0x82, 0x32, 0xbb, 0xfa, 0x0c, 0xaa, 0x7d, + 0xcf, 0x70, 0xc8, 0x11, 0x16, 0x4e, 0xf2, 0x12, 0x92, 0xaa, 0x90, 0xe7, 0x8b, 0x20, 0x93, 0xb0, + 0x08, 0x38, 0x4a, 0x7d, 0x07, 0xf2, 0x7b, 0xd8, 0x3b, 0x66, 0x45, 0x36, 0xdf, 0xf0, 0x8e, 0xb1, + 0x3f, 0x2f, 0x1e, 0xe6, 0x58, 0x75, 0x17, 0x4a, 0xbd, 0xd1, 0xc0, 0x16, 0x99, 0x05, 0x7a, 0x13, + 0x96, 0x47, 0xee, 0xc0, 0x36, 0x27, 0xa2, 0x38, 0xbb, 0x26, 0x87, 0x80, 0xcd, 0xd3, 0x2e, 0x43, + 0x68, 0x82, 0x80, 0x9a, 0x17, 0xb3, 0x3e, 0x2a, 0x4d, 0x59, 0x63, 0xff, 0xd5, 0x1d, 0xa8, 0xf4, + 0xce, 0x6d, 0xdf, 0x3c, 0xf9, 0xcc, 0xf6, 0x1d, 0x4c, 0x08, 0x0d, 0xdd, 0x59, 0x98, 0x11, 0x94, + 0x8c, 0x97, 0xe9, 0x63, 0xc7, 0xa2, 0x2b, 0xd0, 0x26, 0xfa, 0x39, 0x27, 0x13, 0x39, 0x71, 0xd1, + 0x26, 0xa2, 0x9d, 0xda, 0x07, 0xb4, 0x65, 0xf8, 0xe6, 0x49, 0x94, 0xdb, 0xc7, 0x50, 0x23, 0x0c, + 0x20, 0x1b, 0x06, 0xaa, 0x16, 0x3e, 0x2c, 0x42, 0xae, 0xad, 0x92, 0xf0, 0x23, 0x26, 0xea, 0x9f, + 0xe6, 0x60, 0x63, 0xc6, 0x29, 0xa6, 0x8c, 0xbb, 0xa5, 0xd5, 0xb0, 0x49, 0xcb, 0x84, 0x6d, 0x3d, + 0x34, 0xdf, 0xc2, 0x5c, 0x98, 0x29, 0x7e, 0x1d, 0x56, 0x7d, 0x31, 0xe5, 0xfa, 0x20, 0xe1, 0x78, + 0x27, 0x6a, 0x0f, 0x5a, 0xd5, 0x8f, 0xda, 0x47, 0x24, 0x77, 0xcb, 0xc5, 0x72, 0xb7, 0xaf, 0x06, + 0x69, 0x00, 0x1e, 0xb9, 0xe6, 0x09, 0x0b, 0xc6, 0xa8, 0x52, 0x22, 0x73, 0xde, 0xa6, 0x28, 0x99, + 0x0b, 0xb0, 0x07, 0x1a, 0x45, 0x70, 0x3b, 0xe0, 0xc3, 0x58, 0x4e, 0xb0, 0x3d, 0xe0, 0x04, 0x5d, + 0xbe, 0xef, 0xe4, 0x87, 0xd4, 0xba, 0x44, 0xd2, 0x5a, 0x92, 0x1b, 0xb6, 0x77, 0x8c, 0x35, 0x8e, + 0x41, 0x1f, 0x40, 0x99, 0x50, 0x7b, 0xd2, 0xc5, 0xae, 0x51, 0x60, 0x94, 0x72, 0x6f, 0x9c, 0x5a, + 0x9a, 0x56, 0x22, 0x21, 0xb3, 0xfb, 0x10, 0xaa, 0x21, 0x75, 0xea, 0x67, 0x9b, 0xcc, 0xa5, 0x06, + 0xbe, 0x30, 0xbc, 0xcc, 0xb4, 0xb2, 0x19, 0x5e, 0x74, 0xdb, 0x09, 0x26, 0x01, 0xac, 0x6d, 0x9d, + 0xb7, 0x9d, 0x35, 0xa3, 0x59, 0xbb, 0x38, 0x82, 0xd5, 0x26, 0x39, 0x15, 0xd2, 0xbd, 0xba, 0x4d, + 0x52, 0xfd, 0x7d, 0x05, 0x6a, 0xd3, 0x8e, 0x52, 0x16, 0x7b, 0x2b, 0x0e, 0x3e, 0xd7, 0xe3, 0x69, + 0x7c, 0xc9, 0xc1, 0xe7, 0x9a, 0xb4, 0x86, 0xbb, 0x34, 0x93, 0x3f, 0xd7, 0xc5, 0xc2, 0xe3, 0xc1, + 0x46, 0x4e, 0x03, 0x07, 0x9f, 0x77, 0xd9, 0xe2, 0x23, 0xea, 0x1f, 0x2a, 0x80, 0x34, 0x3c, 0x72, + 0x3d, 0x3f, 0xfd, 0xa0, 0x55, 0xc8, 0x0d, 0xf0, 0x91, 0x3f, 0x67, 0xc8, 0x0c, 0x87, 0x5e, 0x87, + 0xbc, 0x67, 0x1f, 0x9f, 0xf8, 0x73, 0x2a, 0xfd, 0x1c, 0xa9, 0x6e, 0xc3, 0x95, 0x88, 0x30, 0xa9, + 0x92, 0xa1, 0x1f, 0x28, 0xb0, 0xde, 0x24, 0xa7, 0x7c, 0xba, 0x5f, 0xf5, 0x4c, 0xb2, 0xe3, 0x1c, + 0x66, 0xe6, 0xfc, 0xd4, 0x45, 0x1e, 0xe7, 0x50, 0xd0, 0x36, 0x85, 0xa8, 0x07, 0xb0, 0xc2, 0xa4, + 0xe8, 0xb4, 0x66, 0xa7, 0x4c, 0xb9, 0x78, 0xca, 0x32, 0x33, 0x53, 0x76, 0x04, 0x57, 0x63, 0xc3, + 0x4b, 0x65, 0x3f, 0x77, 0x20, 0x2b, 0xf9, 0x97, 0x36, 0x2b, 0xa1, 0x65, 0xd9, 0x69, 0x69, 0x14, + 0xa3, 0x8e, 0xa8, 0x8b, 0xa4, 0x93, 0xf1, 0x92, 0x9a, 0x7c, 0x30, 0x2d, 0x1f, 0x24, 0x17, 0x25, + 0x82, 0x02, 0xc2, 0x27, 0x50, 0x9f, 0xed, 0x31, 0x95, 0x0d, 0x7c, 0x13, 0xca, 0xe1, 0xb0, 0x89, + 0xa6, 0xa9, 0xbc, 0xd6, 0x34, 0x3d, 0x05, 0xe3, 0xba, 0xaf, 0x32, 0xf0, 0xf4, 0x4c, 0xef, 0x1e, + 0x54, 0xb0, 0x63, 0x85, 0xc8, 0xf8, 0xaa, 0x2a, 0x63, 0xc7, 0x0a, 0x88, 0xd4, 0x0f, 0x00, 0x34, + 0x6c, 0xba, 0x9e, 0xd5, 0x35, 0x6c, 0x2f, 0x21, 0x9d, 0x89, 0x1c, 0xfc, 0xe6, 0x44, 0x02, 0xa3, + 0xfe, 0x87, 0x02, 0x05, 0x19, 0xdb, 0x46, 0x9d, 0xb8, 0x12, 0x73, 0xe2, 0x0c, 0x69, 0x58, 0xba, + 0xd8, 0x55, 0x05, 0xd2, 0xb0, 0x58, 0x30, 0xc7, 0x0a, 0xad, 0x86, 0xa5, 0xb3, 0x20, 0x95, 0xd9, + 0x5b, 0x4e, 0x63, 0xe4, 0x5b, 0x14, 0x10, 0x8f, 0xbd, 0x72, 0x97, 0x88, 0xbd, 0x5e, 0x83, 0xb2, + 0x88, 0x6f, 0x79, 0x8f, 0x79, 0x6e, 0x95, 0x02, 0xc6, 0x3a, 0xbd, 0x07, 0x15, 0x49, 0xc2, 0xfb, + 0x15, 0xb1, 0xb4, 0x00, 0xb2, 0xae, 0xd5, 0xbf, 0x2f, 0x00, 0x4c, 0xcf, 0x10, 0x22, 0xe7, 0x1c, + 0x4a, 0xe4, 0x9c, 0x03, 0x35, 0xa0, 0x60, 0x1a, 0x23, 0xc3, 0xb4, 0xfd, 0x89, 0x1c, 0x9f, 0x7c, + 0x46, 0x37, 0xa1, 0x68, 0x9c, 0x19, 0xf6, 0xc0, 0x38, 0x1c, 0x60, 0x39, 0xbc, 0x00, 0x40, 0x65, + 0x15, 0x7a, 0xe3, 0xeb, 0x2d, 0xc7, 0xd6, 0x9b, 0xd8, 0xca, 0xd8, 0x82, 0x43, 0x6f, 0x01, 0x22, + 0x22, 0x55, 0x20, 0x8e, 0x31, 0x12, 0x84, 0x79, 0x46, 0x58, 0x13, 0x98, 0x9e, 0x63, 0x8c, 0x38, + 0xf5, 0xbb, 0xb0, 0xee, 0x61, 0x13, 0xdb, 0x67, 0x31, 0xfa, 0x65, 0x46, 0x8f, 0x02, 0xdc, 0xb4, + 0xc5, 0x2d, 0x80, 0xa9, 0x2d, 0xb1, 0x0d, 0xb0, 0xa2, 0x15, 0x03, 0x33, 0x12, 0xc1, 0xea, 0x60, + 0x12, 0xe3, 0x57, 0x60, 0x74, 0x6b, 0x12, 0x35, 0x65, 0xb7, 0x01, 0x2b, 0x36, 0xd1, 0x0f, 0xc7, + 0x64, 0xc2, 0xb6, 0xba, 0x82, 0xb6, 0x6c, 0x93, 0xad, 0x31, 0x99, 0x50, 0x2b, 0x18, 0x13, 0x6c, + 0x85, 0x93, 0x86, 0x02, 0x05, 0xb0, 0x6c, 0x61, 0x26, 0xb9, 0x29, 0x25, 0x24, 0x37, 0xf1, 0xec, + 0xa5, 0x3c, 0x9b, 0xbd, 0x44, 0xf3, 0x9f, 0x4a, 0x3c, 0xff, 0x89, 0x24, 0x37, 0xd5, 0x58, 0x72, + 0x13, 0xce, 0x58, 0x56, 0x2f, 0x91, 0xb1, 0xbc, 0x03, 0x10, 0xc4, 0xf8, 0x34, 0x2b, 0x08, 0x45, + 0xc6, 0xd3, 0xe5, 0xa4, 0x15, 0x65, 0xd8, 0x4f, 0xd0, 0x07, 0x50, 0x61, 0xa6, 0x6e, 0xbb, 0xba, + 0x67, 0x50, 0xab, 0x5b, 0x9b, 0xd3, 0xa6, 0x44, 0xc9, 0x3a, 0xae, 0x46, 0x89, 0xd0, 0x57, 0xa1, + 0x4a, 0x07, 0x8c, 0xa7, 0xcd, 0xd0, 0x9c, 0x66, 0xcc, 0x7c, 0xb1, 0x6c, 0xf7, 0x3e, 0x94, 0xdd, + 0x91, 0x3e, 0x30, 0x7c, 0xec, 0x98, 0x36, 0x26, 0xf5, 0x2b, 0xf3, 0x3a, 0x73, 0x47, 0xbb, 0x92, + 0x08, 0xbd, 0x0d, 0xc0, 0x5c, 0x35, 0x5f, 0x6d, 0xeb, 0xc2, 0xbf, 0x45, 0xf2, 0x58, 0x8d, 0xd5, + 0xd7, 0xf8, 0x9a, 0x88, 0xad, 0xce, 0xab, 0x97, 0x58, 0x9d, 0xd4, 0xdc, 0x06, 0xee, 0xb9, 0x4e, + 0x4c, 0xd7, 0xc3, 0xf5, 0x6b, 0x7c, 0x86, 0x28, 0xa4, 0x47, 0x01, 0xd4, 0xda, 0x2d, 0x63, 0x68, + 0x1c, 0x63, 0x4b, 0xec, 0x2b, 0x84, 0xae, 0xb7, 0x0d, 0xb6, 0x6b, 0xd4, 0x04, 0x46, 0x54, 0x96, + 0x3b, 0x16, 0xdd, 0x81, 0x6c, 0xa2, 0x33, 0x23, 0xe4, 0x26, 0x57, 0xe7, 0xb5, 0x7d, 0x9b, 0x34, + 0x29, 0x8c, 0xd9, 0xdd, 0xd7, 0xa0, 0x4a, 0xc4, 0x19, 0xaa, 0x10, 0xf3, 0x3a, 0x1b, 0x96, 0x98, + 0x5c, 0x79, 0xbe, 0xca, 0x86, 0x56, 0x21, 0xa1, 0x27, 0x42, 0xb3, 0x7a, 0x26, 0xab, 0xef, 0x61, + 0xc7, 0xaa, 0x37, 0xc2, 0xf7, 0x0c, 0x7a, 0x03, 0xf7, 0xbc, 0x4f, 0xc1, 0x5c, 0x78, 0xf6, 0x57, + 0xfd, 0x23, 0x05, 0x8a, 0x01, 0x82, 0x15, 0x1b, 0x8d, 0x31, 0xc1, 0x3a, 0x77, 0x9e, 0xd4, 0x67, + 0x28, 0x1a, 0x30, 0xd0, 0x33, 0x76, 0x75, 0xe6, 0x16, 0xf0, 0x27, 0x36, 0xad, 0xcc, 0x71, 0x28, + 0x5a, 0x91, 0x41, 0xe8, 0x0c, 0x72, 0xdf, 0x40, 0xc6, 0x03, 0x5f, 0x30, 0xc8, 0x32, 0x82, 0x12, + 0x87, 0x71, 0x0e, 0x77, 0x40, 0x3c, 0x72, 0x16, 0x39, 0xde, 0x05, 0x07, 0x51, 0x1e, 0xea, 0x4f, + 0x15, 0x28, 0x87, 0x47, 0xb8, 0xd8, 0x51, 0x6f, 0xc2, 0xd5, 0x63, 0xec, 0x60, 0xca, 0x4b, 0xb7, + 0xc6, 0x9e, 0x48, 0xa5, 0xb1, 0x29, 0x9c, 0xda, 0x15, 0x89, 0x6c, 0x09, 0x5c, 0x0f, 0x9b, 0xe8, + 0x21, 0xac, 0x51, 0x27, 0x14, 0xa5, 0xe7, 0x7e, 0x6e, 0x95, 0x22, 0xc2, 0xb4, 0x6f, 0x01, 0xf2, + 0x5d, 0xdf, 0x18, 0x44, 0x89, 0x79, 0xcc, 0x5f, 0x63, 0x98, 0x30, 0xf5, 0x1b, 0xc0, 0x53, 0x05, + 0xba, 0x83, 0x72, 0xaf, 0xc1, 0x3d, 0x79, 0x25, 0x80, 0x52, 0xd7, 0x41, 0x87, 0x08, 0x2c, 0xa0, + 0x67, 0x5b, 0x2d, 0xfa, 0x15, 0x00, 0x7e, 0x01, 0xcf, 0xa7, 0x1a, 0xe1, 0x9b, 0xeb, 0xad, 0x47, + 0xd1, 0x3b, 0x79, 0x9a, 0x71, 0xe4, 0xef, 0xba, 0xa6, 0x31, 0xa0, 0x2a, 0xc1, 0x5a, 0x91, 0x62, + 0xd9, 0x5f, 0xb4, 0x15, 0xf8, 0x63, 0xde, 0x9e, 0x07, 0x4b, 0x77, 0xe2, 0xed, 0x19, 0x49, 0x88, + 0x83, 0x70, 0xd8, 0x9c, 0xc7, 0x7d, 0x58, 0xb5, 0x89, 0x7e, 0xe4, 0x7a, 0x26, 0x0e, 0xe7, 0x43, + 0x05, 0xad, 0x62, 0x93, 0xc7, 0x14, 0xba, 0x2b, 0x03, 0x89, 0xda, 0x89, 0x41, 0x74, 0xd3, 0x1d, + 0x0e, 0x6d, 0x5f, 0xe7, 0xf9, 0x47, 0x8e, 0x11, 0x56, 0x4f, 0x0c, 0xb2, 0xcd, 0xc0, 0x2c, 0x05, + 0x51, 0x9f, 0x41, 0x49, 0x1c, 0x27, 0xb3, 0x21, 0xbe, 0x0f, 0x65, 0xb6, 0x48, 0x3d, 0xf6, 0x18, + 0x4b, 0xca, 0xa7, 0xaa, 0xd0, 0x4a, 0xa3, 0xe0, 0x3f, 0x2b, 0x9a, 0x10, 0x1f, 0xcb, 0x00, 0x80, + 0xfd, 0x57, 0xff, 0x5b, 0x81, 0xab, 0x8c, 0xf1, 0xcb, 0x96, 0xd2, 0xc4, 0xf1, 0x7b, 0x66, 0xe1, + 0xf1, 0x3b, 0x4b, 0xa1, 0xd8, 0x0e, 0xca, 0x05, 0x17, 0xb1, 0xf3, 0x5a, 0x88, 0x5c, 0x0a, 0x4e, + 0x42, 0xa3, 0xfd, 0x0c, 0x90, 0xe5, 0xe9, 0xc6, 0xd8, 0x77, 0xc9, 0xc4, 0x31, 0x65, 0x65, 0x87, + 0x07, 0x02, 0x6f, 0x26, 0x55, 0x76, 0x18, 0xa7, 0x96, 0xd6, 0x1c, 0xfb, 0x6e, 0x6f, 0xe2, 0x98, + 0xa2, 0xae, 0x53, 0xb3, 0xbc, 0xa6, 0xe0, 0x21, 0xce, 0xc3, 0x2d, 0x40, 0x2d, 0x3c, 0x74, 0x7d, + 0xfc, 0xd8, 0xb0, 0x07, 0xd8, 0x7a, 0xe6, 0xfa, 0xd8, 0x23, 0x8b, 0x17, 0xc8, 0x7b, 0x50, 0x39, + 0x62, 0xc4, 0xfa, 0x19, 0xa3, 0x4e, 0xac, 0x58, 0x94, 0x8f, 0x42, 0xfc, 0xd4, 0x43, 0x28, 0x85, + 0x27, 0xfd, 0x5e, 0xc0, 0x41, 0x9c, 0x63, 0x2b, 0xcc, 0xb5, 0x89, 0x36, 0xfc, 0x6c, 0x9c, 0xee, + 0xb9, 0x98, 0xee, 0x32, 0x11, 0x23, 0x92, 0xb1, 0xf3, 0x1a, 0x43, 0x85, 0x78, 0x12, 0xf5, 0xbb, + 0x19, 0x28, 0x8b, 0xfb, 0x21, 0x93, 0xee, 0xc0, 0x70, 0x68, 0x8c, 0x6a, 0x7a, 0x98, 0x6d, 0x16, + 0x4a, 0x72, 0x8c, 0x2a, 0xd0, 0xe8, 0x2d, 0x58, 0x19, 0x8f, 0x2c, 0x46, 0x99, 0x18, 0xcd, 0x6e, + 0x65, 0xea, 0x8a, 0x26, 0x49, 0xd0, 0x6d, 0x80, 0xe0, 0xd8, 0x3f, 0x48, 0xbf, 0xa6, 0x10, 0xb4, + 0x09, 0x2b, 0x16, 0x53, 0xa9, 0xac, 0x81, 0x8a, 0x5c, 0x75, 0x56, 0xcf, 0x9a, 0x24, 0xa4, 0x56, + 0x11, 0x59, 0x2b, 0xf9, 0xb0, 0x55, 0x84, 0x86, 0xa9, 0x95, 0x8e, 0x42, 0x7a, 0x94, 0xe6, 0xbc, + 0x1c, 0x32, 0xe7, 0x0f, 0xa1, 0xd2, 0x3c, 0x37, 0x4e, 0xb1, 0x3c, 0x7a, 0xa4, 0x61, 0xb2, 0x71, + 0xe8, 0xb8, 0xde, 0xd0, 0x18, 0x44, 0xd5, 0x5d, 0x95, 0x60, 0x71, 0x39, 0xe1, 0xe7, 0x19, 0xb8, + 0x16, 0x5f, 0x08, 0xbf, 0x3c, 0x37, 0x37, 0xe8, 0x38, 0xe4, 0x15, 0x45, 0x79, 0x98, 0xc4, 0xef, + 0xf2, 0x55, 0x05, 0x58, 0x9e, 0x26, 0x7d, 0x04, 0x1b, 0x1e, 0xfe, 0x62, 0x6c, 0x7b, 0x58, 0xb7, + 0xb0, 0xcf, 0xed, 0x4c, 0x2c, 0x36, 0xe6, 0x59, 0xd8, 0x6c, 0x5e, 0x15, 0x24, 0x2d, 0x41, 0x21, + 0xd6, 0xd9, 0xff, 0xa3, 0xd1, 0x09, 0xb7, 0x21, 0x7d, 0x34, 0x30, 0x1c, 0x31, 0x11, 0x68, 0x1a, + 0x30, 0x48, 0xf3, 0xd2, 0xca, 0x5e, 0xd8, 0xd8, 0x3e, 0x82, 0xaa, 0xc1, 0xd4, 0x2e, 0x77, 0x6c, + 0x51, 0x6e, 0x11, 0x3e, 0x23, 0x32, 0x25, 0x5a, 0xc5, 0x08, 0x3f, 0xaa, 0xdf, 0xcb, 0xc0, 0x7a, + 0xcf, 0x34, 0x7c, 0x9f, 0x3a, 0xaa, 0xd4, 0x97, 0x35, 0xee, 0xcc, 0x1c, 0xff, 0xb3, 0x81, 0x4e, + 0xd7, 0xed, 0x25, 0x6f, 0xe6, 0x85, 0x8a, 0xfd, 0xb9, 0x05, 0xc5, 0xfe, 0x75, 0xc8, 0x1f, 0x7b, + 0xee, 0x78, 0xc4, 0x34, 0x54, 0xd4, 0xf8, 0xc3, 0xf4, 0xc6, 0x08, 0x8b, 0x58, 0x96, 0x99, 0x9d, + 0x09, 0xb1, 0x68, 0xa8, 0xc2, 0xb6, 0x6a, 0xdf, 0x9b, 0xe8, 0xfc, 0x1e, 0x00, 0x2f, 0xcd, 0x03, + 0x03, 0xed, 0x52, 0x88, 0x7a, 0x06, 0x57, 0x63, 0x9a, 0x48, 0x65, 0x81, 0xef, 0xc0, 0x95, 0x23, + 0xdb, 0xb1, 0xc9, 0x09, 0xb6, 0xf4, 0x11, 0xf6, 0x4c, 0xec, 0xf8, 0xf2, 0xaa, 0x69, 0x4e, 0x43, + 0x12, 0xd5, 0x0d, 0x30, 0x6a, 0x8b, 0x1d, 0x42, 0xed, 0x6c, 0xf7, 0x8c, 0x23, 0xdc, 0x75, 0x6d, + 0x27, 0xd5, 0x1e, 0xa0, 0x62, 0x76, 0x04, 0x15, 0xe1, 0x92, 0x4a, 0x7c, 0x1a, 0x1e, 0x1a, 0x47, + 0x58, 0x1f, 0x51, 0x1e, 0x42, 0xea, 0x22, 0x91, 0x4c, 0xd5, 0x23, 0xa8, 0x3f, 0x65, 0xbe, 0xe8, + 0x25, 0xe5, 0xbd, 0xa8, 0x1f, 0x17, 0xae, 0x27, 0xf4, 0x93, 0x6a, 0x44, 0xaf, 0x43, 0xd5, 0xc1, + 0xe7, 0xfa, 0x4c, 0x6f, 0x65, 0x07, 0x9f, 0x07, 0xbc, 0xd5, 0x9f, 0x28, 0x70, 0x87, 0xf7, 0x28, + 0xce, 0xd9, 0xbe, 0x8c, 0x01, 0x72, 0x4e, 0x72, 0x51, 0x94, 0xb5, 0xa2, 0x80, 0x74, 0x2c, 0x9a, + 0xe5, 0xf7, 0xfb, 0xbb, 0x6c, 0x39, 0x64, 0x35, 0xfa, 0x37, 0xa6, 0x91, 0x5c, 0x5c, 0x23, 0x7f, + 0xa3, 0xc0, 0xdd, 0xf9, 0x02, 0xa6, 0x9e, 0xeb, 0x17, 0x12, 0xf1, 0x75, 0xa8, 0x0e, 0x6d, 0x47, + 0x9f, 0x11, 0xb3, 0x3c, 0xb4, 0x9d, 0xa9, 0x2a, 0x8f, 0xd9, 0xbd, 0x8d, 0x90, 0x78, 0xcf, 0x36, + 0x53, 0x7a, 0x15, 0x96, 0x5a, 0x8e, 0x8c, 0xa9, 0x7c, 0x15, 0x0d, 0x24, 0xa8, 0x63, 0xa9, 0xc7, + 0xec, 0x62, 0x47, 0xac, 0xa3, 0x57, 0x61, 0xf5, 0x96, 0x7c, 0x45, 0xe3, 0xa5, 0xc7, 0xb4, 0xe8, + 0x45, 0x80, 0x31, 0x54, 0x03, 0xf6, 0xec, 0x76, 0x7e, 0x5c, 0x03, 0x4a, 0x5c, 0x03, 0x17, 0xc8, + 0x1d, 0xdc, 0x87, 0xcf, 0xce, 0xb9, 0xf8, 0x4f, 0x91, 0xea, 0x8f, 0x14, 0x68, 0x24, 0x8d, 0x2e, + 0x95, 0x22, 0xdf, 0x82, 0x65, 0x4c, 0xf9, 0xcb, 0x68, 0x46, 0x50, 0x47, 0xc7, 0xa5, 0x09, 0x9a, + 0x88, 0x36, 0xb2, 0x31, 0x6d, 0x7c, 0x5f, 0x81, 0xc6, 0x8c, 0x0b, 0x78, 0x45, 0x96, 0x14, 0xd3, + 0x63, 0x36, 0x3e, 0xff, 0x5f, 0xc0, 0x8d, 0x44, 0x51, 0x5e, 0xa1, 0x3f, 0xfa, 0xe7, 0xb8, 0x3f, + 0xfa, 0x85, 0xe8, 0x60, 0xea, 0x0d, 0xb2, 0x71, 0x6f, 0xb0, 0xd8, 0x3d, 0x51, 0x67, 0xe1, 0xfb, + 0x03, 0xb6, 0x23, 0x67, 0x35, 0xfa, 0x77, 0xd6, 0x61, 0x7d, 0x39, 0xcb, 0x74, 0xb1, 0xc3, 0xa2, + 0x32, 0x64, 0x03, 0x19, 0x2e, 0xe9, 0xb0, 0x3a, 0xd0, 0xe0, 0x57, 0x63, 0x5f, 0xda, 0xd2, 0xd4, + 0x3e, 0x54, 0x22, 0x4c, 0x2e, 0x5e, 0xc2, 0x2a, 0x54, 0x8e, 0xcd, 0x59, 0x6b, 0x28, 0x1d, 0x9b, + 0x53, 0x01, 0xff, 0x42, 0x81, 0x1b, 0x89, 0x12, 0xa6, 0xd2, 0xe2, 0xd7, 0xa0, 0x1a, 0xe9, 0x51, + 0xae, 0x55, 0x31, 0xb0, 0x68, 0x17, 0xe5, 0x90, 0x1c, 0x8b, 0x17, 0xec, 0x1f, 0x2b, 0x00, 0x5a, + 0x90, 0x86, 0xcf, 0x56, 0x14, 0x95, 0x0b, 0xaf, 0x4b, 0x64, 0x2e, 0xba, 0x2e, 0x91, 0xbd, 0xe0, + 0xba, 0x44, 0x2e, 0x5a, 0x51, 0x54, 0xff, 0x40, 0x81, 0x35, 0x9a, 0x82, 0xbe, 0x44, 0x68, 0xfb, + 0x3a, 0x2c, 0xf3, 0xfb, 0x53, 0x89, 0x77, 0x89, 0x04, 0x8e, 0x9d, 0xda, 0xb0, 0x1a, 0xae, 0xed, + 0x58, 0xf8, 0xb9, 0x90, 0x93, 0x97, 0x75, 0x3b, 0x14, 0xa2, 0xbe, 0xcf, 0x6b, 0x24, 0x84, 0xd7, + 0xb5, 0xde, 0x90, 0x07, 0xee, 0x4a, 0xf2, 0x45, 0x15, 0x71, 0xe6, 0xfe, 0x15, 0xc8, 0xf3, 0xab, + 0x27, 0x6a, 0x94, 0x3e, 0xf1, 0x80, 0xfe, 0xf7, 0xb2, 0x80, 0xc2, 0x63, 0x4d, 0x65, 0x1a, 0x97, + 0x3e, 0x5b, 0xb9, 0x70, 0xc4, 0xe8, 0xfd, 0x48, 0x25, 0x47, 0xe6, 0xa3, 0xb5, 0xf0, 0x55, 0x4f, + 0x56, 0xf2, 0x0b, 0x95, 0x6e, 0x08, 0x7a, 0x1f, 0xaa, 0xa2, 0x51, 0xf4, 0x1a, 0x59, 0x74, 0xc4, + 0x15, 0x4e, 0x23, 0xb2, 0xef, 0xf0, 0x9d, 0xe7, 0x65, 0xa1, 0xcf, 0x39, 0x77, 0x9e, 0xd1, 0x3b, + 0x91, 0x6b, 0x42, 0xb5, 0x78, 0xdd, 0x86, 0xcc, 0xdc, 0x13, 0x7a, 0x37, 0x7e, 0x4f, 0x88, 0x97, + 0x8c, 0x4b, 0xa1, 0x36, 0xb1, 0xeb, 0xb7, 0xbf, 0xc9, 0x6e, 0xf4, 0x1d, 0x8c, 0xb0, 0x67, 0xf8, + 0xae, 0xf7, 0xa5, 0xdf, 0xa6, 0x56, 0xff, 0x41, 0x61, 0xaf, 0x11, 0x4c, 0x3b, 0x48, 0x35, 0xd1, + 0x0b, 0x2f, 0x6c, 0x23, 0xc8, 0x59, 0x98, 0x98, 0x62, 0x0f, 0x60, 0xff, 0x29, 0xfb, 0x50, 0xe5, + 0xa7, 0x2a, 0xd9, 0x4b, 0x31, 0x44, 0xee, 0x2c, 0x68, 0xd8, 0x15, 0x0e, 0xdb, 0x91, 0x6f, 0x12, + 0xb2, 0xff, 0xec, 0x8c, 0x9a, 0x1a, 0xe8, 0x9e, 0xf1, 0xbc, 0xdf, 0x4b, 0x7b, 0x86, 0x3a, 0x34, + 0x9e, 0xeb, 0x41, 0xa1, 0x6b, 0xe6, 0x95, 0xb3, 0xfc, 0xd0, 0x78, 0xde, 0xe7, 0x25, 0xee, 0x53, + 0x7b, 0xa4, 0x9b, 0x27, 0xd8, 0x3c, 0x15, 0xb5, 0xbf, 0x22, 0x85, 0xb0, 0xdb, 0x26, 0xea, 0x9f, + 0x08, 0xaf, 0x20, 0x04, 0x49, 0x7b, 0x3d, 0x9a, 0x8a, 0x32, 0x70, 0x4d, 0x63, 0xb0, 0x40, 0x20, + 0x18, 0x1a, 0xcf, 0x59, 0x99, 0x52, 0x48, 0x35, 0x71, 0x4c, 0x6c, 0xe9, 0x96, 0x29, 0xef, 0xe9, + 0x15, 0x39, 0xa4, 0x65, 0x12, 0xf5, 0x77, 0x15, 0xb8, 0x12, 0xba, 0xc6, 0x40, 0x52, 0x27, 0x1d, + 0xec, 0xf4, 0x38, 0x74, 0x81, 0xa6, 0xc8, 0x20, 0xec, 0xd8, 0x2d, 0x96, 0x03, 0x67, 0x67, 0x72, + 0xe0, 0x1f, 0x29, 0xb0, 0x1e, 0x15, 0xe2, 0x17, 0x92, 0x03, 0xc7, 0x72, 0xf7, 0x6c, 0x2c, 0x77, + 0xa7, 0xfb, 0xdf, 0x2d, 0x26, 0x56, 0xd3, 0xb1, 0x22, 0x39, 0xfa, 0x2b, 0xd1, 0x52, 0x50, 0x5e, + 0xc8, 0x86, 0xcb, 0x0b, 0x31, 0xdd, 0xe5, 0x66, 0x74, 0xf7, 0x5f, 0x0a, 0xdc, 0x9e, 0x27, 0x64, + 0x2a, 0x2d, 0x7e, 0x04, 0xd7, 0xb9, 0x98, 0xf3, 0x75, 0xb9, 0xc1, 0x08, 0x1e, 0xcf, 0x2a, 0xf4, + 0x63, 0xb8, 0x41, 0xb8, 0x0c, 0x89, 0xad, 0xf9, 0xcc, 0x5f, 0x17, 0x24, 0x8f, 0x2f, 0x9a, 0x90, + 0x5c, 0x7c, 0x42, 0x4e, 0x58, 0xe6, 0xd5, 0xda, 0x96, 0x57, 0xa1, 0xc3, 0x77, 0x67, 0x5f, 0x34, + 0x2a, 0x0d, 0xdf, 0xb1, 0xce, 0xcc, 0xdc, 0xb1, 0xfe, 0xbe, 0x02, 0xd7, 0x13, 0xba, 0x4a, 0xfb, + 0x06, 0x1e, 0x7f, 0x2f, 0x96, 0xf5, 0x93, 0xd7, 0xc4, 0x53, 0xc8, 0xaf, 0x64, 0x17, 0xf9, 0x15, + 0xf5, 0x1f, 0x33, 0x00, 0xd3, 0x53, 0x35, 0x54, 0x85, 0xcc, 0xce, 0xb6, 0x08, 0x6b, 0x32, 0x3b, + 0xdb, 0x34, 0xfc, 0xdc, 0xc1, 0x32, 0x7e, 0xa3, 0x7f, 0xa9, 0x1b, 0xec, 0x99, 0x86, 0x8c, 0x5b, + 0xd8, 0x7f, 0x74, 0x17, 0x4a, 0xdb, 0xee, 0xc8, 0x73, 0x4d, 0x4c, 0x88, 0xeb, 0x09, 0x3b, 0x0a, + 0x83, 0xa8, 0x98, 0x2d, 0x3c, 0xc0, 0xbe, 0x3c, 0x6f, 0x11, 0x4f, 0xb4, 0x25, 0xff, 0xa7, 0x19, + 0xce, 0x31, 0x16, 0x95, 0xd7, 0x30, 0x88, 0x4a, 0xd0, 0x1d, 0xcb, 0xda, 0x16, 0xfd, 0x4b, 0x03, + 0xb6, 0xae, 0x87, 0xd9, 0xb9, 0xa4, 0xb8, 0x6c, 0x1a, 0x3c, 0xa3, 0xaf, 0xc2, 0xb5, 0xa6, 0xc9, + 0x2a, 0x91, 0x5d, 0x4c, 0x88, 0x3d, 0xb4, 0x89, 0x6f, 0x53, 0xc5, 0x9f, 0x8a, 0x6b, 0xa7, 0x73, + 0xb0, 0x54, 0x3e, 0x7e, 0x38, 0x22, 0x4e, 0x91, 0xc5, 0x13, 0xed, 0x4b, 0x73, 0x07, 0x83, 0x43, + 0xc3, 0x3c, 0x15, 0xc7, 0xc7, 0xc1, 0xb3, 0xfa, 0xd7, 0x0a, 0xac, 0x8b, 0xbb, 0x18, 0x62, 0x4f, + 0x4e, 0x63, 0x2d, 0xf1, 0xdb, 0x68, 0x99, 0x4b, 0xde, 0x46, 0x0b, 0x45, 0x08, 0xd9, 0xc5, 0x6f, + 0x45, 0xa9, 0x6d, 0xb8, 0x1a, 0x93, 0x33, 0xed, 0xa5, 0xa1, 0x06, 0xe7, 0xb3, 0x67, 0xd3, 0x60, + 0xcc, 0x1d, 0x9c, 0x61, 0xab, 0x4f, 0xbe, 0xe4, 0x17, 0x3c, 0xd1, 0x7d, 0x58, 0xa5, 0xf9, 0x8d, + 0x27, 0x3a, 0x90, 0x26, 0x9c, 0xd3, 0x2a, 0xc3, 0x70, 0xb7, 0xea, 0x13, 0xb8, 0x91, 0x28, 0x4d, + 0xaa, 0xb1, 0x9d, 0xc0, 0x8d, 0x1e, 0xf6, 0xdb, 0xcf, 0x7d, 0xec, 0x39, 0xc6, 0x60, 0xba, 0x4a, + 0xd2, 0x8c, 0xed, 0x66, 0xf8, 0x45, 0x72, 0x11, 0xff, 0x4f, 0xdf, 0x1b, 0xdf, 0x85, 0x9b, 0xc9, + 0x3d, 0xa5, 0x92, 0xfb, 0x53, 0x96, 0x44, 0x7d, 0x29, 0x72, 0xab, 0xdf, 0x82, 0x9b, 0x3b, 0x5f, + 0x9a, 0x64, 0x17, 0x68, 0xe1, 0x63, 0xf6, 0x82, 0xf0, 0x9e, 0xed, 0xa4, 0x0b, 0x9b, 0x54, 0x97, + 0xbd, 0x8b, 0x29, 0xda, 0xa7, 0x92, 0xef, 0xed, 0xb8, 0x7c, 0x0b, 0x5f, 0xf7, 0x7f, 0x78, 0x17, + 0x8a, 0x41, 0x91, 0x09, 0xad, 0x40, 0xb6, 0xfb, 0xb4, 0x5f, 0x5b, 0x42, 0x00, 0xcb, 0xad, 0xf6, + 0x6e, 0xbb, 0xdf, 0xae, 0x29, 0x0f, 0xbf, 0x9b, 0x81, 0x62, 0xf0, 0x5d, 0x06, 0xb4, 0x0c, 0x99, + 0x83, 0x27, 0xb5, 0x25, 0x54, 0x82, 0x95, 0xa7, 0xfb, 0x4f, 0xf6, 0x0f, 0x3e, 0xdb, 0xaf, 0x29, + 0x68, 0x1d, 0x6a, 0xfb, 0x07, 0x7d, 0x7d, 0xeb, 0xe0, 0xa0, 0xdf, 0xeb, 0x6b, 0xcd, 0x6e, 0xb7, + 0xdd, 0xaa, 0x65, 0xd0, 0x15, 0x58, 0xed, 0xf5, 0x0f, 0xb4, 0xb6, 0xde, 0x3f, 0xd8, 0xdb, 0xea, + 0xf5, 0x0f, 0xf6, 0xdb, 0xb5, 0x2c, 0xaa, 0xc3, 0x7a, 0x73, 0x57, 0x6b, 0x37, 0x5b, 0x9f, 0x47, + 0xc9, 0x73, 0x14, 0xd3, 0xd9, 0xdf, 0x3e, 0xd8, 0xeb, 0x36, 0xfb, 0x9d, 0xad, 0xdd, 0xb6, 0xfe, + 0xac, 0xad, 0xf5, 0x3a, 0x07, 0xfb, 0xb5, 0x3c, 0x65, 0xaf, 0xb5, 0x77, 0x3a, 0x07, 0xfb, 0x3a, + 0xed, 0xe5, 0xf1, 0xc1, 0xd3, 0xfd, 0x56, 0x6d, 0x19, 0xdd, 0x80, 0x8d, 0x9d, 0xdd, 0x83, 0xad, + 0xe6, 0xae, 0xbe, 0x7d, 0xb0, 0xff, 0xb8, 0xb3, 0x13, 0x42, 0xae, 0xd0, 0x26, 0xad, 0xa7, 0xdd, + 0xdd, 0xce, 0x76, 0xb3, 0xdf, 0x6e, 0xe9, 0xed, 0xfd, 0xbe, 0xf6, 0x79, 0xad, 0x40, 0x25, 0x62, + 0x7f, 0x43, 0xa4, 0x45, 0xb4, 0x06, 0x95, 0xce, 0xfe, 0xb3, 0xe6, 0x6e, 0xa7, 0xa5, 0x3f, 0x6b, + 0xee, 0x3e, 0x6d, 0xd7, 0x00, 0x21, 0xa8, 0xb6, 0x9a, 0xfd, 0xa6, 0xce, 0xa4, 0xd9, 0xee, 0xb7, + 0x5b, 0xb5, 0xd2, 0xc3, 0xc7, 0x50, 0x0a, 0xbd, 0xd5, 0x41, 0x3b, 0x10, 0xe3, 0xd7, 0x7b, 0xcf, + 0xb6, 0xf5, 0xbd, 0x83, 0x56, 0xbb, 0xb6, 0x84, 0x56, 0xa1, 0xd4, 0x6d, 0x4d, 0x01, 0x0a, 0xaa, + 0x41, 0xb9, 0xd9, 0xed, 0x4c, 0x21, 0x99, 0x87, 0x1f, 0x40, 0x29, 0x74, 0x91, 0x1a, 0x15, 0x20, + 0xd7, 0xdb, 0x6e, 0xee, 0xf3, 0xb6, 0xcd, 0x6e, 0x57, 0x3b, 0xf8, 0x46, 0x67, 0xaf, 0x49, 0x15, + 0x4f, 0x27, 0xe1, 0x69, 0xaf, 0xfd, 0xa4, 0xfd, 0x79, 0x2d, 0xf3, 0xb0, 0x0b, 0xd5, 0x68, 0xf8, + 0x4e, 0x27, 0xa0, 0xf7, 0x74, 0x7b, 0xbb, 0xdd, 0xeb, 0xf1, 0xd9, 0xe8, 0x77, 0xf6, 0xda, 0x07, + 0x4f, 0xfb, 0xbc, 0xdd, 0x76, 0x73, 0x7f, 0xbb, 0xbd, 0x5b, 0xcb, 0x50, 0x84, 0xd6, 0xee, 0xee, + 0x36, 0xb7, 0xa9, 0xee, 0xe9, 0xc3, 0xd3, 0xfd, 0xfd, 0xce, 0xfe, 0x4e, 0x2d, 0xf7, 0xf0, 0xef, + 0x14, 0x28, 0xb2, 0x0d, 0xf2, 0x89, 0xed, 0x58, 0xb4, 0xcd, 0x81, 0x7f, 0x82, 0x3d, 0x52, 0x5b, + 0xa2, 0x53, 0xbc, 0xb3, 0x5d, 0x53, 0xa8, 0x35, 0xec, 0x60, 0xbf, 0x96, 0x61, 0x32, 0x9a, 0x86, + 0x53, 0xcb, 0x52, 0x19, 0x43, 0xbb, 0x5f, 0x2d, 0xc7, 0x0c, 0x85, 0x6d, 0x6a, 0xb5, 0x3c, 0x45, + 0x86, 0x36, 0xb8, 0xda, 0x32, 0x33, 0xa7, 0xb1, 0x5f, 0x5b, 0x41, 0xe5, 0xe9, 0xce, 0x56, 0x2b, + 0xa0, 0xc6, 0xbc, 0xbd, 0xac, 0x56, 0x64, 0xb2, 0xb3, 0x1d, 0xaa, 0x06, 0xb4, 0x95, 0xdc, 0x93, + 0x6a, 0xa5, 0xcd, 0xef, 0xdc, 0x84, 0x4c, 0xb7, 0x85, 0xf6, 0xa0, 0x1a, 0x7d, 0x7d, 0x07, 0xdd, + 0x08, 0x5e, 0x5b, 0x9a, 0x7d, 0x39, 0xa8, 0x71, 0x33, 0x19, 0xc9, 0x57, 0x8e, 0xba, 0x84, 0x9a, + 0x00, 0xd3, 0xf7, 0x9d, 0xd0, 0xc6, 0xec, 0x1b, 0x50, 0x9c, 0x4d, 0x7d, 0xde, 0xab, 0x51, 0xea, + 0x12, 0x7a, 0x17, 0xb2, 0x7d, 0xe2, 0x22, 0x91, 0x9a, 0x4e, 0x3f, 0x4a, 0xd2, 0x58, 0x0b, 0x41, + 0x24, 0xf5, 0x03, 0xe5, 0x5d, 0x05, 0x7d, 0x0c, 0xc5, 0xe0, 0x8b, 0x0f, 0x48, 0x7c, 0x8d, 0x26, + 0xfe, 0xc9, 0x8d, 0xc6, 0xc6, 0x0c, 0x3c, 0xe8, 0x71, 0x0f, 0xaa, 0xd1, 0x6f, 0x46, 0x48, 0x1d, + 0x24, 0x7e, 0x8f, 0x42, 0xea, 0x20, 0xf9, 0x33, 0x13, 0xea, 0x12, 0xfa, 0x10, 0x56, 0xc4, 0x77, + 0x1d, 0x90, 0x70, 0x2d, 0xd1, 0xaf, 0x44, 0x34, 0xae, 0xc6, 0xa0, 0x41, 0x4b, 0x1d, 0xd6, 0x93, + 0x3e, 0xba, 0x80, 0x5e, 0x93, 0x3d, 0xce, 0xfd, 0xb8, 0x43, 0x43, 0x5d, 0x44, 0x12, 0x74, 0xf0, + 0xff, 0xa1, 0x20, 0xbf, 0x89, 0x80, 0xae, 0x06, 0x73, 0x10, 0xfe, 0x28, 0x41, 0xe3, 0x5a, 0x1c, + 0x1c, 0x6e, 0x2c, 0xbf, 0x2d, 0x20, 0x1b, 0xc7, 0xbe, 0x68, 0x20, 0x1b, 0xc7, 0x3f, 0x41, 0xa0, + 0x2e, 0xa1, 0x1d, 0x28, 0x87, 0x5f, 0xc1, 0x47, 0xd7, 0x83, 0x6e, 0xe2, 0x1f, 0x05, 0x68, 0x34, + 0x92, 0x50, 0xe1, 0xc9, 0x8a, 0x9e, 0x96, 0xcb, 0xc9, 0x4a, 0xbc, 0x4c, 0x22, 0x27, 0x2b, 0xf9, + 0x80, 0x5d, 0x5d, 0x42, 0x7d, 0x58, 0x8d, 0xbd, 0xbc, 0x80, 0x6e, 0x86, 0xeb, 0x34, 0x33, 0x0c, + 0x6f, 0xcd, 0xc1, 0xc6, 0x2d, 0x32, 0x78, 0xb1, 0x1c, 0x4d, 0x35, 0x1a, 0xa9, 0xc5, 0x35, 0x36, + 0x66, 0xe0, 0x81, 0x54, 0x5b, 0x50, 0xd9, 0xc1, 0x7e, 0xd7, 0xc3, 0x67, 0xe9, 0x79, 0x3c, 0x66, + 0x3c, 0xa6, 0x2f, 0xb7, 0xa3, 0x46, 0x8c, 0x36, 0xf4, 0xc6, 0xfb, 0x22, 0x3e, 0x2d, 0x28, 0x85, + 0x5e, 0xa9, 0x46, 0x62, 0xe9, 0xce, 0xbe, 0xb1, 0xde, 0xb8, 0x9e, 0x80, 0x09, 0xb8, 0x7c, 0x0c, + 0x05, 0x79, 0x49, 0x5f, 0x1a, 0x4f, 0xec, 0xed, 0x00, 0x69, 0x3c, 0xf1, 0xbb, 0xfc, 0x6a, 0xf6, + 0x7b, 0x19, 0x05, 0xed, 0x40, 0x29, 0x74, 0x9d, 0x5d, 0x4a, 0x31, 0x7b, 0xdd, 0x5e, 0x4a, 0x91, + 0x70, 0xf7, 0x9d, 0x33, 0xfa, 0x14, 0x2a, 0x91, 0x2b, 0xdf, 0x52, 0x2d, 0x49, 0xd7, 0xdc, 0x1b, + 0x37, 0x12, 0x71, 0xc1, 0xa0, 0x7a, 0x50, 0x8b, 0x5f, 0xb2, 0x46, 0xb7, 0xc2, 0xfd, 0xcf, 0x72, + 0xbc, 0x3d, 0x0f, 0x1d, 0x66, 0x1a, 0x7f, 0x65, 0x5b, 0x32, 0x9d, 0xf3, 0x4a, 0xb8, 0x64, 0x3a, + 0xef, 0x4d, 0x6f, 0xce, 0x34, 0xfe, 0x7e, 0xb4, 0x64, 0x3a, 0xe7, 0x55, 0x6d, 0xc9, 0x74, 0xde, + 0x6b, 0xd5, 0xea, 0x12, 0x55, 0x65, 0x24, 0xd9, 0x97, 0xaa, 0x4c, 0xba, 0x54, 0x21, 0x55, 0x99, + 0x78, 0xcd, 0x80, 0x2f, 0xeb, 0xe8, 0x79, 0x66, 0x68, 0x1f, 0x9a, 0x3d, 0x8e, 0x0e, 0xed, 0x43, + 0x09, 0x47, 0xc1, 0xea, 0x12, 0x7a, 0x06, 0x6b, 0x33, 0xa7, 0x56, 0x48, 0x8c, 0x68, 0xde, 0x21, + 0x7e, 0xe3, 0xce, 0x5c, 0x7c, 0xc0, 0xf7, 0x54, 0xde, 0x01, 0x98, 0x3d, 0x88, 0x46, 0x6f, 0x84, + 0x9b, 0xcf, 0x3d, 0x49, 0x6f, 0xdc, 0xbf, 0x88, 0x2c, 0x66, 0x09, 0xd1, 0x33, 0x95, 0x5b, 0x49, + 0x03, 0x0f, 0x0e, 0x6c, 0x42, 0x96, 0x90, 0x78, 0x5a, 0xa2, 0x2e, 0xa1, 0xdf, 0x00, 0x34, 0x7b, + 0xe2, 0x89, 0xc4, 0xd0, 0xe7, 0x9e, 0xf4, 0x36, 0xee, 0xce, 0x27, 0x90, 0xac, 0xdf, 0x55, 0xd0, + 0x37, 0xe1, 0x4a, 0xc2, 0x61, 0x21, 0xba, 0x3b, 0x47, 0xb1, 0x53, 0xf6, 0xaf, 0x2d, 0xa0, 0x98, + 0xab, 0xfc, 0x70, 0x17, 0x49, 0xca, 0x4f, 0xe8, 0xe7, 0xfe, 0x45, 0x64, 0x41, 0x67, 0xdf, 0x94, + 0x5f, 0xac, 0x49, 0x1c, 0xca, 0xfc, 0x33, 0x33, 0x39, 0x94, 0x05, 0x67, 0x56, 0xcc, 0x39, 0x97, + 0xa6, 0x07, 0x16, 0x41, 0xa0, 0x34, 0x73, 0x5e, 0x23, 0x03, 0xa5, 0xd9, 0xc3, 0x0d, 0xb1, 0xd1, + 0xb4, 0xa0, 0x14, 0x2a, 0x88, 0xa3, 0x69, 0x5c, 0x15, 0x2b, 0xc2, 0x37, 0xae, 0x27, 0x60, 0x42, + 0xce, 0xb9, 0x18, 0x14, 0x85, 0xe5, 0x56, 0x13, 0x2f, 0x57, 0x37, 0x36, 0x66, 0xe0, 0xe1, 0xcd, + 0x3d, 0x5c, 0x39, 0x95, 0x9b, 0x7b, 0x42, 0x49, 0x57, 0x6e, 0xee, 0x49, 0x85, 0x56, 0x75, 0x09, + 0x61, 0xb8, 0x96, 0x5c, 0x46, 0x44, 0xf7, 0x42, 0xed, 0xe6, 0x55, 0x42, 0x1b, 0xaf, 0x2f, 0x26, + 0x0a, 0x7b, 0x87, 0x99, 0xba, 0x1a, 0x9a, 0x2e, 0x9d, 0xc4, 0xda, 0x9e, 0xf4, 0x0e, 0x73, 0x0b, + 0x72, 0x9c, 0xef, 0xcc, 0x67, 0x1c, 0x25, 0xdf, 0x79, 0x9f, 0x93, 0x94, 0x7c, 0xe7, 0x7e, 0xff, + 0x91, 0x3b, 0x82, 0xf8, 0xc7, 0x18, 0xa5, 0x23, 0x98, 0xf3, 0xd9, 0x47, 0xe9, 0x08, 0xe6, 0x7d, + 0xc3, 0x51, 0x5d, 0x42, 0xdf, 0x80, 0xb5, 0x99, 0x6f, 0x6f, 0x4a, 0x61, 0xe7, 0x7d, 0xee, 0xb3, + 0x71, 0x67, 0x2e, 0x3e, 0xe4, 0x05, 0x76, 0xa1, 0x12, 0xa9, 0x23, 0xc9, 0x7d, 0x21, 0xa9, 0x08, + 0x26, 0xf7, 0x85, 0xc4, 0xc2, 0x13, 0x35, 0x72, 0xba, 0x10, 0x67, 0xeb, 0x37, 0x3d, 0xb9, 0x10, + 0xe7, 0x17, 0x9a, 0xe4, 0x42, 0x5c, 0x50, 0xfc, 0xe1, 0x21, 0x77, 0x52, 0x99, 0x45, 0x86, 0xdc, + 0x0b, 0x8a, 0x3d, 0x32, 0xe4, 0x5e, 0x54, 0xa5, 0xe1, 0x1d, 0xec, 0x2c, 0xe8, 0x60, 0xe7, 0xe2, + 0x0e, 0x76, 0x16, 0x77, 0xc0, 0x63, 0x7a, 0x56, 0xe2, 0x08, 0xc5, 0xf4, 0xe1, 0x92, 0x49, 0x28, + 0xa6, 0x8f, 0x54, 0x42, 0xd4, 0xa5, 0xad, 0xfb, 0xff, 0xfe, 0xb7, 0x05, 0xe5, 0x5f, 0x7f, 0x76, + 0x5b, 0xf9, 0xb7, 0x9f, 0xdd, 0x56, 0x7e, 0xfa, 0xb3, 0xdb, 0xca, 0x8f, 0xff, 0xf3, 0xf6, 0x12, + 0xd4, 0x5c, 0xef, 0xf8, 0x91, 0x6f, 0x9f, 0x9e, 0x3d, 0x3a, 0x3d, 0x63, 0x9f, 0x80, 0x3d, 0x5c, + 0x66, 0x3f, 0xef, 0xff, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x11, 0x30, 0x26, 0x90, 0x56, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -8482,6 +8655,7 @@ type PDClient interface { WatchGCSafePointV2(ctx context.Context, in *WatchGCSafePointV2Request, opts ...grpc.CallOption) (PD_WatchGCSafePointV2Client, error) UpdateGCSafePointV2(ctx context.Context, in *UpdateGCSafePointV2Request, opts ...grpc.CallOption) (*UpdateGCSafePointV2Response, error) UpdateServiceSafePointV2(ctx context.Context, in *UpdateServiceSafePointV2Request, opts ...grpc.CallOption) (*UpdateServiceSafePointV2Response, error) + GetAllGCSafePointV2(ctx context.Context, in *GetAllGCSafePointV2Request, opts ...grpc.CallOption) (*GetAllGCSafePointV2Response, error) SyncRegions(ctx context.Context, opts ...grpc.CallOption) (PD_SyncRegionsClient, error) GetOperator(ctx context.Context, in *GetOperatorRequest, opts ...grpc.CallOption) (*GetOperatorResponse, error) SyncMaxTS(ctx context.Context, in *SyncMaxTSRequest, opts ...grpc.CallOption) (*SyncMaxTSResponse, error) @@ -8848,6 +9022,15 @@ func (c *pDClient) UpdateServiceSafePointV2(ctx context.Context, in *UpdateServi return out, nil } +func (c *pDClient) GetAllGCSafePointV2(ctx context.Context, in *GetAllGCSafePointV2Request, opts ...grpc.CallOption) (*GetAllGCSafePointV2Response, error) { + out := new(GetAllGCSafePointV2Response) + err := c.cc.Invoke(ctx, "/pdpb.PD/GetAllGCSafePointV2", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *pDClient) SyncRegions(ctx context.Context, opts ...grpc.CallOption) (PD_SyncRegionsClient, error) { stream, err := c.cc.NewStream(ctx, &_PD_serviceDesc.Streams[3], "/pdpb.PD/SyncRegions", opts...) if err != nil { @@ -9080,6 +9263,7 @@ type PDServer interface { WatchGCSafePointV2(*WatchGCSafePointV2Request, PD_WatchGCSafePointV2Server) error UpdateGCSafePointV2(context.Context, *UpdateGCSafePointV2Request) (*UpdateGCSafePointV2Response, error) UpdateServiceSafePointV2(context.Context, *UpdateServiceSafePointV2Request) (*UpdateServiceSafePointV2Response, error) + GetAllGCSafePointV2(context.Context, *GetAllGCSafePointV2Request) (*GetAllGCSafePointV2Response, error) SyncRegions(PD_SyncRegionsServer) error GetOperator(context.Context, *GetOperatorRequest) (*GetOperatorResponse, error) SyncMaxTS(context.Context, *SyncMaxTSRequest) (*SyncMaxTSResponse, error) @@ -9193,6 +9377,9 @@ func (*UnimplementedPDServer) UpdateGCSafePointV2(ctx context.Context, req *Upda func (*UnimplementedPDServer) UpdateServiceSafePointV2(ctx context.Context, req *UpdateServiceSafePointV2Request) (*UpdateServiceSafePointV2Response, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateServiceSafePointV2 not implemented") } +func (*UnimplementedPDServer) GetAllGCSafePointV2(ctx context.Context, req *GetAllGCSafePointV2Request) (*GetAllGCSafePointV2Response, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetAllGCSafePointV2 not implemented") +} func (*UnimplementedPDServer) SyncRegions(srv PD_SyncRegionsServer) error { return status.Errorf(codes.Unimplemented, "method SyncRegions not implemented") } @@ -9799,6 +9986,24 @@ func _PD_UpdateServiceSafePointV2_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _PD_GetAllGCSafePointV2_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetAllGCSafePointV2Request) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(PDServer).GetAllGCSafePointV2(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pdpb.PD/GetAllGCSafePointV2", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(PDServer).GetAllGCSafePointV2(ctx, req.(*GetAllGCSafePointV2Request)) + } + return interceptor(ctx, in, info, handler) +} + func _PD_SyncRegions_Handler(srv interface{}, stream grpc.ServerStream) error { return srv.(PDServer).SyncRegions(&pDSyncRegionsServer{stream}) } @@ -10182,6 +10387,10 @@ var _PD_serviceDesc = grpc.ServiceDesc{ MethodName: "UpdateServiceSafePointV2", Handler: _PD_UpdateServiceSafePointV2_Handler, }, + { + MethodName: "GetAllGCSafePointV2", + Handler: _PD_GetAllGCSafePointV2_Handler, + }, { MethodName: "GetOperator", Handler: _PD_GetOperator_Handler, @@ -15562,7 +15771,7 @@ func (m *UpdateServiceSafePointV2Response) MarshalToSizedBuffer(dAtA []byte) (in return len(dAtA) - i, nil } -func (m *RegionStat) Marshal() (dAtA []byte, err error) { +func (m *GetAllGCSafePointV2Request) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -15572,12 +15781,12 @@ func (m *RegionStat) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *RegionStat) MarshalTo(dAtA []byte) (int, error) { +func (m *GetAllGCSafePointV2Request) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *RegionStat) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *GetAllGCSafePointV2Request) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -15586,30 +15795,59 @@ func (m *RegionStat) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if m.KeysRead != 0 { - i = encodeVarintPdpb(dAtA, i, uint64(m.KeysRead)) + if m.Header != nil { + { + size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintPdpb(dAtA, i, uint64(size)) + } i-- - dAtA[i] = 0x20 + dAtA[i] = 0xa } - if m.KeysWritten != 0 { - i = encodeVarintPdpb(dAtA, i, uint64(m.KeysWritten)) - i-- - dAtA[i] = 0x18 + return len(dAtA) - i, nil +} + +func (m *GCSafePointV2) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } - if m.BytesRead != 0 { - i = encodeVarintPdpb(dAtA, i, uint64(m.BytesRead)) + return dAtA[:n], nil +} + +func (m *GCSafePointV2) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *GCSafePointV2) 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.GcSafePoint != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.GcSafePoint)) i-- dAtA[i] = 0x10 } - if m.BytesWritten != 0 { - i = encodeVarintPdpb(dAtA, i, uint64(m.BytesWritten)) + if m.KeyspaceId != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.KeyspaceId)) i-- dAtA[i] = 0x8 } return len(dAtA) - i, nil } -func (m *SyncRegionRequest) Marshal() (dAtA []byte, err error) { +func (m *GetAllGCSafePointV2Response) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -15619,12 +15857,12 @@ func (m *SyncRegionRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *SyncRegionRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *GetAllGCSafePointV2Response) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *SyncRegionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *GetAllGCSafePointV2Response) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -15633,22 +15871,24 @@ func (m *SyncRegionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if m.StartIndex != 0 { - i = encodeVarintPdpb(dAtA, i, uint64(m.StartIndex)) + if m.Revision != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.Revision)) i-- dAtA[i] = 0x18 } - if m.Member != nil { - { - size, err := m.Member.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.GcSafePoints) > 0 { + for iNdEx := len(m.GcSafePoints) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.GcSafePoints[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintPdpb(dAtA, i, uint64(size)) } - i -= size - i = encodeVarintPdpb(dAtA, i, uint64(size)) + i-- + dAtA[i] = 0x12 } - i-- - dAtA[i] = 0x12 } if m.Header != nil { { @@ -15665,7 +15905,110 @@ func (m *SyncRegionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *PeersStats) Marshal() (dAtA []byte, err error) { +func (m *RegionStat) 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 *RegionStat) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RegionStat) 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.KeysRead != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.KeysRead)) + i-- + dAtA[i] = 0x20 + } + if m.KeysWritten != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.KeysWritten)) + i-- + dAtA[i] = 0x18 + } + if m.BytesRead != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.BytesRead)) + i-- + dAtA[i] = 0x10 + } + if m.BytesWritten != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.BytesWritten)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *SyncRegionRequest) 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 *SyncRegionRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SyncRegionRequest) 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.StartIndex != 0 { + i = encodeVarintPdpb(dAtA, i, uint64(m.StartIndex)) + i-- + dAtA[i] = 0x18 + } + if m.Member != nil { + { + size, err := m.Member.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintPdpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Header != nil { + { + size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintPdpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *PeersStats) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -16185,20 +16528,20 @@ func (m *SplitRegionsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { copy(dAtA[i:], m.XXX_unrecognized) } if len(m.RegionsId) > 0 { - dAtA145 := make([]byte, len(m.RegionsId)*10) - var j144 int + dAtA147 := make([]byte, len(m.RegionsId)*10) + var j146 int for _, num := range m.RegionsId { for num >= 1<<7 { - dAtA145[j144] = uint8(uint64(num)&0x7f | 0x80) + dAtA147[j146] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j144++ + j146++ } - dAtA145[j144] = uint8(num) - j144++ + dAtA147[j146] = uint8(num) + j146++ } - i -= j144 - copy(dAtA[i:], dAtA145[:j144]) - i = encodeVarintPdpb(dAtA, i, uint64(j144)) + i -= j146 + copy(dAtA[i:], dAtA147[:j146]) + i = encodeVarintPdpb(dAtA, i, uint64(j146)) i-- dAtA[i] = 0x1a } @@ -16307,20 +16650,20 @@ func (m *SplitAndScatterRegionsResponse) MarshalToSizedBuffer(dAtA []byte) (int, copy(dAtA[i:], m.XXX_unrecognized) } if len(m.RegionsId) > 0 { - dAtA149 := make([]byte, len(m.RegionsId)*10) - var j148 int + dAtA151 := make([]byte, len(m.RegionsId)*10) + var j150 int for _, num := range m.RegionsId { for num >= 1<<7 { - dAtA149[j148] = uint8(uint64(num)&0x7f | 0x80) + dAtA151[j150] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j148++ + j150++ } - dAtA149[j148] = uint8(num) - j148++ + dAtA151[j150] = uint8(num) + j150++ } - i -= j148 - copy(dAtA[i:], dAtA149[:j148]) - i = encodeVarintPdpb(dAtA, i, uint64(j148)) + i -= j150 + copy(dAtA[i:], dAtA151[:j150]) + i = encodeVarintPdpb(dAtA, i, uint64(j150)) i-- dAtA[i] = 0x22 } @@ -19252,6 +19595,65 @@ func (m *UpdateServiceSafePointV2Response) Size() (n int) { return n } +func (m *GetAllGCSafePointV2Request) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Header != nil { + l = m.Header.Size() + n += 1 + l + sovPdpb(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *GCSafePointV2) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.KeyspaceId != 0 { + n += 1 + sovPdpb(uint64(m.KeyspaceId)) + } + if m.GcSafePoint != 0 { + n += 1 + sovPdpb(uint64(m.GcSafePoint)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *GetAllGCSafePointV2Response) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Header != nil { + l = m.Header.Size() + n += 1 + l + sovPdpb(uint64(l)) + } + if len(m.GcSafePoints) > 0 { + for _, e := range m.GcSafePoints { + l = e.Size() + n += 1 + l + sovPdpb(uint64(l)) + } + } + if m.Revision != 0 { + n += 1 + sovPdpb(uint64(m.Revision)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *RegionStat) Size() (n int) { if m == nil { return 0 @@ -33436,6 +33838,322 @@ func (m *UpdateServiceSafePointV2Response) Unmarshal(dAtA []byte) error { } return nil } +func (m *GetAllGCSafePointV2Request) 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 ErrIntOverflowPdpb + } + 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: GetAllGCSafePointV2Request: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GetAllGCSafePointV2Request: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthPdpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthPdpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Header == nil { + m.Header = &RequestHeader{} + } + if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipPdpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthPdpb + } + 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 *GCSafePointV2) 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 ErrIntOverflowPdpb + } + 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: GCSafePointV2: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GCSafePointV2: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field KeyspaceId", wireType) + } + m.KeyspaceId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.KeyspaceId |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GcSafePoint", wireType) + } + m.GcSafePoint = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GcSafePoint |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipPdpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthPdpb + } + 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 *GetAllGCSafePointV2Response) 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 ErrIntOverflowPdpb + } + 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: GetAllGCSafePointV2Response: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GetAllGCSafePointV2Response: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthPdpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthPdpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Header == nil { + m.Header = &ResponseHeader{} + } + if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GcSafePoints", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthPdpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthPdpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.GcSafePoints = append(m.GcSafePoints, &GCSafePointV2{}) + if err := m.GcSafePoints[len(m.GcSafePoints)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Revision", wireType) + } + m.Revision = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Revision |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipPdpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthPdpb + } + 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 *RegionStat) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/proto/pdpb.proto b/proto/pdpb.proto index a760e9633..d888c9d53 100644 --- a/proto/pdpb.proto +++ b/proto/pdpb.proto @@ -87,6 +87,8 @@ service PD { rpc UpdateServiceSafePointV2(UpdateServiceSafePointV2Request) returns (UpdateServiceSafePointV2Response) {} + rpc GetAllGCSafePointV2(GetAllGCSafePointV2Request) returns (GetAllGCSafePointV2Response) {} + rpc SyncRegions(stream SyncRegionRequest) returns (stream SyncRegionResponse) {} rpc GetOperator(GetOperatorRequest) returns (GetOperatorResponse) {} @@ -894,6 +896,21 @@ message UpdateServiceSafePointV2Response { uint64 min_safe_point = 4; } +message GetAllGCSafePointV2Request { + RequestHeader header = 1; +} + +message GCSafePointV2 { + uint32 keyspace_id = 1; + uint64 gc_safe_point = 2; +} + +message GetAllGCSafePointV2Response { + ResponseHeader header = 1; + repeated GCSafePointV2 gc_safe_points = 2; + int64 revision = 3; +} + message RegionStat { // Bytes read/written during this period. uint64 bytes_written = 1; diff --git a/scripts/proto.lock b/scripts/proto.lock index de6f58b6e..777d475c9 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -14251,6 +14251,52 @@ } ] }, + { + "name": "GetAllGCSafePointV2Request", + "fields": [ + { + "id": 1, + "name": "header", + "type": "RequestHeader" + } + ] + }, + { + "name": "GCSafePointV2", + "fields": [ + { + "id": 1, + "name": "keyspace_id", + "type": "uint32" + }, + { + "id": 2, + "name": "gc_safe_point", + "type": "uint64" + } + ] + }, + { + "name": "GetAllGCSafePointV2Response", + "fields": [ + { + "id": 1, + "name": "header", + "type": "ResponseHeader" + }, + { + "id": 2, + "name": "gc_safe_points", + "type": "GCSafePointV2", + "is_repeated": true + }, + { + "id": 3, + "name": "revision", + "type": "int64" + } + ] + }, { "name": "RegionStat", "fields": [ @@ -14951,6 +14997,11 @@ "in_type": "UpdateServiceSafePointV2Request", "out_type": "UpdateServiceSafePointV2Response" }, + { + "name": "GetAllGCSafePointV2", + "in_type": "GetAllGCSafePointV2Request", + "out_type": "GetAllGCSafePointV2Response" + }, { "name": "SyncRegions", "in_type": "SyncRegionRequest", From 4f37c86ce9dd324aa3385cbcc921764315ceedaa Mon Sep 17 00:00:00 2001 From: Spade A <71589810+SpadeA-Tang@users.noreply.github.com> Date: Fri, 7 Jul 2023 15:20:39 +0800 Subject: [PATCH 4/4] support setting multiple ranges in switch mode request (#1148) Signed-off-by: Spade A --- pkg/configpb/configpb.pb.gw.go | 22 +-- pkg/import_sstpb/import_sstpb.pb.go | 297 ++++++++++++++-------------- proto/import_sstpb.proto | 2 +- scripts/proto.lock | 5 +- 4 files changed, 156 insertions(+), 170 deletions(-) diff --git a/pkg/configpb/configpb.pb.gw.go b/pkg/configpb/configpb.pb.gw.go index 9b4675b32..c0385b0e4 100644 --- a/pkg/configpb/configpb.pb.gw.go +++ b/pkg/configpb/configpb.pb.gw.go @@ -20,7 +20,6 @@ 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" ) @@ -31,7 +30,6 @@ 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)} @@ -57,10 +55,7 @@ func local_request_Config_Get_0(ctx context.Context, marshaler runtime.Marshaler var protoReq GetRequest var metadata runtime.ServerMetadata - 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 { + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Get_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -127,10 +122,7 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha var protoReq DeleteRequest var metadata runtime.ServerMetadata - 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 { + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Delete_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -142,14 +134,11 @@ 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 { @@ -157,7 +146,6 @@ 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) @@ -171,8 +159,6 @@ 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 { @@ -180,7 +166,6 @@ 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) @@ -194,8 +179,6 @@ 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 { @@ -203,7 +186,6 @@ 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/import_sstpb/import_sstpb.pb.go b/pkg/import_sstpb/import_sstpb.pb.go index 4ea8f6e91..21eaaa35c 100644 --- a/pkg/import_sstpb/import_sstpb.pb.go +++ b/pkg/import_sstpb/import_sstpb.pb.go @@ -111,7 +111,7 @@ func (Pair_OP) EnumDescriptor() ([]byte, []int) { type SwitchModeRequest struct { Mode SwitchMode `protobuf:"varint,1,opt,name=mode,proto3,enum=import_sstpb.SwitchMode" json:"mode,omitempty"` - Range *Range `protobuf:"bytes,2,opt,name=range,proto3" json:"range,omitempty"` + Ranges []*Range `protobuf:"bytes,2,rep,name=ranges,proto3" json:"ranges,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -157,9 +157,9 @@ func (m *SwitchModeRequest) GetMode() SwitchMode { return SwitchMode_Normal } -func (m *SwitchModeRequest) GetRange() *Range { +func (m *SwitchModeRequest) GetRanges() []*Range { if m != nil { - return m.Range + return m.Ranges } return nil } @@ -2479,133 +2479,134 @@ func init() { func init() { proto.RegisterFile("import_sstpb.proto", fileDescriptor_4d076b7935cfab6b) } var fileDescriptor_4d076b7935cfab6b = []byte{ - // 2014 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4b, 0x73, 0x1b, 0x4b, - 0xf5, 0xf7, 0xe8, 0xad, 0xa3, 0xd1, 0x23, 0x1d, 0x5f, 0x67, 0xa2, 0x24, 0xb6, 0x33, 0xff, 0xdc, - 0xfb, 0x57, 0x1c, 0xb0, 0x83, 0x03, 0x59, 0xb0, 0x20, 0x75, 0xfd, 0xe0, 0xc6, 0x38, 0xbe, 0x36, - 0x2d, 0x13, 0x16, 0x2c, 0xa6, 0xc6, 0xa3, 0xb6, 0x3c, 0x68, 0x34, 0x33, 0x4c, 0xb7, 0xa4, 0x68, - 0xc3, 0x07, 0xe0, 0x13, 0x50, 0x6c, 0x28, 0x58, 0xdd, 0x62, 0x4d, 0x15, 0xc5, 0x37, 0xb8, 0x4b, - 0xd8, 0xb1, 0xa2, 0xa8, 0xf0, 0x45, 0xa8, 0x7e, 0x8c, 0x34, 0x33, 0x91, 0xa3, 0xd8, 0x05, 0x2b, - 0x75, 0x9f, 0x3e, 0x73, 0xfa, 0xf4, 0x79, 0xfc, 0xfa, 0xd7, 0x02, 0xe4, 0x0e, 0xc3, 0x20, 0x62, - 0x16, 0xa5, 0x2c, 0xbc, 0xd8, 0x0e, 0xa3, 0x80, 0x05, 0x48, 0x4f, 0xca, 0xda, 0xfa, 0x90, 0x30, - 0x3b, 0x5e, 0x6b, 0xd7, 0x49, 0x14, 0x05, 0xd1, 0x7c, 0x3a, 0x18, 0x47, 0xa1, 0x33, 0x9b, 0xae, - 0xf6, 0x83, 0x7e, 0x20, 0x86, 0x3b, 0x7c, 0xa4, 0xa4, 0xcd, 0x68, 0x44, 0x99, 0x18, 0x2a, 0x01, - 0x5c, 0xcc, 0x2c, 0x98, 0x1e, 0xdc, 0xe9, 0x4e, 0x5c, 0xe6, 0x5c, 0x9d, 0x04, 0x3d, 0x82, 0xc9, - 0xaf, 0x46, 0x84, 0x32, 0xf4, 0x1d, 0x28, 0x0c, 0x83, 0x1e, 0x31, 0xb4, 0x4d, 0xad, 0xd3, 0xd8, - 0x35, 0xb6, 0x53, 0x4e, 0x26, 0xd4, 0x85, 0x16, 0x7a, 0x0a, 0xc5, 0xc8, 0xf6, 0xfb, 0xc4, 0xc8, - 0x6d, 0x6a, 0x9d, 0xda, 0xee, 0xdd, 0xb4, 0x3a, 0xe6, 0x4b, 0x58, 0x6a, 0x98, 0xab, 0x80, 0x92, - 0xbb, 0xd1, 0x30, 0xf0, 0x29, 0x31, 0x5b, 0xd0, 0xf8, 0x8a, 0xb0, 0x84, 0x03, 0xe6, 0x2b, 0x68, - 0xce, 0x24, 0x52, 0xe9, 0x66, 0x3e, 0x99, 0x3b, 0x50, 0x14, 0x1b, 0xa3, 0x55, 0x28, 0x52, 0x66, - 0x47, 0x4c, 0x7c, 0xa7, 0x63, 0x39, 0x41, 0x2d, 0xc8, 0x13, 0xbf, 0x27, 0x1c, 0xd6, 0x31, 0x1f, - 0x9a, 0x7f, 0xc8, 0x43, 0xb9, 0xdb, 0x3d, 0x3f, 0x21, 0xcc, 0x46, 0x08, 0x0a, 0xa3, 0x91, 0xdb, - 0x53, 0x9f, 0x88, 0xf1, 0x0d, 0x0e, 0xc9, 0xb7, 0x74, 0x22, 0xe7, 0xc5, 0xae, 0x91, 0xdf, 0xd4, - 0x3a, 0x75, 0x2c, 0x27, 0x68, 0x0d, 0x4a, 0x1e, 0xf1, 0xfb, 0xec, 0xca, 0x28, 0x6c, 0x6a, 0x9d, - 0x02, 0x56, 0x33, 0x74, 0x0f, 0xca, 0xce, 0xa5, 0xe5, 0xdb, 0x43, 0x62, 0x14, 0x37, 0xb5, 0x4e, - 0x15, 0x97, 0x9c, 0xcb, 0xaf, 0xed, 0x21, 0x41, 0x0f, 0xa0, 0x1a, 0x91, 0xbe, 0x1b, 0xf8, 0x96, - 0xdb, 0x33, 0x4a, 0xe2, 0x9b, 0x8a, 0x14, 0x1c, 0xf5, 0xd0, 0x4b, 0xd0, 0xd5, 0x22, 0x09, 0x03, - 0xe7, 0xca, 0x28, 0x2b, 0xaf, 0x54, 0xb1, 0x60, 0xb1, 0x76, 0xc8, 0x97, 0x70, 0x2d, 0x9a, 0x4f, - 0xd0, 0x16, 0xdc, 0x21, 0x7e, 0xcf, 0x1a, 0x90, 0xa9, 0x45, 0xde, 0x39, 0xde, 0x88, 0xba, 0x63, - 0x62, 0x54, 0x36, 0xb5, 0x4e, 0x05, 0x37, 0x89, 0xdf, 0x3b, 0x26, 0xd3, 0xc3, 0x58, 0xcc, 0x1d, - 0x60, 0x01, 0xb3, 0x3d, 0x6b, 0x30, 0xa6, 0x46, 0x55, 0x3a, 0x20, 0x04, 0xc7, 0x63, 0x8a, 0x36, - 0xa0, 0x26, 0x17, 0x2f, 0xa6, 0x8c, 0x50, 0x03, 0xc4, 0x32, 0x08, 0xd1, 0x1e, 0x97, 0xa0, 0xef, - 0x43, 0xcd, 0x0e, 0x5d, 0x6b, 0x4c, 0x22, 0xea, 0x06, 0xbe, 0x51, 0x13, 0x69, 0xbb, 0xbb, 0x1d, - 0x17, 0xec, 0x97, 0x67, 0x47, 0x6f, 0xe5, 0x12, 0x06, 0x3b, 0x74, 0xd5, 0x98, 0xef, 0xe9, 0xb8, - 0xe1, 0x15, 0x89, 0x2c, 0x77, 0x6c, 0xe8, 0x22, 0xfe, 0x15, 0x29, 0x38, 0x1a, 0x9b, 0xbf, 0x86, - 0x1a, 0x26, 0x93, 0xc8, 0x65, 0x04, 0x8f, 0x3c, 0x82, 0x9e, 0x40, 0x23, 0xf0, 0xe4, 0x59, 0xc2, - 0x88, 0x5c, 0xba, 0xef, 0x54, 0xc2, 0xf4, 0xc0, 0xe3, 0x07, 0x39, 0x13, 0x32, 0xae, 0xe5, 0x93, - 0x49, 0x52, 0x4b, 0x66, 0x5d, 0xf7, 0xc9, 0x64, 0xae, 0xf5, 0x7f, 0x50, 0xe7, 0x5a, 0xcc, 0x1d, - 0x12, 0xca, 0xec, 0x61, 0x28, 0x72, 0x57, 0x10, 0x4a, 0xe7, 0xb1, 0xcc, 0xfc, 0x05, 0xd4, 0x7f, - 0x16, 0x7a, 0x81, 0xdd, 0x8b, 0xfb, 0xe4, 0x19, 0x14, 0x78, 0xc0, 0xc5, 0xbe, 0xb5, 0xdd, 0xcf, - 0x32, 0x35, 0x29, 0xab, 0xe9, 0xf5, 0x0a, 0x16, 0x4a, 0x68, 0x15, 0x0a, 0x3d, 0x9b, 0xd9, 0x72, - 0x7b, 0x2e, 0xe5, 0xb3, 0xbd, 0x32, 0x14, 0x9d, 0xab, 0x91, 0x3f, 0xe0, 0x4d, 0x10, 0x1b, 0x57, - 0x6d, 0xd1, 0x83, 0xfa, 0x91, 0xdf, 0x27, 0x94, 0xc5, 0xdb, 0x6d, 0x41, 0xd9, 0x09, 0x7c, 0x46, - 0xde, 0x31, 0xb5, 0x63, 0x6b, 0x16, 0xce, 0x7d, 0x29, 0xc7, 0xb1, 0x02, 0xfa, 0x7f, 0xc8, 0x53, - 0xca, 0x54, 0xb5, 0x2e, 0xf6, 0x0c, 0x73, 0x0d, 0x73, 0x00, 0xe8, 0x64, 0xe4, 0x31, 0xf7, 0xf6, - 0x5b, 0x3d, 0x85, 0x02, 0xa5, 0x8c, 0x1a, 0xb9, 0xcd, 0xfc, 0xf5, 0x7b, 0x09, 0x15, 0xf3, 0x25, - 0x34, 0xe2, 0x7d, 0x54, 0x5b, 0x3f, 0x81, 0xa2, 0x80, 0x34, 0xb5, 0x4d, 0x63, 0x3b, 0x06, 0xb8, - 0x43, 0xfe, 0x8b, 0xe5, 0xa2, 0xf9, 0x1b, 0x0d, 0x1a, 0xfb, 0xc1, 0x30, 0xb4, 0x9d, 0x99, 0x87, - 0xb3, 0x86, 0xd4, 0x96, 0x36, 0xe4, 0x63, 0xd0, 0x83, 0x11, 0x0b, 0x47, 0xcc, 0xf2, 0xc8, 0x98, - 0x78, 0x22, 0x28, 0x45, 0x5c, 0x93, 0xb2, 0x37, 0x5c, 0x94, 0x3c, 0x6f, 0x7e, 0xc9, 0x79, 0xcd, - 0x3b, 0xd0, 0x9c, 0xf9, 0xa2, 0x52, 0xf5, 0xf7, 0x3c, 0x34, 0x0f, 0x82, 0x89, 0x9f, 0x2c, 0x8e, - 0xef, 0x2e, 0xcf, 0xc0, 0x5e, 0xe1, 0xdb, 0x7f, 0x6e, 0xac, 0x88, 0x3c, 0x70, 0xd0, 0x11, 0x20, - 0x50, 0x15, 0x20, 0x20, 0xc6, 0x68, 0x8f, 0x77, 0xb9, 0x28, 0x78, 0x2b, 0x1a, 0x79, 0xc4, 0xa8, - 0x0b, 0x5b, 0xf7, 0x33, 0x47, 0x9d, 0xb7, 0x84, 0xb2, 0x57, 0x8b, 0x12, 0x5d, 0xf2, 0x0a, 0x9a, - 0x94, 0x05, 0x91, 0xdd, 0x27, 0xd6, 0x85, 0xed, 0x0c, 0x38, 0xec, 0x35, 0x84, 0x99, 0xb5, 0x6d, - 0x3e, 0x1f, 0x85, 0xdb, 0x5d, 0xb9, 0xbc, 0x27, 0x57, 0x71, 0x83, 0xa6, 0xe6, 0xa8, 0x03, 0xad, - 0xd8, 0x80, 0x63, 0x3b, 0x57, 0x84, 0xc3, 0xd1, 0x1d, 0xe1, 0x64, 0xac, 0xb9, 0xcf, 0xc5, 0x47, - 0x3d, 0xd4, 0x86, 0xaa, 0x4b, 0xad, 0xc8, 0x9e, 0x58, 0x83, 0xb1, 0xd1, 0x14, 0xa0, 0x52, 0x76, - 0x29, 0xb6, 0x27, 0xc7, 0x63, 0xf4, 0x02, 0x6a, 0x71, 0x63, 0xfb, 0x97, 0x81, 0xd1, 0x12, 0x2e, - 0xa0, 0xd8, 0x85, 0x7d, 0xd9, 0xe2, 0xfe, 0x65, 0x80, 0xc1, 0x99, 0x8d, 0xd1, 0x01, 0x3f, 0xbf, - 0x88, 0xa6, 0xc5, 0xa6, 0x21, 0x31, 0x90, 0x00, 0x91, 0xc7, 0xe9, 0xf3, 0x67, 0xe2, 0x7e, 0x3e, - 0x0d, 0x09, 0x8f, 0xc0, 0x6c, 0x92, 0xcc, 0xed, 0xdd, 0x25, 0xb9, 0xfd, 0x49, 0xa1, 0x52, 0x69, - 0x55, 0x71, 0x7e, 0x14, 0x79, 0x26, 0x86, 0xa2, 0xa8, 0x41, 0x64, 0x40, 0x79, 0x48, 0x28, 0xb5, - 0x55, 0xad, 0x55, 0x71, 0x3c, 0x45, 0x3b, 0x50, 0xe3, 0x21, 0x20, 0x96, 0x2c, 0xe1, 0xdc, 0xc2, - 0x12, 0x06, 0xa1, 0x22, 0xc6, 0xe6, 0x5f, 0x34, 0x68, 0xcd, 0xfd, 0x55, 0x2d, 0xb0, 0xb3, 0xbc, - 0x92, 0x55, 0x62, 0x55, 0x3d, 0xdf, 0x87, 0x8a, 0x4b, 0x2d, 0x32, 0x0c, 0xd9, 0x54, 0xec, 0x29, - 0xc2, 0x7c, 0xc8, 0xa7, 0xbc, 0x2b, 0xa4, 0x2f, 0xf9, 0x45, 0xb6, 0x92, 0x3d, 0x35, 0xbf, 0xa6, - 0x0a, 0x8b, 0xaf, 0xa9, 0x62, 0xf2, 0x9a, 0x32, 0x5f, 0xc1, 0xc3, 0x2e, 0x61, 0xb1, 0xef, 0xdd, - 0x90, 0x90, 0xde, 0x1b, 0x77, 0xe8, 0xce, 0xda, 0x71, 0x03, 0x6a, 0x94, 0x0b, 0x2d, 0x8f, 0x4b, - 0xc5, 0x51, 0x0a, 0x18, 0xe8, 0x4c, 0xcf, 0xdc, 0x80, 0x47, 0xd7, 0x18, 0x50, 0x3d, 0x14, 0x42, - 0xe1, 0xcc, 0x76, 0x23, 0x7e, 0x37, 0x0f, 0xc8, 0x54, 0x61, 0x39, 0x1f, 0x72, 0x4f, 0xc7, 0xb6, - 0x37, 0x22, 0x0a, 0xb9, 0xe5, 0x04, 0x7d, 0x0e, 0xb9, 0x40, 0xe2, 0x74, 0x23, 0xdb, 0x5e, 0xdc, - 0xce, 0xf6, 0xe9, 0x19, 0xce, 0x05, 0xa1, 0x79, 0x1f, 0x72, 0xa7, 0x67, 0xa8, 0x0c, 0xf9, 0xb3, - 0x11, 0x6b, 0xad, 0x20, 0x80, 0xd2, 0x01, 0xf1, 0x08, 0x23, 0x2d, 0xcd, 0xec, 0x02, 0xfc, 0x9c, - 0xf7, 0xc9, 0x9e, 0xcd, 0x9c, 0x2b, 0x71, 0xf5, 0x04, 0xc3, 0xa1, 0xcb, 0x2c, 0x46, 0x95, 0xff, - 0x15, 0x29, 0x38, 0xa7, 0xa8, 0x03, 0xc5, 0xd0, 0x76, 0xa3, 0x18, 0xe4, 0xd0, 0x87, 0xfb, 0x61, - 0xa9, 0x60, 0xfe, 0x51, 0x03, 0x5d, 0x58, 0xbd, 0xd5, 0x25, 0xf1, 0x1c, 0x8a, 0x17, 0xdc, 0x1b, - 0x55, 0x4b, 0x19, 0x9a, 0x33, 0xf7, 0xf6, 0xf5, 0x0a, 0x96, 0x8a, 0x37, 0x41, 0xae, 0xf9, 0x65, - 0xd3, 0x87, 0xba, 0xf2, 0x51, 0xd5, 0xe0, 0xd3, 0x34, 0x0c, 0x7f, 0xac, 0x6e, 0x9e, 0x41, 0x91, - 0xbb, 0xba, 0x04, 0xef, 0xa5, 0x0e, 0xbf, 0x32, 0xb1, 0x3d, 0x49, 0x44, 0xb9, 0x05, 0x79, 0xc6, - 0x3c, 0x15, 0x5f, 0x3e, 0xfc, 0xf4, 0xd0, 0xa2, 0x06, 0xe4, 0x18, 0x55, 0x37, 0x73, 0x8e, 0x51, - 0xf3, 0x1b, 0x0d, 0x9a, 0xb1, 0xf5, 0x5b, 0x45, 0xfb, 0x45, 0x3a, 0xda, 0x0f, 0xb2, 0x9d, 0x37, - 0xf9, 0xaf, 0x05, 0xfc, 0x97, 0xd0, 0x9a, 0x7b, 0xfa, 0x3f, 0x8e, 0xf9, 0x5f, 0x35, 0x58, 0x3b, - 0x18, 0x85, 0x9e, 0xeb, 0xd8, 0x8c, 0x1c, 0x10, 0x46, 0x9c, 0x5b, 0x5d, 0xeb, 0x0f, 0xa0, 0x2a, - 0xc8, 0x32, 0xa7, 0x4e, 0xaa, 0xf3, 0x2a, 0x42, 0x70, 0x4c, 0xa6, 0x9c, 0xb5, 0x2a, 0x1e, 0x29, - 0x82, 0xa0, 0xe3, 0x92, 0x64, 0x8f, 0x1c, 0x9b, 0x38, 0xd5, 0x0a, 0x7c, 0x6f, 0x2a, 0x80, 0xa5, - 0x82, 0xcb, 0x03, 0x32, 0x3d, 0xf5, 0xbd, 0x29, 0x32, 0xa1, 0x3e, 0x74, 0x7d, 0x6b, 0xde, 0x64, - 0x12, 0x61, 0x6a, 0x43, 0xd7, 0xdf, 0x57, 0x7d, 0x66, 0x9e, 0x40, 0xe9, 0x78, 0x7c, 0x23, 0x18, - 0x48, 0xb5, 0x6d, 0x3e, 0xdd, 0xb6, 0xe6, 0x9f, 0x34, 0xb8, 0xf7, 0x41, 0x28, 0x54, 0xf8, 0xbf, - 0x37, 0xa7, 0xd0, 0x1f, 0x21, 0x20, 0x31, 0x7b, 0x16, 0x69, 0x78, 0x0e, 0x55, 0xc1, 0x9c, 0x13, - 0x68, 0xbf, 0x30, 0x6b, 0x3c, 0x04, 0xf2, 0x8b, 0xad, 0xb8, 0xb8, 0xf3, 0x22, 0x71, 0xab, 0x69, - 0x6d, 0x79, 0xd4, 0x18, 0x39, 0x7e, 0x9f, 0x87, 0xd2, 0xf1, 0xdb, 0xf8, 0x05, 0x22, 0xc8, 0x80, - 0x96, 0x20, 0x03, 0x8f, 0x41, 0x17, 0xf0, 0x6f, 0x05, 0x97, 0x97, 0x94, 0x30, 0xc1, 0xa8, 0x0b, - 0xb8, 0x26, 0x64, 0xa7, 0x42, 0x94, 0x00, 0xef, 0x5c, 0xea, 0x8d, 0x31, 0xfb, 0x54, 0xad, 0xea, - 0x89, 0x4f, 0xdf, 0x48, 0x95, 0x06, 0xe4, 0x9c, 0x4b, 0x11, 0xbf, 0x2a, 0xce, 0x39, 0x97, 0x3c, - 0xac, 0x2e, 0xb5, 0x7a, 0x02, 0x2a, 0x55, 0x22, 0x2b, 0x2e, 0x95, 0xd0, 0xc9, 0x93, 0x2c, 0x4b, - 0x83, 0xc5, 0xcc, 0xbf, 0x2c, 0xe6, 0xe7, 0x14, 0x3d, 0x02, 0x88, 0x88, 0xbc, 0x14, 0x67, 0x19, - 0xae, 0x2a, 0xc9, 0x39, 0x4d, 0x17, 0x55, 0xe9, 0xfa, 0xa2, 0x2a, 0xa7, 0x8a, 0x6a, 0x0d, 0x4a, - 0xf4, 0xca, 0xde, 0xfd, 0xc1, 0x4b, 0xf1, 0x54, 0xd1, 0xb1, 0x9a, 0xf1, 0xd7, 0x8c, 0xb4, 0x46, - 0x7d, 0x3b, 0xa4, 0x57, 0x81, 0x70, 0x48, 0xbe, 0x54, 0x9a, 0x62, 0xa1, 0xab, 0xe4, 0xe7, 0x14, - 0xed, 0x41, 0xcb, 0x09, 0x86, 0x61, 0x44, 0x28, 0x7f, 0x68, 0x48, 0x3e, 0x51, 0x17, 0x97, 0xc7, - 0xbd, 0x19, 0x0b, 0x99, 0xaf, 0x0b, 0x16, 0xd1, 0x74, 0xd2, 0x02, 0xf3, 0xcf, 0x79, 0xd0, 0xbf, - 0x0c, 0x43, 0x6f, 0x1a, 0xf7, 0x53, 0x27, 0x85, 0x36, 0xd9, 0xec, 0xbe, 0x95, 0xcc, 0x57, 0x40, - 0xcd, 0x56, 0xdc, 0xc1, 0xfa, 0xc2, 0x42, 0x78, 0x9b, 0x68, 0xe0, 0x0f, 0x68, 0x5f, 0xee, 0x16, - 0xb4, 0xef, 0x47, 0x50, 0x4f, 0xda, 0xa0, 0x46, 0x5d, 0xec, 0x7b, 0xbd, 0x11, 0xac, 0x27, 0x3e, - 0xa7, 0x0b, 0x59, 0x5f, 0x71, 0x21, 0xeb, 0x5b, 0x40, 0x30, 0xf3, 0x37, 0x22, 0x98, 0x09, 0x50, - 0x2a, 0x2c, 0x03, 0xa5, 0x0c, 0x8d, 0xac, 0x7d, 0x0a, 0x8d, 0x34, 0x07, 0x50, 0x57, 0x59, 0xbb, - 0x2d, 0xe3, 0x9a, 0x41, 0x75, 0x6e, 0x19, 0x54, 0x9b, 0x5f, 0x80, 0xbe, 0xef, 0x11, 0x3b, 0x8a, - 0x4b, 0x64, 0x0d, 0x4a, 0x89, 0xd7, 0x69, 0x15, 0xab, 0x99, 0xf9, 0x43, 0xa8, 0x2b, 0xbd, 0x1b, - 0x5f, 0x07, 0x5b, 0x4f, 0x00, 0xe6, 0xff, 0x78, 0x70, 0x4a, 0xf3, 0x75, 0x10, 0x0d, 0x6d, 0x4f, - 0xd2, 0x9b, 0x23, 0xf1, 0x59, 0x4b, 0xdb, 0xda, 0x81, 0xbb, 0x0b, 0xb8, 0x31, 0x57, 0x79, 0x43, - 0xfa, 0xb6, 0x33, 0x6d, 0xad, 0x20, 0x1d, 0x2a, 0xc7, 0x64, 0x4a, 0x43, 0xdb, 0x21, 0x2d, 0x6d, - 0xf7, 0x77, 0x15, 0xa8, 0xca, 0xaf, 0xbb, 0xdd, 0x73, 0xf4, 0xd3, 0xd4, 0x26, 0x1b, 0xd7, 0xfe, - 0xe1, 0x22, 0x4d, 0xb7, 0x37, 0xaf, 0x57, 0x50, 0x04, 0x6f, 0x05, 0xbd, 0x86, 0xb2, 0xfa, 0x5b, - 0x07, 0x3d, 0x4c, 0xab, 0xa7, 0xff, 0xff, 0x69, 0x3f, 0xba, 0x66, 0x75, 0x66, 0xe9, 0x2b, 0x28, - 0xc9, 0xd7, 0x32, 0xca, 0x5c, 0xda, 0xa9, 0x07, 0x7a, 0xfb, 0xe1, 0xe2, 0xc5, 0xd8, 0x4c, 0x47, - 0x43, 0x87, 0x50, 0x92, 0x2f, 0xd2, 0xac, 0xa1, 0xd4, 0x7b, 0x38, 0x6b, 0x28, 0xfd, 0x88, 0x95, - 0x27, 0x53, 0x6f, 0xc2, 0xec, 0xc9, 0xd2, 0xcf, 0xd6, 0xec, 0xc9, 0xb2, 0x0f, 0xc9, 0x15, 0x14, - 0xc1, 0x67, 0x0b, 0x79, 0x32, 0xda, 0xca, 0x04, 0xf8, 0x23, 0x6c, 0xbc, 0xfd, 0xec, 0x93, 0x74, - 0x67, 0x7b, 0x1e, 0x43, 0x25, 0x5e, 0x47, 0x8f, 0x3e, 0xfa, 0xba, 0x6a, 0xaf, 0x5f, 0xb7, 0x3c, - 0x33, 0x76, 0x00, 0x45, 0xc1, 0x73, 0x50, 0x7b, 0x01, 0x79, 0x8d, 0xcd, 0x3c, 0x58, 0xb8, 0x96, - 0xc8, 0xcb, 0x09, 0x54, 0x62, 0xc2, 0x94, 0x75, 0x29, 0x43, 0xf9, 0xb2, 0x2e, 0x65, 0x79, 0x96, - 0x30, 0x77, 0x0a, 0xb5, 0xc4, 0xbf, 0x1c, 0x28, 0x53, 0xac, 0x1f, 0xfe, 0x01, 0xb2, 0x34, 0xe1, - 0x17, 0xd0, 0xcc, 0x10, 0x0b, 0xf4, 0x24, 0x13, 0x9a, 0x85, 0x14, 0xac, 0xfd, 0xf9, 0x12, 0xad, - 0x78, 0x87, 0xe7, 0x1a, 0xda, 0x83, 0xa2, 0xc0, 0xad, 0x6c, 0x24, 0x93, 0x57, 0x50, 0x36, 0x92, - 0x29, 0xa0, 0x13, 0x8d, 0x02, 0x02, 0x66, 0x7e, 0xec, 0x72, 0x54, 0xcf, 0x18, 0x4a, 0x02, 0x55, - 0xd6, 0x50, 0x0a, 0x9c, 0xcc, 0x95, 0xbd, 0x2f, 0xfe, 0xf1, 0x4d, 0x45, 0xfb, 0xf6, 0xfd, 0xba, - 0xf6, 0xb7, 0xf7, 0xeb, 0xda, 0xbf, 0xde, 0xaf, 0x6b, 0xbf, 0xfd, 0xf7, 0xfa, 0x0a, 0xb4, 0x82, - 0xa8, 0xbf, 0xcd, 0xdc, 0xc1, 0x78, 0x7b, 0x30, 0x16, 0x7f, 0x28, 0x5f, 0x94, 0xc4, 0xcf, 0x8b, - 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x14, 0x60, 0x56, 0x1f, 0xda, 0x16, 0x00, 0x00, + // 2020 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcd, 0x72, 0x1b, 0x4b, + 0xf5, 0xf7, 0xe8, 0x5b, 0x47, 0x9f, 0xe9, 0xf8, 0x3a, 0x13, 0x25, 0xb1, 0x9d, 0xf9, 0xe7, 0xde, + 0xbf, 0xe2, 0x80, 0x1d, 0x1c, 0xc8, 0x82, 0x05, 0xa9, 0xeb, 0x0f, 0x6e, 0x8c, 0xe3, 0x6b, 0x33, + 0x32, 0x61, 0xc1, 0x62, 0x6a, 0x3c, 0x6a, 0xdb, 0x83, 0x46, 0x33, 0xc3, 0x74, 0x4b, 0x8e, 0x36, + 0x3c, 0x00, 0x4f, 0x40, 0xb1, 0xa1, 0x60, 0x75, 0x8b, 0x35, 0x55, 0x14, 0x6f, 0x70, 0x97, 0xb0, + 0x63, 0x45, 0x51, 0xe1, 0x45, 0xa8, 0x3e, 0xdd, 0x23, 0xcd, 0x4c, 0xe4, 0x28, 0x76, 0xc1, 0x4a, + 0xdd, 0xa7, 0xcf, 0x9c, 0x3e, 0x7d, 0x3e, 0x7e, 0xfd, 0x6b, 0x01, 0x71, 0x87, 0x61, 0x10, 0x71, + 0x8b, 0x31, 0x1e, 0x9e, 0x6d, 0x86, 0x51, 0xc0, 0x03, 0x52, 0x4f, 0xca, 0x3a, 0xf5, 0x21, 0xe5, + 0x76, 0xbc, 0xd6, 0x69, 0xd0, 0x28, 0x0a, 0xa2, 0xd9, 0x74, 0x30, 0x8e, 0x42, 0x67, 0x3a, 0x5d, + 0xbe, 0x08, 0x2e, 0x02, 0x1c, 0x6e, 0x89, 0x91, 0x92, 0xb6, 0xa2, 0x11, 0xe3, 0x38, 0x54, 0x02, + 0x38, 0x9b, 0x5a, 0x30, 0x7c, 0xb8, 0xd3, 0xbb, 0x72, 0xb9, 0x73, 0x79, 0x14, 0xf4, 0xa9, 0x49, + 0x7f, 0x35, 0xa2, 0x8c, 0x93, 0xef, 0x40, 0x61, 0x18, 0xf4, 0xa9, 0xae, 0xad, 0x6b, 0xdd, 0xe6, + 0xb6, 0xbe, 0x99, 0x72, 0x32, 0xa1, 0x8e, 0x5a, 0xe4, 0x19, 0x94, 0x22, 0xdb, 0xbf, 0xa0, 0x4c, + 0xcf, 0xad, 0xe7, 0xbb, 0xb5, 0xed, 0xbb, 0x69, 0x7d, 0x53, 0xac, 0x99, 0x4a, 0xc5, 0x58, 0x06, + 0x92, 0xdc, 0x8f, 0x85, 0x81, 0xcf, 0xa8, 0xd1, 0x86, 0xe6, 0x57, 0x94, 0x27, 0x5c, 0x30, 0x5e, + 0x41, 0x6b, 0x2a, 0x91, 0x4a, 0x37, 0xf3, 0xca, 0xd8, 0x82, 0x22, 0xee, 0x4c, 0x96, 0xa1, 0xc8, + 0xb8, 0x1d, 0x71, 0xfc, 0xae, 0x6e, 0xca, 0x09, 0x69, 0x43, 0x9e, 0xfa, 0x7d, 0x3d, 0x87, 0x32, + 0x31, 0x34, 0xfe, 0x90, 0x87, 0x72, 0xaf, 0x77, 0x7a, 0x44, 0xb9, 0x4d, 0x08, 0x14, 0x46, 0x23, + 0xb7, 0xaf, 0x3e, 0xc1, 0x31, 0x79, 0x0a, 0x45, 0x3c, 0x03, 0x7e, 0x73, 0xcd, 0x29, 0xa5, 0x86, + 0xd8, 0xd2, 0x89, 0x9c, 0x17, 0xdb, 0x7a, 0x7e, 0x5d, 0xeb, 0x36, 0x4c, 0x39, 0x21, 0x2b, 0x50, + 0xf2, 0xa8, 0x7f, 0xc1, 0x2f, 0xf5, 0xc2, 0xba, 0xd6, 0x2d, 0x98, 0x6a, 0x46, 0xee, 0x41, 0xd9, + 0x39, 0xb7, 0x7c, 0x7b, 0x48, 0xf5, 0xe2, 0xba, 0xd6, 0xad, 0x9a, 0x25, 0xe7, 0xfc, 0x6b, 0x7b, + 0x48, 0xc9, 0x03, 0xa8, 0x46, 0xf4, 0xc2, 0x0d, 0x7c, 0xcb, 0xed, 0xeb, 0x25, 0xfc, 0xa6, 0x22, + 0x05, 0x07, 0x7d, 0xf2, 0x12, 0xea, 0x6a, 0x91, 0x86, 0x81, 0x73, 0xa9, 0x97, 0x95, 0x57, 0xaa, + 0x5c, 0x4c, 0x5c, 0xdb, 0x17, 0x4b, 0x66, 0x2d, 0x9a, 0x4d, 0xc8, 0x06, 0xdc, 0xa1, 0x7e, 0xdf, + 0x1a, 0xd0, 0x89, 0x45, 0xdf, 0x39, 0xde, 0x88, 0xb9, 0x63, 0xaa, 0x57, 0xd6, 0xb5, 0x6e, 0xc5, + 0x6c, 0x51, 0xbf, 0x7f, 0x48, 0x27, 0xfb, 0xb1, 0x58, 0x38, 0xc0, 0x03, 0x6e, 0x7b, 0xd6, 0x60, + 0xcc, 0xf4, 0xaa, 0x74, 0x00, 0x05, 0x87, 0x63, 0x46, 0xd6, 0xa0, 0x26, 0x17, 0xcf, 0x26, 0x9c, + 0x32, 0x1d, 0x70, 0x19, 0x50, 0xb4, 0x23, 0x24, 0xe4, 0xfb, 0x50, 0xb3, 0x43, 0xd7, 0x1a, 0xd3, + 0x88, 0xb9, 0x81, 0xaf, 0xd7, 0x30, 0x6d, 0x77, 0x37, 0xe3, 0x92, 0xfd, 0xf2, 0xe4, 0xe0, 0xad, + 0x5c, 0x32, 0xc1, 0x0e, 0x5d, 0x35, 0x16, 0x7b, 0x3a, 0x6e, 0x78, 0x49, 0x23, 0xcb, 0x1d, 0xeb, + 0x75, 0x8c, 0x7f, 0x45, 0x0a, 0x0e, 0xc6, 0xc6, 0xaf, 0xa1, 0x66, 0xd2, 0xab, 0xc8, 0xe5, 0xd4, + 0x1c, 0x79, 0x94, 0x3c, 0x81, 0x66, 0xe0, 0xc9, 0xb3, 0x84, 0x11, 0x3d, 0x77, 0xdf, 0xa9, 0x84, + 0xd5, 0x03, 0x4f, 0x1c, 0xe4, 0x04, 0x65, 0x42, 0xcb, 0xa7, 0x57, 0x49, 0x2d, 0x99, 0xf5, 0xba, + 0x4f, 0xaf, 0x66, 0x5a, 0xff, 0x07, 0x0d, 0xa1, 0xc5, 0xdd, 0x21, 0x65, 0xdc, 0x1e, 0x86, 0x98, + 0xbb, 0x02, 0x2a, 0x9d, 0xc6, 0x32, 0xe3, 0x17, 0xd0, 0xf8, 0x59, 0xe8, 0x05, 0x76, 0x3f, 0xee, + 0x94, 0x67, 0x50, 0x10, 0x01, 0xc7, 0x7d, 0x6b, 0xdb, 0x9f, 0x65, 0x6a, 0x52, 0x56, 0xd3, 0xeb, + 0x25, 0x13, 0x95, 0xc8, 0x32, 0x14, 0xfa, 0x36, 0xb7, 0xe5, 0xf6, 0x42, 0x2a, 0x66, 0x3b, 0x65, + 0x28, 0x3a, 0x97, 0x23, 0x7f, 0x20, 0x9a, 0x20, 0x36, 0xae, 0xda, 0xa2, 0x0f, 0x8d, 0x03, 0xd1, + 0x35, 0x3c, 0xde, 0x6e, 0x03, 0xca, 0x4e, 0xe0, 0x73, 0xfa, 0x8e, 0xab, 0x1d, 0xdb, 0xd3, 0x70, + 0xee, 0x4a, 0xb9, 0x19, 0x2b, 0x90, 0xff, 0x87, 0x3c, 0x63, 0x5c, 0x55, 0xeb, 0x7c, 0xcf, 0x4c, + 0xa1, 0x61, 0x0c, 0x80, 0x1c, 0x8d, 0x3c, 0xee, 0xde, 0x7e, 0xab, 0xa7, 0x50, 0x60, 0x8c, 0xc7, + 0xfd, 0x7f, 0xcd, 0x5e, 0xa8, 0x62, 0xbc, 0x84, 0x66, 0xbc, 0x8f, 0x6a, 0xeb, 0x27, 0x50, 0x44, + 0x50, 0x53, 0xdb, 0x34, 0x37, 0x63, 0x88, 0xdb, 0x17, 0xbf, 0xa6, 0x5c, 0x34, 0x7e, 0xa3, 0x41, + 0x73, 0x37, 0x18, 0x86, 0xb6, 0x33, 0xf5, 0x70, 0xda, 0x90, 0xda, 0xc2, 0x86, 0x7c, 0x0c, 0xf5, + 0x60, 0xc4, 0xc3, 0x11, 0xb7, 0x3c, 0x3a, 0xa6, 0x1e, 0x06, 0xa5, 0x68, 0xd6, 0xa4, 0xec, 0x8d, + 0x10, 0x25, 0xcf, 0x9b, 0x5f, 0x70, 0x5e, 0xe3, 0x0e, 0xb4, 0xa6, 0xbe, 0xa8, 0x54, 0xfd, 0x3d, + 0x0f, 0xad, 0xbd, 0xe0, 0xca, 0x4f, 0x16, 0xc7, 0x77, 0x17, 0x67, 0x60, 0xa7, 0xf0, 0xed, 0x3f, + 0xd7, 0x96, 0x30, 0x0f, 0x02, 0x74, 0x10, 0x04, 0xaa, 0x08, 0x02, 0x38, 0x26, 0x3b, 0xa2, 0xcb, + 0xb1, 0xe0, 0xad, 0x68, 0xe4, 0x51, 0xbd, 0x81, 0xb6, 0xee, 0x67, 0x8e, 0x3a, 0x6b, 0x09, 0x65, + 0xaf, 0x16, 0x25, 0xba, 0xe4, 0x15, 0xb4, 0x18, 0x0f, 0x22, 0xfb, 0x82, 0x5a, 0x67, 0xb6, 0x33, + 0x10, 0xb0, 0xd7, 0x44, 0x33, 0x2b, 0x9b, 0x62, 0x3e, 0x0a, 0x37, 0x7b, 0x72, 0x79, 0x47, 0xae, + 0x9a, 0x4d, 0x96, 0x9a, 0x93, 0x2e, 0xb4, 0x63, 0x03, 0x8e, 0xed, 0x5c, 0x52, 0x01, 0x47, 0x77, + 0xd0, 0xc9, 0x58, 0x73, 0x57, 0x88, 0x0f, 0xfa, 0xa4, 0x03, 0x55, 0x97, 0x59, 0x91, 0x7d, 0x65, + 0x0d, 0xc6, 0x7a, 0x0b, 0x41, 0xa5, 0xec, 0x32, 0xd3, 0xbe, 0x3a, 0x1c, 0x93, 0x17, 0x50, 0x8b, + 0x1b, 0xdb, 0x3f, 0x0f, 0xf4, 0x36, 0xba, 0x40, 0x62, 0x17, 0x76, 0x65, 0x8b, 0xfb, 0xe7, 0x81, + 0x09, 0xce, 0x74, 0x4c, 0xf6, 0xc4, 0xf9, 0x31, 0x9a, 0x16, 0x9f, 0x84, 0x54, 0x27, 0x08, 0x22, + 0x8f, 0xd3, 0xe7, 0xcf, 0xc4, 0xfd, 0x74, 0x12, 0x52, 0x11, 0x81, 0xe9, 0x24, 0x99, 0xdb, 0xbb, + 0x0b, 0x72, 0xfb, 0x93, 0x42, 0xa5, 0xd2, 0xae, 0x9a, 0xf9, 0x51, 0xe4, 0x19, 0x26, 0x14, 0xb1, + 0x06, 0x89, 0x0e, 0xe5, 0x21, 0x65, 0xcc, 0x56, 0xb5, 0x56, 0x35, 0xe3, 0x29, 0xd9, 0x82, 0x9a, + 0x08, 0x01, 0xb5, 0x64, 0x09, 0xe7, 0xe6, 0x96, 0x30, 0xa0, 0x0a, 0x8e, 0x8d, 0xbf, 0x68, 0xd0, + 0x9e, 0xf9, 0xab, 0x5a, 0x60, 0x6b, 0x71, 0x25, 0xab, 0xc4, 0xaa, 0x7a, 0xbe, 0x0f, 0x15, 0x97, + 0x59, 0x74, 0x18, 0xf2, 0x09, 0xee, 0x89, 0x61, 0xde, 0x17, 0x53, 0xd1, 0x15, 0xd2, 0x97, 0xfc, + 0x3c, 0x5b, 0xc9, 0x9e, 0x9a, 0x5d, 0x53, 0x85, 0xf9, 0xd7, 0x54, 0x31, 0x79, 0x4d, 0x19, 0xaf, + 0xe0, 0x61, 0x8f, 0xf2, 0xd8, 0xf7, 0x5e, 0x48, 0x69, 0xff, 0x8d, 0x3b, 0x74, 0xa7, 0xed, 0xb8, + 0x06, 0x35, 0x26, 0x84, 0x96, 0x27, 0xa4, 0x78, 0x94, 0x82, 0x09, 0x6c, 0xaa, 0x67, 0xac, 0xc1, + 0xa3, 0x6b, 0x0c, 0xa8, 0x1e, 0x0a, 0xa1, 0x70, 0x62, 0xbb, 0x91, 0xb8, 0x9b, 0x07, 0x74, 0xa2, + 0xb0, 0x5c, 0x0c, 0x85, 0xa7, 0x63, 0xdb, 0x1b, 0x51, 0x85, 0xdc, 0x72, 0x42, 0x3e, 0x87, 0x5c, + 0x20, 0x71, 0xba, 0x99, 0x6d, 0x2f, 0x61, 0x67, 0xf3, 0xf8, 0xc4, 0xcc, 0x05, 0xa1, 0x71, 0x1f, + 0x72, 0xc7, 0x27, 0xa4, 0x0c, 0xf9, 0x93, 0x11, 0x6f, 0x2f, 0x11, 0x80, 0xd2, 0x1e, 0xf5, 0x28, + 0xa7, 0x6d, 0xcd, 0xe8, 0x01, 0xfc, 0x5c, 0xf4, 0xc9, 0x8e, 0xcd, 0x9d, 0x4b, 0xbc, 0x7a, 0x82, + 0xe1, 0xd0, 0xe5, 0x16, 0x67, 0xca, 0xff, 0x8a, 0x14, 0x9c, 0x32, 0xd2, 0x85, 0x62, 0x68, 0xbb, + 0x51, 0x0c, 0x72, 0xe4, 0xc3, 0xfd, 0x4c, 0xa9, 0x60, 0xfc, 0x51, 0x83, 0x3a, 0x5a, 0xbd, 0xd5, + 0x25, 0xf1, 0x1c, 0x8a, 0x67, 0xc2, 0x1b, 0x55, 0x4b, 0x19, 0x9a, 0x33, 0xf3, 0xf6, 0xf5, 0x92, + 0x29, 0x15, 0x6f, 0x82, 0x5c, 0xb3, 0xcb, 0xe6, 0x02, 0x1a, 0xca, 0x47, 0x55, 0x83, 0x4f, 0xd3, + 0x30, 0xfc, 0xb1, 0xba, 0x79, 0x06, 0x45, 0xe1, 0xea, 0x02, 0xbc, 0x97, 0x3a, 0xe2, 0xca, 0x34, + 0xed, 0xab, 0x44, 0x94, 0xdb, 0x90, 0xe7, 0xdc, 0x53, 0xf1, 0x15, 0xc3, 0x4f, 0x0f, 0x2d, 0x69, + 0x42, 0x8e, 0x33, 0x75, 0x33, 0xe7, 0x38, 0x33, 0xbe, 0xd1, 0xa0, 0x15, 0x5b, 0xbf, 0x55, 0xb4, + 0x5f, 0xa4, 0xa3, 0xfd, 0x20, 0xdb, 0x79, 0x57, 0xff, 0xb5, 0x80, 0xff, 0x12, 0xda, 0x33, 0x4f, + 0xff, 0xc7, 0x31, 0xff, 0xab, 0x06, 0x2b, 0x7b, 0xa3, 0xd0, 0x73, 0x1d, 0x9b, 0xd3, 0x3d, 0xca, + 0xa9, 0x73, 0xab, 0x6b, 0xfd, 0x01, 0x54, 0x91, 0x2c, 0x0b, 0xea, 0xa4, 0x3a, 0xaf, 0x82, 0x82, + 0x43, 0x3a, 0x11, 0xac, 0x55, 0xf1, 0x48, 0x0c, 0x42, 0xdd, 0x2c, 0x49, 0xf6, 0x28, 0xb0, 0x49, + 0x50, 0xad, 0xc0, 0xf7, 0x26, 0x08, 0x2c, 0x15, 0xb3, 0x3c, 0xa0, 0x93, 0x63, 0xdf, 0x9b, 0x10, + 0x03, 0x1a, 0x43, 0xd7, 0xb7, 0x66, 0x4d, 0x26, 0x11, 0xa6, 0x36, 0x74, 0xfd, 0x5d, 0xd5, 0x67, + 0xc6, 0x11, 0x94, 0x0e, 0xc7, 0x37, 0x82, 0x81, 0x54, 0xdb, 0xe6, 0xd3, 0x6d, 0x6b, 0xfc, 0x49, + 0x83, 0x7b, 0x1f, 0x84, 0x42, 0x85, 0xff, 0x7b, 0x33, 0x0a, 0xfd, 0x11, 0x02, 0x12, 0xb3, 0x67, + 0x4c, 0xc3, 0x73, 0xa8, 0x22, 0x73, 0x4e, 0xa0, 0xfd, 0xdc, 0xac, 0x89, 0x10, 0xc8, 0x2f, 0x36, + 0xe2, 0xe2, 0xce, 0x63, 0xe2, 0x96, 0xd3, 0xda, 0xf2, 0xa8, 0x31, 0x72, 0xfc, 0x3e, 0x0f, 0xa5, + 0xc3, 0xb7, 0xf1, 0x0b, 0x04, 0xc9, 0x80, 0x96, 0x20, 0x03, 0x8f, 0xa1, 0x8e, 0xf0, 0x6f, 0x05, + 0xe7, 0xe7, 0x8c, 0x72, 0x64, 0xd4, 0x05, 0xb3, 0x86, 0xb2, 0x63, 0x14, 0x25, 0xc0, 0x3b, 0x97, + 0x7a, 0x63, 0x4c, 0x3f, 0x55, 0xab, 0xf5, 0xc4, 0xa7, 0x6f, 0xa4, 0x4a, 0x13, 0x72, 0xce, 0x39, + 0xc6, 0xaf, 0x6a, 0xe6, 0x9c, 0x73, 0x11, 0x56, 0x97, 0x59, 0x7d, 0x84, 0x4a, 0x95, 0xc8, 0x8a, + 0xcb, 0x24, 0x74, 0x8a, 0x24, 0xcb, 0xd2, 0xe0, 0x31, 0xf3, 0x2f, 0xe3, 0xfc, 0x94, 0x91, 0x47, + 0x00, 0x11, 0x95, 0x97, 0xe2, 0x34, 0xc3, 0x55, 0x25, 0x39, 0x65, 0xe9, 0xa2, 0x2a, 0x5d, 0x5f, + 0x54, 0xe5, 0x54, 0x51, 0xad, 0x40, 0x89, 0x5d, 0xda, 0xdb, 0x3f, 0x78, 0x89, 0x4f, 0x95, 0xba, + 0xa9, 0x66, 0xe2, 0x35, 0x23, 0xad, 0x31, 0xdf, 0x0e, 0xd9, 0x65, 0x80, 0x0e, 0xc9, 0x97, 0x4a, + 0x0b, 0x17, 0x7a, 0x4a, 0x7e, 0xca, 0xc8, 0x0e, 0xb4, 0x9d, 0x60, 0x18, 0x46, 0x94, 0x89, 0x87, + 0x86, 0xe4, 0x13, 0x0d, 0xbc, 0x3c, 0xee, 0x4d, 0x59, 0xc8, 0x6c, 0x1d, 0x59, 0x44, 0xcb, 0x49, + 0x0b, 0x8c, 0x3f, 0xe7, 0xa1, 0xfe, 0x65, 0x18, 0x7a, 0x93, 0xb8, 0x9f, 0xba, 0x29, 0xb4, 0xc9, + 0x66, 0xf7, 0xad, 0x64, 0xbe, 0x08, 0x35, 0x1b, 0x71, 0x07, 0xd7, 0xe7, 0x16, 0xc2, 0xdb, 0x44, + 0x03, 0x7f, 0x40, 0xfb, 0x72, 0xb7, 0xa0, 0x7d, 0x3f, 0x82, 0x46, 0xd2, 0x06, 0xd3, 0x1b, 0xb8, + 0xef, 0xf5, 0x46, 0xcc, 0x7a, 0xe2, 0x73, 0x36, 0x97, 0xf5, 0x15, 0xe7, 0xb2, 0xbe, 0x39, 0x04, + 0x33, 0x7f, 0x23, 0x82, 0x99, 0x00, 0xa5, 0xc2, 0x22, 0x50, 0xca, 0xd0, 0xc8, 0xda, 0xa7, 0xd0, + 0x48, 0x63, 0x00, 0x0d, 0x95, 0xb5, 0xdb, 0x32, 0xae, 0x29, 0x54, 0xe7, 0x16, 0x41, 0xb5, 0xf1, + 0x05, 0xd4, 0x77, 0x3d, 0x6a, 0x47, 0x71, 0x89, 0xac, 0x40, 0x29, 0xf1, 0x3a, 0xad, 0x9a, 0x6a, + 0x66, 0xfc, 0x10, 0x1a, 0x4a, 0xef, 0xc6, 0xd7, 0xc1, 0xc6, 0x13, 0x80, 0xd9, 0x3f, 0x1e, 0x82, + 0xd2, 0x7c, 0x1d, 0x44, 0x43, 0xdb, 0x93, 0xf4, 0xe6, 0x00, 0x3f, 0x6b, 0x6b, 0x1b, 0x5b, 0x70, + 0x77, 0x0e, 0x37, 0x16, 0x2a, 0x6f, 0xe8, 0x85, 0xed, 0x4c, 0xda, 0x4b, 0xa4, 0x0e, 0x95, 0x43, + 0x3a, 0x61, 0xa1, 0xed, 0xd0, 0xb6, 0xb6, 0xfd, 0xbb, 0x0a, 0x54, 0xe5, 0xd7, 0xbd, 0xde, 0x29, + 0xf9, 0x69, 0x6a, 0x93, 0xb5, 0x6b, 0xff, 0x70, 0x91, 0xa6, 0x3b, 0xeb, 0xd7, 0x2b, 0x28, 0x82, + 0xb7, 0x44, 0x5e, 0x43, 0x59, 0xfd, 0xad, 0x43, 0x1e, 0xa6, 0xd5, 0xd3, 0xff, 0xff, 0x74, 0x1e, + 0x5d, 0xb3, 0x3a, 0xb5, 0xf4, 0x15, 0x94, 0xe4, 0x6b, 0x99, 0x64, 0x2e, 0xed, 0xd4, 0x03, 0xbd, + 0xf3, 0x70, 0xfe, 0x62, 0x6c, 0xa6, 0xab, 0x91, 0x7d, 0x28, 0xc9, 0x17, 0x69, 0xd6, 0x50, 0xea, + 0x3d, 0x9c, 0x35, 0x94, 0x7e, 0xc4, 0xca, 0x93, 0xa9, 0x37, 0x61, 0xf6, 0x64, 0xe9, 0x67, 0x6b, + 0xf6, 0x64, 0xd9, 0x87, 0xe4, 0x12, 0x89, 0xe0, 0xb3, 0xb9, 0x3c, 0x99, 0x6c, 0x64, 0x02, 0xfc, + 0x11, 0x36, 0xde, 0x79, 0xf6, 0x49, 0xba, 0xd3, 0x3d, 0x0f, 0xa1, 0x12, 0xaf, 0x93, 0x47, 0x1f, + 0x7d, 0x5d, 0x75, 0x56, 0xaf, 0x5b, 0x9e, 0x1a, 0xdb, 0x83, 0x22, 0xf2, 0x1c, 0xd2, 0x99, 0x43, + 0x5e, 0x63, 0x33, 0x0f, 0xe6, 0xae, 0x25, 0xf2, 0x72, 0x04, 0x95, 0x98, 0x30, 0x65, 0x5d, 0xca, + 0x50, 0xbe, 0xac, 0x4b, 0x59, 0x9e, 0x85, 0xe6, 0x8e, 0xa1, 0x96, 0xf8, 0x97, 0x83, 0x64, 0x8a, + 0xf5, 0xc3, 0x3f, 0x40, 0x16, 0x26, 0xfc, 0x0c, 0x5a, 0x19, 0x62, 0x41, 0x9e, 0x64, 0x42, 0x33, + 0x97, 0x82, 0x75, 0x3e, 0x5f, 0xa0, 0x15, 0xef, 0xf0, 0x5c, 0x23, 0x3b, 0x50, 0x44, 0xdc, 0xca, + 0x46, 0x32, 0x79, 0x05, 0x65, 0x23, 0x99, 0x02, 0x3a, 0x6c, 0x14, 0x40, 0x98, 0xf9, 0xb1, 0x2b, + 0x50, 0x3d, 0x63, 0x28, 0x09, 0x54, 0x59, 0x43, 0x29, 0x70, 0x32, 0x96, 0x76, 0xbe, 0xf8, 0xc7, + 0x37, 0x15, 0xed, 0xdb, 0xf7, 0xab, 0xda, 0xdf, 0xde, 0xaf, 0x6a, 0xff, 0x7a, 0xbf, 0xaa, 0xfd, + 0xf6, 0xdf, 0xab, 0x4b, 0xd0, 0x0e, 0xa2, 0x8b, 0x4d, 0xee, 0x0e, 0xc6, 0x9b, 0x83, 0x31, 0xfe, + 0xa5, 0x7c, 0x56, 0xc2, 0x9f, 0x17, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x2a, 0x67, 0x0e, 0xc7, + 0xdc, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3298,17 +3299,19 @@ func (m *SwitchModeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if m.Range != nil { - { - size, err := m.Range.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.Ranges) > 0 { + for iNdEx := len(m.Ranges) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Ranges[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintImportSstpb(dAtA, i, uint64(size)) } - i -= size - i = encodeVarintImportSstpb(dAtA, i, uint64(size)) + i-- + dAtA[i] = 0x12 } - i-- - dAtA[i] = 0x12 } if m.Mode != 0 { i = encodeVarintImportSstpb(dAtA, i, uint64(m.Mode)) @@ -5200,9 +5203,11 @@ func (m *SwitchModeRequest) Size() (n int) { if m.Mode != 0 { n += 1 + sovImportSstpb(uint64(m.Mode)) } - if m.Range != nil { - l = m.Range.Size() - n += 1 + l + sovImportSstpb(uint64(l)) + if len(m.Ranges) > 0 { + for _, e := range m.Ranges { + l = e.Size() + n += 1 + l + sovImportSstpb(uint64(l)) + } } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -6090,7 +6095,7 @@ func (m *SwitchModeRequest) Unmarshal(dAtA []byte) error { } case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Range", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Ranges", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -6117,10 +6122,8 @@ func (m *SwitchModeRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Range == nil { - m.Range = &Range{} - } - if err := m.Range.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Ranges = append(m.Ranges, &Range{}) + if err := m.Ranges[len(m.Ranges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/proto/import_sstpb.proto b/proto/import_sstpb.proto index e26b40145..bef1f9f97 100644 --- a/proto/import_sstpb.proto +++ b/proto/import_sstpb.proto @@ -72,7 +72,7 @@ enum SwitchMode { message SwitchModeRequest { SwitchMode mode = 1; - Range range = 2; + repeated Range ranges = 2; } message SwitchModeResponse { diff --git a/scripts/proto.lock b/scripts/proto.lock index 777d475c9..f5b1042cc 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -6159,8 +6159,9 @@ }, { "id": 2, - "name": "range", - "type": "Range" + "name": "ranges", + "type": "Range", + "is_repeated": true } ] },