From 17e206353e9013012478791a284d11c22105d3e3 Mon Sep 17 00:00:00 2001 From: liaochuntao Date: Tue, 16 Jan 2024 18:21:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=94=AF=E6=8C=81=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=A5=91=E7=BA=A6=E5=88=97=E8=A1=A8=20(#102)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/v1/service_manage/grpcapi.proto | 2 + api/v1/service_manage/request.proto | 2 - api/v1/service_manage/response.proto | 4 +- source/go/api/v1/service_manage/grpcapi.pb.go | 90 +++++-- source/go/api/v1/service_manage/request.pb.go | 117 ++++---- .../go/api/v1/service_manage/response.pb.go | 254 +++++++++--------- 6 files changed, 244 insertions(+), 225 deletions(-) diff --git a/api/v1/service_manage/grpcapi.proto b/api/v1/service_manage/grpcapi.proto index db8bbb6..4a1e2cb 100644 --- a/api/v1/service_manage/grpcapi.proto +++ b/api/v1/service_manage/grpcapi.proto @@ -39,4 +39,6 @@ service PolarisHeartbeatGRPC { service PolarisServiceContractGRPC { // 上报服务契约 rpc ReportServiceContract(ServiceContract) returns (Response) {} + // 查询服务契约 + rpc GetServiceContract(ServiceContract) returns (Response) {} } diff --git a/api/v1/service_manage/request.proto b/api/v1/service_manage/request.proto index 1587cc2..88b6348 100644 --- a/api/v1/service_manage/request.proto +++ b/api/v1/service_manage/request.proto @@ -25,13 +25,11 @@ message DiscoverRequest { reserved 7 to 11; NAMESPACES = 12; FAULT_DETECTOR = 13; - SERVICE_CONTRACT = 14; } DiscoverRequestType type = 1; Service service = 2; reserved 3 to 4; DiscoverFilter Filter = 30; - ServiceContract service_contract = 31; } diff --git a/api/v1/service_manage/response.proto b/api/v1/service_manage/response.proto index 5c94ef4..03bfaa8 100644 --- a/api/v1/service_manage/response.proto +++ b/api/v1/service_manage/response.proto @@ -45,6 +45,8 @@ message Response { InstanceLabels instanceLabels = 28; google.protobuf.Any data = 29; + + ServiceContract serviceContract = 30; } message BatchWriteResponse { @@ -92,7 +94,6 @@ message DiscoverResponse { reserved "MESH", "MESH_CONFIG", "FLUX_DBREFRESH", "FLUX_SDK", "FLUX_SERVER"; NAMESPACES = 12; FAULT_DETECTOR = 13; - SERVICE_CONTRACT = 14; } DiscoverResponseType type = 3; @@ -106,7 +107,6 @@ message DiscoverResponse { FaultDetector faultDetector = 11; reserved 12 to 20; Service aliasFor = 21; - ServiceContract serviceContract = 22; } diff --git a/source/go/api/v1/service_manage/grpcapi.pb.go b/source/go/api/v1/service_manage/grpcapi.pb.go index fb71b60..4d4c9f0 100644 --- a/source/go/api/v1/service_manage/grpcapi.pb.go +++ b/source/go/api/v1/service_manage/grpcapi.pb.go @@ -445,6 +445,8 @@ var _PolarisHeartbeatGRPC_serviceDesc = grpc.ServiceDesc{ type PolarisServiceContractGRPCClient interface { // 上报服务契约 ReportServiceContract(ctx context.Context, in *ServiceContract, opts ...grpc.CallOption) (*Response, error) + // 查询服务契约 + GetServiceContract(ctx context.Context, in *ServiceContract, opts ...grpc.CallOption) (*Response, error) } type polarisServiceContractGRPCClient struct { @@ -464,10 +466,21 @@ func (c *polarisServiceContractGRPCClient) ReportServiceContract(ctx context.Con return out, nil } +func (c *polarisServiceContractGRPCClient) GetServiceContract(ctx context.Context, in *ServiceContract, opts ...grpc.CallOption) (*Response, error) { + out := new(Response) + err := c.cc.Invoke(ctx, "/v1.PolarisServiceContractGRPC/GetServiceContract", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // PolarisServiceContractGRPCServer is the server API for PolarisServiceContractGRPC service. type PolarisServiceContractGRPCServer interface { // 上报服务契约 ReportServiceContract(context.Context, *ServiceContract) (*Response, error) + // 查询服务契约 + GetServiceContract(context.Context, *ServiceContract) (*Response, error) } func RegisterPolarisServiceContractGRPCServer(s *grpc.Server, srv PolarisServiceContractGRPCServer) { @@ -492,6 +505,24 @@ func _PolarisServiceContractGRPC_ReportServiceContract_Handler(srv interface{}, return interceptor(ctx, in, info, handler) } +func _PolarisServiceContractGRPC_GetServiceContract_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ServiceContract) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(PolarisServiceContractGRPCServer).GetServiceContract(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/v1.PolarisServiceContractGRPC/GetServiceContract", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(PolarisServiceContractGRPCServer).GetServiceContract(ctx, req.(*ServiceContract)) + } + return interceptor(ctx, in, info, handler) +} + var _PolarisServiceContractGRPC_serviceDesc = grpc.ServiceDesc{ ServiceName: "v1.PolarisServiceContractGRPC", HandlerType: (*PolarisServiceContractGRPCServer)(nil), @@ -500,38 +531,43 @@ var _PolarisServiceContractGRPC_serviceDesc = grpc.ServiceDesc{ MethodName: "ReportServiceContract", Handler: _PolarisServiceContractGRPC_ReportServiceContract_Handler, }, + { + MethodName: "GetServiceContract", + Handler: _PolarisServiceContractGRPC_GetServiceContract_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "grpcapi.proto", } -func init() { proto.RegisterFile("grpcapi.proto", fileDescriptor_grpcapi_cf23ac24a9d0726a) } +func init() { proto.RegisterFile("grpcapi.proto", fileDescriptor_grpcapi_28730f5c35450f06) } -var fileDescriptor_grpcapi_cf23ac24a9d0726a = []byte{ - // 398 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0xb1, 0x6e, 0xdb, 0x30, +var fileDescriptor_grpcapi_28730f5c35450f06 = []byte{ + // 409 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xb1, 0x6e, 0xdb, 0x30, 0x10, 0xad, 0x3c, 0x14, 0x2d, 0x6b, 0xbb, 0x2d, 0x6b, 0x17, 0xad, 0xc6, 0x4e, 0x6d, 0x07, 0xca, - 0x72, 0x86, 0x0c, 0xc9, 0x64, 0x2b, 0x70, 0x92, 0xc9, 0x50, 0x36, 0x2f, 0x01, 0x4d, 0x5c, 0x24, - 0x02, 0x16, 0xa9, 0x90, 0xb4, 0x7e, 0x21, 0x1f, 0x90, 0x6f, 0xcd, 0x1e, 0x48, 0x24, 0x65, 0x4b, - 0x09, 0x02, 0x64, 0xe3, 0xbd, 0xc7, 0xf7, 0x8e, 0x77, 0x7c, 0x68, 0x94, 0xa9, 0x92, 0xd1, 0x92, - 0x93, 0x52, 0x49, 0x23, 0xf1, 0xa0, 0x8a, 0xc3, 0x21, 0xdb, 0x71, 0x10, 0xc6, 0x22, 0xe1, 0x48, - 0x83, 0xaa, 0x38, 0x03, 0x5f, 0x2a, 0xb8, 0xdf, 0x83, 0xf6, 0xec, 0x58, 0x81, 0x2e, 0xa5, 0xd0, - 0x9e, 0xfe, 0x9a, 0x03, 0x55, 0x66, 0x0b, 0xb4, 0xbd, 0xc0, 0xa4, 0x30, 0x8a, 0x32, 0x57, 0xcf, - 0x1f, 0x06, 0xe8, 0xcb, 0x5a, 0xee, 0xa8, 0xe2, 0x7a, 0x95, 0xae, 0x97, 0xf8, 0x3f, 0x1a, 0xa6, - 0x50, 0x4a, 0x65, 0x96, 0x4d, 0x53, 0x8c, 0x48, 0x15, 0x13, 0x7b, 0x0e, 0x87, 0xf5, 0x39, 0x75, - 0x0d, 0xfe, 0x7c, 0xc0, 0x33, 0xf4, 0x2d, 0x85, 0x8c, 0x6b, 0x03, 0xea, 0x4a, 0x68, 0x43, 0x05, - 0x03, 0xdc, 0xdc, 0xf1, 0xd5, 0x0b, 0xc5, 0x1c, 0xe1, 0x04, 0xd4, 0xfb, 0x34, 0x67, 0xe8, 0x53, - 0xc2, 0x35, 0x93, 0x15, 0x28, 0xfc, 0xa3, 0xe6, 0x7c, 0x95, 0xda, 0xc9, 0xc3, 0x49, 0x17, 0xf4, - 0xc2, 0xbf, 0xc1, 0x2c, 0xc0, 0xff, 0xd0, 0xe7, 0x4b, 0xbf, 0x81, 0xb7, 0xfb, 0xcc, 0x9f, 0x02, - 0x34, 0x71, 0x9b, 0x68, 0x25, 0xcd, 0x4a, 0x2e, 0xd0, 0x78, 0x41, 0x0d, 0xcb, 0x0f, 0x46, 0xd3, - 0x5a, 0xda, 0x96, 0xda, 0x3f, 0xe4, 0x67, 0x1f, 0xee, 0x3c, 0xe5, 0x1a, 0x7d, 0x6f, 0x6c, 0x56, - 0x60, 0x0e, 0x4e, 0xbf, 0x6a, 0xc9, 0x31, 0xd2, 0x9a, 0xfd, 0x7e, 0x85, 0x69, 0x77, 0xe2, 0xbd, - 0x12, 0xd8, 0xf5, 0xbc, 0x8e, 0x91, 0xae, 0x57, 0x8f, 0x69, 0xe7, 0xde, 0xa0, 0xd0, 0x8d, 0x7d, - 0x63, 0x93, 0xb5, 0x74, 0x09, 0x69, 0x86, 0x3f, 0x47, 0x53, 0x9b, 0x87, 0x1e, 0x69, 0xbf, 0xa2, - 0x07, 0xf6, 0x77, 0xba, 0x78, 0x0c, 0xd0, 0x29, 0x93, 0x05, 0x31, 0x20, 0x58, 0x13, 0x61, 0xdb, - 0x88, 0xe8, 0x12, 0x18, 0xbf, 0xe3, 0x8c, 0x1a, 0x2e, 0x05, 0xa9, 0xe3, 0x5e, 0xc5, 0xc4, 0x07, - 0xbb, 0xa0, 0x82, 0x66, 0xb0, 0xc0, 0x47, 0xb1, 0x74, 0x7d, 0x36, 0x49, 0xc6, 0x4d, 0xbe, 0xdf, - 0x12, 0x26, 0x8b, 0xc8, 0x79, 0x15, 0xa0, 0xf3, 0xa8, 0xe3, 0x17, 0x69, 0xb9, 0x57, 0x0c, 0xa2, - 0x4c, 0x46, 0xb4, 0xe4, 0x51, 0x15, 0x47, 0xce, 0xf9, 0xd6, 0x3a, 0x6f, 0x3f, 0x36, 0xd1, 0x3f, - 0x79, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xfd, 0xe9, 0x43, 0x6c, 0x03, 0x00, 0x00, + 0x72, 0x87, 0xa2, 0x68, 0x27, 0x5b, 0x85, 0x93, 0x4c, 0x86, 0xb2, 0x65, 0x09, 0x68, 0xe2, 0x22, + 0x11, 0xb0, 0x48, 0x85, 0xa4, 0xf5, 0x0b, 0xf9, 0x80, 0x20, 0x9f, 0x9a, 0x3d, 0x90, 0x48, 0xca, + 0x96, 0x1c, 0x04, 0x48, 0x36, 0xde, 0x7b, 0x7c, 0xef, 0x78, 0xc7, 0x3b, 0x34, 0xca, 0x54, 0xc9, + 0x68, 0xc9, 0x49, 0xa9, 0xa4, 0x91, 0x78, 0x50, 0xc5, 0xe1, 0x90, 0x6d, 0x39, 0x08, 0x63, 0x91, + 0x70, 0xa4, 0x41, 0x55, 0x9c, 0x81, 0x0f, 0x15, 0x5c, 0xef, 0x40, 0x7b, 0x76, 0xac, 0x40, 0x97, + 0x52, 0x68, 0x4f, 0xbf, 0xcf, 0x81, 0x2a, 0xb3, 0x01, 0xda, 0x5e, 0x60, 0x52, 0x18, 0x45, 0x99, + 0x8b, 0xe7, 0x37, 0x03, 0xf4, 0x6e, 0x2d, 0xb7, 0x54, 0x71, 0xbd, 0x4a, 0xd7, 0x4b, 0xfc, 0x13, + 0x0d, 0x53, 0x28, 0xa5, 0x32, 0xcb, 0x26, 0x29, 0x46, 0xa4, 0x8a, 0x89, 0x3d, 0x87, 0xc3, 0xfa, + 0x9c, 0xba, 0x04, 0xdf, 0x5e, 0xe1, 0x19, 0xfa, 0x90, 0x42, 0xc6, 0xb5, 0x01, 0x75, 0x2a, 0xb4, + 0xa1, 0x82, 0x01, 0x6e, 0xee, 0xf8, 0xe8, 0x48, 0x31, 0x47, 0x38, 0x01, 0xf5, 0x3c, 0xcd, 0x5f, + 0xf4, 0x26, 0xe1, 0x9a, 0xc9, 0x0a, 0x14, 0xfe, 0x54, 0x73, 0x3e, 0x4a, 0x6d, 0xe5, 0xe1, 0xa4, + 0x0b, 0x7a, 0xe1, 0xf7, 0x60, 0x16, 0xe0, 0x1f, 0xe8, 0xed, 0x89, 0xef, 0xc0, 0xd3, 0x79, 0xe6, + 0xf7, 0x01, 0x9a, 0xb8, 0x4e, 0xb4, 0x92, 0xa6, 0x25, 0xff, 0xd1, 0x78, 0x41, 0x0d, 0xcb, 0xf7, + 0x46, 0xd3, 0x5a, 0xda, 0x86, 0xda, 0x3f, 0xe4, 0x73, 0x1f, 0xee, 0x3c, 0xe5, 0x0c, 0x7d, 0x6c, + 0x6c, 0x56, 0x60, 0xf6, 0x4e, 0x5f, 0x6a, 0xc9, 0x21, 0xd2, 0x9a, 0x7d, 0x7d, 0x84, 0x69, 0x7b, + 0xe2, 0xbd, 0x12, 0xd8, 0xf6, 0xbc, 0x0e, 0x91, 0xae, 0x57, 0x8f, 0x69, 0xeb, 0xbe, 0x0b, 0x50, + 0xe8, 0xea, 0x3e, 0xb7, 0xa3, 0xb5, 0x74, 0x23, 0xd2, 0x54, 0xff, 0x0f, 0x4d, 0xed, 0x40, 0xf4, + 0x48, 0xfb, 0x17, 0x3d, 0xf0, 0xe8, 0xf3, 0xfe, 0x20, 0xbc, 0x82, 0x17, 0x49, 0x17, 0xb7, 0x01, + 0xfa, 0xcd, 0x64, 0x41, 0x0c, 0x08, 0xd6, 0x8c, 0xbf, 0x7d, 0x23, 0xd1, 0x25, 0x30, 0x7e, 0xc5, + 0x19, 0x35, 0x5c, 0x0a, 0x52, 0xaf, 0x4a, 0x15, 0x13, 0xbf, 0x14, 0x05, 0x15, 0x34, 0x83, 0x05, + 0x3e, 0x18, 0x69, 0x97, 0xe7, 0x22, 0xc9, 0xb8, 0xc9, 0x77, 0x1b, 0xc2, 0x64, 0x11, 0x39, 0xaf, + 0x02, 0x74, 0x1e, 0x75, 0xfc, 0x22, 0x2d, 0x77, 0x8a, 0x41, 0x94, 0xc9, 0x88, 0x96, 0x3c, 0xaa, + 0xe2, 0xc8, 0x39, 0x5f, 0x5a, 0xe7, 0xcd, 0xeb, 0x66, 0x6d, 0x7e, 0x3d, 0x04, 0x00, 0x00, 0xff, + 0xff, 0x47, 0xcd, 0xe1, 0x6d, 0xa8, 0x03, 0x00, 0x00, } diff --git a/source/go/api/v1/service_manage/request.pb.go b/source/go/api/v1/service_manage/request.pb.go index ef6d1fd..56fcfcd 100644 --- a/source/go/api/v1/service_manage/request.pb.go +++ b/source/go/api/v1/service_manage/request.pb.go @@ -21,16 +21,15 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package type DiscoverRequest_DiscoverRequestType int32 const ( - DiscoverRequest_UNKNOWN DiscoverRequest_DiscoverRequestType = 0 - DiscoverRequest_INSTANCE DiscoverRequest_DiscoverRequestType = 1 - DiscoverRequest_CLUSTER DiscoverRequest_DiscoverRequestType = 2 - DiscoverRequest_ROUTING DiscoverRequest_DiscoverRequestType = 3 - DiscoverRequest_RATE_LIMIT DiscoverRequest_DiscoverRequestType = 4 - DiscoverRequest_CIRCUIT_BREAKER DiscoverRequest_DiscoverRequestType = 5 - DiscoverRequest_SERVICES DiscoverRequest_DiscoverRequestType = 6 - DiscoverRequest_NAMESPACES DiscoverRequest_DiscoverRequestType = 12 - DiscoverRequest_FAULT_DETECTOR DiscoverRequest_DiscoverRequestType = 13 - DiscoverRequest_SERVICE_CONTRACT DiscoverRequest_DiscoverRequestType = 14 + DiscoverRequest_UNKNOWN DiscoverRequest_DiscoverRequestType = 0 + DiscoverRequest_INSTANCE DiscoverRequest_DiscoverRequestType = 1 + DiscoverRequest_CLUSTER DiscoverRequest_DiscoverRequestType = 2 + DiscoverRequest_ROUTING DiscoverRequest_DiscoverRequestType = 3 + DiscoverRequest_RATE_LIMIT DiscoverRequest_DiscoverRequestType = 4 + DiscoverRequest_CIRCUIT_BREAKER DiscoverRequest_DiscoverRequestType = 5 + DiscoverRequest_SERVICES DiscoverRequest_DiscoverRequestType = 6 + DiscoverRequest_NAMESPACES DiscoverRequest_DiscoverRequestType = 12 + DiscoverRequest_FAULT_DETECTOR DiscoverRequest_DiscoverRequestType = 13 ) var DiscoverRequest_DiscoverRequestType_name = map[int32]string{ @@ -43,26 +42,24 @@ var DiscoverRequest_DiscoverRequestType_name = map[int32]string{ 6: "SERVICES", 12: "NAMESPACES", 13: "FAULT_DETECTOR", - 14: "SERVICE_CONTRACT", } var DiscoverRequest_DiscoverRequestType_value = map[string]int32{ - "UNKNOWN": 0, - "INSTANCE": 1, - "CLUSTER": 2, - "ROUTING": 3, - "RATE_LIMIT": 4, - "CIRCUIT_BREAKER": 5, - "SERVICES": 6, - "NAMESPACES": 12, - "FAULT_DETECTOR": 13, - "SERVICE_CONTRACT": 14, + "UNKNOWN": 0, + "INSTANCE": 1, + "CLUSTER": 2, + "ROUTING": 3, + "RATE_LIMIT": 4, + "CIRCUIT_BREAKER": 5, + "SERVICES": 6, + "NAMESPACES": 12, + "FAULT_DETECTOR": 13, } func (x DiscoverRequest_DiscoverRequestType) String() string { return proto.EnumName(DiscoverRequest_DiscoverRequestType_name, int32(x)) } func (DiscoverRequest_DiscoverRequestType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_request_629075ca61fde1db, []int{1, 0} + return fileDescriptor_request_f23b60a9b726ff3e, []int{1, 0} } type DiscoverFilter struct { @@ -76,7 +73,7 @@ func (m *DiscoverFilter) Reset() { *m = DiscoverFilter{} } func (m *DiscoverFilter) String() string { return proto.CompactTextString(m) } func (*DiscoverFilter) ProtoMessage() {} func (*DiscoverFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_request_629075ca61fde1db, []int{0} + return fileDescriptor_request_f23b60a9b726ff3e, []int{0} } func (m *DiscoverFilter) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_DiscoverFilter.Unmarshal(m, b) @@ -107,7 +104,6 @@ type DiscoverRequest struct { Type DiscoverRequest_DiscoverRequestType `protobuf:"varint,1,opt,name=type,proto3,enum=v1.DiscoverRequest_DiscoverRequestType" json:"type,omitempty"` Service *Service `protobuf:"bytes,2,opt,name=service,proto3" json:"service,omitempty"` Filter *DiscoverFilter `protobuf:"bytes,30,opt,name=Filter,proto3" json:"Filter,omitempty"` - ServiceContract *ServiceContract `protobuf:"bytes,31,opt,name=service_contract,json=serviceContract,proto3" json:"service_contract,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -117,7 +113,7 @@ func (m *DiscoverRequest) Reset() { *m = DiscoverRequest{} } func (m *DiscoverRequest) String() string { return proto.CompactTextString(m) } func (*DiscoverRequest) ProtoMessage() {} func (*DiscoverRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_request_629075ca61fde1db, []int{1} + return fileDescriptor_request_f23b60a9b726ff3e, []int{1} } func (m *DiscoverRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_DiscoverRequest.Unmarshal(m, b) @@ -158,50 +154,41 @@ func (m *DiscoverRequest) GetFilter() *DiscoverFilter { return nil } -func (m *DiscoverRequest) GetServiceContract() *ServiceContract { - if m != nil { - return m.ServiceContract - } - return nil -} - func init() { proto.RegisterType((*DiscoverFilter)(nil), "v1.DiscoverFilter") proto.RegisterType((*DiscoverRequest)(nil), "v1.DiscoverRequest") proto.RegisterEnum("v1.DiscoverRequest_DiscoverRequestType", DiscoverRequest_DiscoverRequestType_name, DiscoverRequest_DiscoverRequestType_value) } -func init() { proto.RegisterFile("request.proto", fileDescriptor_request_629075ca61fde1db) } - -var fileDescriptor_request_629075ca61fde1db = []byte{ - // 462 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0xd1, 0x6e, 0xda, 0x30, - 0x14, 0x86, 0x17, 0xa0, 0x80, 0x0c, 0x04, 0xcb, 0xec, 0x02, 0xf5, 0x62, 0xab, 0x90, 0xa6, 0x55, - 0xbb, 0x48, 0x46, 0x77, 0xb1, 0x8b, 0x49, 0x93, 0x42, 0x70, 0xb7, 0xac, 0x34, 0x54, 0x8e, 0xb3, - 0x49, 0xbb, 0x89, 0x5c, 0xcb, 0x03, 0x4b, 0x10, 0x67, 0xb1, 0x89, 0xc4, 0x43, 0xec, 0x39, 0xf6, - 0x14, 0x7b, 0xb7, 0x29, 0x24, 0x91, 0xda, 0xaa, 0x97, 0xe7, 0xfc, 0xe7, 0xfb, 0xf3, 0xe7, 0xf8, - 0x80, 0x51, 0x2e, 0x7e, 0x1f, 0x84, 0x36, 0x4e, 0x96, 0x2b, 0xa3, 0x50, 0xab, 0x98, 0x9f, 0x8f, - 0xb4, 0xc8, 0x0b, 0xc9, 0x45, 0xd5, 0x3a, 0xb7, 0xb9, 0x4a, 0x4d, 0xce, 0x78, 0x3d, 0x32, 0x5b, - 0x00, 0x7b, 0x29, 0x35, 0x57, 0x85, 0xc8, 0xaf, 0xe5, 0xce, 0x88, 0x1c, 0xbd, 0x07, 0x93, 0x75, - 0xba, 0x3b, 0x7e, 0x15, 0x6c, 0x67, 0xb6, 0xc7, 0x20, 0xd5, 0x86, 0xa5, 0x5c, 0x4c, 0xad, 0x0b, - 0xeb, 0xb2, 0x4f, 0x9e, 0x93, 0x66, 0x7f, 0xdb, 0x60, 0xdc, 0x98, 0x90, 0x2a, 0x00, 0xfa, 0x04, - 0x3a, 0xe6, 0x98, 0x55, 0x98, 0x7d, 0xf5, 0xd6, 0x29, 0xe6, 0xce, 0x93, 0x91, 0xa7, 0x35, 0x3d, - 0x66, 0x82, 0x9c, 0x20, 0xf4, 0x06, 0xf4, 0xea, 0xd4, 0xd3, 0xd6, 0x85, 0x75, 0x39, 0xb8, 0x1a, - 0x94, 0x7c, 0x54, 0xb5, 0x48, 0xa3, 0xa1, 0x77, 0xa0, 0x5b, 0x65, 0x9e, 0xbe, 0x3a, 0x4d, 0xa1, - 0x87, 0x5f, 0xa9, 0x14, 0x52, 0x4f, 0xa0, 0xcf, 0x00, 0xd6, 0x58, 0xd2, 0x6c, 0x60, 0xfa, 0xfa, - 0x44, 0x4d, 0x1e, 0x78, 0xfb, 0xb5, 0x44, 0xc6, 0xfa, 0x71, 0x63, 0xf6, 0xcf, 0x02, 0x93, 0x67, - 0x02, 0xa3, 0x01, 0xe8, 0xc5, 0xe1, 0x4d, 0xb8, 0xfe, 0x11, 0xc2, 0x17, 0x68, 0x08, 0xfa, 0x41, - 0x18, 0x51, 0x2f, 0xf4, 0x31, 0xb4, 0x4a, 0xc9, 0x5f, 0xc5, 0x11, 0xc5, 0x04, 0xb6, 0xca, 0x82, - 0xac, 0x63, 0x1a, 0x84, 0x5f, 0x60, 0x1b, 0xd9, 0x00, 0x10, 0x8f, 0xe2, 0x64, 0x15, 0xdc, 0x06, - 0x14, 0x76, 0xd0, 0x04, 0x8c, 0xfd, 0x80, 0xf8, 0x71, 0x40, 0x93, 0x05, 0xc1, 0xde, 0x0d, 0x26, - 0xf0, 0xac, 0x34, 0x8b, 0x30, 0xf9, 0x1e, 0xf8, 0x38, 0x82, 0xdd, 0x12, 0x09, 0xbd, 0x5b, 0x1c, - 0xdd, 0x79, 0x65, 0x3d, 0x44, 0x08, 0xd8, 0xd7, 0x5e, 0xbc, 0xa2, 0xc9, 0x12, 0x53, 0xec, 0xd3, - 0x35, 0x81, 0x23, 0xf4, 0x12, 0xc0, 0x9a, 0x48, 0xfc, 0x75, 0x48, 0x89, 0xe7, 0x53, 0x68, 0xcf, - 0x3a, 0xfd, 0x1e, 0x1c, 0x7c, 0xeb, 0xf4, 0xdb, 0xf0, 0x6c, 0xf1, 0xc7, 0x02, 0x1f, 0xb9, 0xda, - 0x3b, 0x46, 0xa4, 0x5c, 0xa4, 0xc6, 0xc9, 0xd4, 0x8e, 0xe5, 0x52, 0x3b, 0x3a, 0x13, 0x5c, 0xfe, - 0x92, 0x9c, 0x19, 0xa9, 0x52, 0x87, 0x65, 0xb2, 0xdc, 0x49, 0x73, 0x38, 0x7b, 0x96, 0xb2, 0x8d, - 0x58, 0x0c, 0xeb, 0xdf, 0xbe, 0x2b, 0xef, 0xe6, 0xe7, 0x72, 0x23, 0xcd, 0xf6, 0x70, 0xef, 0x70, - 0xb5, 0x77, 0x6b, 0x97, 0xbd, 0xd0, 0x5b, 0xf7, 0x91, 0x93, 0xab, 0xd5, 0x21, 0xe7, 0xc2, 0xdd, - 0x28, 0x97, 0x65, 0xd2, 0x2d, 0xe6, 0x6e, 0xf3, 0x06, 0x95, 0xe7, 0x7d, 0xf7, 0x74, 0x84, 0x1f, - 0xfe, 0x07, 0x00, 0x00, 0xff, 0xff, 0xc4, 0xa8, 0xe6, 0x44, 0xb8, 0x02, 0x00, 0x00, +func init() { proto.RegisterFile("request.proto", fileDescriptor_request_f23b60a9b726ff3e) } + +var fileDescriptor_request_f23b60a9b726ff3e = []byte{ + // 427 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0x41, 0x6f, 0xda, 0x30, + 0x14, 0xc7, 0x17, 0x4a, 0x01, 0x19, 0x48, 0x2d, 0x73, 0x41, 0x3d, 0x4c, 0x15, 0xd2, 0xb4, 0x6a, + 0x87, 0x64, 0x74, 0x87, 0x1d, 0x76, 0x0a, 0xc1, 0xdd, 0xb2, 0xd2, 0x50, 0x39, 0xce, 0x26, 0xed, + 0x82, 0x5c, 0xcb, 0x03, 0x4b, 0x10, 0x67, 0xb6, 0x89, 0xc4, 0x87, 0xd8, 0xe7, 0xd8, 0xe7, 0xd9, + 0x37, 0x9a, 0x4c, 0x82, 0xb4, 0x56, 0x3d, 0x3e, 0xff, 0xff, 0xff, 0xdf, 0x7b, 0x4f, 0xcf, 0x60, + 0xa8, 0xc5, 0xaf, 0xbd, 0x30, 0x36, 0x28, 0xb5, 0xb2, 0x0a, 0xb5, 0xaa, 0xe9, 0xe5, 0xd0, 0x08, + 0x5d, 0x49, 0x2e, 0xea, 0xa7, 0x4b, 0x9f, 0xab, 0xc2, 0x6a, 0xc6, 0x1b, 0xcb, 0x64, 0x06, 0xfc, + 0xb9, 0x34, 0x5c, 0x55, 0x42, 0xdf, 0xca, 0xad, 0x15, 0x1a, 0xbd, 0x07, 0xa3, 0x65, 0xb1, 0x3d, + 0x7c, 0x11, 0x6c, 0x6b, 0x37, 0x87, 0xa4, 0x30, 0x96, 0x15, 0x5c, 0x8c, 0xbd, 0x2b, 0xef, 0xba, + 0x47, 0x5e, 0x92, 0x26, 0x7f, 0x5b, 0xe0, 0xe2, 0x04, 0x21, 0xf5, 0x00, 0xe8, 0x13, 0x68, 0xdb, + 0x43, 0x59, 0xc7, 0xfc, 0x9b, 0xb7, 0x41, 0x35, 0x0d, 0x9e, 0x59, 0x9e, 0xd7, 0xf4, 0x50, 0x0a, + 0x72, 0x0c, 0xa1, 0x37, 0xa0, 0xdb, 0x4c, 0x3d, 0x6e, 0x5d, 0x79, 0xd7, 0xfd, 0x9b, 0xbe, 0xcb, + 0x67, 0xf5, 0x13, 0x39, 0x69, 0xe8, 0x1d, 0xe8, 0xd4, 0x33, 0x8f, 0x5f, 0x1f, 0x5d, 0xe8, 0xff, + 0x2e, 0xb5, 0x42, 0x1a, 0xc7, 0xe4, 0x8f, 0x07, 0x46, 0x2f, 0x34, 0x44, 0x7d, 0xd0, 0xcd, 0xd3, + 0xbb, 0x74, 0xf9, 0x3d, 0x85, 0xaf, 0xd0, 0x00, 0xf4, 0x92, 0x34, 0xa3, 0x51, 0x1a, 0x63, 0xe8, + 0x39, 0x29, 0x5e, 0xe4, 0x19, 0xc5, 0x04, 0xb6, 0x5c, 0x41, 0x96, 0x39, 0x4d, 0xd2, 0xcf, 0xf0, + 0x0c, 0xf9, 0x00, 0x90, 0x88, 0xe2, 0xd5, 0x22, 0xb9, 0x4f, 0x28, 0x6c, 0xa3, 0x11, 0xb8, 0x88, + 0x13, 0x12, 0xe7, 0x09, 0x5d, 0xcd, 0x08, 0x8e, 0xee, 0x30, 0x81, 0xe7, 0x0e, 0x96, 0x61, 0xf2, + 0x2d, 0x89, 0x71, 0x06, 0x3b, 0x2e, 0x92, 0x46, 0xf7, 0x38, 0x7b, 0x88, 0x5c, 0x3d, 0x40, 0x08, + 0xf8, 0xb7, 0x51, 0xbe, 0xa0, 0xab, 0x39, 0xa6, 0x38, 0xa6, 0x4b, 0x02, 0x87, 0x93, 0x76, 0xaf, + 0x0b, 0xfb, 0x5f, 0xdb, 0xbd, 0x33, 0x78, 0x3e, 0xfb, 0xed, 0x81, 0x8f, 0x5c, 0xed, 0x02, 0x2b, + 0x0a, 0x2e, 0x0a, 0x1b, 0x94, 0x6a, 0xcb, 0xb4, 0x34, 0x81, 0x29, 0x05, 0x97, 0x3f, 0x25, 0x67, + 0x56, 0xaa, 0x22, 0x60, 0xa5, 0x74, 0x3b, 0x9f, 0x4e, 0xbc, 0x63, 0x05, 0x5b, 0x8b, 0xd9, 0xa0, + 0x59, 0xf0, 0xc1, 0x5d, 0xf8, 0xc7, 0x7c, 0x2d, 0xed, 0x66, 0xff, 0x18, 0x70, 0xb5, 0x0b, 0x1b, + 0xca, 0x4e, 0x98, 0x4d, 0xf8, 0x84, 0x14, 0x1a, 0xb5, 0xd7, 0x5c, 0x84, 0x6b, 0x15, 0xb2, 0x52, + 0x86, 0xd5, 0x34, 0x6c, 0x98, 0xab, 0x9a, 0xf9, 0xd8, 0x39, 0x7e, 0x97, 0x0f, 0xff, 0x02, 0x00, + 0x00, 0xff, 0xff, 0x98, 0x9f, 0xa5, 0xa4, 0x62, 0x02, 0x00, 0x00, } diff --git a/source/go/api/v1/service_manage/response.pb.go b/source/go/api/v1/service_manage/response.pb.go index f7e5dde..0dfbacc 100644 --- a/source/go/api/v1/service_manage/response.pb.go +++ b/source/go/api/v1/service_manage/response.pb.go @@ -27,16 +27,15 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package type DiscoverResponse_DiscoverResponseType int32 const ( - DiscoverResponse_UNKNOWN DiscoverResponse_DiscoverResponseType = 0 - DiscoverResponse_INSTANCE DiscoverResponse_DiscoverResponseType = 1 - DiscoverResponse_CLUSTER DiscoverResponse_DiscoverResponseType = 2 - DiscoverResponse_ROUTING DiscoverResponse_DiscoverResponseType = 3 - DiscoverResponse_RATE_LIMIT DiscoverResponse_DiscoverResponseType = 4 - DiscoverResponse_CIRCUIT_BREAKER DiscoverResponse_DiscoverResponseType = 5 - DiscoverResponse_SERVICES DiscoverResponse_DiscoverResponseType = 6 - DiscoverResponse_NAMESPACES DiscoverResponse_DiscoverResponseType = 12 - DiscoverResponse_FAULT_DETECTOR DiscoverResponse_DiscoverResponseType = 13 - DiscoverResponse_SERVICE_CONTRACT DiscoverResponse_DiscoverResponseType = 14 + DiscoverResponse_UNKNOWN DiscoverResponse_DiscoverResponseType = 0 + DiscoverResponse_INSTANCE DiscoverResponse_DiscoverResponseType = 1 + DiscoverResponse_CLUSTER DiscoverResponse_DiscoverResponseType = 2 + DiscoverResponse_ROUTING DiscoverResponse_DiscoverResponseType = 3 + DiscoverResponse_RATE_LIMIT DiscoverResponse_DiscoverResponseType = 4 + DiscoverResponse_CIRCUIT_BREAKER DiscoverResponse_DiscoverResponseType = 5 + DiscoverResponse_SERVICES DiscoverResponse_DiscoverResponseType = 6 + DiscoverResponse_NAMESPACES DiscoverResponse_DiscoverResponseType = 12 + DiscoverResponse_FAULT_DETECTOR DiscoverResponse_DiscoverResponseType = 13 ) var DiscoverResponse_DiscoverResponseType_name = map[int32]string{ @@ -49,26 +48,24 @@ var DiscoverResponse_DiscoverResponseType_name = map[int32]string{ 6: "SERVICES", 12: "NAMESPACES", 13: "FAULT_DETECTOR", - 14: "SERVICE_CONTRACT", } var DiscoverResponse_DiscoverResponseType_value = map[string]int32{ - "UNKNOWN": 0, - "INSTANCE": 1, - "CLUSTER": 2, - "ROUTING": 3, - "RATE_LIMIT": 4, - "CIRCUIT_BREAKER": 5, - "SERVICES": 6, - "NAMESPACES": 12, - "FAULT_DETECTOR": 13, - "SERVICE_CONTRACT": 14, + "UNKNOWN": 0, + "INSTANCE": 1, + "CLUSTER": 2, + "ROUTING": 3, + "RATE_LIMIT": 4, + "CIRCUIT_BREAKER": 5, + "SERVICES": 6, + "NAMESPACES": 12, + "FAULT_DETECTOR": 13, } func (x DiscoverResponse_DiscoverResponseType) String() string { return proto.EnumName(DiscoverResponse_DiscoverResponseType_name, int32(x)) } func (DiscoverResponse_DiscoverResponseType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_response_fc83a74d7fb91365, []int{3, 0} + return fileDescriptor_response_73c9d1794e5a83a7, []int{3, 0} } type Response struct { @@ -94,6 +91,7 @@ type Response struct { OptionSwitch *OptionSwitch `protobuf:"bytes,27,opt,name=optionSwitch,proto3" json:"optionSwitch,omitempty"` InstanceLabels *InstanceLabels `protobuf:"bytes,28,opt,name=instanceLabels,proto3" json:"instanceLabels,omitempty"` Data *anypb.Any `protobuf:"bytes,29,opt,name=data,proto3" json:"data,omitempty"` + ServiceContract *ServiceContract `protobuf:"bytes,30,opt,name=serviceContract,proto3" json:"serviceContract,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -103,7 +101,7 @@ func (m *Response) Reset() { *m = Response{} } func (m *Response) String() string { return proto.CompactTextString(m) } func (*Response) ProtoMessage() {} func (*Response) Descriptor() ([]byte, []int) { - return fileDescriptor_response_fc83a74d7fb91365, []int{0} + return fileDescriptor_response_73c9d1794e5a83a7, []int{0} } func (m *Response) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Response.Unmarshal(m, b) @@ -277,6 +275,13 @@ func (m *Response) GetData() *anypb.Any { return nil } +func (m *Response) GetServiceContract() *ServiceContract { + if m != nil { + return m.ServiceContract + } + return nil +} + type BatchWriteResponse struct { Code *wrapperspb.UInt32Value `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` Info *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"` @@ -291,7 +296,7 @@ func (m *BatchWriteResponse) Reset() { *m = BatchWriteResponse{} } func (m *BatchWriteResponse) String() string { return proto.CompactTextString(m) } func (*BatchWriteResponse) ProtoMessage() {} func (*BatchWriteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_response_fc83a74d7fb91365, []int{1} + return fileDescriptor_response_73c9d1794e5a83a7, []int{1} } func (m *BatchWriteResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_BatchWriteResponse.Unmarshal(m, b) @@ -366,7 +371,7 @@ func (m *BatchQueryResponse) Reset() { *m = BatchQueryResponse{} } func (m *BatchQueryResponse) String() string { return proto.CompactTextString(m) } func (*BatchQueryResponse) ProtoMessage() {} func (*BatchQueryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_response_fc83a74d7fb91365, []int{2} + return fileDescriptor_response_73c9d1794e5a83a7, []int{2} } func (m *BatchQueryResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_BatchQueryResponse.Unmarshal(m, b) @@ -518,7 +523,6 @@ type DiscoverResponse struct { Namespaces []*model.Namespace `protobuf:"bytes,10,rep,name=namespaces,proto3" json:"namespaces,omitempty"` FaultDetector *fault_tolerance.FaultDetector `protobuf:"bytes,11,opt,name=faultDetector,proto3" json:"faultDetector,omitempty"` AliasFor *Service `protobuf:"bytes,21,opt,name=aliasFor,proto3" json:"aliasFor,omitempty"` - ServiceContract *ServiceContract `protobuf:"bytes,22,opt,name=serviceContract,proto3" json:"serviceContract,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -528,7 +532,7 @@ func (m *DiscoverResponse) Reset() { *m = DiscoverResponse{} } func (m *DiscoverResponse) String() string { return proto.CompactTextString(m) } func (*DiscoverResponse) ProtoMessage() {} func (*DiscoverResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_response_fc83a74d7fb91365, []int{3} + return fileDescriptor_response_73c9d1794e5a83a7, []int{3} } func (m *DiscoverResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_DiscoverResponse.Unmarshal(m, b) @@ -632,13 +636,6 @@ func (m *DiscoverResponse) GetAliasFor() *Service { return nil } -func (m *DiscoverResponse) GetServiceContract() *ServiceContract { - if m != nil { - return m.ServiceContract - } - return nil -} - type OptionSwitch struct { Options map[string]string `protobuf:"bytes,1,rep,name=options,proto3" json:"options,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -650,7 +647,7 @@ func (m *OptionSwitch) Reset() { *m = OptionSwitch{} } func (m *OptionSwitch) String() string { return proto.CompactTextString(m) } func (*OptionSwitch) ProtoMessage() {} func (*OptionSwitch) Descriptor() ([]byte, []int) { - return fileDescriptor_response_fc83a74d7fb91365, []int{4} + return fileDescriptor_response_73c9d1794e5a83a7, []int{4} } func (m *OptionSwitch) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_OptionSwitch.Unmarshal(m, b) @@ -688,7 +685,7 @@ func (m *InstanceLabels) Reset() { *m = InstanceLabels{} } func (m *InstanceLabels) String() string { return proto.CompactTextString(m) } func (*InstanceLabels) ProtoMessage() {} func (*InstanceLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_response_fc83a74d7fb91365, []int{5} + return fileDescriptor_response_73c9d1794e5a83a7, []int{5} } func (m *InstanceLabels) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_InstanceLabels.Unmarshal(m, b) @@ -727,97 +724,96 @@ func init() { proto.RegisterEnum("v1.DiscoverResponse_DiscoverResponseType", DiscoverResponse_DiscoverResponseType_name, DiscoverResponse_DiscoverResponseType_value) } -func init() { proto.RegisterFile("response.proto", fileDescriptor_response_fc83a74d7fb91365) } - -var fileDescriptor_response_fc83a74d7fb91365 = []byte{ - // 1409 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcf, 0x6e, 0xdb, 0xc6, - 0x13, 0xfe, 0xc9, 0xa6, 0xf5, 0x67, 0x24, 0x2b, 0xfc, 0xad, 0xe4, 0x74, 0xa3, 0x26, 0x41, 0x20, - 0xa4, 0xa9, 0xeb, 0xa0, 0x52, 0xec, 0x04, 0x75, 0x10, 0x20, 0x07, 0x59, 0xa6, 0x52, 0x35, 0xb2, - 0x9c, 0xae, 0xa4, 0xa4, 0xe8, 0x45, 0xa0, 0xe9, 0xb5, 0xbc, 0x08, 0x45, 0x0a, 0x5c, 0xd2, 0x81, - 0x7a, 0xed, 0xbd, 0x87, 0xf6, 0x45, 0xfa, 0x16, 0x7d, 0x83, 0x3e, 0x4b, 0x8f, 0xc5, 0x2e, 0x97, - 0xff, 0x64, 0x57, 0xc9, 0x29, 0x17, 0x9b, 0x3b, 0xdf, 0x37, 0xc3, 0x9d, 0xd9, 0xd9, 0x8f, 0x23, - 0xa8, 0x7a, 0x94, 0x2f, 0x5c, 0x87, 0xd3, 0xd6, 0xc2, 0x73, 0x7d, 0x17, 0x6d, 0x5c, 0xed, 0x37, - 0xee, 0xcf, 0x5c, 0x77, 0x66, 0xd3, 0xb6, 0xb4, 0x9c, 0x05, 0x17, 0xed, 0x0f, 0x9e, 0xb9, 0x58, - 0x50, 0x8f, 0x87, 0x9c, 0xc6, 0x9d, 0x55, 0xdc, 0x74, 0x96, 0x0a, 0xba, 0xe5, 0x98, 0x73, 0xca, - 0x17, 0xa6, 0xa5, 0xe2, 0x35, 0xb6, 0x39, 0xf5, 0xae, 0x58, 0xb2, 0xf4, 0xdc, 0xc0, 0x67, 0xce, - 0x2c, 0xa2, 0x7b, 0xa6, 0x4f, 0x6d, 0x36, 0x67, 0xbe, 0x32, 0xd4, 0x2d, 0xe6, 0x59, 0x01, 0xf3, - 0xcf, 0x3c, 0x6a, 0xbe, 0xa7, 0x9e, 0xb2, 0x96, 0xe7, 0xee, 0x39, 0xb5, 0xd5, 0xa2, 0x62, 0xd9, - 0x8c, 0x3a, 0x91, 0x43, 0xcd, 0x72, 0x9d, 0x0b, 0x36, 0xf3, 0xa8, 0x4d, 0xcd, 0x28, 0x89, 0x46, - 0xfd, 0xc2, 0x0c, 0x6c, 0x7f, 0x7a, 0x4e, 0x7d, 0x6a, 0xf9, 0x6e, 0x14, 0x05, 0xcc, 0xc0, 0xbf, - 0x54, 0xcf, 0x55, 0xcb, 0x75, 0x7c, 0xcf, 0xb4, 0x54, 0x98, 0xe6, 0x5f, 0x45, 0x28, 0x12, 0x55, - 0x09, 0xf4, 0x04, 0x34, 0xcb, 0x3d, 0xa7, 0x38, 0xf7, 0x20, 0xb7, 0x5b, 0x3e, 0xb8, 0xdb, 0x0a, - 0xd3, 0x6d, 0x45, 0xe9, 0xb6, 0x26, 0x7d, 0xc7, 0x7f, 0x7a, 0xf0, 0xd6, 0xb4, 0x03, 0x4a, 0x24, - 0x53, 0x78, 0x30, 0xe7, 0xc2, 0xc5, 0x1b, 0xff, 0xe1, 0x31, 0xf2, 0x3d, 0xe6, 0xcc, 0x94, 0x87, - 0x60, 0xa2, 0x26, 0xe4, 0xc3, 0x3c, 0xf0, 0xa6, 0xf4, 0x81, 0xd6, 0xd5, 0x7e, 0xab, 0x2b, 0x2d, - 0x44, 0x21, 0xe8, 0x31, 0x94, 0xe2, 0x72, 0x62, 0x4d, 0xd2, 0xb6, 0x05, 0x6d, 0x18, 0x19, 0x49, - 0x82, 0xa3, 0xaf, 0xa0, 0xa0, 0x4a, 0x8d, 0xb7, 0x24, 0xb5, 0x2c, 0xa8, 0xa3, 0xd0, 0x44, 0x22, - 0x0c, 0xed, 0x42, 0x91, 0x39, 0xdc, 0x37, 0x1d, 0x8b, 0xe2, 0xbc, 0xe4, 0x55, 0x04, 0xaf, 0xaf, - 0x6c, 0x24, 0x46, 0x45, 0x40, 0x75, 0x58, 0xb8, 0x90, 0x04, 0x24, 0xa1, 0x89, 0x44, 0x18, 0x7a, - 0x04, 0x5b, 0xa6, 0xcd, 0x4c, 0x8e, 0x8b, 0x92, 0xa4, 0xa7, 0xde, 0xda, 0x11, 0x76, 0x12, 0xc2, - 0xe8, 0x11, 0x94, 0xc4, 0x61, 0x0f, 0xc4, 0x61, 0xe3, 0x92, 0xe4, 0x16, 0x65, 0xc0, 0xc0, 0xa6, - 0x24, 0x81, 0xd0, 0x0b, 0xa8, 0xaa, 0x1e, 0x38, 0x0a, 0x7b, 0x00, 0x83, 0x24, 0x23, 0x59, 0xa0, - 0x0c, 0x42, 0x56, 0x98, 0xe8, 0x10, 0xb6, 0xc3, 0x76, 0x20, 0x61, 0x3b, 0xe0, 0xb2, 0x74, 0xfd, - 0xbf, 0x74, 0x4d, 0x03, 0x24, 0xcb, 0x43, 0x77, 0x41, 0x0b, 0x38, 0xf5, 0x70, 0x2d, 0xd9, 0xd7, - 0x84, 0x53, 0x8f, 0x48, 0xab, 0x38, 0x07, 0xf1, 0xff, 0x95, 0xe7, 0x06, 0x0b, 0x5c, 0x4f, 0xce, - 0x61, 0x12, 0x19, 0x49, 0x82, 0xa3, 0x67, 0x50, 0x11, 0x7d, 0x36, 0xf2, 0x45, 0x4a, 0xb3, 0x25, - 0xde, 0x49, 0xca, 0xd2, 0x49, 0xd9, 0x49, 0x86, 0x85, 0xf6, 0xa1, 0xe8, 0x51, 0xdb, 0xf4, 0x99, - 0xeb, 0xe0, 0xdb, 0xd2, 0x63, 0x27, 0xfb, 0x06, 0x05, 0x92, 0x98, 0x26, 0x92, 0xb5, 0xdd, 0x19, - 0x73, 0xa2, 0xb6, 0xc5, 0x5f, 0x24, 0xc9, 0x0e, 0xd2, 0x00, 0xc9, 0xf2, 0x50, 0x0f, 0xd0, 0xdc, - 0x3d, 0x67, 0x17, 0xcb, 0xf4, 0x7e, 0x30, 0x96, 0xde, 0xb7, 0x85, 0xf7, 0xc9, 0x35, 0x94, 0xdc, - 0xe0, 0x81, 0x5e, 0xc2, 0xad, 0xd0, 0x1a, 0xef, 0x12, 0xdf, 0x91, 0x41, 0x6a, 0x49, 0x90, 0x24, - 0x81, 0x55, 0x2e, 0x7a, 0x0a, 0x25, 0x8f, 0x72, 0x37, 0xf0, 0x2c, 0xca, 0x71, 0x23, 0xc9, 0x39, - 0x7e, 0x67, 0x04, 0x92, 0x84, 0x27, 0xaa, 0xeb, 0x2e, 0x44, 0xfa, 0xa3, 0x0f, 0xcc, 0xb7, 0x2e, - 0xf1, 0x97, 0x49, 0x75, 0x4f, 0x53, 0x76, 0x92, 0x61, 0x89, 0x9e, 0x8a, 0xda, 0x7a, 0x60, 0x9e, - 0x51, 0x9b, 0xe3, 0xbb, 0x49, 0x4f, 0xf5, 0x33, 0x08, 0x59, 0x61, 0xa2, 0x5d, 0xd0, 0xce, 0x4d, - 0xdf, 0xc4, 0xf7, 0xa4, 0x47, 0xfd, 0xda, 0xd5, 0xee, 0x38, 0x4b, 0x22, 0x19, 0x3f, 0x68, 0xc5, - 0x8a, 0x5e, 0x6b, 0xfe, 0x9d, 0x03, 0x74, 0x64, 0xfa, 0xd6, 0xe5, 0x3b, 0x8f, 0xf9, 0xf4, 0xb3, - 0x6a, 0xca, 0x13, 0xd0, 0x38, 0xfb, 0x85, 0x2a, 0x45, 0xf9, 0xc8, 0x3b, 0x04, 0x13, 0xed, 0xc9, - 0x33, 0x90, 0x3b, 0xe4, 0x58, 0x7b, 0xb0, 0x19, 0xc9, 0x41, 0xdc, 0x3a, 0x09, 0xdc, 0xfc, 0x33, - 0xaf, 0x12, 0xfb, 0x31, 0xa0, 0xde, 0xf2, 0xb3, 0x26, 0xf6, 0x0c, 0xf2, 0xe6, 0xdc, 0x0d, 0x62, - 0xb1, 0x5c, 0xff, 0x16, 0xc5, 0x8d, 0xcb, 0xa1, 0x7d, 0x72, 0x39, 0xbe, 0x05, 0x88, 0x05, 0x95, - 0xe3, 0x2d, 0x59, 0x8f, 0x15, 0xc5, 0x4d, 0x11, 0xd0, 0xd7, 0x50, 0x54, 0xb2, 0xca, 0x71, 0x5e, - 0x92, 0x33, 0x9a, 0x1b, 0x83, 0xa2, 0xcc, 0x51, 0x57, 0x71, 0x5c, 0x48, 0xca, 0x1c, 0xab, 0x6e, - 0x02, 0x8b, 0xa0, 0x4a, 0x5a, 0x85, 0xa4, 0x6e, 0xae, 0xea, 0x6e, 0x0c, 0xa2, 0x3d, 0x28, 0x48, - 0x65, 0xa5, 0x1c, 0x97, 0x24, 0xef, 0xba, 0xf4, 0x46, 0x04, 0xb4, 0x0b, 0x10, 0x2b, 0x2c, 0xc7, - 0x20, 0xe9, 0x89, 0xfa, 0xa6, 0x30, 0x64, 0x00, 0x0a, 0xa5, 0xf1, 0x1d, 0xf3, 0x2f, 0x47, 0x51, - 0x76, 0x65, 0xe9, 0xb1, 0x93, 0xe8, 0x68, 0x0a, 0x25, 0x37, 0x38, 0xa0, 0xfb, 0xb0, 0x25, 0x24, - 0x91, 0x63, 0x94, 0xbc, 0x4b, 0x2a, 0x6a, 0x68, 0x16, 0x95, 0x8e, 0x25, 0x93, 0xe3, 0x5a, 0x52, - 0xe9, 0x44, 0x30, 0x52, 0x04, 0xf4, 0x1c, 0xaa, 0x29, 0xb9, 0x64, 0x94, 0xe3, 0x7a, 0x92, 0x72, - 0x46, 0xa8, 0x56, 0x78, 0xe8, 0x21, 0x14, 0xc2, 0xaf, 0x29, 0xc7, 0x3b, 0xd2, 0x25, 0xfd, 0xa1, - 0x8d, 0xa0, 0xf8, 0x92, 0xdf, 0x96, 0x94, 0x35, 0x97, 0x5c, 0x7e, 0x66, 0x83, 0xf9, 0xdc, 0xf4, - 0x96, 0x4a, 0x6f, 0xc3, 0x23, 0x0f, 0x4d, 0x24, 0xc2, 0xa4, 0x16, 0xa0, 0xe6, 0xef, 0x05, 0xd0, - 0x8f, 0x19, 0xb7, 0xdc, 0x2b, 0xea, 0x7d, 0xd6, 0x0b, 0xf3, 0x12, 0x34, 0x7f, 0xb9, 0x08, 0x95, - 0xa0, 0x7a, 0xf0, 0x8d, 0xd8, 0xe2, 0xea, 0x3e, 0xae, 0x19, 0xc6, 0xcb, 0x05, 0x25, 0xd2, 0x2d, - 0x3d, 0x4b, 0x68, 0x6b, 0x66, 0x89, 0x4c, 0x5b, 0x6f, 0xad, 0x6f, 0xeb, 0xd4, 0x34, 0x91, 0x5f, - 0x33, 0x4d, 0x3c, 0x4e, 0x4f, 0x09, 0x85, 0xe4, 0x53, 0x4b, 0x22, 0xe3, 0xfa, 0x51, 0xa1, 0xf8, - 0xc9, 0xa3, 0x42, 0xfa, 0xee, 0x96, 0xd6, 0xdd, 0xdd, 0xac, 0x26, 0xc0, 0xc7, 0x34, 0xe1, 0x10, - 0xb6, 0xe5, 0xf0, 0x79, 0xac, 0x66, 0xcf, 0xf4, 0x08, 0xd2, 0x4b, 0x03, 0x24, 0xcb, 0x13, 0x1b, - 0x92, 0xb7, 0xb5, 0xe7, 0x7a, 0x6a, 0x66, 0xc8, 0x6e, 0x28, 0x02, 0xc5, 0x67, 0x57, 0x6d, 0xae, - 0xab, 0x66, 0x58, 0x35, 0x31, 0xd4, 0x52, 0xfc, 0x08, 0x22, 0xab, 0xdc, 0xe6, 0x3f, 0x39, 0xa8, - 0xdf, 0x74, 0xf4, 0xa8, 0x0c, 0x85, 0xc9, 0xf0, 0xf5, 0xf0, 0xf4, 0xdd, 0x50, 0xff, 0x1f, 0xaa, - 0x40, 0xb1, 0x3f, 0x1c, 0x8d, 0x3b, 0xc3, 0xae, 0xa1, 0xe7, 0x04, 0xd4, 0x1d, 0x4c, 0x46, 0x63, - 0x83, 0xe8, 0x1b, 0x62, 0x41, 0x4e, 0x27, 0xe3, 0xfe, 0xf0, 0x95, 0xbe, 0x89, 0xaa, 0x00, 0xa4, - 0x33, 0x36, 0xa6, 0x83, 0xfe, 0x49, 0x7f, 0xac, 0x6b, 0xa8, 0x06, 0xb7, 0xba, 0x7d, 0xd2, 0x9d, - 0xf4, 0xc7, 0xd3, 0x23, 0x62, 0x74, 0x5e, 0x1b, 0x44, 0xdf, 0x12, 0xc1, 0x46, 0x06, 0x79, 0xdb, - 0xef, 0x1a, 0x23, 0x3d, 0x2f, 0x5c, 0x86, 0x9d, 0x13, 0x63, 0xf4, 0xa6, 0x23, 0xd6, 0x15, 0x84, - 0xa0, 0xda, 0xeb, 0x4c, 0x06, 0xe3, 0xe9, 0xb1, 0x31, 0x36, 0xba, 0xe3, 0x53, 0xa2, 0x6f, 0xa3, - 0x3a, 0xe8, 0xca, 0x63, 0xda, 0x3d, 0x1d, 0x8e, 0x49, 0xa7, 0x3b, 0xd6, 0xab, 0x4d, 0xad, 0x58, - 0xd0, 0xcb, 0x7b, 0xda, 0x89, 0x31, 0xfa, 0x7e, 0xaf, 0x2c, 0xfe, 0x0a, 0xb0, 0xd7, 0x7f, 0xb5, - 0x57, 0xed, 0x0d, 0x26, 0x3f, 0x4d, 0x8f, 0x8f, 0x88, 0xd1, 0x23, 0x02, 0x2c, 0xca, 0xf5, 0xe8, - 0xf8, 0xf5, 0x5e, 0x39, 0x7c, 0x32, 0xc8, 0x5b, 0x83, 0xc8, 0x4b, 0xb9, 0xd3, 0xfc, 0x35, 0x07, - 0x95, 0xf4, 0xac, 0x80, 0x0e, 0xa1, 0x10, 0x4e, 0x0b, 0x1c, 0xe7, 0xe4, 0xf1, 0xde, 0x5b, 0x1d, - 0x27, 0xd4, 0x82, 0x1b, 0x8e, 0x2f, 0x2e, 0xb9, 0x62, 0x37, 0x5e, 0x44, 0x81, 0x42, 0x00, 0xe9, - 0xb0, 0xf9, 0x9e, 0x2e, 0xe5, 0xc5, 0x2e, 0x11, 0xf1, 0x88, 0xea, 0xb0, 0x75, 0x25, 0xae, 0xa5, - 0xbc, 0xba, 0x25, 0x12, 0x2e, 0x5e, 0x6c, 0x3c, 0xcf, 0x35, 0xff, 0xc8, 0x41, 0x35, 0x3b, 0x79, - 0xa0, 0xef, 0x20, 0x6f, 0x87, 0xd3, 0x49, 0xb8, 0x8d, 0xfb, 0xd7, 0xa7, 0x93, 0x56, 0xf8, 0x2f, - 0xdc, 0x87, 0x62, 0x37, 0xfa, 0x50, 0x4e, 0x99, 0x6f, 0xd8, 0xc5, 0xc3, 0xf4, 0x2e, 0xca, 0x07, - 0x55, 0x35, 0x65, 0x31, 0x67, 0x36, 0x60, 0xdc, 0x4f, 0xed, 0xea, 0xe8, 0xb7, 0x1c, 0x1c, 0x5a, - 0xee, 0xbc, 0xe5, 0x53, 0xc7, 0x92, 0xbf, 0xb1, 0x5c, 0xdb, 0xf4, 0x18, 0x6f, 0xf1, 0x05, 0xb5, - 0xd8, 0x05, 0xb3, 0xe4, 0xe4, 0xd9, 0x32, 0x17, 0x4c, 0x84, 0x88, 0x7e, 0xd9, 0xcd, 0x4d, 0xc7, - 0x9c, 0xd1, 0xa3, 0xed, 0xa8, 0x9b, 0xde, 0x08, 0x5d, 0xfa, 0xf9, 0x78, 0xc6, 0xfc, 0xcb, 0xe0, - 0xac, 0x65, 0xb9, 0xf3, 0xb6, 0x0a, 0x33, 0xa7, 0xfc, 0xb2, 0x9d, 0x09, 0xd5, 0x0e, 0xe7, 0xba, - 0xf6, 0xcc, 0x6d, 0x9b, 0x0b, 0xd6, 0xbe, 0xda, 0x6f, 0xab, 0xa0, 0xd3, 0x30, 0xe8, 0x59, 0x5e, - 0x8a, 0xdc, 0xd3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x34, 0xfd, 0xda, 0xa7, 0x0e, 0x00, - 0x00, +func init() { proto.RegisterFile("response.proto", fileDescriptor_response_73c9d1794e5a83a7) } + +var fileDescriptor_response_73c9d1794e5a83a7 = []byte{ + // 1399 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdd, 0x6e, 0xdb, 0xc6, + 0x12, 0x3e, 0xb2, 0xf5, 0x3b, 0x92, 0x15, 0x9d, 0xb5, 0x9c, 0xb3, 0xd1, 0x49, 0x8c, 0x40, 0xc8, + 0xc9, 0x71, 0x1d, 0x54, 0x8a, 0x9d, 0xa0, 0x0e, 0x02, 0xe4, 0x42, 0x96, 0xa9, 0x54, 0x8d, 0x2c, + 0xa7, 0x2b, 0x29, 0x29, 0x7a, 0x23, 0xd0, 0xf4, 0x5a, 0x5e, 0x84, 0x22, 0x05, 0x2e, 0xe9, 0x40, + 0xbd, 0x2d, 0xd0, 0xcb, 0xde, 0xf4, 0x45, 0xfa, 0x02, 0x7d, 0x8d, 0x3e, 0x40, 0x9f, 0xa4, 0xd8, + 0xe5, 0x92, 0x4b, 0xca, 0xae, 0x92, 0xab, 0xdc, 0xd8, 0xdc, 0xf9, 0xbe, 0x19, 0xee, 0xcc, 0xce, + 0x7e, 0x1c, 0x41, 0xd5, 0xa3, 0x7c, 0xe1, 0x3a, 0x9c, 0xb6, 0x16, 0x9e, 0xeb, 0xbb, 0x68, 0xe3, + 0xfa, 0xa0, 0xb1, 0x3b, 0x73, 0xdd, 0x99, 0x4d, 0xdb, 0xd2, 0x72, 0x1e, 0x5c, 0xb6, 0x3f, 0x7a, + 0xe6, 0x62, 0x41, 0x3d, 0x1e, 0x72, 0x1a, 0xf7, 0x56, 0x71, 0xd3, 0x59, 0x2a, 0xe8, 0x8e, 0x63, + 0xce, 0x29, 0x5f, 0x98, 0x96, 0x8a, 0xd7, 0xd8, 0xe2, 0xd4, 0xbb, 0x66, 0x7a, 0xe9, 0xb9, 0x81, + 0xcf, 0x9c, 0x59, 0x44, 0xf7, 0x4c, 0x9f, 0xda, 0x6c, 0xce, 0x7c, 0x65, 0xa8, 0x5b, 0xcc, 0xb3, + 0x02, 0xe6, 0x9f, 0x7b, 0xd4, 0xfc, 0x40, 0x3d, 0x65, 0x2d, 0xcf, 0xdd, 0x0b, 0x6a, 0xab, 0x45, + 0xc5, 0xb2, 0x19, 0x75, 0x22, 0x87, 0x6d, 0xcb, 0x75, 0x2e, 0xd9, 0xcc, 0xa3, 0x36, 0x35, 0xa3, + 0x24, 0x1a, 0xf5, 0x4b, 0x33, 0xb0, 0xfd, 0xe9, 0x05, 0xf5, 0xa9, 0xe5, 0xbb, 0x51, 0x14, 0x30, + 0x03, 0xff, 0x4a, 0x3d, 0x57, 0x2d, 0xd7, 0xf1, 0x3d, 0xd3, 0x52, 0x61, 0x9a, 0xbf, 0x94, 0xa0, + 0x48, 0x54, 0x25, 0xd0, 0x53, 0xc8, 0x5a, 0xee, 0x05, 0xc5, 0x99, 0x87, 0x99, 0xbd, 0xf2, 0xe1, + 0xfd, 0x56, 0x98, 0x6e, 0x2b, 0x4a, 0xb7, 0x35, 0xe9, 0x3b, 0xfe, 0xb3, 0xc3, 0x77, 0xa6, 0x1d, + 0x50, 0x22, 0x99, 0xc2, 0x83, 0x39, 0x97, 0x2e, 0xde, 0xf8, 0x07, 0x8f, 0x91, 0xef, 0x31, 0x67, + 0xa6, 0x3c, 0x04, 0x13, 0x35, 0x21, 0x1f, 0xe6, 0x81, 0x37, 0xa5, 0x0f, 0xb4, 0xae, 0x0f, 0x5a, + 0x5d, 0x69, 0x21, 0x0a, 0x41, 0x4f, 0xa0, 0x14, 0x97, 0x13, 0x67, 0x25, 0x6d, 0x4b, 0xd0, 0x86, + 0x91, 0x91, 0x68, 0x1c, 0xfd, 0x0f, 0x0a, 0xaa, 0xd4, 0x38, 0x27, 0xa9, 0x65, 0x41, 0x1d, 0x85, + 0x26, 0x12, 0x61, 0x68, 0x0f, 0x8a, 0xcc, 0xe1, 0xbe, 0xe9, 0x58, 0x14, 0xe7, 0x25, 0xaf, 0x22, + 0x78, 0x7d, 0x65, 0x23, 0x31, 0x2a, 0x02, 0xaa, 0xc3, 0xc2, 0x05, 0x1d, 0x90, 0x84, 0x26, 0x12, + 0x61, 0xe8, 0x31, 0xe4, 0x4c, 0x9b, 0x99, 0x1c, 0x17, 0x25, 0xa9, 0x96, 0x78, 0x6b, 0x47, 0xd8, + 0x49, 0x08, 0xa3, 0xc7, 0x50, 0x12, 0x87, 0x3d, 0x10, 0x87, 0x8d, 0x4b, 0x92, 0x5b, 0x94, 0x01, + 0x03, 0x9b, 0x12, 0x0d, 0xa1, 0x97, 0x50, 0x55, 0x3d, 0x70, 0x1c, 0xf6, 0x00, 0x06, 0x49, 0x46, + 0xb2, 0x40, 0x29, 0x84, 0xac, 0x30, 0xd1, 0x11, 0x6c, 0x85, 0xed, 0x40, 0xc2, 0x76, 0xc0, 0x65, + 0xe9, 0xfa, 0x6f, 0xe9, 0x9a, 0x04, 0x48, 0x9a, 0x87, 0xee, 0x43, 0x36, 0xe0, 0xd4, 0xc3, 0xdb, + 0x7a, 0x5f, 0x13, 0x4e, 0x3d, 0x22, 0xad, 0xe2, 0x1c, 0xc4, 0xff, 0xd7, 0x9e, 0x1b, 0x2c, 0x70, + 0x5d, 0x9f, 0xc3, 0x24, 0x32, 0x12, 0x8d, 0xa3, 0xe7, 0x50, 0x11, 0x7d, 0x36, 0xf2, 0x45, 0x4a, + 0xb3, 0x25, 0xde, 0xd1, 0x65, 0xe9, 0x24, 0xec, 0x24, 0xc5, 0x42, 0x07, 0x50, 0xf4, 0xa8, 0x6d, + 0xfa, 0xcc, 0x75, 0xf0, 0x5d, 0xe9, 0xb1, 0x93, 0x7e, 0x83, 0x02, 0x49, 0x4c, 0x13, 0xc9, 0xda, + 0xee, 0x8c, 0x39, 0x51, 0xdb, 0xe2, 0xff, 0xe8, 0x64, 0x07, 0x49, 0x80, 0xa4, 0x79, 0xa8, 0x07, + 0x68, 0xee, 0x5e, 0xb0, 0xcb, 0x65, 0x72, 0x3f, 0x18, 0x4b, 0xef, 0xbb, 0xc2, 0xfb, 0xf4, 0x06, + 0x4a, 0x6e, 0xf1, 0x40, 0xaf, 0xe0, 0x4e, 0x68, 0x8d, 0x77, 0x89, 0xef, 0xc9, 0x20, 0xdb, 0x3a, + 0x88, 0x4e, 0x60, 0x95, 0x8b, 0x9e, 0x41, 0xc9, 0xa3, 0xdc, 0x0d, 0x3c, 0x8b, 0x72, 0xdc, 0xd0, + 0x39, 0xc7, 0xef, 0x8c, 0x40, 0xa2, 0x79, 0xa2, 0xba, 0xee, 0x42, 0xa4, 0x3f, 0xfa, 0xc8, 0x7c, + 0xeb, 0x0a, 0xff, 0x57, 0x57, 0xf7, 0x2c, 0x61, 0x27, 0x29, 0x96, 0xe8, 0xa9, 0xa8, 0xad, 0x07, + 0xe6, 0x39, 0xb5, 0x39, 0xbe, 0xaf, 0x7b, 0xaa, 0x9f, 0x42, 0xc8, 0x0a, 0x13, 0xed, 0x41, 0xf6, + 0xc2, 0xf4, 0x4d, 0xfc, 0x40, 0x7a, 0xd4, 0x6f, 0x5c, 0xed, 0x8e, 0xb3, 0x24, 0x92, 0x21, 0xea, + 0xa1, 0x6e, 0x59, 0x57, 0x89, 0x0b, 0xde, 0xd5, 0xf5, 0x18, 0xa5, 0x21, 0xb2, 0xca, 0xfd, 0x2e, + 0x5b, 0xac, 0xd4, 0xb6, 0x9b, 0x7f, 0x66, 0x00, 0x1d, 0x9b, 0xbe, 0x75, 0xf5, 0xde, 0x63, 0x3e, + 0xfd, 0xa2, 0x92, 0xf4, 0x14, 0xb2, 0x9c, 0xfd, 0x44, 0x95, 0x20, 0x7d, 0xe2, 0x1d, 0x82, 0x89, + 0xf6, 0xe5, 0x11, 0xca, 0x1d, 0x72, 0x9c, 0x7d, 0xb8, 0x19, 0xa9, 0x49, 0xdc, 0x79, 0x1a, 0x6e, + 0xfe, 0x9e, 0x57, 0x89, 0x7d, 0x1f, 0x50, 0x6f, 0xf9, 0x45, 0x13, 0x7b, 0x0e, 0x79, 0x73, 0xee, + 0x06, 0xb1, 0xd6, 0xae, 0x7f, 0x8b, 0xe2, 0xc6, 0xe5, 0xc8, 0x7e, 0x76, 0x39, 0xbe, 0x06, 0x88, + 0xf5, 0x98, 0xe3, 0x9c, 0xac, 0xc7, 0x8a, 0x60, 0x27, 0x08, 0xe8, 0xff, 0x50, 0x54, 0x3d, 0xc0, + 0x71, 0x5e, 0x92, 0x53, 0x92, 0x1d, 0x83, 0xa2, 0xcc, 0x51, 0x53, 0x72, 0x5c, 0xd0, 0x65, 0x8e, + 0x45, 0x5b, 0xc3, 0x22, 0xa8, 0x52, 0x66, 0xa1, 0xc8, 0x9b, 0xab, 0xb2, 0x1d, 0x83, 0x68, 0x1f, + 0x0a, 0x52, 0x98, 0x29, 0xc7, 0x25, 0xc9, 0xbb, 0xa9, 0xdc, 0x11, 0x01, 0xed, 0x01, 0xc4, 0x02, + 0xcd, 0x31, 0x48, 0xba, 0x16, 0xef, 0x04, 0x86, 0x0c, 0x40, 0xa1, 0xb2, 0xbe, 0x67, 0xfe, 0xd5, + 0x28, 0xca, 0xae, 0x2c, 0x3d, 0x76, 0xb4, 0x0c, 0x27, 0x50, 0x72, 0x8b, 0x03, 0xda, 0x85, 0x9c, + 0x50, 0x54, 0x8e, 0x91, 0x7e, 0x97, 0x14, 0xe4, 0xd0, 0x2c, 0x2a, 0x1d, 0x2b, 0x2e, 0xc7, 0xdb, + 0xba, 0xd2, 0x5a, 0x6f, 0x12, 0x04, 0xf4, 0x02, 0xaa, 0x09, 0xb5, 0x65, 0x94, 0xe3, 0xba, 0x4e, + 0x39, 0xa5, 0x73, 0x2b, 0x3c, 0xf4, 0x08, 0x0a, 0xe1, 0xc7, 0x98, 0xe3, 0x1d, 0xe9, 0x92, 0xfc, + 0x4e, 0x47, 0x50, 0xac, 0x11, 0x77, 0x25, 0x65, 0x9d, 0x46, 0x88, 0xaf, 0x74, 0x30, 0x9f, 0x9b, + 0xde, 0x52, 0xc9, 0x75, 0x78, 0xe4, 0xa1, 0x89, 0x44, 0x98, 0xd4, 0x02, 0xd4, 0xfc, 0x23, 0x0f, + 0xb5, 0x13, 0xc6, 0x2d, 0xf7, 0x9a, 0x7a, 0x5f, 0xf4, 0xc2, 0xbc, 0x82, 0xac, 0xbf, 0x5c, 0x84, + 0x4a, 0x50, 0x3d, 0xfc, 0x4a, 0x6c, 0x71, 0x75, 0x1f, 0x37, 0x0c, 0xe3, 0xe5, 0x82, 0x12, 0xe9, + 0x96, 0x1c, 0x45, 0xb2, 0x6b, 0x46, 0x91, 0x54, 0x5b, 0xe7, 0xd6, 0xb7, 0x75, 0x62, 0x18, 0xc9, + 0xaf, 0x19, 0x46, 0x9e, 0x24, 0x87, 0x8c, 0x82, 0xfe, 0x52, 0x93, 0xc8, 0xb8, 0x7e, 0xd2, 0x28, + 0x7e, 0xf6, 0xa4, 0x91, 0xbc, 0xbb, 0xa5, 0x75, 0x77, 0x37, 0xad, 0x09, 0xf0, 0x29, 0x4d, 0x38, + 0x82, 0x2d, 0x39, 0xbb, 0x9e, 0xa8, 0xd1, 0x35, 0x39, 0xc1, 0xf4, 0x92, 0x00, 0x49, 0xf3, 0xc4, + 0x86, 0xe4, 0x6d, 0xed, 0xb9, 0x9e, 0x1a, 0x39, 0xd2, 0x1b, 0x8a, 0xc0, 0xe6, 0x5f, 0x19, 0xa8, + 0xdf, 0x76, 0x76, 0xa8, 0x0c, 0x85, 0xc9, 0xf0, 0xcd, 0xf0, 0xec, 0xfd, 0xb0, 0xf6, 0x2f, 0x54, + 0x81, 0x62, 0x7f, 0x38, 0x1a, 0x77, 0x86, 0x5d, 0xa3, 0x96, 0x11, 0x50, 0x77, 0x30, 0x19, 0x8d, + 0x0d, 0x52, 0xdb, 0x10, 0x0b, 0x72, 0x36, 0x19, 0xf7, 0x87, 0xaf, 0x6b, 0x9b, 0xa8, 0x0a, 0x40, + 0x3a, 0x63, 0x63, 0x3a, 0xe8, 0x9f, 0xf6, 0xc7, 0xb5, 0x2c, 0xda, 0x86, 0x3b, 0xdd, 0x3e, 0xe9, + 0x4e, 0xfa, 0xe3, 0xe9, 0x31, 0x31, 0x3a, 0x6f, 0x0c, 0x52, 0xcb, 0x89, 0x60, 0x23, 0x83, 0xbc, + 0xeb, 0x77, 0x8d, 0x51, 0x2d, 0x2f, 0x5c, 0x86, 0x9d, 0x53, 0x63, 0xf4, 0xb6, 0x23, 0xd6, 0x15, + 0x84, 0xa0, 0xda, 0xeb, 0x4c, 0x06, 0xe3, 0xe9, 0x89, 0x31, 0x36, 0xba, 0xe3, 0x33, 0x52, 0xdb, + 0x6a, 0x66, 0x8b, 0x85, 0x5a, 0x79, 0x3f, 0x7b, 0x6a, 0x8c, 0xbe, 0xdd, 0x2f, 0x8b, 0xbf, 0xd3, + 0xee, 0xd9, 0xb0, 0xd7, 0x7f, 0xbd, 0x5f, 0xed, 0x0d, 0x26, 0x3f, 0x4c, 0x4f, 0x8e, 0x89, 0xd1, + 0x23, 0x02, 0x2c, 0xca, 0xf5, 0xe8, 0xe4, 0xcd, 0x7e, 0x39, 0x7c, 0x32, 0xc8, 0x3b, 0x83, 0xc8, + 0xfb, 0xb3, 0xd3, 0xfc, 0x39, 0x03, 0x95, 0xe4, 0x54, 0x80, 0x8e, 0xa0, 0x10, 0xce, 0x05, 0x1c, + 0x67, 0xe4, 0x49, 0x3c, 0x58, 0x1d, 0x1c, 0xd4, 0x82, 0x1b, 0x8e, 0x2f, 0xee, 0xa3, 0x62, 0x37, + 0x5e, 0x46, 0x81, 0x42, 0x00, 0xd5, 0x60, 0xf3, 0x03, 0x5d, 0xca, 0x3b, 0x58, 0x22, 0xe2, 0x11, + 0xd5, 0x21, 0x77, 0x2d, 0x6e, 0x90, 0xbc, 0x65, 0x25, 0x12, 0x2e, 0x5e, 0x6e, 0xbc, 0xc8, 0x34, + 0x7f, 0xcb, 0x40, 0x35, 0x3d, 0x63, 0xa0, 0x6f, 0x20, 0x6f, 0x87, 0x73, 0x48, 0xb8, 0x8d, 0xdd, + 0x9b, 0x73, 0x48, 0x2b, 0xfc, 0x17, 0xee, 0x43, 0xb1, 0x1b, 0x7d, 0x28, 0x27, 0xcc, 0xb7, 0xec, + 0xe2, 0x51, 0x72, 0x17, 0xe5, 0xc3, 0xaa, 0x9a, 0xa7, 0x98, 0x33, 0x1b, 0x30, 0xee, 0x27, 0x76, + 0x75, 0xfc, 0x6b, 0x06, 0x8e, 0x2c, 0x77, 0xde, 0xf2, 0xa9, 0x63, 0xc9, 0x5f, 0x53, 0xae, 0x6d, + 0x7a, 0x8c, 0xb7, 0xf8, 0x82, 0x5a, 0xec, 0x92, 0x59, 0x72, 0xc6, 0x6c, 0x99, 0x0b, 0x26, 0x42, + 0x44, 0xbf, 0xe1, 0xe6, 0xa6, 0x63, 0xce, 0xe8, 0xf1, 0x56, 0xd4, 0x37, 0x6f, 0x85, 0x84, 0xfc, + 0x78, 0x32, 0x63, 0xfe, 0x55, 0x70, 0xde, 0xb2, 0xdc, 0x79, 0x5b, 0x85, 0x99, 0x53, 0x7e, 0xd5, + 0x4e, 0x85, 0x6a, 0x87, 0x13, 0x5c, 0x7b, 0xe6, 0xb6, 0xcd, 0x05, 0x6b, 0x5f, 0x1f, 0xb4, 0x55, + 0xd0, 0x69, 0x18, 0xf4, 0x3c, 0x2f, 0xf5, 0xe8, 0xd9, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe2, + 0x7d, 0x7d, 0x6f, 0x91, 0x0e, 0x00, 0x00, }