From 6dda24c7cb7c7b1f3061ccb4ecb8ce7129ac4eb4 Mon Sep 17 00:00:00 2001 From: Carol Scott Date: Wed, 8 May 2019 14:33:11 -0700 Subject: [PATCH] Addressing PR feedback and adding Edges to http_server_test --- controller/api/public/edges.go | 49 +-- controller/api/public/http_server_test.go | 5 + controller/gen/public/public.pb.go | 507 +++++++++++----------- proto/public.proto | 2 +- 4 files changed, 282 insertions(+), 281 deletions(-) diff --git a/controller/api/public/edges.go b/controller/api/public/edges.go index 632836f3ab07d..173250a7707f0 100644 --- a/controller/api/public/edges.go +++ b/controller/api/public/edges.go @@ -4,7 +4,6 @@ import ( "context" "errors" "fmt" - "strings" pb "github.com/linkerd/linkerd2/controller/gen/public" "github.com/prometheus/common/model" @@ -26,28 +25,14 @@ var formatMsg = map[string]string{ } func (s *grpcServer) Edges(ctx context.Context, req *pb.EdgesRequest) (*pb.EdgesResponse, error) { + log.Debugf("Edges request: %+v", req) if req.GetSelector().GetResource() == nil { - log.Debugf("Edges request: %+v", req) - return &pb.EdgesResponse{ - Response: &pb.EdgesResponse_Error{ - Error: &pb.ResourceError{ - Resource: req.GetSelector().GetResource(), - Error: "Edges request missing Selector Resource", - }, - }, - }, nil + return edgesError(req, "Edges request missing Selector Resource"), nil } edges, err := s.getEdges(ctx, req) if err != nil { - return &pb.EdgesResponse{ - Response: &pb.EdgesResponse_Error{ - Error: &pb.ResourceError{ - Resource: req.GetSelector().GetResource(), - Error: err.Error(), - }, - }, - }, nil + return edgesError(req, err.Error()), nil } return &pb.EdgesResponse{ @@ -59,6 +44,17 @@ func (s *grpcServer) Edges(ctx context.Context, req *pb.EdgesRequest) (*pb.Edges }, nil } +func edgesError(req *pb.EdgesRequest, message string) *pb.EdgesResponse { + return &pb.EdgesResponse{ + Response: &pb.EdgesResponse_Error{ + Error: &pb.ResourceError{ + Resource: req.GetSelector().GetResource(), + Error: message, + }, + }, + } +} + func (s *grpcServer) getEdges(ctx context.Context, req *pb.EdgesRequest) ([]*pb.Edge, error) { labelNames := promGroupByLabelNames(req.Selector.Resource) if len(labelNames) != 2 { @@ -90,30 +86,29 @@ func processEdgeMetrics(inbound, outbound model.Vector, resourceType string) []* edges := []*pb.Edge{} dstIndex := map[model.LabelValue]model.Metric{} srcIndex := map[model.LabelValue][]model.Metric{} - keys := map[model.LabelValue]struct{}{} resourceReplacementInbound := resourceType resourceReplacementOutbound := "dst_" + resourceType for _, sample := range inbound { // skip any inbound results that do not have a client_id, because this means - // the communication was one-sided (i.e. a probe or another instance where the src/dst are not both known) - // in future the edges command will support one-sided edges + // the communication was one-sided (i.e. a probe or another instance where + // the src/dst are not both known) in future the edges command will support + // one-sided edges if _, ok := sample.Metric[model.LabelName("client_id")]; ok { key := sample.Metric[model.LabelName(resourceReplacementInbound)] dstIndex[key] = sample.Metric - keys[key] = struct{}{} } } for _, sample := range outbound { - // skip any outbound results that do not have a server_id for same reason as above section + // skip any outbound results that do not have a server_id for same reason as + // above section if _, ok := sample.Metric[model.LabelName("server_id")]; ok { key := sample.Metric[model.LabelName(resourceReplacementOutbound)] if _, ok := srcIndex[key]; !ok { srcIndex[key] = []model.Metric{} } srcIndex[key] = append(srcIndex[key], sample.Metric) - keys[key] = struct{}{} } } @@ -137,9 +132,9 @@ func processEdgeMetrics(inbound, outbound model.Vector, resourceType string) []* Name: string(dst[model.LabelName(resourceType)]), Type: resourceType, }, - ClientId: strings.Split(string(dst[model.LabelName("client_id")]), ".")[0], - ServerId: strings.Split(string(src[model.LabelName("server_id")]), ".")[0], - Msg: msg, + ClientId: string(dst[model.LabelName("client_id")]), + ServerId: string(src[model.LabelName("server_id")]), + NoIdentityMsg: msg, } edges = append(edges, edge) } diff --git a/controller/api/public/http_server_test.go b/controller/api/public/http_server_test.go index b1749ef0e60f4..f13dea73fc72f 100644 --- a/controller/api/public/http_server_test.go +++ b/controller/api/public/http_server_test.go @@ -36,6 +36,11 @@ func (m *mockGrpcServer) TopRoutes(ctx context.Context, req *pb.TopRoutesRequest return m.ResponseToReturn.(*pb.TopRoutesResponse), m.ErrorToReturn } +func (m *mockGrpcServer) Edges(ctx context.Context, req *pb.EdgesRequest) (*pb.EdgesResponse, error) { + m.LastRequestReceived = req + return m.ResponseToReturn.(*pb.EdgesResponse), m.ErrorToReturn +} + func (m *mockGrpcServer) Version(ctx context.Context, req *pb.Empty) (*pb.VersionInfo, error) { m.LastRequestReceived = req return m.ResponseToReturn.(*pb.VersionInfo), m.ErrorToReturn diff --git a/controller/gen/public/public.pb.go b/controller/gen/public/public.pb.go index eb9cff2da4606..8219cf4cf1d41 100644 --- a/controller/gen/public/public.pb.go +++ b/controller/gen/public/public.pb.go @@ -67,7 +67,7 @@ func (x HttpMethod_Registered) String() string { return proto.EnumName(HttpMethod_Registered_name, int32(x)) } func (HttpMethod_Registered) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{10, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{10, 0} } type Scheme_Registered int32 @@ -90,7 +90,7 @@ func (x Scheme_Registered) String() string { return proto.EnumName(Scheme_Registered_name, int32(x)) } func (Scheme_Registered) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{11, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{11, 0} } type TapEvent_ProxyDirection int32 @@ -116,7 +116,7 @@ func (x TapEvent_ProxyDirection) String() string { return proto.EnumName(TapEvent_ProxyDirection_name, int32(x)) } func (TapEvent_ProxyDirection) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 0} } type Empty struct { @@ -129,7 +129,7 @@ func (m *Empty) Reset() { *m = Empty{} } func (m *Empty) String() string { return proto.CompactTextString(m) } func (*Empty) ProtoMessage() {} func (*Empty) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{0} + return fileDescriptor_public_e3e3347d5819a629, []int{0} } func (m *Empty) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Empty.Unmarshal(m, b) @@ -162,7 +162,7 @@ func (m *VersionInfo) Reset() { *m = VersionInfo{} } func (m *VersionInfo) String() string { return proto.CompactTextString(m) } func (*VersionInfo) ProtoMessage() {} func (*VersionInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{1} + return fileDescriptor_public_e3e3347d5819a629, []int{1} } func (m *VersionInfo) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_VersionInfo.Unmarshal(m, b) @@ -214,7 +214,7 @@ func (m *ListServicesRequest) Reset() { *m = ListServicesRequest{} } func (m *ListServicesRequest) String() string { return proto.CompactTextString(m) } func (*ListServicesRequest) ProtoMessage() {} func (*ListServicesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{2} + return fileDescriptor_public_e3e3347d5819a629, []int{2} } func (m *ListServicesRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListServicesRequest.Unmarshal(m, b) @@ -252,7 +252,7 @@ func (m *ListServicesResponse) Reset() { *m = ListServicesResponse{} } func (m *ListServicesResponse) String() string { return proto.CompactTextString(m) } func (*ListServicesResponse) ProtoMessage() {} func (*ListServicesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{3} + return fileDescriptor_public_e3e3347d5819a629, []int{3} } func (m *ListServicesResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListServicesResponse.Unmarshal(m, b) @@ -291,7 +291,7 @@ func (m *Service) Reset() { *m = Service{} } func (m *Service) String() string { return proto.CompactTextString(m) } func (*Service) ProtoMessage() {} func (*Service) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{4} + return fileDescriptor_public_e3e3347d5819a629, []int{4} } func (m *Service) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Service.Unmarshal(m, b) @@ -337,7 +337,7 @@ func (m *ListPodsRequest) Reset() { *m = ListPodsRequest{} } func (m *ListPodsRequest) String() string { return proto.CompactTextString(m) } func (*ListPodsRequest) ProtoMessage() {} func (*ListPodsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{5} + return fileDescriptor_public_e3e3347d5819a629, []int{5} } func (m *ListPodsRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListPodsRequest.Unmarshal(m, b) @@ -383,7 +383,7 @@ func (m *ListPodsResponse) Reset() { *m = ListPodsResponse{} } func (m *ListPodsResponse) String() string { return proto.CompactTextString(m) } func (*ListPodsResponse) ProtoMessage() {} func (*ListPodsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{6} + return fileDescriptor_public_e3e3347d5819a629, []int{6} } func (m *ListPodsResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListPodsResponse.Unmarshal(m, b) @@ -439,7 +439,7 @@ func (m *Pod) Reset() { *m = Pod{} } func (m *Pod) String() string { return proto.CompactTextString(m) } func (*Pod) ProtoMessage() {} func (*Pod) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{7} + return fileDescriptor_public_e3e3347d5819a629, []int{7} } func (m *Pod) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Pod.Unmarshal(m, b) @@ -776,7 +776,7 @@ func (m *TapRequest) Reset() { *m = TapRequest{} } func (m *TapRequest) String() string { return proto.CompactTextString(m) } func (*TapRequest) ProtoMessage() {} func (*TapRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{8} + return fileDescriptor_public_e3e3347d5819a629, []int{8} } func (m *TapRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapRequest.Unmarshal(m, b) @@ -979,7 +979,7 @@ func (m *TapByResourceRequest) Reset() { *m = TapByResourceRequest{} } func (m *TapByResourceRequest) String() string { return proto.CompactTextString(m) } func (*TapByResourceRequest) ProtoMessage() {} func (*TapByResourceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{9} + return fileDescriptor_public_e3e3347d5819a629, []int{9} } func (m *TapByResourceRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapByResourceRequest.Unmarshal(m, b) @@ -1037,7 +1037,7 @@ func (m *TapByResourceRequest_Match) Reset() { *m = TapByResourceRequest func (m *TapByResourceRequest_Match) String() string { return proto.CompactTextString(m) } func (*TapByResourceRequest_Match) ProtoMessage() {} func (*TapByResourceRequest_Match) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{9, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{9, 0} } func (m *TapByResourceRequest_Match) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapByResourceRequest_Match.Unmarshal(m, b) @@ -1275,7 +1275,7 @@ func (m *TapByResourceRequest_Match_Seq) Reset() { *m = TapByResourceReq func (m *TapByResourceRequest_Match_Seq) String() string { return proto.CompactTextString(m) } func (*TapByResourceRequest_Match_Seq) ProtoMessage() {} func (*TapByResourceRequest_Match_Seq) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{9, 0, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{9, 0, 0} } func (m *TapByResourceRequest_Match_Seq) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapByResourceRequest_Match_Seq.Unmarshal(m, b) @@ -1318,7 +1318,7 @@ func (m *TapByResourceRequest_Match_Http) Reset() { *m = TapByResourceRe func (m *TapByResourceRequest_Match_Http) String() string { return proto.CompactTextString(m) } func (*TapByResourceRequest_Match_Http) ProtoMessage() {} func (*TapByResourceRequest_Match_Http) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{9, 0, 1} + return fileDescriptor_public_e3e3347d5819a629, []int{9, 0, 1} } func (m *TapByResourceRequest_Match_Http) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapByResourceRequest_Match_Http.Unmarshal(m, b) @@ -1511,7 +1511,7 @@ func (m *HttpMethod) Reset() { *m = HttpMethod{} } func (m *HttpMethod) String() string { return proto.CompactTextString(m) } func (*HttpMethod) ProtoMessage() {} func (*HttpMethod) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{10} + return fileDescriptor_public_e3e3347d5819a629, []int{10} } func (m *HttpMethod) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_HttpMethod.Unmarshal(m, b) @@ -1647,7 +1647,7 @@ func (m *Scheme) Reset() { *m = Scheme{} } func (m *Scheme) String() string { return proto.CompactTextString(m) } func (*Scheme) ProtoMessage() {} func (*Scheme) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{11} + return fileDescriptor_public_e3e3347d5819a629, []int{11} } func (m *Scheme) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Scheme.Unmarshal(m, b) @@ -1783,7 +1783,7 @@ func (m *IPAddress) Reset() { *m = IPAddress{} } func (m *IPAddress) String() string { return proto.CompactTextString(m) } func (*IPAddress) ProtoMessage() {} func (*IPAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{12} + return fileDescriptor_public_e3e3347d5819a629, []int{12} } func (m *IPAddress) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_IPAddress.Unmarshal(m, b) @@ -1921,7 +1921,7 @@ func (m *IPv6) Reset() { *m = IPv6{} } func (m *IPv6) String() string { return proto.CompactTextString(m) } func (*IPv6) ProtoMessage() {} func (*IPv6) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{13} + return fileDescriptor_public_e3e3347d5819a629, []int{13} } func (m *IPv6) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_IPv6.Unmarshal(m, b) @@ -1967,7 +1967,7 @@ func (m *TcpAddress) Reset() { *m = TcpAddress{} } func (m *TcpAddress) String() string { return proto.CompactTextString(m) } func (*TcpAddress) ProtoMessage() {} func (*TcpAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{14} + return fileDescriptor_public_e3e3347d5819a629, []int{14} } func (m *TcpAddress) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TcpAddress.Unmarshal(m, b) @@ -2015,7 +2015,7 @@ func (m *Eos) Reset() { *m = Eos{} } func (m *Eos) String() string { return proto.CompactTextString(m) } func (*Eos) ProtoMessage() {} func (*Eos) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{15} + return fileDescriptor_public_e3e3347d5819a629, []int{15} } func (m *Eos) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Eos.Unmarshal(m, b) @@ -2155,7 +2155,7 @@ func (m *TapEvent) Reset() { *m = TapEvent{} } func (m *TapEvent) String() string { return proto.CompactTextString(m) } func (*TapEvent) ProtoMessage() {} func (*TapEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16} + return fileDescriptor_public_e3e3347d5819a629, []int{16} } func (m *TapEvent) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent.Unmarshal(m, b) @@ -2307,7 +2307,7 @@ func (m *TapEvent_EndpointMeta) Reset() { *m = TapEvent_EndpointMeta{} } func (m *TapEvent_EndpointMeta) String() string { return proto.CompactTextString(m) } func (*TapEvent_EndpointMeta) ProtoMessage() {} func (*TapEvent_EndpointMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 0} } func (m *TapEvent_EndpointMeta) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent_EndpointMeta.Unmarshal(m, b) @@ -2345,7 +2345,7 @@ func (m *TapEvent_RouteMeta) Reset() { *m = TapEvent_RouteMeta{} } func (m *TapEvent_RouteMeta) String() string { return proto.CompactTextString(m) } func (*TapEvent_RouteMeta) ProtoMessage() {} func (*TapEvent_RouteMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 1} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 1} } func (m *TapEvent_RouteMeta) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent_RouteMeta.Unmarshal(m, b) @@ -2387,7 +2387,7 @@ func (m *TapEvent_Http) Reset() { *m = TapEvent_Http{} } func (m *TapEvent_Http) String() string { return proto.CompactTextString(m) } func (*TapEvent_Http) ProtoMessage() {} func (*TapEvent_Http) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 2} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 2} } func (m *TapEvent_Http) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent_Http.Unmarshal(m, b) @@ -2564,7 +2564,7 @@ func (m *TapEvent_Http_StreamId) Reset() { *m = TapEvent_Http_StreamId{} func (m *TapEvent_Http_StreamId) String() string { return proto.CompactTextString(m) } func (*TapEvent_Http_StreamId) ProtoMessage() {} func (*TapEvent_Http_StreamId) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 2, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 2, 0} } func (m *TapEvent_Http_StreamId) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent_Http_StreamId.Unmarshal(m, b) @@ -2613,7 +2613,7 @@ func (m *TapEvent_Http_RequestInit) Reset() { *m = TapEvent_Http_Request func (m *TapEvent_Http_RequestInit) String() string { return proto.CompactTextString(m) } func (*TapEvent_Http_RequestInit) ProtoMessage() {} func (*TapEvent_Http_RequestInit) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 2, 1} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 2, 1} } func (m *TapEvent_Http_RequestInit) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent_Http_RequestInit.Unmarshal(m, b) @@ -2681,7 +2681,7 @@ func (m *TapEvent_Http_ResponseInit) Reset() { *m = TapEvent_Http_Respon func (m *TapEvent_Http_ResponseInit) String() string { return proto.CompactTextString(m) } func (*TapEvent_Http_ResponseInit) ProtoMessage() {} func (*TapEvent_Http_ResponseInit) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 2, 2} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 2, 2} } func (m *TapEvent_Http_ResponseInit) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent_Http_ResponseInit.Unmarshal(m, b) @@ -2737,7 +2737,7 @@ func (m *TapEvent_Http_ResponseEnd) Reset() { *m = TapEvent_Http_Respons func (m *TapEvent_Http_ResponseEnd) String() string { return proto.CompactTextString(m) } func (*TapEvent_Http_ResponseEnd) ProtoMessage() {} func (*TapEvent_Http_ResponseEnd) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{16, 2, 3} + return fileDescriptor_public_e3e3347d5819a629, []int{16, 2, 3} } func (m *TapEvent_Http_ResponseEnd) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TapEvent_Http_ResponseEnd.Unmarshal(m, b) @@ -2803,7 +2803,7 @@ func (m *ApiError) Reset() { *m = ApiError{} } func (m *ApiError) String() string { return proto.CompactTextString(m) } func (*ApiError) ProtoMessage() {} func (*ApiError) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{17} + return fileDescriptor_public_e3e3347d5819a629, []int{17} } func (m *ApiError) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ApiError.Unmarshal(m, b) @@ -2841,7 +2841,7 @@ func (m *PodErrors) Reset() { *m = PodErrors{} } func (m *PodErrors) String() string { return proto.CompactTextString(m) } func (*PodErrors) ProtoMessage() {} func (*PodErrors) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{18} + return fileDescriptor_public_e3e3347d5819a629, []int{18} } func (m *PodErrors) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PodErrors.Unmarshal(m, b) @@ -2881,7 +2881,7 @@ func (m *PodErrors_PodError) Reset() { *m = PodErrors_PodError{} } func (m *PodErrors_PodError) String() string { return proto.CompactTextString(m) } func (*PodErrors_PodError) ProtoMessage() {} func (*PodErrors_PodError) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{18, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{18, 0} } func (m *PodErrors_PodError) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PodErrors_PodError.Unmarshal(m, b) @@ -2995,7 +2995,7 @@ func (m *PodErrors_PodError_ContainerError) Reset() { *m = PodErrors_Pod func (m *PodErrors_PodError_ContainerError) String() string { return proto.CompactTextString(m) } func (*PodErrors_PodError_ContainerError) ProtoMessage() {} func (*PodErrors_PodError_ContainerError) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{18, 0, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{18, 0, 0} } func (m *PodErrors_PodError_ContainerError) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PodErrors_PodError_ContainerError.Unmarshal(m, b) @@ -3066,7 +3066,7 @@ func (m *Resource) Reset() { *m = Resource{} } func (m *Resource) String() string { return proto.CompactTextString(m) } func (*Resource) ProtoMessage() {} func (*Resource) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{19} + return fileDescriptor_public_e3e3347d5819a629, []int{19} } func (m *Resource) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Resource.Unmarshal(m, b) @@ -3125,7 +3125,7 @@ func (m *ResourceSelection) Reset() { *m = ResourceSelection{} } func (m *ResourceSelection) String() string { return proto.CompactTextString(m) } func (*ResourceSelection) ProtoMessage() {} func (*ResourceSelection) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{20} + return fileDescriptor_public_e3e3347d5819a629, []int{20} } func (m *ResourceSelection) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ResourceSelection.Unmarshal(m, b) @@ -3171,7 +3171,7 @@ func (m *ResourceError) Reset() { *m = ResourceError{} } func (m *ResourceError) String() string { return proto.CompactTextString(m) } func (*ResourceError) ProtoMessage() {} func (*ResourceError) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{21} + return fileDescriptor_public_e3e3347d5819a629, []int{21} } func (m *ResourceError) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ResourceError.Unmarshal(m, b) @@ -3224,7 +3224,7 @@ func (m *StatSummaryRequest) Reset() { *m = StatSummaryRequest{} } func (m *StatSummaryRequest) String() string { return proto.CompactTextString(m) } func (*StatSummaryRequest) ProtoMessage() {} func (*StatSummaryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{22} + return fileDescriptor_public_e3e3347d5819a629, []int{22} } func (m *StatSummaryRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StatSummaryRequest.Unmarshal(m, b) @@ -3429,7 +3429,7 @@ func (m *StatSummaryResponse) Reset() { *m = StatSummaryResponse{} } func (m *StatSummaryResponse) String() string { return proto.CompactTextString(m) } func (*StatSummaryResponse) ProtoMessage() {} func (*StatSummaryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{23} + return fileDescriptor_public_e3e3347d5819a629, []int{23} } func (m *StatSummaryResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StatSummaryResponse.Unmarshal(m, b) @@ -3571,7 +3571,7 @@ func (m *StatSummaryResponse_Ok) Reset() { *m = StatSummaryResponse_Ok{} func (m *StatSummaryResponse_Ok) String() string { return proto.CompactTextString(m) } func (*StatSummaryResponse_Ok) ProtoMessage() {} func (*StatSummaryResponse_Ok) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{23, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{23, 0} } func (m *StatSummaryResponse_Ok) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StatSummaryResponse_Ok.Unmarshal(m, b) @@ -3615,7 +3615,7 @@ func (m *BasicStats) Reset() { *m = BasicStats{} } func (m *BasicStats) String() string { return proto.CompactTextString(m) } func (*BasicStats) ProtoMessage() {} func (*BasicStats) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{24} + return fileDescriptor_public_e3e3347d5819a629, []int{24} } func (m *BasicStats) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_BasicStats.Unmarshal(m, b) @@ -3700,7 +3700,7 @@ func (m *TcpStats) Reset() { *m = TcpStats{} } func (m *TcpStats) String() string { return proto.CompactTextString(m) } func (*TcpStats) ProtoMessage() {} func (*TcpStats) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{25} + return fileDescriptor_public_e3e3347d5819a629, []int{25} } func (m *TcpStats) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TcpStats.Unmarshal(m, b) @@ -3754,7 +3754,7 @@ func (m *StatTable) Reset() { *m = StatTable{} } func (m *StatTable) String() string { return proto.CompactTextString(m) } func (*StatTable) ProtoMessage() {} func (*StatTable) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{26} + return fileDescriptor_public_e3e3347d5819a629, []int{26} } func (m *StatTable) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StatTable.Unmarshal(m, b) @@ -3864,7 +3864,7 @@ func (m *StatTable_PodGroup) Reset() { *m = StatTable_PodGroup{} } func (m *StatTable_PodGroup) String() string { return proto.CompactTextString(m) } func (*StatTable_PodGroup) ProtoMessage() {} func (*StatTable_PodGroup) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{26, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{26, 0} } func (m *StatTable_PodGroup) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StatTable_PodGroup.Unmarshal(m, b) @@ -3913,7 +3913,7 @@ func (m *StatTable_PodGroup_Row) Reset() { *m = StatTable_PodGroup_Row{} func (m *StatTable_PodGroup_Row) String() string { return proto.CompactTextString(m) } func (*StatTable_PodGroup_Row) ProtoMessage() {} func (*StatTable_PodGroup_Row) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{26, 0, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{26, 0, 0} } func (m *StatTable_PodGroup_Row) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StatTable_PodGroup_Row.Unmarshal(m, b) @@ -4000,7 +4000,7 @@ func (m *EdgesRequest) Reset() { *m = EdgesRequest{} } func (m *EdgesRequest) String() string { return proto.CompactTextString(m) } func (*EdgesRequest) ProtoMessage() {} func (*EdgesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{27} + return fileDescriptor_public_e3e3347d5819a629, []int{27} } func (m *EdgesRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EdgesRequest.Unmarshal(m, b) @@ -4041,7 +4041,7 @@ func (m *EdgesResponse) Reset() { *m = EdgesResponse{} } func (m *EdgesResponse) String() string { return proto.CompactTextString(m) } func (*EdgesResponse) ProtoMessage() {} func (*EdgesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{28} + return fileDescriptor_public_e3e3347d5819a629, []int{28} } func (m *EdgesResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EdgesResponse.Unmarshal(m, b) @@ -4183,7 +4183,7 @@ func (m *EdgesResponse_Ok) Reset() { *m = EdgesResponse_Ok{} } func (m *EdgesResponse_Ok) String() string { return proto.CompactTextString(m) } func (*EdgesResponse_Ok) ProtoMessage() {} func (*EdgesResponse_Ok) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{28, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{28, 0} } func (m *EdgesResponse_Ok) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_EdgesResponse_Ok.Unmarshal(m, b) @@ -4215,7 +4215,7 @@ type Edge struct { Dst *Resource `protobuf:"bytes,2,opt,name=dst,proto3" json:"dst,omitempty"` ClientId string `protobuf:"bytes,3,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"` ServerId string `protobuf:"bytes,4,opt,name=server_id,json=serverId,proto3" json:"server_id,omitempty"` - Msg string `protobuf:"bytes,5,opt,name=msg,proto3" json:"msg,omitempty"` + NoIdentityMsg string `protobuf:"bytes,5,opt,name=no_identity_msg,json=noIdentityMsg,proto3" json:"no_identity_msg,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -4225,7 +4225,7 @@ func (m *Edge) Reset() { *m = Edge{} } func (m *Edge) String() string { return proto.CompactTextString(m) } func (*Edge) ProtoMessage() {} func (*Edge) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{29} + return fileDescriptor_public_e3e3347d5819a629, []int{29} } func (m *Edge) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Edge.Unmarshal(m, b) @@ -4273,9 +4273,9 @@ func (m *Edge) GetServerId() string { return "" } -func (m *Edge) GetMsg() string { +func (m *Edge) GetNoIdentityMsg() string { if m != nil { - return m.Msg + return m.NoIdentityMsg } return "" } @@ -4296,7 +4296,7 @@ func (m *TopRoutesRequest) Reset() { *m = TopRoutesRequest{} } func (m *TopRoutesRequest) String() string { return proto.CompactTextString(m) } func (*TopRoutesRequest) ProtoMessage() {} func (*TopRoutesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{30} + return fileDescriptor_public_e3e3347d5819a629, []int{30} } func (m *TopRoutesRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TopRoutesRequest.Unmarshal(m, b) @@ -4455,7 +4455,7 @@ func (m *TopRoutesResponse) Reset() { *m = TopRoutesResponse{} } func (m *TopRoutesResponse) String() string { return proto.CompactTextString(m) } func (*TopRoutesResponse) ProtoMessage() {} func (*TopRoutesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{31} + return fileDescriptor_public_e3e3347d5819a629, []int{31} } func (m *TopRoutesResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TopRoutesResponse.Unmarshal(m, b) @@ -4597,7 +4597,7 @@ func (m *TopRoutesResponse_Ok) Reset() { *m = TopRoutesResponse_Ok{} } func (m *TopRoutesResponse_Ok) String() string { return proto.CompactTextString(m) } func (*TopRoutesResponse_Ok) ProtoMessage() {} func (*TopRoutesResponse_Ok) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{31, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{31, 0} } func (m *TopRoutesResponse_Ok) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TopRoutesResponse_Ok.Unmarshal(m, b) @@ -4636,7 +4636,7 @@ func (m *RouteTable) Reset() { *m = RouteTable{} } func (m *RouteTable) String() string { return proto.CompactTextString(m) } func (*RouteTable) ProtoMessage() {} func (*RouteTable) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{32} + return fileDescriptor_public_e3e3347d5819a629, []int{32} } func (m *RouteTable) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_RouteTable.Unmarshal(m, b) @@ -4684,7 +4684,7 @@ func (m *RouteTable_Row) Reset() { *m = RouteTable_Row{} } func (m *RouteTable_Row) String() string { return proto.CompactTextString(m) } func (*RouteTable_Row) ProtoMessage() {} func (*RouteTable_Row) Descriptor() ([]byte, []int) { - return fileDescriptor_public_df6e095891a1cc19, []int{32, 0} + return fileDescriptor_public_e3e3347d5819a629, []int{32, 0} } func (m *RouteTable_Row) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_RouteTable_Row.Unmarshal(m, b) @@ -5221,200 +5221,201 @@ var _Api_serviceDesc = grpc.ServiceDesc{ Metadata: "public.proto", } -func init() { proto.RegisterFile("public.proto", fileDescriptor_public_df6e095891a1cc19) } - -var fileDescriptor_public_df6e095891a1cc19 = []byte{ - // 3060 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5a, 0xcb, 0x73, 0x1b, 0xc7, - 0xd1, 0xc7, 0xe2, 0x8d, 0x06, 0x48, 0x42, 0x23, 0x5a, 0x1f, 0x0c, 0xdb, 0xb2, 0xb4, 0x7a, 0x98, - 0x9f, 0x94, 0x80, 0x14, 0x65, 0xc9, 0x92, 0xe5, 0x3c, 0x08, 0x12, 0x16, 0x99, 0x48, 0x24, 0xbc, - 0x80, 0xe2, 0x2a, 0x97, 0x53, 0xa8, 0x25, 0x76, 0x08, 0x6e, 0xb8, 0xd8, 0x59, 0xed, 0x0e, 0x44, - 0xe3, 0x9a, 0x53, 0xaa, 0x52, 0xa9, 0x9c, 0x72, 0xce, 0x31, 0x95, 0x54, 0x2e, 0xb9, 0xe4, 0xe2, - 0x3f, 0x21, 0xb9, 0xa6, 0x72, 0x4b, 0x6e, 0xb9, 0xb8, 0x72, 0xcb, 0x29, 0x87, 0x54, 0xaa, 0x67, - 0x66, 0x17, 0xbb, 0x04, 0xc0, 0x87, 0x9c, 0x43, 0x72, 0xc2, 0x74, 0xcf, 0xaf, 0x7b, 0xba, 0x67, - 0x7a, 0xba, 0x67, 0x06, 0x0b, 0x15, 0x6f, 0xb4, 0xef, 0xd8, 0xfd, 0x86, 0xe7, 0x33, 0xce, 0xc8, - 0x92, 0x63, 0xbb, 0x47, 0xd4, 0xb7, 0xd6, 0x1b, 0x92, 0x5d, 0xbf, 0x3a, 0x60, 0x6c, 0xe0, 0xd0, - 0x55, 0xd1, 0xbd, 0x3f, 0x3a, 0x58, 0xb5, 0x46, 0xbe, 0xc9, 0x6d, 0xe6, 0x4a, 0x81, 0x7a, 0xad, - 0xcf, 0x86, 0x43, 0xe6, 0xae, 0x1e, 0x52, 0xd3, 0xe1, 0x87, 0xfd, 0x43, 0xda, 0x3f, 0x52, 0x3d, - 0x97, 0xfb, 0xcc, 0x3d, 0xb0, 0x07, 0xab, 0xf2, 0x47, 0x32, 0xf5, 0x02, 0xe4, 0x5a, 0x43, 0x8f, - 0x8f, 0xf5, 0x97, 0x50, 0xfe, 0x01, 0xf5, 0x03, 0x9b, 0xb9, 0x3b, 0xee, 0x01, 0x23, 0x6f, 0x43, - 0x69, 0xc0, 0x14, 0xa3, 0xa6, 0x5d, 0xd3, 0x56, 0x4a, 0xc6, 0x84, 0x81, 0xbd, 0xfb, 0x23, 0xdb, - 0xb1, 0xb6, 0x4c, 0x4e, 0x6b, 0x69, 0xd9, 0x1b, 0x31, 0xc8, 0x6d, 0x58, 0xf4, 0xa9, 0x43, 0xcd, - 0x80, 0x86, 0x0a, 0x32, 0x02, 0x72, 0x82, 0xab, 0xdf, 0x87, 0xcb, 0xcf, 0xec, 0x80, 0x77, 0xa8, - 0xff, 0xca, 0xee, 0xd3, 0xc0, 0xa0, 0x2f, 0x47, 0x34, 0xe0, 0xa8, 0xdc, 0x35, 0x87, 0x34, 0xf0, - 0xcc, 0x3e, 0x0d, 0x87, 0x8e, 0x18, 0xfa, 0x33, 0x58, 0x4e, 0x0a, 0x05, 0x1e, 0x73, 0x03, 0x4a, - 0xde, 0x87, 0x62, 0xa0, 0x78, 0x35, 0xed, 0x5a, 0x66, 0xa5, 0xbc, 0x5e, 0x6b, 0x9c, 0x98, 0xbb, - 0x86, 0x12, 0x32, 0x22, 0xa4, 0xfe, 0x04, 0x0a, 0x8a, 0x49, 0x08, 0x64, 0x71, 0x14, 0x35, 0xa2, - 0x68, 0x27, 0x4d, 0x49, 0x9f, 0x34, 0x25, 0x80, 0x25, 0x34, 0xa5, 0xcd, 0xac, 0xc8, 0xf6, 0x6b, - 0x53, 0xb6, 0x37, 0xd3, 0x35, 0x2d, 0x26, 0x44, 0xbe, 0x8d, 0x76, 0x3a, 0xb4, 0xcf, 0x99, 0x2f, - 0x34, 0x96, 0xd7, 0xf5, 0x29, 0x3b, 0x0d, 0x1a, 0xb0, 0x91, 0xdf, 0xa7, 0x1d, 0x01, 0xb4, 0x99, - 0x6b, 0x44, 0x32, 0xfa, 0x47, 0x50, 0x9d, 0x0c, 0xaa, 0x7c, 0x5f, 0x81, 0xac, 0xc7, 0xac, 0xd0, - 0xef, 0xe5, 0x29, 0x7d, 0x6d, 0x66, 0x19, 0x02, 0xa1, 0xff, 0x33, 0x0b, 0x99, 0x36, 0xb3, 0x66, - 0x3a, 0xbb, 0x0c, 0x39, 0x8f, 0x59, 0x3b, 0x6d, 0xe5, 0xa8, 0x24, 0xc8, 0x35, 0x00, 0x8b, 0x7a, - 0x0e, 0x1b, 0x0f, 0xa9, 0xcb, 0xe5, 0x42, 0x6e, 0xa7, 0x8c, 0x18, 0x8f, 0x5c, 0x87, 0xb2, 0x4f, - 0x3d, 0xc7, 0xee, 0x9b, 0xbd, 0x80, 0xf2, 0x1a, 0x84, 0x10, 0xc5, 0xec, 0x50, 0x4e, 0x3e, 0x80, - 0x2b, 0x8a, 0x42, 0x6f, 0x7a, 0x7d, 0xe6, 0x72, 0x9f, 0x39, 0x0e, 0xf5, 0x6b, 0x65, 0x85, 0x7e, - 0x23, 0xd6, 0xbf, 0x19, 0x75, 0x93, 0x1b, 0x50, 0x09, 0xb8, 0xc9, 0xe9, 0xc1, 0xc8, 0x11, 0xca, - 0x2b, 0x0a, 0x5e, 0x0e, 0xb9, 0xa8, 0xfd, 0x5d, 0x00, 0xcb, 0xa4, 0x43, 0xe6, 0x0a, 0xc8, 0x82, - 0x82, 0x94, 0x24, 0x0f, 0x01, 0x04, 0x32, 0x3f, 0x62, 0xfb, 0xb5, 0x45, 0xd5, 0x83, 0x04, 0xb9, - 0x02, 0x79, 0xd4, 0x31, 0x0a, 0x6a, 0x59, 0xe1, 0xae, 0xa2, 0x70, 0x16, 0x4c, 0xcb, 0xa2, 0x56, - 0x2d, 0x77, 0x4d, 0x5b, 0x29, 0x1a, 0x92, 0x20, 0x9b, 0xb0, 0x14, 0xd8, 0x6e, 0x9f, 0x3e, 0x33, - 0x03, 0x6e, 0x50, 0x8f, 0xf9, 0xbc, 0x96, 0x17, 0x8b, 0xf7, 0x66, 0x43, 0xee, 0xc7, 0x46, 0xb8, - 0x1f, 0x1b, 0x5b, 0x6a, 0x3f, 0x1a, 0x27, 0x25, 0xc8, 0x1a, 0x5c, 0x9e, 0x78, 0xbe, 0x1b, 0x85, - 0x49, 0x41, 0x8c, 0x3f, 0xab, 0x8b, 0xe8, 0x50, 0x51, 0xec, 0xb6, 0x63, 0xba, 0xb4, 0x56, 0x14, - 0x36, 0x25, 0x78, 0xe4, 0x1e, 0xe4, 0x47, 0x1e, 0xb7, 0x87, 0xb4, 0x56, 0x3a, 0xcb, 0x22, 0x05, - 0x24, 0x57, 0x01, 0x3c, 0x9f, 0x7d, 0x31, 0x36, 0xa8, 0x69, 0x8d, 0x6b, 0x4b, 0x42, 0x69, 0x8c, - 0x83, 0xc3, 0x0a, 0x2a, 0xdc, 0xbe, 0x55, 0x61, 0x61, 0x82, 0x47, 0x56, 0x60, 0xc9, 0x57, 0x61, - 0x1a, 0xc2, 0x2e, 0x09, 0xd8, 0x49, 0x76, 0xb3, 0x00, 0x39, 0x76, 0xec, 0x52, 0x5f, 0xff, 0x4d, - 0x1a, 0xa0, 0x6b, 0x7a, 0xe1, 0x5e, 0x21, 0x90, 0xf1, 0x98, 0x25, 0x43, 0x10, 0x57, 0xc5, 0x63, - 0xd6, 0x89, 0x68, 0x4b, 0xcf, 0x88, 0xb6, 0x2b, 0x90, 0x1f, 0x9a, 0x5f, 0x18, 0x5e, 0x20, 0x62, - 0x31, 0x6d, 0x28, 0x0a, 0xf9, 0x9c, 0xb5, 0x71, 0x61, 0x70, 0x3d, 0x17, 0x0c, 0x45, 0x61, 0xa4, - 0x73, 0xb6, 0xd3, 0x16, 0xcb, 0x59, 0x32, 0x44, 0x9b, 0xd4, 0xa1, 0x78, 0xe0, 0xb3, 0x61, 0x3b, - 0x5c, 0xc6, 0x05, 0x23, 0xa2, 0x51, 0x0f, 0xb6, 0x77, 0xda, 0x6a, 0x5d, 0x14, 0x25, 0xe2, 0xa5, - 0x7f, 0x48, 0x87, 0x72, 0x11, 0x30, 0x5e, 0x04, 0x25, 0xec, 0xa1, 0xfc, 0x90, 0x59, 0x62, 0xfa, - 0x4b, 0x86, 0xa2, 0x30, 0x75, 0x98, 0x23, 0x7e, 0xc8, 0x7c, 0x9b, 0x8f, 0xe5, 0x9e, 0x30, 0x26, - 0x0c, 0xb4, 0xca, 0x33, 0xf9, 0xa1, 0x0c, 0x7f, 0x43, 0xb4, 0x3f, 0x4c, 0xd7, 0xb4, 0x66, 0x11, - 0xf2, 0xdc, 0xf4, 0x07, 0x94, 0xeb, 0x7f, 0xcb, 0xc1, 0x72, 0xd7, 0xf4, 0x9a, 0xe3, 0x30, 0x19, - 0x84, 0xd3, 0xf6, 0x61, 0x08, 0x11, 0x33, 0x77, 0xbe, 0xf4, 0xa1, 0x24, 0xc8, 0x06, 0xe4, 0x86, - 0x26, 0xef, 0x1f, 0xaa, 0xcc, 0x73, 0x77, 0x4a, 0x74, 0xd6, 0x88, 0x8d, 0xe7, 0x28, 0x62, 0x48, - 0xc9, 0x79, 0xf3, 0x5f, 0xff, 0x7d, 0x16, 0x72, 0x02, 0x48, 0x36, 0x21, 0x63, 0x3a, 0x8e, 0xb2, - 0x6e, 0xf5, 0x02, 0x43, 0x34, 0x3a, 0xf4, 0x25, 0x06, 0x82, 0xe9, 0x38, 0x42, 0x89, 0x3b, 0x56, - 0x76, 0xbe, 0x96, 0x12, 0x77, 0x4c, 0xbe, 0x03, 0x19, 0x97, 0xc9, 0xa4, 0x75, 0x31, 0x67, 0x51, - 0x81, 0xcb, 0x38, 0xd9, 0x86, 0x8a, 0x45, 0x03, 0x6e, 0xbb, 0x62, 0xff, 0xc8, 0x54, 0x71, 0xae, - 0x19, 0xdf, 0x4e, 0x19, 0x09, 0x49, 0xf2, 0x31, 0x64, 0x0f, 0x39, 0xf7, 0x44, 0x18, 0x96, 0xd7, - 0xd7, 0x2e, 0xe2, 0xd0, 0x36, 0xe7, 0xde, 0x76, 0xca, 0x10, 0xf2, 0xf5, 0x67, 0x90, 0xe9, 0xd0, - 0x97, 0xa4, 0x05, 0x05, 0xb1, 0x1c, 0x51, 0xb1, 0xbb, 0xd0, 0x52, 0x86, 0xb2, 0xf5, 0x31, 0x64, - 0x51, 0x3b, 0xa9, 0x45, 0xc1, 0x1d, 0xee, 0xc6, 0x30, 0xbc, 0x6b, 0x51, 0x78, 0x87, 0x9b, 0x31, - 0x0c, 0xf0, 0xab, 0xf1, 0x00, 0x0f, 0xeb, 0x42, 0x2c, 0xc4, 0x97, 0x55, 0x88, 0x67, 0x55, 0x97, - 0xa0, 0x30, 0x19, 0x88, 0xc1, 0xa3, 0x86, 0xfe, 0x0f, 0x0d, 0x00, 0x8d, 0x78, 0x2e, 0xd5, 0x6e, - 0x03, 0xf8, 0x74, 0x60, 0x07, 0x9c, 0xfa, 0x54, 0x26, 0x87, 0xc5, 0xf5, 0xdb, 0x53, 0xce, 0x4d, - 0x04, 0x1a, 0x46, 0x84, 0x96, 0x45, 0x27, 0xa4, 0xc8, 0x4d, 0xa8, 0x8c, 0xdc, 0x98, 0xae, 0xd0, - 0x81, 0x04, 0x57, 0x77, 0x01, 0x26, 0x1a, 0x48, 0x01, 0x32, 0x4f, 0x5b, 0xdd, 0x6a, 0x8a, 0x14, - 0x21, 0xdb, 0xde, 0xeb, 0x74, 0xab, 0x1a, 0xb2, 0xda, 0x2f, 0xba, 0xd5, 0x34, 0x01, 0xc8, 0x6f, - 0xb5, 0x9e, 0xb5, 0xba, 0xad, 0x6a, 0x86, 0x94, 0x20, 0xd7, 0xde, 0xe8, 0x6e, 0x6e, 0x57, 0xb3, - 0xa4, 0x0c, 0x85, 0xbd, 0x76, 0x77, 0x67, 0x6f, 0xb7, 0x53, 0xcd, 0x21, 0xb1, 0xb9, 0xb7, 0xbb, - 0xdb, 0xda, 0xec, 0x56, 0xf3, 0xa8, 0x63, 0xbb, 0xb5, 0xb1, 0x55, 0x2d, 0x20, 0xbc, 0x6b, 0x6c, - 0x6c, 0xb6, 0xaa, 0xc5, 0x66, 0x1e, 0xb2, 0x7c, 0xec, 0x51, 0xfd, 0x97, 0x1a, 0xe4, 0x3b, 0x72, - 0x8e, 0xb7, 0x66, 0xb8, 0x3c, 0x1d, 0x63, 0x12, 0xfc, 0x75, 0xdd, 0xbd, 0x9e, 0x70, 0x17, 0x2d, - 0xec, 0x76, 0xdb, 0xd5, 0x14, 0x5a, 0x88, 0xad, 0x4e, 0x55, 0x8b, 0x2c, 0xec, 0x42, 0x69, 0xa7, - 0xbd, 0x61, 0x59, 0x3e, 0x0d, 0xb0, 0x2c, 0x66, 0x6d, 0xef, 0xd5, 0xfb, 0xc2, 0xba, 0x02, 0xae, - 0x26, 0x52, 0xe4, 0xae, 0xe0, 0x3e, 0x54, 0xdb, 0xf4, 0x8d, 0x29, 0x9b, 0x77, 0xda, 0xaf, 0x1e, - 0x2a, 0xf0, 0xc3, 0x66, 0x16, 0xd2, 0xb6, 0xa7, 0xaf, 0x41, 0x16, 0xb9, 0x58, 0x67, 0x0f, 0x6c, - 0x3f, 0x90, 0x59, 0x2c, 0x6f, 0x48, 0x02, 0xf3, 0xa2, 0x63, 0x06, 0x32, 0xf3, 0xe7, 0x0d, 0xd1, - 0xd6, 0x9f, 0x01, 0x74, 0xfb, 0x5e, 0x68, 0xc8, 0x1d, 0xd4, 0xa2, 0x92, 0x4b, 0x7d, 0xc6, 0x80, - 0x0a, 0x67, 0xa4, 0x6d, 0x4f, 0x64, 0x59, 0xcc, 0xf1, 0x69, 0x91, 0xe3, 0x45, 0x5b, 0xb7, 0x20, - 0xd3, 0x62, 0xa8, 0xa6, 0x3a, 0xf0, 0xbd, 0x7e, 0x4f, 0x56, 0xfd, 0x5e, 0x9f, 0x59, 0x32, 0xf6, - 0x17, 0xb6, 0x53, 0xc6, 0x22, 0xf6, 0x74, 0x44, 0xc7, 0x26, 0xb3, 0x28, 0x62, 0x7d, 0x1a, 0x50, - 0xde, 0xa3, 0xbe, 0xcf, 0x7c, 0x89, 0x4d, 0x87, 0x58, 0xd1, 0xd3, 0xc2, 0x0e, 0xc4, 0x36, 0x73, - 0x90, 0xa1, 0xae, 0xa5, 0xff, 0x69, 0x11, 0x8a, 0x5d, 0xd3, 0x6b, 0xbd, 0xc2, 0x92, 0x75, 0x1f, - 0xf2, 0x72, 0x17, 0x2a, 0xb3, 0xdf, 0x9a, 0xde, 0xab, 0x91, 0x7f, 0x86, 0x82, 0x92, 0xa7, 0x50, - 0x96, 0xad, 0xde, 0x90, 0x72, 0x53, 0xe5, 0x8d, 0xdb, 0xb3, 0x76, 0xb9, 0x18, 0xa4, 0xd1, 0x72, - 0x2d, 0x8f, 0xd9, 0x2e, 0x7f, 0x4e, 0xb9, 0x69, 0x80, 0x14, 0xc5, 0x36, 0xf9, 0x16, 0x94, 0x63, - 0x99, 0x48, 0x2d, 0xd5, 0xa9, 0x26, 0xc4, 0xf1, 0xe4, 0x13, 0xa8, 0xc6, 0x48, 0x69, 0x4c, 0xf6, - 0x42, 0xc6, 0x2c, 0xc5, 0xe4, 0x85, 0x45, 0x4d, 0x00, 0x9f, 0x8d, 0xb8, 0xf2, 0xac, 0x20, 0x94, - 0xdd, 0x98, 0xaf, 0xcc, 0x40, 0xac, 0xd0, 0x54, 0xf2, 0xc3, 0x26, 0xf9, 0x04, 0x96, 0xc4, 0x71, - 0xa4, 0x67, 0xd9, 0xbe, 0x4c, 0xb9, 0xa2, 0x92, 0x2f, 0xae, 0xaf, 0xcc, 0x57, 0xd4, 0x46, 0x81, - 0xad, 0x10, 0x6f, 0x2c, 0x7a, 0x09, 0x9a, 0xbc, 0xaf, 0x52, 0xb4, 0x2c, 0x17, 0x57, 0xe7, 0xeb, - 0x49, 0x24, 0xe4, 0x5f, 0x68, 0x50, 0x89, 0xbb, 0x4b, 0xbe, 0x07, 0x79, 0xc7, 0xdc, 0xa7, 0x4e, - 0x98, 0x99, 0xd7, 0xcf, 0x37, 0x4d, 0x8d, 0x67, 0x42, 0xa8, 0xe5, 0x72, 0x7f, 0x6c, 0x28, 0x0d, - 0xf5, 0xc7, 0x50, 0x8e, 0xb1, 0x49, 0x15, 0x32, 0x47, 0x74, 0xac, 0x0e, 0xed, 0xd8, 0xc4, 0x5d, - 0xf4, 0xca, 0x74, 0x46, 0xe1, 0xe5, 0x44, 0x12, 0x1f, 0xa6, 0x1f, 0x69, 0xf5, 0x9f, 0x6b, 0x50, - 0x8a, 0x66, 0x8e, 0x3c, 0x3d, 0x61, 0xd4, 0xea, 0x39, 0xa6, 0xfb, 0x3f, 0x6d, 0xd1, 0xbf, 0x0a, - 0xaa, 0xda, 0xec, 0x41, 0xc5, 0x97, 0xf5, 0xa8, 0x67, 0xbb, 0x76, 0x78, 0x8e, 0xb9, 0x73, 0xfa, - 0x84, 0x37, 0x54, 0x09, 0xdb, 0x71, 0x6d, 0x8e, 0x17, 0x00, 0x7f, 0x42, 0x12, 0x03, 0x16, 0x7c, - 0x75, 0x17, 0x92, 0x1a, 0x4f, 0x39, 0xde, 0x24, 0x34, 0x4a, 0x19, 0xa5, 0xb2, 0xe2, 0xc7, 0x68, - 0x69, 0xa4, 0xd2, 0x49, 0x5d, 0x4b, 0x45, 0xc5, 0x9d, 0x73, 0xaa, 0x6c, 0xb9, 0x96, 0x34, 0x32, - 0x22, 0xeb, 0x0f, 0xa1, 0xd8, 0xe1, 0x3e, 0x35, 0x87, 0x3b, 0xe2, 0xfa, 0xb5, 0x6f, 0x06, 0x2a, - 0xe3, 0x18, 0xa2, 0x2d, 0x2f, 0x24, 0xd8, 0x2f, 0xac, 0xcf, 0x1a, 0x8a, 0xaa, 0xff, 0x45, 0x83, - 0x72, 0xcc, 0x77, 0xf2, 0x01, 0xa4, 0x6d, 0x4b, 0xcd, 0xd9, 0x7b, 0x67, 0x98, 0x13, 0x0e, 0x68, - 0xa4, 0x6d, 0x0b, 0xd3, 0x50, 0xac, 0x94, 0xcf, 0xca, 0x01, 0x93, 0xaa, 0x1a, 0x55, 0xf9, 0xd5, - 0xe8, 0x64, 0x20, 0x27, 0xe0, 0xff, 0xe6, 0xd4, 0xa5, 0xe8, 0xc0, 0x90, 0x38, 0xf7, 0x66, 0xe7, - 0x9d, 0x7b, 0x73, 0x93, 0x73, 0x6f, 0xfd, 0x77, 0x1a, 0x54, 0xe2, 0x4b, 0xf1, 0xfa, 0x1e, 0x3e, - 0x05, 0x22, 0xee, 0x5c, 0xbd, 0x44, 0x78, 0xa5, 0xcf, 0xba, 0x16, 0x55, 0x85, 0x50, 0x7c, 0x8e, - 0xdf, 0x85, 0x32, 0x6e, 0x6e, 0x55, 0x1d, 0x84, 0xeb, 0x0b, 0x06, 0x20, 0x4b, 0x96, 0x85, 0xfa, - 0xaf, 0xd3, 0xb8, 0x28, 0xd1, 0xe2, 0xfe, 0x17, 0x98, 0xbc, 0x03, 0x97, 0x43, 0x45, 0xf1, 0x9d, - 0x90, 0x39, 0x4b, 0xd3, 0x25, 0xa5, 0x29, 0x36, 0xff, 0xb7, 0x60, 0x31, 0x52, 0xb2, 0x3f, 0xe6, - 0x54, 0x9e, 0x7b, 0xb3, 0x46, 0xb4, 0xc9, 0x9a, 0xc8, 0x24, 0xb7, 0x21, 0x43, 0x59, 0xa0, 0x2a, - 0xd3, 0xf4, 0xa3, 0x43, 0x8b, 0x05, 0x06, 0x02, 0xf0, 0xa4, 0x47, 0xd1, 0x7b, 0xfd, 0x11, 0x2c, - 0x26, 0x53, 0x30, 0x1e, 0x97, 0x5e, 0xec, 0x7e, 0x7f, 0x77, 0xef, 0xd3, 0xdd, 0x6a, 0x0a, 0x89, - 0x9d, 0xdd, 0xe6, 0xde, 0x8b, 0xdd, 0xad, 0xaa, 0x46, 0x2a, 0x50, 0xdc, 0x7b, 0xd1, 0x95, 0x54, - 0x7a, 0xa2, 0xe2, 0x1a, 0x14, 0x37, 0x3c, 0x5b, 0x94, 0x5b, 0xcc, 0x34, 0xa2, 0x20, 0xab, 0xec, - 0x23, 0x09, 0xbc, 0x64, 0x96, 0xda, 0xcc, 0x12, 0x90, 0x80, 0x3c, 0x81, 0xbc, 0x60, 0x87, 0x79, - 0xef, 0xc6, 0xac, 0xb7, 0x11, 0x89, 0x8d, 0x5a, 0x86, 0x12, 0xa9, 0xff, 0x55, 0x83, 0x62, 0xc8, - 0x24, 0x06, 0x94, 0xf0, 0xda, 0x6d, 0xda, 0x2e, 0xf5, 0xd5, 0x42, 0xaf, 0x9f, 0x43, 0x59, 0x63, - 0x33, 0x14, 0x12, 0x24, 0x1e, 0x91, 0x23, 0x35, 0xf5, 0x57, 0xb0, 0x98, 0xec, 0x26, 0x35, 0x28, - 0x0c, 0x69, 0x10, 0x98, 0x83, 0xf0, 0x69, 0x26, 0x24, 0x71, 0x5f, 0x4d, 0xc6, 0x57, 0x4f, 0x51, - 0x11, 0x03, 0xe7, 0xc2, 0x1e, 0xa2, 0x94, 0x7c, 0x69, 0x93, 0x04, 0xa6, 0x14, 0x9f, 0x9a, 0x01, - 0x73, 0xc3, 0x37, 0x0e, 0x49, 0x89, 0xe9, 0x14, 0x93, 0xd5, 0x86, 0x62, 0x78, 0x43, 0x38, 0xfd, - 0xd9, 0x4d, 0x5c, 0xa3, 0xc7, 0x5e, 0x98, 0xd5, 0x45, 0x3b, 0x7a, 0x44, 0xca, 0x4c, 0x1e, 0x91, - 0xf4, 0x97, 0x70, 0x69, 0xea, 0x32, 0x44, 0x1e, 0x40, 0x31, 0x7c, 0x14, 0x50, 0x53, 0xf7, 0xe6, - 0xdc, 0x2b, 0x94, 0x11, 0x41, 0x31, 0x0e, 0x45, 0xd5, 0xe9, 0x25, 0x1e, 0xcc, 0x4a, 0xc6, 0x82, - 0xe0, 0x76, 0xc2, 0x17, 0xb1, 0xcf, 0x61, 0x21, 0x14, 0x96, 0x93, 0xf8, 0x9a, 0xc3, 0x45, 0xf1, - 0x94, 0x8e, 0xc7, 0xd3, 0x57, 0x69, 0x20, 0xb8, 0xe9, 0x3b, 0xa3, 0xe1, 0xd0, 0xf4, 0xc7, 0xe1, - 0x2d, 0x3c, 0xfe, 0x8c, 0xa7, 0x5d, 0xfc, 0x19, 0x0f, 0x33, 0x0c, 0xb7, 0x87, 0xb4, 0x77, 0x6c, - 0xbb, 0x16, 0x3b, 0x56, 0x43, 0x02, 0xb2, 0x3e, 0x15, 0x1c, 0xf2, 0x0d, 0xc8, 0xba, 0xcc, 0x0d, - 0xd3, 0xee, 0x95, 0xe9, 0xed, 0x35, 0xf4, 0xf8, 0x18, 0x4f, 0x21, 0x88, 0x22, 0x1f, 0x41, 0x99, - 0xb3, 0x5e, 0xe4, 0x75, 0xf6, 0x0c, 0xaf, 0xf1, 0xea, 0xc0, 0x59, 0xb4, 0xf4, 0xdf, 0x85, 0x85, - 0x03, 0x9f, 0x0d, 0x27, 0xf2, 0xb9, 0xb3, 0xe5, 0x2b, 0x28, 0x11, 0x69, 0x78, 0x07, 0x20, 0x38, - 0xb2, 0x65, 0xc2, 0x0c, 0xc4, 0x49, 0xac, 0x68, 0x94, 0x90, 0x83, 0x53, 0x17, 0x90, 0xb7, 0xa0, - 0xc4, 0xfb, 0x61, 0x6f, 0x41, 0xf4, 0x16, 0x79, 0x5f, 0x76, 0x36, 0x01, 0x8a, 0x6c, 0xc4, 0xf7, - 0xd9, 0xc8, 0xb5, 0xf4, 0x3f, 0x6b, 0x70, 0x39, 0x31, 0xdb, 0xea, 0x85, 0xf3, 0x31, 0xa4, 0xd9, - 0xd1, 0xdc, 0xfc, 0x3a, 0x43, 0xa2, 0xb1, 0x77, 0xb4, 0x9d, 0x32, 0xd2, 0xec, 0x88, 0x3c, 0x8c, - 0x2f, 0xeb, 0xac, 0x73, 0x5d, 0x22, 0x78, 0xb6, 0x53, 0x6a, 0xe1, 0xeb, 0x1b, 0x90, 0xde, 0x3b, - 0x22, 0x4f, 0x40, 0x3c, 0x35, 0xf6, 0xb8, 0xb9, 0xef, 0x44, 0x97, 0xed, 0xfa, 0x4c, 0x0b, 0xba, - 0x08, 0x31, 0x20, 0x08, 0x9b, 0xc2, 0xb3, 0x30, 0x65, 0xea, 0xbf, 0x4d, 0x03, 0x34, 0xcd, 0xc0, - 0xee, 0xcb, 0x19, 0xb9, 0x01, 0x0b, 0xc1, 0xa8, 0xdf, 0xa7, 0x01, 0xde, 0x3d, 0x46, 0xae, 0x3c, - 0x04, 0x65, 0x8d, 0x8a, 0x62, 0x6e, 0x22, 0x0f, 0x41, 0x07, 0xa6, 0xed, 0x8c, 0x7c, 0xaa, 0x40, - 0xf2, 0x64, 0x50, 0x51, 0x4c, 0x09, 0xba, 0x89, 0xbb, 0x84, 0x53, 0xb7, 0x3f, 0xee, 0x0d, 0x83, - 0x9e, 0xf7, 0x60, 0x4d, 0x84, 0x4c, 0xd6, 0xa8, 0x28, 0xee, 0xf3, 0xa0, 0xfd, 0x60, 0xed, 0x24, - 0xea, 0xf1, 0x03, 0x95, 0xd3, 0x63, 0xa8, 0xc7, 0x0f, 0xa6, 0x50, 0x8f, 0x45, 0x24, 0x24, 0x51, - 0x8f, 0xc9, 0x1a, 0x2c, 0x9b, 0x7d, 0x3e, 0x32, 0x9d, 0x5e, 0xd2, 0x85, 0xbc, 0xc0, 0x12, 0xd9, - 0xd7, 0x89, 0x3b, 0x32, 0x91, 0x48, 0xfa, 0x53, 0x88, 0x4b, 0x7c, 0x1c, 0xf3, 0x4a, 0xff, 0xa9, - 0x06, 0xc5, 0xae, 0x8a, 0x10, 0xf2, 0xff, 0x50, 0x65, 0x1e, 0x15, 0xef, 0xc6, 0xae, 0xdc, 0x49, - 0x81, 0x9a, 0xaf, 0x25, 0xe4, 0x6f, 0x4e, 0xd8, 0x64, 0x05, 0xef, 0x6a, 0xa6, 0x25, 0xeb, 0x56, - 0x8f, 0x33, 0x6e, 0x3a, 0x6a, 0xd6, 0x16, 0x91, 0x2f, 0x2a, 0x57, 0x17, 0xb9, 0xe4, 0x0e, 0x5c, - 0x3a, 0xf6, 0x6d, 0x4e, 0x13, 0x50, 0x39, 0x75, 0x4b, 0xa2, 0x63, 0x82, 0xd5, 0x7f, 0x95, 0x83, - 0x52, 0xb4, 0xc4, 0xa4, 0x09, 0x25, 0x8f, 0x59, 0xbd, 0x81, 0xcf, 0x46, 0xe1, 0x4d, 0xf4, 0xc6, - 0xfc, 0x88, 0xc0, 0x52, 0xf0, 0x14, 0xa1, 0xdb, 0x29, 0xa3, 0xe8, 0xa9, 0x76, 0xfd, 0x8f, 0x59, - 0x51, 0x5b, 0x04, 0x41, 0x9e, 0x40, 0xd6, 0x67, 0xc7, 0x61, 0x74, 0xbd, 0x77, 0x0e, 0x5d, 0x0d, - 0x83, 0x1d, 0x1b, 0x42, 0xa8, 0xfe, 0xe3, 0x2c, 0x64, 0x0c, 0x76, 0xfc, 0xba, 0x59, 0xef, 0xcc, - 0x44, 0xb4, 0x02, 0xd5, 0x21, 0x0d, 0x0e, 0xa9, 0xd5, 0x43, 0xa7, 0xe5, 0xba, 0xc9, 0x69, 0x5a, - 0x94, 0xfc, 0x36, 0xb3, 0xe4, 0x2a, 0xdf, 0x81, 0x4b, 0xfe, 0xc8, 0x75, 0x6d, 0x77, 0x10, 0x83, - 0xca, 0x30, 0x5b, 0x52, 0x1d, 0x11, 0x76, 0x05, 0xaa, 0x18, 0x0a, 0x09, 0xad, 0x32, 0x7e, 0x16, - 0x25, 0x3f, 0x42, 0xde, 0x83, 0x9c, 0xcc, 0x1b, 0xb9, 0x39, 0xa7, 0xd6, 0xc9, 0xae, 0x32, 0x24, - 0x92, 0x3c, 0x8c, 0xa7, 0x9b, 0xe2, 0x9c, 0xb9, 0x08, 0xa3, 0x6b, 0x92, 0x89, 0xc8, 0xe7, 0xb0, - 0x20, 0x4b, 0x7f, 0x6f, 0x7f, 0x8c, 0x76, 0xd5, 0x0a, 0x62, 0x41, 0x1e, 0x9d, 0x73, 0x41, 0x1a, - 0xb2, 0xf6, 0x37, 0xc7, 0x58, 0xfc, 0xc5, 0xad, 0xa9, 0x4c, 0x27, 0x9c, 0xfa, 0x67, 0x50, 0x3d, - 0x09, 0x98, 0x71, 0x7f, 0x5a, 0x8b, 0xdf, 0x9f, 0x66, 0xa5, 0x9a, 0xe8, 0x8c, 0x11, 0xbb, 0x5b, - 0x61, 0x45, 0x17, 0x19, 0x4a, 0xdf, 0x85, 0x4a, 0xcb, 0x1a, 0x4c, 0xfe, 0x4c, 0xfb, 0x9a, 0x75, - 0x4a, 0xff, 0x52, 0x83, 0x05, 0xa5, 0x50, 0xa5, 0xe2, 0xfb, 0xb1, 0x54, 0x7c, 0x7d, 0xba, 0x2c, - 0xc5, 0xb1, 0x5f, 0x3f, 0x09, 0xdf, 0x13, 0x49, 0xf8, 0x2e, 0xe4, 0x28, 0xea, 0x55, 0x1b, 0xe4, - 0x8d, 0x99, 0xa3, 0x1a, 0x12, 0x93, 0x4c, 0xba, 0x1a, 0x64, 0xb1, 0x8f, 0xdc, 0x85, 0x4c, 0xe0, - 0xf7, 0xcf, 0xde, 0x17, 0x88, 0x42, 0xb0, 0x15, 0x4c, 0x0e, 0xe1, 0xf3, 0xc1, 0x56, 0xc0, 0xb1, - 0xb4, 0xf5, 0x1d, 0x9b, 0xba, 0xbc, 0x67, 0x5b, 0xea, 0x24, 0x54, 0x94, 0x8c, 0x1d, 0x0b, 0x3b, - 0x03, 0xea, 0xbf, 0xa2, 0x3e, 0x76, 0xca, 0x33, 0x58, 0x51, 0x32, 0x76, 0x2c, 0x5c, 0xfb, 0x61, - 0x30, 0x50, 0x57, 0x21, 0x6c, 0xea, 0x5f, 0x69, 0x50, 0xed, 0x32, 0x4f, 0xdc, 0xc0, 0x83, 0xff, - 0x8d, 0x93, 0x46, 0xe1, 0x42, 0x27, 0x8d, 0x44, 0xad, 0xff, 0x83, 0x06, 0x97, 0x62, 0xde, 0xaa, - 0xf0, 0x7a, 0xcd, 0x48, 0xc1, 0x1b, 0x18, 0x3b, 0x52, 0x3e, 0xdc, 0x9a, 0xde, 0xec, 0x27, 0xc7, - 0x89, 0x42, 0xb3, 0xfe, 0x58, 0x84, 0xd8, 0x7d, 0xc8, 0x8b, 0xc7, 0xa5, 0x30, 0xc6, 0xa6, 0xd3, - 0x8c, 0x90, 0x97, 0x35, 0x5e, 0x41, 0x13, 0xa1, 0xf6, 0x77, 0x0d, 0x60, 0x02, 0x21, 0xf7, 0x13, - 0x29, 0xfd, 0xdd, 0x53, 0xb4, 0x4d, 0x52, 0x39, 0xa9, 0xc7, 0x52, 0xb8, 0x5c, 0xa7, 0x88, 0xae, - 0xff, 0x4c, 0x93, 0x69, 0x7e, 0x19, 0x72, 0x62, 0xf4, 0xf0, 0xd6, 0x23, 0x88, 0xb3, 0x17, 0x39, - 0x71, 0x2d, 0xcf, 0x9f, 0xbc, 0x96, 0x5f, 0x3c, 0xc7, 0xae, 0x7f, 0x99, 0x87, 0xcc, 0x86, 0x67, - 0x93, 0xcf, 0xa0, 0x1c, 0x3b, 0x7e, 0x91, 0x1b, 0xa7, 0x1f, 0xce, 0x44, 0x48, 0xd7, 0x6f, 0x9e, - 0xe7, 0x04, 0xa7, 0xa7, 0xc8, 0x36, 0xe4, 0x44, 0x3e, 0x21, 0xef, 0xcc, 0xcb, 0x33, 0x52, 0xdf, - 0xd5, 0xd3, 0xd3, 0x90, 0x9e, 0x22, 0x5d, 0x28, 0x45, 0x21, 0x40, 0xae, 0x9f, 0x16, 0x1e, 0x52, - 0xa3, 0x7e, 0x76, 0x04, 0xe9, 0x29, 0xf2, 0x09, 0x14, 0xc3, 0xff, 0xe2, 0xc9, 0xb5, 0x29, 0x89, - 0x13, 0xdf, 0x06, 0xd4, 0xaf, 0x9f, 0x82, 0x88, 0x54, 0xfe, 0x10, 0x2a, 0xf1, 0xcf, 0x1b, 0xc8, - 0xcd, 0x99, 0x42, 0x27, 0x3e, 0x99, 0xa8, 0xdf, 0x3a, 0x03, 0x15, 0xa9, 0xdf, 0x82, 0x4c, 0xd7, - 0xf4, 0xc8, 0x5b, 0xb3, 0x9e, 0x28, 0x42, 0x65, 0x6f, 0xce, 0x7d, 0xbf, 0xd0, 0x33, 0x3f, 0x49, - 0x6b, 0x6b, 0x1a, 0x79, 0x01, 0x0b, 0x89, 0x7f, 0x97, 0xc8, 0xad, 0x73, 0xfd, 0xfb, 0x74, 0x9a, - 0xe6, 0xd4, 0x9a, 0x46, 0x36, 0xa0, 0x10, 0xfe, 0xbb, 0x3c, 0x27, 0x0b, 0xd5, 0xdf, 0x9e, 0xe2, - 0xc7, 0x3e, 0x5a, 0xd1, 0x53, 0xc4, 0x81, 0x52, 0x87, 0x3a, 0x07, 0x9b, 0x87, 0xb4, 0x7f, 0x44, - 0xbe, 0x39, 0x01, 0xcb, 0x8f, 0x62, 0x1a, 0xf1, 0x8f, 0x62, 0x22, 0x5c, 0x68, 0x5d, 0xe3, 0xbc, - 0xf0, 0x68, 0x36, 0x1f, 0x41, 0x7e, 0x53, 0x7c, 0x4c, 0x33, 0xd7, 0xde, 0xe5, 0xb8, 0x4e, 0xf1, - 0xd9, 0xcd, 0x86, 0xe3, 0xe8, 0xa9, 0xe6, 0xfd, 0xcf, 0xee, 0x0d, 0x6c, 0x7e, 0x38, 0xda, 0xc7, - 0xa1, 0x56, 0x15, 0x26, 0xfc, 0x5d, 0x5f, 0x9d, 0x7c, 0x0b, 0xb0, 0x3a, 0xa0, 0xee, 0xaa, 0x54, - 0xb9, 0x9f, 0x17, 0xaf, 0x37, 0xf7, 0xff, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x09, 0xbb, 0x84, 0x72, - 0x22, 0x24, 0x00, 0x00, +func init() { proto.RegisterFile("public.proto", fileDescriptor_public_e3e3347d5819a629) } + +var fileDescriptor_public_e3e3347d5819a629 = []byte{ + // 3077 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5a, 0x3b, 0x70, 0x23, 0xc7, + 0xd1, 0xc6, 0xe2, 0x8d, 0x06, 0x40, 0xe2, 0xe6, 0xa8, 0xfb, 0x21, 0x48, 0x3a, 0xdd, 0xed, 0x3d, + 0xc4, 0xff, 0xee, 0xff, 0x41, 0x1e, 0xa9, 0x3b, 0x1d, 0x75, 0xf2, 0x83, 0x20, 0xa1, 0x23, 0x6c, + 0x1e, 0x09, 0x2d, 0x70, 0x56, 0x95, 0x4a, 0x2e, 0xd4, 0x12, 0x3b, 0x04, 0xd7, 0x5c, 0xec, 0xec, + 0xed, 0x0e, 0x48, 0x21, 0x75, 0xe4, 0x2a, 0x97, 0xcb, 0x91, 0x63, 0x87, 0x2e, 0xbb, 0x9c, 0x38, + 0x71, 0xa2, 0xcc, 0xa9, 0x9d, 0xba, 0x9c, 0xd9, 0x99, 0x13, 0x95, 0x33, 0x47, 0x0e, 0x5c, 0xae, + 0x79, 0x2d, 0x76, 0x09, 0x80, 0x8f, 0x93, 0x03, 0x3b, 0xc2, 0x74, 0xcf, 0xd7, 0x3d, 0xdd, 0x33, + 0x3d, 0xdd, 0x33, 0x83, 0x85, 0x92, 0x37, 0x3a, 0x70, 0xec, 0x7e, 0xdd, 0xf3, 0x09, 0x25, 0x68, + 0xd1, 0xb1, 0xdd, 0x63, 0xec, 0x5b, 0x6b, 0x75, 0xc1, 0xae, 0xdd, 0x1c, 0x10, 0x32, 0x70, 0xf0, + 0x0a, 0xef, 0x3e, 0x18, 0x1d, 0xae, 0x58, 0x23, 0xdf, 0xa4, 0x36, 0x71, 0x85, 0x40, 0xad, 0xda, + 0x27, 0xc3, 0x21, 0x71, 0x57, 0x8e, 0xb0, 0xe9, 0xd0, 0xa3, 0xfe, 0x11, 0xee, 0x1f, 0xcb, 0x9e, + 0xeb, 0x7d, 0xe2, 0x1e, 0xda, 0x83, 0x15, 0xf1, 0x23, 0x98, 0x7a, 0x0e, 0x32, 0xcd, 0xa1, 0x47, + 0xc7, 0xfa, 0x2b, 0x28, 0x7e, 0x0f, 0xfb, 0x81, 0x4d, 0xdc, 0x96, 0x7b, 0x48, 0xd0, 0xdb, 0x50, + 0x18, 0x10, 0xc9, 0xa8, 0x6a, 0xb7, 0xb4, 0xe5, 0x82, 0x31, 0x61, 0xb0, 0xde, 0x83, 0x91, 0xed, + 0x58, 0xdb, 0x26, 0xc5, 0xd5, 0xa4, 0xe8, 0x0d, 0x19, 0xe8, 0x3e, 0x2c, 0xf8, 0xd8, 0xc1, 0x66, + 0x80, 0x95, 0x82, 0x14, 0x87, 0x9c, 0xe1, 0xea, 0xeb, 0x70, 0x7d, 0xd7, 0x0e, 0x68, 0x07, 0xfb, + 0x27, 0x76, 0x1f, 0x07, 0x06, 0x7e, 0x35, 0xc2, 0x01, 0x65, 0xca, 0x5d, 0x73, 0x88, 0x03, 0xcf, + 0xec, 0x63, 0x35, 0x74, 0xc8, 0xd0, 0x77, 0x61, 0x29, 0x2e, 0x14, 0x78, 0xc4, 0x0d, 0x30, 0x7a, + 0x1f, 0xf2, 0x81, 0xe4, 0x55, 0xb5, 0x5b, 0xa9, 0xe5, 0xe2, 0x5a, 0xb5, 0x7e, 0x66, 0xee, 0xea, + 0x52, 0xc8, 0x08, 0x91, 0xfa, 0x33, 0xc8, 0x49, 0x26, 0x42, 0x90, 0x66, 0xa3, 0xc8, 0x11, 0x79, + 0x3b, 0x6e, 0x4a, 0xf2, 0xac, 0x29, 0x01, 0x2c, 0x32, 0x53, 0xda, 0xc4, 0x0a, 0x6d, 0xbf, 0x35, + 0x65, 0x7b, 0x23, 0x59, 0xd5, 0x22, 0x42, 0xe8, 0x9b, 0xcc, 0x4e, 0x07, 0xf7, 0x29, 0xf1, 0xb9, + 0xc6, 0xe2, 0x9a, 0x3e, 0x65, 0xa7, 0x81, 0x03, 0x32, 0xf2, 0xfb, 0xb8, 0xc3, 0x81, 0x36, 0x71, + 0x8d, 0x50, 0x46, 0xff, 0x08, 0x2a, 0x93, 0x41, 0xa5, 0xef, 0xcb, 0x90, 0xf6, 0x88, 0xa5, 0xfc, + 0x5e, 0x9a, 0xd2, 0xd7, 0x26, 0x96, 0xc1, 0x11, 0xfa, 0x3f, 0xd2, 0x90, 0x6a, 0x13, 0x6b, 0xa6, + 0xb3, 0x4b, 0x90, 0xf1, 0x88, 0xd5, 0x6a, 0x4b, 0x47, 0x05, 0x81, 0x6e, 0x01, 0x58, 0xd8, 0x73, + 0xc8, 0x78, 0x88, 0x5d, 0x2a, 0x16, 0x72, 0x27, 0x61, 0x44, 0x78, 0xe8, 0x36, 0x14, 0x7d, 0xec, + 0x39, 0x76, 0xdf, 0xec, 0x05, 0x98, 0x56, 0x41, 0x41, 0x24, 0xb3, 0x83, 0x29, 0xfa, 0x00, 0x6e, + 0x48, 0x8a, 0x79, 0xd3, 0xeb, 0x13, 0x97, 0xfa, 0xc4, 0x71, 0xb0, 0x5f, 0x2d, 0x4a, 0xf4, 0x1b, + 0x91, 0xfe, 0xad, 0xb0, 0x1b, 0xdd, 0x81, 0x52, 0x40, 0x4d, 0x8a, 0x0f, 0x47, 0x0e, 0x57, 0x5e, + 0x92, 0xf0, 0xa2, 0xe2, 0x32, 0xed, 0xef, 0x02, 0x58, 0x26, 0x1e, 0x12, 0x97, 0x43, 0xca, 0x12, + 0x52, 0x10, 0x3c, 0x06, 0x40, 0x90, 0xfa, 0x01, 0x39, 0xa8, 0x2e, 0xc8, 0x1e, 0x46, 0xa0, 0x1b, + 0x90, 0x65, 0x3a, 0x46, 0x41, 0x35, 0xcd, 0xdd, 0x95, 0x14, 0x9b, 0x05, 0xd3, 0xb2, 0xb0, 0x55, + 0xcd, 0xdc, 0xd2, 0x96, 0xf3, 0x86, 0x20, 0xd0, 0x16, 0x2c, 0x06, 0xb6, 0xdb, 0xc7, 0xbb, 0x66, + 0x40, 0x0d, 0xec, 0x11, 0x9f, 0x56, 0xb3, 0x7c, 0xf1, 0xde, 0xac, 0x8b, 0xfd, 0x58, 0x57, 0xfb, + 0xb1, 0xbe, 0x2d, 0xf7, 0xa3, 0x71, 0x56, 0x02, 0xad, 0xc2, 0xf5, 0x89, 0xe7, 0x7b, 0x61, 0x98, + 0xe4, 0xf8, 0xf8, 0xb3, 0xba, 0x90, 0x0e, 0x25, 0xc9, 0x6e, 0x3b, 0xa6, 0x8b, 0xab, 0x79, 0x6e, + 0x53, 0x8c, 0x87, 0x1e, 0x41, 0x76, 0xe4, 0x51, 0x7b, 0x88, 0xab, 0x85, 0x8b, 0x2c, 0x92, 0x40, + 0x74, 0x13, 0xc0, 0xf3, 0xc9, 0x17, 0x63, 0x03, 0x9b, 0xd6, 0xb8, 0xba, 0xc8, 0x95, 0x46, 0x38, + 0x6c, 0x58, 0x4e, 0xa9, 0xed, 0x5b, 0xe1, 0x16, 0xc6, 0x78, 0x68, 0x19, 0x16, 0x7d, 0x19, 0xa6, + 0x0a, 0x76, 0x8d, 0xc3, 0xce, 0xb2, 0x1b, 0x39, 0xc8, 0x90, 0x53, 0x17, 0xfb, 0xfa, 0xaf, 0x92, + 0x00, 0x5d, 0xd3, 0x53, 0x7b, 0x05, 0x41, 0xca, 0x23, 0x96, 0x08, 0x41, 0xb6, 0x2a, 0x1e, 0xb1, + 0xce, 0x44, 0x5b, 0x72, 0x46, 0xb4, 0xdd, 0x80, 0xec, 0xd0, 0xfc, 0xc2, 0xf0, 0x02, 0x1e, 0x8b, + 0x49, 0x43, 0x52, 0x8c, 0x4f, 0x49, 0x9b, 0x2d, 0x0c, 0x5b, 0xcf, 0xb2, 0x21, 0x29, 0x16, 0xe9, + 0x94, 0xb4, 0xda, 0x7c, 0x39, 0x0b, 0x06, 0x6f, 0xa3, 0x1a, 0xe4, 0x0f, 0x7d, 0x32, 0x6c, 0xab, + 0x65, 0x2c, 0x1b, 0x21, 0xcd, 0xf4, 0xb0, 0x76, 0xab, 0x2d, 0xd7, 0x45, 0x52, 0x3c, 0x5e, 0xfa, + 0x47, 0x78, 0x28, 0x16, 0x81, 0xc5, 0x0b, 0xa7, 0xb8, 0x3d, 0x98, 0x1e, 0x11, 0x8b, 0x4f, 0x7f, + 0xc1, 0x90, 0x14, 0x4b, 0x1d, 0xe6, 0x88, 0x1e, 0x11, 0xdf, 0xa6, 0x63, 0xb1, 0x27, 0x8c, 0x09, + 0x83, 0x59, 0xe5, 0x99, 0xf4, 0x48, 0x84, 0xbf, 0xc1, 0xdb, 0x1f, 0x26, 0xab, 0x5a, 0x23, 0x0f, + 0x59, 0x6a, 0xfa, 0x03, 0x4c, 0xf5, 0xbf, 0x66, 0x60, 0xa9, 0x6b, 0x7a, 0x8d, 0xb1, 0x4a, 0x06, + 0x6a, 0xda, 0x3e, 0x54, 0x10, 0x3e, 0x73, 0x97, 0x4b, 0x1f, 0x52, 0x02, 0x6d, 0x42, 0x66, 0x68, + 0xd2, 0xfe, 0x91, 0xcc, 0x3c, 0x0f, 0xa7, 0x44, 0x67, 0x8d, 0x58, 0x7f, 0xc1, 0x44, 0x0c, 0x21, + 0x39, 0x6f, 0xfe, 0x6b, 0xbf, 0x4d, 0x43, 0x86, 0x03, 0xd1, 0x16, 0xa4, 0x4c, 0xc7, 0x91, 0xd6, + 0xad, 0x5c, 0x61, 0x88, 0x7a, 0x07, 0xbf, 0x62, 0x81, 0x60, 0x3a, 0x0e, 0x57, 0xe2, 0x8e, 0xa5, + 0x9d, 0xaf, 0xa5, 0xc4, 0x1d, 0xa3, 0x6f, 0x41, 0xca, 0x25, 0x22, 0x69, 0x5d, 0xcd, 0x59, 0xa6, + 0xc0, 0x25, 0x14, 0xed, 0x40, 0xc9, 0xc2, 0x01, 0xb5, 0x5d, 0xbe, 0x7f, 0x44, 0xaa, 0xb8, 0xd4, + 0x8c, 0xef, 0x24, 0x8c, 0x98, 0x24, 0xfa, 0x18, 0xd2, 0x47, 0x94, 0x7a, 0x3c, 0x0c, 0x8b, 0x6b, + 0xab, 0x57, 0x71, 0x68, 0x87, 0x52, 0x6f, 0x27, 0x61, 0x70, 0xf9, 0xda, 0x2e, 0xa4, 0x3a, 0xf8, + 0x15, 0x6a, 0x42, 0x8e, 0x2f, 0x47, 0x58, 0xec, 0xae, 0xb4, 0x94, 0x4a, 0xb6, 0x36, 0x86, 0x34, + 0xd3, 0x8e, 0xaa, 0x61, 0x70, 0xab, 0xdd, 0xa8, 0xc2, 0xbb, 0x1a, 0x86, 0xb7, 0xda, 0x8c, 0x2a, + 0xc0, 0x6f, 0x46, 0x03, 0x5c, 0xd5, 0x85, 0x48, 0x88, 0x2f, 0xc9, 0x10, 0x4f, 0xcb, 0x2e, 0x4e, + 0xb1, 0x64, 0xc0, 0x07, 0x0f, 0x1b, 0xfa, 0xdf, 0x35, 0x00, 0x66, 0xc4, 0x0b, 0xa1, 0x76, 0x07, + 0xc0, 0xc7, 0x03, 0x3b, 0xa0, 0xd8, 0xc7, 0x22, 0x39, 0x2c, 0xac, 0xdd, 0x9f, 0x72, 0x6e, 0x22, + 0x50, 0x37, 0x42, 0xb4, 0x28, 0x3a, 0x8a, 0x42, 0x77, 0xa1, 0x34, 0x72, 0x23, 0xba, 0x94, 0x03, + 0x31, 0xae, 0xee, 0x02, 0x4c, 0x34, 0xa0, 0x1c, 0xa4, 0x9e, 0x37, 0xbb, 0x95, 0x04, 0xca, 0x43, + 0xba, 0xbd, 0xdf, 0xe9, 0x56, 0x34, 0xc6, 0x6a, 0xbf, 0xec, 0x56, 0x92, 0x08, 0x20, 0xbb, 0xdd, + 0xdc, 0x6d, 0x76, 0x9b, 0x95, 0x14, 0x2a, 0x40, 0xa6, 0xbd, 0xd9, 0xdd, 0xda, 0xa9, 0xa4, 0x51, + 0x11, 0x72, 0xfb, 0xed, 0x6e, 0x6b, 0x7f, 0xaf, 0x53, 0xc9, 0x30, 0x62, 0x6b, 0x7f, 0x6f, 0xaf, + 0xb9, 0xd5, 0xad, 0x64, 0x99, 0x8e, 0x9d, 0xe6, 0xe6, 0x76, 0x25, 0xc7, 0xe0, 0x5d, 0x63, 0x73, + 0xab, 0x59, 0xc9, 0x37, 0xb2, 0x90, 0xa6, 0x63, 0x0f, 0xeb, 0x3f, 0xd7, 0x20, 0xdb, 0x11, 0x73, + 0xbc, 0x3d, 0xc3, 0xe5, 0xe9, 0x18, 0x13, 0xe0, 0xaf, 0xeb, 0xee, 0xed, 0x98, 0xbb, 0xcc, 0xc2, + 0x6e, 0xb7, 0x5d, 0x49, 0x30, 0x0b, 0x59, 0xab, 0x53, 0xd1, 0x42, 0x0b, 0xbb, 0x50, 0x68, 0xb5, + 0x37, 0x2d, 0xcb, 0xc7, 0x01, 0x2b, 0x8b, 0x69, 0xdb, 0x3b, 0x79, 0x9f, 0x5b, 0x97, 0x63, 0xab, + 0xc9, 0x28, 0xf4, 0x90, 0x73, 0x9f, 0xc8, 0x6d, 0xfa, 0xc6, 0x94, 0xcd, 0xad, 0xf6, 0xc9, 0x13, + 0x09, 0x7e, 0xd2, 0x48, 0x43, 0xd2, 0xf6, 0xf4, 0x55, 0x48, 0x33, 0x2e, 0xab, 0xb3, 0x87, 0xb6, + 0x1f, 0x88, 0x2c, 0x96, 0x35, 0x04, 0xc1, 0xf2, 0xa2, 0x63, 0x06, 0x22, 0xf3, 0x67, 0x0d, 0xde, + 0xd6, 0x77, 0x01, 0xba, 0x7d, 0x4f, 0x19, 0xf2, 0x80, 0x69, 0x91, 0xc9, 0xa5, 0x36, 0x63, 0x40, + 0x89, 0x33, 0x92, 0xb6, 0xc7, 0xb3, 0x2c, 0xcb, 0xf1, 0x49, 0x9e, 0xe3, 0x79, 0x5b, 0xb7, 0x20, + 0xd5, 0x24, 0x4c, 0x4d, 0x65, 0xe0, 0x7b, 0xfd, 0x9e, 0xa8, 0xfa, 0xbd, 0x3e, 0xb1, 0x44, 0xec, + 0x97, 0x77, 0x12, 0xc6, 0x02, 0xeb, 0xe9, 0xf0, 0x8e, 0x2d, 0x62, 0x61, 0x86, 0xf5, 0x71, 0x80, + 0x69, 0x0f, 0xfb, 0x3e, 0xf1, 0x05, 0x36, 0xa9, 0xb0, 0xbc, 0xa7, 0xc9, 0x3a, 0x18, 0xb6, 0x91, + 0x81, 0x14, 0x76, 0x2d, 0xfd, 0x8f, 0x0b, 0x90, 0xef, 0x9a, 0x5e, 0xf3, 0x84, 0x95, 0xac, 0x75, + 0xc8, 0x8a, 0x5d, 0x28, 0xcd, 0x7e, 0x6b, 0x7a, 0xaf, 0x86, 0xfe, 0x19, 0x12, 0x8a, 0x9e, 0x43, + 0x51, 0xb4, 0x7a, 0x43, 0x4c, 0x4d, 0x99, 0x37, 0xee, 0xcf, 0xda, 0xe5, 0x7c, 0x90, 0x7a, 0xd3, + 0xb5, 0x3c, 0x62, 0xbb, 0xf4, 0x05, 0xa6, 0xa6, 0x01, 0x42, 0x94, 0xb5, 0xd1, 0x37, 0xa0, 0x18, + 0xc9, 0x44, 0x72, 0xa9, 0xce, 0x35, 0x21, 0x8a, 0x47, 0x9f, 0x40, 0x25, 0x42, 0x0a, 0x63, 0xd2, + 0x57, 0x32, 0x66, 0x31, 0x22, 0xcf, 0x2d, 0x6a, 0x00, 0xf8, 0x64, 0x44, 0xa5, 0x67, 0x39, 0xae, + 0xec, 0xce, 0x7c, 0x65, 0x06, 0xc3, 0x72, 0x4d, 0x05, 0x5f, 0x35, 0xd1, 0x27, 0xb0, 0xc8, 0x8f, + 0x23, 0x3d, 0xcb, 0xf6, 0x45, 0xca, 0xe5, 0x95, 0x7c, 0x61, 0x6d, 0x79, 0xbe, 0xa2, 0x36, 0x13, + 0xd8, 0x56, 0x78, 0x63, 0xc1, 0x8b, 0xd1, 0xe8, 0x7d, 0x99, 0xa2, 0x45, 0xb9, 0xb8, 0x39, 0x5f, + 0x4f, 0x2c, 0x21, 0xff, 0x4c, 0x83, 0x52, 0xd4, 0x5d, 0xf4, 0x1d, 0xc8, 0x3a, 0xe6, 0x01, 0x76, + 0x54, 0x66, 0x5e, 0xbb, 0xdc, 0x34, 0xd5, 0x77, 0xb9, 0x50, 0xd3, 0xa5, 0xfe, 0xd8, 0x90, 0x1a, + 0x6a, 0x1b, 0x50, 0x8c, 0xb0, 0x51, 0x05, 0x52, 0xc7, 0x78, 0x2c, 0x0f, 0xed, 0xac, 0xc9, 0x76, + 0xd1, 0x89, 0xe9, 0x8c, 0xd4, 0xe5, 0x44, 0x10, 0x1f, 0x26, 0x9f, 0x6a, 0xb5, 0x9f, 0x6a, 0x50, + 0x08, 0x67, 0x0e, 0x3d, 0x3f, 0x63, 0xd4, 0xca, 0x25, 0xa6, 0xfb, 0xdf, 0x6d, 0xd1, 0x3f, 0x73, + 0xb2, 0xda, 0xec, 0x43, 0xc9, 0x17, 0xf5, 0xa8, 0x67, 0xbb, 0xb6, 0x3a, 0xc7, 0x3c, 0x38, 0x7f, + 0xc2, 0xeb, 0xb2, 0x84, 0xb5, 0x5c, 0x9b, 0xb2, 0x0b, 0x80, 0x3f, 0x21, 0x91, 0x01, 0x65, 0x5f, + 0xde, 0x85, 0x84, 0xc6, 0x73, 0x8e, 0x37, 0x31, 0x8d, 0x42, 0x46, 0xaa, 0x2c, 0xf9, 0x11, 0x5a, + 0x18, 0x29, 0x75, 0x62, 0xd7, 0x92, 0x51, 0xf1, 0xe0, 0x92, 0x2a, 0x9b, 0xae, 0x25, 0x8c, 0x0c, + 0xc9, 0xda, 0x13, 0xc8, 0x77, 0xa8, 0x8f, 0xcd, 0x61, 0x8b, 0x5f, 0xbf, 0x0e, 0xcc, 0x40, 0x66, + 0x1c, 0x83, 0xb7, 0xc5, 0x85, 0x84, 0xf5, 0x73, 0xeb, 0xd3, 0x86, 0xa4, 0x6a, 0x7f, 0xd6, 0xa0, + 0x18, 0xf1, 0x1d, 0x7d, 0x00, 0x49, 0xdb, 0x92, 0x73, 0xf6, 0xde, 0x05, 0xe6, 0xa8, 0x01, 0x8d, + 0xa4, 0x6d, 0xb1, 0x34, 0x14, 0x29, 0xe5, 0xb3, 0x72, 0xc0, 0xa4, 0xaa, 0x86, 0x55, 0x7e, 0x25, + 0x3c, 0x19, 0x88, 0x09, 0xf8, 0x9f, 0x39, 0x75, 0x29, 0x3c, 0x30, 0xc4, 0xce, 0xbd, 0xe9, 0x79, + 0xe7, 0xde, 0xcc, 0xe4, 0xdc, 0x5b, 0xfb, 0x8d, 0x06, 0xa5, 0xe8, 0x52, 0xbc, 0xbe, 0x87, 0xcf, + 0x01, 0xf1, 0x3b, 0x57, 0x2f, 0x16, 0x5e, 0xc9, 0x8b, 0xae, 0x45, 0x15, 0x2e, 0x14, 0x9d, 0xe3, + 0x77, 0xa1, 0xc8, 0x36, 0xb7, 0xac, 0x0e, 0xdc, 0xf5, 0xb2, 0x01, 0x8c, 0x25, 0xca, 0x42, 0xed, + 0x97, 0x49, 0xb6, 0x28, 0xe1, 0xe2, 0xfe, 0x07, 0x98, 0xdc, 0x82, 0xeb, 0x4a, 0x51, 0x74, 0x27, + 0xa4, 0x2e, 0xd2, 0x74, 0x4d, 0x6a, 0x8a, 0xcc, 0xff, 0x3d, 0x58, 0x08, 0x95, 0x1c, 0x8c, 0x29, + 0x16, 0xe7, 0xde, 0xb4, 0x11, 0x6e, 0xb2, 0x06, 0x63, 0xa2, 0xfb, 0x90, 0xc2, 0x24, 0x90, 0x95, + 0x69, 0xfa, 0xd1, 0xa1, 0x49, 0x02, 0x83, 0x01, 0xd8, 0x49, 0x0f, 0x33, 0xef, 0xf5, 0xa7, 0xb0, + 0x10, 0x4f, 0xc1, 0xec, 0xb8, 0xf4, 0x72, 0xef, 0xbb, 0x7b, 0xfb, 0x9f, 0xee, 0x55, 0x12, 0x8c, + 0x68, 0xed, 0x35, 0xf6, 0x5f, 0xee, 0x6d, 0x57, 0x34, 0x54, 0x82, 0xfc, 0xfe, 0xcb, 0xae, 0xa0, + 0x92, 0x13, 0x15, 0xb7, 0x20, 0xbf, 0xe9, 0xd9, 0xbc, 0xdc, 0xb2, 0x4c, 0xc3, 0x0b, 0xb2, 0xcc, + 0x3e, 0x82, 0x60, 0x97, 0xcc, 0x42, 0x9b, 0x58, 0x1c, 0x12, 0xa0, 0x67, 0x90, 0xe5, 0x6c, 0x95, + 0xf7, 0xee, 0xcc, 0x7a, 0x1b, 0x11, 0xd8, 0xb0, 0x65, 0x48, 0x91, 0xda, 0x5f, 0x34, 0xc8, 0x2b, + 0x26, 0x32, 0xa0, 0xc0, 0xae, 0xdd, 0xa6, 0xed, 0x62, 0x5f, 0x2e, 0xf4, 0xda, 0x25, 0x94, 0xd5, + 0xb7, 0x94, 0x10, 0x27, 0xd9, 0x11, 0x39, 0x54, 0x53, 0x3b, 0x81, 0x85, 0x78, 0x37, 0xaa, 0x42, + 0x6e, 0x88, 0x83, 0xc0, 0x1c, 0xa8, 0xa7, 0x19, 0x45, 0xb2, 0x7d, 0x35, 0x19, 0x5f, 0x3e, 0x45, + 0x85, 0x0c, 0x36, 0x17, 0xf6, 0x90, 0x49, 0x89, 0x97, 0x36, 0x41, 0xb0, 0x94, 0xe2, 0x63, 0x33, + 0x20, 0xae, 0x7a, 0xe3, 0x10, 0x14, 0x9f, 0x4e, 0x3e, 0x59, 0x6d, 0xc8, 0xab, 0x1b, 0xc2, 0xf9, + 0xcf, 0x6e, 0xfc, 0x1a, 0x3d, 0xf6, 0x54, 0x56, 0xe7, 0xed, 0xf0, 0x11, 0x29, 0x35, 0x79, 0x44, + 0xd2, 0x5f, 0xc1, 0xb5, 0xa9, 0xcb, 0x10, 0x7a, 0x0c, 0x79, 0xf5, 0x28, 0x20, 0xa7, 0xee, 0xcd, + 0xb9, 0x57, 0x28, 0x23, 0x84, 0xb2, 0x38, 0xe4, 0x55, 0xa7, 0x17, 0x7b, 0x30, 0x2b, 0x18, 0x65, + 0xce, 0xed, 0xa8, 0x17, 0xb1, 0xcf, 0xa1, 0xac, 0x84, 0xc5, 0x24, 0xbe, 0xe6, 0x70, 0x61, 0x3c, + 0x25, 0xa3, 0xf1, 0xf4, 0x55, 0x12, 0x10, 0xdb, 0xf4, 0x9d, 0xd1, 0x70, 0x68, 0xfa, 0x63, 0x75, + 0x0b, 0x8f, 0x3e, 0xe3, 0x69, 0x57, 0x7f, 0xc6, 0x63, 0x19, 0x86, 0xda, 0x43, 0xdc, 0x3b, 0xb5, + 0x5d, 0x8b, 0x9c, 0xca, 0x21, 0x81, 0xb1, 0x3e, 0xe5, 0x1c, 0xf4, 0x7f, 0x90, 0x76, 0x89, 0xab, + 0xd2, 0xee, 0x8d, 0xe9, 0xed, 0x35, 0xf4, 0xe8, 0x98, 0x9d, 0x42, 0x18, 0x0a, 0x7d, 0x04, 0x45, + 0x4a, 0x7a, 0xa1, 0xd7, 0xe9, 0x0b, 0xbc, 0x66, 0x57, 0x07, 0x4a, 0xc2, 0xa5, 0xff, 0x36, 0x94, + 0x0f, 0x7d, 0x32, 0x9c, 0xc8, 0x67, 0x2e, 0x96, 0x2f, 0x31, 0x89, 0x50, 0xc3, 0x3b, 0x00, 0xc1, + 0xb1, 0x2d, 0x12, 0x66, 0xc0, 0x4f, 0x62, 0x79, 0xa3, 0xc0, 0x38, 0x6c, 0xea, 0x02, 0xf4, 0x16, + 0x14, 0x68, 0x5f, 0xf5, 0xe6, 0x78, 0x6f, 0x9e, 0xf6, 0x45, 0x67, 0x03, 0x20, 0x4f, 0x46, 0xf4, + 0x80, 0x8c, 0x5c, 0x4b, 0xff, 0x93, 0x06, 0xd7, 0x63, 0xb3, 0x2d, 0x5f, 0x38, 0x37, 0x20, 0x49, + 0x8e, 0xe7, 0xe6, 0xd7, 0x19, 0x12, 0xf5, 0xfd, 0xe3, 0x9d, 0x84, 0x91, 0x24, 0xc7, 0xe8, 0x49, + 0x74, 0x59, 0x67, 0x9d, 0xeb, 0x62, 0xc1, 0xb3, 0x93, 0x90, 0x0b, 0x5f, 0xdb, 0x84, 0xe4, 0xfe, + 0x31, 0x7a, 0x06, 0xfc, 0xa9, 0xb1, 0x47, 0xcd, 0x03, 0x27, 0xbc, 0x6c, 0xd7, 0x66, 0x5a, 0xd0, + 0x65, 0x10, 0x03, 0x02, 0xd5, 0xe4, 0x9e, 0xa9, 0x94, 0xa9, 0xff, 0x3a, 0x09, 0xd0, 0x30, 0x03, + 0xbb, 0x2f, 0x66, 0xe4, 0x0e, 0x94, 0x83, 0x51, 0xbf, 0x8f, 0x03, 0x76, 0xf7, 0x18, 0xb9, 0xe2, + 0x10, 0x94, 0x36, 0x4a, 0x92, 0xb9, 0xc5, 0x78, 0x0c, 0x74, 0x68, 0xda, 0xce, 0xc8, 0xc7, 0x12, + 0x24, 0x4e, 0x06, 0x25, 0xc9, 0x14, 0xa0, 0xbb, 0x6c, 0x97, 0x50, 0xec, 0xf6, 0xc7, 0xbd, 0x61, + 0xd0, 0xf3, 0x1e, 0xaf, 0xf2, 0x90, 0x49, 0x1b, 0x25, 0xc9, 0x7d, 0x11, 0xb4, 0x1f, 0xaf, 0x9e, + 0x45, 0x6d, 0x3c, 0x96, 0x39, 0x3d, 0x82, 0xda, 0x78, 0x3c, 0x85, 0xda, 0xe0, 0x91, 0x10, 0x47, + 0x6d, 0xa0, 0x55, 0x58, 0x32, 0xfb, 0x74, 0x64, 0x3a, 0xbd, 0xb8, 0x0b, 0x59, 0x8e, 0x45, 0xa2, + 0xaf, 0x13, 0x75, 0x64, 0x22, 0x11, 0xf7, 0x27, 0x17, 0x95, 0xf8, 0x38, 0xe2, 0x95, 0xfe, 0x63, + 0x0d, 0xf2, 0x5d, 0x19, 0x21, 0xe8, 0x7f, 0xa1, 0x42, 0x3c, 0xcc, 0xdf, 0x8d, 0x5d, 0xb1, 0x93, + 0x02, 0x39, 0x5f, 0x8b, 0x8c, 0xbf, 0x35, 0x61, 0xa3, 0x65, 0x76, 0x57, 0x33, 0x2d, 0x51, 0xb7, + 0x7a, 0x94, 0x50, 0xd3, 0x91, 0xb3, 0xb6, 0xc0, 0xf8, 0xbc, 0x72, 0x75, 0x19, 0x17, 0x3d, 0x80, + 0x6b, 0xa7, 0xbe, 0x4d, 0x71, 0x0c, 0x2a, 0xa6, 0x6e, 0x91, 0x77, 0x4c, 0xb0, 0xfa, 0x2f, 0x32, + 0x50, 0x08, 0x97, 0x18, 0x35, 0xa0, 0xe0, 0x11, 0xab, 0x37, 0xf0, 0xc9, 0x48, 0xdd, 0x44, 0xef, + 0xcc, 0x8f, 0x08, 0x56, 0x0a, 0x9e, 0x33, 0xe8, 0x4e, 0xc2, 0xc8, 0x7b, 0xb2, 0x5d, 0xfb, 0x43, + 0x9a, 0xd7, 0x16, 0x4e, 0xa0, 0x67, 0x90, 0xf6, 0xc9, 0xa9, 0x8a, 0xae, 0xf7, 0x2e, 0xa1, 0xab, + 0x6e, 0x90, 0x53, 0x83, 0x0b, 0xd5, 0x7e, 0x98, 0x86, 0x94, 0x41, 0x4e, 0x5f, 0x37, 0xeb, 0x5d, + 0x98, 0x88, 0x96, 0xa1, 0x32, 0xc4, 0xc1, 0x11, 0xb6, 0x7a, 0xcc, 0x69, 0xb1, 0x6e, 0x62, 0x9a, + 0x16, 0x04, 0xbf, 0x4d, 0x2c, 0xb1, 0xca, 0x0f, 0xe0, 0x9a, 0x3f, 0x72, 0x5d, 0xdb, 0x1d, 0x44, + 0xa0, 0x22, 0xcc, 0x16, 0x65, 0x47, 0x88, 0x5d, 0x86, 0x0a, 0x0b, 0x85, 0x98, 0x56, 0x11, 0x3f, + 0x0b, 0x82, 0x1f, 0x22, 0x1f, 0x41, 0x46, 0xe4, 0x8d, 0xcc, 0x9c, 0x53, 0xeb, 0x64, 0x57, 0x19, + 0x02, 0x89, 0x9e, 0x44, 0xd3, 0x4d, 0x7e, 0xce, 0x5c, 0xa8, 0xe8, 0x9a, 0x64, 0x22, 0xf4, 0x39, + 0x94, 0x45, 0xe9, 0xef, 0x1d, 0x8c, 0x99, 0x5d, 0xd5, 0x1c, 0x5f, 0x90, 0xa7, 0x97, 0x5c, 0x90, + 0xba, 0xa8, 0xfd, 0x8d, 0x31, 0x2b, 0xfe, 0xfc, 0xd6, 0x54, 0xc4, 0x13, 0x4e, 0xed, 0x33, 0xa8, + 0x9c, 0x05, 0xcc, 0xb8, 0x3f, 0xad, 0x46, 0xef, 0x4f, 0xb3, 0x52, 0x4d, 0x78, 0xc6, 0x88, 0xdc, + 0xad, 0x58, 0x45, 0xe7, 0x19, 0x4a, 0xdf, 0x83, 0x52, 0xd3, 0x1a, 0x4c, 0xfe, 0x4c, 0xfb, 0x9a, + 0x75, 0x4a, 0xff, 0x52, 0x83, 0xb2, 0x54, 0x28, 0x53, 0xf1, 0x7a, 0x24, 0x15, 0xdf, 0x9e, 0x2e, + 0x4b, 0x51, 0xec, 0xd7, 0x4f, 0xc2, 0x8f, 0x78, 0x12, 0x7e, 0x08, 0x19, 0xcc, 0xf4, 0xca, 0x0d, + 0xf2, 0xc6, 0xcc, 0x51, 0x0d, 0x81, 0x89, 0x25, 0xdd, 0xdf, 0x69, 0x90, 0x66, 0x7d, 0xe8, 0x21, + 0xa4, 0x02, 0xbf, 0x7f, 0xf1, 0xbe, 0x60, 0x28, 0x06, 0xb6, 0x82, 0xc9, 0x21, 0x7c, 0x3e, 0xd8, + 0x0a, 0x28, 0x2b, 0x6d, 0x7d, 0xc7, 0xc6, 0x2e, 0xed, 0xd9, 0x96, 0x3c, 0x09, 0xe5, 0x05, 0xa3, + 0x65, 0xb1, 0xce, 0x00, 0xfb, 0x27, 0xd8, 0x67, 0x9d, 0xe2, 0x0c, 0x96, 0x17, 0x8c, 0x96, 0x85, + 0xee, 0xc3, 0xa2, 0x4b, 0x7a, 0xb6, 0x85, 0x5d, 0x6a, 0x53, 0x96, 0x70, 0x07, 0xf2, 0x5a, 0x54, + 0x76, 0x49, 0x4b, 0x72, 0x5f, 0x04, 0x03, 0xfd, 0x2b, 0x0d, 0x2a, 0x5d, 0xe2, 0xf1, 0x7b, 0x79, + 0xf0, 0xdf, 0x71, 0xfe, 0xc8, 0x5d, 0xe9, 0xfc, 0x11, 0x3b, 0x01, 0xfc, 0x5e, 0x83, 0x6b, 0x11, + 0x6f, 0x65, 0xd0, 0xbd, 0x66, 0xfc, 0xb0, 0x7b, 0x19, 0x39, 0x96, 0x3e, 0xdc, 0x9b, 0x4e, 0x01, + 0x67, 0xc7, 0x09, 0x03, 0xb6, 0xb6, 0xc1, 0x03, 0x6f, 0x1d, 0xb2, 0xfc, 0xc9, 0x49, 0x45, 0xde, + 0x74, 0xf2, 0xe1, 0xf2, 0xa2, 0xf2, 0x4b, 0x68, 0x2c, 0x00, 0xff, 0xa6, 0x01, 0x4c, 0x20, 0x68, + 0x3d, 0x96, 0xe8, 0xdf, 0x3d, 0x47, 0xdb, 0x24, 0xc1, 0xa3, 0x5a, 0x24, 0xb1, 0x8b, 0x75, 0x0a, + 0xe9, 0xda, 0x4f, 0x34, 0x91, 0xfc, 0x97, 0x20, 0xc3, 0x47, 0x57, 0x77, 0x21, 0x4e, 0x5c, 0xbc, + 0xc8, 0xb1, 0xcb, 0x7a, 0xf6, 0xec, 0x65, 0xfd, 0xea, 0x99, 0x77, 0xed, 0xcb, 0x2c, 0xa4, 0x36, + 0x3d, 0x1b, 0x7d, 0x06, 0xc5, 0xc8, 0xa1, 0x0c, 0xdd, 0x39, 0xff, 0xc8, 0xc6, 0x43, 0xba, 0x76, + 0xf7, 0x32, 0xe7, 0x3a, 0x3d, 0x81, 0x76, 0x20, 0xc3, 0xb3, 0x0c, 0x7a, 0x67, 0x5e, 0xf6, 0x11, + 0xfa, 0x6e, 0x9e, 0x9f, 0x9c, 0xf4, 0x04, 0xea, 0x42, 0x21, 0x0c, 0x01, 0x74, 0xfb, 0xbc, 0xf0, + 0x10, 0x1a, 0xf5, 0x8b, 0x23, 0x48, 0x4f, 0xa0, 0x4f, 0x20, 0xaf, 0xfe, 0xa1, 0x47, 0xb7, 0xa6, + 0x24, 0xce, 0x7c, 0x31, 0x50, 0xbb, 0x7d, 0x0e, 0x22, 0x54, 0xf9, 0x7d, 0x28, 0x45, 0x3f, 0x7a, + 0x40, 0x77, 0x67, 0x0a, 0x9d, 0xf9, 0x90, 0xa2, 0x76, 0xef, 0x02, 0x54, 0xa8, 0x7e, 0x1b, 0x52, + 0x5d, 0xd3, 0x43, 0x6f, 0xcd, 0x7a, 0xb8, 0x50, 0xca, 0xde, 0x9c, 0xfb, 0xaa, 0xa1, 0xa7, 0x7e, + 0x94, 0xd4, 0x56, 0x35, 0xf4, 0x12, 0xca, 0xb1, 0xff, 0x9c, 0xd0, 0xbd, 0x4b, 0xfd, 0x27, 0x75, + 0x9e, 0xe6, 0xc4, 0xaa, 0x86, 0x36, 0x21, 0xa7, 0xfe, 0x73, 0x9e, 0x93, 0x85, 0x6a, 0x6f, 0x4f, + 0xf1, 0x23, 0x9f, 0xb2, 0xe8, 0x09, 0xe4, 0x40, 0xa1, 0x83, 0x9d, 0xc3, 0xad, 0x23, 0xdc, 0x3f, + 0x46, 0xff, 0x3f, 0x01, 0x8b, 0x4f, 0x65, 0xea, 0xd1, 0x4f, 0x65, 0x42, 0x9c, 0xb2, 0xae, 0x7e, + 0x59, 0x78, 0x38, 0x9b, 0x4f, 0x21, 0xbb, 0xc5, 0x3f, 0xb1, 0x99, 0x6b, 0xef, 0x52, 0x54, 0x27, + 0xff, 0x18, 0x67, 0xd3, 0x71, 0xf4, 0x44, 0x63, 0xfd, 0xb3, 0x47, 0x03, 0x9b, 0x1e, 0x8d, 0x0e, + 0xd8, 0x50, 0x2b, 0x12, 0xa3, 0x7e, 0xd7, 0x56, 0x26, 0x5f, 0x08, 0xac, 0x0c, 0xb0, 0xbb, 0x22, + 0x54, 0x1e, 0x64, 0xf9, 0x9b, 0xce, 0xfa, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x90, 0x49, 0x8c, + 0x1d, 0x38, 0x24, 0x00, 0x00, } diff --git a/proto/public.proto b/proto/public.proto index 16c8fa80789b3..1cc435df5e25b 100644 --- a/proto/public.proto +++ b/proto/public.proto @@ -398,7 +398,7 @@ message Edge { Resource dst = 2; string client_id = 3; string server_id = 4; - string msg = 5; + string no_identity_msg = 5; } message TopRoutesRequest {