From cdaa2d0120ed147b0ed53c32134f23acce5b93a6 Mon Sep 17 00:00:00 2001 From: Milos Pesic Date: Fri, 23 Jan 2026 14:13:33 +0100 Subject: [PATCH 1/7] Pagination support for ListIngress API --- livekit/ingress.go | 16 ++++++++++++++++ protobufs/livekit_ingress.proto | 2 ++ 2 files changed, 18 insertions(+) create mode 100644 livekit/ingress.go diff --git a/livekit/ingress.go b/livekit/ingress.go new file mode 100644 index 000000000..1fd465992 --- /dev/null +++ b/livekit/ingress.go @@ -0,0 +1,16 @@ +package livekit + +func (p *ListIngressRequest) Filter(info *IngressInfo) bool { + if info == nil { + return true // for FilterSlice to work correctly with missing IDs + } + // Filter by room_name if specified + if p.RoomName != "" && info.RoomName != p.RoomName { + return false + } + // Filter by ingress_id if specified + if p.IngressId != "" && info.IngressId != p.IngressId { + return false + } + return true +} diff --git a/protobufs/livekit_ingress.proto b/protobufs/livekit_ingress.proto index 7344ae405..e18e389a8 100644 --- a/protobufs/livekit_ingress.proto +++ b/protobufs/livekit_ingress.proto @@ -204,9 +204,11 @@ message UpdateIngressRequest { } message ListIngressRequest { + Pagination page = 3; // when blank, lists all ingress endpoints string room_name = 1; // (optional, filter by room name) string ingress_id = 2; // (optional, filter by ingress ID) + // next field id: 4 } message ListIngressResponse { From cba8fc0deb09d84682895e4a10124c2161e30122 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 13:14:58 +0000 Subject: [PATCH 2/7] generated protobuf --- livekit/livekit_ingress.pb.go | 43 ++++--- livekit/livekit_ingress.twirp.go | 198 ++++++++++++++++--------------- 2 files changed, 127 insertions(+), 114 deletions(-) diff --git a/livekit/livekit_ingress.pb.go b/livekit/livekit_ingress.pb.go index 7fb2bdb90..67b154b01 100644 --- a/livekit/livekit_ingress.pb.go +++ b/livekit/livekit_ingress.pb.go @@ -1283,6 +1283,7 @@ func (x *UpdateIngressRequest) GetEnabled() bool { type ListIngressRequest struct { state protoimpl.MessageState `protogen:"open.v1"` + Page *Pagination `protobuf:"bytes,3,opt,name=page,proto3" json:"page,omitempty"` // when blank, lists all ingress endpoints RoomName string `protobuf:"bytes,1,opt,name=room_name,json=roomName,proto3" json:"room_name,omitempty"` // (optional, filter by room name) IngressId string `protobuf:"bytes,2,opt,name=ingress_id,json=ingressId,proto3" json:"ingress_id,omitempty"` // (optional, filter by ingress ID) @@ -1320,6 +1321,13 @@ func (*ListIngressRequest) Descriptor() ([]byte, []int) { return file_livekit_ingress_proto_rawDescGZIP(), []int{10} } +func (x *ListIngressRequest) GetPage() *Pagination { + if x != nil { + return x.Page + } + return nil +} + func (x *ListIngressRequest) GetRoomName() string { if x != nil { return x.RoomName @@ -1544,8 +1552,9 @@ const file_livekit_ingress_proto_rawDesc = "" + "\x13_bypass_transcodingB\x15\n" + "\x13_enable_transcodingB\n" + "\n" + - "\b_enabled\"P\n" + - "\x12ListIngressRequest\x12\x1b\n" + + "\b_enabled\"y\n" + + "\x12ListIngressRequest\x12'\n" + + "\x04page\x18\x03 \x01(\v2\x13.livekit.PaginationR\x04page\x12\x1b\n" + "\troom_name\x18\x01 \x01(\tR\broomName\x12\x1d\n" + "\n" + "ingress_id\x18\x02 \x01(\tR\tingressId\"A\n" + @@ -1617,6 +1626,7 @@ var file_livekit_ingress_proto_goTypes = []any{ (VideoCodec)(0), // 19: livekit.VideoCodec (*VideoLayer)(nil), // 20: livekit.VideoLayer (*TrackInfo)(nil), // 21: livekit.TrackInfo + (*Pagination)(nil), // 22: livekit.Pagination } var file_livekit_ingress_proto_depIdxs = []int32{ 0, // 0: livekit.CreateIngressRequest.input_type:type_name -> livekit.IngressInput @@ -1641,20 +1651,21 @@ var file_livekit_ingress_proto_depIdxs = []int32{ 21, // 19: livekit.IngressState.tracks:type_name -> livekit.TrackInfo 5, // 20: livekit.UpdateIngressRequest.audio:type_name -> livekit.IngressAudioOptions 6, // 21: livekit.UpdateIngressRequest.video:type_name -> livekit.IngressVideoOptions - 9, // 22: livekit.ListIngressResponse.items:type_name -> livekit.IngressInfo - 4, // 23: livekit.Ingress.CreateIngress:input_type -> livekit.CreateIngressRequest - 13, // 24: livekit.Ingress.UpdateIngress:input_type -> livekit.UpdateIngressRequest - 14, // 25: livekit.Ingress.ListIngress:input_type -> livekit.ListIngressRequest - 16, // 26: livekit.Ingress.DeleteIngress:input_type -> livekit.DeleteIngressRequest - 9, // 27: livekit.Ingress.CreateIngress:output_type -> livekit.IngressInfo - 9, // 28: livekit.Ingress.UpdateIngress:output_type -> livekit.IngressInfo - 15, // 29: livekit.Ingress.ListIngress:output_type -> livekit.ListIngressResponse - 9, // 30: livekit.Ingress.DeleteIngress:output_type -> livekit.IngressInfo - 27, // [27:31] is the sub-list for method output_type - 23, // [23:27] is the sub-list for method input_type - 23, // [23:23] is the sub-list for extension type_name - 23, // [23:23] is the sub-list for extension extendee - 0, // [0:23] is the sub-list for field type_name + 22, // 22: livekit.ListIngressRequest.page:type_name -> livekit.Pagination + 9, // 23: livekit.ListIngressResponse.items:type_name -> livekit.IngressInfo + 4, // 24: livekit.Ingress.CreateIngress:input_type -> livekit.CreateIngressRequest + 13, // 25: livekit.Ingress.UpdateIngress:input_type -> livekit.UpdateIngressRequest + 14, // 26: livekit.Ingress.ListIngress:input_type -> livekit.ListIngressRequest + 16, // 27: livekit.Ingress.DeleteIngress:input_type -> livekit.DeleteIngressRequest + 9, // 28: livekit.Ingress.CreateIngress:output_type -> livekit.IngressInfo + 9, // 29: livekit.Ingress.UpdateIngress:output_type -> livekit.IngressInfo + 15, // 30: livekit.Ingress.ListIngress:output_type -> livekit.ListIngressResponse + 9, // 31: livekit.Ingress.DeleteIngress:output_type -> livekit.IngressInfo + 28, // [28:32] is the sub-list for method output_type + 24, // [24:28] is the sub-list for method input_type + 24, // [24:24] is the sub-list for extension type_name + 24, // [24:24] is the sub-list for extension extendee + 0, // [0:24] is the sub-list for field type_name } func init() { file_livekit_ingress_proto_init() } diff --git a/livekit/livekit_ingress.twirp.go b/livekit/livekit_ingress.twirp.go index 9cf97489c..9d4e65fe4 100644 --- a/livekit/livekit_ingress.twirp.go +++ b/livekit/livekit_ingress.twirp.go @@ -1356,102 +1356,104 @@ func (s *ingressServer) PathPrefix() string { } var twirpFileDescriptor2 = []byte{ - // 1551 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6f, 0xdb, 0xc6, - 0x12, 0x37, 0xf5, 0xad, 0x51, 0x24, 0x2b, 0x6b, 0x39, 0x51, 0xfc, 0xf1, 0x9e, 0xa0, 0xe4, 0xbd, - 0x38, 0x4e, 0x20, 0xdb, 0x8a, 0xe3, 0xf7, 0x1a, 0x34, 0x45, 0x2d, 0x5b, 0x8e, 0x08, 0xdb, 0x92, - 0xb0, 0x92, 0x53, 0xa4, 0x17, 0x82, 0x16, 0x37, 0x36, 0x11, 0x49, 0x54, 0xc9, 0x95, 0x1b, 0x35, - 0xc8, 0xad, 0x87, 0x9c, 0x8b, 0xde, 0x7b, 0x28, 0x7a, 0xc9, 0x9f, 0xd3, 0x7b, 0xd1, 0x7b, 0x91, - 0x73, 0xcf, 0xc5, 0x7e, 0x88, 0x26, 0x25, 0x3a, 0x70, 0x92, 0xa2, 0xc8, 0x8d, 0x3b, 0xbf, 0x99, - 0xe1, 0x2c, 0xf7, 0x37, 0xbf, 0x59, 0x09, 0xe6, 0xbb, 0xe6, 0x19, 0x79, 0x6e, 0x52, 0xcd, 0xec, - 0x9f, 0xd8, 0xc4, 0x71, 0x4a, 0x03, 0xdb, 0xa2, 0x16, 0x8a, 0x4b, 0xf3, 0x42, 0x6e, 0x8c, 0xf7, - 0x2c, 0x83, 0x74, 0x25, 0xbc, 0x90, 0xeb, 0x5a, 0x27, 0x27, 0xc4, 0x5e, 0xb3, 0x06, 0xd4, 0xb4, - 0xfa, 0xd2, 0x5a, 0xfc, 0x3d, 0x02, 0xb9, 0x1d, 0x9b, 0xe8, 0x94, 0xa8, 0x22, 0x19, 0x26, 0xdf, - 0x0c, 0x89, 0x43, 0xd1, 0x26, 0x80, 0xd9, 0x1f, 0x0c, 0xa9, 0x46, 0x47, 0x03, 0x92, 0x57, 0x0a, - 0xca, 0x4a, 0xa6, 0x3c, 0x5f, 0x92, 0x99, 0x4b, 0xd2, 0x59, 0x65, 0x1e, 0x38, 0xc9, 0x1d, 0xdb, - 0xa3, 0x01, 0x41, 0x59, 0x08, 0x0f, 0xed, 0x6e, 0x3e, 0x59, 0x50, 0x56, 0x92, 0x98, 0x3d, 0x22, - 0x04, 0x91, 0xbe, 0xde, 0x23, 0xf9, 0x10, 0x37, 0xf1, 0x67, 0xb4, 0x08, 0x49, 0xdb, 0xb2, 0x7a, - 0x1a, 0x07, 0xc2, 0x1c, 0x48, 0x30, 0x43, 0x9d, 0x81, 0x1b, 0x90, 0x1b, 0xe8, 0x36, 0x35, 0x3b, - 0xe6, 0x40, 0xef, 0x53, 0xcd, 0x34, 0x48, 0x9f, 0x9a, 0x74, 0x94, 0x8f, 0x70, 0xbf, 0x39, 0x0f, - 0xa6, 0x4a, 0x08, 0xad, 0x41, 0xd6, 0x1b, 0xc2, 0xd3, 0x46, 0x99, 0x7b, 0x25, 0xf2, 0xfa, 0xed, - 0x3d, 0x05, 0xcf, 0x7a, 0x50, 0xfe, 0x8e, 0xa7, 0xfe, 0x77, 0xf4, 0x08, 0xd5, 0x0d, 0x9d, 0xea, - 0x79, 0xe0, 0x41, 0xff, 0x65, 0x41, 0x3f, 0xbc, 0xbd, 0xf7, 0xaf, 0xcf, 0x6d, 0x62, 0xe8, 0x1d, - 0x4a, 0x8c, 0xc2, 0xca, 0xcb, 0x97, 0x85, 0x52, 0xcb, 0xfc, 0x8e, 0x14, 0x5e, 0xbd, 0x2a, 0x1c, - 0x8f, 0x28, 0x71, 0xee, 0x7c, 0xe1, 0xab, 0xe5, 0x50, 0xa6, 0x40, 0x1b, 0x80, 0x8e, 0x47, 0x03, - 0xdd, 0x71, 0x34, 0x6a, 0xeb, 0x7d, 0xa7, 0x63, 0x19, 0x66, 0xff, 0x24, 0x9f, 0x28, 0x28, 0x2b, - 0x89, 0x4a, 0x28, 0xaf, 0xe0, 0xab, 0x02, 0x6d, 0x9f, 0x83, 0xa8, 0x0c, 0x88, 0xf4, 0xf5, 0xe3, - 0x2e, 0xf1, 0x85, 0xa4, 0x58, 0x48, 0x6d, 0x06, 0x5f, 0x15, 0x98, 0x27, 0xe0, 0xb5, 0xa2, 0xa0, - 0x32, 0x44, 0xf5, 0xa1, 0x61, 0x5a, 0xf9, 0x58, 0x41, 0x59, 0x49, 0x95, 0x97, 0x26, 0x4f, 0x66, - 0x9b, 0x81, 0x0d, 0x71, 0xd4, 0x58, 0xb8, 0xb2, 0x98, 0x33, 0xd3, 0x20, 0x56, 0x3e, 0x1e, 0x1c, - 0xf3, 0x84, 0x81, 0x6e, 0x0c, 0x77, 0x45, 0xcb, 0x10, 0x17, 0xef, 0x37, 0xf2, 0x57, 0x78, 0x41, - 0x0a, 0x1e, 0x1b, 0x5e, 0x2b, 0x4a, 0x65, 0x1e, 0xe6, 0xb4, 0xe9, 0xda, 0x2b, 0x00, 0x09, 0x69, - 0x36, 0x8a, 0x6f, 0x15, 0x98, 0x0b, 0x28, 0xca, 0x25, 0x86, 0xe2, 0x21, 0xc6, 0x3d, 0x88, 0x39, - 0xd6, 0xd0, 0xee, 0x08, 0xba, 0x64, 0xca, 0x39, 0xb7, 0xc4, 0xb6, 0xad, 0x77, 0x9e, 0xb7, 0x38, - 0x86, 0xa5, 0x0f, 0x7a, 0x04, 0xb1, 0x81, 0x4d, 0x1c, 0x42, 0x39, 0x87, 0x32, 0xe5, 0x9b, 0x81, - 0x1f, 0xa1, 0xda, 0x17, 0x45, 0x35, 0xb9, 0x6b, 0x6d, 0x06, 0xcb, 0x20, 0xf4, 0x25, 0xc4, 0x65, - 0x2f, 0x70, 0x6e, 0xa5, 0xca, 0xb7, 0xde, 0x19, 0x2f, 0xeb, 0xae, 0xcd, 0xe0, 0x71, 0x58, 0x05, - 0x41, 0x96, 0x48, 0x54, 0x93, 0x36, 0xef, 0x76, 0xbd, 0xdf, 0xf3, 0x9f, 0xd8, 0x2e, 0x7f, 0xdf, - 0x47, 0x6c, 0xd7, 0x17, 0x7f, 0xc9, 0xed, 0xbe, 0x51, 0x60, 0xf1, 0x1d, 0x5f, 0x0b, 0x6d, 0x42, - 0x8a, 0x93, 0x4f, 0xeb, 0x58, 0x06, 0xe9, 0x48, 0x1d, 0x99, 0x73, 0xdf, 0xcc, 0x63, 0x76, 0x18, - 0x84, 0x41, 0x77, 0x9f, 0x51, 0x1e, 0xe2, 0xc7, 0x26, 0xb5, 0x75, 0x2a, 0xbe, 0x4c, 0x1a, 0x8f, - 0x97, 0xe8, 0xdf, 0x90, 0x32, 0x4c, 0x87, 0x13, 0xce, 0xa0, 0x2f, 0xf8, 0x97, 0x48, 0x60, 0x90, - 0xa6, 0x5d, 0xfa, 0x02, 0x2d, 0x40, 0xa2, 0x73, 0xaa, 0xf7, 0xfb, 0xa4, 0x2b, 0xf6, 0x99, 0xc6, - 0xee, 0xba, 0xf8, 0xd3, 0x79, 0xb1, 0x41, 0x7b, 0x65, 0xc5, 0x72, 0xd6, 0x5f, 0x50, 0x2c, 0x8f, - 0x91, 0xc5, 0x9e, 0xb9, 0xcf, 0x68, 0x19, 0xe0, 0x99, 0xad, 0xf7, 0x88, 0xe6, 0xd6, 0xab, 0xe0, - 0x24, 0xb7, 0x60, 0x56, 0xf1, 0x5d, 0x88, 0x75, 0xf5, 0x11, 0xb1, 0x9d, 0x7c, 0xb8, 0x10, 0x5e, - 0x49, 0x4d, 0xe6, 0x3b, 0x60, 0x18, 0x96, 0x2e, 0xc5, 0xdf, 0xa2, 0x90, 0x72, 0xb5, 0xf5, 0x19, - 0x6b, 0x3f, 0x90, 0x22, 0xaf, 0x99, 0x86, 0xe4, 0x4e, 0x52, 0x5a, 0x54, 0x23, 0x50, 0x5c, 0x97, - 0x01, 0x1c, 0x6a, 0x13, 0xbd, 0xa7, 0x3d, 0x27, 0x23, 0xa9, 0xae, 0x49, 0x61, 0xd9, 0x27, 0xa3, - 0xb1, 0x42, 0x47, 0xce, 0x15, 0xda, 0xaf, 0xf4, 0xd1, 0x4b, 0x2a, 0x7d, 0xb0, 0xce, 0xa5, 0xdf, - 0x5f, 0xe7, 0x66, 0x3f, 0x09, 0x9d, 0xf3, 0x8d, 0xa4, 0xc4, 0x25, 0x47, 0x52, 0xf2, 0xfd, 0x46, - 0x12, 0x7c, 0xc8, 0x48, 0xca, 0x7c, 0xfc, 0x48, 0x5a, 0x80, 0x84, 0x4d, 0x86, 0xbc, 0x43, 0xc4, - 0x54, 0xc1, 0xee, 0x1a, 0xdd, 0x85, 0xa8, 0x43, 0x19, 0x6f, 0xaf, 0xf0, 0x6f, 0x35, 0x75, 0xee, - 0x2d, 0x06, 0x62, 0xe1, 0xe3, 0x1d, 0x06, 0xd9, 0x0f, 0x1b, 0x06, 0x7f, 0x86, 0xe1, 0x8a, 0x37, - 0x33, 0xda, 0x84, 0x18, 0xcb, 0x3d, 0x74, 0x64, 0xb7, 0x2d, 0x05, 0x16, 0x50, 0x6a, 0x71, 0x1f, - 0x2c, 0x7d, 0x51, 0x0e, 0xa2, 0xc4, 0xb6, 0x2d, 0x5b, 0x12, 0x5f, 0x2c, 0x50, 0x69, 0x7c, 0xee, - 0x61, 0xbe, 0x97, 0xbc, 0x27, 0xd5, 0x60, 0x48, 0xf9, 0xa9, 0xcb, 0xed, 0x88, 0x33, 0x2f, 0x8d, - 0xb9, 0x15, 0x09, 0xf2, 0xe7, 0xcc, 0x92, 0xfe, 0x82, 0x57, 0xd7, 0x21, 0xce, 0x39, 0x62, 0x1a, - 0xe2, 0x76, 0x81, 0x63, 0x6c, 0xa9, 0x1a, 0xa2, 0xe5, 0x74, 0x9b, 0x12, 0x43, 0xd3, 0x29, 0x67, - 0x5d, 0x98, 0xb5, 0x1c, 0xb7, 0x6c, 0x53, 0x74, 0x03, 0x12, 0xa4, 0x6f, 0x08, 0x30, 0xc1, 0xc1, - 0x38, 0x5f, 0x6f, 0x53, 0x16, 0x39, 0x1c, 0x18, 0xba, 0x8c, 0x04, 0x11, 0x29, 0x2d, 0xdb, 0x94, - 0xa9, 0x9d, 0x4d, 0x84, 0xfc, 0xb3, 0xb7, 0x0a, 0xbe, 0xc1, 0xd8, 0xa4, 0x1a, 0x68, 0x15, 0x62, - 0x94, 0x8d, 0x0a, 0x27, 0x1f, 0xe3, 0xe2, 0x82, 0xfc, 0x13, 0x84, 0x69, 0x08, 0x96, 0x1e, 0xc5, - 0x97, 0x10, 0x13, 0x9f, 0x11, 0xcd, 0xc3, 0xd5, 0x6a, 0x7d, 0xb7, 0xd9, 0x50, 0xeb, 0x6d, 0x4d, - 0xad, 0x6f, 0xef, 0xb4, 0xd5, 0x27, 0xd5, 0xec, 0x0c, 0xba, 0x06, 0xc8, 0x35, 0x57, 0x8e, 0xf6, - 0xf6, 0xaa, 0x58, 0xad, 0x3f, 0xce, 0x2a, 0xe8, 0x3a, 0xcc, 0xb9, 0xf6, 0xe6, 0x51, 0xe5, 0x40, - 0x6d, 0xd5, 0x18, 0x10, 0x42, 0x08, 0x32, 0x2e, 0x50, 0xc5, 0xb8, 0x81, 0xb3, 0x61, 0x5f, 0xee, - 0x9d, 0xc6, 0x61, 0xf3, 0xa0, 0xda, 0xae, 0x66, 0x23, 0xc5, 0x9f, 0x15, 0x98, 0x9d, 0x38, 0x06, - 0xd6, 0x73, 0x3d, 0xb3, 0x47, 0xce, 0x6f, 0x98, 0x49, 0x9c, 0x60, 0x06, 0xae, 0x2f, 0xb7, 0x61, - 0x56, 0x3f, 0x23, 0xb6, 0x7e, 0x42, 0x34, 0xff, 0x28, 0xc8, 0x48, 0x73, 0x45, 0x4e, 0x84, 0x1c, - 0x44, 0xbf, 0x35, 0x0d, 0x7a, 0xca, 0x4f, 0x3d, 0x8d, 0xc5, 0x02, 0x5d, 0x83, 0xd8, 0x29, 0x31, - 0x4f, 0x4e, 0xa9, 0x1c, 0x02, 0x72, 0x85, 0x96, 0x40, 0x48, 0x33, 0x4f, 0x18, 0xf5, 0x68, 0x35, - 0x33, 0x14, 0x7f, 0x1c, 0x57, 0x79, 0x7e, 0xf8, 0x7f, 0x53, 0x95, 0xde, 0xb1, 0x14, 0xf6, 0x8f, - 0x25, 0x76, 0xca, 0x8e, 0xde, 0x1b, 0x74, 0xe5, 0x04, 0x11, 0x05, 0x83, 0x30, 0xb1, 0x11, 0x52, - 0xfc, 0x35, 0x02, 0xb9, 0x23, 0x4e, 0x8a, 0x89, 0x4b, 0xfa, 0x07, 0x8c, 0x87, 0x4f, 0xf6, 0xee, - 0x9d, 0xfc, 0x78, 0xa1, 0xdb, 0x7a, 0xf7, 0xdd, 0x9b, 0x0d, 0x99, 0xa9, 0xa9, 0x24, 0x86, 0x4c, - 0xd0, 0x60, 0x02, 0x29, 0x71, 0x9f, 0xcc, 0x05, 0x5c, 0xfc, 0x22, 0x08, 0x4d, 0x69, 0xee, 0xf4, - 0x9e, 0x2f, 0x23, 0xc5, 0x4d, 0x40, 0x07, 0xa6, 0x43, 0x27, 0x18, 0xe5, 0xa3, 0x87, 0x32, 0x41, - 0x0f, 0x3f, 0xdd, 0x42, 0x13, 0x74, 0x2b, 0x6e, 0xc3, 0x9c, 0x2f, 0xa3, 0x33, 0xb0, 0xfa, 0x0e, - 0x41, 0xab, 0x10, 0x35, 0x29, 0xe9, 0x31, 0x85, 0x67, 0x12, 0x95, 0x9b, 0xbe, 0x5a, 0x3c, 0xb3, - 0xb0, 0x70, 0x29, 0x3e, 0x80, 0xdc, 0x2e, 0xe9, 0x92, 0xf7, 0x24, 0xfa, 0xea, 0x23, 0x77, 0xaa, - 0xf0, 0xee, 0x45, 0x19, 0x00, 0xdc, 0x3e, 0x6c, 0x6a, 0x6a, 0xbd, 0x79, 0xd4, 0xce, 0xce, 0xb0, - 0xf5, 0x57, 0x35, 0x75, 0xbc, 0x56, 0x50, 0x1a, 0x92, 0x47, 0xf8, 0x40, 0x2e, 0x43, 0xab, 0x2a, - 0x2c, 0x5c, 0xfc, 0x8b, 0x81, 0xc9, 0x62, 0xa3, 0x79, 0xd4, 0xd2, 0x5a, 0xed, 0x2a, 0xae, 0x36, - 0xb4, 0xcf, 0xb6, 0xf6, 0x2b, 0xcd, 0x56, 0x76, 0x06, 0xcd, 0xc1, 0x2c, 0xb7, 0x1f, 0x36, 0xea, - 0x0d, 0x6d, 0x6b, 0x73, 0xbf, 0xd2, 0xca, 0x2a, 0xab, 0xdf, 0x87, 0xdd, 0x5c, 0x01, 0xd7, 0x71, - 0xb4, 0x04, 0xf9, 0x5a, 0x79, 0x6b, 0x53, 0xfb, 0x5f, 0x79, 0xbd, 0xa9, 0xdd, 0x5f, 0xdf, 0x6b, - 0xb6, 0xb4, 0xfb, 0xda, 0xc1, 0xf6, 0xd3, 0x2a, 0x66, 0x19, 0x97, 0xe1, 0x06, 0x47, 0x37, 0xd6, - 0xff, 0x3f, 0x0d, 0x2b, 0x6e, 0xf0, 0x83, 0xcd, 0xf5, 0xa6, 0x56, 0x7e, 0xc0, 0xd0, 0xf2, 0x18, - 0x0d, 0xa1, 0x45, 0xb8, 0x3e, 0x99, 0x7a, 0x43, 0xa0, 0xd9, 0xb0, 0x1b, 0xea, 0xcd, 0x3c, 0x46, - 0x23, 0x68, 0x05, 0x6e, 0x5d, 0x54, 0x95, 0x56, 0x53, 0x1f, 0xd7, 0xb4, 0xc3, 0x46, 0x5b, 0x6d, - 0xd4, 0xb3, 0x51, 0x74, 0x07, 0xfe, 0x73, 0x61, 0x85, 0x3e, 0xd7, 0x98, 0x9b, 0x34, 0xa0, 0x5a, - 0x9f, 0x67, 0x1c, 0xdd, 0x86, 0x9b, 0x17, 0x54, 0xee, 0x73, 0x4c, 0xb8, 0x29, 0x03, 0x76, 0xe1, - 0xf3, 0x4c, 0x96, 0x7f, 0x09, 0x41, 0x5c, 0x1e, 0x03, 0xda, 0x85, 0xb4, 0xef, 0x1f, 0x0e, 0xb4, - 0xec, 0x32, 0x30, 0xe8, 0x9f, 0x8f, 0x85, 0x40, 0x82, 0xb2, 0x2c, 0x3e, 0x09, 0xf6, 0x64, 0x09, - 0x92, 0xe6, 0x0b, 0xb2, 0xd4, 0x20, 0xe5, 0x69, 0x11, 0xb4, 0xe8, 0x3a, 0x4d, 0xb7, 0xe2, 0xc2, - 0x52, 0x30, 0x28, 0xbb, 0x6a, 0x17, 0xd2, 0xbe, 0x4e, 0xf1, 0xd4, 0x13, 0xd4, 0x41, 0xc1, 0xf5, - 0x54, 0xf6, 0xbe, 0xbe, 0x79, 0x62, 0xd2, 0xd3, 0xe1, 0x71, 0xa9, 0x63, 0xf5, 0xd6, 0xa4, 0xc7, - 0x1a, 0xff, 0x6b, 0xa8, 0x63, 0x75, 0xc7, 0x86, 0x37, 0xa1, 0xf4, 0x81, 0x79, 0x46, 0xf6, 0x4d, - 0x5a, 0x6a, 0x32, 0xe8, 0x8f, 0x50, 0x46, 0xae, 0x1f, 0x3e, 0xe4, 0x86, 0xe3, 0x18, 0x0f, 0xb9, - 0xff, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x58, 0x04, 0x69, 0x50, 0x9b, 0x12, 0x00, 0x00, + // 1571 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6f, 0x1a, 0x49, + 0x16, 0x77, 0xf3, 0xcd, 0x23, 0x60, 0x52, 0xc6, 0x09, 0xf1, 0xc7, 0x2e, 0x22, 0xd9, 0x8d, 0xe3, + 0x44, 0xd8, 0x26, 0x8e, 0x77, 0x37, 0xda, 0xac, 0xd6, 0xd8, 0x38, 0xb4, 0x6c, 0x03, 0x2a, 0x70, + 0x56, 0xd9, 0x4b, 0xab, 0x4d, 0x57, 0x70, 0x2b, 0x40, 0xb3, 0xdd, 0x85, 0x37, 0x4c, 0x94, 0xdb, + 0x1c, 0x72, 0x1e, 0xcd, 0x7d, 0x0e, 0xa3, 0xb9, 0xe4, 0xcf, 0x99, 0xfb, 0x68, 0xee, 0xa3, 0x9c, + 0xe7, 0x3c, 0xaa, 0x0f, 0xda, 0xdd, 0xd0, 0x8e, 0x9c, 0x64, 0x34, 0xca, 0xad, 0xdf, 0xfb, 0xbd, + 0xf7, 0xea, 0x55, 0xd5, 0x7b, 0xbf, 0x57, 0x00, 0x8b, 0x3d, 0xf3, 0x9c, 0xbc, 0x34, 0xa9, 0x66, + 0x0e, 0xba, 0x36, 0x71, 0x9c, 0xd2, 0xd0, 0xb6, 0xa8, 0x85, 0xe2, 0x52, 0xbd, 0x94, 0x9b, 0xe0, + 0x7d, 0xcb, 0x20, 0x3d, 0x09, 0x2f, 0xe5, 0x7a, 0x56, 0xb7, 0x4b, 0xec, 0x0d, 0x6b, 0x48, 0x4d, + 0x6b, 0x20, 0xb5, 0xc5, 0x9f, 0x23, 0x90, 0xdb, 0xb3, 0x89, 0x4e, 0x89, 0x2a, 0x82, 0x61, 0xf2, + 0xbf, 0x11, 0x71, 0x28, 0xda, 0x06, 0x30, 0x07, 0xc3, 0x11, 0xd5, 0xe8, 0x78, 0x48, 0xf2, 0x4a, + 0x41, 0x59, 0xcb, 0x94, 0x17, 0x4b, 0x32, 0x72, 0x49, 0x1a, 0xab, 0xcc, 0x02, 0x27, 0xb9, 0x61, + 0x7b, 0x3c, 0x24, 0x28, 0x0b, 0xe1, 0x91, 0xdd, 0xcb, 0x27, 0x0b, 0xca, 0x5a, 0x12, 0xb3, 0x4f, + 0x84, 0x20, 0x32, 0xd0, 0xfb, 0x24, 0x1f, 0xe2, 0x2a, 0xfe, 0x8d, 0x96, 0x21, 0x69, 0x5b, 0x56, + 0x5f, 0xe3, 0x40, 0x98, 0x03, 0x09, 0xa6, 0xa8, 0x33, 0x70, 0x0b, 0x72, 0x43, 0xdd, 0xa6, 0x66, + 0xc7, 0x1c, 0xea, 0x03, 0xaa, 0x99, 0x06, 0x19, 0x50, 0x93, 0x8e, 0xf3, 0x11, 0x6e, 0xb7, 0xe0, + 0xc1, 0x54, 0x09, 0xa1, 0x0d, 0xc8, 0x7a, 0x5d, 0x78, 0xd8, 0x28, 0x33, 0xaf, 0x44, 0xde, 0xbe, + 0x7f, 0xa0, 0xe0, 0x79, 0x0f, 0xca, 0xd7, 0x78, 0xee, 0x5f, 0xa3, 0x4f, 0xa8, 0x6e, 0xe8, 0x54, + 0xcf, 0x03, 0x77, 0xfa, 0x2b, 0x73, 0xfa, 0xe6, 0xfd, 0x83, 0x3f, 0xfd, 0xd3, 0x26, 0x86, 0xde, + 0xa1, 0xc4, 0x28, 0xac, 0xbd, 0x7e, 0x5d, 0x28, 0xb5, 0xcc, 0xaf, 0x48, 0xe1, 0xcd, 0x9b, 0xc2, + 0xe9, 0x98, 0x12, 0xe7, 0xde, 0xbf, 0x7c, 0xb9, 0x1c, 0xcb, 0x10, 0x68, 0x0b, 0xd0, 0xe9, 0x78, + 0xa8, 0x3b, 0x8e, 0x46, 0x6d, 0x7d, 0xe0, 0x74, 0x2c, 0xc3, 0x1c, 0x74, 0xf3, 0x89, 0x82, 0xb2, + 0x96, 0xa8, 0x84, 0xf2, 0x0a, 0xbe, 0x2e, 0xd0, 0xf6, 0x05, 0x88, 0xca, 0x80, 0xc8, 0x40, 0x3f, + 0xed, 0x11, 0x9f, 0x4b, 0x8a, 0xb9, 0xd4, 0xe6, 0xf0, 0x75, 0x81, 0x79, 0x1c, 0xde, 0x2a, 0x0a, + 0x2a, 0x43, 0x54, 0x1f, 0x19, 0xa6, 0x95, 0x8f, 0x15, 0x94, 0xb5, 0x54, 0x79, 0x65, 0xfa, 0x66, + 0x76, 0x19, 0xd8, 0x10, 0x57, 0x8d, 0x85, 0x29, 0xf3, 0x39, 0x37, 0x0d, 0x62, 0xe5, 0xe3, 0xc1, + 0x3e, 0xcf, 0x18, 0xe8, 0xfa, 0x70, 0x53, 0xb4, 0x0a, 0x71, 0xb1, 0xbe, 0x91, 0xbf, 0xc6, 0x13, + 0x52, 0xf0, 0x44, 0xf1, 0x56, 0x51, 0x2a, 0x8b, 0xb0, 0xa0, 0xcd, 0xe6, 0x5e, 0x01, 0x48, 0x48, + 0xb5, 0x51, 0x7c, 0xaf, 0xc0, 0x42, 0x40, 0x52, 0x6e, 0x61, 0x28, 0x9e, 0xc2, 0x78, 0x00, 0x31, + 0xc7, 0x1a, 0xd9, 0x1d, 0x51, 0x2e, 0x99, 0x72, 0xce, 0x4d, 0xb1, 0x6d, 0xeb, 0x9d, 0x97, 0x2d, + 0x8e, 0x61, 0x69, 0x83, 0x9e, 0x40, 0x6c, 0x68, 0x13, 0x87, 0x50, 0x5e, 0x43, 0x99, 0xf2, 0xed, + 0xc0, 0x43, 0xa8, 0x0e, 0x44, 0x52, 0x4d, 0x6e, 0x5a, 0x9b, 0xc3, 0xd2, 0x09, 0xfd, 0x1b, 0xe2, + 0xb2, 0x17, 0x78, 0x6d, 0xa5, 0xca, 0x77, 0x3e, 0xe8, 0x2f, 0xf3, 0xae, 0xcd, 0xe1, 0x89, 0x5b, + 0x05, 0x41, 0x96, 0x48, 0x54, 0x93, 0x3a, 0xef, 0x76, 0xbd, 0xe7, 0xf9, 0x47, 0x6c, 0x97, 0xaf, + 0xf7, 0x19, 0xdb, 0xf5, 0xf9, 0x5f, 0x71, 0xbb, 0xef, 0x14, 0x58, 0xfe, 0xc0, 0x69, 0xa1, 0x6d, + 0x48, 0xf1, 0xe2, 0xd3, 0x3a, 0x96, 0x41, 0x3a, 0x92, 0x47, 0x16, 0xdc, 0x95, 0xb9, 0xcf, 0x1e, + 0x83, 0x30, 0xe8, 0xee, 0x37, 0xca, 0x43, 0xfc, 0xd4, 0xa4, 0xb6, 0x4e, 0xc5, 0xc9, 0xa4, 0xf1, + 0x44, 0x44, 0x7f, 0x86, 0x94, 0x61, 0x3a, 0xbc, 0xe0, 0x0c, 0xfa, 0x8a, 0x9f, 0x44, 0x02, 0x83, + 0x54, 0xed, 0xd3, 0x57, 0x68, 0x09, 0x12, 0x9d, 0x33, 0x7d, 0x30, 0x20, 0x3d, 0xb1, 0xcf, 0x34, + 0x76, 0xe5, 0xe2, 0x77, 0x17, 0xc9, 0x06, 0xed, 0x95, 0x25, 0xcb, 0xab, 0xfe, 0x92, 0x64, 0xb9, + 0x8f, 0x4c, 0xf6, 0xdc, 0xfd, 0x46, 0xab, 0x00, 0x2f, 0x6c, 0xbd, 0x4f, 0x34, 0x37, 0x5f, 0x05, + 0x27, 0xb9, 0x06, 0xb3, 0x8c, 0xef, 0x43, 0xac, 0xa7, 0x8f, 0x89, 0xed, 0xe4, 0xc3, 0x85, 0xf0, + 0x5a, 0x6a, 0x3a, 0xde, 0x11, 0xc3, 0xb0, 0x34, 0x29, 0xfe, 0x14, 0x85, 0x94, 0xcb, 0xad, 0x2f, + 0x58, 0xfb, 0x81, 0x24, 0x79, 0xcd, 0x34, 0x64, 0xed, 0x24, 0xa5, 0x46, 0x35, 0x02, 0xc9, 0x75, + 0x15, 0xc0, 0xa1, 0x36, 0xd1, 0xfb, 0xda, 0x4b, 0x32, 0x96, 0xec, 0x9a, 0x14, 0x9a, 0x43, 0x32, + 0x9e, 0x30, 0x74, 0xe4, 0x82, 0xa1, 0xfd, 0x4c, 0x1f, 0xbd, 0x22, 0xd3, 0x07, 0xf3, 0x5c, 0xfa, + 0xe3, 0x79, 0x6e, 0xfe, 0x8b, 0xe0, 0x39, 0xdf, 0x48, 0x4a, 0x5c, 0x71, 0x24, 0x25, 0x3f, 0x6e, + 0x24, 0xc1, 0xa7, 0x8c, 0xa4, 0xcc, 0xe7, 0x8f, 0xa4, 0x25, 0x48, 0xd8, 0x64, 0xc4, 0x3b, 0x44, + 0x4c, 0x15, 0xec, 0xca, 0xe8, 0x3e, 0x44, 0x1d, 0xca, 0xea, 0xf6, 0x1a, 0x3f, 0xab, 0x99, 0x7b, + 0x6f, 0x31, 0x10, 0x0b, 0x1b, 0xef, 0x30, 0xc8, 0x7e, 0xda, 0x30, 0xf8, 0x35, 0x0c, 0xd7, 0xbc, + 0x91, 0xd1, 0x36, 0xc4, 0x58, 0xec, 0x91, 0x23, 0xbb, 0x6d, 0x25, 0x30, 0x81, 0x52, 0x8b, 0xdb, + 0x60, 0x69, 0x8b, 0x72, 0x10, 0x25, 0xb6, 0x6d, 0xd9, 0xb2, 0xf0, 0x85, 0x80, 0x4a, 0x93, 0x7b, + 0x0f, 0xf3, 0xbd, 0xe4, 0x3d, 0xa1, 0x86, 0x23, 0xca, 0x6f, 0x5d, 0x6e, 0x47, 0xdc, 0x79, 0x69, + 0x52, 0x5b, 0x91, 0x20, 0x7b, 0x5e, 0x59, 0xd2, 0x5e, 0xd4, 0xd5, 0x4d, 0x88, 0xf3, 0x1a, 0x31, + 0x0d, 0xf1, 0xba, 0xc0, 0x31, 0x26, 0xaa, 0x86, 0x68, 0x39, 0xdd, 0xa6, 0xc4, 0xd0, 0x74, 0xca, + 0xab, 0x2e, 0xcc, 0x5a, 0x8e, 0x6b, 0x76, 0x29, 0xba, 0x05, 0x09, 0x32, 0x30, 0x04, 0x98, 0xe0, + 0x60, 0x9c, 0xcb, 0xbb, 0x94, 0x79, 0x8e, 0x86, 0x86, 0x2e, 0x3d, 0x41, 0x78, 0x4a, 0xcd, 0x2e, + 0x65, 0x6c, 0x67, 0x13, 0x41, 0xff, 0x6c, 0x55, 0x51, 0x6f, 0x30, 0x51, 0xa9, 0x06, 0x5a, 0x87, + 0x18, 0x65, 0xa3, 0xc2, 0xc9, 0xc7, 0x38, 0xb9, 0x20, 0xff, 0x04, 0x61, 0x1c, 0x82, 0xa5, 0x45, + 0xf1, 0x35, 0xc4, 0xc4, 0x31, 0xa2, 0x45, 0xb8, 0x5e, 0xad, 0xef, 0x37, 0x1b, 0x6a, 0xbd, 0xad, + 0xa9, 0xf5, 0xdd, 0xbd, 0xb6, 0xfa, 0xac, 0x9a, 0x9d, 0x43, 0x37, 0x00, 0xb9, 0xea, 0xca, 0xc9, + 0xc1, 0x41, 0x15, 0xab, 0xf5, 0xa7, 0x59, 0x05, 0xdd, 0x84, 0x05, 0x57, 0xdf, 0x3c, 0xa9, 0x1c, + 0xa9, 0xad, 0x1a, 0x03, 0x42, 0x08, 0x41, 0xc6, 0x05, 0xaa, 0x18, 0x37, 0x70, 0x36, 0xec, 0x8b, + 0xbd, 0xd7, 0x38, 0x6e, 0x1e, 0x55, 0xdb, 0xd5, 0x6c, 0xa4, 0xf8, 0xbd, 0x02, 0xf3, 0x53, 0xd7, + 0xc0, 0x7a, 0xae, 0x6f, 0xf6, 0xc9, 0xc5, 0x0b, 0x33, 0x89, 0x13, 0x4c, 0xc1, 0xf9, 0xe5, 0x2e, + 0xcc, 0xeb, 0xe7, 0xc4, 0xd6, 0xbb, 0x44, 0xf3, 0x8f, 0x82, 0x8c, 0x54, 0x57, 0xe4, 0x44, 0xc8, + 0x41, 0xf4, 0xff, 0xa6, 0x41, 0xcf, 0xf8, 0xad, 0xa7, 0xb1, 0x10, 0xd0, 0x0d, 0x88, 0x9d, 0x11, + 0xb3, 0x7b, 0x46, 0xe5, 0x10, 0x90, 0x12, 0x5a, 0x01, 0x41, 0xcd, 0x3c, 0x60, 0xd4, 0xc3, 0xd5, + 0x4c, 0x51, 0xfc, 0x76, 0x92, 0xe5, 0xc5, 0xe5, 0xff, 0x4e, 0x59, 0x7a, 0xc7, 0x52, 0xd8, 0x3f, + 0x96, 0xd8, 0x2d, 0x3b, 0x7a, 0x7f, 0xd8, 0x93, 0x13, 0x44, 0x24, 0x0c, 0x42, 0xc5, 0x46, 0x48, + 0xf1, 0xc7, 0x08, 0xe4, 0x4e, 0x78, 0x51, 0x4c, 0x3d, 0xd2, 0x3f, 0x61, 0x3c, 0x7c, 0xb1, 0x6f, + 0xef, 0xe4, 0xe7, 0x13, 0xdd, 0xce, 0x87, 0xdf, 0xde, 0x6c, 0xc8, 0xcc, 0x4c, 0x25, 0x31, 0x64, + 0x82, 0x06, 0x13, 0x48, 0x8a, 0xfb, 0x62, 0x1e, 0xe0, 0xe2, 0x17, 0x41, 0x68, 0x86, 0x73, 0x67, + 0xf7, 0x7c, 0x15, 0x2a, 0x1e, 0x03, 0x3a, 0x32, 0x1d, 0x3a, 0x55, 0x51, 0x77, 0x21, 0x32, 0xd4, + 0xbb, 0x44, 0x52, 0xe8, 0xc5, 0x5b, 0xa5, 0xa9, 0x77, 0xcd, 0x81, 0xce, 0x32, 0xc3, 0xdc, 0xc0, + 0x5f, 0x47, 0xca, 0x54, 0x1d, 0xf9, 0xeb, 0x32, 0x34, 0x55, 0x97, 0xc5, 0x5d, 0x58, 0xf0, 0x2d, + 0xed, 0x0c, 0xad, 0x81, 0x43, 0xd0, 0x3a, 0x44, 0x4d, 0x4a, 0xfa, 0x6c, 0x14, 0x30, 0x2e, 0xcb, + 0xcd, 0xbe, 0x41, 0x5e, 0x58, 0x58, 0x98, 0x14, 0x1f, 0x41, 0x6e, 0x9f, 0xf4, 0xc8, 0x47, 0x76, + 0xc4, 0xfa, 0x13, 0x77, 0xfc, 0xf0, 0x36, 0x47, 0x19, 0x00, 0xdc, 0x3e, 0x6e, 0x6a, 0x6a, 0xbd, + 0x79, 0xd2, 0xce, 0xce, 0x31, 0xf9, 0x3f, 0x35, 0x75, 0x22, 0x2b, 0x28, 0x0d, 0xc9, 0x13, 0x7c, + 0x24, 0xc5, 0xd0, 0xba, 0x0a, 0x4b, 0x97, 0xff, 0xb4, 0x60, 0xfc, 0xd9, 0x68, 0x9e, 0xb4, 0xb4, + 0x56, 0xbb, 0x8a, 0xab, 0x0d, 0xed, 0x1f, 0x3b, 0x87, 0x95, 0x66, 0x2b, 0x3b, 0x87, 0x16, 0x60, + 0x9e, 0xeb, 0x8f, 0x1b, 0xf5, 0x86, 0xb6, 0xb3, 0x7d, 0x58, 0x69, 0x65, 0x95, 0xf5, 0xaf, 0xc3, + 0x6e, 0xac, 0x80, 0x77, 0x3b, 0x5a, 0x81, 0x7c, 0xad, 0xbc, 0xb3, 0xad, 0xfd, 0xad, 0xbc, 0xd9, + 0xd4, 0x1e, 0x6e, 0x1e, 0x34, 0x5b, 0xda, 0x43, 0xed, 0x68, 0xf7, 0x79, 0x15, 0xb3, 0x88, 0xab, + 0x70, 0x8b, 0xa3, 0x5b, 0x9b, 0x7f, 0x9f, 0x85, 0x15, 0xd7, 0xf9, 0xd1, 0xf6, 0x66, 0x53, 0x2b, + 0x3f, 0x62, 0x68, 0x79, 0x82, 0x86, 0xd0, 0x32, 0xdc, 0x9c, 0x0e, 0xbd, 0x25, 0xd0, 0x6c, 0xd8, + 0x75, 0xf5, 0x46, 0x9e, 0xa0, 0x11, 0xb4, 0x06, 0x77, 0x2e, 0xcb, 0x4a, 0xab, 0xa9, 0x4f, 0x6b, + 0xda, 0x71, 0xa3, 0xad, 0x36, 0xea, 0xd9, 0x28, 0xba, 0x07, 0x7f, 0xb9, 0x34, 0x43, 0x9f, 0x69, + 0xcc, 0x0d, 0x1a, 0x90, 0xad, 0xcf, 0x32, 0x8e, 0xee, 0xc2, 0xed, 0x4b, 0x32, 0xf7, 0x19, 0x26, + 0xdc, 0x90, 0x01, 0xbb, 0xf0, 0x59, 0x26, 0xcb, 0x3f, 0x84, 0x20, 0x2e, 0xaf, 0x01, 0xed, 0x43, + 0xda, 0xf7, 0x57, 0x08, 0x5a, 0x75, 0x2b, 0x30, 0xe8, 0x2f, 0x92, 0xa5, 0xc0, 0x02, 0x65, 0x51, + 0x7c, 0x5c, 0xed, 0x89, 0x12, 0xc4, 0xe1, 0x97, 0x44, 0xa9, 0x41, 0xca, 0xd3, 0x22, 0x68, 0xd9, + 0x35, 0x9a, 0xed, 0xd9, 0xa5, 0x95, 0x60, 0x50, 0x76, 0xd5, 0x3e, 0xa4, 0x7d, 0x9d, 0xe2, 0xc9, + 0x27, 0xa8, 0x83, 0x82, 0xf3, 0xa9, 0x1c, 0xfc, 0xf7, 0x76, 0xd7, 0xa4, 0x67, 0xa3, 0xd3, 0x52, + 0xc7, 0xea, 0x6f, 0x48, 0x8b, 0x0d, 0xfe, 0x1f, 0x52, 0xc7, 0xea, 0x4d, 0x14, 0xef, 0x42, 0xe9, + 0x23, 0xf3, 0x9c, 0x1c, 0x32, 0xc2, 0x60, 0xd0, 0x2f, 0xa1, 0x8c, 0x94, 0x1f, 0x3f, 0xe6, 0x8a, + 0xd3, 0x18, 0x77, 0x79, 0xf8, 0x5b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x27, 0xaa, 0xb3, 0xc4, + 0x12, 0x00, 0x00, } From 8b2eb78a35c880dce42d95487337c35181f5fc84 Mon Sep 17 00:00:00 2001 From: Milos Pesic Date: Fri, 23 Jan 2026 14:33:26 +0100 Subject: [PATCH 3/7] Adding ID to satisfy table page item interface --- livekit/ingress.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/livekit/ingress.go b/livekit/ingress.go index 1fd465992..963d45db1 100644 --- a/livekit/ingress.go +++ b/livekit/ingress.go @@ -1,5 +1,12 @@ package livekit +func (p *IngressInfo) ID() string { + if p == nil { + return "" + } + return p.IngressId +} + func (p *ListIngressRequest) Filter(info *IngressInfo) bool { if info == nil { return true // for FilterSlice to work correctly with missing IDs From 1ccbe0078c9af5f62df40c43fb87f45cf541ed69 Mon Sep 17 00:00:00 2001 From: Milos Pesic Date: Sat, 24 Jan 2026 01:06:25 +0100 Subject: [PATCH 4/7] Use token pagination and offsets for list ingress APIs --- livekit/ingress.go | 23 ----------------------- protobufs/livekit_ingress.proto | 2 +- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 livekit/ingress.go diff --git a/livekit/ingress.go b/livekit/ingress.go deleted file mode 100644 index 963d45db1..000000000 --- a/livekit/ingress.go +++ /dev/null @@ -1,23 +0,0 @@ -package livekit - -func (p *IngressInfo) ID() string { - if p == nil { - return "" - } - return p.IngressId -} - -func (p *ListIngressRequest) Filter(info *IngressInfo) bool { - if info == nil { - return true // for FilterSlice to work correctly with missing IDs - } - // Filter by room_name if specified - if p.RoomName != "" && info.RoomName != p.RoomName { - return false - } - // Filter by ingress_id if specified - if p.IngressId != "" && info.IngressId != p.IngressId { - return false - } - return true -} diff --git a/protobufs/livekit_ingress.proto b/protobufs/livekit_ingress.proto index e18e389a8..c932b4201 100644 --- a/protobufs/livekit_ingress.proto +++ b/protobufs/livekit_ingress.proto @@ -204,7 +204,7 @@ message UpdateIngressRequest { } message ListIngressRequest { - Pagination page = 3; + TokenPagination page_token = 3; // when blank, lists all ingress endpoints string room_name = 1; // (optional, filter by room name) string ingress_id = 2; // (optional, filter by ingress ID) From bfd18be772942f7e758fe9597eb20de7caab9eb5 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Jan 2026 00:07:34 +0000 Subject: [PATCH 5/7] generated protobuf --- livekit/livekit_ingress.pb.go | 19 +-- livekit/livekit_ingress.twirp.go | 200 +++++++++++++++---------------- 2 files changed, 110 insertions(+), 109 deletions(-) diff --git a/livekit/livekit_ingress.pb.go b/livekit/livekit_ingress.pb.go index 67b154b01..01c478312 100644 --- a/livekit/livekit_ingress.pb.go +++ b/livekit/livekit_ingress.pb.go @@ -1282,8 +1282,8 @@ func (x *UpdateIngressRequest) GetEnabled() bool { } type ListIngressRequest struct { - state protoimpl.MessageState `protogen:"open.v1"` - Page *Pagination `protobuf:"bytes,3,opt,name=page,proto3" json:"page,omitempty"` + state protoimpl.MessageState `protogen:"open.v1"` + PageToken *TokenPagination `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // when blank, lists all ingress endpoints RoomName string `protobuf:"bytes,1,opt,name=room_name,json=roomName,proto3" json:"room_name,omitempty"` // (optional, filter by room name) IngressId string `protobuf:"bytes,2,opt,name=ingress_id,json=ingressId,proto3" json:"ingress_id,omitempty"` // (optional, filter by ingress ID) @@ -1321,9 +1321,9 @@ func (*ListIngressRequest) Descriptor() ([]byte, []int) { return file_livekit_ingress_proto_rawDescGZIP(), []int{10} } -func (x *ListIngressRequest) GetPage() *Pagination { +func (x *ListIngressRequest) GetPageToken() *TokenPagination { if x != nil { - return x.Page + return x.PageToken } return nil } @@ -1552,9 +1552,10 @@ const file_livekit_ingress_proto_rawDesc = "" + "\x13_bypass_transcodingB\x15\n" + "\x13_enable_transcodingB\n" + "\n" + - "\b_enabled\"y\n" + - "\x12ListIngressRequest\x12'\n" + - "\x04page\x18\x03 \x01(\v2\x13.livekit.PaginationR\x04page\x12\x1b\n" + + "\b_enabled\"\x89\x01\n" + + "\x12ListIngressRequest\x127\n" + + "\n" + + "page_token\x18\x03 \x01(\v2\x18.livekit.TokenPaginationR\tpageToken\x12\x1b\n" + "\troom_name\x18\x01 \x01(\tR\broomName\x12\x1d\n" + "\n" + "ingress_id\x18\x02 \x01(\tR\tingressId\"A\n" + @@ -1626,7 +1627,7 @@ var file_livekit_ingress_proto_goTypes = []any{ (VideoCodec)(0), // 19: livekit.VideoCodec (*VideoLayer)(nil), // 20: livekit.VideoLayer (*TrackInfo)(nil), // 21: livekit.TrackInfo - (*Pagination)(nil), // 22: livekit.Pagination + (*TokenPagination)(nil), // 22: livekit.TokenPagination } var file_livekit_ingress_proto_depIdxs = []int32{ 0, // 0: livekit.CreateIngressRequest.input_type:type_name -> livekit.IngressInput @@ -1651,7 +1652,7 @@ var file_livekit_ingress_proto_depIdxs = []int32{ 21, // 19: livekit.IngressState.tracks:type_name -> livekit.TrackInfo 5, // 20: livekit.UpdateIngressRequest.audio:type_name -> livekit.IngressAudioOptions 6, // 21: livekit.UpdateIngressRequest.video:type_name -> livekit.IngressVideoOptions - 22, // 22: livekit.ListIngressRequest.page:type_name -> livekit.Pagination + 22, // 22: livekit.ListIngressRequest.page_token:type_name -> livekit.TokenPagination 9, // 23: livekit.ListIngressResponse.items:type_name -> livekit.IngressInfo 4, // 24: livekit.Ingress.CreateIngress:input_type -> livekit.CreateIngressRequest 13, // 25: livekit.Ingress.UpdateIngress:input_type -> livekit.UpdateIngressRequest diff --git a/livekit/livekit_ingress.twirp.go b/livekit/livekit_ingress.twirp.go index 9d4e65fe4..0195ea3d7 100644 --- a/livekit/livekit_ingress.twirp.go +++ b/livekit/livekit_ingress.twirp.go @@ -1356,104 +1356,104 @@ func (s *ingressServer) PathPrefix() string { } var twirpFileDescriptor2 = []byte{ - // 1571 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6f, 0x1a, 0x49, - 0x16, 0x77, 0xf3, 0xcd, 0x23, 0x60, 0x52, 0xc6, 0x09, 0xf1, 0xc7, 0x2e, 0x22, 0xd9, 0x8d, 0xe3, - 0x44, 0xd8, 0x26, 0x8e, 0x77, 0x37, 0xda, 0xac, 0xd6, 0xd8, 0x38, 0xb4, 0x6c, 0x03, 0x2a, 0x70, - 0x56, 0xd9, 0x4b, 0xab, 0x4d, 0x57, 0x70, 0x2b, 0x40, 0xb3, 0xdd, 0x85, 0x37, 0x4c, 0x94, 0xdb, - 0x1c, 0x72, 0x1e, 0xcd, 0x7d, 0x0e, 0xa3, 0xb9, 0xe4, 0xcf, 0x99, 0xfb, 0x68, 0xee, 0xa3, 0x9c, - 0xe7, 0x3c, 0xaa, 0x0f, 0xda, 0xdd, 0xd0, 0x8e, 0x9c, 0x64, 0x34, 0xca, 0xad, 0xdf, 0xfb, 0xbd, - 0xf7, 0xea, 0x55, 0xd5, 0x7b, 0xbf, 0x57, 0x00, 0x8b, 0x3d, 0xf3, 0x9c, 0xbc, 0x34, 0xa9, 0x66, - 0x0e, 0xba, 0x36, 0x71, 0x9c, 0xd2, 0xd0, 0xb6, 0xa8, 0x85, 0xe2, 0x52, 0xbd, 0x94, 0x9b, 0xe0, - 0x7d, 0xcb, 0x20, 0x3d, 0x09, 0x2f, 0xe5, 0x7a, 0x56, 0xb7, 0x4b, 0xec, 0x0d, 0x6b, 0x48, 0x4d, - 0x6b, 0x20, 0xb5, 0xc5, 0x9f, 0x23, 0x90, 0xdb, 0xb3, 0x89, 0x4e, 0x89, 0x2a, 0x82, 0x61, 0xf2, - 0xbf, 0x11, 0x71, 0x28, 0xda, 0x06, 0x30, 0x07, 0xc3, 0x11, 0xd5, 0xe8, 0x78, 0x48, 0xf2, 0x4a, - 0x41, 0x59, 0xcb, 0x94, 0x17, 0x4b, 0x32, 0x72, 0x49, 0x1a, 0xab, 0xcc, 0x02, 0x27, 0xb9, 0x61, - 0x7b, 0x3c, 0x24, 0x28, 0x0b, 0xe1, 0x91, 0xdd, 0xcb, 0x27, 0x0b, 0xca, 0x5a, 0x12, 0xb3, 0x4f, - 0x84, 0x20, 0x32, 0xd0, 0xfb, 0x24, 0x1f, 0xe2, 0x2a, 0xfe, 0x8d, 0x96, 0x21, 0x69, 0x5b, 0x56, - 0x5f, 0xe3, 0x40, 0x98, 0x03, 0x09, 0xa6, 0xa8, 0x33, 0x70, 0x0b, 0x72, 0x43, 0xdd, 0xa6, 0x66, - 0xc7, 0x1c, 0xea, 0x03, 0xaa, 0x99, 0x06, 0x19, 0x50, 0x93, 0x8e, 0xf3, 0x11, 0x6e, 0xb7, 0xe0, - 0xc1, 0x54, 0x09, 0xa1, 0x0d, 0xc8, 0x7a, 0x5d, 0x78, 0xd8, 0x28, 0x33, 0xaf, 0x44, 0xde, 0xbe, - 0x7f, 0xa0, 0xe0, 0x79, 0x0f, 0xca, 0xd7, 0x78, 0xee, 0x5f, 0xa3, 0x4f, 0xa8, 0x6e, 0xe8, 0x54, - 0xcf, 0x03, 0x77, 0xfa, 0x2b, 0x73, 0xfa, 0xe6, 0xfd, 0x83, 0x3f, 0xfd, 0xd3, 0x26, 0x86, 0xde, - 0xa1, 0xc4, 0x28, 0xac, 0xbd, 0x7e, 0x5d, 0x28, 0xb5, 0xcc, 0xaf, 0x48, 0xe1, 0xcd, 0x9b, 0xc2, - 0xe9, 0x98, 0x12, 0xe7, 0xde, 0xbf, 0x7c, 0xb9, 0x1c, 0xcb, 0x10, 0x68, 0x0b, 0xd0, 0xe9, 0x78, - 0xa8, 0x3b, 0x8e, 0x46, 0x6d, 0x7d, 0xe0, 0x74, 0x2c, 0xc3, 0x1c, 0x74, 0xf3, 0x89, 0x82, 0xb2, - 0x96, 0xa8, 0x84, 0xf2, 0x0a, 0xbe, 0x2e, 0xd0, 0xf6, 0x05, 0x88, 0xca, 0x80, 0xc8, 0x40, 0x3f, - 0xed, 0x11, 0x9f, 0x4b, 0x8a, 0xb9, 0xd4, 0xe6, 0xf0, 0x75, 0x81, 0x79, 0x1c, 0xde, 0x2a, 0x0a, - 0x2a, 0x43, 0x54, 0x1f, 0x19, 0xa6, 0x95, 0x8f, 0x15, 0x94, 0xb5, 0x54, 0x79, 0x65, 0xfa, 0x66, - 0x76, 0x19, 0xd8, 0x10, 0x57, 0x8d, 0x85, 0x29, 0xf3, 0x39, 0x37, 0x0d, 0x62, 0xe5, 0xe3, 0xc1, - 0x3e, 0xcf, 0x18, 0xe8, 0xfa, 0x70, 0x53, 0xb4, 0x0a, 0x71, 0xb1, 0xbe, 0x91, 0xbf, 0xc6, 0x13, - 0x52, 0xf0, 0x44, 0xf1, 0x56, 0x51, 0x2a, 0x8b, 0xb0, 0xa0, 0xcd, 0xe6, 0x5e, 0x01, 0x48, 0x48, - 0xb5, 0x51, 0x7c, 0xaf, 0xc0, 0x42, 0x40, 0x52, 0x6e, 0x61, 0x28, 0x9e, 0xc2, 0x78, 0x00, 0x31, - 0xc7, 0x1a, 0xd9, 0x1d, 0x51, 0x2e, 0x99, 0x72, 0xce, 0x4d, 0xb1, 0x6d, 0xeb, 0x9d, 0x97, 0x2d, - 0x8e, 0x61, 0x69, 0x83, 0x9e, 0x40, 0x6c, 0x68, 0x13, 0x87, 0x50, 0x5e, 0x43, 0x99, 0xf2, 0xed, - 0xc0, 0x43, 0xa8, 0x0e, 0x44, 0x52, 0x4d, 0x6e, 0x5a, 0x9b, 0xc3, 0xd2, 0x09, 0xfd, 0x1b, 0xe2, - 0xb2, 0x17, 0x78, 0x6d, 0xa5, 0xca, 0x77, 0x3e, 0xe8, 0x2f, 0xf3, 0xae, 0xcd, 0xe1, 0x89, 0x5b, - 0x05, 0x41, 0x96, 0x48, 0x54, 0x93, 0x3a, 0xef, 0x76, 0xbd, 0xe7, 0xf9, 0x47, 0x6c, 0x97, 0xaf, - 0xf7, 0x19, 0xdb, 0xf5, 0xf9, 0x5f, 0x71, 0xbb, 0xef, 0x14, 0x58, 0xfe, 0xc0, 0x69, 0xa1, 0x6d, - 0x48, 0xf1, 0xe2, 0xd3, 0x3a, 0x96, 0x41, 0x3a, 0x92, 0x47, 0x16, 0xdc, 0x95, 0xb9, 0xcf, 0x1e, - 0x83, 0x30, 0xe8, 0xee, 0x37, 0xca, 0x43, 0xfc, 0xd4, 0xa4, 0xb6, 0x4e, 0xc5, 0xc9, 0xa4, 0xf1, - 0x44, 0x44, 0x7f, 0x86, 0x94, 0x61, 0x3a, 0xbc, 0xe0, 0x0c, 0xfa, 0x8a, 0x9f, 0x44, 0x02, 0x83, - 0x54, 0xed, 0xd3, 0x57, 0x68, 0x09, 0x12, 0x9d, 0x33, 0x7d, 0x30, 0x20, 0x3d, 0xb1, 0xcf, 0x34, - 0x76, 0xe5, 0xe2, 0x77, 0x17, 0xc9, 0x06, 0xed, 0x95, 0x25, 0xcb, 0xab, 0xfe, 0x92, 0x64, 0xb9, - 0x8f, 0x4c, 0xf6, 0xdc, 0xfd, 0x46, 0xab, 0x00, 0x2f, 0x6c, 0xbd, 0x4f, 0x34, 0x37, 0x5f, 0x05, - 0x27, 0xb9, 0x06, 0xb3, 0x8c, 0xef, 0x43, 0xac, 0xa7, 0x8f, 0x89, 0xed, 0xe4, 0xc3, 0x85, 0xf0, - 0x5a, 0x6a, 0x3a, 0xde, 0x11, 0xc3, 0xb0, 0x34, 0x29, 0xfe, 0x14, 0x85, 0x94, 0xcb, 0xad, 0x2f, - 0x58, 0xfb, 0x81, 0x24, 0x79, 0xcd, 0x34, 0x64, 0xed, 0x24, 0xa5, 0x46, 0x35, 0x02, 0xc9, 0x75, - 0x15, 0xc0, 0xa1, 0x36, 0xd1, 0xfb, 0xda, 0x4b, 0x32, 0x96, 0xec, 0x9a, 0x14, 0x9a, 0x43, 0x32, - 0x9e, 0x30, 0x74, 0xe4, 0x82, 0xa1, 0xfd, 0x4c, 0x1f, 0xbd, 0x22, 0xd3, 0x07, 0xf3, 0x5c, 0xfa, - 0xe3, 0x79, 0x6e, 0xfe, 0x8b, 0xe0, 0x39, 0xdf, 0x48, 0x4a, 0x5c, 0x71, 0x24, 0x25, 0x3f, 0x6e, - 0x24, 0xc1, 0xa7, 0x8c, 0xa4, 0xcc, 0xe7, 0x8f, 0xa4, 0x25, 0x48, 0xd8, 0x64, 0xc4, 0x3b, 0x44, - 0x4c, 0x15, 0xec, 0xca, 0xe8, 0x3e, 0x44, 0x1d, 0xca, 0xea, 0xf6, 0x1a, 0x3f, 0xab, 0x99, 0x7b, - 0x6f, 0x31, 0x10, 0x0b, 0x1b, 0xef, 0x30, 0xc8, 0x7e, 0xda, 0x30, 0xf8, 0x35, 0x0c, 0xd7, 0xbc, - 0x91, 0xd1, 0x36, 0xc4, 0x58, 0xec, 0x91, 0x23, 0xbb, 0x6d, 0x25, 0x30, 0x81, 0x52, 0x8b, 0xdb, - 0x60, 0x69, 0x8b, 0x72, 0x10, 0x25, 0xb6, 0x6d, 0xd9, 0xb2, 0xf0, 0x85, 0x80, 0x4a, 0x93, 0x7b, - 0x0f, 0xf3, 0xbd, 0xe4, 0x3d, 0xa1, 0x86, 0x23, 0xca, 0x6f, 0x5d, 0x6e, 0x47, 0xdc, 0x79, 0x69, - 0x52, 0x5b, 0x91, 0x20, 0x7b, 0x5e, 0x59, 0xd2, 0x5e, 0xd4, 0xd5, 0x4d, 0x88, 0xf3, 0x1a, 0x31, - 0x0d, 0xf1, 0xba, 0xc0, 0x31, 0x26, 0xaa, 0x86, 0x68, 0x39, 0xdd, 0xa6, 0xc4, 0xd0, 0x74, 0xca, - 0xab, 0x2e, 0xcc, 0x5a, 0x8e, 0x6b, 0x76, 0x29, 0xba, 0x05, 0x09, 0x32, 0x30, 0x04, 0x98, 0xe0, - 0x60, 0x9c, 0xcb, 0xbb, 0x94, 0x79, 0x8e, 0x86, 0x86, 0x2e, 0x3d, 0x41, 0x78, 0x4a, 0xcd, 0x2e, - 0x65, 0x6c, 0x67, 0x13, 0x41, 0xff, 0x6c, 0x55, 0x51, 0x6f, 0x30, 0x51, 0xa9, 0x06, 0x5a, 0x87, - 0x18, 0x65, 0xa3, 0xc2, 0xc9, 0xc7, 0x38, 0xb9, 0x20, 0xff, 0x04, 0x61, 0x1c, 0x82, 0xa5, 0x45, - 0xf1, 0x35, 0xc4, 0xc4, 0x31, 0xa2, 0x45, 0xb8, 0x5e, 0xad, 0xef, 0x37, 0x1b, 0x6a, 0xbd, 0xad, - 0xa9, 0xf5, 0xdd, 0xbd, 0xb6, 0xfa, 0xac, 0x9a, 0x9d, 0x43, 0x37, 0x00, 0xb9, 0xea, 0xca, 0xc9, - 0xc1, 0x41, 0x15, 0xab, 0xf5, 0xa7, 0x59, 0x05, 0xdd, 0x84, 0x05, 0x57, 0xdf, 0x3c, 0xa9, 0x1c, - 0xa9, 0xad, 0x1a, 0x03, 0x42, 0x08, 0x41, 0xc6, 0x05, 0xaa, 0x18, 0x37, 0x70, 0x36, 0xec, 0x8b, - 0xbd, 0xd7, 0x38, 0x6e, 0x1e, 0x55, 0xdb, 0xd5, 0x6c, 0xa4, 0xf8, 0xbd, 0x02, 0xf3, 0x53, 0xd7, - 0xc0, 0x7a, 0xae, 0x6f, 0xf6, 0xc9, 0xc5, 0x0b, 0x33, 0x89, 0x13, 0x4c, 0xc1, 0xf9, 0xe5, 0x2e, - 0xcc, 0xeb, 0xe7, 0xc4, 0xd6, 0xbb, 0x44, 0xf3, 0x8f, 0x82, 0x8c, 0x54, 0x57, 0xe4, 0x44, 0xc8, - 0x41, 0xf4, 0xff, 0xa6, 0x41, 0xcf, 0xf8, 0xad, 0xa7, 0xb1, 0x10, 0xd0, 0x0d, 0x88, 0x9d, 0x11, - 0xb3, 0x7b, 0x46, 0xe5, 0x10, 0x90, 0x12, 0x5a, 0x01, 0x41, 0xcd, 0x3c, 0x60, 0xd4, 0xc3, 0xd5, - 0x4c, 0x51, 0xfc, 0x76, 0x92, 0xe5, 0xc5, 0xe5, 0xff, 0x4e, 0x59, 0x7a, 0xc7, 0x52, 0xd8, 0x3f, - 0x96, 0xd8, 0x2d, 0x3b, 0x7a, 0x7f, 0xd8, 0x93, 0x13, 0x44, 0x24, 0x0c, 0x42, 0xc5, 0x46, 0x48, - 0xf1, 0xc7, 0x08, 0xe4, 0x4e, 0x78, 0x51, 0x4c, 0x3d, 0xd2, 0x3f, 0x61, 0x3c, 0x7c, 0xb1, 0x6f, - 0xef, 0xe4, 0xe7, 0x13, 0xdd, 0xce, 0x87, 0xdf, 0xde, 0x6c, 0xc8, 0xcc, 0x4c, 0x25, 0x31, 0x64, - 0x82, 0x06, 0x13, 0x48, 0x8a, 0xfb, 0x62, 0x1e, 0xe0, 0xe2, 0x17, 0x41, 0x68, 0x86, 0x73, 0x67, - 0xf7, 0x7c, 0x15, 0x2a, 0x1e, 0x03, 0x3a, 0x32, 0x1d, 0x3a, 0x55, 0x51, 0x77, 0x21, 0x32, 0xd4, - 0xbb, 0x44, 0x52, 0xe8, 0xc5, 0x5b, 0xa5, 0xa9, 0x77, 0xcd, 0x81, 0xce, 0x32, 0xc3, 0xdc, 0xc0, - 0x5f, 0x47, 0xca, 0x54, 0x1d, 0xf9, 0xeb, 0x32, 0x34, 0x55, 0x97, 0xc5, 0x5d, 0x58, 0xf0, 0x2d, - 0xed, 0x0c, 0xad, 0x81, 0x43, 0xd0, 0x3a, 0x44, 0x4d, 0x4a, 0xfa, 0x6c, 0x14, 0x30, 0x2e, 0xcb, - 0xcd, 0xbe, 0x41, 0x5e, 0x58, 0x58, 0x98, 0x14, 0x1f, 0x41, 0x6e, 0x9f, 0xf4, 0xc8, 0x47, 0x76, - 0xc4, 0xfa, 0x13, 0x77, 0xfc, 0xf0, 0x36, 0x47, 0x19, 0x00, 0xdc, 0x3e, 0x6e, 0x6a, 0x6a, 0xbd, - 0x79, 0xd2, 0xce, 0xce, 0x31, 0xf9, 0x3f, 0x35, 0x75, 0x22, 0x2b, 0x28, 0x0d, 0xc9, 0x13, 0x7c, - 0x24, 0xc5, 0xd0, 0xba, 0x0a, 0x4b, 0x97, 0xff, 0xb4, 0x60, 0xfc, 0xd9, 0x68, 0x9e, 0xb4, 0xb4, - 0x56, 0xbb, 0x8a, 0xab, 0x0d, 0xed, 0x1f, 0x3b, 0x87, 0x95, 0x66, 0x2b, 0x3b, 0x87, 0x16, 0x60, - 0x9e, 0xeb, 0x8f, 0x1b, 0xf5, 0x86, 0xb6, 0xb3, 0x7d, 0x58, 0x69, 0x65, 0x95, 0xf5, 0xaf, 0xc3, - 0x6e, 0xac, 0x80, 0x77, 0x3b, 0x5a, 0x81, 0x7c, 0xad, 0xbc, 0xb3, 0xad, 0xfd, 0xad, 0xbc, 0xd9, - 0xd4, 0x1e, 0x6e, 0x1e, 0x34, 0x5b, 0xda, 0x43, 0xed, 0x68, 0xf7, 0x79, 0x15, 0xb3, 0x88, 0xab, - 0x70, 0x8b, 0xa3, 0x5b, 0x9b, 0x7f, 0x9f, 0x85, 0x15, 0xd7, 0xf9, 0xd1, 0xf6, 0x66, 0x53, 0x2b, - 0x3f, 0x62, 0x68, 0x79, 0x82, 0x86, 0xd0, 0x32, 0xdc, 0x9c, 0x0e, 0xbd, 0x25, 0xd0, 0x6c, 0xd8, - 0x75, 0xf5, 0x46, 0x9e, 0xa0, 0x11, 0xb4, 0x06, 0x77, 0x2e, 0xcb, 0x4a, 0xab, 0xa9, 0x4f, 0x6b, - 0xda, 0x71, 0xa3, 0xad, 0x36, 0xea, 0xd9, 0x28, 0xba, 0x07, 0x7f, 0xb9, 0x34, 0x43, 0x9f, 0x69, - 0xcc, 0x0d, 0x1a, 0x90, 0xad, 0xcf, 0x32, 0x8e, 0xee, 0xc2, 0xed, 0x4b, 0x32, 0xf7, 0x19, 0x26, - 0xdc, 0x90, 0x01, 0xbb, 0xf0, 0x59, 0x26, 0xcb, 0x3f, 0x84, 0x20, 0x2e, 0xaf, 0x01, 0xed, 0x43, - 0xda, 0xf7, 0x57, 0x08, 0x5a, 0x75, 0x2b, 0x30, 0xe8, 0x2f, 0x92, 0xa5, 0xc0, 0x02, 0x65, 0x51, - 0x7c, 0x5c, 0xed, 0x89, 0x12, 0xc4, 0xe1, 0x97, 0x44, 0xa9, 0x41, 0xca, 0xd3, 0x22, 0x68, 0xd9, - 0x35, 0x9a, 0xed, 0xd9, 0xa5, 0x95, 0x60, 0x50, 0x76, 0xd5, 0x3e, 0xa4, 0x7d, 0x9d, 0xe2, 0xc9, - 0x27, 0xa8, 0x83, 0x82, 0xf3, 0xa9, 0x1c, 0xfc, 0xf7, 0x76, 0xd7, 0xa4, 0x67, 0xa3, 0xd3, 0x52, - 0xc7, 0xea, 0x6f, 0x48, 0x8b, 0x0d, 0xfe, 0x1f, 0x52, 0xc7, 0xea, 0x4d, 0x14, 0xef, 0x42, 0xe9, - 0x23, 0xf3, 0x9c, 0x1c, 0x32, 0xc2, 0x60, 0xd0, 0x2f, 0xa1, 0x8c, 0x94, 0x1f, 0x3f, 0xe6, 0x8a, - 0xd3, 0x18, 0x77, 0x79, 0xf8, 0x5b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x27, 0xaa, 0xb3, 0xc4, - 0x12, 0x00, 0x00, + // 1578 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x6f, 0xdb, 0xc6, + 0x12, 0x36, 0xf5, 0x5b, 0xa3, 0x48, 0x56, 0xd6, 0x72, 0xa2, 0xf8, 0xc7, 0x7b, 0x82, 0x92, 0xf7, + 0xe2, 0x38, 0x81, 0x6c, 0x2b, 0x8e, 0xf3, 0x5e, 0xd0, 0x14, 0xb5, 0x6c, 0x39, 0x22, 0x6c, 0x4b, + 0xc2, 0x4a, 0x4e, 0x91, 0x5e, 0x08, 0x5a, 0xdc, 0xc8, 0x84, 0x25, 0x52, 0x25, 0x57, 0x6e, 0xd4, + 0x20, 0xb7, 0x1e, 0xd2, 0x6b, 0xd1, 0x7b, 0x0f, 0x45, 0x2f, 0xf9, 0x73, 0x7a, 0x2f, 0x7a, 0x2f, + 0x72, 0xee, 0xb9, 0xd8, 0xe5, 0x8a, 0x26, 0x25, 0x3a, 0x70, 0x92, 0xa2, 0xc8, 0x8d, 0x3b, 0xdf, + 0xcc, 0x70, 0x96, 0xfb, 0xcd, 0x37, 0x2b, 0xc1, 0x7c, 0x4f, 0x3f, 0x23, 0xa7, 0x3a, 0x55, 0x74, + 0xa3, 0x6b, 0x11, 0xdb, 0x2e, 0x0d, 0x2c, 0x93, 0x9a, 0x28, 0x2e, 0xcc, 0x0b, 0xb9, 0x31, 0xde, + 0x37, 0x35, 0xd2, 0x13, 0xf0, 0x42, 0xae, 0x67, 0x76, 0xbb, 0xc4, 0x5a, 0x33, 0x07, 0x54, 0x37, + 0x0d, 0x61, 0x2d, 0xfe, 0x1e, 0x81, 0xdc, 0x8e, 0x45, 0x54, 0x4a, 0x64, 0x27, 0x19, 0x26, 0x5f, + 0x0f, 0x89, 0x4d, 0xd1, 0x26, 0x80, 0x6e, 0x0c, 0x86, 0x54, 0xa1, 0xa3, 0x01, 0xc9, 0x4b, 0x05, + 0x69, 0x25, 0x53, 0x9e, 0x2f, 0x89, 0xcc, 0x25, 0xe1, 0x2c, 0x33, 0x0f, 0x9c, 0xe4, 0x8e, 0xed, + 0xd1, 0x80, 0xa0, 0x2c, 0x84, 0x87, 0x56, 0x2f, 0x9f, 0x2c, 0x48, 0x2b, 0x49, 0xcc, 0x1e, 0x11, + 0x82, 0x88, 0xa1, 0xf6, 0x49, 0x3e, 0xc4, 0x4d, 0xfc, 0x19, 0x2d, 0x42, 0xd2, 0x32, 0xcd, 0xbe, + 0xc2, 0x81, 0x30, 0x07, 0x12, 0xcc, 0x50, 0x67, 0xe0, 0x06, 0xe4, 0x06, 0xaa, 0x45, 0xf5, 0x8e, + 0x3e, 0x50, 0x0d, 0xaa, 0xe8, 0x1a, 0x31, 0xa8, 0x4e, 0x47, 0xf9, 0x08, 0xf7, 0x9b, 0xf3, 0x60, + 0xb2, 0x80, 0xd0, 0x1a, 0x64, 0xbd, 0x21, 0x3c, 0x6d, 0x94, 0xb9, 0x57, 0x22, 0xaf, 0xdf, 0xde, + 0x93, 0xf0, 0xac, 0x07, 0xe5, 0xef, 0x78, 0xe6, 0x7f, 0x47, 0x9f, 0x50, 0x55, 0x53, 0xa9, 0x9a, + 0x07, 0x1e, 0xf4, 0x5f, 0x16, 0xf4, 0xc3, 0xdb, 0x7b, 0xff, 0xfa, 0xcc, 0x22, 0x9a, 0xda, 0xa1, + 0x44, 0x2b, 0xac, 0xbc, 0x7c, 0x59, 0x28, 0xb5, 0xf4, 0x6f, 0x49, 0xe1, 0xd5, 0xab, 0xc2, 0xf1, + 0x88, 0x12, 0xfb, 0xce, 0xe7, 0xbe, 0x5a, 0x0e, 0x45, 0x0a, 0xb4, 0x01, 0xe8, 0x78, 0x34, 0x50, + 0x6d, 0x5b, 0xa1, 0x96, 0x6a, 0xd8, 0x1d, 0x53, 0xd3, 0x8d, 0x6e, 0x3e, 0x51, 0x90, 0x56, 0x12, + 0x95, 0x50, 0x5e, 0xc2, 0x57, 0x1d, 0xb4, 0x7d, 0x0e, 0xa2, 0x32, 0x20, 0x62, 0xa8, 0xc7, 0x3d, + 0xe2, 0x0b, 0x49, 0xb1, 0x90, 0xda, 0x0c, 0xbe, 0xea, 0x60, 0x9e, 0x80, 0xd7, 0x92, 0x84, 0xca, + 0x10, 0x55, 0x87, 0x9a, 0x6e, 0xe6, 0x63, 0x05, 0x69, 0x25, 0x55, 0x5e, 0x9a, 0x3c, 0x99, 0x6d, + 0x06, 0x36, 0x9c, 0xa3, 0xc6, 0x8e, 0x2b, 0x8b, 0x39, 0xd3, 0x35, 0x62, 0xe6, 0xe3, 0xc1, 0x31, + 0x4f, 0x19, 0xe8, 0xc6, 0x70, 0x57, 0xb4, 0x0c, 0x71, 0xe7, 0xfd, 0x5a, 0xfe, 0x0a, 0x2f, 0x48, + 0xc2, 0x63, 0xc3, 0x6b, 0x49, 0xaa, 0xcc, 0xc3, 0x9c, 0x32, 0x5d, 0x7b, 0x05, 0x20, 0x21, 0xcc, + 0x5a, 0xf1, 0xad, 0x04, 0x73, 0x01, 0x45, 0xb9, 0xc4, 0x90, 0x3c, 0xc4, 0xb8, 0x07, 0x31, 0xdb, + 0x1c, 0x5a, 0x1d, 0x87, 0x2e, 0x99, 0x72, 0xce, 0x2d, 0xb1, 0x6d, 0xa9, 0x9d, 0xd3, 0x16, 0xc7, + 0xb0, 0xf0, 0x41, 0x8f, 0x21, 0x36, 0xb0, 0x88, 0x4d, 0x28, 0xe7, 0x50, 0xa6, 0x7c, 0x33, 0xf0, + 0x23, 0x54, 0x0d, 0xa7, 0xa8, 0x26, 0x77, 0xad, 0xcd, 0x60, 0x11, 0x84, 0xbe, 0x80, 0xb8, 0xe8, + 0x05, 0xce, 0xad, 0x54, 0xf9, 0xd6, 0x3b, 0xe3, 0x45, 0xdd, 0xb5, 0x19, 0x3c, 0x0e, 0xab, 0x20, + 0xc8, 0x12, 0x81, 0x2a, 0xc2, 0xe6, 0xdd, 0xae, 0xf7, 0x7b, 0xfe, 0x13, 0xdb, 0xe5, 0xef, 0xfb, + 0x88, 0xed, 0xfa, 0xe2, 0x2f, 0xb9, 0xdd, 0x37, 0x12, 0x2c, 0xbe, 0xe3, 0x6b, 0xa1, 0x4d, 0x48, + 0x71, 0xf2, 0x29, 0x1d, 0x53, 0x23, 0x1d, 0xa1, 0x23, 0x73, 0xee, 0x9b, 0x79, 0xcc, 0x0e, 0x83, + 0x30, 0xa8, 0xee, 0x33, 0xca, 0x43, 0xfc, 0x58, 0xa7, 0x96, 0x4a, 0x9d, 0x2f, 0x93, 0xc6, 0xe3, + 0x25, 0xfa, 0x37, 0xa4, 0x34, 0xdd, 0xe6, 0x84, 0xd3, 0xe8, 0x0b, 0xfe, 0x25, 0x12, 0x18, 0x84, + 0x69, 0x97, 0xbe, 0x40, 0x0b, 0x90, 0xe8, 0x9c, 0xa8, 0x86, 0x41, 0x7a, 0xce, 0x3e, 0xd3, 0xd8, + 0x5d, 0x17, 0x7f, 0x3a, 0x2f, 0x36, 0x68, 0xaf, 0xac, 0x58, 0xce, 0xfa, 0x0b, 0x8a, 0xe5, 0x31, + 0xa2, 0xd8, 0x33, 0xf7, 0x19, 0x2d, 0x03, 0x3c, 0xb7, 0xd4, 0x3e, 0x51, 0xdc, 0x7a, 0x25, 0x9c, + 0xe4, 0x16, 0xcc, 0x2a, 0xbe, 0x0b, 0xb1, 0x9e, 0x3a, 0x22, 0x96, 0x9d, 0x0f, 0x17, 0xc2, 0x2b, + 0xa9, 0xc9, 0x7c, 0x07, 0x0c, 0xc3, 0xc2, 0xa5, 0xf8, 0x5b, 0x14, 0x52, 0xae, 0xb6, 0x3e, 0x67, + 0xed, 0x07, 0x42, 0xe4, 0x15, 0x5d, 0x13, 0xdc, 0x49, 0x0a, 0x8b, 0xac, 0x05, 0x8a, 0xeb, 0x32, + 0x80, 0x4d, 0x2d, 0xa2, 0xf6, 0x95, 0x53, 0x32, 0x12, 0xea, 0x9a, 0x74, 0x2c, 0xfb, 0x64, 0x34, + 0x56, 0xe8, 0xc8, 0xb9, 0x42, 0xfb, 0x95, 0x3e, 0x7a, 0x49, 0xa5, 0x0f, 0xd6, 0xb9, 0xf4, 0xfb, + 0xeb, 0xdc, 0xec, 0x27, 0xa1, 0x73, 0xbe, 0x91, 0x94, 0xb8, 0xe4, 0x48, 0x4a, 0xbe, 0xdf, 0x48, + 0x82, 0x0f, 0x19, 0x49, 0x99, 0x8f, 0x1f, 0x49, 0x0b, 0x90, 0xb0, 0xc8, 0x90, 0x77, 0x88, 0x33, + 0x55, 0xb0, 0xbb, 0x46, 0x77, 0x21, 0x6a, 0x53, 0xc6, 0xdb, 0x2b, 0xfc, 0x5b, 0x4d, 0x9d, 0x7b, + 0x8b, 0x81, 0xd8, 0xf1, 0xf1, 0x0e, 0x83, 0xec, 0x87, 0x0d, 0x83, 0x3f, 0xc3, 0x70, 0xc5, 0x9b, + 0x19, 0x6d, 0x42, 0x8c, 0xe5, 0x1e, 0xda, 0xa2, 0xdb, 0x96, 0x02, 0x0b, 0x28, 0xb5, 0xb8, 0x0f, + 0x16, 0xbe, 0x28, 0x07, 0x51, 0x62, 0x59, 0xa6, 0x25, 0x88, 0xef, 0x2c, 0x50, 0x69, 0x7c, 0xee, + 0x61, 0xbe, 0x97, 0xbc, 0x27, 0xd5, 0x60, 0x48, 0xf9, 0xa9, 0x8b, 0xed, 0x38, 0x67, 0x5e, 0x1a, + 0x73, 0x2b, 0x12, 0xe4, 0xcf, 0x99, 0x25, 0xfc, 0x1d, 0x5e, 0x5d, 0x87, 0x38, 0xe7, 0x88, 0xae, + 0x39, 0xb7, 0x0b, 0x1c, 0x63, 0x4b, 0x59, 0x73, 0x5a, 0x4e, 0xb5, 0x28, 0xd1, 0x14, 0x95, 0x72, + 0xd6, 0x85, 0x59, 0xcb, 0x71, 0xcb, 0x36, 0x45, 0x37, 0x20, 0x41, 0x0c, 0xcd, 0x01, 0x13, 0x1c, + 0x8c, 0xf3, 0xf5, 0x36, 0x65, 0x91, 0xc3, 0x81, 0xa6, 0x8a, 0x48, 0x70, 0x22, 0x85, 0x65, 0x9b, + 0x32, 0xb5, 0xb3, 0x88, 0x23, 0xff, 0xec, 0xad, 0x0e, 0xdf, 0x60, 0x6c, 0x92, 0x35, 0xb4, 0x0a, + 0x31, 0xca, 0x46, 0x85, 0x9d, 0x8f, 0x71, 0x71, 0x41, 0xfe, 0x09, 0xc2, 0x34, 0x04, 0x0b, 0x8f, + 0xe2, 0x4b, 0x88, 0x39, 0x9f, 0x11, 0xcd, 0xc3, 0xd5, 0x6a, 0x7d, 0xb7, 0xd9, 0x90, 0xeb, 0x6d, + 0x45, 0xae, 0x6f, 0xef, 0xb4, 0xe5, 0xa7, 0xd5, 0xec, 0x0c, 0xba, 0x06, 0xc8, 0x35, 0x57, 0x8e, + 0xf6, 0xf6, 0xaa, 0x58, 0xae, 0x3f, 0xc9, 0x4a, 0xe8, 0x3a, 0xcc, 0xb9, 0xf6, 0xe6, 0x51, 0xe5, + 0x40, 0x6e, 0xd5, 0x18, 0x10, 0x42, 0x08, 0x32, 0x2e, 0x50, 0xc5, 0xb8, 0x81, 0xb3, 0x61, 0x5f, + 0xee, 0x9d, 0xc6, 0x61, 0xf3, 0xa0, 0xda, 0xae, 0x66, 0x23, 0xc5, 0x9f, 0x25, 0x98, 0x9d, 0x38, + 0x06, 0xd6, 0x73, 0x7d, 0xbd, 0x4f, 0xce, 0x6f, 0x98, 0x49, 0x9c, 0x60, 0x06, 0xae, 0x2f, 0xb7, + 0x61, 0x56, 0x3d, 0x23, 0x96, 0xda, 0x25, 0x8a, 0x7f, 0x14, 0x64, 0x84, 0xb9, 0x22, 0x26, 0x42, + 0x0e, 0xa2, 0xdf, 0xe8, 0x1a, 0x3d, 0xe1, 0xa7, 0x9e, 0xc6, 0xce, 0x02, 0x5d, 0x83, 0xd8, 0x09, + 0xd1, 0xbb, 0x27, 0x54, 0x0c, 0x01, 0xb1, 0x42, 0x4b, 0xe0, 0x48, 0x33, 0x4f, 0x18, 0xf5, 0x68, + 0x35, 0x33, 0x14, 0x7f, 0x1c, 0x57, 0x79, 0x7e, 0xf8, 0x7f, 0x53, 0x95, 0xde, 0xb1, 0x14, 0xf6, + 0x8f, 0x25, 0x76, 0xca, 0xb6, 0xda, 0x1f, 0xf4, 0xc4, 0x04, 0x71, 0x0a, 0x06, 0xc7, 0xc4, 0x46, + 0x48, 0xf1, 0xd7, 0x08, 0xe4, 0x8e, 0x38, 0x29, 0x26, 0x2e, 0xe9, 0x1f, 0x30, 0x1e, 0x3e, 0xd9, + 0xbb, 0x77, 0xf2, 0xe3, 0x85, 0x6e, 0xeb, 0xdd, 0x77, 0x6f, 0x36, 0x64, 0xa6, 0xa6, 0x92, 0x33, + 0x64, 0x82, 0x06, 0x13, 0x08, 0x89, 0xfb, 0x64, 0x2e, 0xe0, 0xce, 0x2f, 0x82, 0xd0, 0x94, 0xe6, + 0x4e, 0xef, 0xf9, 0x32, 0x52, 0xfc, 0xbd, 0x04, 0xe8, 0x40, 0xb7, 0xe9, 0x04, 0xa5, 0x1e, 0x02, + 0x0c, 0x18, 0x9d, 0xa9, 0x79, 0x4a, 0x8c, 0x29, 0x25, 0x6d, 0x33, 0x6b, 0x53, 0xed, 0xea, 0x86, + 0xca, 0xaa, 0xc4, 0x49, 0xe6, 0xcb, 0x8d, 0x7e, 0x62, 0x49, 0x13, 0xc4, 0xf2, 0x13, 0x35, 0x34, + 0x41, 0xd4, 0xe2, 0x36, 0xcc, 0xf9, 0x4a, 0xb1, 0x07, 0xa6, 0x61, 0x13, 0xb4, 0x0a, 0x51, 0x9d, + 0x92, 0x3e, 0x9b, 0x0d, 0x4c, 0xdc, 0x72, 0xd3, 0x97, 0x92, 0xe7, 0x26, 0x76, 0x5c, 0x8a, 0x0f, + 0x20, 0xb7, 0x4b, 0x7a, 0xe4, 0x3d, 0x5b, 0x64, 0xf5, 0xb1, 0x3b, 0x8f, 0x78, 0xdf, 0xa3, 0x0c, + 0x00, 0x6e, 0x1f, 0x36, 0x15, 0xb9, 0xde, 0x3c, 0x6a, 0x67, 0x67, 0xd8, 0xfa, 0xcb, 0x9a, 0x3c, + 0x5e, 0x4b, 0x28, 0x0d, 0xc9, 0x23, 0x7c, 0x20, 0x96, 0xa1, 0x55, 0x19, 0x16, 0x2e, 0xfe, 0xad, + 0xc1, 0x04, 0xb5, 0xd1, 0x3c, 0x6a, 0x29, 0xad, 0x76, 0x15, 0x57, 0x1b, 0xca, 0xff, 0xb7, 0xf6, + 0x2b, 0xcd, 0x56, 0x76, 0x06, 0xcd, 0xc1, 0x2c, 0xb7, 0x1f, 0x36, 0xea, 0x0d, 0x65, 0x6b, 0x73, + 0xbf, 0xd2, 0xca, 0x4a, 0xab, 0xdf, 0x85, 0xdd, 0x5c, 0x01, 0x17, 0x79, 0xb4, 0x04, 0xf9, 0x5a, + 0x79, 0x6b, 0x53, 0x79, 0x58, 0x5e, 0x6f, 0x2a, 0xf7, 0xd7, 0xf7, 0x9a, 0x2d, 0xe5, 0xbe, 0x72, + 0xb0, 0xfd, 0xac, 0x8a, 0x59, 0xc6, 0x65, 0xb8, 0xc1, 0xd1, 0x8d, 0xf5, 0xff, 0x4d, 0xc3, 0x92, + 0x1b, 0xfc, 0x60, 0x73, 0xbd, 0xa9, 0x94, 0x1f, 0x30, 0xb4, 0x3c, 0x46, 0x43, 0x68, 0x11, 0xae, + 0x4f, 0xa6, 0xde, 0x70, 0xd0, 0x6c, 0xd8, 0x0d, 0xf5, 0x66, 0x1e, 0xa3, 0x11, 0xb4, 0x02, 0xb7, + 0x2e, 0xaa, 0x4a, 0xa9, 0xc9, 0x4f, 0x6a, 0xca, 0x61, 0xa3, 0x2d, 0x37, 0xea, 0xd9, 0x28, 0xba, + 0x03, 0xff, 0xb9, 0xb0, 0x42, 0x9f, 0x6b, 0xcc, 0x4d, 0x1a, 0x50, 0xad, 0xcf, 0x33, 0x8e, 0x6e, + 0xc3, 0xcd, 0x0b, 0x2a, 0xf7, 0x39, 0x26, 0xdc, 0x94, 0x01, 0xbb, 0xf0, 0x79, 0x26, 0xcb, 0xbf, + 0x84, 0x20, 0x2e, 0x8e, 0x01, 0xed, 0x42, 0xda, 0xf7, 0xdf, 0x08, 0x5a, 0x76, 0x19, 0x18, 0xf4, + 0x9f, 0xc9, 0x42, 0x20, 0x41, 0x59, 0x16, 0x9f, 0x78, 0x7b, 0xb2, 0x04, 0x89, 0xfa, 0x05, 0x59, + 0x6a, 0x90, 0xf2, 0xb4, 0x08, 0x5a, 0x74, 0x9d, 0xa6, 0x7b, 0x78, 0x61, 0x29, 0x18, 0x14, 0x5d, + 0xb5, 0x0b, 0x69, 0x5f, 0xa7, 0x78, 0xea, 0x09, 0xea, 0xa0, 0xe0, 0x7a, 0x2a, 0x7b, 0x5f, 0xdd, + 0xec, 0xea, 0xf4, 0x64, 0x78, 0x5c, 0xea, 0x98, 0xfd, 0x35, 0xe1, 0xb1, 0xc6, 0xff, 0x54, 0xea, + 0x98, 0xbd, 0xb1, 0xe1, 0x4d, 0x28, 0x7d, 0xa0, 0x9f, 0x91, 0x7d, 0x9d, 0x96, 0x9a, 0x0c, 0xfa, + 0x23, 0x94, 0x11, 0xeb, 0x47, 0x8f, 0xb8, 0xe1, 0x38, 0xc6, 0x43, 0xee, 0xff, 0x15, 0x00, 0x00, + 0xff, 0xff, 0x87, 0x00, 0xf3, 0x75, 0xd5, 0x12, 0x00, 0x00, } From 216a016bfb2265379e20bb34feb36e45a96ac786 Mon Sep 17 00:00:00 2001 From: Milos Pesic Date: Sat, 24 Jan 2026 01:11:54 +0100 Subject: [PATCH 6/7] add token pagination to the response --- protobufs/livekit_ingress.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protobufs/livekit_ingress.proto b/protobufs/livekit_ingress.proto index c932b4201..cdbc29fb0 100644 --- a/protobufs/livekit_ingress.proto +++ b/protobufs/livekit_ingress.proto @@ -212,7 +212,9 @@ message ListIngressRequest { } message ListIngressResponse { + TokenPagination next_page_token = 2; repeated IngressInfo items = 1; + // next field id: 3 } message DeleteIngressRequest { From 54c59882bb8257b294bd078cf9834ba3a17e5c51 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Jan 2026 00:12:47 +0000 Subject: [PATCH 7/7] generated protobuf --- livekit/livekit_ingress.pb.go | 44 ++++--- livekit/livekit_ingress.twirp.go | 201 ++++++++++++++++--------------- 2 files changed, 128 insertions(+), 117 deletions(-) diff --git a/livekit/livekit_ingress.pb.go b/livekit/livekit_ingress.pb.go index 01c478312..b4bef6b53 100644 --- a/livekit/livekit_ingress.pb.go +++ b/livekit/livekit_ingress.pb.go @@ -1344,7 +1344,8 @@ func (x *ListIngressRequest) GetIngressId() string { type ListIngressResponse struct { state protoimpl.MessageState `protogen:"open.v1"` - Items []*IngressInfo `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` + NextPageToken *TokenPagination `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` + Items []*IngressInfo `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` // next field id: 3 unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -1379,6 +1380,13 @@ func (*ListIngressResponse) Descriptor() ([]byte, []int) { return file_livekit_ingress_proto_rawDescGZIP(), []int{11} } +func (x *ListIngressResponse) GetNextPageToken() *TokenPagination { + if x != nil { + return x.NextPageToken + } + return nil +} + func (x *ListIngressResponse) GetItems() []*IngressInfo { if x != nil { return x.Items @@ -1558,8 +1566,9 @@ const file_livekit_ingress_proto_rawDesc = "" + "page_token\x18\x03 \x01(\v2\x18.livekit.TokenPaginationR\tpageToken\x12\x1b\n" + "\troom_name\x18\x01 \x01(\tR\broomName\x12\x1d\n" + "\n" + - "ingress_id\x18\x02 \x01(\tR\tingressId\"A\n" + - "\x13ListIngressResponse\x12*\n" + + "ingress_id\x18\x02 \x01(\tR\tingressId\"\x83\x01\n" + + "\x13ListIngressResponse\x12@\n" + + "\x0fnext_page_token\x18\x02 \x01(\v2\x18.livekit.TokenPaginationR\rnextPageToken\x12*\n" + "\x05items\x18\x01 \x03(\v2\x14.livekit.IngressInfoR\x05items\"5\n" + "\x14DeleteIngressRequest\x12\x1d\n" + "\n" + @@ -1653,20 +1662,21 @@ var file_livekit_ingress_proto_depIdxs = []int32{ 5, // 20: livekit.UpdateIngressRequest.audio:type_name -> livekit.IngressAudioOptions 6, // 21: livekit.UpdateIngressRequest.video:type_name -> livekit.IngressVideoOptions 22, // 22: livekit.ListIngressRequest.page_token:type_name -> livekit.TokenPagination - 9, // 23: livekit.ListIngressResponse.items:type_name -> livekit.IngressInfo - 4, // 24: livekit.Ingress.CreateIngress:input_type -> livekit.CreateIngressRequest - 13, // 25: livekit.Ingress.UpdateIngress:input_type -> livekit.UpdateIngressRequest - 14, // 26: livekit.Ingress.ListIngress:input_type -> livekit.ListIngressRequest - 16, // 27: livekit.Ingress.DeleteIngress:input_type -> livekit.DeleteIngressRequest - 9, // 28: livekit.Ingress.CreateIngress:output_type -> livekit.IngressInfo - 9, // 29: livekit.Ingress.UpdateIngress:output_type -> livekit.IngressInfo - 15, // 30: livekit.Ingress.ListIngress:output_type -> livekit.ListIngressResponse - 9, // 31: livekit.Ingress.DeleteIngress:output_type -> livekit.IngressInfo - 28, // [28:32] is the sub-list for method output_type - 24, // [24:28] is the sub-list for method input_type - 24, // [24:24] is the sub-list for extension type_name - 24, // [24:24] is the sub-list for extension extendee - 0, // [0:24] is the sub-list for field type_name + 22, // 23: livekit.ListIngressResponse.next_page_token:type_name -> livekit.TokenPagination + 9, // 24: livekit.ListIngressResponse.items:type_name -> livekit.IngressInfo + 4, // 25: livekit.Ingress.CreateIngress:input_type -> livekit.CreateIngressRequest + 13, // 26: livekit.Ingress.UpdateIngress:input_type -> livekit.UpdateIngressRequest + 14, // 27: livekit.Ingress.ListIngress:input_type -> livekit.ListIngressRequest + 16, // 28: livekit.Ingress.DeleteIngress:input_type -> livekit.DeleteIngressRequest + 9, // 29: livekit.Ingress.CreateIngress:output_type -> livekit.IngressInfo + 9, // 30: livekit.Ingress.UpdateIngress:output_type -> livekit.IngressInfo + 15, // 31: livekit.Ingress.ListIngress:output_type -> livekit.ListIngressResponse + 9, // 32: livekit.Ingress.DeleteIngress:output_type -> livekit.IngressInfo + 29, // [29:33] is the sub-list for method output_type + 25, // [25:29] is the sub-list for method input_type + 25, // [25:25] is the sub-list for extension type_name + 25, // [25:25] is the sub-list for extension extendee + 0, // [0:25] is the sub-list for field type_name } func init() { file_livekit_ingress_proto_init() } diff --git a/livekit/livekit_ingress.twirp.go b/livekit/livekit_ingress.twirp.go index 0195ea3d7..49a163eb7 100644 --- a/livekit/livekit_ingress.twirp.go +++ b/livekit/livekit_ingress.twirp.go @@ -1356,104 +1356,105 @@ func (s *ingressServer) PathPrefix() string { } var twirpFileDescriptor2 = []byte{ - // 1578 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x6f, 0xdb, 0xc6, - 0x12, 0x36, 0xf5, 0x5b, 0xa3, 0x48, 0x56, 0xd6, 0x72, 0xa2, 0xf8, 0xc7, 0x7b, 0x82, 0x92, 0xf7, - 0xe2, 0x38, 0x81, 0x6c, 0x2b, 0x8e, 0xf3, 0x5e, 0xd0, 0x14, 0xb5, 0x6c, 0x39, 0x22, 0x6c, 0x4b, - 0xc2, 0x4a, 0x4e, 0x91, 0x5e, 0x08, 0x5a, 0xdc, 0xc8, 0x84, 0x25, 0x52, 0x25, 0x57, 0x6e, 0xd4, - 0x20, 0xb7, 0x1e, 0xd2, 0x6b, 0xd1, 0x7b, 0x0f, 0x45, 0x2f, 0xf9, 0x73, 0x7a, 0x2f, 0x7a, 0x2f, - 0x72, 0xee, 0xb9, 0xd8, 0xe5, 0x8a, 0x26, 0x25, 0x3a, 0x70, 0x92, 0xa2, 0xc8, 0x8d, 0x3b, 0xdf, - 0xcc, 0x70, 0x96, 0xfb, 0xcd, 0x37, 0x2b, 0xc1, 0x7c, 0x4f, 0x3f, 0x23, 0xa7, 0x3a, 0x55, 0x74, - 0xa3, 0x6b, 0x11, 0xdb, 0x2e, 0x0d, 0x2c, 0x93, 0x9a, 0x28, 0x2e, 0xcc, 0x0b, 0xb9, 0x31, 0xde, - 0x37, 0x35, 0xd2, 0x13, 0xf0, 0x42, 0xae, 0x67, 0x76, 0xbb, 0xc4, 0x5a, 0x33, 0x07, 0x54, 0x37, - 0x0d, 0x61, 0x2d, 0xfe, 0x1e, 0x81, 0xdc, 0x8e, 0x45, 0x54, 0x4a, 0x64, 0x27, 0x19, 0x26, 0x5f, - 0x0f, 0x89, 0x4d, 0xd1, 0x26, 0x80, 0x6e, 0x0c, 0x86, 0x54, 0xa1, 0xa3, 0x01, 0xc9, 0x4b, 0x05, - 0x69, 0x25, 0x53, 0x9e, 0x2f, 0x89, 0xcc, 0x25, 0xe1, 0x2c, 0x33, 0x0f, 0x9c, 0xe4, 0x8e, 0xed, - 0xd1, 0x80, 0xa0, 0x2c, 0x84, 0x87, 0x56, 0x2f, 0x9f, 0x2c, 0x48, 0x2b, 0x49, 0xcc, 0x1e, 0x11, - 0x82, 0x88, 0xa1, 0xf6, 0x49, 0x3e, 0xc4, 0x4d, 0xfc, 0x19, 0x2d, 0x42, 0xd2, 0x32, 0xcd, 0xbe, - 0xc2, 0x81, 0x30, 0x07, 0x12, 0xcc, 0x50, 0x67, 0xe0, 0x06, 0xe4, 0x06, 0xaa, 0x45, 0xf5, 0x8e, - 0x3e, 0x50, 0x0d, 0xaa, 0xe8, 0x1a, 0x31, 0xa8, 0x4e, 0x47, 0xf9, 0x08, 0xf7, 0x9b, 0xf3, 0x60, - 0xb2, 0x80, 0xd0, 0x1a, 0x64, 0xbd, 0x21, 0x3c, 0x6d, 0x94, 0xb9, 0x57, 0x22, 0xaf, 0xdf, 0xde, - 0x93, 0xf0, 0xac, 0x07, 0xe5, 0xef, 0x78, 0xe6, 0x7f, 0x47, 0x9f, 0x50, 0x55, 0x53, 0xa9, 0x9a, - 0x07, 0x1e, 0xf4, 0x5f, 0x16, 0xf4, 0xc3, 0xdb, 0x7b, 0xff, 0xfa, 0xcc, 0x22, 0x9a, 0xda, 0xa1, - 0x44, 0x2b, 0xac, 0xbc, 0x7c, 0x59, 0x28, 0xb5, 0xf4, 0x6f, 0x49, 0xe1, 0xd5, 0xab, 0xc2, 0xf1, - 0x88, 0x12, 0xfb, 0xce, 0xe7, 0xbe, 0x5a, 0x0e, 0x45, 0x0a, 0xb4, 0x01, 0xe8, 0x78, 0x34, 0x50, - 0x6d, 0x5b, 0xa1, 0x96, 0x6a, 0xd8, 0x1d, 0x53, 0xd3, 0x8d, 0x6e, 0x3e, 0x51, 0x90, 0x56, 0x12, - 0x95, 0x50, 0x5e, 0xc2, 0x57, 0x1d, 0xb4, 0x7d, 0x0e, 0xa2, 0x32, 0x20, 0x62, 0xa8, 0xc7, 0x3d, - 0xe2, 0x0b, 0x49, 0xb1, 0x90, 0xda, 0x0c, 0xbe, 0xea, 0x60, 0x9e, 0x80, 0xd7, 0x92, 0x84, 0xca, - 0x10, 0x55, 0x87, 0x9a, 0x6e, 0xe6, 0x63, 0x05, 0x69, 0x25, 0x55, 0x5e, 0x9a, 0x3c, 0x99, 0x6d, - 0x06, 0x36, 0x9c, 0xa3, 0xc6, 0x8e, 0x2b, 0x8b, 0x39, 0xd3, 0x35, 0x62, 0xe6, 0xe3, 0xc1, 0x31, - 0x4f, 0x19, 0xe8, 0xc6, 0x70, 0x57, 0xb4, 0x0c, 0x71, 0xe7, 0xfd, 0x5a, 0xfe, 0x0a, 0x2f, 0x48, - 0xc2, 0x63, 0xc3, 0x6b, 0x49, 0xaa, 0xcc, 0xc3, 0x9c, 0x32, 0x5d, 0x7b, 0x05, 0x20, 0x21, 0xcc, - 0x5a, 0xf1, 0xad, 0x04, 0x73, 0x01, 0x45, 0xb9, 0xc4, 0x90, 0x3c, 0xc4, 0xb8, 0x07, 0x31, 0xdb, - 0x1c, 0x5a, 0x1d, 0x87, 0x2e, 0x99, 0x72, 0xce, 0x2d, 0xb1, 0x6d, 0xa9, 0x9d, 0xd3, 0x16, 0xc7, - 0xb0, 0xf0, 0x41, 0x8f, 0x21, 0x36, 0xb0, 0x88, 0x4d, 0x28, 0xe7, 0x50, 0xa6, 0x7c, 0x33, 0xf0, - 0x23, 0x54, 0x0d, 0xa7, 0xa8, 0x26, 0x77, 0xad, 0xcd, 0x60, 0x11, 0x84, 0xbe, 0x80, 0xb8, 0xe8, - 0x05, 0xce, 0xad, 0x54, 0xf9, 0xd6, 0x3b, 0xe3, 0x45, 0xdd, 0xb5, 0x19, 0x3c, 0x0e, 0xab, 0x20, - 0xc8, 0x12, 0x81, 0x2a, 0xc2, 0xe6, 0xdd, 0xae, 0xf7, 0x7b, 0xfe, 0x13, 0xdb, 0xe5, 0xef, 0xfb, - 0x88, 0xed, 0xfa, 0xe2, 0x2f, 0xb9, 0xdd, 0x37, 0x12, 0x2c, 0xbe, 0xe3, 0x6b, 0xa1, 0x4d, 0x48, - 0x71, 0xf2, 0x29, 0x1d, 0x53, 0x23, 0x1d, 0xa1, 0x23, 0x73, 0xee, 0x9b, 0x79, 0xcc, 0x0e, 0x83, - 0x30, 0xa8, 0xee, 0x33, 0xca, 0x43, 0xfc, 0x58, 0xa7, 0x96, 0x4a, 0x9d, 0x2f, 0x93, 0xc6, 0xe3, - 0x25, 0xfa, 0x37, 0xa4, 0x34, 0xdd, 0xe6, 0x84, 0xd3, 0xe8, 0x0b, 0xfe, 0x25, 0x12, 0x18, 0x84, - 0x69, 0x97, 0xbe, 0x40, 0x0b, 0x90, 0xe8, 0x9c, 0xa8, 0x86, 0x41, 0x7a, 0xce, 0x3e, 0xd3, 0xd8, - 0x5d, 0x17, 0x7f, 0x3a, 0x2f, 0x36, 0x68, 0xaf, 0xac, 0x58, 0xce, 0xfa, 0x0b, 0x8a, 0xe5, 0x31, - 0xa2, 0xd8, 0x33, 0xf7, 0x19, 0x2d, 0x03, 0x3c, 0xb7, 0xd4, 0x3e, 0x51, 0xdc, 0x7a, 0x25, 0x9c, - 0xe4, 0x16, 0xcc, 0x2a, 0xbe, 0x0b, 0xb1, 0x9e, 0x3a, 0x22, 0x96, 0x9d, 0x0f, 0x17, 0xc2, 0x2b, - 0xa9, 0xc9, 0x7c, 0x07, 0x0c, 0xc3, 0xc2, 0xa5, 0xf8, 0x5b, 0x14, 0x52, 0xae, 0xb6, 0x3e, 0x67, - 0xed, 0x07, 0x42, 0xe4, 0x15, 0x5d, 0x13, 0xdc, 0x49, 0x0a, 0x8b, 0xac, 0x05, 0x8a, 0xeb, 0x32, - 0x80, 0x4d, 0x2d, 0xa2, 0xf6, 0x95, 0x53, 0x32, 0x12, 0xea, 0x9a, 0x74, 0x2c, 0xfb, 0x64, 0x34, - 0x56, 0xe8, 0xc8, 0xb9, 0x42, 0xfb, 0x95, 0x3e, 0x7a, 0x49, 0xa5, 0x0f, 0xd6, 0xb9, 0xf4, 0xfb, - 0xeb, 0xdc, 0xec, 0x27, 0xa1, 0x73, 0xbe, 0x91, 0x94, 0xb8, 0xe4, 0x48, 0x4a, 0xbe, 0xdf, 0x48, - 0x82, 0x0f, 0x19, 0x49, 0x99, 0x8f, 0x1f, 0x49, 0x0b, 0x90, 0xb0, 0xc8, 0x90, 0x77, 0x88, 0x33, - 0x55, 0xb0, 0xbb, 0x46, 0x77, 0x21, 0x6a, 0x53, 0xc6, 0xdb, 0x2b, 0xfc, 0x5b, 0x4d, 0x9d, 0x7b, - 0x8b, 0x81, 0xd8, 0xf1, 0xf1, 0x0e, 0x83, 0xec, 0x87, 0x0d, 0x83, 0x3f, 0xc3, 0x70, 0xc5, 0x9b, - 0x19, 0x6d, 0x42, 0x8c, 0xe5, 0x1e, 0xda, 0xa2, 0xdb, 0x96, 0x02, 0x0b, 0x28, 0xb5, 0xb8, 0x0f, - 0x16, 0xbe, 0x28, 0x07, 0x51, 0x62, 0x59, 0xa6, 0x25, 0x88, 0xef, 0x2c, 0x50, 0x69, 0x7c, 0xee, - 0x61, 0xbe, 0x97, 0xbc, 0x27, 0xd5, 0x60, 0x48, 0xf9, 0xa9, 0x8b, 0xed, 0x38, 0x67, 0x5e, 0x1a, - 0x73, 0x2b, 0x12, 0xe4, 0xcf, 0x99, 0x25, 0xfc, 0x1d, 0x5e, 0x5d, 0x87, 0x38, 0xe7, 0x88, 0xae, - 0x39, 0xb7, 0x0b, 0x1c, 0x63, 0x4b, 0x59, 0x73, 0x5a, 0x4e, 0xb5, 0x28, 0xd1, 0x14, 0x95, 0x72, - 0xd6, 0x85, 0x59, 0xcb, 0x71, 0xcb, 0x36, 0x45, 0x37, 0x20, 0x41, 0x0c, 0xcd, 0x01, 0x13, 0x1c, - 0x8c, 0xf3, 0xf5, 0x36, 0x65, 0x91, 0xc3, 0x81, 0xa6, 0x8a, 0x48, 0x70, 0x22, 0x85, 0x65, 0x9b, - 0x32, 0xb5, 0xb3, 0x88, 0x23, 0xff, 0xec, 0xad, 0x0e, 0xdf, 0x60, 0x6c, 0x92, 0x35, 0xb4, 0x0a, - 0x31, 0xca, 0x46, 0x85, 0x9d, 0x8f, 0x71, 0x71, 0x41, 0xfe, 0x09, 0xc2, 0x34, 0x04, 0x0b, 0x8f, - 0xe2, 0x4b, 0x88, 0x39, 0x9f, 0x11, 0xcd, 0xc3, 0xd5, 0x6a, 0x7d, 0xb7, 0xd9, 0x90, 0xeb, 0x6d, - 0x45, 0xae, 0x6f, 0xef, 0xb4, 0xe5, 0xa7, 0xd5, 0xec, 0x0c, 0xba, 0x06, 0xc8, 0x35, 0x57, 0x8e, - 0xf6, 0xf6, 0xaa, 0x58, 0xae, 0x3f, 0xc9, 0x4a, 0xe8, 0x3a, 0xcc, 0xb9, 0xf6, 0xe6, 0x51, 0xe5, - 0x40, 0x6e, 0xd5, 0x18, 0x10, 0x42, 0x08, 0x32, 0x2e, 0x50, 0xc5, 0xb8, 0x81, 0xb3, 0x61, 0x5f, - 0xee, 0x9d, 0xc6, 0x61, 0xf3, 0xa0, 0xda, 0xae, 0x66, 0x23, 0xc5, 0x9f, 0x25, 0x98, 0x9d, 0x38, - 0x06, 0xd6, 0x73, 0x7d, 0xbd, 0x4f, 0xce, 0x6f, 0x98, 0x49, 0x9c, 0x60, 0x06, 0xae, 0x2f, 0xb7, - 0x61, 0x56, 0x3d, 0x23, 0x96, 0xda, 0x25, 0x8a, 0x7f, 0x14, 0x64, 0x84, 0xb9, 0x22, 0x26, 0x42, - 0x0e, 0xa2, 0xdf, 0xe8, 0x1a, 0x3d, 0xe1, 0xa7, 0x9e, 0xc6, 0xce, 0x02, 0x5d, 0x83, 0xd8, 0x09, - 0xd1, 0xbb, 0x27, 0x54, 0x0c, 0x01, 0xb1, 0x42, 0x4b, 0xe0, 0x48, 0x33, 0x4f, 0x18, 0xf5, 0x68, - 0x35, 0x33, 0x14, 0x7f, 0x1c, 0x57, 0x79, 0x7e, 0xf8, 0x7f, 0x53, 0x95, 0xde, 0xb1, 0x14, 0xf6, - 0x8f, 0x25, 0x76, 0xca, 0xb6, 0xda, 0x1f, 0xf4, 0xc4, 0x04, 0x71, 0x0a, 0x06, 0xc7, 0xc4, 0x46, - 0x48, 0xf1, 0xd7, 0x08, 0xe4, 0x8e, 0x38, 0x29, 0x26, 0x2e, 0xe9, 0x1f, 0x30, 0x1e, 0x3e, 0xd9, - 0xbb, 0x77, 0xf2, 0xe3, 0x85, 0x6e, 0xeb, 0xdd, 0x77, 0x6f, 0x36, 0x64, 0xa6, 0xa6, 0x92, 0x33, - 0x64, 0x82, 0x06, 0x13, 0x08, 0x89, 0xfb, 0x64, 0x2e, 0xe0, 0xce, 0x2f, 0x82, 0xd0, 0x94, 0xe6, - 0x4e, 0xef, 0xf9, 0x32, 0x52, 0xfc, 0xbd, 0x04, 0xe8, 0x40, 0xb7, 0xe9, 0x04, 0xa5, 0x1e, 0x02, - 0x0c, 0x18, 0x9d, 0xa9, 0x79, 0x4a, 0x8c, 0x29, 0x25, 0x6d, 0x33, 0x6b, 0x53, 0xed, 0xea, 0x86, - 0xca, 0xaa, 0xc4, 0x49, 0xe6, 0xcb, 0x8d, 0x7e, 0x62, 0x49, 0x13, 0xc4, 0xf2, 0x13, 0x35, 0x34, - 0x41, 0xd4, 0xe2, 0x36, 0xcc, 0xf9, 0x4a, 0xb1, 0x07, 0xa6, 0x61, 0x13, 0xb4, 0x0a, 0x51, 0x9d, - 0x92, 0x3e, 0x9b, 0x0d, 0x4c, 0xdc, 0x72, 0xd3, 0x97, 0x92, 0xe7, 0x26, 0x76, 0x5c, 0x8a, 0x0f, - 0x20, 0xb7, 0x4b, 0x7a, 0xe4, 0x3d, 0x5b, 0x64, 0xf5, 0xb1, 0x3b, 0x8f, 0x78, 0xdf, 0xa3, 0x0c, - 0x00, 0x6e, 0x1f, 0x36, 0x15, 0xb9, 0xde, 0x3c, 0x6a, 0x67, 0x67, 0xd8, 0xfa, 0xcb, 0x9a, 0x3c, - 0x5e, 0x4b, 0x28, 0x0d, 0xc9, 0x23, 0x7c, 0x20, 0x96, 0xa1, 0x55, 0x19, 0x16, 0x2e, 0xfe, 0xad, - 0xc1, 0x04, 0xb5, 0xd1, 0x3c, 0x6a, 0x29, 0xad, 0x76, 0x15, 0x57, 0x1b, 0xca, 0xff, 0xb7, 0xf6, - 0x2b, 0xcd, 0x56, 0x76, 0x06, 0xcd, 0xc1, 0x2c, 0xb7, 0x1f, 0x36, 0xea, 0x0d, 0x65, 0x6b, 0x73, - 0xbf, 0xd2, 0xca, 0x4a, 0xab, 0xdf, 0x85, 0xdd, 0x5c, 0x01, 0x17, 0x79, 0xb4, 0x04, 0xf9, 0x5a, - 0x79, 0x6b, 0x53, 0x79, 0x58, 0x5e, 0x6f, 0x2a, 0xf7, 0xd7, 0xf7, 0x9a, 0x2d, 0xe5, 0xbe, 0x72, - 0xb0, 0xfd, 0xac, 0x8a, 0x59, 0xc6, 0x65, 0xb8, 0xc1, 0xd1, 0x8d, 0xf5, 0xff, 0x4d, 0xc3, 0x92, - 0x1b, 0xfc, 0x60, 0x73, 0xbd, 0xa9, 0x94, 0x1f, 0x30, 0xb4, 0x3c, 0x46, 0x43, 0x68, 0x11, 0xae, - 0x4f, 0xa6, 0xde, 0x70, 0xd0, 0x6c, 0xd8, 0x0d, 0xf5, 0x66, 0x1e, 0xa3, 0x11, 0xb4, 0x02, 0xb7, - 0x2e, 0xaa, 0x4a, 0xa9, 0xc9, 0x4f, 0x6a, 0xca, 0x61, 0xa3, 0x2d, 0x37, 0xea, 0xd9, 0x28, 0xba, - 0x03, 0xff, 0xb9, 0xb0, 0x42, 0x9f, 0x6b, 0xcc, 0x4d, 0x1a, 0x50, 0xad, 0xcf, 0x33, 0x8e, 0x6e, - 0xc3, 0xcd, 0x0b, 0x2a, 0xf7, 0x39, 0x26, 0xdc, 0x94, 0x01, 0xbb, 0xf0, 0x79, 0x26, 0xcb, 0xbf, - 0x84, 0x20, 0x2e, 0x8e, 0x01, 0xed, 0x42, 0xda, 0xf7, 0xdf, 0x08, 0x5a, 0x76, 0x19, 0x18, 0xf4, - 0x9f, 0xc9, 0x42, 0x20, 0x41, 0x59, 0x16, 0x9f, 0x78, 0x7b, 0xb2, 0x04, 0x89, 0xfa, 0x05, 0x59, - 0x6a, 0x90, 0xf2, 0xb4, 0x08, 0x5a, 0x74, 0x9d, 0xa6, 0x7b, 0x78, 0x61, 0x29, 0x18, 0x14, 0x5d, - 0xb5, 0x0b, 0x69, 0x5f, 0xa7, 0x78, 0xea, 0x09, 0xea, 0xa0, 0xe0, 0x7a, 0x2a, 0x7b, 0x5f, 0xdd, - 0xec, 0xea, 0xf4, 0x64, 0x78, 0x5c, 0xea, 0x98, 0xfd, 0x35, 0xe1, 0xb1, 0xc6, 0xff, 0x54, 0xea, - 0x98, 0xbd, 0xb1, 0xe1, 0x4d, 0x28, 0x7d, 0xa0, 0x9f, 0x91, 0x7d, 0x9d, 0x96, 0x9a, 0x0c, 0xfa, - 0x23, 0x94, 0x11, 0xeb, 0x47, 0x8f, 0xb8, 0xe1, 0x38, 0xc6, 0x43, 0xee, 0xff, 0x15, 0x00, 0x00, - 0xff, 0xff, 0x87, 0x00, 0xf3, 0x75, 0xd5, 0x12, 0x00, 0x00, + // 1599 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x6f, 0xdb, 0x46, + 0x16, 0x36, 0xf5, 0x5b, 0x4f, 0x91, 0xac, 0x8c, 0xe5, 0x44, 0xf1, 0x8f, 0x5d, 0x41, 0xc9, 0x6e, + 0x1c, 0x27, 0x90, 0x6d, 0xc5, 0x71, 0x76, 0x83, 0xcd, 0x22, 0x96, 0x2d, 0x47, 0x84, 0x6d, 0x49, + 0x18, 0xc9, 0x59, 0x64, 0x2f, 0x04, 0x2d, 0x4e, 0x64, 0xc2, 0x12, 0xa9, 0x25, 0x47, 0xde, 0xa8, + 0x41, 0x4e, 0xed, 0x21, 0xbd, 0x16, 0xbd, 0xf7, 0x50, 0xf4, 0x92, 0x3f, 0xa7, 0xf7, 0xa2, 0xf7, + 0x22, 0xe7, 0x9e, 0x8b, 0x19, 0x8e, 0x68, 0x52, 0xa2, 0x53, 0x27, 0x29, 0x8a, 0xdc, 0x38, 0xef, + 0x7b, 0xef, 0xcd, 0x37, 0x33, 0x6f, 0xbe, 0x37, 0x12, 0xcc, 0xf7, 0xf4, 0x33, 0x72, 0xaa, 0x53, + 0x45, 0x37, 0xba, 0x16, 0xb1, 0xed, 0xd2, 0xc0, 0x32, 0xa9, 0x89, 0xe2, 0xc2, 0xbc, 0x90, 0x1b, + 0xe3, 0x7d, 0x53, 0x23, 0x3d, 0x01, 0x2f, 0xe4, 0x7a, 0x66, 0xb7, 0x4b, 0xac, 0x35, 0x73, 0x40, + 0x75, 0xd3, 0x10, 0xd6, 0xe2, 0xcf, 0x11, 0xc8, 0xed, 0x58, 0x44, 0xa5, 0x44, 0x76, 0x92, 0x61, + 0xf2, 0xbf, 0x21, 0xb1, 0x29, 0xda, 0x04, 0xd0, 0x8d, 0xc1, 0x90, 0x2a, 0x74, 0x34, 0x20, 0x79, + 0xa9, 0x20, 0xad, 0x64, 0xca, 0xf3, 0x25, 0x91, 0xb9, 0x24, 0x9c, 0x65, 0xe6, 0x81, 0x93, 0xdc, + 0xb1, 0x3d, 0x1a, 0x10, 0x94, 0x85, 0xf0, 0xd0, 0xea, 0xe5, 0x93, 0x05, 0x69, 0x25, 0x89, 0xd9, + 0x27, 0x42, 0x10, 0x31, 0xd4, 0x3e, 0xc9, 0x87, 0xb8, 0x89, 0x7f, 0xa3, 0x45, 0x48, 0x5a, 0xa6, + 0xd9, 0x57, 0x38, 0x10, 0xe6, 0x40, 0x82, 0x19, 0xea, 0x0c, 0xdc, 0x80, 0xdc, 0x40, 0xb5, 0xa8, + 0xde, 0xd1, 0x07, 0xaa, 0x41, 0x15, 0x5d, 0x23, 0x06, 0xd5, 0xe9, 0x28, 0x1f, 0xe1, 0x7e, 0x73, + 0x1e, 0x4c, 0x16, 0x10, 0x5a, 0x83, 0xac, 0x37, 0x84, 0xa7, 0x8d, 0x32, 0xf7, 0x4a, 0xe4, 0xcd, + 0xbb, 0x7b, 0x12, 0x9e, 0xf5, 0xa0, 0x7c, 0x8e, 0xe7, 0xfe, 0x39, 0xfa, 0x84, 0xaa, 0x9a, 0x4a, + 0xd5, 0x3c, 0xf0, 0xa0, 0xbf, 0xb3, 0xa0, 0x6f, 0xde, 0xdd, 0xfb, 0xcb, 0xbf, 0x2c, 0xa2, 0xa9, + 0x1d, 0x4a, 0xb4, 0xc2, 0xca, 0xab, 0x57, 0x85, 0x52, 0x4b, 0xff, 0x82, 0x14, 0x5e, 0xbf, 0x2e, + 0x1c, 0x8f, 0x28, 0xb1, 0xef, 0xfc, 0xdb, 0xc7, 0xe5, 0x50, 0xa4, 0x40, 0x1b, 0x80, 0x8e, 0x47, + 0x03, 0xd5, 0xb6, 0x15, 0x6a, 0xa9, 0x86, 0xdd, 0x31, 0x35, 0xdd, 0xe8, 0xe6, 0x13, 0x05, 0x69, + 0x25, 0x51, 0x09, 0xe5, 0x25, 0x7c, 0xd5, 0x41, 0xdb, 0xe7, 0x20, 0x2a, 0x03, 0x22, 0x86, 0x7a, + 0xdc, 0x23, 0xbe, 0x90, 0x14, 0x0b, 0xa9, 0xcd, 0xe0, 0xab, 0x0e, 0xe6, 0x09, 0x78, 0x23, 0x49, + 0xa8, 0x0c, 0x51, 0x75, 0xa8, 0xe9, 0x66, 0x3e, 0x56, 0x90, 0x56, 0x52, 0xe5, 0xa5, 0xc9, 0x93, + 0xd9, 0x66, 0x60, 0xc3, 0x39, 0x6a, 0xec, 0xb8, 0xb2, 0x98, 0x33, 0x5d, 0x23, 0x66, 0x3e, 0x1e, + 0x1c, 0xf3, 0x8c, 0x81, 0x6e, 0x0c, 0x77, 0x45, 0xcb, 0x10, 0x77, 0xe6, 0xd7, 0xf2, 0x57, 0x38, + 0x21, 0x09, 0x8f, 0x0d, 0x6f, 0x24, 0xa9, 0x32, 0x0f, 0x73, 0xca, 0x34, 0xf7, 0x0a, 0x40, 0x42, + 0x98, 0xb5, 0xe2, 0x3b, 0x09, 0xe6, 0x02, 0x48, 0xb9, 0x85, 0x21, 0x79, 0x0a, 0xe3, 0x1e, 0xc4, + 0x6c, 0x73, 0x68, 0x75, 0x9c, 0x72, 0xc9, 0x94, 0x73, 0x2e, 0xc5, 0xb6, 0xa5, 0x76, 0x4e, 0x5b, + 0x1c, 0xc3, 0xc2, 0x07, 0x3d, 0x86, 0xd8, 0xc0, 0x22, 0x36, 0xa1, 0xbc, 0x86, 0x32, 0xe5, 0x9b, + 0x81, 0x9b, 0x50, 0x35, 0x1c, 0x52, 0x4d, 0xee, 0x5a, 0x9b, 0xc1, 0x22, 0x08, 0x3d, 0x81, 0xb8, + 0xb8, 0x0b, 0xbc, 0xb6, 0x52, 0xe5, 0x5b, 0xef, 0x8d, 0x17, 0xbc, 0x6b, 0x33, 0x78, 0x1c, 0x56, + 0x41, 0x90, 0x25, 0x02, 0x55, 0x84, 0xcd, 0xbb, 0x5c, 0xef, 0x7e, 0xfe, 0x19, 0xcb, 0xe5, 0xf3, + 0x7d, 0xc2, 0x72, 0x7d, 0xf1, 0x97, 0x5c, 0xee, 0x5b, 0x09, 0x16, 0xdf, 0xb3, 0x5b, 0x68, 0x13, + 0x52, 0xbc, 0xf8, 0x94, 0x8e, 0xa9, 0x91, 0x8e, 0xd0, 0x91, 0x39, 0x77, 0x66, 0x1e, 0xb3, 0xc3, + 0x20, 0x0c, 0xaa, 0xfb, 0x8d, 0xf2, 0x10, 0x3f, 0xd6, 0xa9, 0xa5, 0x52, 0x67, 0x67, 0xd2, 0x78, + 0x3c, 0x44, 0x7f, 0x85, 0x94, 0xa6, 0xdb, 0xbc, 0xe0, 0x34, 0xfa, 0x92, 0xef, 0x44, 0x02, 0x83, + 0x30, 0xed, 0xd2, 0x97, 0x68, 0x01, 0x12, 0x9d, 0x13, 0xd5, 0x30, 0x48, 0xcf, 0x59, 0x67, 0x1a, + 0xbb, 0xe3, 0xe2, 0x77, 0xe7, 0x64, 0x83, 0xd6, 0xca, 0xc8, 0xf2, 0xaa, 0xbf, 0x80, 0x2c, 0x8f, + 0x11, 0x64, 0xcf, 0xdc, 0x6f, 0xb4, 0x0c, 0xf0, 0xc2, 0x52, 0xfb, 0x44, 0x71, 0xf9, 0x4a, 0x38, + 0xc9, 0x2d, 0x98, 0x31, 0xbe, 0x0b, 0xb1, 0x9e, 0x3a, 0x22, 0x96, 0x9d, 0x0f, 0x17, 0xc2, 0x2b, + 0xa9, 0xc9, 0x7c, 0x07, 0x0c, 0xc3, 0xc2, 0xa5, 0xf8, 0x53, 0x14, 0x52, 0xae, 0xb6, 0xbe, 0x60, + 0xd7, 0x0f, 0x84, 0xc8, 0x2b, 0xba, 0x26, 0x6a, 0x27, 0x29, 0x2c, 0xb2, 0x16, 0x28, 0xae, 0xcb, + 0x00, 0x36, 0xb5, 0x88, 0xda, 0x57, 0x4e, 0xc9, 0x48, 0xa8, 0x6b, 0xd2, 0xb1, 0xec, 0x93, 0xd1, + 0x58, 0xa1, 0x23, 0xe7, 0x0a, 0xed, 0x57, 0xfa, 0xe8, 0x25, 0x95, 0x3e, 0x58, 0xe7, 0xd2, 0x1f, + 0xae, 0x73, 0xb3, 0x9f, 0x85, 0xce, 0xf9, 0x5a, 0x52, 0xe2, 0x92, 0x2d, 0x29, 0xf9, 0x61, 0x2d, + 0x09, 0x3e, 0xa6, 0x25, 0x65, 0x3e, 0xbd, 0x25, 0x2d, 0x40, 0xc2, 0x22, 0x43, 0x7e, 0x43, 0x9c, + 0xae, 0x82, 0xdd, 0x31, 0xba, 0x0b, 0x51, 0x9b, 0xb2, 0xba, 0xbd, 0xc2, 0xf7, 0x6a, 0xea, 0xdc, + 0x5b, 0x0c, 0xc4, 0x8e, 0x8f, 0xb7, 0x19, 0x64, 0x3f, 0xae, 0x19, 0xfc, 0x1a, 0x86, 0x2b, 0xde, + 0xcc, 0x68, 0x13, 0x62, 0x2c, 0xf7, 0xd0, 0x16, 0xb7, 0x6d, 0x29, 0x90, 0x40, 0xa9, 0xc5, 0x7d, + 0xb0, 0xf0, 0x45, 0x39, 0x88, 0x12, 0xcb, 0x32, 0x2d, 0x51, 0xf8, 0xce, 0x00, 0x95, 0xc6, 0xe7, + 0x1e, 0xe6, 0x6b, 0xc9, 0x7b, 0x52, 0x0d, 0x86, 0x94, 0x9f, 0xba, 0x58, 0x8e, 0x73, 0xe6, 0xa5, + 0x71, 0x6d, 0x45, 0x82, 0xfc, 0x79, 0x65, 0x09, 0x7f, 0xa7, 0xae, 0xae, 0x43, 0x9c, 0xd7, 0x88, + 0xae, 0x39, 0xaf, 0x0b, 0x1c, 0x63, 0x43, 0x59, 0x73, 0xae, 0x9c, 0x6a, 0x51, 0xa2, 0x29, 0x2a, + 0xe5, 0x55, 0x17, 0x66, 0x57, 0x8e, 0x5b, 0xb6, 0x29, 0xba, 0x01, 0x09, 0x62, 0x68, 0x0e, 0x98, + 0xe0, 0x60, 0x9c, 0x8f, 0xb7, 0x29, 0x8b, 0x1c, 0x0e, 0x34, 0x55, 0x44, 0x82, 0x13, 0x29, 0x2c, + 0xdb, 0x94, 0xa9, 0x9d, 0x45, 0x1c, 0xf9, 0x67, 0xb3, 0x3a, 0xf5, 0x06, 0x63, 0x93, 0xac, 0xa1, + 0x55, 0x88, 0x51, 0xd6, 0x2a, 0xec, 0x7c, 0x8c, 0x8b, 0x0b, 0xf2, 0x77, 0x10, 0xa6, 0x21, 0x58, + 0x78, 0x14, 0x5f, 0x41, 0xcc, 0xd9, 0x46, 0x34, 0x0f, 0x57, 0xab, 0xf5, 0xdd, 0x66, 0x43, 0xae, + 0xb7, 0x15, 0xb9, 0xbe, 0xbd, 0xd3, 0x96, 0x9f, 0x55, 0xb3, 0x33, 0xe8, 0x1a, 0x20, 0xd7, 0x5c, + 0x39, 0xda, 0xdb, 0xab, 0x62, 0xb9, 0xfe, 0x34, 0x2b, 0xa1, 0xeb, 0x30, 0xe7, 0xda, 0x9b, 0x47, + 0x95, 0x03, 0xb9, 0x55, 0x63, 0x40, 0x08, 0x21, 0xc8, 0xb8, 0x40, 0x15, 0xe3, 0x06, 0xce, 0x86, + 0x7d, 0xb9, 0x77, 0x1a, 0x87, 0xcd, 0x83, 0x6a, 0xbb, 0x9a, 0x8d, 0x14, 0xbf, 0x97, 0x60, 0x76, + 0xe2, 0x18, 0xd8, 0x9d, 0xeb, 0xeb, 0x7d, 0x72, 0xfe, 0xc2, 0x4c, 0xe2, 0x04, 0x33, 0x70, 0x7d, + 0xb9, 0x0d, 0xb3, 0xea, 0x19, 0xb1, 0xd4, 0x2e, 0x51, 0xfc, 0xad, 0x20, 0x23, 0xcc, 0x15, 0xd1, + 0x11, 0x72, 0x10, 0xfd, 0xbf, 0xae, 0xd1, 0x13, 0x7e, 0xea, 0x69, 0xec, 0x0c, 0xd0, 0x35, 0x88, + 0x9d, 0x10, 0xbd, 0x7b, 0x42, 0x45, 0x13, 0x10, 0x23, 0xb4, 0x04, 0x8e, 0x34, 0xf3, 0x84, 0x51, + 0x8f, 0x56, 0x33, 0x43, 0xf1, 0xdb, 0x31, 0xcb, 0xf3, 0xc3, 0xff, 0x83, 0x58, 0x7a, 0xdb, 0x52, + 0xd8, 0xdf, 0x96, 0xd8, 0x29, 0xdb, 0x6a, 0x7f, 0xd0, 0x13, 0x1d, 0xc4, 0x21, 0x0c, 0x8e, 0x89, + 0xb5, 0x90, 0xe2, 0x8f, 0x11, 0xc8, 0x1d, 0xf1, 0xa2, 0x98, 0x78, 0xa4, 0x7f, 0x44, 0x7b, 0xf8, + 0x6c, 0xdf, 0xde, 0xc9, 0x4f, 0x17, 0xba, 0xad, 0xf7, 0xbf, 0xbd, 0x59, 0x93, 0x99, 0xea, 0x4a, + 0x4e, 0x93, 0x09, 0x6a, 0x4c, 0x20, 0x24, 0xee, 0xb3, 0x79, 0x80, 0x3b, 0xbf, 0x08, 0x42, 0x53, + 0x9a, 0x3b, 0xbd, 0xe6, 0xcb, 0x48, 0xf1, 0xd7, 0x12, 0xa0, 0x03, 0xdd, 0xa6, 0x13, 0x25, 0xf5, + 0x10, 0x60, 0xc0, 0xca, 0x99, 0x9a, 0xa7, 0xc4, 0x98, 0x52, 0xd2, 0x36, 0xb3, 0x36, 0xd5, 0xae, + 0x6e, 0xa8, 0x8c, 0x25, 0x4e, 0x32, 0x5f, 0x6e, 0xf4, 0x17, 0x96, 0x34, 0x51, 0x58, 0xfe, 0x42, + 0x0d, 0x4d, 0x14, 0x6a, 0xf1, 0x4b, 0x09, 0xe6, 0x7c, 0x5c, 0xec, 0x81, 0x69, 0xd8, 0x04, 0x3d, + 0x81, 0x59, 0x83, 0xbc, 0xa4, 0x8a, 0x87, 0x51, 0xe8, 0x77, 0x18, 0xa5, 0x59, 0x40, 0xd3, 0x65, + 0xb5, 0x0a, 0x51, 0x9d, 0x92, 0x3e, 0x6b, 0x2f, 0x4c, 0x1f, 0x73, 0xd3, 0xef, 0x9a, 0x17, 0x26, + 0x76, 0x5c, 0x8a, 0x0f, 0x20, 0xb7, 0x4b, 0x7a, 0xe4, 0x03, 0x6f, 0xd9, 0xea, 0x63, 0xb7, 0xa5, + 0x71, 0xe9, 0x40, 0x19, 0x00, 0xdc, 0x3e, 0x6c, 0x2a, 0x72, 0xbd, 0x79, 0xd4, 0xce, 0xce, 0xb0, + 0xf1, 0x7f, 0x6a, 0xf2, 0x78, 0x2c, 0xa1, 0x34, 0x24, 0x8f, 0xf0, 0x81, 0x18, 0x86, 0x56, 0x65, + 0x58, 0xb8, 0xf8, 0xe7, 0x0a, 0xd3, 0xe4, 0x46, 0xf3, 0xa8, 0xa5, 0xb4, 0xda, 0x55, 0x5c, 0x6d, + 0x28, 0xff, 0xdc, 0xda, 0xaf, 0x34, 0x5b, 0xd9, 0x19, 0x34, 0x07, 0xb3, 0xdc, 0x7e, 0xd8, 0xa8, + 0x37, 0x94, 0xad, 0xcd, 0xfd, 0x4a, 0x2b, 0x2b, 0xad, 0x7e, 0x15, 0x76, 0x73, 0x05, 0xfc, 0x16, + 0x40, 0x4b, 0x90, 0xaf, 0x95, 0xb7, 0x36, 0x95, 0x87, 0xe5, 0xf5, 0xa6, 0x72, 0x7f, 0x7d, 0xaf, + 0xd9, 0x52, 0xee, 0x2b, 0x07, 0xdb, 0xcf, 0xab, 0x98, 0x65, 0x5c, 0x86, 0x1b, 0x1c, 0xdd, 0x58, + 0xff, 0xc7, 0x34, 0x2c, 0xb9, 0xc1, 0x0f, 0x36, 0xd7, 0x9b, 0x4a, 0xf9, 0x01, 0x43, 0xcb, 0x63, + 0x34, 0x84, 0x16, 0xe1, 0xfa, 0x64, 0xea, 0x0d, 0x07, 0xcd, 0x86, 0xdd, 0x50, 0x6f, 0xe6, 0x31, + 0x1a, 0x41, 0x2b, 0x70, 0xeb, 0x22, 0x56, 0x4a, 0x4d, 0x7e, 0x5a, 0x53, 0x0e, 0x1b, 0x6d, 0xb9, + 0x51, 0xcf, 0x46, 0xd1, 0x1d, 0xf8, 0xdb, 0x85, 0x0c, 0x7d, 0xae, 0x31, 0x37, 0x69, 0x00, 0x5b, + 0x9f, 0x67, 0x1c, 0xdd, 0x86, 0x9b, 0x17, 0x30, 0xf7, 0x39, 0x26, 0xdc, 0x94, 0x01, 0xab, 0xf0, + 0x79, 0x26, 0xcb, 0x3f, 0x84, 0x20, 0x2e, 0x8e, 0x01, 0xed, 0x42, 0xda, 0xf7, 0xf7, 0x0a, 0x5a, + 0x76, 0x2b, 0x30, 0xe8, 0x6f, 0x97, 0x85, 0xc0, 0x02, 0x65, 0x59, 0x7c, 0xfa, 0xef, 0xc9, 0x12, + 0xd4, 0x17, 0x2e, 0xc8, 0x52, 0x83, 0x94, 0xe7, 0x92, 0xa1, 0x45, 0xd7, 0x69, 0x5a, 0x06, 0x16, + 0x96, 0x82, 0x41, 0x71, 0x2f, 0x77, 0x21, 0xed, 0xbb, 0x29, 0x1e, 0x3e, 0x41, 0x37, 0x28, 0x98, + 0x4f, 0x65, 0xef, 0xbf, 0x37, 0xbb, 0x3a, 0x3d, 0x19, 0x1e, 0x97, 0x3a, 0x66, 0x7f, 0x4d, 0x78, + 0xac, 0xf1, 0xff, 0xa5, 0x3a, 0x66, 0x6f, 0x6c, 0x78, 0x1b, 0x4a, 0x1f, 0xe8, 0x67, 0x64, 0x5f, + 0xa7, 0xa5, 0x26, 0x83, 0x7e, 0x09, 0x65, 0xc4, 0xf8, 0xd1, 0x23, 0x6e, 0x38, 0x8e, 0xf1, 0x90, + 0xfb, 0xbf, 0x05, 0x00, 0x00, 0xff, 0xff, 0xc5, 0x20, 0x42, 0x88, 0x18, 0x13, 0x00, 0x00, }