From eb95443d463284f2728326ff75565fd7d9f3e4d4 Mon Sep 17 00:00:00 2001 From: Yu Xia Date: Thu, 13 Jan 2022 10:49:45 -0800 Subject: [PATCH] Add admin api to list all cluster information (#2377) * Add admin api to list all cluster information --- api/adminservice/v1/request_response.pb.go | 968 ++++++++++++++---- api/adminservice/v1/service.pb.go | 150 ++- api/adminservicemock/v1/service.pb.mock.go | 35 + client/admin/client.go | 14 + client/admin/metricClient.go | 18 + client/admin/retryableClient.go | 17 + common/metrics/defs.go | 6 + .../adminservice/v1/request_response.proto | 11 + .../server/api/adminservice/v1/service.proto | 4 + service/frontend/adminHandler.go | 45 +- service/frontend/adminHandler_test.go | 21 + tools/cli/admin.go | 15 + tools/cli/adminClusterCommands.go | 28 + 13 files changed, 1069 insertions(+), 263 deletions(-) diff --git a/api/adminservice/v1/request_response.pb.go b/api/adminservice/v1/request_response.pb.go index b0c5b99bacb..8a9a9bd9004 100644 --- a/api/adminservice/v1/request_response.pb.go +++ b/api/adminservice/v1/request_response.pb.go @@ -2206,6 +2206,108 @@ func (m *DescribeClusterResponse) GetIsGlobalNamespaceEnabled() bool { return false } +type ListClustersRequest struct { + PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` + NextPageToken []byte `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` +} + +func (m *ListClustersRequest) Reset() { *m = ListClustersRequest{} } +func (*ListClustersRequest) ProtoMessage() {} +func (*ListClustersRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{37} +} +func (m *ListClustersRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ListClustersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ListClustersRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ListClustersRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListClustersRequest.Merge(m, src) +} +func (m *ListClustersRequest) XXX_Size() int { + return m.Size() +} +func (m *ListClustersRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ListClustersRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ListClustersRequest proto.InternalMessageInfo + +func (m *ListClustersRequest) GetPageSize() int32 { + if m != nil { + return m.PageSize + } + return 0 +} + +func (m *ListClustersRequest) GetNextPageToken() []byte { + if m != nil { + return m.NextPageToken + } + return nil +} + +type ListClustersResponse struct { + Clusters []*v11.ClusterMetadata `protobuf:"bytes,1,rep,name=clusters,proto3" json:"clusters,omitempty"` + NextPageToken []byte `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` +} + +func (m *ListClustersResponse) Reset() { *m = ListClustersResponse{} } +func (*ListClustersResponse) ProtoMessage() {} +func (*ListClustersResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_cc07c1a2abe7cb51, []int{38} +} +func (m *ListClustersResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ListClustersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ListClustersResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ListClustersResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ListClustersResponse.Merge(m, src) +} +func (m *ListClustersResponse) XXX_Size() int { + return m.Size() +} +func (m *ListClustersResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ListClustersResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ListClustersResponse proto.InternalMessageInfo + +func (m *ListClustersResponse) GetClusters() []*v11.ClusterMetadata { + if m != nil { + return m.Clusters + } + return nil +} + +func (m *ListClustersResponse) GetNextPageToken() []byte { + if m != nil { + return m.NextPageToken + } + return nil +} + type AddOrUpdateRemoteClusterRequest struct { FrontendAddress string `protobuf:"bytes,1,opt,name=frontend_address,json=frontendAddress,proto3" json:"frontend_address,omitempty"` EnableRemoteClusterConnection bool `protobuf:"varint,2,opt,name=enable_remote_cluster_connection,json=enableRemoteClusterConnection,proto3" json:"enable_remote_cluster_connection,omitempty"` @@ -2214,7 +2316,7 @@ type AddOrUpdateRemoteClusterRequest struct { func (m *AddOrUpdateRemoteClusterRequest) Reset() { *m = AddOrUpdateRemoteClusterRequest{} } func (*AddOrUpdateRemoteClusterRequest) ProtoMessage() {} func (*AddOrUpdateRemoteClusterRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{37} + return fileDescriptor_cc07c1a2abe7cb51, []int{39} } func (m *AddOrUpdateRemoteClusterRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2263,7 +2365,7 @@ type AddOrUpdateRemoteClusterResponse struct { func (m *AddOrUpdateRemoteClusterResponse) Reset() { *m = AddOrUpdateRemoteClusterResponse{} } func (*AddOrUpdateRemoteClusterResponse) ProtoMessage() {} func (*AddOrUpdateRemoteClusterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{38} + return fileDescriptor_cc07c1a2abe7cb51, []int{40} } func (m *AddOrUpdateRemoteClusterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2299,7 +2401,7 @@ type RemoveRemoteClusterRequest struct { func (m *RemoveRemoteClusterRequest) Reset() { *m = RemoveRemoteClusterRequest{} } func (*RemoveRemoteClusterRequest) ProtoMessage() {} func (*RemoveRemoteClusterRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{39} + return fileDescriptor_cc07c1a2abe7cb51, []int{41} } func (m *RemoveRemoteClusterRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2341,7 +2443,7 @@ type RemoveRemoteClusterResponse struct { func (m *RemoveRemoteClusterResponse) Reset() { *m = RemoveRemoteClusterResponse{} } func (*RemoveRemoteClusterResponse) ProtoMessage() {} func (*RemoveRemoteClusterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{40} + return fileDescriptor_cc07c1a2abe7cb51, []int{42} } func (m *RemoveRemoteClusterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2387,7 +2489,7 @@ type ListClusterMembersRequest struct { func (m *ListClusterMembersRequest) Reset() { *m = ListClusterMembersRequest{} } func (*ListClusterMembersRequest) ProtoMessage() {} func (*ListClusterMembersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{41} + return fileDescriptor_cc07c1a2abe7cb51, []int{43} } func (m *ListClusterMembersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2473,7 +2575,7 @@ type ListClusterMembersResponse struct { func (m *ListClusterMembersResponse) Reset() { *m = ListClusterMembersResponse{} } func (*ListClusterMembersResponse) ProtoMessage() {} func (*ListClusterMembersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{42} + return fileDescriptor_cc07c1a2abe7cb51, []int{44} } func (m *ListClusterMembersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2528,7 +2630,7 @@ type GetDLQMessagesRequest struct { func (m *GetDLQMessagesRequest) Reset() { *m = GetDLQMessagesRequest{} } func (*GetDLQMessagesRequest) ProtoMessage() {} func (*GetDLQMessagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{43} + return fileDescriptor_cc07c1a2abe7cb51, []int{45} } func (m *GetDLQMessagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2608,7 +2710,7 @@ type GetDLQMessagesResponse struct { func (m *GetDLQMessagesResponse) Reset() { *m = GetDLQMessagesResponse{} } func (*GetDLQMessagesResponse) ProtoMessage() {} func (*GetDLQMessagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{44} + return fileDescriptor_cc07c1a2abe7cb51, []int{46} } func (m *GetDLQMessagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2668,7 +2770,7 @@ type PurgeDLQMessagesRequest struct { func (m *PurgeDLQMessagesRequest) Reset() { *m = PurgeDLQMessagesRequest{} } func (*PurgeDLQMessagesRequest) ProtoMessage() {} func (*PurgeDLQMessagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{45} + return fileDescriptor_cc07c1a2abe7cb51, []int{47} } func (m *PurgeDLQMessagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2731,7 +2833,7 @@ type PurgeDLQMessagesResponse struct { func (m *PurgeDLQMessagesResponse) Reset() { *m = PurgeDLQMessagesResponse{} } func (*PurgeDLQMessagesResponse) ProtoMessage() {} func (*PurgeDLQMessagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{46} + return fileDescriptor_cc07c1a2abe7cb51, []int{48} } func (m *PurgeDLQMessagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2772,7 +2874,7 @@ type MergeDLQMessagesRequest struct { func (m *MergeDLQMessagesRequest) Reset() { *m = MergeDLQMessagesRequest{} } func (*MergeDLQMessagesRequest) ProtoMessage() {} func (*MergeDLQMessagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{47} + return fileDescriptor_cc07c1a2abe7cb51, []int{49} } func (m *MergeDLQMessagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2850,7 +2952,7 @@ type MergeDLQMessagesResponse struct { func (m *MergeDLQMessagesResponse) Reset() { *m = MergeDLQMessagesResponse{} } func (*MergeDLQMessagesResponse) ProtoMessage() {} func (*MergeDLQMessagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{48} + return fileDescriptor_cc07c1a2abe7cb51, []int{50} } func (m *MergeDLQMessagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2894,7 +2996,7 @@ type RefreshWorkflowTasksRequest struct { func (m *RefreshWorkflowTasksRequest) Reset() { *m = RefreshWorkflowTasksRequest{} } func (*RefreshWorkflowTasksRequest) ProtoMessage() {} func (*RefreshWorkflowTasksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{49} + return fileDescriptor_cc07c1a2abe7cb51, []int{51} } func (m *RefreshWorkflowTasksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2943,7 +3045,7 @@ type RefreshWorkflowTasksResponse struct { func (m *RefreshWorkflowTasksResponse) Reset() { *m = RefreshWorkflowTasksResponse{} } func (*RefreshWorkflowTasksResponse) ProtoMessage() {} func (*RefreshWorkflowTasksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{50} + return fileDescriptor_cc07c1a2abe7cb51, []int{52} } func (m *RefreshWorkflowTasksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2986,7 +3088,7 @@ type ResendReplicationTasksRequest struct { func (m *ResendReplicationTasksRequest) Reset() { *m = ResendReplicationTasksRequest{} } func (*ResendReplicationTasksRequest) ProtoMessage() {} func (*ResendReplicationTasksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{51} + return fileDescriptor_cc07c1a2abe7cb51, []int{53} } func (m *ResendReplicationTasksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3077,7 +3179,7 @@ type ResendReplicationTasksResponse struct { func (m *ResendReplicationTasksResponse) Reset() { *m = ResendReplicationTasksResponse{} } func (*ResendReplicationTasksResponse) ProtoMessage() {} func (*ResendReplicationTasksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{52} + return fileDescriptor_cc07c1a2abe7cb51, []int{54} } func (m *ResendReplicationTasksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3118,7 +3220,7 @@ type GetTaskQueueTasksRequest struct { func (m *GetTaskQueueTasksRequest) Reset() { *m = GetTaskQueueTasksRequest{} } func (*GetTaskQueueTasksRequest) ProtoMessage() {} func (*GetTaskQueueTasksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{53} + return fileDescriptor_cc07c1a2abe7cb51, []int{55} } func (m *GetTaskQueueTasksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3196,7 +3298,7 @@ type GetTaskQueueTasksResponse struct { func (m *GetTaskQueueTasksResponse) Reset() { *m = GetTaskQueueTasksResponse{} } func (*GetTaskQueueTasksResponse) ProtoMessage() {} func (*GetTaskQueueTasksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cc07c1a2abe7cb51, []int{54} + return fileDescriptor_cc07c1a2abe7cb51, []int{56} } func (m *GetTaskQueueTasksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3276,6 +3378,8 @@ func init() { proto.RegisterType((*DescribeClusterRequest)(nil), "temporal.server.api.adminservice.v1.DescribeClusterRequest") proto.RegisterType((*DescribeClusterResponse)(nil), "temporal.server.api.adminservice.v1.DescribeClusterResponse") proto.RegisterMapType((map[string]string)(nil), "temporal.server.api.adminservice.v1.DescribeClusterResponse.SupportedClientsEntry") + proto.RegisterType((*ListClustersRequest)(nil), "temporal.server.api.adminservice.v1.ListClustersRequest") + proto.RegisterType((*ListClustersResponse)(nil), "temporal.server.api.adminservice.v1.ListClustersResponse") proto.RegisterType((*AddOrUpdateRemoteClusterRequest)(nil), "temporal.server.api.adminservice.v1.AddOrUpdateRemoteClusterRequest") proto.RegisterType((*AddOrUpdateRemoteClusterResponse)(nil), "temporal.server.api.adminservice.v1.AddOrUpdateRemoteClusterResponse") proto.RegisterType((*RemoveRemoteClusterRequest)(nil), "temporal.server.api.adminservice.v1.RemoveRemoteClusterRequest") @@ -3301,194 +3405,197 @@ func init() { } var fileDescriptor_cc07c1a2abe7cb51 = []byte{ - // 2980 bytes of a gzipped FileDescriptorProto + // 3040 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcd, 0x6f, 0x1b, 0xc7, - 0x15, 0xf7, 0x92, 0xa2, 0x44, 0x3e, 0x49, 0x94, 0xb4, 0xb1, 0x2c, 0x9a, 0xb2, 0x68, 0x85, 0x71, - 0x1c, 0xdb, 0x4d, 0xa8, 0x5a, 0x69, 0x13, 0x37, 0x6e, 0x10, 0xc8, 0xb2, 0xa3, 0x08, 0xb5, 0xd2, - 0x64, 0xe9, 0xd8, 0x45, 0x81, 0x60, 0x33, 0xdc, 0x1d, 0x51, 0x0b, 0xef, 0x57, 0x76, 0x86, 0xb4, - 0x14, 0xa0, 0xdf, 0xe9, 0xc7, 0xd1, 0x40, 0x51, 0x20, 0xc8, 0x5f, 0xd0, 0x1e, 0x8a, 0xde, 0x7a, - 0x2a, 0x50, 0x14, 0xbd, 0xe4, 0x18, 0xf4, 0x14, 0xb4, 0x05, 0xd2, 0x28, 0x97, 0xf6, 0x16, 0xa0, - 0x40, 0xcf, 0xc5, 0x7c, 0x2d, 0x77, 0xc9, 0x25, 0x45, 0xc5, 0x1f, 0x87, 0xdc, 0xb8, 0x6f, 0xde, - 0x7b, 0xf3, 0xde, 0x6f, 0xde, 0xbc, 0x79, 0xf3, 0x86, 0xf0, 0x12, 0xc5, 0x5e, 0x18, 0x44, 0xc8, - 0x5d, 0x23, 0x38, 0xea, 0xe2, 0x68, 0x0d, 0x85, 0xce, 0x1a, 0xb2, 0x3d, 0xc7, 0x67, 0xdf, 0x8e, - 0x85, 0xd7, 0xba, 0x97, 0xd7, 0x22, 0xfc, 0x6e, 0x07, 0x13, 0x6a, 0x46, 0x98, 0x84, 0x81, 0x4f, - 0x70, 0x23, 0x8c, 0x02, 0x1a, 0xe8, 0x4f, 0x29, 0xd9, 0x86, 0x90, 0x6d, 0xa0, 0xd0, 0x69, 0x24, - 0x65, 0x1b, 0xdd, 0xcb, 0xd5, 0xb3, 0xed, 0x20, 0x68, 0xbb, 0x78, 0x8d, 0x8b, 0xb4, 0x3a, 0xbb, - 0x6b, 0xd4, 0xf1, 0x30, 0xa1, 0xc8, 0x0b, 0x85, 0x96, 0x6a, 0xad, 0x9f, 0xc1, 0xee, 0x44, 0x88, - 0x3a, 0x81, 0x2f, 0xc7, 0x9f, 0xb4, 0x71, 0x88, 0x7d, 0x1b, 0xfb, 0x96, 0x83, 0xc9, 0x5a, 0x3b, - 0x68, 0x07, 0x9c, 0xce, 0x7f, 0x49, 0x96, 0x7a, 0xec, 0x04, 0xb3, 0x1e, 0xfb, 0x1d, 0x8f, 0x30, - 0xb3, 0xad, 0xc0, 0xf3, 0x62, 0x35, 0x4f, 0x67, 0xf3, 0xf8, 0xc8, 0xc3, 0x24, 0x44, 0x96, 0xf4, - 0xa9, 0x7a, 0x3e, 0x9b, 0x8d, 0x22, 0x72, 0xd7, 0x7c, 0xb7, 0x83, 0x3b, 0x8a, 0xef, 0x5c, 0x8a, - 0x4f, 0xcc, 0xc4, 0x18, 0x3d, 0x4c, 0x08, 0x6a, 0xe3, 0xcc, 0x49, 0xbb, 0x38, 0x22, 0x4e, 0x16, - 0x5b, 0x7a, 0xd2, 0x7b, 0x41, 0x74, 0x77, 0xd7, 0x0d, 0xee, 0x0d, 0xf2, 0x5d, 0x4c, 0xf1, 0x45, - 0x38, 0x74, 0x1d, 0x8b, 0x43, 0x35, 0xc8, 0xfa, 0x4c, 0x8a, 0x35, 0xf6, 0x72, 0x90, 0xf1, 0xd9, - 0xac, 0x00, 0xb0, 0xdc, 0x0e, 0xa1, 0x38, 0x1a, 0x65, 0x41, 0x82, 0x3b, 0x1b, 0xf0, 0x4b, 0xa3, - 0x59, 0xc5, 0x0c, 0x03, 0xd6, 0x66, 0xf1, 0x32, 0xf0, 0x47, 0x59, 0xbb, 0xe7, 0x10, 0x1a, 0x44, - 0x07, 0x83, 0xd6, 0x36, 0xb2, 0xb8, 0x47, 0x60, 0xf1, 0xf5, 0x2c, 0xfe, 0x91, 0x30, 0x3f, 0x9f, - 0x25, 0x11, 0xb2, 0x75, 0x26, 0x14, 0xfb, 0x62, 0x0e, 0xbc, 0x8f, 0xad, 0x0e, 0x13, 0x27, 0xc7, - 0x10, 0x8a, 0xad, 0x54, 0x42, 0xaf, 0x8c, 0x21, 0xa4, 0x22, 0xc7, 0xf4, 0x3a, 0x14, 0xb5, 0x5c, - 0x6c, 0x12, 0x8a, 0xe8, 0x48, 0x30, 0xfa, 0x14, 0x30, 0xa4, 0xe5, 0x84, 0xf5, 0xf7, 0x35, 0x58, - 0xbe, 0x8e, 0x89, 0x15, 0x39, 0x2d, 0xbc, 0x23, 0xf4, 0x35, 0x99, 0x3a, 0x43, 0x24, 0x03, 0xfd, - 0x0c, 0x94, 0x62, 0x23, 0x2b, 0xda, 0xaa, 0x76, 0xa1, 0x64, 0xf4, 0x08, 0xfa, 0x16, 0x94, 0x62, - 0xbf, 0x2b, 0xb9, 0x55, 0xed, 0xc2, 0xf4, 0xfa, 0xc5, 0xd8, 0x02, 0x9e, 0x28, 0x64, 0xb0, 0x74, - 0x2f, 0x37, 0xee, 0x48, 0xb3, 0x6f, 0x28, 0x01, 0xa3, 0x27, 0x5b, 0xff, 0x63, 0x0e, 0xce, 0x64, - 0x9b, 0x21, 0x72, 0x91, 0x7e, 0x1a, 0x8a, 0x64, 0x0f, 0x45, 0xb6, 0xe9, 0xd8, 0xd2, 0x8c, 0x29, - 0xfe, 0xbd, 0x6d, 0xeb, 0x4f, 0xc2, 0x8c, 0x8c, 0x0d, 0x13, 0xd9, 0x76, 0xc4, 0xed, 0x28, 0x19, - 0xd3, 0x92, 0xb6, 0x61, 0xdb, 0x91, 0xbe, 0x07, 0x4f, 0x58, 0xc8, 0xda, 0xc3, 0x69, 0xc8, 0x2a, - 0x79, 0x6e, 0xf1, 0x95, 0x46, 0x56, 0x86, 0x4b, 0x60, 0x96, 0xb4, 0x3e, 0x65, 0xdc, 0x02, 0x57, - 0x9a, 0x24, 0xe9, 0x3e, 0x9c, 0xb2, 0x11, 0x45, 0x2d, 0x44, 0xfa, 0x27, 0x9b, 0x78, 0xc0, 0xc9, - 0x4e, 0x2a, 0xbd, 0x49, 0x6a, 0xfd, 0x6f, 0x1a, 0x54, 0x15, 0x70, 0xaf, 0x09, 0x8f, 0x5f, 0x0b, - 0x08, 0x55, 0xcb, 0xc7, 0xb0, 0x09, 0x08, 0xe5, 0xc0, 0x60, 0x42, 0x24, 0x74, 0xd3, 0x8c, 0xb6, - 0x21, 0x48, 0x29, 0x64, 0x19, 0x74, 0x85, 0x1e, 0xb2, 0xa9, 0xc5, 0xcf, 0xf7, 0x2f, 0xfe, 0xf7, - 0x40, 0x8f, 0x43, 0xb1, 0x17, 0x05, 0x13, 0xc7, 0x8d, 0x82, 0x85, 0x7b, 0xfd, 0xa4, 0xfa, 0xfd, - 0x5c, 0x2f, 0x28, 0x53, 0x4e, 0xc9, 0x60, 0x78, 0x0a, 0x66, 0xb9, 0x89, 0xc4, 0xf4, 0x3b, 0x5e, - 0x0b, 0x47, 0xdc, 0xad, 0x82, 0x31, 0x23, 0x88, 0xaf, 0x73, 0x9a, 0xbe, 0x0c, 0x25, 0xe5, 0x17, - 0xa9, 0xe4, 0x56, 0xf3, 0x17, 0x0a, 0x46, 0x51, 0x3a, 0x46, 0xf4, 0xb7, 0x61, 0x2e, 0x76, 0xc4, - 0xe4, 0xab, 0x28, 0x83, 0xe1, 0x1b, 0x99, 0xeb, 0xd3, 0x3b, 0x3f, 0xba, 0x97, 0x1b, 0xaf, 0xab, - 0x8f, 0x4d, 0x26, 0xb7, 0xed, 0xef, 0x06, 0x46, 0xd9, 0x4f, 0xd1, 0xf4, 0x17, 0x60, 0x49, 0xcc, - 0x6d, 0x05, 0x3e, 0x8d, 0x02, 0xd7, 0xc5, 0x11, 0x8f, 0x82, 0x0e, 0xe1, 0xf8, 0x94, 0x8c, 0x45, - 0x3e, 0xbc, 0x19, 0x8f, 0x36, 0xf9, 0xa0, 0x5e, 0x81, 0x29, 0xb5, 0x52, 0x05, 0x11, 0xe4, 0xf2, - 0xb3, 0xde, 0x80, 0x85, 0x4d, 0x37, 0x20, 0xb8, 0xc9, 0xe4, 0xd4, 0xea, 0xf6, 0x6f, 0x8a, 0xde, - 0xd2, 0xd5, 0x4f, 0x82, 0x9e, 0xe4, 0x17, 0xc0, 0xd5, 0x9f, 0x85, 0xb9, 0x2d, 0x4c, 0xc7, 0xd5, - 0xf1, 0x0e, 0xcc, 0xf7, 0xb8, 0x25, 0xf4, 0x37, 0x01, 0x24, 0xbb, 0xbf, 0x1b, 0x70, 0x81, 0xe9, - 0xf5, 0xe7, 0xc6, 0x89, 0x69, 0xae, 0x86, 0x83, 0x25, 0x96, 0x85, 0xfd, 0xac, 0xff, 0x49, 0x83, - 0xca, 0x4d, 0x87, 0xd0, 0x5b, 0x11, 0xf2, 0xc9, 0x2e, 0x8e, 0x6e, 0xb1, 0xcc, 0x74, 0xb4, 0x65, - 0x7a, 0x0d, 0xa6, 0x3d, 0xc7, 0x37, 0xf9, 0x79, 0x2d, 0xc3, 0x36, 0x6f, 0x94, 0x3c, 0xc7, 0x67, - 0x0a, 0xe4, 0x38, 0xda, 0x8f, 0xc7, 0x27, 0xe4, 0x38, 0xda, 0x97, 0xe3, 0x2b, 0x00, 0x2d, 0x44, - 0xad, 0x3d, 0x93, 0x38, 0xef, 0x61, 0x0e, 0x75, 0xc1, 0x28, 0x71, 0x4a, 0xd3, 0x79, 0x0f, 0xeb, - 0xe7, 0x61, 0xce, 0xc7, 0xfb, 0xd4, 0x0c, 0x51, 0x1b, 0x9b, 0x34, 0xb8, 0x8b, 0xfd, 0xca, 0xe4, - 0xaa, 0x76, 0x61, 0xc6, 0x98, 0x65, 0xe4, 0x37, 0x50, 0x1b, 0xdf, 0x62, 0x44, 0x96, 0x3c, 0x4f, - 0x67, 0x98, 0x2f, 0xa1, 0x7a, 0x05, 0x0a, 0x3c, 0xd3, 0x56, 0xb4, 0xd5, 0x7c, 0x7a, 0x4b, 0x0c, - 0x2f, 0xa4, 0x1a, 0x4c, 0x85, 0x21, 0xe4, 0xb2, 0xcc, 0xc8, 0x65, 0x99, 0xf1, 0x57, 0x0d, 0xaa, - 0xcc, 0x8c, 0xdb, 0x0e, 0x71, 0x5a, 0x8e, 0xeb, 0xd0, 0x83, 0x71, 0x71, 0x5c, 0x01, 0x88, 0x30, - 0xb2, 0x4d, 0x17, 0x77, 0xb1, 0xab, 0x60, 0x64, 0x94, 0x9b, 0x8c, 0xa0, 0x9f, 0x83, 0x32, 0x83, - 0x31, 0xc1, 0x22, 0x90, 0x9c, 0xf1, 0xd0, 0xbe, 0x11, 0x73, 0x3d, 0x24, 0x30, 0x7f, 0xa1, 0xc1, - 0x72, 0xa6, 0x17, 0x8f, 0x1b, 0xce, 0xff, 0x6a, 0xb0, 0xc8, 0x57, 0xd5, 0xf1, 0xc6, 0x8f, 0xc8, - 0xab, 0x50, 0xe4, 0x11, 0xe9, 0x78, 0x58, 0x1e, 0x84, 0xd5, 0x86, 0x28, 0x79, 0x1b, 0xaa, 0xe4, - 0x6d, 0xdc, 0x52, 0x35, 0xf1, 0xb5, 0x89, 0xfb, 0x9f, 0x9e, 0xd5, 0x8c, 0x29, 0x16, 0xb0, 0x8e, - 0x87, 0xb9, 0x30, 0x0b, 0x57, 0x26, 0x9c, 0x1f, 0x5b, 0x18, 0xed, 0x73, 0xe1, 0x34, 0xfc, 0x13, - 0x63, 0xc0, 0x5f, 0xc8, 0xf2, 0xfa, 0x27, 0x1a, 0x9c, 0xea, 0xf7, 0xfa, 0x71, 0x23, 0xff, 0x67, - 0x19, 0x02, 0x46, 0xaf, 0x18, 0x7b, 0x44, 0x19, 0x21, 0x3f, 0x3a, 0x23, 0x7c, 0x69, 0x14, 0x7f, - 0xa9, 0xc1, 0x99, 0x6c, 0x0f, 0x1e, 0x37, 0x96, 0x1f, 0xe4, 0x60, 0x82, 0xc9, 0xb1, 0x12, 0xa0, - 0x77, 0xd4, 0xc5, 0xd5, 0xd3, 0x74, 0x4c, 0xdb, 0xb6, 0xf5, 0xb3, 0x30, 0x1d, 0x9f, 0xe4, 0x12, - 0xbc, 0x92, 0x01, 0x8a, 0xb4, 0x6d, 0xeb, 0x8b, 0x30, 0x19, 0x75, 0x7c, 0x05, 0x5c, 0xc9, 0x28, - 0x44, 0x1d, 0x7f, 0xdb, 0xd6, 0x97, 0x60, 0x2a, 0x9d, 0x62, 0x27, 0xa9, 0x40, 0x73, 0x13, 0x4a, - 0x7c, 0x80, 0x1e, 0x84, 0x22, 0x23, 0x94, 0xd7, 0xcf, 0x67, 0x7a, 0xca, 0xab, 0x7f, 0xe5, 0xe2, - 0xad, 0x83, 0x10, 0x1b, 0x45, 0x2a, 0x7f, 0xe9, 0x2f, 0x43, 0x69, 0xd7, 0x89, 0xb0, 0xd8, 0x16, - 0x93, 0x63, 0x6e, 0x8b, 0x22, 0x13, 0xe1, 0xfb, 0xa2, 0x02, 0x53, 0xf2, 0x2a, 0x56, 0x99, 0xe2, - 0xc6, 0xa9, 0xcf, 0xfa, 0xdf, 0x35, 0x58, 0x30, 0xb0, 0x17, 0x74, 0x31, 0x07, 0xf6, 0xe8, 0xe0, - 0x7a, 0x15, 0x8a, 0x16, 0xa2, 0xb8, 0x1d, 0x44, 0x07, 0x1c, 0x9c, 0xf2, 0xfa, 0xa5, 0xa3, 0xbd, - 0xd9, 0x94, 0x12, 0x46, 0x2c, 0x9b, 0xc4, 0x2b, 0x9f, 0xc2, 0x6b, 0x1b, 0xe6, 0xba, 0x71, 0xda, - 0x13, 0x0e, 0x4f, 0x8c, 0xe9, 0x70, 0xb9, 0x27, 0xc8, 0x86, 0xd8, 0xc1, 0x9f, 0xf4, 0x4d, 0x1e, - 0xfc, 0xbf, 0xca, 0xc3, 0x33, 0x5b, 0x98, 0x0e, 0x56, 0x5f, 0xe8, 0x9e, 0x2c, 0xb0, 0x6e, 0xaf, - 0x3f, 0xde, 0x92, 0x9f, 0x1d, 0x2e, 0x84, 0xa2, 0x88, 0x9a, 0xb8, 0x8b, 0x7d, 0xda, 0xc3, 0x64, - 0x86, 0x53, 0x6f, 0x30, 0xe2, 0xb6, 0xad, 0x37, 0xe0, 0x89, 0x24, 0x97, 0x5a, 0x51, 0x11, 0x6e, - 0x0b, 0x3d, 0xd6, 0xdb, 0x62, 0x40, 0x5f, 0x85, 0x19, 0xec, 0xdb, 0x3d, 0x9d, 0x05, 0xce, 0x08, - 0xd8, 0xb7, 0x95, 0xc6, 0x4b, 0xb0, 0xd0, 0xe3, 0x50, 0xfa, 0x26, 0x39, 0xdb, 0x9c, 0x62, 0x53, - 0xda, 0x2e, 0xc1, 0x82, 0x87, 0xf6, 0x1d, 0xaf, 0xe3, 0x89, 0xfd, 0xc6, 0x93, 0xc3, 0x14, 0x0f, - 0x8e, 0x39, 0x39, 0xc0, 0x76, 0xdc, 0xb0, 0x14, 0x51, 0xcc, 0xda, 0x98, 0xff, 0xd3, 0xe0, 0xc2, - 0xd1, 0x4b, 0x21, 0xd3, 0x45, 0x86, 0x52, 0x2d, 0x43, 0x29, 0x0b, 0x20, 0x75, 0x07, 0xe2, 0x49, - 0x0b, 0x8b, 0x92, 0x77, 0x7a, 0x7d, 0x75, 0xd8, 0xda, 0x5c, 0x47, 0x14, 0x5d, 0x73, 0x83, 0x96, - 0x51, 0x96, 0x82, 0xd7, 0x84, 0x9c, 0x7e, 0x07, 0xe6, 0x24, 0x2a, 0xa6, 0x1c, 0x91, 0x67, 0x52, - 0x23, 0x33, 0xe6, 0x25, 0x0f, 0x53, 0x29, 0x51, 0x93, 0x5e, 0x18, 0xe5, 0x6e, 0xea, 0xbb, 0x7e, - 0x5f, 0x83, 0x95, 0x2d, 0x9c, 0x4c, 0x8d, 0x3b, 0xe2, 0x96, 0x1d, 0xe7, 0xf7, 0x9b, 0x30, 0xc9, - 0x7d, 0x54, 0xd9, 0x31, 0xbb, 0x18, 0x4f, 0x5c, 0xd5, 0xd9, 0xac, 0xc9, 0x54, 0xcb, 0x84, 0x0d, - 0xa9, 0x83, 0x25, 0x3e, 0xd9, 0x7f, 0x30, 0x59, 0xf8, 0xaa, 0x7b, 0xa1, 0xa4, 0xb1, 0x2a, 0xbe, - 0xfe, 0x61, 0x0e, 0x6a, 0xc3, 0x4c, 0x92, 0x2b, 0xf0, 0x03, 0x28, 0x8b, 0xb4, 0x20, 0x5b, 0x02, - 0xca, 0xb6, 0xdb, 0x63, 0x65, 0xee, 0xd1, 0xca, 0x45, 0x51, 0xac, 0xa8, 0x37, 0x7c, 0x1a, 0x1d, - 0x18, 0xe2, 0x66, 0xa3, 0x68, 0xd5, 0x03, 0xd0, 0x07, 0x99, 0xf4, 0x79, 0xc8, 0xdf, 0xc5, 0x07, - 0x32, 0x4d, 0xb1, 0x9f, 0xfa, 0x0e, 0x14, 0xba, 0xc8, 0xed, 0xa8, 0xe2, 0xe3, 0xc5, 0x63, 0x22, - 0x17, 0x5b, 0x26, 0xb4, 0xbc, 0x94, 0xbb, 0xa2, 0xd5, 0xff, 0xa2, 0xc1, 0xf9, 0x2d, 0x4c, 0xe3, - 0xeb, 0xce, 0x88, 0x85, 0xfb, 0x16, 0x9c, 0x76, 0x11, 0x6f, 0x1d, 0xd2, 0xc8, 0xc1, 0x5d, 0x1c, - 0xa3, 0xa5, 0x92, 0x69, 0xde, 0x38, 0xc5, 0x18, 0x0c, 0x35, 0x2e, 0x15, 0x6c, 0xdb, 0xb1, 0x68, - 0x18, 0x05, 0x16, 0x26, 0x24, 0x2d, 0x9a, 0xeb, 0x89, 0xbe, 0xa1, 0xc6, 0x7b, 0xa2, 0xfd, 0x0b, - 0x9c, 0x1f, 0x5c, 0xe0, 0x1f, 0xf2, 0xb4, 0x37, 0xda, 0x05, 0xb9, 0xd0, 0x4d, 0x28, 0x26, 0x96, - 0xf8, 0x81, 0x40, 0x8c, 0x15, 0xd5, 0xdf, 0x83, 0xd5, 0x2d, 0x4c, 0xaf, 0xdf, 0x7c, 0x73, 0x04, - 0x78, 0xb7, 0x01, 0xc4, 0xa9, 0xe0, 0xef, 0x06, 0x2a, 0xba, 0x8e, 0x3b, 0x35, 0xaf, 0x62, 0xf8, - 0xe5, 0x8a, 0xca, 0x5f, 0xa4, 0xfe, 0x73, 0x0d, 0x9e, 0x1c, 0x31, 0xb9, 0x74, 0xfb, 0x1d, 0x58, - 0x48, 0xa8, 0x35, 0x93, 0xc5, 0xc9, 0xf3, 0x5f, 0xc2, 0x08, 0x63, 0x3e, 0xea, 0x2b, 0x7d, 0xea, - 0x1f, 0x69, 0x70, 0xd2, 0xc0, 0x28, 0x0c, 0xdd, 0x03, 0x9e, 0x5c, 0xc9, 0x78, 0x07, 0x4d, 0x76, - 0x7b, 0x21, 0xf7, 0xe0, 0xed, 0x05, 0xfd, 0x0a, 0x4c, 0xf2, 0xec, 0x4f, 0x64, 0x62, 0x3b, 0x3a, - 0x47, 0x4a, 0xfe, 0xfa, 0x12, 0x2c, 0xf6, 0x79, 0x22, 0xcf, 0xd7, 0x7f, 0xe6, 0xa0, 0xba, 0x61, - 0xdb, 0x4d, 0x8c, 0x22, 0x6b, 0x6f, 0x83, 0xd2, 0xc8, 0x69, 0x75, 0x68, 0x6f, 0x89, 0x7f, 0xaa, - 0xc1, 0x02, 0xe1, 0x63, 0x26, 0x8a, 0x07, 0x25, 0xca, 0x6f, 0x8d, 0x95, 0x48, 0x86, 0x2b, 0x6f, - 0xf4, 0xd3, 0x45, 0x1e, 0x99, 0x27, 0x7d, 0x64, 0x56, 0xe2, 0x3a, 0xbe, 0x8d, 0xf7, 0x93, 0xd9, - 0xb0, 0xc4, 0x29, 0x6c, 0x7f, 0xe8, 0xcf, 0x82, 0x4e, 0xee, 0x3a, 0xa1, 0x49, 0xac, 0x3d, 0xec, - 0x21, 0xb3, 0x13, 0xda, 0xaa, 0x45, 0x56, 0x34, 0xe6, 0xd9, 0x48, 0x93, 0x0f, 0xbc, 0xc5, 0xe9, - 0x55, 0x17, 0x16, 0x33, 0xe7, 0x4d, 0xa6, 0xa6, 0x92, 0x48, 0x4d, 0x2f, 0x27, 0x53, 0x53, 0x79, - 0xfd, 0x99, 0x34, 0xda, 0x71, 0xcd, 0xb4, 0xcd, 0x2c, 0xc1, 0xf6, 0x6d, 0xc6, 0xca, 0x2b, 0xc1, - 0x44, 0x2a, 0x5a, 0x81, 0xe5, 0x4c, 0x00, 0x24, 0xfa, 0x77, 0x61, 0x45, 0xd4, 0x3c, 0xc3, 0xf0, - 0xff, 0xda, 0x30, 0xf8, 0x4b, 0xc7, 0xc6, 0xa9, 0xbe, 0x0a, 0xb5, 0x61, 0x93, 0x49, 0x73, 0xae, - 0x42, 0x75, 0x0b, 0xd3, 0x61, 0xb6, 0xa4, 0xd5, 0x6b, 0xfd, 0xea, 0x3f, 0x9c, 0x84, 0xe5, 0x4c, - 0x69, 0xb9, 0x5f, 0x7f, 0xa6, 0xc1, 0x82, 0xd5, 0x21, 0x34, 0xf0, 0x06, 0x43, 0x69, 0xec, 0x33, - 0x69, 0x98, 0xf6, 0xc6, 0x26, 0xd7, 0x3c, 0x10, 0x4b, 0x56, 0x1f, 0x99, 0x5b, 0x41, 0x0e, 0x08, - 0xc5, 0x29, 0x2b, 0x72, 0x0f, 0xc9, 0x8a, 0x26, 0xd7, 0x3c, 0x18, 0xd1, 0x7d, 0x64, 0xbd, 0x0d, - 0x53, 0x1e, 0x0a, 0x43, 0xc7, 0x6f, 0x57, 0xf2, 0x7c, 0xea, 0x9d, 0x07, 0x9e, 0x7a, 0x47, 0xe8, - 0x13, 0x33, 0x2a, 0xed, 0xba, 0x0f, 0xcb, 0xc8, 0xb6, 0xcd, 0xc1, 0x7c, 0x24, 0xda, 0x60, 0xa2, - 0x56, 0x5f, 0x4b, 0x07, 0xb6, 0x62, 0xce, 0x4c, 0x4b, 0x3c, 0x57, 0x57, 0x90, 0x6d, 0x67, 0x8e, - 0xb0, 0xdd, 0x95, 0xb9, 0x12, 0x8f, 0x64, 0x77, 0xf1, 0xbd, 0x9c, 0x85, 0xf8, 0xa3, 0x99, 0xed, - 0x25, 0x98, 0x49, 0x82, 0x9c, 0x31, 0xc9, 0xc9, 0xe4, 0x24, 0xa5, 0x64, 0x1e, 0xb8, 0x0a, 0xa7, - 0x54, 0x5f, 0x78, 0x53, 0x9c, 0xf2, 0x89, 0x46, 0x77, 0xaa, 0x16, 0xd0, 0x06, 0x6b, 0x81, 0xdf, - 0x4d, 0xc2, 0xd2, 0x80, 0xb4, 0xdc, 0x55, 0x3f, 0x82, 0x05, 0xd2, 0x09, 0xc3, 0x20, 0xa2, 0xd8, - 0x36, 0x2d, 0xd7, 0xe1, 0xa7, 0x83, 0xd8, 0x54, 0xc6, 0x58, 0x31, 0x35, 0x44, 0x71, 0xa3, 0xa9, - 0xb4, 0x6e, 0x0a, 0xa5, 0x2a, 0x94, 0xfb, 0xc8, 0xfa, 0xd3, 0x50, 0x16, 0xda, 0xe3, 0x2b, 0x89, - 0x70, 0x7e, 0x56, 0x50, 0xd5, 0x85, 0xe4, 0x0e, 0xcc, 0x79, 0xd8, 0x6b, 0xe1, 0x88, 0xec, 0x39, - 0xa1, 0x08, 0xbe, 0x51, 0xc5, 0xb9, 0x7a, 0x7f, 0xeb, 0x5e, 0x6e, 0xec, 0xc4, 0x62, 0xa2, 0x63, - 0xed, 0xa5, 0xbe, 0x59, 0x56, 0x52, 0xf8, 0xc9, 0xdb, 0x7c, 0xc9, 0x28, 0x49, 0x4a, 0x46, 0xa9, - 0x55, 0x18, 0x80, 0x97, 0xdd, 0xd4, 0xd4, 0x15, 0x44, 0xf5, 0xbe, 0x3b, 0x3e, 0xe5, 0x37, 0xab, - 0x82, 0xb1, 0x20, 0x87, 0x9a, 0xa2, 0xed, 0xdd, 0xf1, 0x79, 0x4e, 0x4e, 0xb4, 0x88, 0x4d, 0x36, - 0x2c, 0xee, 0x56, 0x25, 0x63, 0x3e, 0x31, 0xd0, 0x64, 0x74, 0xfd, 0x22, 0xcc, 0x27, 0x2e, 0xc8, - 0x82, 0xb7, 0xc8, 0x79, 0x13, 0x17, 0x67, 0xc1, 0xba, 0x05, 0x33, 0xea, 0xfe, 0xc2, 0xf1, 0x29, - 0x71, 0x7c, 0xce, 0xa5, 0x23, 0x55, 0x72, 0x24, 0x6e, 0x2d, 0x1c, 0x95, 0xe9, 0x6e, 0xef, 0x43, - 0xff, 0x36, 0x54, 0x77, 0x91, 0xe3, 0x06, 0x89, 0x45, 0x31, 0x1d, 0xdf, 0x8a, 0xb0, 0x87, 0x7d, - 0x5a, 0x01, 0x5e, 0x9a, 0x56, 0x14, 0x47, 0xac, 0x45, 0x8e, 0xeb, 0x57, 0xa0, 0xe2, 0xf8, 0x0e, - 0x75, 0x90, 0x6b, 0xf6, 0x6b, 0xa9, 0x4c, 0x8b, 0xb2, 0x56, 0x8e, 0xbf, 0x9a, 0x56, 0xa1, 0xbf, - 0x0c, 0xcb, 0x0e, 0x31, 0xdb, 0x6e, 0xd0, 0x42, 0xae, 0xd9, 0x6b, 0xdd, 0x60, 0x1f, 0xb5, 0x5c, - 0x6c, 0x57, 0x66, 0xf8, 0x89, 0x5c, 0x71, 0xc8, 0x16, 0xe7, 0x88, 0x6b, 0xdb, 0x1b, 0x62, 0xbc, - 0xba, 0x09, 0x8b, 0x99, 0x41, 0x77, 0xac, 0x8d, 0xf6, 0x1b, 0x0d, 0xce, 0x6e, 0xd8, 0xf6, 0x77, - 0x23, 0x71, 0xdc, 0xb3, 0x03, 0x8f, 0xf6, 0x6f, 0xb9, 0x8b, 0x30, 0xbf, 0x1b, 0x05, 0x3e, 0x65, - 0xb7, 0xe9, 0xf4, 0xfb, 0xd2, 0x9c, 0xa2, 0xab, 0x37, 0xa6, 0x2d, 0x58, 0x15, 0xe6, 0x9b, 0x11, - 0xd7, 0x64, 0xaa, 0x60, 0xb2, 0x02, 0xdf, 0xc7, 0x56, 0x5c, 0xd9, 0x15, 0x8d, 0x15, 0xc1, 0x97, - 0x9a, 0x70, 0x33, 0x66, 0xaa, 0xd7, 0x61, 0x75, 0xb8, 0x59, 0xf2, 0xf8, 0x7d, 0x05, 0xaa, 0xe2, - 0x80, 0xce, 0xb4, 0x7a, 0x8c, 0x44, 0xb1, 0x02, 0xcb, 0x99, 0x0a, 0xa4, 0xfe, 0x5f, 0xe7, 0x45, - 0xd7, 0x5f, 0xd2, 0xe5, 0xc6, 0x52, 0xfa, 0x9b, 0xb0, 0xc8, 0xef, 0x33, 0x7b, 0x18, 0x45, 0xb4, - 0x85, 0x11, 0x35, 0xef, 0x39, 0x74, 0xcf, 0xf1, 0xe5, 0x9d, 0xe2, 0xf4, 0x40, 0x43, 0xe7, 0xba, - 0xfc, 0x23, 0xc4, 0xb5, 0x89, 0x0f, 0x3e, 0x3d, 0xab, 0x19, 0x4f, 0x30, 0xe9, 0xd7, 0x94, 0xf0, - 0x1d, 0x2e, 0xab, 0x9f, 0x85, 0xe9, 0x28, 0xb4, 0x62, 0x94, 0x65, 0x83, 0x2e, 0x0a, 0x2d, 0x05, - 0xf0, 0x12, 0x4c, 0xf1, 0x77, 0xbe, 0xb8, 0x43, 0x37, 0xc9, 0x3e, 0x79, 0x27, 0x6e, 0x22, 0x0a, - 0x5c, 0xd1, 0x4e, 0x2a, 0x27, 0x8f, 0xa8, 0xac, 0xb6, 0x55, 0xca, 0x23, 0x23, 0x70, 0xb1, 0xc1, - 0x85, 0xf5, 0xb7, 0xa1, 0x4a, 0x30, 0xe1, 0x1b, 0x80, 0x77, 0x5c, 0xb0, 0x6d, 0xa2, 0x5d, 0x86, - 0x20, 0xef, 0x54, 0x15, 0xc6, 0xec, 0x54, 0x2d, 0x49, 0x1d, 0x4d, 0xa1, 0x62, 0x83, 0x69, 0xe0, - 0x9d, 0xba, 0x65, 0x28, 0xf5, 0xba, 0x2b, 0x22, 0x5f, 0x14, 0xc3, 0x11, 0x6d, 0x95, 0xa9, 0xac, - 0xb6, 0xca, 0x87, 0xf2, 0x11, 0xa4, 0x7f, 0x55, 0x64, 0x82, 0xbf, 0x05, 0x65, 0x64, 0x51, 0xa7, - 0x8b, 0x4d, 0x99, 0xf8, 0x64, 0x76, 0x7f, 0xee, 0xa8, 0xbc, 0x99, 0xc6, 0x64, 0x56, 0x28, 0x91, - 0xda, 0xc7, 0x6e, 0xc6, 0xfe, 0x3e, 0x07, 0x8b, 0xe2, 0x2a, 0xd6, 0x7f, 0xf9, 0xbb, 0x01, 0x13, - 0xbc, 0x49, 0xaa, 0xf1, 0xf5, 0xb9, 0x3c, 0x7a, 0x7d, 0xae, 0xf3, 0x37, 0x17, 0x4a, 0x71, 0xf4, - 0x66, 0x07, 0xcb, 0x93, 0x95, 0x8b, 0x8f, 0x7a, 0xc4, 0x65, 0x27, 0x4b, 0xd0, 0x89, 0xac, 0x78, - 0xd3, 0xc9, 0x08, 0x99, 0x15, 0x54, 0xe9, 0x9f, 0xfe, 0x22, 0xcb, 0x57, 0x8c, 0x83, 0x61, 0xc4, - 0xb6, 0x74, 0xe2, 0x1a, 0x2e, 0xba, 0x6d, 0x8b, 0xf1, 0xf8, 0x0d, 0x3f, 0x71, 0x0b, 0xcf, 0xec, - 0x91, 0x15, 0xc6, 0xee, 0x91, 0x65, 0xbe, 0x05, 0xfd, 0x47, 0x83, 0x53, 0xfd, 0x78, 0xc9, 0x85, - 0x7c, 0x48, 0x80, 0x65, 0x5e, 0x7b, 0x73, 0x0f, 0xf1, 0xda, 0x9b, 0xe5, 0x6b, 0x3e, 0xcb, 0xd7, - 0x7f, 0x68, 0xb0, 0xf4, 0x46, 0x27, 0x6a, 0xe3, 0xaf, 0x62, 0x74, 0xd4, 0xab, 0x50, 0x19, 0x74, - 0x4e, 0x26, 0xd2, 0x3f, 0xe4, 0x60, 0x69, 0x07, 0x7f, 0x45, 0x3d, 0x7f, 0x24, 0xfb, 0xe2, 0x1a, - 0x54, 0x06, 0x01, 0x3b, 0x5e, 0xab, 0x98, 0xff, 0xe3, 0xc7, 0xc0, 0xbb, 0x11, 0x26, 0x7b, 0xea, - 0xf2, 0x91, 0x7a, 0x64, 0x7b, 0x4c, 0xff, 0xf8, 0xa9, 0xc1, 0x99, 0x6c, 0x2b, 0x7a, 0xc1, 0xb1, - 0x62, 0x60, 0x82, 0x7d, 0x7b, 0xd8, 0x6b, 0xe0, 0x23, 0x7c, 0xd8, 0x7a, 0x1a, 0xca, 0xe9, 0x42, - 0x45, 0x56, 0xc4, 0xb3, 0x51, 0xb2, 0x22, 0xc8, 0x78, 0xc2, 0x28, 0x64, 0x3c, 0x61, 0x3c, 0x05, - 0xb3, 0x82, 0x2b, 0xfd, 0xd8, 0x20, 0x98, 0x86, 0xbd, 0x5b, 0x4c, 0x0d, 0xbc, 0x5b, 0x9c, 0x85, - 0x69, 0xc6, 0xa1, 0x94, 0x14, 0x63, 0x06, 0xa9, 0x42, 0x34, 0x26, 0xb2, 0x01, 0x93, 0x98, 0xbe, - 0x9f, 0x83, 0xca, 0x16, 0xa6, 0x8c, 0x28, 0x36, 0xca, 0xf8, 0xeb, 0xbe, 0x22, 0x9b, 0x94, 0xfc, - 0xdf, 0x91, 0xaa, 0x29, 0x42, 0x95, 0x22, 0xfd, 0x26, 0xcc, 0xf5, 0x86, 0xc5, 0xb3, 0x5f, 0x9e, - 0xef, 0xdc, 0x73, 0x43, 0x6e, 0x88, 0x3d, 0x1b, 0xd8, 0x66, 0x9d, 0xa5, 0xc9, 0xcf, 0xfe, 0xc7, - 0xdc, 0x89, 0x23, 0x1e, 0x73, 0x0b, 0xa3, 0x1f, 0x73, 0x27, 0xfb, 0x1e, 0x73, 0xeb, 0x7b, 0x70, - 0x3a, 0x03, 0x05, 0xb9, 0x8d, 0xbe, 0x93, 0x7e, 0xa0, 0xfd, 0xe6, 0x38, 0xff, 0x6d, 0xd9, 0x70, - 0xdd, 0xc0, 0x42, 0x14, 0xdb, 0x71, 0x1b, 0x56, 0xe8, 0xb8, 0xe6, 0x7e, 0xfc, 0x59, 0xed, 0xc4, - 0x27, 0x9f, 0xd5, 0x4e, 0x7c, 0xf1, 0x59, 0x4d, 0xfb, 0xf1, 0x61, 0x4d, 0xfb, 0xed, 0x61, 0x4d, - 0xfb, 0xe8, 0xb0, 0xa6, 0x7d, 0x7c, 0x58, 0xd3, 0xfe, 0x75, 0x58, 0xd3, 0xfe, 0x7d, 0x58, 0x3b, - 0xf1, 0xc5, 0x61, 0x4d, 0xbb, 0xff, 0x79, 0xed, 0xc4, 0xc7, 0x9f, 0xd7, 0x4e, 0x7c, 0xf2, 0x79, - 0xed, 0xc4, 0xf7, 0x5f, 0x68, 0x07, 0xbd, 0x59, 0x9d, 0x60, 0xc4, 0x7f, 0x76, 0xaf, 0x26, 0xbf, - 0x5b, 0x93, 0xbc, 0xf4, 0x7a, 0xfe, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe5, 0xc7, 0xf6, 0x99, - 0xee, 0x2b, 0x00, 0x00, + 0x15, 0xf7, 0x92, 0xa2, 0x44, 0x3e, 0x7d, 0xaf, 0x2d, 0x8b, 0xa6, 0x2c, 0x4a, 0x61, 0x1c, 0xc7, + 0x76, 0x13, 0xaa, 0x56, 0xda, 0xc4, 0x89, 0x1b, 0x04, 0xb2, 0xec, 0x28, 0x42, 0xa5, 0x7c, 0xac, + 0x1c, 0xbb, 0x08, 0x10, 0x6c, 0x86, 0xbb, 0x23, 0x6a, 0xe1, 0xfd, 0xca, 0xce, 0x90, 0x96, 0x02, + 0xf4, 0x3b, 0xfd, 0xb8, 0xd5, 0x40, 0x51, 0x20, 0xc8, 0x5f, 0xd0, 0x1e, 0x8a, 0xde, 0x7a, 0x2a, + 0x50, 0x14, 0xbd, 0xe4, 0x18, 0xf4, 0x14, 0xb4, 0x05, 0xd2, 0xc8, 0x97, 0xf6, 0x16, 0xa0, 0x40, + 0xcf, 0xc5, 0x7c, 0x2d, 0x77, 0xc9, 0x25, 0x45, 0xc5, 0x1f, 0x87, 0xdc, 0xb8, 0x6f, 0xde, 0x7b, + 0xf3, 0xde, 0x6f, 0xde, 0xbc, 0x79, 0xf3, 0x86, 0xf0, 0x12, 0xc5, 0x5e, 0x18, 0x44, 0xc8, 0x5d, + 0x21, 0x38, 0x6a, 0xe3, 0x68, 0x05, 0x85, 0xce, 0x0a, 0xb2, 0x3d, 0xc7, 0x67, 0xdf, 0x8e, 0x85, + 0x57, 0xda, 0x97, 0x57, 0x22, 0xfc, 0x7e, 0x0b, 0x13, 0x6a, 0x46, 0x98, 0x84, 0x81, 0x4f, 0x70, + 0x3d, 0x8c, 0x02, 0x1a, 0xe8, 0x4f, 0x2a, 0xd9, 0xba, 0x90, 0xad, 0xa3, 0xd0, 0xa9, 0x27, 0x65, + 0xeb, 0xed, 0xcb, 0x95, 0xa5, 0x66, 0x10, 0x34, 0x5d, 0xbc, 0xc2, 0x45, 0x1a, 0xad, 0xdd, 0x15, + 0xea, 0x78, 0x98, 0x50, 0xe4, 0x85, 0x42, 0x4b, 0xa5, 0xda, 0xcd, 0x60, 0xb7, 0x22, 0x44, 0x9d, + 0xc0, 0x97, 0xe3, 0x4f, 0xd8, 0x38, 0xc4, 0xbe, 0x8d, 0x7d, 0xcb, 0xc1, 0x64, 0xa5, 0x19, 0x34, + 0x03, 0x4e, 0xe7, 0xbf, 0x24, 0x4b, 0x2d, 0x76, 0x82, 0x59, 0x8f, 0xfd, 0x96, 0x47, 0x98, 0xd9, + 0x56, 0xe0, 0x79, 0xb1, 0x9a, 0xa7, 0xb2, 0x79, 0x7c, 0xe4, 0x61, 0x12, 0x22, 0x4b, 0xfa, 0x54, + 0x39, 0x9f, 0xcd, 0x46, 0x11, 0xb9, 0x63, 0xbe, 0xdf, 0xc2, 0x2d, 0xc5, 0x77, 0x2e, 0xc5, 0x27, + 0x66, 0x62, 0x8c, 0x1e, 0x26, 0x04, 0x35, 0x71, 0xe6, 0xa4, 0x6d, 0x1c, 0x11, 0x27, 0x8b, 0x2d, + 0x3d, 0xe9, 0xdd, 0x20, 0xba, 0xb3, 0xeb, 0x06, 0x77, 0x7b, 0xf9, 0x2e, 0xa6, 0xf8, 0x22, 0x1c, + 0xba, 0x8e, 0xc5, 0xa1, 0xea, 0x65, 0x7d, 0x3a, 0xc5, 0x1a, 0x7b, 0xd9, 0xcb, 0xf8, 0x4c, 0x56, + 0x00, 0x58, 0x6e, 0x8b, 0x50, 0x1c, 0x0d, 0xb2, 0x20, 0xc1, 0x9d, 0x0d, 0xf8, 0xa5, 0xc1, 0xac, + 0x62, 0x86, 0x1e, 0x6b, 0xb3, 0x78, 0x19, 0xf8, 0x83, 0xac, 0xdd, 0x73, 0x08, 0x0d, 0xa2, 0x83, + 0x5e, 0x6b, 0xeb, 0x59, 0xdc, 0x03, 0xb0, 0xf8, 0x66, 0x16, 0xff, 0x40, 0x98, 0x5f, 0xcc, 0x92, + 0x08, 0xd9, 0x3a, 0x13, 0x8a, 0x7d, 0x31, 0x87, 0x74, 0xd5, 0xf4, 0x30, 0x45, 0x36, 0xa2, 0x48, + 0x8a, 0x3e, 0x37, 0x84, 0x28, 0xde, 0xc7, 0x56, 0x8b, 0xcd, 0x4c, 0x8e, 0x21, 0x14, 0x3b, 0xa8, + 0x84, 0x5e, 0x19, 0x42, 0x48, 0x05, 0x9d, 0xe9, 0xb5, 0x28, 0x6a, 0xb8, 0xd8, 0x24, 0x14, 0xd1, + 0x81, 0x38, 0x76, 0x29, 0x60, 0x8b, 0x24, 0x27, 0xac, 0x7d, 0xa8, 0xc1, 0xc2, 0x75, 0x4c, 0xac, + 0xc8, 0x69, 0xe0, 0x6d, 0xa1, 0x6f, 0x87, 0xa9, 0x33, 0x44, 0x1e, 0xd1, 0xcf, 0x42, 0x29, 0x36, + 0xb2, 0xac, 0x2d, 0x6b, 0x17, 0x4a, 0x46, 0x87, 0xa0, 0x6f, 0x40, 0x29, 0xf6, 0xbb, 0x9c, 0x5b, + 0xd6, 0x2e, 0x8c, 0xaf, 0x5e, 0x8c, 0x2d, 0xe0, 0x39, 0x46, 0xc6, 0x59, 0xfb, 0x72, 0xfd, 0xb6, + 0x34, 0xfb, 0x86, 0x12, 0x30, 0x3a, 0xb2, 0xb5, 0x3f, 0xe6, 0xe0, 0x6c, 0xb6, 0x19, 0x22, 0x8d, + 0xe9, 0x67, 0xa0, 0x48, 0xf6, 0x50, 0x64, 0x9b, 0x8e, 0x2d, 0xcd, 0x18, 0xe3, 0xdf, 0x9b, 0xb6, + 0xfe, 0x04, 0x4c, 0xc8, 0xb0, 0x32, 0x91, 0x6d, 0x47, 0xdc, 0x8e, 0x92, 0x31, 0x2e, 0x69, 0x6b, + 0xb6, 0x1d, 0xe9, 0x7b, 0x70, 0xd2, 0x42, 0xd6, 0x1e, 0x4e, 0x43, 0x56, 0xce, 0x73, 0x8b, 0xaf, + 0xd4, 0xb3, 0x92, 0x63, 0x02, 0xb3, 0xa4, 0xf5, 0x29, 0xe3, 0x66, 0xb9, 0xd2, 0x24, 0x49, 0xf7, + 0xe1, 0x34, 0x0b, 0x9c, 0x06, 0x22, 0xdd, 0x93, 0x8d, 0x3c, 0xe0, 0x64, 0xa7, 0x94, 0xde, 0x24, + 0xb5, 0xf6, 0x37, 0x0d, 0x2a, 0x0a, 0xb8, 0xd7, 0x84, 0xc7, 0xaf, 0x05, 0x84, 0xaa, 0xe5, 0x63, + 0xd8, 0x04, 0x84, 0x72, 0x60, 0x30, 0x21, 0x12, 0xba, 0x71, 0x46, 0x5b, 0x13, 0xa4, 0x14, 0xb2, + 0x0c, 0xba, 0x42, 0x07, 0xd9, 0xd4, 0xe2, 0xe7, 0xbb, 0x17, 0xff, 0x7b, 0xa0, 0xc7, 0xa1, 0xd8, + 0x89, 0x82, 0x91, 0xe3, 0x46, 0xc1, 0xec, 0xdd, 0x6e, 0x52, 0xed, 0x5e, 0xae, 0x13, 0x94, 0x29, + 0xa7, 0x64, 0x30, 0x3c, 0x09, 0x93, 0xdc, 0x44, 0x62, 0xfa, 0x2d, 0xaf, 0x81, 0x23, 0xee, 0x56, + 0xc1, 0x98, 0x10, 0xc4, 0xd7, 0x39, 0x4d, 0x5f, 0x80, 0x92, 0xf2, 0x8b, 0x94, 0x73, 0xcb, 0xf9, + 0x0b, 0x05, 0xa3, 0x28, 0x1d, 0x23, 0xfa, 0xbb, 0x30, 0x1d, 0x3b, 0x62, 0xf2, 0x55, 0x94, 0xc1, + 0xf0, 0xad, 0xcc, 0xf5, 0xe9, 0x1c, 0x3d, 0xed, 0xcb, 0xf5, 0xd7, 0xd5, 0xc7, 0x3a, 0x93, 0xdb, + 0xf4, 0x77, 0x03, 0x63, 0xca, 0x4f, 0xd1, 0xf4, 0xe7, 0x61, 0x5e, 0xcc, 0x6d, 0x05, 0x3e, 0x8d, + 0x02, 0xd7, 0xc5, 0x11, 0x8f, 0x82, 0x16, 0xe1, 0xf8, 0x94, 0x8c, 0x39, 0x3e, 0xbc, 0x1e, 0x8f, + 0xee, 0xf0, 0x41, 0xbd, 0x0c, 0x63, 0x6a, 0xa5, 0x0a, 0x22, 0xc8, 0xe5, 0x67, 0xad, 0x0e, 0xb3, + 0xeb, 0x6e, 0x40, 0xf0, 0x0e, 0x93, 0x53, 0xab, 0xdb, 0xbd, 0x29, 0x3a, 0x4b, 0x57, 0x3b, 0x05, + 0x7a, 0x92, 0x5f, 0x00, 0x57, 0x7b, 0x06, 0xa6, 0x37, 0x30, 0x1d, 0x56, 0xc7, 0x7b, 0x30, 0xd3, + 0xe1, 0x96, 0xd0, 0x6f, 0x01, 0x48, 0x76, 0x7f, 0x37, 0xe0, 0x02, 0xe3, 0xab, 0xcf, 0x0e, 0x13, + 0xd3, 0x5c, 0x0d, 0x07, 0x4b, 0x2c, 0x0b, 0xfb, 0x59, 0xfb, 0x93, 0x06, 0xe5, 0x2d, 0x87, 0xd0, + 0x9b, 0x11, 0xf2, 0xc9, 0x2e, 0x8e, 0x6e, 0xb2, 0xcc, 0x74, 0xb4, 0x65, 0x7a, 0x15, 0xc6, 0x3d, + 0xc7, 0x37, 0xf9, 0x51, 0x2f, 0xc3, 0x36, 0x6f, 0x94, 0x3c, 0xc7, 0x67, 0x0a, 0xe4, 0x38, 0xda, + 0x8f, 0xc7, 0x47, 0xe4, 0x38, 0xda, 0x97, 0xe3, 0x8b, 0x00, 0x0d, 0x44, 0xad, 0x3d, 0x93, 0x38, + 0x1f, 0x60, 0x0e, 0x75, 0xc1, 0x28, 0x71, 0xca, 0x8e, 0xf3, 0x01, 0xd6, 0xcf, 0xc3, 0xb4, 0x8f, + 0xf7, 0xa9, 0x19, 0xa2, 0x26, 0x36, 0x69, 0x70, 0x07, 0xfb, 0xe5, 0xd1, 0x65, 0xed, 0xc2, 0x84, + 0x31, 0xc9, 0xc8, 0x6f, 0xa2, 0x26, 0xbe, 0xc9, 0x88, 0x2c, 0x79, 0x9e, 0xc9, 0x30, 0x5f, 0x42, + 0xf5, 0x0a, 0x14, 0x78, 0xa6, 0x2d, 0x6b, 0xcb, 0xf9, 0xf4, 0x96, 0xe8, 0x5f, 0x83, 0xd5, 0x99, + 0x0a, 0x43, 0xc8, 0x65, 0x99, 0x91, 0xcb, 0x32, 0xe3, 0xaf, 0x1a, 0x54, 0x98, 0x19, 0xb7, 0x1c, + 0xe2, 0x34, 0x1c, 0xd7, 0xa1, 0x07, 0xc3, 0xe2, 0xb8, 0x08, 0x10, 0x61, 0x64, 0x9b, 0x2e, 0x6e, + 0x63, 0x57, 0xc1, 0xc8, 0x28, 0x5b, 0x8c, 0xa0, 0x9f, 0x83, 0x29, 0x06, 0x63, 0x82, 0x45, 0x20, + 0x39, 0xe1, 0xa1, 0x7d, 0x23, 0xe6, 0x7a, 0x48, 0x60, 0xfe, 0x5c, 0x83, 0x85, 0x4c, 0x2f, 0x1e, + 0x37, 0x9c, 0xff, 0xd5, 0x60, 0x8e, 0xaf, 0xaa, 0xe3, 0x0d, 0x1f, 0x91, 0x57, 0xa1, 0xc8, 0x23, + 0xd2, 0xf1, 0xb0, 0x3c, 0x08, 0x2b, 0x75, 0x51, 0x2d, 0xd7, 0x55, 0xb5, 0x5c, 0xbf, 0xa9, 0xca, + 0xe9, 0x6b, 0x23, 0xf7, 0x3e, 0x5f, 0xd2, 0x8c, 0x31, 0x16, 0xb0, 0x8e, 0x87, 0xb9, 0x30, 0x0b, + 0x57, 0x26, 0x9c, 0x1f, 0x5a, 0x18, 0xed, 0x73, 0xe1, 0x34, 0xfc, 0x23, 0x43, 0xc0, 0x5f, 0xc8, + 0xf2, 0xfa, 0xc7, 0x1a, 0x9c, 0xee, 0xf6, 0xfa, 0x71, 0x23, 0xff, 0x67, 0x19, 0x02, 0x46, 0xa7, + 0x8e, 0x7b, 0x44, 0x19, 0x21, 0x3f, 0x38, 0x23, 0x7c, 0x65, 0x14, 0x7f, 0xa1, 0xc1, 0xd9, 0x6c, + 0x0f, 0x1e, 0x37, 0x96, 0x1f, 0xe5, 0x60, 0x84, 0xc9, 0xb1, 0x12, 0xa0, 0x73, 0xd4, 0xc5, 0xd5, + 0xd3, 0x78, 0x4c, 0xdb, 0xb4, 0xf5, 0x25, 0x18, 0x8f, 0x4f, 0x72, 0x09, 0x5e, 0xc9, 0x00, 0x45, + 0xda, 0xb4, 0xf5, 0x39, 0x18, 0x8d, 0x5a, 0xbe, 0x02, 0xae, 0x64, 0x14, 0xa2, 0x96, 0xbf, 0x69, + 0xeb, 0xf3, 0x30, 0x96, 0x4e, 0xb1, 0xa3, 0x54, 0xa0, 0xb9, 0x0e, 0x25, 0x3e, 0x40, 0x0f, 0x42, + 0x91, 0x11, 0xa6, 0x56, 0xcf, 0x67, 0x7a, 0xca, 0x2f, 0x0e, 0xca, 0xc5, 0x9b, 0x07, 0x21, 0x36, + 0x8a, 0x54, 0xfe, 0xd2, 0x5f, 0x86, 0xd2, 0xae, 0x13, 0x61, 0xb1, 0x2d, 0x46, 0x87, 0xdc, 0x16, + 0x45, 0x26, 0xc2, 0xf7, 0x45, 0x19, 0xc6, 0xe4, 0x2d, 0xae, 0x3c, 0xc6, 0x8d, 0x53, 0x9f, 0xb5, + 0xbf, 0x6b, 0x30, 0x6b, 0x60, 0x2f, 0x68, 0x63, 0x0e, 0xec, 0xd1, 0xc1, 0xf5, 0x2a, 0x14, 0x2d, + 0x44, 0x71, 0x33, 0x88, 0x0e, 0x38, 0x38, 0x53, 0xab, 0x97, 0x8e, 0xf6, 0x66, 0x5d, 0x4a, 0x18, + 0xb1, 0x6c, 0x12, 0xaf, 0x7c, 0x0a, 0xaf, 0x4d, 0x98, 0x6e, 0xc7, 0x69, 0x4f, 0x38, 0x3c, 0x32, + 0xa4, 0xc3, 0x53, 0x1d, 0x41, 0x36, 0xc4, 0x0e, 0xfe, 0xa4, 0x6f, 0xf2, 0xe0, 0xff, 0x65, 0x1e, + 0x9e, 0xde, 0xc0, 0xb4, 0xb7, 0xfa, 0x42, 0x77, 0x65, 0x81, 0x75, 0x6b, 0xf5, 0xf1, 0x96, 0xfc, + 0xec, 0x70, 0x21, 0x14, 0x45, 0xd4, 0xc4, 0x6d, 0xec, 0xd3, 0x0e, 0x26, 0x13, 0x9c, 0x7a, 0x83, + 0x11, 0x37, 0x6d, 0xbd, 0x0e, 0x27, 0x93, 0x5c, 0x6a, 0x45, 0x45, 0xb8, 0xcd, 0x76, 0x58, 0x6f, + 0x89, 0x01, 0x7d, 0x19, 0x26, 0xb0, 0x6f, 0x77, 0x74, 0x16, 0x38, 0x23, 0x60, 0xdf, 0x56, 0x1a, + 0x2f, 0xc1, 0x6c, 0x87, 0x43, 0xe9, 0x1b, 0xe5, 0x6c, 0xd3, 0x8a, 0x4d, 0x69, 0xbb, 0x04, 0xb3, + 0x1e, 0xda, 0x77, 0xbc, 0x96, 0x27, 0xf6, 0x1b, 0x4f, 0x0e, 0x63, 0x3c, 0x38, 0xa6, 0xe5, 0x00, + 0xdb, 0x71, 0xfd, 0x52, 0x44, 0x31, 0x6b, 0x63, 0xfe, 0x4f, 0x83, 0x0b, 0x47, 0x2f, 0x85, 0x4c, + 0x17, 0x19, 0x4a, 0xb5, 0x0c, 0xa5, 0x2c, 0x80, 0xd4, 0x1d, 0x88, 0x27, 0x2d, 0x2c, 0x4a, 0xde, + 0xf1, 0xd5, 0xe5, 0x7e, 0x6b, 0x73, 0x1d, 0x51, 0x74, 0xcd, 0x0d, 0x1a, 0xc6, 0x94, 0x14, 0xbc, + 0x26, 0xe4, 0xf4, 0xdb, 0x30, 0x2d, 0x51, 0x31, 0xe5, 0x88, 0x3c, 0x93, 0xea, 0x99, 0x31, 0x2f, + 0x79, 0x98, 0x4a, 0x89, 0x9a, 0xf4, 0xc2, 0x98, 0x6a, 0xa7, 0xbe, 0x6b, 0xf7, 0x34, 0x58, 0xdc, + 0xc0, 0xc9, 0xd4, 0xb8, 0x2d, 0x2e, 0xe8, 0x71, 0x7e, 0xdf, 0x82, 0x51, 0xee, 0xa3, 0xca, 0x8e, + 0xd9, 0xc5, 0x78, 0xe2, 0x96, 0xcf, 0x66, 0x4d, 0xa6, 0x5a, 0x26, 0x6c, 0x48, 0x1d, 0x2c, 0xf1, + 0xa9, 0xfb, 0x3c, 0x0b, 0x5f, 0x75, 0x2f, 0x94, 0x34, 0x56, 0xc5, 0xd7, 0x3e, 0xce, 0x41, 0xb5, + 0x9f, 0x49, 0x72, 0x05, 0xbe, 0x0f, 0x53, 0x22, 0x2d, 0xc8, 0x6e, 0x82, 0xb2, 0xed, 0xd6, 0x50, + 0x99, 0x7b, 0xb0, 0x72, 0x51, 0x14, 0x2b, 0xea, 0x0d, 0x9f, 0x46, 0x07, 0x86, 0xb8, 0xd9, 0x28, + 0x5a, 0xe5, 0x00, 0xf4, 0x5e, 0x26, 0x7d, 0x06, 0xf2, 0x77, 0xf0, 0x81, 0x4c, 0x53, 0xec, 0xa7, + 0xbe, 0x0d, 0x85, 0x36, 0x72, 0x5b, 0xaa, 0xf8, 0x78, 0xe1, 0x98, 0xc8, 0xc5, 0x96, 0x09, 0x2d, + 0x2f, 0xe5, 0xae, 0x68, 0xb5, 0xbf, 0x68, 0x70, 0x7e, 0x03, 0xd3, 0xf8, 0xba, 0x33, 0x60, 0xe1, + 0x5e, 0x84, 0x33, 0x2e, 0xe2, 0x5d, 0x47, 0x1a, 0x39, 0xb8, 0x8d, 0x63, 0xb4, 0x54, 0x32, 0xcd, + 0x1b, 0xa7, 0x19, 0x83, 0xa1, 0xc6, 0xa5, 0x82, 0x4d, 0x3b, 0x16, 0x0d, 0xa3, 0xc0, 0xc2, 0x84, + 0xa4, 0x45, 0x73, 0x1d, 0xd1, 0x37, 0xd5, 0x78, 0x47, 0xb4, 0x7b, 0x81, 0xf3, 0xbd, 0x0b, 0xfc, + 0x03, 0x9e, 0xf6, 0x06, 0xbb, 0x20, 0x17, 0x7a, 0x07, 0x8a, 0x89, 0x25, 0x7e, 0x20, 0x10, 0x63, + 0x45, 0xb5, 0x0f, 0x60, 0x79, 0x03, 0xd3, 0xeb, 0x5b, 0x6f, 0x0d, 0x00, 0xef, 0x16, 0x80, 0x38, + 0x15, 0xfc, 0xdd, 0x40, 0x45, 0xd7, 0x71, 0xa7, 0xe6, 0x55, 0x0c, 0xbf, 0x5c, 0x51, 0xf9, 0x8b, + 0xd4, 0x7e, 0xa6, 0xc1, 0x13, 0x03, 0x26, 0x97, 0x6e, 0xbf, 0x07, 0xb3, 0x09, 0xb5, 0x66, 0xb2, + 0x38, 0x79, 0xee, 0x2b, 0x18, 0x61, 0xcc, 0x44, 0x5d, 0xa5, 0x4f, 0xed, 0x13, 0x0d, 0x4e, 0x19, + 0x18, 0x85, 0xa1, 0x7b, 0xc0, 0x93, 0x2b, 0x19, 0xee, 0xa0, 0xc9, 0x6e, 0x2f, 0xe4, 0x1e, 0xbc, + 0xbd, 0xa0, 0x5f, 0x81, 0x51, 0x9e, 0xfd, 0x89, 0x4c, 0x6c, 0x47, 0xe7, 0x48, 0xc9, 0x5f, 0x9b, + 0x87, 0xb9, 0x2e, 0x4f, 0xe4, 0xf9, 0xfa, 0xcf, 0x1c, 0x54, 0xd6, 0x6c, 0x7b, 0x07, 0xa3, 0xc8, + 0xda, 0x5b, 0xa3, 0x34, 0x72, 0x1a, 0x2d, 0xda, 0x59, 0xe2, 0x9f, 0x68, 0x30, 0x4b, 0xf8, 0x98, + 0x89, 0xe2, 0x41, 0x89, 0xf2, 0xdb, 0x43, 0x25, 0x92, 0xfe, 0xca, 0xeb, 0xdd, 0x74, 0x91, 0x47, + 0x66, 0x48, 0x17, 0x99, 0x95, 0xb8, 0x8e, 0x6f, 0xe3, 0xfd, 0x64, 0x36, 0x2c, 0x71, 0x0a, 0xdb, + 0x1f, 0xfa, 0x33, 0xa0, 0x93, 0x3b, 0x4e, 0x68, 0x12, 0x6b, 0x0f, 0x7b, 0xc8, 0x6c, 0x85, 0xb6, + 0x6a, 0x91, 0x15, 0x8d, 0x19, 0x36, 0xb2, 0xc3, 0x07, 0xde, 0xe6, 0xf4, 0x8a, 0x0b, 0x73, 0x99, + 0xf3, 0x26, 0x53, 0x53, 0x49, 0xa4, 0xa6, 0x97, 0x93, 0xa9, 0x69, 0x6a, 0xf5, 0xe9, 0x34, 0xda, + 0x71, 0xcd, 0xb4, 0xc9, 0x2c, 0xc1, 0xf6, 0x2d, 0xc6, 0xca, 0x2b, 0xc1, 0x44, 0x2a, 0x5a, 0x84, + 0x85, 0x4c, 0x00, 0x24, 0xfa, 0x77, 0x60, 0x51, 0xd4, 0x3c, 0xfd, 0xf0, 0xff, 0x46, 0x3f, 0xf8, + 0x4b, 0xc7, 0xc6, 0xa9, 0xb6, 0x0c, 0xd5, 0x7e, 0x93, 0x49, 0x73, 0xae, 0x42, 0x65, 0x03, 0xd3, + 0x7e, 0xb6, 0xa4, 0xd5, 0x6b, 0xdd, 0xea, 0x3f, 0x1e, 0x85, 0x85, 0x4c, 0x69, 0xb9, 0x5f, 0x7f, + 0xaa, 0xc1, 0xac, 0xd5, 0x22, 0x34, 0xf0, 0x7a, 0x43, 0x69, 0xe8, 0x33, 0xa9, 0x9f, 0xf6, 0xfa, + 0x3a, 0xd7, 0xdc, 0x13, 0x4b, 0x56, 0x17, 0x99, 0x5b, 0x41, 0x0e, 0x08, 0xc5, 0x29, 0x2b, 0x72, + 0x0f, 0xc9, 0x8a, 0x1d, 0xae, 0xb9, 0x37, 0xa2, 0xbb, 0xc8, 0x7a, 0x13, 0xc6, 0x3c, 0x14, 0x86, + 0x8e, 0xdf, 0x2c, 0xe7, 0xf9, 0xd4, 0xdb, 0x0f, 0x3c, 0xf5, 0xb6, 0xd0, 0x27, 0x66, 0x54, 0xda, + 0x75, 0x1f, 0x16, 0x90, 0x6d, 0x9b, 0xbd, 0xf9, 0x48, 0xb4, 0xc1, 0x44, 0xad, 0xbe, 0x92, 0x0e, + 0x6c, 0xc5, 0x9c, 0x99, 0x96, 0x78, 0xae, 0x2e, 0x23, 0xdb, 0xce, 0x1c, 0x61, 0xbb, 0x2b, 0x73, + 0x25, 0x1e, 0xc9, 0xee, 0xe2, 0x7b, 0x39, 0x0b, 0xf1, 0x47, 0x33, 0xdb, 0x4b, 0x30, 0x91, 0x04, + 0x39, 0x63, 0x92, 0x53, 0xc9, 0x49, 0x4a, 0xc9, 0x3c, 0x70, 0x15, 0x4e, 0xab, 0xbe, 0xf0, 0xba, + 0x38, 0xe5, 0x13, 0x8d, 0xee, 0x54, 0x2d, 0xa0, 0xf5, 0xd6, 0x02, 0xbf, 0x1b, 0x85, 0xf9, 0x1e, + 0x69, 0xb9, 0xab, 0x7e, 0x08, 0xb3, 0xa4, 0x15, 0x86, 0x41, 0x44, 0xb1, 0x6d, 0x5a, 0xae, 0xc3, + 0x4f, 0x07, 0xb1, 0xa9, 0x8c, 0xa1, 0x62, 0xaa, 0x8f, 0xe2, 0xfa, 0x8e, 0xd2, 0xba, 0x2e, 0x94, + 0xaa, 0x50, 0xee, 0x22, 0xeb, 0x4f, 0xc1, 0x94, 0xd0, 0x1e, 0x5f, 0x49, 0x84, 0xf3, 0x93, 0x82, + 0xaa, 0x2e, 0x24, 0xb7, 0x61, 0xda, 0xc3, 0x5e, 0x03, 0x47, 0x64, 0xcf, 0x09, 0x45, 0xf0, 0x0d, + 0x2a, 0xce, 0xd5, 0xd3, 0x5d, 0xfb, 0x72, 0x7d, 0x3b, 0x16, 0x13, 0x1d, 0x6b, 0x2f, 0xf5, 0xcd, + 0xb2, 0x92, 0xc2, 0x4f, 0xde, 0xe6, 0x4b, 0x46, 0x49, 0x52, 0x32, 0x4a, 0xad, 0x42, 0x0f, 0xbc, + 0xec, 0xa6, 0xa6, 0xae, 0x20, 0xaa, 0xf7, 0xdd, 0xf2, 0x29, 0xbf, 0x59, 0x15, 0x8c, 0x59, 0x39, + 0xb4, 0x23, 0xda, 0xde, 0x2d, 0x9f, 0xe7, 0xe4, 0x44, 0x8b, 0xd8, 0x64, 0xc3, 0xe2, 0x6e, 0x55, + 0x32, 0x66, 0x12, 0x03, 0x3b, 0x8c, 0xae, 0x5f, 0x84, 0x99, 0xc4, 0x05, 0x59, 0xf0, 0x16, 0x39, + 0x6f, 0xe2, 0xe2, 0x2c, 0x58, 0x37, 0x60, 0x42, 0xdd, 0x5f, 0x38, 0x3e, 0x25, 0x8e, 0xcf, 0xb9, + 0x74, 0xa4, 0x4a, 0x8e, 0xc4, 0xad, 0x85, 0xa3, 0x32, 0xde, 0xee, 0x7c, 0xe8, 0xdf, 0x81, 0xca, + 0x2e, 0x72, 0xdc, 0x20, 0xb1, 0x28, 0xa6, 0xe3, 0x5b, 0x11, 0xf6, 0xb0, 0x4f, 0xcb, 0xc0, 0x4b, + 0xd3, 0xb2, 0xe2, 0x88, 0xb5, 0xc8, 0x71, 0xfd, 0x0a, 0x94, 0x1d, 0xdf, 0xa1, 0x0e, 0x72, 0xcd, + 0x6e, 0x2d, 0xe5, 0x71, 0x51, 0xd6, 0xca, 0xf1, 0x57, 0xd3, 0x2a, 0xf4, 0x97, 0x61, 0xc1, 0x21, + 0x66, 0xd3, 0x0d, 0x1a, 0xc8, 0x35, 0x3b, 0xad, 0x1b, 0xec, 0xa3, 0x86, 0x8b, 0xed, 0xf2, 0x04, + 0x3f, 0x91, 0xcb, 0x0e, 0xd9, 0xe0, 0x1c, 0x71, 0x6d, 0x7b, 0x43, 0x8c, 0x57, 0xd6, 0x61, 0x2e, + 0x33, 0xe8, 0x8e, 0xb5, 0xd1, 0xde, 0x81, 0x93, 0x5b, 0x0e, 0xa1, 0x32, 0x9a, 0xe3, 0xb3, 0x6b, + 0x01, 0x4a, 0x9d, 0x7b, 0xb0, 0xb8, 0x7d, 0x14, 0xc3, 0x01, 0x17, 0xe0, 0xcc, 0xce, 0xd4, 0xaf, + 0x34, 0x38, 0x95, 0x56, 0x2e, 0x37, 0xe1, 0x1b, 0x50, 0x94, 0x01, 0x35, 0xb8, 0x02, 0xed, 0x7a, + 0x59, 0x90, 0x7a, 0xb6, 0xe5, 0x9b, 0xad, 0x11, 0x2b, 0x19, 0xda, 0xa2, 0xdf, 0x68, 0xb0, 0xb4, + 0x66, 0xdb, 0x6f, 0x44, 0xa2, 0xb8, 0x61, 0xc7, 0x3b, 0xed, 0x4e, 0x30, 0x17, 0x61, 0x66, 0x37, + 0x0a, 0x7c, 0x8a, 0x7d, 0xbb, 0xeb, 0x35, 0x6d, 0x5a, 0xd1, 0xd5, 0x8b, 0xda, 0x06, 0x2c, 0x8b, + 0xc5, 0x32, 0x23, 0xae, 0xc9, 0x54, 0x5b, 0xc7, 0x0a, 0x7c, 0x1f, 0x5b, 0x71, 0x1d, 0x5b, 0x34, + 0x16, 0x05, 0x5f, 0x6a, 0xc2, 0xf5, 0x98, 0xa9, 0x56, 0x83, 0xe5, 0xfe, 0x66, 0xc9, 0x62, 0xe3, + 0x15, 0xa8, 0x88, 0x72, 0x24, 0xd3, 0xea, 0x21, 0xd2, 0xe2, 0x22, 0x2c, 0x64, 0x2a, 0x90, 0xfa, + 0x7f, 0x9d, 0x17, 0x6f, 0x1c, 0x31, 0xca, 0x3c, 0x6d, 0x28, 0xfd, 0x3b, 0x30, 0xc7, 0x6f, 0x6f, + 0x7b, 0x18, 0x45, 0xb4, 0x81, 0x11, 0x35, 0xef, 0x3a, 0x74, 0xcf, 0xf1, 0xe5, 0x0d, 0xea, 0x4c, + 0x4f, 0xfb, 0xea, 0xba, 0xfc, 0xc7, 0xc8, 0xb5, 0x91, 0x8f, 0x3e, 0x5f, 0xd2, 0x8c, 0x93, 0x4c, + 0xfa, 0x35, 0x25, 0x7c, 0x9b, 0xcb, 0xea, 0x4b, 0x30, 0x1e, 0x85, 0x56, 0x8c, 0xb2, 0x6c, 0x47, + 0x46, 0xa1, 0xa5, 0x00, 0x9e, 0x87, 0x31, 0xfe, 0xaa, 0x19, 0xf7, 0x23, 0x47, 0xd9, 0x27, 0xef, + 0x3b, 0x8e, 0x44, 0x81, 0x2b, 0x9a, 0x67, 0x53, 0xc9, 0x03, 0x39, 0xab, 0x49, 0x97, 0xf2, 0xc8, + 0x08, 0x5c, 0x6c, 0x70, 0x61, 0xfd, 0x5d, 0xa8, 0x10, 0x4c, 0xf8, 0x76, 0xe7, 0xfd, 0x25, 0x6c, + 0x9b, 0x68, 0x97, 0x21, 0xc8, 0xfb, 0x72, 0x85, 0x21, 0xfb, 0x72, 0xf3, 0x52, 0xc7, 0x8e, 0x50, + 0xb1, 0xc6, 0x34, 0xf0, 0xbe, 0x64, 0x6a, 0x0f, 0x8d, 0x1e, 0xbd, 0x87, 0xc6, 0xb2, 0x22, 0xf6, + 0x63, 0xf9, 0xe4, 0xd3, 0xbd, 0x2a, 0x72, 0x27, 0xdd, 0x84, 0x29, 0x64, 0x51, 0xa7, 0x8d, 0x4d, + 0x99, 0xe6, 0xe5, 0x7e, 0x7a, 0xf6, 0xa8, 0x53, 0x22, 0x8d, 0xc9, 0xa4, 0x50, 0x22, 0xb5, 0x0f, + 0xbd, 0x9d, 0x7e, 0x9f, 0x83, 0x39, 0x71, 0xf1, 0xec, 0xbe, 0xea, 0xde, 0x80, 0x11, 0xde, 0x12, + 0xd6, 0xf8, 0xfa, 0x5c, 0x1e, 0xbc, 0x3e, 0xd7, 0xf9, 0x0b, 0x13, 0xa5, 0x38, 0x7a, 0xab, 0x85, + 0x65, 0x1d, 0xc1, 0xc5, 0x07, 0x3d, 0x59, 0xb3, 0x73, 0x34, 0x68, 0x45, 0x56, 0xbc, 0xe9, 0x64, + 0x84, 0x4c, 0x0a, 0xaa, 0xf4, 0x4f, 0x7f, 0x81, 0x65, 0x67, 0xc6, 0xc1, 0x30, 0x62, 0x5b, 0x3a, + 0xd1, 0x74, 0x10, 0xbd, 0xc5, 0xb9, 0x78, 0xfc, 0x86, 0x9f, 0xe8, 0x39, 0x64, 0x76, 0x04, 0x0b, + 0x43, 0x77, 0x04, 0x33, 0x5f, 0xbe, 0xfe, 0xa3, 0xc1, 0xe9, 0x6e, 0xbc, 0xe4, 0x42, 0x3e, 0x24, + 0xc0, 0x32, 0x2f, 0xf9, 0xb9, 0x87, 0x78, 0xc9, 0xcf, 0xf2, 0x35, 0x9f, 0xe5, 0xeb, 0x3f, 0x34, + 0x98, 0x7f, 0xb3, 0x15, 0x35, 0xf1, 0xd7, 0x31, 0x3a, 0x6a, 0x15, 0x28, 0xf7, 0x3a, 0x27, 0x13, + 0xe9, 0x1f, 0x72, 0x30, 0xbf, 0x8d, 0xbf, 0xa6, 0x9e, 0x3f, 0x92, 0x7d, 0x71, 0x0d, 0xca, 0xbd, + 0x80, 0x1d, 0xaf, 0x31, 0xce, 0xff, 0xdf, 0x64, 0xe0, 0xdd, 0x08, 0x93, 0x3d, 0x75, 0xd5, 0x4a, + 0x3d, 0x29, 0x3e, 0xa6, 0xff, 0x37, 0x55, 0xe1, 0x6c, 0xb6, 0x15, 0x9d, 0xe0, 0x58, 0x34, 0x30, + 0xc1, 0xbe, 0xdd, 0xef, 0xed, 0xf3, 0x11, 0x3e, 0xe3, 0x3d, 0x05, 0x53, 0xe9, 0x42, 0x45, 0xd6, + 0xff, 0x93, 0x51, 0xb2, 0x22, 0xc8, 0x78, 0xb0, 0x29, 0x64, 0x3c, 0xd8, 0x3c, 0x09, 0x93, 0x82, + 0x2b, 0xfd, 0xb4, 0x22, 0x98, 0xfa, 0xbd, 0xd2, 0x8c, 0xf5, 0xbc, 0xd2, 0x2c, 0xc1, 0x38, 0xe3, + 0x50, 0x4a, 0x8a, 0x31, 0x83, 0x54, 0x21, 0xda, 0x30, 0xd9, 0x80, 0x49, 0x4c, 0x3f, 0xcc, 0x41, + 0x79, 0x03, 0x53, 0x46, 0x14, 0x1b, 0x65, 0xf8, 0x75, 0x5f, 0x94, 0x2d, 0x59, 0xfe, 0x37, 0x52, + 0xd5, 0x02, 0xa2, 0x4a, 0x91, 0xbe, 0x05, 0xd3, 0x9d, 0x61, 0xf1, 0xc8, 0x99, 0xe7, 0x3b, 0xf7, + 0x5c, 0x9f, 0xfb, 0x70, 0xc7, 0x06, 0xb6, 0x59, 0x27, 0x69, 0xf2, 0xb3, 0xfb, 0xe9, 0x7a, 0xe4, + 0x88, 0xa7, 0xeb, 0xc2, 0xe0, 0xa7, 0xeb, 0xd1, 0xae, 0xa7, 0xeb, 0xda, 0x1e, 0x9c, 0xc9, 0x40, + 0x41, 0x6e, 0xa3, 0xef, 0xa6, 0x9f, 0xa3, 0xbf, 0x3d, 0x4c, 0xbd, 0xbd, 0xe6, 0xba, 0x81, 0x85, + 0x28, 0xb6, 0xe3, 0xa6, 0xb3, 0xd0, 0x71, 0xcd, 0xfd, 0xf4, 0x8b, 0xea, 0x89, 0xcf, 0xbe, 0xa8, + 0x9e, 0xf8, 0xf2, 0x8b, 0xaa, 0xf6, 0xa3, 0xc3, 0xaa, 0xf6, 0xdb, 0xc3, 0xaa, 0xf6, 0xc9, 0x61, + 0x55, 0xfb, 0xf4, 0xb0, 0xaa, 0xfd, 0xeb, 0xb0, 0xaa, 0xfd, 0xfb, 0xb0, 0x7a, 0xe2, 0xcb, 0xc3, + 0xaa, 0x76, 0xef, 0x7e, 0xf5, 0xc4, 0xa7, 0xf7, 0xab, 0x27, 0x3e, 0xbb, 0x5f, 0x3d, 0xf1, 0xce, + 0xf3, 0xcd, 0xa0, 0x33, 0xab, 0x13, 0x0c, 0xf8, 0x73, 0xf3, 0xd5, 0xe4, 0x77, 0x63, 0x94, 0x97, + 0x5e, 0xcf, 0xfd, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x7a, 0x70, 0xd6, 0x17, 0x2d, 0x00, 0x00, } func (this *DescribeMutableStateRequest) Equal(that interface{}) bool { @@ -4673,6 +4780,65 @@ func (this *DescribeClusterResponse) Equal(that interface{}) bool { } return true } +func (this *ListClustersRequest) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*ListClustersRequest) + if !ok { + that2, ok := that.(ListClustersRequest) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.PageSize != that1.PageSize { + return false + } + if !bytes.Equal(this.NextPageToken, that1.NextPageToken) { + return false + } + return true +} +func (this *ListClustersResponse) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*ListClustersResponse) + if !ok { + that2, ok := that.(ListClustersResponse) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if len(this.Clusters) != len(that1.Clusters) { + return false + } + for i := range this.Clusters { + if !this.Clusters[i].Equal(that1.Clusters[i]) { + return false + } + } + if !bytes.Equal(this.NextPageToken, that1.NextPageToken) { + return false + } + return true +} func (this *AddOrUpdateRemoteClusterRequest) Equal(that interface{}) bool { if that == nil { return this == nil @@ -5775,6 +5941,30 @@ func (this *DescribeClusterResponse) GoString() string { s = append(s, "}") return strings.Join(s, "") } +func (this *ListClustersRequest) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 6) + s = append(s, "&adminservice.ListClustersRequest{") + s = append(s, "PageSize: "+fmt.Sprintf("%#v", this.PageSize)+",\n") + s = append(s, "NextPageToken: "+fmt.Sprintf("%#v", this.NextPageToken)+",\n") + s = append(s, "}") + return strings.Join(s, "") +} +func (this *ListClustersResponse) GoString() string { + if this == nil { + return "nil" + } + s := make([]string, 0, 6) + s = append(s, "&adminservice.ListClustersResponse{") + if this.Clusters != nil { + s = append(s, "Clusters: "+fmt.Sprintf("%#v", this.Clusters)+",\n") + } + s = append(s, "NextPageToken: "+fmt.Sprintf("%#v", this.NextPageToken)+",\n") + s = append(s, "}") + return strings.Join(s, "") +} func (this *AddOrUpdateRemoteClusterRequest) GoString() string { if this == nil { return "nil" @@ -7735,6 +7925,85 @@ func (m *DescribeClusterResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) return len(dAtA) - i, nil } +func (m *ListClustersRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ListClustersRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ListClustersRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.NextPageToken) > 0 { + i -= len(m.NextPageToken) + copy(dAtA[i:], m.NextPageToken) + i = encodeVarintRequestResponse(dAtA, i, uint64(len(m.NextPageToken))) + i-- + dAtA[i] = 0x12 + } + if m.PageSize != 0 { + i = encodeVarintRequestResponse(dAtA, i, uint64(m.PageSize)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ListClustersResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ListClustersResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ListClustersResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.NextPageToken) > 0 { + i -= len(m.NextPageToken) + copy(dAtA[i:], m.NextPageToken) + i = encodeVarintRequestResponse(dAtA, i, uint64(len(m.NextPageToken))) + i-- + dAtA[i] = 0x12 + } + if len(m.Clusters) > 0 { + for iNdEx := len(m.Clusters) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Clusters[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRequestResponse(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *AddOrUpdateRemoteClusterRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -9253,6 +9522,41 @@ func (m *DescribeClusterResponse) Size() (n int) { return n } +func (m *ListClustersRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.PageSize != 0 { + n += 1 + sovRequestResponse(uint64(m.PageSize)) + } + l = len(m.NextPageToken) + if l > 0 { + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + +func (m *ListClustersResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Clusters) > 0 { + for _, e := range m.Clusters { + l = e.Size() + n += 1 + l + sovRequestResponse(uint64(l)) + } + } + l = len(m.NextPageToken) + if l > 0 { + n += 1 + l + sovRequestResponse(uint64(l)) + } + return n +} + func (m *AddOrUpdateRemoteClusterRequest) Size() (n int) { if m == nil { return 0 @@ -10136,6 +10440,33 @@ func (this *DescribeClusterResponse) String() string { }, "") return s } +func (this *ListClustersRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&ListClustersRequest{`, + `PageSize:` + fmt.Sprintf("%v", this.PageSize) + `,`, + `NextPageToken:` + fmt.Sprintf("%v", this.NextPageToken) + `,`, + `}`, + }, "") + return s +} +func (this *ListClustersResponse) String() string { + if this == nil { + return "nil" + } + repeatedStringForClusters := "[]*ClusterMetadata{" + for _, f := range this.Clusters { + repeatedStringForClusters += strings.Replace(fmt.Sprintf("%v", f), "ClusterMetadata", "v11.ClusterMetadata", 1) + "," + } + repeatedStringForClusters += "}" + s := strings.Join([]string{`&ListClustersResponse{`, + `Clusters:` + repeatedStringForClusters + `,`, + `NextPageToken:` + fmt.Sprintf("%v", this.NextPageToken) + `,`, + `}`, + }, "") + return s +} func (this *AddOrUpdateRemoteClusterRequest) String() string { if this == nil { return "nil" @@ -15829,6 +16160,233 @@ func (m *DescribeClusterResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *ListClustersRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ListClustersRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ListClustersRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field PageSize", wireType) + } + m.PageSize = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.PageSize |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NextPageToken", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.NextPageToken = append(m.NextPageToken[:0], dAtA[iNdEx:postIndex]...) + if m.NextPageToken == nil { + m.NextPageToken = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ListClustersResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ListClustersResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ListClustersResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Clusters", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Clusters = append(m.Clusters, &v11.ClusterMetadata{}) + if err := m.Clusters[len(m.Clusters)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field NextPageToken", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRequestResponse + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthRequestResponse + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthRequestResponse + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.NextPageToken = append(m.NextPageToken[:0], dAtA[iNdEx:postIndex]...) + if m.NextPageToken == nil { + m.NextPageToken = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRequestResponse(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRequestResponse + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *AddOrUpdateRemoteClusterRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/api/adminservice/v1/service.pb.go b/api/adminservice/v1/service.pb.go index e65c946aac4..a1103bbe96e 100644 --- a/api/adminservice/v1/service.pb.go +++ b/api/adminservice/v1/service.pb.go @@ -54,61 +54,63 @@ func init() { } var fileDescriptor_cf5ca5e0c737570d = []byte{ - // 863 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x98, 0xbf, 0x6f, 0x23, 0x45, - 0x14, 0xc7, 0x3d, 0x0d, 0x42, 0x23, 0x7e, 0x2e, 0x08, 0x41, 0x8a, 0x25, 0x82, 0xde, 0x56, 0x02, - 0x04, 0x61, 0x13, 0x6c, 0xc7, 0x31, 0x8e, 0x84, 0x0d, 0xc4, 0x0e, 0x41, 0xa2, 0x41, 0x63, 0xef, - 0x4b, 0x32, 0xca, 0xda, 0xbb, 0xcc, 0xcc, 0x3a, 0xb8, 0x82, 0x12, 0x09, 0x09, 0x81, 0x84, 0x74, - 0xd2, 0x49, 0x57, 0x5d, 0x73, 0x27, 0xdd, 0xdf, 0x70, 0xd2, 0x75, 0x57, 0xa6, 0x4c, 0x79, 0x71, - 0x9a, 0x2b, 0x53, 0x5d, 0x7d, 0xda, 0xac, 0x67, 0xb2, 0x6b, 0xcf, 0x45, 0x33, 0xeb, 0x74, 0x71, - 0x76, 0x3f, 0xdf, 0xf9, 0x78, 0xf4, 0xe6, 0xed, 0x5b, 0xe3, 0x35, 0x01, 0xc3, 0x30, 0x60, 0xc4, - 0x2f, 0x71, 0x60, 0x63, 0x60, 0x25, 0x12, 0xd2, 0x12, 0xf1, 0x86, 0x74, 0x14, 0x7f, 0xa6, 0x03, - 0x28, 0x8d, 0xd7, 0x4a, 0xb3, 0x3f, 0x8b, 0x21, 0x0b, 0x44, 0xe0, 0x7c, 0x2a, 0x91, 0x62, 0x82, - 0x14, 0x49, 0x48, 0x8b, 0x69, 0xa4, 0x38, 0x5e, 0x5b, 0x29, 0x9b, 0xe4, 0x32, 0xf8, 0x2d, 0x02, - 0x2e, 0x7e, 0x65, 0xc0, 0xc3, 0x60, 0xc4, 0x67, 0x0b, 0xac, 0xbf, 0x58, 0xc5, 0x6f, 0xd4, 0xe3, - 0x5b, 0x7b, 0xc9, 0xad, 0xce, 0x3d, 0x84, 0xdf, 0xdf, 0x06, 0x3e, 0x60, 0xb4, 0x0f, 0x9d, 0x48, - 0x90, 0xbe, 0x0f, 0x3d, 0x41, 0x04, 0x38, 0xb5, 0xa2, 0x81, 0x4b, 0x51, 0x87, 0x76, 0x93, 0xa5, - 0x57, 0xea, 0x4b, 0x24, 0x24, 0xd2, 0x9f, 0x14, 0x9c, 0xbb, 0x08, 0xbf, 0x27, 0x6f, 0xd9, 0xa1, - 0x5c, 0x04, 0x6c, 0xb2, 0x13, 0x70, 0xe1, 0x54, 0xad, 0xc2, 0x53, 0xa4, 0xb4, 0xab, 0xe5, 0x0f, - 0x50, 0x72, 0x13, 0xfc, 0x7a, 0x0b, 0x44, 0xef, 0x88, 0x30, 0xcf, 0xf9, 0xdc, 0x28, 0x4f, 0xde, - 0x2e, 0x2d, 0xbe, 0xb0, 0xa4, 0xd4, 0xd2, 0x7f, 0x60, 0xdc, 0xf0, 0x03, 0x0e, 0xc9, 0xe2, 0x1b, - 0x46, 0x31, 0xd7, 0x80, 0x5c, 0xfe, 0x4b, 0x6b, 0x4e, 0x09, 0xfc, 0x8f, 0xf0, 0xbb, 0x6d, 0xca, - 0xc5, 0x1e, 0x23, 0x23, 0x7e, 0x00, 0x6c, 0x8f, 0xf0, 0x63, 0xee, 0x6c, 0x1a, 0x05, 0x2e, 0x70, - 0xd2, 0xe7, 0x9b, 0xbc, 0xb8, 0xd2, 0xfa, 0x1b, 0xe1, 0xb7, 0xae, 0xae, 0xd3, 0xa1, 0x74, 0x2a, - 0x9b, 0x87, 0x2a, 0x48, 0x0a, 0x55, 0x72, 0xb1, 0xca, 0x26, 0x3e, 0x5d, 0xf1, 0xc5, 0x2e, 0x84, - 0x3e, 0x1d, 0x10, 0x41, 0x83, 0x51, 0xe2, 0x54, 0x33, 0xce, 0x9d, 0x47, 0xed, 0x4e, 0x97, 0x3e, - 0x21, 0x73, 0xba, 0xe2, 0x5b, 0xf6, 0x29, 0xa7, 0x7d, 0xea, 0x53, 0x31, 0x49, 0xf4, 0xaa, 0xc6, - 0xe1, 0x73, 0xa4, 0xdd, 0xe9, 0xd2, 0x06, 0xa4, 0x4b, 0xbc, 0x0b, 0xc3, 0x60, 0x0c, 0xf1, 0x05, - 0xc3, 0x12, 0xbf, 0x06, 0xec, 0x4a, 0x3c, 0xcd, 0x29, 0x81, 0x27, 0x08, 0xaf, 0xb6, 0x40, 0xfc, - 0x1c, 0xb0, 0xe3, 0x03, 0x3f, 0x38, 0x69, 0xfe, 0x0e, 0x83, 0x28, 0xde, 0xc5, 0x2e, 0x39, 0x99, - 0xf5, 0x83, 0xfd, 0x75, 0xa7, 0x6d, 0x7a, 0x82, 0x6f, 0x8c, 0x91, 0xb6, 0x9d, 0x5b, 0x4a, 0x53, - 0xdf, 0xe1, 0x3e, 0xc2, 0x1f, 0xb4, 0x20, 0x5d, 0x03, 0x1d, 0xe0, 0x9c, 0x1c, 0x02, 0x77, 0xb6, - 0x4c, 0xd7, 0xd2, 0xc0, 0xd2, 0xb7, 0xb1, 0x54, 0x86, 0xb2, 0x7c, 0x8c, 0xf0, 0xc7, 0x2d, 0x10, - 0xdf, 0x93, 0x21, 0xf0, 0x90, 0x0c, 0x40, 0xa7, 0xfb, 0x9d, 0xe9, 0x52, 0x37, 0xa5, 0x48, 0xef, - 0xf6, 0xed, 0x84, 0xa9, 0x2f, 0xf0, 0x08, 0xe1, 0x8f, 0x5a, 0x20, 0xb6, 0xdb, 0xbb, 0x3a, 0xf5, - 0xa6, 0xe9, 0x6a, 0x7a, 0x5e, 0x4a, 0x7f, 0xbb, 0x6c, 0x8c, 0xd2, 0xfd, 0x0b, 0xe1, 0x37, 0xbb, - 0x40, 0xc2, 0xd0, 0x9f, 0x34, 0xc7, 0x30, 0x12, 0xdc, 0xf9, 0xca, 0xf0, 0x98, 0xa4, 0x18, 0xa9, - 0x55, 0xce, 0x83, 0x66, 0x5a, 0x50, 0xdd, 0xf3, 0x7a, 0x40, 0xd8, 0xe0, 0xa8, 0x2e, 0x04, 0xa3, - 0xfd, 0x48, 0x80, 0x69, 0x0b, 0xd2, 0x90, 0x76, 0x2d, 0x48, 0x1b, 0x90, 0x39, 0x3d, 0x49, 0x6b, - 0x58, 0xf0, 0xdb, 0xb2, 0xe8, 0x2b, 0xaf, 0x52, 0x6c, 0x2c, 0x95, 0x91, 0xd9, 0xc2, 0x78, 0x44, - 0xc8, 0xb7, 0x85, 0x1a, 0xd2, 0x6e, 0x0b, 0xb5, 0x01, 0x4a, 0xee, 0x1f, 0x84, 0xdf, 0x96, 0x53, - 0x54, 0xc3, 0x8f, 0xb8, 0x00, 0xe6, 0x54, 0xac, 0x66, 0xaf, 0x19, 0x25, 0xa5, 0xbe, 0xce, 0x07, - 0x2b, 0xa1, 0x3b, 0x08, 0x3b, 0xf1, 0x83, 0x67, 0x76, 0xa5, 0x03, 0xc3, 0x3e, 0x30, 0xee, 0x98, - 0x8f, 0x1e, 0x59, 0x50, 0x6a, 0x55, 0x73, 0xf3, 0xca, 0xec, 0x21, 0xc2, 0x1f, 0xd6, 0x3d, 0xef, - 0x07, 0xf6, 0x53, 0xe8, 0x5d, 0x4d, 0xc1, 0xc3, 0x40, 0xa8, 0x3d, 0xdb, 0x36, 0x2d, 0x67, 0x2d, - 0x2e, 0x2d, 0x9b, 0x4b, 0xa6, 0x64, 0x6a, 0x2e, 0x29, 0xcc, 0xac, 0x66, 0xd5, 0xa2, 0xa4, 0xb5, - 0x86, 0xb5, 0xfc, 0x01, 0x99, 0x21, 0x30, 0x69, 0x83, 0xaa, 0x05, 0x97, 0x2d, 0x7a, 0xe7, 0x7c, - 0xdf, 0xad, 0xe4, 0x62, 0x95, 0xcd, 0x7f, 0x08, 0xbf, 0xf3, 0x63, 0xc4, 0x0e, 0x21, 0xed, 0x63, - 0x56, 0xc5, 0xf3, 0x98, 0x34, 0xda, 0xcc, 0x49, 0x67, 0x9c, 0x3a, 0x90, 0xcb, 0x69, 0x1e, 0xb3, - 0x73, 0x5a, 0xa4, 0x33, 0xc3, 0x72, 0x17, 0x0e, 0x18, 0xf0, 0x23, 0x39, 0xdd, 0xd8, 0x0c, 0xcb, - 0x3a, 0xd4, 0x6e, 0x58, 0xd6, 0x27, 0xcc, 0x3d, 0x0c, 0x38, 0x8c, 0xbc, 0x85, 0x71, 0xde, 0xf4, - 0x61, 0xa0, 0x83, 0x6d, 0x1f, 0x06, 0xfa, 0x8c, 0xcc, 0x7b, 0x59, 0x0b, 0x44, 0xfc, 0xef, 0xdd, - 0x08, 0x22, 0xb0, 0x79, 0x2f, 0x5b, 0xe0, 0xec, 0xde, 0xcb, 0x34, 0xb8, 0xd4, 0xda, 0xf2, 0x4f, - 0xcf, 0xdd, 0xc2, 0xd9, 0xb9, 0x5b, 0xb8, 0x3c, 0x77, 0xd1, 0x9f, 0x53, 0x17, 0x3d, 0x98, 0xba, - 0xe8, 0xe9, 0xd4, 0x45, 0xa7, 0x53, 0x17, 0x3d, 0x9b, 0xba, 0xe8, 0xf9, 0xd4, 0x2d, 0x5c, 0x4e, - 0x5d, 0xf4, 0xef, 0x85, 0x5b, 0x38, 0xbd, 0x70, 0x0b, 0x67, 0x17, 0x6e, 0xe1, 0x97, 0x8d, 0xc3, - 0xe0, 0x7a, 0x65, 0x1a, 0xdc, 0xf0, 0x83, 0x47, 0x25, 0xfd, 0xb9, 0xff, 0xda, 0xd5, 0xaf, 0x1d, - 0x9f, 0xbd, 0x0c, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xa1, 0x1d, 0xf0, 0x83, 0x11, 0x00, 0x00, + // 882 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x98, 0x4d, 0x6f, 0x23, 0x35, + 0x18, 0xc7, 0xe3, 0x0b, 0x42, 0x56, 0x79, 0x1b, 0x10, 0x82, 0x1e, 0x86, 0xb7, 0x7b, 0xa2, 0x16, + 0x28, 0x34, 0xa1, 0x4d, 0xd2, 0x34, 0xa4, 0x12, 0x09, 0xd0, 0xa4, 0x14, 0x89, 0x0b, 0x72, 0x32, + 0x4f, 0x5b, 0xab, 0x93, 0xcc, 0x60, 0x7b, 0x52, 0x72, 0x82, 0x0b, 0x12, 0x12, 0x12, 0x02, 0x09, + 0x09, 0x09, 0x89, 0x13, 0x17, 0x90, 0xf8, 0x0c, 0x48, 0xdc, 0xf6, 0xd8, 0x63, 0x8f, 0xdb, 0xf4, + 0xb2, 0xc7, 0x7e, 0x82, 0xd5, 0x6a, 0x3a, 0xb1, 0x3b, 0x93, 0x78, 0x2b, 0x7b, 0xd2, 0xdb, 0x66, + 0xed, 0xdf, 0xdf, 0xbf, 0x4c, 0xfd, 0xd8, 0xcf, 0x04, 0xaf, 0x09, 0x18, 0x86, 0x01, 0x23, 0x7e, + 0x89, 0x03, 0x1b, 0x03, 0x2b, 0x91, 0x90, 0x96, 0x88, 0x37, 0xa4, 0xa3, 0xf8, 0x33, 0x1d, 0x40, + 0x69, 0xbc, 0x56, 0x9a, 0xfd, 0xb3, 0x18, 0xb2, 0x40, 0x04, 0xce, 0x3b, 0x12, 0x29, 0x26, 0x48, + 0x91, 0x84, 0xb4, 0x98, 0x46, 0x8a, 0xe3, 0xb5, 0xd5, 0xb2, 0x49, 0x2e, 0x83, 0x6f, 0x22, 0xe0, + 0xe2, 0x6b, 0x06, 0x3c, 0x0c, 0x46, 0x7c, 0xb6, 0xc0, 0xfa, 0xe3, 0xb7, 0xf0, 0x4a, 0x3d, 0x9e, + 0xda, 0x4b, 0xa6, 0x3a, 0x7f, 0x22, 0xfc, 0xca, 0x2e, 0xf0, 0x01, 0xa3, 0x7d, 0xe8, 0x44, 0x82, + 0xf4, 0x7d, 0xe8, 0x09, 0x22, 0xc0, 0xa9, 0x15, 0x0d, 0x5c, 0x8a, 0x3a, 0xb4, 0x9b, 0x2c, 0xbd, + 0x5a, 0x5f, 0x22, 0x21, 0x91, 0x7e, 0xbb, 0xe0, 0xfc, 0x81, 0xf0, 0xcb, 0x72, 0xca, 0x1e, 0xe5, + 0x22, 0x60, 0x93, 0xbd, 0x80, 0x0b, 0xa7, 0x6a, 0x15, 0x9e, 0x22, 0xa5, 0x5d, 0x2d, 0x7f, 0x80, + 0x92, 0x9b, 0xe0, 0x67, 0x5b, 0x20, 0x7a, 0x27, 0x84, 0x79, 0xce, 0x7b, 0x46, 0x79, 0x72, 0xba, + 0xb4, 0x78, 0xdf, 0x92, 0x52, 0x4b, 0x7f, 0x87, 0x71, 0xc3, 0x0f, 0x38, 0x24, 0x8b, 0x6f, 0x18, + 0xc5, 0xdc, 0x02, 0x72, 0xf9, 0x0f, 0xac, 0x39, 0x25, 0xf0, 0x1b, 0xc2, 0x2f, 0xb5, 0x29, 0x17, + 0x07, 0x8c, 0x8c, 0xf8, 0x11, 0xb0, 0x03, 0xc2, 0x4f, 0xb9, 0xb3, 0x65, 0x14, 0xb8, 0xc0, 0x49, + 0x9f, 0xed, 0xbc, 0xb8, 0xd2, 0xfa, 0x09, 0xe1, 0xe7, 0x6f, 0xc6, 0xe9, 0x50, 0x3a, 0x95, 0xcd, + 0x43, 0x15, 0x24, 0x85, 0x2a, 0xb9, 0x58, 0x65, 0x13, 0x57, 0x57, 0x3c, 0xd8, 0x85, 0xd0, 0xa7, + 0x03, 0x22, 0x68, 0x30, 0x4a, 0x9c, 0x6a, 0xc6, 0xb9, 0xf3, 0xa8, 0x5d, 0x75, 0xe9, 0x13, 0x32, + 0xd5, 0x15, 0x4f, 0x39, 0xa4, 0x9c, 0xf6, 0xa9, 0x4f, 0xc5, 0x24, 0xd1, 0xab, 0x1a, 0x87, 0xcf, + 0x91, 0x76, 0xd5, 0xa5, 0x0d, 0x48, 0x6f, 0xf1, 0x2e, 0x0c, 0x83, 0x31, 0xc4, 0x03, 0x86, 0x5b, + 0xfc, 0x16, 0xb0, 0xdb, 0xe2, 0x69, 0x4e, 0x09, 0xfc, 0x8f, 0xf0, 0x9b, 0x2d, 0x10, 0x5f, 0x06, + 0xec, 0xf4, 0xc8, 0x0f, 0xce, 0x9a, 0xdf, 0xc2, 0x20, 0x8a, 0x9f, 0x62, 0x97, 0x9c, 0xcd, 0xce, + 0x83, 0xc3, 0x75, 0xa7, 0x6d, 0x5a, 0xc1, 0x77, 0xc6, 0x48, 0xdb, 0xce, 0x3d, 0xa5, 0xa9, 0xef, + 0xf0, 0x17, 0xc2, 0xaf, 0xb6, 0x20, 0xbd, 0x07, 0x3a, 0xc0, 0x39, 0x39, 0x06, 0xee, 0xec, 0x98, + 0xae, 0xa5, 0x81, 0xa5, 0x6f, 0x63, 0xa9, 0x0c, 0x65, 0xf9, 0x1f, 0xc2, 0x6f, 0xb4, 0x40, 0x7c, + 0x4a, 0x86, 0xc0, 0x43, 0x32, 0x00, 0x9d, 0xee, 0x27, 0xa6, 0x4b, 0xdd, 0x95, 0x22, 0xbd, 0xdb, + 0xf7, 0x13, 0xa6, 0xbe, 0xc0, 0xbf, 0x08, 0xbf, 0xde, 0x02, 0xb1, 0xdb, 0xde, 0xd7, 0xa9, 0x37, + 0x4d, 0x57, 0xd3, 0xf3, 0x52, 0xfa, 0xe3, 0x65, 0x63, 0x94, 0xee, 0x8f, 0x08, 0x3f, 0xd7, 0x05, + 0x12, 0x86, 0xfe, 0xa4, 0x39, 0x86, 0x91, 0xe0, 0xce, 0xa6, 0x61, 0x99, 0xa4, 0x18, 0xa9, 0x55, + 0xce, 0x83, 0x66, 0x8e, 0xa0, 0xba, 0xe7, 0xf5, 0x80, 0xb0, 0xc1, 0x49, 0x5d, 0x08, 0x46, 0xfb, + 0x91, 0x00, 0xd3, 0x23, 0x48, 0x43, 0xda, 0x1d, 0x41, 0xda, 0x80, 0x4c, 0xf5, 0x24, 0x47, 0xc3, + 0x82, 0xdf, 0x8e, 0xc5, 0xb9, 0xf2, 0x34, 0xc5, 0xc6, 0x52, 0x19, 0x99, 0x47, 0x18, 0xb7, 0x08, + 0xf9, 0x1e, 0xa1, 0x86, 0xb4, 0x7b, 0x84, 0xda, 0x00, 0x25, 0xf7, 0x33, 0xc2, 0x2f, 0xc8, 0x2e, + 0xaa, 0xe1, 0x47, 0x5c, 0x00, 0x73, 0x2a, 0x56, 0xbd, 0xd7, 0x8c, 0x92, 0x52, 0x1f, 0xe5, 0x83, + 0x95, 0xd0, 0x0f, 0x08, 0xaf, 0xc4, 0x17, 0xcf, 0x6c, 0x84, 0x3b, 0x1f, 0x1a, 0xdf, 0x55, 0x12, + 0x91, 0x2a, 0x9b, 0x39, 0x48, 0xe5, 0xf1, 0x3b, 0xc2, 0x4e, 0x6a, 0xa8, 0x03, 0xc3, 0x7e, 0x6c, + 0xb3, 0x6d, 0x9b, 0x39, 0x03, 0xa5, 0x53, 0x35, 0x37, 0xaf, 0xcc, 0xfe, 0x41, 0xf8, 0xb5, 0xba, + 0xe7, 0x7d, 0xc6, 0xbe, 0x08, 0xbd, 0x9b, 0x6e, 0x7c, 0x18, 0x08, 0xf5, 0xb7, 0xdb, 0x35, 0x2d, + 0x2b, 0x2d, 0x2e, 0x2d, 0x9b, 0x4b, 0xa6, 0x64, 0xf6, 0x7e, 0x52, 0x20, 0x59, 0xcd, 0xaa, 0x45, + 0x69, 0x69, 0x0d, 0x6b, 0xf9, 0x03, 0x32, 0xcd, 0x68, 0x72, 0x1c, 0xab, 0xab, 0xa0, 0x6c, 0x71, + 0x86, 0xcf, 0x9f, 0xff, 0x95, 0x5c, 0xac, 0xb2, 0xf9, 0x15, 0xe1, 0x17, 0x3f, 0x8f, 0xd8, 0x31, + 0xa4, 0x7d, 0xcc, 0xaa, 0x69, 0x1e, 0x93, 0x46, 0x5b, 0x39, 0xe9, 0x8c, 0x53, 0x07, 0x72, 0x39, + 0xcd, 0x63, 0x76, 0x4e, 0x8b, 0x74, 0xa6, 0x69, 0xef, 0xc2, 0x11, 0x03, 0x7e, 0x22, 0xbb, 0x2c, + 0x9b, 0xa6, 0x5d, 0x87, 0xda, 0x35, 0xed, 0xfa, 0x84, 0xb9, 0x4b, 0x89, 0xc3, 0xc8, 0x5b, 0x78, + 0xad, 0x30, 0xbd, 0x94, 0x74, 0xb0, 0xed, 0xa5, 0xa4, 0xcf, 0xc8, 0xbc, 0x1f, 0xb6, 0x40, 0xc4, + 0xff, 0xbd, 0x1f, 0x41, 0x04, 0x36, 0xef, 0x87, 0x0b, 0x9c, 0xdd, 0xfb, 0xa1, 0x06, 0x97, 0x5a, + 0x3b, 0xfe, 0xf9, 0xa5, 0x5b, 0xb8, 0xb8, 0x74, 0x0b, 0xd7, 0x97, 0x2e, 0xfa, 0x7e, 0xea, 0xa2, + 0xbf, 0xa7, 0x2e, 0x7a, 0x30, 0x75, 0xd1, 0xf9, 0xd4, 0x45, 0x0f, 0xa7, 0x2e, 0x7a, 0x34, 0x75, + 0x0b, 0xd7, 0x53, 0x17, 0xfd, 0x72, 0xe5, 0x16, 0xce, 0xaf, 0xdc, 0xc2, 0xc5, 0x95, 0x5b, 0xf8, + 0x6a, 0xe3, 0x38, 0xb8, 0x5d, 0x99, 0x06, 0x77, 0xfc, 0xf0, 0x52, 0x49, 0x7f, 0xee, 0x3f, 0x73, + 0xf3, 0xab, 0xcb, 0xbb, 0x4f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x23, 0x08, 0x99, 0xa1, 0x0b, 0x12, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -155,6 +157,8 @@ type AdminServiceClient interface { GetSearchAttributes(ctx context.Context, in *GetSearchAttributesRequest, opts ...grpc.CallOption) (*GetSearchAttributesResponse, error) // DescribeCluster returns information about Temporal cluster. DescribeCluster(ctx context.Context, in *DescribeClusterRequest, opts ...grpc.CallOption) (*DescribeClusterResponse, error) + // ListClusters returns information about Temporal clusters. + ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error) // ListClusterMembers returns information about Temporal cluster members. ListClusterMembers(ctx context.Context, in *ListClusterMembersRequest, opts ...grpc.CallOption) (*ListClusterMembersResponse, error) // AddOrUpdateRemoteCluster adds or updates remote cluster. @@ -347,6 +351,15 @@ func (c *adminServiceClient) DescribeCluster(ctx context.Context, in *DescribeCl return out, nil } +func (c *adminServiceClient) ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error) { + out := new(ListClustersResponse) + err := c.cc.Invoke(ctx, "/temporal.server.api.adminservice.v1.AdminService/ListClusters", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *adminServiceClient) ListClusterMembers(ctx context.Context, in *ListClusterMembersRequest, opts ...grpc.CallOption) (*ListClusterMembersResponse, error) { out := new(ListClusterMembersResponse) err := c.cc.Invoke(ctx, "/temporal.server.api.adminservice.v1.AdminService/ListClusterMembers", in, out, opts...) @@ -462,6 +475,8 @@ type AdminServiceServer interface { GetSearchAttributes(context.Context, *GetSearchAttributesRequest) (*GetSearchAttributesResponse, error) // DescribeCluster returns information about Temporal cluster. DescribeCluster(context.Context, *DescribeClusterRequest) (*DescribeClusterResponse, error) + // ListClusters returns information about Temporal clusters. + ListClusters(context.Context, *ListClustersRequest) (*ListClustersResponse, error) // ListClusterMembers returns information about Temporal cluster members. ListClusterMembers(context.Context, *ListClusterMembersRequest) (*ListClusterMembersResponse, error) // AddOrUpdateRemoteCluster adds or updates remote cluster. @@ -542,6 +557,9 @@ func (*UnimplementedAdminServiceServer) GetSearchAttributes(ctx context.Context, func (*UnimplementedAdminServiceServer) DescribeCluster(ctx context.Context, req *DescribeClusterRequest) (*DescribeClusterResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method DescribeCluster not implemented") } +func (*UnimplementedAdminServiceServer) ListClusters(ctx context.Context, req *ListClustersRequest) (*ListClustersResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListClusters not implemented") +} func (*UnimplementedAdminServiceServer) ListClusterMembers(ctx context.Context, req *ListClusterMembersRequest) (*ListClusterMembersResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ListClusterMembers not implemented") } @@ -898,6 +916,24 @@ func _AdminService_DescribeCluster_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _AdminService_ListClusters_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListClustersRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AdminServiceServer).ListClusters(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/temporal.server.api.adminservice.v1.AdminService/ListClusters", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AdminServiceServer).ListClusters(ctx, req.(*ListClustersRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _AdminService_ListClusterMembers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ListClusterMembersRequest) if err := dec(in); err != nil { @@ -1136,6 +1172,10 @@ var _AdminService_serviceDesc = grpc.ServiceDesc{ MethodName: "DescribeCluster", Handler: _AdminService_DescribeCluster_Handler, }, + { + MethodName: "ListClusters", + Handler: _AdminService_ListClusters_Handler, + }, { MethodName: "ListClusterMembers", Handler: _AdminService_ListClusterMembers_Handler, diff --git a/api/adminservicemock/v1/service.pb.mock.go b/api/adminservicemock/v1/service.pb.mock.go index 576dd7f042e..6dc73aaf06c 100644 --- a/api/adminservicemock/v1/service.pb.mock.go +++ b/api/adminservicemock/v1/service.pb.mock.go @@ -360,6 +360,26 @@ func (mr *MockAdminServiceClientMockRecorder) ListClusterMembers(ctx, in interfa return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListClusterMembers", reflect.TypeOf((*MockAdminServiceClient)(nil).ListClusterMembers), varargs...) } +// ListClusters mocks base method. +func (m *MockAdminServiceClient) ListClusters(ctx context.Context, in *adminservice.ListClustersRequest, opts ...grpc.CallOption) (*adminservice.ListClustersResponse, error) { + m.ctrl.T.Helper() + varargs := []interface{}{ctx, in} + for _, a := range opts { + varargs = append(varargs, a) + } + ret := m.ctrl.Call(m, "ListClusters", varargs...) + ret0, _ := ret[0].(*adminservice.ListClustersResponse) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// ListClusters indicates an expected call of ListClusters. +func (mr *MockAdminServiceClientMockRecorder) ListClusters(ctx, in interface{}, opts ...interface{}) *gomock.Call { + mr.mock.ctrl.T.Helper() + varargs := append([]interface{}{ctx, in}, opts...) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListClusters", reflect.TypeOf((*MockAdminServiceClient)(nil).ListClusters), varargs...) +} + // ListReplicationTasks mocks base method. func (m *MockAdminServiceClient) ListReplicationTasks(ctx context.Context, in *adminservice.ListReplicationTasksRequest, opts ...grpc.CallOption) (*adminservice.ListReplicationTasksResponse, error) { m.ctrl.T.Helper() @@ -848,6 +868,21 @@ func (mr *MockAdminServiceServerMockRecorder) ListClusterMembers(arg0, arg1 inte return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListClusterMembers", reflect.TypeOf((*MockAdminServiceServer)(nil).ListClusterMembers), arg0, arg1) } +// ListClusters mocks base method. +func (m *MockAdminServiceServer) ListClusters(arg0 context.Context, arg1 *adminservice.ListClustersRequest) (*adminservice.ListClustersResponse, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "ListClusters", arg0, arg1) + ret0, _ := ret[0].(*adminservice.ListClustersResponse) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// ListClusters indicates an expected call of ListClusters. +func (mr *MockAdminServiceServerMockRecorder) ListClusters(arg0, arg1 interface{}) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListClusters", reflect.TypeOf((*MockAdminServiceServer)(nil).ListClusters), arg0, arg1) +} + // ListReplicationTasks mocks base method. func (m *MockAdminServiceServer) ListReplicationTasks(arg0 context.Context, arg1 *adminservice.ListReplicationTasksRequest) (*adminservice.ListReplicationTasksResponse, error) { m.ctrl.T.Helper() diff --git a/client/admin/client.go b/client/admin/client.go index 0ea94d8da06..e18881f498a 100644 --- a/client/admin/client.go +++ b/client/admin/client.go @@ -259,6 +259,20 @@ func (c *clientImpl) DescribeCluster( return client.DescribeCluster(ctx, request, opts...) } +func (c *clientImpl) ListClusters( + ctx context.Context, + request *adminservice.ListClustersRequest, + opts ...grpc.CallOption, +) (*adminservice.ListClustersResponse, error) { + client, err := c.getRandomClient() + if err != nil { + return nil, err + } + ctx, cancel := c.createContext(ctx) + defer cancel() + return client.ListClusters(ctx, request, opts...) +} + func (c *clientImpl) ListClusterMembers( ctx context.Context, request *adminservice.ListClusterMembersRequest, diff --git a/client/admin/metricClient.go b/client/admin/metricClient.go index 3640de56cc2..aa9b071be57 100644 --- a/client/admin/metricClient.go +++ b/client/admin/metricClient.go @@ -300,6 +300,24 @@ func (c *metricClient) DescribeCluster( return resp, err } +func (c *metricClient) ListClusters( + ctx context.Context, + request *adminservice.ListClustersRequest, + opts ...grpc.CallOption, +) (*adminservice.ListClustersResponse, error) { + + c.metricsClient.IncCounter(metrics.AdminClientListClustersScope, metrics.ClientRequests) + + sw := c.metricsClient.StartTimer(metrics.AdminClientListClustersScope, metrics.ClientLatency) + resp, err := c.client.ListClusters(ctx, request, opts...) + sw.Stop() + + if err != nil { + c.metricsClient.IncCounter(metrics.AdminClientListClustersScope, metrics.ClientFailures) + } + return resp, err +} + func (c *metricClient) ListClusterMembers( ctx context.Context, request *adminservice.ListClusterMembersRequest, diff --git a/client/admin/retryableClient.go b/client/admin/retryableClient.go index 0191ca3c969..5f309f4fee5 100644 --- a/client/admin/retryableClient.go +++ b/client/admin/retryableClient.go @@ -273,6 +273,23 @@ func (c *retryableClient) DescribeCluster( err := backoff.Retry(op, c.policy, c.isRetryable) return resp, err } + +func (c *retryableClient) ListClusters( + ctx context.Context, + request *adminservice.ListClustersRequest, + opts ...grpc.CallOption, +) (*adminservice.ListClustersResponse, error) { + + var resp *adminservice.ListClustersResponse + op := func() error { + var err error + resp, err = c.client.ListClusters(ctx, request, opts...) + return err + } + err := backoff.Retry(op, c.policy, c.isRetryable) + return resp, err +} + func (c *retryableClient) ListClusterMembers( ctx context.Context, request *adminservice.ListClusterMembersRequest, diff --git a/common/metrics/defs.go b/common/metrics/defs.go index 2f05560866a..e7ec665229b 100644 --- a/common/metrics/defs.go +++ b/common/metrics/defs.go @@ -545,6 +545,8 @@ const ( AdminClientGetWorkflowExecutionRawHistoryV2Scope // AdminClientDescribeClusterScope tracks RPC calls to admin service AdminClientDescribeClusterScope + // AdminClientListClustersScope tracks RPC calls to admin service + AdminClientListClustersScope // AdminClientListClusterMembersScope tracks RPC calls to admin service AdminClientListClusterMembersScope // AdminClientAddOrUpdateRemoteClusterScope tracks RPC calls to admin service @@ -780,6 +782,8 @@ const ( AdminListClusterMembersScope // AdminDescribeClusterScope is the metric scope for admin.AdminDescribeClusterScope AdminDescribeClusterScope + // AdminListClustersScope is the metric scope for admin.AdminListClustersScope + AdminListClustersScope // AdminAddOrUpdateRemoteClusterScope is the metric scope for admin.AdminAddOrUpdateRemoteClusterScope AdminAddOrUpdateRemoteClusterScope // AdminRemoveRemoteClusterScope is the metric scope for admin.AdminRemoveRemoteClusterScope @@ -1396,6 +1400,7 @@ var ScopeDefs = map[ServiceIdx]map[int]scopeDefinition{ AdminClientGetWorkflowExecutionRawHistoryScope: {operation: "AdminClientGetWorkflowExecutionRawHistory", tags: map[string]string{ServiceRoleTagName: AdminRoleTagValue}}, AdminClientGetWorkflowExecutionRawHistoryV2Scope: {operation: "AdminClientGetWorkflowExecutionRawHistoryV2", tags: map[string]string{ServiceRoleTagName: AdminRoleTagValue}}, AdminClientDescribeClusterScope: {operation: "AdminClientDescribeCluster", tags: map[string]string{ServiceRoleTagName: AdminRoleTagValue}}, + AdminClientListClustersScope: {operation: "AdminClientListClusters", tags: map[string]string{ServiceRoleTagName: AdminRoleTagValue}}, AdminClientAddOrUpdateRemoteClusterScope: {operation: "AdminClientAddOrUpdateRemoteCluster", tags: map[string]string{ServiceRoleTagName: AdminRoleTagValue}}, AdminClientRemoveRemoteClusterScope: {operation: "AdminClientRemoveRemoteCluster", tags: map[string]string{ServiceRoleTagName: AdminRoleTagValue}}, AdminClientRefreshWorkflowTasksScope: {operation: "AdminClientRefreshWorkflowTasks", tags: map[string]string{ServiceRoleTagName: AdminRoleTagValue}}, @@ -1510,6 +1515,7 @@ var ScopeDefs = map[ServiceIdx]map[int]scopeDefinition{ AdminResendReplicationTasksScope: {operation: "ResendReplicationTasks"}, AdminGetTaskQueueTasksScope: {operation: "GetTaskQueueTasks"}, AdminDescribeClusterScope: {operation: "AdminDescribeCluster"}, + AdminListClustersScope: {operation: "AdminListClusters"}, AdminAddOrUpdateRemoteClusterScope: {operation: "AdminAddOrUpdateRemoteCluster"}, AdminRemoveRemoteClusterScope: {operation: "AdminRemoveRemoteCluster"}, diff --git a/proto/internal/temporal/server/api/adminservice/v1/request_response.proto b/proto/internal/temporal/server/api/adminservice/v1/request_response.proto index 98815b94b9a..3ab776aab87 100644 --- a/proto/internal/temporal/server/api/adminservice/v1/request_response.proto +++ b/proto/internal/temporal/server/api/adminservice/v1/request_response.proto @@ -44,6 +44,7 @@ import "temporal/server/api/enums/v1/task.proto"; import "temporal/server/api/history/v1/message.proto"; import "temporal/server/api/namespace/v1/message.proto"; import "temporal/server/api/replication/v1/message.proto"; +import "temporal/server/api/persistence/v1/cluster_metadata.proto"; import "temporal/server/api/persistence/v1/executions.proto"; import "temporal/server/api/persistence/v1/namespaces.proto"; import "temporal/server/api/persistence/v1/workflow_mutable_state.proto"; @@ -276,6 +277,16 @@ message DescribeClusterResponse { bool is_global_namespace_enabled = 12; } +message ListClustersRequest { + int32 page_size = 1; + bytes next_page_token = 2; +} + +message ListClustersResponse { + repeated temporal.server.api.persistence.v1.ClusterMetadata clusters = 1; + bytes next_page_token = 2; +} + message AddOrUpdateRemoteClusterRequest { string frontend_address = 1; bool enable_remote_cluster_connection = 2; diff --git a/proto/internal/temporal/server/api/adminservice/v1/service.proto b/proto/internal/temporal/server/api/adminservice/v1/service.proto index 7e21abce817..6e1c56814e8 100644 --- a/proto/internal/temporal/server/api/adminservice/v1/service.proto +++ b/proto/internal/temporal/server/api/adminservice/v1/service.proto @@ -95,6 +95,10 @@ service AdminService { rpc DescribeCluster(DescribeClusterRequest) returns (DescribeClusterResponse) { } + // ListClusters returns information about Temporal clusters. + rpc ListClusters(ListClustersRequest) returns (ListClustersResponse) { + } + // ListClusterMembers returns information about Temporal cluster members. rpc ListClusterMembers(ListClusterMembersRequest) returns (ListClusterMembersResponse) { } diff --git a/service/frontend/adminHandler.go b/service/frontend/adminHandler.go index df533091112..8fe6a6764b9 100644 --- a/service/frontend/adminHandler.go +++ b/service/frontend/adminHandler.go @@ -78,6 +78,7 @@ import ( const ( getNamespaceReplicationMessageBatchSize = 100 defaultLastMessageID = -1 + listClustersPageSize = 100 ) type ( @@ -865,7 +866,7 @@ func (adh *AdminHandler) GetWorkflowExecutionRawHistoryV2(ctx context.Context, r return result, nil } -// DescribeCluster return information about temporal deployment +// DescribeCluster return information about a temporal cluster func (adh *AdminHandler) DescribeCluster( _ context.Context, request *adminservice.DescribeClusterRequest, @@ -942,8 +943,43 @@ func (adh *AdminHandler) DescribeCluster( }, nil } +// ListClusters return information about temporal clusters +func (adh *AdminHandler) ListClusters( + _ context.Context, + request *adminservice.ListClustersRequest, +) (_ *adminservice.ListClustersResponse, retError error) { + defer log.CapturePanic(adh.logger, &retError) + + scope, sw := adh.startRequestProfile(metrics.AdminListClustersScope) + defer sw.Stop() + + if request == nil { + return nil, adh.error(errRequestNotSet, scope) + } + if request.GetPageSize() <= 0 { + request.PageSize = listClustersPageSize + } + + resp, err := adh.clusterMetadataManager.ListClusterMetadata(&persistence.ListClusterMetadataRequest{ + PageSize: int(request.GetPageSize()), + NextPageToken: request.GetNextPageToken(), + }) + if err != nil { + return nil, adh.error(err, scope) + } + + var clusterMetadataList []*persistencespb.ClusterMetadata + for _, clusterResp := range resp.ClusterMetadata { + clusterMetadataList = append(clusterMetadataList, &clusterResp.ClusterMetadata) + } + return &adminservice.ListClustersResponse{ + Clusters: clusterMetadataList, + NextPageToken: resp.NextPageToken, + }, nil +} + func (adh *AdminHandler) ListClusterMembers( - ctx context.Context, + _ context.Context, request *adminservice.ListClusterMembersRequest, ) (_ *adminservice.ListClusterMembersResponse, retError error) { defer log.CapturePanic(adh.logger, &retError) @@ -977,6 +1013,9 @@ func (adh *AdminHandler) ListClusterMembers( PageSize: int(request.GetPageSize()), NextPageToken: request.GetNextPageToken(), }) + if err != nil { + return nil, adh.error(err, scope) + } var activeMembers []*clusterspb.ClusterMember for _, member := range resp.ActiveMembers { @@ -994,7 +1033,7 @@ func (adh *AdminHandler) ListClusterMembers( return &adminservice.ListClusterMembersResponse{ ActiveMembers: activeMembers, NextPageToken: resp.NextPageToken, - }, err + }, nil } func (adh *AdminHandler) AddOrUpdateRemoteCluster( diff --git a/service/frontend/adminHandler_test.go b/service/frontend/adminHandler_test.go index 6b46e3a7ec1..27b8f27e296 100644 --- a/service/frontend/adminHandler_test.go +++ b/service/frontend/adminHandler_test.go @@ -1156,3 +1156,24 @@ func (s *adminHandlerSuite) Test_DescribeCluster_NonCurrentCluster_Success() { s.Equal(resp.GetInitialFailoverVersion(), int64(0)) s.True(resp.GetIsGlobalNamespaceEnabled()) } + +func (s *adminHandlerSuite) Test_ListClusters_Success() { + var pageSize int32 = 1 + + s.mockClusterMetadataManager.EXPECT().ListClusterMetadata(&persistence.ListClusterMetadataRequest{ + PageSize: int(pageSize), + }).Return( + &persistence.ListClusterMetadataResponse{ + ClusterMetadata: []*persistence.GetClusterMetadataResponse{ + { + ClusterMetadata: persistencespb.ClusterMetadata{ClusterName: "test"}, + }, + }}, nil) + + resp, err := s.handler.ListClusters(context.Background(), &adminservice.ListClustersRequest{ + PageSize: pageSize, + }) + s.NoError(err) + s.Equal(1, len(resp.Clusters)) + s.Equal(0, len(resp.GetNextPageToken())) +} diff --git a/tools/cli/admin.go b/tools/cli/admin.go index 9fd8ffc41e6..d4266bf1730 100644 --- a/tools/cli/admin.go +++ b/tools/cli/admin.go @@ -500,6 +500,21 @@ func newAdminClusterCommands() []cli.Command { AdminDescribeCluster(c) }, }, + { + Name: "list", + Aliases: []string{"ls"}, + Usage: "List clusters information", + Flags: []cli.Flag{ + cli.IntFlag{ + Name: FlagPageSize, + Value: 100, + Usage: "Page size (optional, default: 100)", + }, + }, + Action: func(c *cli.Context) { + AdminListClusters(c) + }, + }, { Name: "upsert-remote-cluster", Aliases: []string{"urc"}, diff --git a/tools/cli/adminClusterCommands.go b/tools/cli/adminClusterCommands.go index 5ad369091e1..51f8572973b 100644 --- a/tools/cli/adminClusterCommands.go +++ b/tools/cli/adminClusterCommands.go @@ -47,6 +47,34 @@ func AdminDescribeCluster(c *cli.Context) { prettyPrintJSONObject(response) } +// AdminListClusters is used to fetch information about all clusters +func AdminListClusters(c *cli.Context) { + adminClient := cFactory.AdminClient(c) + var token []byte + + pageSize := c.Int(FlagPageSize) + for more := true; more; more = len(token) > 0 { + if more && len(token) > 0 { + if !showNextPage() { + break + } + } + ctx, cancel := newContext(c) + response, err := adminClient.ListClusters(ctx, &adminservice.ListClustersRequest{ + PageSize: int32(pageSize), + NextPageToken: token, + }) + cancel() + if err != nil { + ErrorAndExit("Operation ListClusters failed.", err) + } + token = response.GetNextPageToken() + if len(response.GetClusters()) > 0 { + prettyPrintJSONObject(response.GetClusters()) + } + } +} + // AdminAddOrUpdateRemoteCluster is used to add or update remote cluster information func AdminAddOrUpdateRemoteCluster(c *cli.Context) { adminClient := cFactory.AdminClient(c)