diff --git a/protobufs/rpc/egress.proto b/protobufs/rpc/egress.proto index 78b5b8f96..5c9f0a0ef 100644 --- a/protobufs/rpc/egress.proto +++ b/protobufs/rpc/egress.proto @@ -21,7 +21,6 @@ option go_package = "github.com/livekit/protocol/rpc"; import "options.proto"; import "logger/options.proto"; import "livekit_egress.proto"; -import "google/protobuf/empty.proto"; service EgressInternal { rpc StartEgress(StartEgressRequest) returns (livekit.EgressInfo) { @@ -49,13 +48,11 @@ service EgressHandler { } service ReplayExport { - rpc EgressReady(google.protobuf.Empty) returns (EgressReadyResponse) { + rpc EgressReady(EgressReadyRequest) returns (EgressReadyResponse) { option (psrpc.options) = { topics: true topic_params: { single_server: true - names: ["egressID"] - typed: false } }; } @@ -95,6 +92,10 @@ message ListActiveEgressResponse { repeated string egress_ids = 1; } +message EgressReadyRequest { + string egress_id = 1 [(logger.name) = "egressID"]; +} + message EgressReadyResponse { int64 start_at = 1; // wallclock unix timestamp (nanoseconds) int64 duration_ms = 2; // how long to record diff --git a/rpc/egress.pb.go b/rpc/egress.pb.go index b983abd1d..c9ae91d65 100644 --- a/rpc/egress.pb.go +++ b/rpc/egress.pb.go @@ -26,7 +26,6 @@ import ( _ "github.com/livekit/psrpc/protoc-gen-psrpc/options" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" - emptypb "google.golang.org/protobuf/types/known/emptypb" reflect "reflect" sync "sync" unsafe "unsafe" @@ -343,6 +342,50 @@ func (x *ListActiveEgressResponse) GetEgressIds() []string { return nil } +type EgressReadyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + EgressId string `protobuf:"bytes,1,opt,name=egress_id,json=egressId,proto3" json:"egress_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *EgressReadyRequest) Reset() { + *x = EgressReadyRequest{} + mi := &file_rpc_egress_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *EgressReadyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*EgressReadyRequest) ProtoMessage() {} + +func (x *EgressReadyRequest) ProtoReflect() protoreflect.Message { + mi := &file_rpc_egress_proto_msgTypes[3] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use EgressReadyRequest.ProtoReflect.Descriptor instead. +func (*EgressReadyRequest) Descriptor() ([]byte, []int) { + return file_rpc_egress_proto_rawDescGZIP(), []int{3} +} + +func (x *EgressReadyRequest) GetEgressId() string { + if x != nil { + return x.EgressId + } + return "" +} + type EgressReadyResponse struct { state protoimpl.MessageState `protogen:"open.v1"` StartAt int64 `protobuf:"varint,1,opt,name=start_at,json=startAt,proto3" json:"start_at,omitempty"` // wallclock unix timestamp (nanoseconds) @@ -353,7 +396,7 @@ type EgressReadyResponse struct { func (x *EgressReadyResponse) Reset() { *x = EgressReadyResponse{} - mi := &file_rpc_egress_proto_msgTypes[3] + mi := &file_rpc_egress_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -365,7 +408,7 @@ func (x *EgressReadyResponse) String() string { func (*EgressReadyResponse) ProtoMessage() {} func (x *EgressReadyResponse) ProtoReflect() protoreflect.Message { - mi := &file_rpc_egress_proto_msgTypes[3] + mi := &file_rpc_egress_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -378,7 +421,7 @@ func (x *EgressReadyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EgressReadyResponse.ProtoReflect.Descriptor instead. func (*EgressReadyResponse) Descriptor() ([]byte, []int) { - return file_rpc_egress_proto_rawDescGZIP(), []int{3} + return file_rpc_egress_proto_rawDescGZIP(), []int{4} } func (x *EgressReadyResponse) GetStartAt() int64 { @@ -399,7 +442,7 @@ var File_rpc_egress_proto protoreflect.FileDescriptor const file_rpc_egress_proto_rawDesc = "" + "\n" + - "\x10rpc/egress.proto\x12\x03rpc\x1a\roptions.proto\x1a\x14logger/options.proto\x1a\x14livekit_egress.proto\x1a\x1bgoogle/protobuf/empty.proto\"\xd3\x05\n" + + "\x10rpc/egress.proto\x12\x03rpc\x1a\roptions.proto\x1a\x14logger/options.proto\x1a\x14livekit_egress.proto\"\xd3\x05\n" + "\x12StartEgressRequest\x12)\n" + "\tegress_id\x18\x01 \x01(\tB\f\x9a\xec,\begressIDR\begressId\x125\n" + "\x06egress\x18\x10 \x01(\v2\x1b.livekit.StartEgressRequestH\x00R\x06egress\x126\n" + @@ -422,7 +465,9 @@ const file_rpc_egress_proto_rawDesc = "" + "\x17ListActiveEgressRequest\"9\n" + "\x18ListActiveEgressResponse\x12\x1d\n" + "\n" + - "egress_ids\x18\x01 \x03(\tR\tegressIds\"Q\n" + + "egress_ids\x18\x01 \x03(\tR\tegressIds\"?\n" + + "\x12EgressReadyRequest\x12)\n" + + "\tegress_id\x18\x01 \x01(\tB\f\x9a\xec,\begressIDR\begressId\"Q\n" + "\x13EgressReadyResponse\x12\x19\n" + "\bstart_at\x18\x01 \x01(\x03R\astartAt\x12\x1f\n" + "\vduration_ms\x18\x02 \x01(\x03R\n" + @@ -434,9 +479,10 @@ const file_rpc_egress_proto_rawDesc = "" + "\fUpdateEgress\x12\x1c.livekit.UpdateEgressRequest\x1a\x13.livekit.EgressInfo\"\x06\xb2\x89\x01\x02\x10\x01\x12E\n" + "\n" + "StopEgress\x12\x1a.livekit.StopEgressRequest\x1a\x13.livekit.EgressInfo\"\x06\xb2\x89\x01\x02\x10\x01\x12I\n" + - "\fUpdateStream\x12\x1c.livekit.UpdateStreamRequest\x1a\x13.livekit.EgressInfo\"\x06\xb2\x89\x01\x02\x10\x012e\n" + - "\fReplayExport\x12U\n" + - "\vEgressReady\x12\x16.google.protobuf.Empty\x1a\x18.rpc.EgressReadyResponse\"\x14\xb2\x89\x01\x10\x10\x01\x1a\f\x12\begressID \x01B!Z\x1fgithub.com/livekit/protocol/rpcb\x06proto3" + "\fUpdateStream\x12\x1c.livekit.UpdateStreamRequest\x1a\x13.livekit.EgressInfo\"\x06\xb2\x89\x01\x02\x10\x012\\\n" + + "\fReplayExport\x12L\n" + + "\vEgressReady\x12\x17.rpc.EgressReadyRequest\x1a\x18.rpc.EgressReadyResponse\"\n" + + "\xb2\x89\x01\x06\x10\x01\x1a\x02 \x01B!Z\x1fgithub.com/livekit/protocol/rpcb\x06proto3" var ( file_rpc_egress_proto_rawDescOnce sync.Once @@ -450,45 +496,45 @@ func file_rpc_egress_proto_rawDescGZIP() []byte { return file_rpc_egress_proto_rawDescData } -var file_rpc_egress_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_rpc_egress_proto_msgTypes = make([]protoimpl.MessageInfo, 5) var file_rpc_egress_proto_goTypes = []any{ (*StartEgressRequest)(nil), // 0: rpc.StartEgressRequest (*ListActiveEgressRequest)(nil), // 1: rpc.ListActiveEgressRequest (*ListActiveEgressResponse)(nil), // 2: rpc.ListActiveEgressResponse - (*EgressReadyResponse)(nil), // 3: rpc.EgressReadyResponse - (*livekit.StartEgressRequest)(nil), // 4: livekit.StartEgressRequest - (*livekit.ExportReplayRequest)(nil), // 5: livekit.ExportReplayRequest - (*livekit.RoomCompositeEgressRequest)(nil), // 6: livekit.RoomCompositeEgressRequest - (*livekit.WebEgressRequest)(nil), // 7: livekit.WebEgressRequest - (*livekit.ParticipantEgressRequest)(nil), // 8: livekit.ParticipantEgressRequest - (*livekit.TrackCompositeEgressRequest)(nil), // 9: livekit.TrackCompositeEgressRequest - (*livekit.TrackEgressRequest)(nil), // 10: livekit.TrackEgressRequest - (*livekit.UpdateEgressRequest)(nil), // 11: livekit.UpdateEgressRequest - (*livekit.StopEgressRequest)(nil), // 12: livekit.StopEgressRequest - (*livekit.UpdateStreamRequest)(nil), // 13: livekit.UpdateStreamRequest - (*emptypb.Empty)(nil), // 14: google.protobuf.Empty + (*EgressReadyRequest)(nil), // 3: rpc.EgressReadyRequest + (*EgressReadyResponse)(nil), // 4: rpc.EgressReadyResponse + (*livekit.StartEgressRequest)(nil), // 5: livekit.StartEgressRequest + (*livekit.ExportReplayRequest)(nil), // 6: livekit.ExportReplayRequest + (*livekit.RoomCompositeEgressRequest)(nil), // 7: livekit.RoomCompositeEgressRequest + (*livekit.WebEgressRequest)(nil), // 8: livekit.WebEgressRequest + (*livekit.ParticipantEgressRequest)(nil), // 9: livekit.ParticipantEgressRequest + (*livekit.TrackCompositeEgressRequest)(nil), // 10: livekit.TrackCompositeEgressRequest + (*livekit.TrackEgressRequest)(nil), // 11: livekit.TrackEgressRequest + (*livekit.UpdateEgressRequest)(nil), // 12: livekit.UpdateEgressRequest + (*livekit.StopEgressRequest)(nil), // 13: livekit.StopEgressRequest + (*livekit.UpdateStreamRequest)(nil), // 14: livekit.UpdateStreamRequest (*livekit.EgressInfo)(nil), // 15: livekit.EgressInfo } var file_rpc_egress_proto_depIdxs = []int32{ - 4, // 0: rpc.StartEgressRequest.egress:type_name -> livekit.StartEgressRequest - 5, // 1: rpc.StartEgressRequest.replay:type_name -> livekit.ExportReplayRequest - 6, // 2: rpc.StartEgressRequest.room_composite:type_name -> livekit.RoomCompositeEgressRequest - 7, // 3: rpc.StartEgressRequest.web:type_name -> livekit.WebEgressRequest - 8, // 4: rpc.StartEgressRequest.participant:type_name -> livekit.ParticipantEgressRequest - 9, // 5: rpc.StartEgressRequest.track_composite:type_name -> livekit.TrackCompositeEgressRequest - 10, // 6: rpc.StartEgressRequest.track:type_name -> livekit.TrackEgressRequest + 5, // 0: rpc.StartEgressRequest.egress:type_name -> livekit.StartEgressRequest + 6, // 1: rpc.StartEgressRequest.replay:type_name -> livekit.ExportReplayRequest + 7, // 2: rpc.StartEgressRequest.room_composite:type_name -> livekit.RoomCompositeEgressRequest + 8, // 3: rpc.StartEgressRequest.web:type_name -> livekit.WebEgressRequest + 9, // 4: rpc.StartEgressRequest.participant:type_name -> livekit.ParticipantEgressRequest + 10, // 5: rpc.StartEgressRequest.track_composite:type_name -> livekit.TrackCompositeEgressRequest + 11, // 6: rpc.StartEgressRequest.track:type_name -> livekit.TrackEgressRequest 0, // 7: rpc.EgressInternal.StartEgress:input_type -> rpc.StartEgressRequest 1, // 8: rpc.EgressInternal.ListActiveEgress:input_type -> rpc.ListActiveEgressRequest - 11, // 9: rpc.EgressHandler.UpdateEgress:input_type -> livekit.UpdateEgressRequest - 12, // 10: rpc.EgressHandler.StopEgress:input_type -> livekit.StopEgressRequest - 13, // 11: rpc.EgressHandler.UpdateStream:input_type -> livekit.UpdateStreamRequest - 14, // 12: rpc.ReplayExport.EgressReady:input_type -> google.protobuf.Empty + 12, // 9: rpc.EgressHandler.UpdateEgress:input_type -> livekit.UpdateEgressRequest + 13, // 10: rpc.EgressHandler.StopEgress:input_type -> livekit.StopEgressRequest + 14, // 11: rpc.EgressHandler.UpdateStream:input_type -> livekit.UpdateStreamRequest + 3, // 12: rpc.ReplayExport.EgressReady:input_type -> rpc.EgressReadyRequest 15, // 13: rpc.EgressInternal.StartEgress:output_type -> livekit.EgressInfo 2, // 14: rpc.EgressInternal.ListActiveEgress:output_type -> rpc.ListActiveEgressResponse 15, // 15: rpc.EgressHandler.UpdateEgress:output_type -> livekit.EgressInfo 15, // 16: rpc.EgressHandler.StopEgress:output_type -> livekit.EgressInfo 15, // 17: rpc.EgressHandler.UpdateStream:output_type -> livekit.EgressInfo - 3, // 18: rpc.ReplayExport.EgressReady:output_type -> rpc.EgressReadyResponse + 4, // 18: rpc.ReplayExport.EgressReady:output_type -> rpc.EgressReadyResponse 13, // [13:19] is the sub-list for method output_type 7, // [7:13] is the sub-list for method input_type 7, // [7:7] is the sub-list for extension type_name @@ -516,7 +562,7 @@ func file_rpc_egress_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_rpc_egress_proto_rawDesc), len(file_rpc_egress_proto_rawDesc)), NumEnums: 0, - NumMessages: 4, + NumMessages: 5, NumExtensions: 0, NumServices: 3, }, diff --git a/rpc/egress.psrpc.go b/rpc/egress.psrpc.go index 3e169a0f1..f1312dd5a 100644 --- a/rpc/egress.psrpc.go +++ b/rpc/egress.psrpc.go @@ -13,7 +13,6 @@ import ( "github.com/livekit/psrpc/pkg/server" "github.com/livekit/psrpc/version" ) -import google_protobuf "google.golang.org/protobuf/types/known/emptypb" import livekit4 "github.com/livekit/protocol/livekit" var _ = version.PsrpcVersion_0_7 @@ -344,7 +343,7 @@ func (UnimplementedEgressHandlerServer) UpdateStream(context.Context, *livekit4. // ============================= type ReplayExportClient interface { - EgressReady(ctx context.Context, egressID string, req *google_protobuf.Empty, opts ...psrpc.RequestOption) (*EgressReadyResponse, error) + EgressReady(ctx context.Context, topic string, req *EgressReadyRequest, opts ...psrpc.RequestOption) (*EgressReadyResponse, error) // Close immediately, without waiting for pending RPCs Close() @@ -355,7 +354,7 @@ type ReplayExportClient interface { // ================================= type ReplayExportServerImpl interface { - EgressReady(context.Context, *google_protobuf.Empty) (*EgressReadyResponse, error) + EgressReady(context.Context, *EgressReadyRequest) (*EgressReadyResponse, error) } // ============================= @@ -363,8 +362,8 @@ type ReplayExportServerImpl interface { // ============================= type ReplayExportServer interface { - RegisterEgressReadyTopic(egressID string) error - DeregisterEgressReadyTopic(egressID string) + RegisterEgressReadyTopic(topic string) error + DeregisterEgressReadyTopic(topic string) // Close and wait for pending RPCs to complete Shutdown() @@ -400,8 +399,8 @@ func NewReplayExportClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (Re }, nil } -func (c *replayExportClient) EgressReady(ctx context.Context, egressID string, req *google_protobuf.Empty, opts ...psrpc.RequestOption) (*EgressReadyResponse, error) { - return client.RequestSingle[*EgressReadyResponse](ctx, c.client, "EgressReady", []string{egressID}, req, opts...) +func (c *replayExportClient) EgressReady(ctx context.Context, topic string, req *EgressReadyRequest, opts ...psrpc.RequestOption) (*EgressReadyResponse, error) { + return client.RequestSingle[*EgressReadyResponse](ctx, c.client, "EgressReady", []string{topic}, req, opts...) } func (s *replayExportClient) Close() { @@ -434,12 +433,12 @@ func NewReplayExportServer(svc ReplayExportServerImpl, bus psrpc.MessageBus, opt }, nil } -func (s *replayExportServer) RegisterEgressReadyTopic(egressID string) error { - return server.RegisterHandler(s.rpc, "EgressReady", []string{egressID}, s.svc.EgressReady, nil) +func (s *replayExportServer) RegisterEgressReadyTopic(topic string) error { + return server.RegisterHandler(s.rpc, "EgressReady", []string{topic}, s.svc.EgressReady, nil) } -func (s *replayExportServer) DeregisterEgressReadyTopic(egressID string) { - s.rpc.DeregisterHandler("EgressReady", []string{egressID}) +func (s *replayExportServer) DeregisterEgressReadyTopic(topic string) { + s.rpc.DeregisterHandler("EgressReady", []string{topic}) } func (s *replayExportServer) Shutdown() { @@ -456,58 +455,56 @@ func (s *replayExportServer) Kill() { type UnimplementedReplayExportServer struct{} -func (UnimplementedReplayExportServer) EgressReady(context.Context, *google_protobuf.Empty) (*EgressReadyResponse, error) { +func (UnimplementedReplayExportServer) EgressReady(context.Context, *EgressReadyRequest) (*EgressReadyResponse, error) { return nil, psrpc.ErrUnimplemented } var psrpcFileDescriptor2 = []byte{ - // 755 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xdd, 0x6e, 0xe3, 0x44, - 0x14, 0x66, 0x1a, 0xe2, 0x24, 0x27, 0x3f, 0x1b, 0x66, 0x0b, 0x3b, 0xf5, 0xee, 0x6a, 0xd3, 0x94, - 0x8b, 0x20, 0x15, 0xa7, 0x4a, 0x05, 0x12, 0x77, 0x34, 0x6d, 0x44, 0x23, 0x15, 0x01, 0x2e, 0x15, - 0x12, 0x5c, 0x58, 0x8e, 0x3d, 0x0d, 0x56, 0x6c, 0xcf, 0x30, 0x1e, 0xb7, 0xe4, 0x0d, 0xe8, 0x2b, - 0xf4, 0x31, 0x7a, 0xc1, 0x8b, 0xf0, 0x1a, 0x79, 0x08, 0xe4, 0x99, 0xd8, 0x75, 0xd3, 0x76, 0xd5, - 0x2b, 0x7b, 0xbe, 0xef, 0x7c, 0x9f, 0xcf, 0x19, 0x9f, 0x73, 0xa0, 0x2b, 0xb8, 0x37, 0xa4, 0x73, - 0x41, 0x93, 0xc4, 0xe2, 0x82, 0x49, 0x86, 0x2b, 0x82, 0x7b, 0x66, 0x9b, 0x71, 0x19, 0xb0, 0x78, - 0x8d, 0x99, 0xdb, 0x21, 0x9b, 0xcf, 0xa9, 0x18, 0x6e, 0xa2, 0xc1, 0x15, 0x5d, 0x04, 0xd2, 0x29, - 0xeb, 0xcd, 0xb7, 0x73, 0xc6, 0xe6, 0x21, 0x1d, 0xaa, 0xd3, 0x2c, 0xbd, 0x1c, 0xd2, 0x88, 0xcb, - 0xa5, 0x26, 0xfb, 0xff, 0x55, 0x01, 0x9f, 0x4b, 0x57, 0xc8, 0x89, 0x92, 0xd8, 0xf4, 0xaf, 0x94, - 0x26, 0x12, 0x7f, 0x05, 0x0d, 0xed, 0xe1, 0x04, 0x3e, 0x41, 0x3d, 0x34, 0x68, 0x8c, 0x5b, 0xb7, - 0xab, 0xfd, 0xba, 0x06, 0xa7, 0x27, 0x76, 0xfe, 0xe6, 0xe3, 0x6f, 0xc0, 0xd0, 0xef, 0xa4, 0xdb, - 0x43, 0x83, 0xe6, 0xe8, 0xad, 0xb5, 0xce, 0xc2, 0x7a, 0xec, 0x7b, 0xfa, 0x89, 0xbd, 0x0e, 0xc6, - 0xdf, 0x82, 0x21, 0x28, 0x0f, 0xdd, 0x25, 0xf9, 0x4c, 0xc9, 0xde, 0x15, 0xb2, 0xc9, 0xdf, 0x9c, - 0x09, 0x69, 0x2b, 0xb2, 0xa4, 0xd3, 0xd1, 0xf8, 0x0c, 0x3a, 0x82, 0xb1, 0xc8, 0xf1, 0x58, 0xc4, - 0x59, 0x12, 0x48, 0x4a, 0xaa, 0x4a, 0xbf, 0x57, 0xe8, 0x6d, 0xc6, 0xa2, 0xe3, 0x9c, 0xdd, 0xfc, - 0x7c, 0x5b, 0x94, 0x59, 0xfc, 0x35, 0x54, 0xae, 0xe9, 0x8c, 0x34, 0x95, 0xc5, 0x4e, 0x61, 0xf1, - 0x1b, 0x9d, 0x6d, 0x0a, 0xb3, 0x38, 0x3c, 0x81, 0x26, 0x77, 0x85, 0x0c, 0xbc, 0x80, 0xbb, 0xb1, - 0x24, 0x6d, 0x25, 0xdb, 0x2d, 0x64, 0x3f, 0xdf, 0x73, 0x9b, 0xf2, 0xb2, 0x0e, 0xff, 0x04, 0xaf, - 0xa4, 0x70, 0xbd, 0x45, 0xa9, 0x08, 0x43, 0x59, 0x7d, 0x59, 0x58, 0xfd, 0x9a, 0xf1, 0xcf, 0x56, - 0xd1, 0x91, 0x0f, 0x68, 0x7c, 0x08, 0x55, 0x85, 0x90, 0xda, 0xc6, 0x2f, 0x50, 0x36, 0x9b, 0x6a, - 0x1d, 0x8b, 0xf7, 0xa0, 0xa6, 0x6e, 0x32, 0xf0, 0x49, 0x45, 0xfd, 0x61, 0xb8, 0x5d, 0xed, 0x1b, - 0x19, 0x34, 0x3d, 0xb1, 0xf5, 0xd3, 0xc7, 0x26, 0x54, 0x25, 0x5b, 0xd0, 0x98, 0xd4, 0x55, 0xc8, - 0xa7, 0xff, 0xac, 0xf6, 0x91, 0xad, 0x21, 0xfc, 0x39, 0x18, 0xd7, 0x89, 0x93, 0x8a, 0x90, 0x34, - 0x32, 0xd2, 0xae, 0x5e, 0x27, 0x17, 0x22, 0xc4, 0x07, 0xb0, 0xed, 0x85, 0x2c, 0xf5, 0x9d, 0x99, - 0xeb, 0x2d, 0x52, 0xee, 0xd0, 0xd8, 0x9d, 0x85, 0xd4, 0x27, 0xd0, 0x43, 0x83, 0xba, 0x8d, 0x15, - 0x37, 0x56, 0xd4, 0x44, 0x33, 0x78, 0x0f, 0xda, 0x34, 0x91, 0x41, 0xe4, 0x4a, 0xea, 0x3b, 0x1e, - 0x4f, 0x49, 0xa7, 0x87, 0x06, 0xc8, 0x6e, 0x15, 0xe0, 0x31, 0x4f, 0xf1, 0x07, 0x68, 0x0a, 0x2a, - 0xc5, 0xd2, 0xf1, 0x58, 0x1a, 0x4b, 0xf2, 0xaa, 0x87, 0x06, 0x55, 0x1b, 0x14, 0x74, 0x9c, 0x21, - 0xe3, 0x06, 0xd4, 0x84, 0xae, 0xb1, 0xbf, 0x03, 0x6f, 0xce, 0x82, 0x44, 0x1e, 0x79, 0x32, 0xb8, - 0x7a, 0x78, 0x79, 0xfd, 0xef, 0x80, 0x3c, 0xa6, 0x12, 0xce, 0xe2, 0x84, 0xe2, 0xf7, 0x00, 0x45, - 0xd7, 0x27, 0x04, 0xf5, 0x2a, 0x83, 0x86, 0xdd, 0xc8, 0x1b, 0x3d, 0xe9, 0xff, 0x02, 0xaf, 0x73, - 0x81, 0xeb, 0x2f, 0x0b, 0xd5, 0x0e, 0xd4, 0x93, 0xac, 0xd3, 0x1d, 0x57, 0xaa, 0x51, 0xa9, 0xd8, - 0x35, 0x75, 0x3e, 0x92, 0x59, 0xce, 0x7e, 0x2a, 0xdc, 0x6c, 0x46, 0x9d, 0x28, 0x21, 0x5b, 0x8a, - 0x85, 0x1c, 0xfa, 0x31, 0x19, 0xfd, 0x8b, 0xa0, 0xa3, 0x3d, 0xa7, 0xb1, 0xa4, 0x22, 0x76, 0x43, - 0xfc, 0x03, 0x34, 0x4b, 0x83, 0x83, 0xdf, 0x58, 0x82, 0x7b, 0x4f, 0x8c, 0x92, 0xf9, 0xfa, 0x7e, - 0x60, 0xd6, 0x06, 0x97, 0xac, 0x0f, 0x77, 0x37, 0xc8, 0xe8, 0xa2, 0xef, 0xd1, 0x01, 0xc2, 0x7f, - 0x40, 0x77, 0xb3, 0x52, 0xfc, 0x4e, 0xb9, 0x3d, 0x73, 0x37, 0xe6, 0xfb, 0x67, 0x58, 0x5d, 0x68, - 0x61, 0xbe, 0x35, 0x40, 0xa3, 0x15, 0x82, 0xb6, 0xa6, 0x4f, 0xdd, 0xd8, 0x0f, 0xa9, 0xc0, 0x53, - 0x68, 0x5d, 0x70, 0xdf, 0x95, 0xf7, 0x9f, 0xca, 0xf3, 0x2b, 0xc3, 0x1f, 0xcd, 0xde, 0xb8, 0xbb, - 0x41, 0x5b, 0x5d, 0x84, 0x27, 0x00, 0xe7, 0x92, 0xf1, 0xb5, 0x91, 0x59, 0x5a, 0x28, 0x39, 0xf8, - 0x22, 0x9b, 0x22, 0xa3, 0x73, 0x29, 0xa8, 0x1b, 0x3d, 0xca, 0x48, 0xc3, 0x2f, 0xb1, 0x1a, 0x51, - 0x68, 0xe9, 0x85, 0xa4, 0x97, 0x13, 0xbe, 0x80, 0x66, 0xa9, 0x15, 0xf0, 0x17, 0x96, 0xde, 0xb1, - 0x56, 0xbe, 0x63, 0xad, 0x49, 0xb6, 0x63, 0x4d, 0xa2, 0x2e, 0xf4, 0x89, 0xa6, 0xe9, 0x6f, 0xdf, - 0xdd, 0xa0, 0x6e, 0x17, 0x99, 0x2d, 0x5c, 0xec, 0xd4, 0x1e, 0x1a, 0xef, 0xfe, 0xfe, 0x61, 0x1e, - 0xc8, 0x3f, 0xd3, 0x99, 0xe5, 0xb1, 0x68, 0xb8, 0xce, 0x47, 0x2f, 0x6e, 0x8f, 0x85, 0x43, 0xc1, - 0xbd, 0x99, 0xa1, 0x4e, 0x87, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x00, 0x87, 0x3a, 0x28, - 0x06, 0x00, 0x00, + // 732 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xdd, 0x6e, 0xdb, 0x36, + 0x14, 0x1e, 0xed, 0x59, 0xb6, 0x8f, 0x7f, 0xe2, 0x31, 0x19, 0xc2, 0x68, 0x09, 0xe2, 0x38, 0xbb, + 0xf0, 0x80, 0xcc, 0x0e, 0x1c, 0x6c, 0xc0, 0xae, 0xb6, 0x38, 0x31, 0x16, 0x03, 0x19, 0xd6, 0x2a, + 0x0d, 0x0a, 0xb4, 0x05, 0x04, 0x59, 0x62, 0x5d, 0xc1, 0xb2, 0xc8, 0x52, 0x54, 0xd2, 0xbc, 0x41, + 0xf3, 0x0a, 0x79, 0x8c, 0x5c, 0xf4, 0x45, 0xfa, 0x1a, 0x7e, 0x88, 0x42, 0x94, 0xac, 0xc8, 0x76, + 0x53, 0xa4, 0x57, 0x12, 0xbf, 0xef, 0x7c, 0x1f, 0xcf, 0x39, 0xe4, 0x21, 0x34, 0x04, 0xb7, 0xbb, + 0x74, 0x2c, 0x68, 0x10, 0x74, 0xb8, 0x60, 0x92, 0xe1, 0xbc, 0xe0, 0xb6, 0x5e, 0x63, 0x5c, 0xba, + 0xcc, 0x4f, 0x30, 0x7d, 0xc3, 0x63, 0xe3, 0x31, 0x15, 0xdd, 0x65, 0xd4, 0xbd, 0xa2, 0x13, 0x57, + 0x9a, 0x59, 0x7d, 0xeb, 0x73, 0x01, 0xf0, 0x85, 0xb4, 0x84, 0x1c, 0x28, 0xd4, 0xa0, 0xef, 0x43, + 0x1a, 0x48, 0xfc, 0x1b, 0x94, 0xe3, 0x30, 0xd3, 0x75, 0x08, 0x6a, 0xa2, 0x76, 0xb9, 0x5f, 0xbd, + 0x9b, 0x1d, 0x94, 0x62, 0x70, 0x78, 0x6a, 0xcc, 0xff, 0x1c, 0xfc, 0x07, 0x68, 0xf1, 0x3f, 0x69, + 0x34, 0x51, 0xbb, 0xd2, 0xfb, 0xa5, 0x93, 0x6c, 0xd4, 0x59, 0xf5, 0x3d, 0xfb, 0xc1, 0x48, 0x82, + 0xf1, 0x9f, 0xa0, 0x09, 0xca, 0x3d, 0xeb, 0x86, 0xfc, 0xa4, 0x64, 0xdb, 0xa9, 0x6c, 0xf0, 0x81, + 0x33, 0x21, 0x0d, 0x45, 0x66, 0x74, 0x71, 0x34, 0x3e, 0x87, 0xba, 0x60, 0x6c, 0x6a, 0xda, 0x6c, + 0xca, 0x59, 0xe0, 0x4a, 0x4a, 0x0a, 0x4a, 0xbf, 0x9f, 0xea, 0x0d, 0xc6, 0xa6, 0x27, 0x73, 0x76, + 0x79, 0xfb, 0x9a, 0xc8, 0xb2, 0xf8, 0x77, 0xc8, 0x5f, 0xd3, 0x11, 0xa9, 0x28, 0x8b, 0xad, 0xd4, + 0xe2, 0x25, 0x1d, 0x2d, 0x0b, 0xa3, 0x38, 0x3c, 0x80, 0x0a, 0xb7, 0x84, 0x74, 0x6d, 0x97, 0x5b, + 0xbe, 0x24, 0x35, 0x25, 0xdb, 0x4b, 0x65, 0xcf, 0x1e, 0xb8, 0x65, 0x79, 0x56, 0x87, 0xff, 0x87, + 0x35, 0x29, 0x2c, 0x7b, 0x92, 0x29, 0x42, 0x53, 0x56, 0xbf, 0xa6, 0x56, 0x2f, 0x22, 0xfe, 0xd1, + 0x2a, 0xea, 0x72, 0x81, 0xc6, 0x47, 0x50, 0x50, 0x08, 0x29, 0x2e, 0x1d, 0x81, 0xb2, 0x59, 0x56, + 0xc7, 0xb1, 0x78, 0x1f, 0x8a, 0xaa, 0x93, 0xae, 0x43, 0xf2, 0xea, 0x84, 0xe1, 0x6e, 0x76, 0xa0, + 0x45, 0xd0, 0xf0, 0xd4, 0x88, 0xbf, 0x0e, 0xd6, 0xa1, 0x20, 0xd9, 0x84, 0xfa, 0xa4, 0xa4, 0x42, + 0x7e, 0xfc, 0x38, 0x3b, 0x40, 0x46, 0x0c, 0xe1, 0x9f, 0x41, 0xbb, 0x0e, 0xcc, 0x50, 0x78, 0xa4, + 0x1c, 0x91, 0x46, 0xe1, 0x3a, 0xb8, 0x14, 0x1e, 0x3e, 0x84, 0x0d, 0xdb, 0x63, 0xa1, 0x63, 0x8e, + 0x2c, 0x7b, 0x12, 0x72, 0x93, 0xfa, 0xd6, 0xc8, 0xa3, 0x0e, 0x81, 0x26, 0x6a, 0x97, 0x0c, 0xac, + 0xb8, 0xbe, 0xa2, 0x06, 0x31, 0x83, 0xf7, 0xa1, 0x46, 0x03, 0xe9, 0x4e, 0x2d, 0x49, 0x1d, 0xd3, + 0xe6, 0x21, 0xa9, 0x37, 0x51, 0x1b, 0x19, 0xd5, 0x14, 0x3c, 0xe1, 0x21, 0xde, 0x85, 0x8a, 0xa0, + 0x52, 0xdc, 0x98, 0x36, 0x0b, 0x7d, 0x49, 0xd6, 0x9a, 0xa8, 0x5d, 0x30, 0x40, 0x41, 0x27, 0x11, + 0xd2, 0x2f, 0x43, 0x51, 0xc4, 0x35, 0xb6, 0xb6, 0x60, 0xf3, 0xdc, 0x0d, 0xe4, 0xb1, 0x2d, 0xdd, + 0xab, 0xc5, 0xe6, 0xb5, 0xfe, 0x02, 0xb2, 0x4a, 0x05, 0x9c, 0xf9, 0x01, 0xc5, 0x3b, 0x00, 0xe9, + 0xad, 0x0f, 0x08, 0x6a, 0xe6, 0xdb, 0x65, 0xa3, 0x3c, 0xbf, 0xe8, 0x41, 0xeb, 0x6f, 0xc0, 0x73, + 0x81, 0xe5, 0xdc, 0x7c, 0xff, 0xa8, 0xb4, 0x9e, 0xc3, 0xfa, 0x82, 0x41, 0xb2, 0xed, 0x16, 0x94, + 0x82, 0x68, 0x54, 0x4c, 0x4b, 0x2a, 0x83, 0xbc, 0x51, 0x54, 0xeb, 0x63, 0x19, 0x15, 0xed, 0x84, + 0xc2, 0x8a, 0xe6, 0xd8, 0x9c, 0x06, 0x24, 0xa7, 0x58, 0x98, 0x43, 0xff, 0x05, 0xbd, 0x4f, 0x08, + 0xea, 0xb1, 0xe7, 0xd0, 0x97, 0x54, 0xf8, 0x96, 0x87, 0xff, 0x85, 0x4a, 0x66, 0xf2, 0xf0, 0x66, + 0x47, 0x70, 0xfb, 0x2b, 0xb3, 0xa8, 0xaf, 0x3f, 0x4c, 0x5c, 0x62, 0xf0, 0x96, 0xb5, 0xe0, 0xfe, + 0x16, 0x69, 0x0d, 0xf4, 0x0f, 0x3a, 0x44, 0xf8, 0x35, 0x34, 0x96, 0x5b, 0x85, 0xb7, 0x95, 0xdb, + 0x23, 0xcd, 0xd5, 0x77, 0x1e, 0x61, 0xe3, 0x42, 0x53, 0xf3, 0x5c, 0x1b, 0xf5, 0x66, 0x08, 0x6a, + 0x31, 0x7d, 0x66, 0xf9, 0x8e, 0x47, 0x05, 0x1e, 0x42, 0xf5, 0x92, 0x3b, 0x96, 0x7c, 0xd8, 0x6a, + 0x9e, 0x5f, 0x16, 0xfe, 0x66, 0xf6, 0xda, 0xfd, 0x2d, 0xca, 0x35, 0x10, 0x1e, 0x00, 0x5c, 0x48, + 0xc6, 0x13, 0x23, 0x3d, 0xf3, 0x22, 0xcd, 0xc1, 0x27, 0xd9, 0xa4, 0x19, 0x5d, 0x48, 0x41, 0xad, + 0xe9, 0x4a, 0x46, 0x31, 0xfc, 0x14, 0xab, 0xde, 0x1b, 0xa8, 0xc6, 0x2f, 0x5a, 0xfc, 0xba, 0xe1, + 0x73, 0xa8, 0x64, 0xae, 0x42, 0x72, 0x48, 0xab, 0xb7, 0x4b, 0x27, 0xab, 0xc4, 0x62, 0x33, 0xf5, + 0x5c, 0x13, 0xf5, 0xf7, 0x5e, 0xed, 0x8e, 0x5d, 0xf9, 0x2e, 0x1c, 0x75, 0x6c, 0x36, 0xed, 0x26, + 0x69, 0x74, 0xd5, 0x0b, 0x6f, 0x33, 0xaf, 0x2b, 0xb8, 0x3d, 0xd2, 0xd4, 0xea, 0xe8, 0x4b, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xd8, 0x07, 0x36, 0xd7, 0x43, 0x06, 0x00, 0x00, }