From 19ef42fc9698d28eceb44c46ec4565e7b7b7daf1 Mon Sep 17 00:00:00 2001 From: Sam Huang Date: Wed, 4 Nov 2020 16:17:35 -0500 Subject: [PATCH] storage: allow healing ranges whose replicas are all lost Release note: None --- pkg/kv/kvserver/raft_transport.go | 28 + pkg/kv/kvserver/store_snapshot.go | 123 +++ pkg/roachpb/api.pb.go | 1668 ++++++++++++++++++----------- pkg/roachpb/api.proto | 30 + pkg/rpc/context.go | 6 + pkg/server/node.go | 41 + 6 files changed, 1249 insertions(+), 647 deletions(-) diff --git a/pkg/kv/kvserver/raft_transport.go b/pkg/kv/kvserver/raft_transport.go index ae438f388687..0ca2808c4804 100644 --- a/pkg/kv/kvserver/raft_transport.go +++ b/pkg/kv/kvserver/raft_transport.go @@ -648,6 +648,34 @@ func (t *RaftTransport) startProcessNewQueue( return true } +func initAndSendSnapshot( + ctx context.Context, + stream MultiRaft_RaftSnapshotClient, + st *cluster.Settings, + storePool SnapshotStorePool, + header SnapshotRequest_Header, + snap *OutgoingSnapshot, + newBatch func() storage.Batch, + sent func(), +) error { + defer func() { + if err := stream.CloseSend(); err != nil { + log.Warningf(ctx, "failed to close snapshot stream: %+v", err) + } + }() + + return sendSnapshot( + ctx, + st, + stream, + storePool, + header, + snap, + newBatch, + sent, + ) +} + // SendSnapshot streams the given outgoing snapshot. The caller is responsible // for closing the OutgoingSnapshot. func (t *RaftTransport) SendSnapshot( diff --git a/pkg/kv/kvserver/store_snapshot.go b/pkg/kv/kvserver/store_snapshot.go index 6770080e0b69..97538017b4be 100644 --- a/pkg/kv/kvserver/store_snapshot.go +++ b/pkg/kv/kvserver/store_snapshot.go @@ -16,12 +16,17 @@ import ( "io" "time" + "github.com/cockroachdb/cockroach/pkg/keys" + "github.com/cockroachdb/cockroach/pkg/kv/kvserver/raftentry" "github.com/cockroachdb/cockroach/pkg/kv/kvserver/rditer" + "github.com/cockroachdb/cockroach/pkg/kv/kvserver/stateloader" "github.com/cockroachdb/cockroach/pkg/roachpb" "github.com/cockroachdb/cockroach/pkg/settings" "github.com/cockroachdb/cockroach/pkg/settings/cluster" "github.com/cockroachdb/cockroach/pkg/storage" + enginepb "github.com/cockroachdb/cockroach/pkg/storage/enginepb" "github.com/cockroachdb/cockroach/pkg/util/envutil" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/humanizeutil" "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/protoutil" @@ -31,6 +36,7 @@ import ( crdberrors "github.com/cockroachdb/errors" "go.etcd.io/etcd/raft/raftpb" "golang.org/x/time/rate" + "google.golang.org/grpc" ) const ( @@ -904,6 +910,123 @@ func (e *errMustRetrySnapshotDueToTruncation) Error() string { ) } +// Formerly HackSendSnapshot. +func SendEmptySnapshot( + ctx context.Context, + st *cluster.Settings, + cc *grpc.ClientConn, + now hlc.Timestamp, + desc roachpb.RangeDescriptor, + to roachpb.ReplicaDescriptor, +) error { + // Create engine to use as a buffer for the empty snapshot. + eng := storage.NewInMem(ctx, roachpb.Attributes{}, 1<<20 /* cacheSize */) + defer eng.Close() + + var ms enginepb.MVCCStats + // Seed empty range into engine. + if err := storage.MVCCPutProto( + ctx, eng, &ms, keys.RangeDescriptorKey(desc.StartKey), now, nil /* txn */, &desc, + ); err != nil { + return err + } + ms, err := stateloader.WriteInitialReplicaState( + ctx, + eng, + ms, + desc, + roachpb.Lease{}, + hlc.Timestamp{}, // gcThreshold + stateloader.TruncatedStateUnreplicated, + ) + if err != nil { + return err + } + + // Use stateloader to load state out of memory from the previously created engine. + sl := stateloader.Make(desc.RangeID) + state, err := sl.Load(ctx, eng, &desc) + if err != nil { + return err + } + hs, err := sl.LoadHardState(ctx, eng) + if err != nil { + return err + } + + snapUUID, err := uuid.NewV4() + if err != nil { + return err + } + + outgoingSnap, err := snapshot( + ctx, + snapUUID, + sl, + // TODO (thesamhuang): We may want a separate SnapshotRequest type for recovery that always goes through by bypassing all throttling so they cannot be declined. + // We don't want our operation to be held up behind a long running snapshot. We want this to go through quickly. + SnapshotRequest_RAFT, + eng, + desc.RangeID, + raftentry.NewCache(1), // Cache is not used. + func(func(SideloadStorage) error) error { return nil }, // This is used for sstables, not needed here as there are no logs. + desc.StartKey, + ) + defer outgoingSnap.Close() + if err != nil { + return err + } + + // From and to ReplicaDescriptors are the same because we have + // to send the snapshot from a member of the RangeDescriptor. + // Sending it from the current replica ensures that. Otherwise, + // it would be a malformed request if it came from a non-member. + from := to + req := RaftMessageRequest{ + RangeID: desc.RangeID, + FromReplica: from, + ToReplica: to, + Message: raftpb.Message{ + Type: raftpb.MsgSnap, + To: uint64(to.ReplicaID), + From: uint64(from.ReplicaID), + Term: hs.Term, + Snapshot: outgoingSnap.RaftSnap, + }, + } + + header := SnapshotRequest_Header{ + State: state, + RaftMessageRequest: req, + RangeSize: ms.Total(), + CanDecline: false, + Priority: SnapshotRequest_RECOVERY, + Strategy: SnapshotRequest_KV_BATCH, + Type: SnapshotRequest_RAFT, + UnreplicatedTruncatedState: true, + } + + stream, err := NewMultiRaftClient(cc).RaftSnapshot(ctx) + if err != nil { + return err + } + + return initAndSendSnapshot( + ctx, + stream, + st, + noopStorePool{}, + header, + &outgoingSnap, + eng.NewBatch, + func() {}, + ) +} + +type noopStorePool struct{} + +func (n noopStorePool) throttle(throttleReason, string, roachpb.StoreID) {} + // sendSnapshot sends an outgoing snapshot via a pre-opened GRPC stream. func sendSnapshot( ctx context.Context, diff --git a/pkg/roachpb/api.pb.go b/pkg/roachpb/api.pb.go index 13aca7441135..a33843319fe4 100644 --- a/pkg/roachpb/api.pb.go +++ b/pkg/roachpb/api.pb.go @@ -72,7 +72,7 @@ func (x ReadConsistencyType) String() string { return proto.EnumName(ReadConsistencyType_name, int32(x)) } func (ReadConsistencyType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{0} } // ScanFormat is an enumeration of the available response formats for MVCCScan @@ -100,7 +100,7 @@ func (x ScanFormat) String() string { return proto.EnumName(ScanFormat_name, int32(x)) } func (ScanFormat) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{1} + return fileDescriptor_api_2c9fb4f9c25448db, []int{1} } type ChecksumMode int32 @@ -147,7 +147,7 @@ func (x ChecksumMode) String() string { return proto.EnumName(ChecksumMode_name, int32(x)) } func (ChecksumMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{2} + return fileDescriptor_api_2c9fb4f9c25448db, []int{2} } // PushTxnType determines what action to take when pushing a transaction. @@ -178,7 +178,7 @@ func (x PushTxnType) String() string { return proto.EnumName(PushTxnType_name, int32(x)) } func (PushTxnType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{3} + return fileDescriptor_api_2c9fb4f9c25448db, []int{3} } type ExternalStorageProvider int32 @@ -219,7 +219,7 @@ func (x ExternalStorageProvider) String() string { return proto.EnumName(ExternalStorageProvider_name, int32(x)) } func (ExternalStorageProvider) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{4} + return fileDescriptor_api_2c9fb4f9c25448db, []int{4} } type MVCCFilter int32 @@ -242,7 +242,7 @@ func (x MVCCFilter) String() string { return proto.EnumName(MVCCFilter_name, int32(x)) } func (MVCCFilter) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{5} + return fileDescriptor_api_2c9fb4f9c25448db, []int{5} } type ResponseHeader_ResumeReason int32 @@ -268,7 +268,7 @@ func (x ResponseHeader_ResumeReason) String() string { return proto.EnumName(ResponseHeader_ResumeReason_name, int32(x)) } func (ResponseHeader_ResumeReason) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{1, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{1, 0} } type CheckConsistencyResponse_Status int32 @@ -310,7 +310,7 @@ func (x CheckConsistencyResponse_Status) String() string { return proto.EnumName(CheckConsistencyResponse_Status_name, int32(x)) } func (CheckConsistencyResponse_Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{25, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{25, 0} } // RequestHeader is supplied with every storage node request. @@ -331,7 +331,7 @@ func (m *RequestHeader) Reset() { *m = RequestHeader{} } func (m *RequestHeader) String() string { return proto.CompactTextString(m) } func (*RequestHeader) ProtoMessage() {} func (*RequestHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{0} } func (m *RequestHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -402,7 +402,7 @@ func (m *ResponseHeader) Reset() { *m = ResponseHeader{} } func (m *ResponseHeader) String() string { return proto.CompactTextString(m) } func (*ResponseHeader) ProtoMessage() {} func (*ResponseHeader) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{1} + return fileDescriptor_api_2c9fb4f9c25448db, []int{1} } func (m *ResponseHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -436,7 +436,7 @@ func (m *GetRequest) Reset() { *m = GetRequest{} } func (m *GetRequest) String() string { return proto.CompactTextString(m) } func (*GetRequest) ProtoMessage() {} func (*GetRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{2} + return fileDescriptor_api_2c9fb4f9c25448db, []int{2} } func (m *GetRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -479,7 +479,7 @@ func (m *GetResponse) Reset() { *m = GetResponse{} } func (m *GetResponse) String() string { return proto.CompactTextString(m) } func (*GetResponse) ProtoMessage() {} func (*GetResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{3} + return fileDescriptor_api_2c9fb4f9c25448db, []int{3} } func (m *GetResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -522,7 +522,7 @@ func (m *PutRequest) Reset() { *m = PutRequest{} } func (m *PutRequest) String() string { return proto.CompactTextString(m) } func (*PutRequest) ProtoMessage() {} func (*PutRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{4} + return fileDescriptor_api_2c9fb4f9c25448db, []int{4} } func (m *PutRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -556,7 +556,7 @@ func (m *PutResponse) Reset() { *m = PutResponse{} } func (m *PutResponse) String() string { return proto.CompactTextString(m) } func (*PutResponse) ProtoMessage() {} func (*PutResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{5} + return fileDescriptor_api_2c9fb4f9c25448db, []int{5} } func (m *PutResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -638,7 +638,7 @@ func (m *ConditionalPutRequest) Reset() { *m = ConditionalPutRequest{} } func (m *ConditionalPutRequest) String() string { return proto.CompactTextString(m) } func (*ConditionalPutRequest) ProtoMessage() {} func (*ConditionalPutRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{6} + return fileDescriptor_api_2c9fb4f9c25448db, []int{6} } func (m *ConditionalPutRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -673,7 +673,7 @@ func (m *ConditionalPutResponse) Reset() { *m = ConditionalPutResponse{} func (m *ConditionalPutResponse) String() string { return proto.CompactTextString(m) } func (*ConditionalPutResponse) ProtoMessage() {} func (*ConditionalPutResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{7} + return fileDescriptor_api_2c9fb4f9c25448db, []int{7} } func (m *ConditionalPutResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -719,7 +719,7 @@ func (m *InitPutRequest) Reset() { *m = InitPutRequest{} } func (m *InitPutRequest) String() string { return proto.CompactTextString(m) } func (*InitPutRequest) ProtoMessage() {} func (*InitPutRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{8} + return fileDescriptor_api_2c9fb4f9c25448db, []int{8} } func (m *InitPutRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -753,7 +753,7 @@ func (m *InitPutResponse) Reset() { *m = InitPutResponse{} } func (m *InitPutResponse) String() string { return proto.CompactTextString(m) } func (*InitPutResponse) ProtoMessage() {} func (*InitPutResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{9} + return fileDescriptor_api_2c9fb4f9c25448db, []int{9} } func (m *InitPutResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -793,7 +793,7 @@ func (m *IncrementRequest) Reset() { *m = IncrementRequest{} } func (m *IncrementRequest) String() string { return proto.CompactTextString(m) } func (*IncrementRequest) ProtoMessage() {} func (*IncrementRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{10} + return fileDescriptor_api_2c9fb4f9c25448db, []int{10} } func (m *IncrementRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -830,7 +830,7 @@ func (m *IncrementResponse) Reset() { *m = IncrementResponse{} } func (m *IncrementResponse) String() string { return proto.CompactTextString(m) } func (*IncrementResponse) ProtoMessage() {} func (*IncrementResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{11} + return fileDescriptor_api_2c9fb4f9c25448db, []int{11} } func (m *IncrementResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -864,7 +864,7 @@ func (m *DeleteRequest) Reset() { *m = DeleteRequest{} } func (m *DeleteRequest) String() string { return proto.CompactTextString(m) } func (*DeleteRequest) ProtoMessage() {} func (*DeleteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{12} + return fileDescriptor_api_2c9fb4f9c25448db, []int{12} } func (m *DeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -898,7 +898,7 @@ func (m *DeleteResponse) Reset() { *m = DeleteResponse{} } func (m *DeleteResponse) String() string { return proto.CompactTextString(m) } func (*DeleteResponse) ProtoMessage() {} func (*DeleteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{13} + return fileDescriptor_api_2c9fb4f9c25448db, []int{13} } func (m *DeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -950,7 +950,7 @@ func (m *DeleteRangeRequest) Reset() { *m = DeleteRangeRequest{} } func (m *DeleteRangeRequest) String() string { return proto.CompactTextString(m) } func (*DeleteRangeRequest) ProtoMessage() {} func (*DeleteRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{14} + return fileDescriptor_api_2c9fb4f9c25448db, []int{14} } func (m *DeleteRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -987,7 +987,7 @@ func (m *DeleteRangeResponse) Reset() { *m = DeleteRangeResponse{} } func (m *DeleteRangeResponse) String() string { return proto.CompactTextString(m) } func (*DeleteRangeResponse) ProtoMessage() {} func (*DeleteRangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{15} + return fileDescriptor_api_2c9fb4f9c25448db, []int{15} } func (m *DeleteRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1042,7 +1042,7 @@ func (m *ClearRangeRequest) Reset() { *m = ClearRangeRequest{} } func (m *ClearRangeRequest) String() string { return proto.CompactTextString(m) } func (*ClearRangeRequest) ProtoMessage() {} func (*ClearRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{16} + return fileDescriptor_api_2c9fb4f9c25448db, []int{16} } func (m *ClearRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1076,7 +1076,7 @@ func (m *ClearRangeResponse) Reset() { *m = ClearRangeResponse{} } func (m *ClearRangeResponse) String() string { return proto.CompactTextString(m) } func (*ClearRangeResponse) ProtoMessage() {} func (*ClearRangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{17} + return fileDescriptor_api_2c9fb4f9c25448db, []int{17} } func (m *ClearRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1117,7 +1117,7 @@ func (m *RevertRangeRequest) Reset() { *m = RevertRangeRequest{} } func (m *RevertRangeRequest) String() string { return proto.CompactTextString(m) } func (*RevertRangeRequest) ProtoMessage() {} func (*RevertRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{18} + return fileDescriptor_api_2c9fb4f9c25448db, []int{18} } func (m *RevertRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1151,7 +1151,7 @@ func (m *RevertRangeResponse) Reset() { *m = RevertRangeResponse{} } func (m *RevertRangeResponse) String() string { return proto.CompactTextString(m) } func (*RevertRangeResponse) ProtoMessage() {} func (*RevertRangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{19} + return fileDescriptor_api_2c9fb4f9c25448db, []int{19} } func (m *RevertRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1202,7 +1202,7 @@ func (m *ScanRequest) Reset() { *m = ScanRequest{} } func (m *ScanRequest) String() string { return proto.CompactTextString(m) } func (*ScanRequest) ProtoMessage() {} func (*ScanRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{20} + return fileDescriptor_api_2c9fb4f9c25448db, []int{20} } func (m *ScanRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1254,7 +1254,7 @@ func (m *ScanResponse) Reset() { *m = ScanResponse{} } func (m *ScanResponse) String() string { return proto.CompactTextString(m) } func (*ScanResponse) ProtoMessage() {} func (*ScanResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{21} + return fileDescriptor_api_2c9fb4f9c25448db, []int{21} } func (m *ScanResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1305,7 +1305,7 @@ func (m *ReverseScanRequest) Reset() { *m = ReverseScanRequest{} } func (m *ReverseScanRequest) String() string { return proto.CompactTextString(m) } func (*ReverseScanRequest) ProtoMessage() {} func (*ReverseScanRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{22} + return fileDescriptor_api_2c9fb4f9c25448db, []int{22} } func (m *ReverseScanRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1357,7 +1357,7 @@ func (m *ReverseScanResponse) Reset() { *m = ReverseScanResponse{} } func (m *ReverseScanResponse) String() string { return proto.CompactTextString(m) } func (*ReverseScanResponse) ProtoMessage() {} func (*ReverseScanResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{23} + return fileDescriptor_api_2c9fb4f9c25448db, []int{23} } func (m *ReverseScanResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1410,7 +1410,7 @@ func (m *CheckConsistencyRequest) Reset() { *m = CheckConsistencyRequest func (m *CheckConsistencyRequest) String() string { return proto.CompactTextString(m) } func (*CheckConsistencyRequest) ProtoMessage() {} func (*CheckConsistencyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{24} + return fileDescriptor_api_2c9fb4f9c25448db, []int{24} } func (m *CheckConsistencyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1447,7 +1447,7 @@ func (m *CheckConsistencyResponse) Reset() { *m = CheckConsistencyRespon func (m *CheckConsistencyResponse) String() string { return proto.CompactTextString(m) } func (*CheckConsistencyResponse) ProtoMessage() {} func (*CheckConsistencyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{25} + return fileDescriptor_api_2c9fb4f9c25448db, []int{25} } func (m *CheckConsistencyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1491,7 +1491,7 @@ func (m *CheckConsistencyResponse_Result) Reset() { *m = CheckConsistenc func (m *CheckConsistencyResponse_Result) String() string { return proto.CompactTextString(m) } func (*CheckConsistencyResponse_Result) ProtoMessage() {} func (*CheckConsistencyResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{25, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{25, 0} } func (m *CheckConsistencyResponse_Result) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1539,7 +1539,7 @@ func (m *RecomputeStatsRequest) Reset() { *m = RecomputeStatsRequest{} } func (m *RecomputeStatsRequest) String() string { return proto.CompactTextString(m) } func (*RecomputeStatsRequest) ProtoMessage() {} func (*RecomputeStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{26} + return fileDescriptor_api_2c9fb4f9c25448db, []int{26} } func (m *RecomputeStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1575,7 +1575,7 @@ func (m *RecomputeStatsResponse) Reset() { *m = RecomputeStatsResponse{} func (m *RecomputeStatsResponse) String() string { return proto.CompactTextString(m) } func (*RecomputeStatsResponse) ProtoMessage() {} func (*RecomputeStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{27} + return fileDescriptor_api_2c9fb4f9c25448db, []int{27} } func (m *RecomputeStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1686,7 +1686,7 @@ func (m *EndTxnRequest) Reset() { *m = EndTxnRequest{} } func (m *EndTxnRequest) String() string { return proto.CompactTextString(m) } func (*EndTxnRequest) ProtoMessage() {} func (*EndTxnRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{28} + return fileDescriptor_api_2c9fb4f9c25448db, []int{28} } func (m *EndTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1732,7 +1732,7 @@ func (m *EndTxnResponse) Reset() { *m = EndTxnResponse{} } func (m *EndTxnResponse) String() string { return proto.CompactTextString(m) } func (*EndTxnResponse) ProtoMessage() {} func (*EndTxnResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{29} + return fileDescriptor_api_2c9fb4f9c25448db, []int{29} } func (m *EndTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1793,7 +1793,7 @@ func (m *AdminSplitRequest) Reset() { *m = AdminSplitRequest{} } func (m *AdminSplitRequest) String() string { return proto.CompactTextString(m) } func (*AdminSplitRequest) ProtoMessage() {} func (*AdminSplitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{30} + return fileDescriptor_api_2c9fb4f9c25448db, []int{30} } func (m *AdminSplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1828,7 +1828,7 @@ func (m *AdminSplitResponse) Reset() { *m = AdminSplitResponse{} } func (m *AdminSplitResponse) String() string { return proto.CompactTextString(m) } func (*AdminSplitResponse) ProtoMessage() {} func (*AdminSplitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{31} + return fileDescriptor_api_2c9fb4f9c25448db, []int{31} } func (m *AdminSplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1867,7 +1867,7 @@ func (m *AdminUnsplitRequest) Reset() { *m = AdminUnsplitRequest{} } func (m *AdminUnsplitRequest) String() string { return proto.CompactTextString(m) } func (*AdminUnsplitRequest) ProtoMessage() {} func (*AdminUnsplitRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{32} + return fileDescriptor_api_2c9fb4f9c25448db, []int{32} } func (m *AdminUnsplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1902,7 +1902,7 @@ func (m *AdminUnsplitResponse) Reset() { *m = AdminUnsplitResponse{} } func (m *AdminUnsplitResponse) String() string { return proto.CompactTextString(m) } func (*AdminUnsplitResponse) ProtoMessage() {} func (*AdminUnsplitResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{33} + return fileDescriptor_api_2c9fb4f9c25448db, []int{33} } func (m *AdminUnsplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1945,7 +1945,7 @@ func (m *AdminMergeRequest) Reset() { *m = AdminMergeRequest{} } func (m *AdminMergeRequest) String() string { return proto.CompactTextString(m) } func (*AdminMergeRequest) ProtoMessage() {} func (*AdminMergeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{34} + return fileDescriptor_api_2c9fb4f9c25448db, []int{34} } func (m *AdminMergeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1980,7 +1980,7 @@ func (m *AdminMergeResponse) Reset() { *m = AdminMergeResponse{} } func (m *AdminMergeResponse) String() string { return proto.CompactTextString(m) } func (*AdminMergeResponse) ProtoMessage() {} func (*AdminMergeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{35} + return fileDescriptor_api_2c9fb4f9c25448db, []int{35} } func (m *AdminMergeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2018,7 +2018,7 @@ func (m *AdminTransferLeaseRequest) Reset() { *m = AdminTransferLeaseReq func (m *AdminTransferLeaseRequest) String() string { return proto.CompactTextString(m) } func (*AdminTransferLeaseRequest) ProtoMessage() {} func (*AdminTransferLeaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{36} + return fileDescriptor_api_2c9fb4f9c25448db, []int{36} } func (m *AdminTransferLeaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2051,7 +2051,7 @@ func (m *AdminTransferLeaseResponse) Reset() { *m = AdminTransferLeaseRe func (m *AdminTransferLeaseResponse) String() string { return proto.CompactTextString(m) } func (*AdminTransferLeaseResponse) ProtoMessage() {} func (*AdminTransferLeaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{37} + return fileDescriptor_api_2c9fb4f9c25448db, []int{37} } func (m *AdminTransferLeaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2086,7 +2086,7 @@ func (m *ReplicationChange) Reset() { *m = ReplicationChange{} } func (m *ReplicationChange) String() string { return proto.CompactTextString(m) } func (*ReplicationChange) ProtoMessage() {} func (*ReplicationChange) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{38} + return fileDescriptor_api_2c9fb4f9c25448db, []int{38} } func (m *ReplicationChange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2144,7 +2144,7 @@ func (m *AdminChangeReplicasRequest) Reset() { *m = AdminChangeReplicasR func (m *AdminChangeReplicasRequest) String() string { return proto.CompactTextString(m) } func (*AdminChangeReplicasRequest) ProtoMessage() {} func (*AdminChangeReplicasRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{39} + return fileDescriptor_api_2c9fb4f9c25448db, []int{39} } func (m *AdminChangeReplicasRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2179,7 +2179,7 @@ func (m *AdminChangeReplicasResponse) Reset() { *m = AdminChangeReplicas func (m *AdminChangeReplicasResponse) String() string { return proto.CompactTextString(m) } func (*AdminChangeReplicasResponse) ProtoMessage() {} func (*AdminChangeReplicasResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{40} + return fileDescriptor_api_2c9fb4f9c25448db, []int{40} } func (m *AdminChangeReplicasResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2216,7 +2216,7 @@ func (m *AdminRelocateRangeRequest) Reset() { *m = AdminRelocateRangeReq func (m *AdminRelocateRangeRequest) String() string { return proto.CompactTextString(m) } func (*AdminRelocateRangeRequest) ProtoMessage() {} func (*AdminRelocateRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{41} + return fileDescriptor_api_2c9fb4f9c25448db, []int{41} } func (m *AdminRelocateRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2249,7 +2249,7 @@ func (m *AdminRelocateRangeResponse) Reset() { *m = AdminRelocateRangeRe func (m *AdminRelocateRangeResponse) String() string { return proto.CompactTextString(m) } func (*AdminRelocateRangeResponse) ProtoMessage() {} func (*AdminRelocateRangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{42} + return fileDescriptor_api_2c9fb4f9c25448db, []int{42} } func (m *AdminRelocateRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2288,7 +2288,7 @@ func (m *HeartbeatTxnRequest) Reset() { *m = HeartbeatTxnRequest{} } func (m *HeartbeatTxnRequest) String() string { return proto.CompactTextString(m) } func (*HeartbeatTxnRequest) ProtoMessage() {} func (*HeartbeatTxnRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{43} + return fileDescriptor_api_2c9fb4f9c25448db, []int{43} } func (m *HeartbeatTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2325,7 +2325,7 @@ func (m *HeartbeatTxnResponse) Reset() { *m = HeartbeatTxnResponse{} } func (m *HeartbeatTxnResponse) String() string { return proto.CompactTextString(m) } func (*HeartbeatTxnResponse) ProtoMessage() {} func (*HeartbeatTxnResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{44} + return fileDescriptor_api_2c9fb4f9c25448db, []int{44} } func (m *HeartbeatTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2363,7 +2363,7 @@ func (m *GCRequest) Reset() { *m = GCRequest{} } func (m *GCRequest) String() string { return proto.CompactTextString(m) } func (*GCRequest) ProtoMessage() {} func (*GCRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{45} + return fileDescriptor_api_2c9fb4f9c25448db, []int{45} } func (m *GCRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2397,7 +2397,7 @@ func (m *GCRequest_GCKey) Reset() { *m = GCRequest_GCKey{} } func (m *GCRequest_GCKey) String() string { return proto.CompactTextString(m) } func (*GCRequest_GCKey) ProtoMessage() {} func (*GCRequest_GCKey) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{45, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{45, 0} } func (m *GCRequest_GCKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2431,7 +2431,7 @@ func (m *GCResponse) Reset() { *m = GCResponse{} } func (m *GCResponse) String() string { return proto.CompactTextString(m) } func (*GCResponse) ProtoMessage() {} func (*GCResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{46} + return fileDescriptor_api_2c9fb4f9c25448db, []int{46} } func (m *GCResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2500,7 +2500,7 @@ func (m *PushTxnRequest) Reset() { *m = PushTxnRequest{} } func (m *PushTxnRequest) String() string { return proto.CompactTextString(m) } func (*PushTxnRequest) ProtoMessage() {} func (*PushTxnRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{47} + return fileDescriptor_api_2c9fb4f9c25448db, []int{47} } func (m *PushTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2543,7 +2543,7 @@ func (m *PushTxnResponse) Reset() { *m = PushTxnResponse{} } func (m *PushTxnResponse) String() string { return proto.CompactTextString(m) } func (*PushTxnResponse) ProtoMessage() {} func (*PushTxnResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{48} + return fileDescriptor_api_2c9fb4f9c25448db, []int{48} } func (m *PushTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2590,7 +2590,7 @@ func (m *RecoverTxnRequest) Reset() { *m = RecoverTxnRequest{} } func (m *RecoverTxnRequest) String() string { return proto.CompactTextString(m) } func (*RecoverTxnRequest) ProtoMessage() {} func (*RecoverTxnRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{49} + return fileDescriptor_api_2c9fb4f9c25448db, []int{49} } func (m *RecoverTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2626,7 +2626,7 @@ func (m *RecoverTxnResponse) Reset() { *m = RecoverTxnResponse{} } func (m *RecoverTxnResponse) String() string { return proto.CompactTextString(m) } func (*RecoverTxnResponse) ProtoMessage() {} func (*RecoverTxnResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{50} + return fileDescriptor_api_2c9fb4f9c25448db, []int{50} } func (m *RecoverTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2670,7 +2670,7 @@ func (m *QueryTxnRequest) Reset() { *m = QueryTxnRequest{} } func (m *QueryTxnRequest) String() string { return proto.CompactTextString(m) } func (*QueryTxnRequest) ProtoMessage() {} func (*QueryTxnRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{51} + return fileDescriptor_api_2c9fb4f9c25448db, []int{51} } func (m *QueryTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2714,7 +2714,7 @@ func (m *QueryTxnResponse) Reset() { *m = QueryTxnResponse{} } func (m *QueryTxnResponse) String() string { return proto.CompactTextString(m) } func (*QueryTxnResponse) ProtoMessage() {} func (*QueryTxnResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{52} + return fileDescriptor_api_2c9fb4f9c25448db, []int{52} } func (m *QueryTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2774,7 +2774,7 @@ func (m *QueryIntentRequest) Reset() { *m = QueryIntentRequest{} } func (m *QueryIntentRequest) String() string { return proto.CompactTextString(m) } func (*QueryIntentRequest) ProtoMessage() {} func (*QueryIntentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{53} + return fileDescriptor_api_2c9fb4f9c25448db, []int{53} } func (m *QueryIntentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2810,7 +2810,7 @@ func (m *QueryIntentResponse) Reset() { *m = QueryIntentResponse{} } func (m *QueryIntentResponse) String() string { return proto.CompactTextString(m) } func (*QueryIntentResponse) ProtoMessage() {} func (*QueryIntentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{54} + return fileDescriptor_api_2c9fb4f9c25448db, []int{54} } func (m *QueryIntentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2857,7 +2857,7 @@ func (m *ResolveIntentRequest) Reset() { *m = ResolveIntentRequest{} } func (m *ResolveIntentRequest) String() string { return proto.CompactTextString(m) } func (*ResolveIntentRequest) ProtoMessage() {} func (*ResolveIntentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{55} + return fileDescriptor_api_2c9fb4f9c25448db, []int{55} } func (m *ResolveIntentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2892,7 +2892,7 @@ func (m *ResolveIntentResponse) Reset() { *m = ResolveIntentResponse{} } func (m *ResolveIntentResponse) String() string { return proto.CompactTextString(m) } func (*ResolveIntentResponse) ProtoMessage() {} func (*ResolveIntentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{56} + return fileDescriptor_api_2c9fb4f9c25448db, []int{56} } func (m *ResolveIntentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2943,7 +2943,7 @@ func (m *ResolveIntentRangeRequest) Reset() { *m = ResolveIntentRangeReq func (m *ResolveIntentRangeRequest) String() string { return proto.CompactTextString(m) } func (*ResolveIntentRangeRequest) ProtoMessage() {} func (*ResolveIntentRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{57} + return fileDescriptor_api_2c9fb4f9c25448db, []int{57} } func (m *ResolveIntentRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2978,7 +2978,7 @@ func (m *ResolveIntentRangeResponse) Reset() { *m = ResolveIntentRangeRe func (m *ResolveIntentRangeResponse) String() string { return proto.CompactTextString(m) } func (*ResolveIntentRangeResponse) ProtoMessage() {} func (*ResolveIntentRangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{58} + return fileDescriptor_api_2c9fb4f9c25448db, []int{58} } func (m *ResolveIntentRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3015,7 +3015,7 @@ func (m *MergeRequest) Reset() { *m = MergeRequest{} } func (m *MergeRequest) String() string { return proto.CompactTextString(m) } func (*MergeRequest) ProtoMessage() {} func (*MergeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{59} + return fileDescriptor_api_2c9fb4f9c25448db, []int{59} } func (m *MergeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3049,7 +3049,7 @@ func (m *MergeResponse) Reset() { *m = MergeResponse{} } func (m *MergeResponse) String() string { return proto.CompactTextString(m) } func (*MergeResponse) ProtoMessage() {} func (*MergeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{60} + return fileDescriptor_api_2c9fb4f9c25448db, []int{60} } func (m *MergeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3094,7 +3094,7 @@ func (m *TruncateLogRequest) Reset() { *m = TruncateLogRequest{} } func (m *TruncateLogRequest) String() string { return proto.CompactTextString(m) } func (*TruncateLogRequest) ProtoMessage() {} func (*TruncateLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{61} + return fileDescriptor_api_2c9fb4f9c25448db, []int{61} } func (m *TruncateLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3128,7 +3128,7 @@ func (m *TruncateLogResponse) Reset() { *m = TruncateLogResponse{} } func (m *TruncateLogResponse) String() string { return proto.CompactTextString(m) } func (*TruncateLogResponse) ProtoMessage() {} func (*TruncateLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{62} + return fileDescriptor_api_2c9fb4f9c25448db, []int{62} } func (m *TruncateLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3172,7 +3172,7 @@ func (m *RequestLeaseRequest) Reset() { *m = RequestLeaseRequest{} } func (m *RequestLeaseRequest) String() string { return proto.CompactTextString(m) } func (*RequestLeaseRequest) ProtoMessage() {} func (*RequestLeaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{63} + return fileDescriptor_api_2c9fb4f9c25448db, []int{63} } func (m *RequestLeaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3221,7 +3221,7 @@ func (m *TransferLeaseRequest) Reset() { *m = TransferLeaseRequest{} } func (m *TransferLeaseRequest) String() string { return proto.CompactTextString(m) } func (*TransferLeaseRequest) ProtoMessage() {} func (*TransferLeaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{64} + return fileDescriptor_api_2c9fb4f9c25448db, []int{64} } func (m *TransferLeaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3258,7 +3258,7 @@ func (m *LeaseInfoRequest) Reset() { *m = LeaseInfoRequest{} } func (m *LeaseInfoRequest) String() string { return proto.CompactTextString(m) } func (*LeaseInfoRequest) ProtoMessage() {} func (*LeaseInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{65} + return fileDescriptor_api_2c9fb4f9c25448db, []int{65} } func (m *LeaseInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3295,7 +3295,7 @@ func (m *LeaseInfoResponse) Reset() { *m = LeaseInfoResponse{} } func (m *LeaseInfoResponse) String() string { return proto.CompactTextString(m) } func (*LeaseInfoResponse) ProtoMessage() {} func (*LeaseInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{66} + return fileDescriptor_api_2c9fb4f9c25448db, []int{66} } func (m *LeaseInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3330,7 +3330,7 @@ func (m *RequestLeaseResponse) Reset() { *m = RequestLeaseResponse{} } func (m *RequestLeaseResponse) String() string { return proto.CompactTextString(m) } func (*RequestLeaseResponse) ProtoMessage() {} func (*RequestLeaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{67} + return fileDescriptor_api_2c9fb4f9c25448db, []int{67} } func (m *RequestLeaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3385,7 +3385,7 @@ func (m *ComputeChecksumRequest) Reset() { *m = ComputeChecksumRequest{} func (m *ComputeChecksumRequest) String() string { return proto.CompactTextString(m) } func (*ComputeChecksumRequest) ProtoMessage() {} func (*ComputeChecksumRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{68} + return fileDescriptor_api_2c9fb4f9c25448db, []int{68} } func (m *ComputeChecksumRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3422,7 +3422,7 @@ func (m *ComputeChecksumResponse) Reset() { *m = ComputeChecksumResponse func (m *ComputeChecksumResponse) String() string { return proto.CompactTextString(m) } func (*ComputeChecksumResponse) ProtoMessage() {} func (*ComputeChecksumResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{69} + return fileDescriptor_api_2c9fb4f9c25448db, []int{69} } func (m *ComputeChecksumResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3462,7 +3462,7 @@ func (m *ExternalStorage) Reset() { *m = ExternalStorage{} } func (m *ExternalStorage) String() string { return proto.CompactTextString(m) } func (*ExternalStorage) ProtoMessage() {} func (*ExternalStorage) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70} } func (m *ExternalStorage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3496,7 +3496,7 @@ func (m *ExternalStorage_LocalFilePath) Reset() { *m = ExternalStorage_L func (m *ExternalStorage_LocalFilePath) String() string { return proto.CompactTextString(m) } func (*ExternalStorage_LocalFilePath) ProtoMessage() {} func (*ExternalStorage_LocalFilePath) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70, 0} } func (m *ExternalStorage_LocalFilePath) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3529,7 +3529,7 @@ func (m *ExternalStorage_Http) Reset() { *m = ExternalStorage_Http{} } func (m *ExternalStorage_Http) String() string { return proto.CompactTextString(m) } func (*ExternalStorage_Http) ProtoMessage() {} func (*ExternalStorage_Http) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70, 1} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70, 1} } func (m *ExternalStorage_Http) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3571,7 +3571,7 @@ func (m *ExternalStorage_S3) Reset() { *m = ExternalStorage_S3{} } func (m *ExternalStorage_S3) String() string { return proto.CompactTextString(m) } func (*ExternalStorage_S3) ProtoMessage() {} func (*ExternalStorage_S3) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70, 2} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70, 2} } func (m *ExternalStorage_S3) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3610,7 +3610,7 @@ func (m *ExternalStorage_GCS) Reset() { *m = ExternalStorage_GCS{} } func (m *ExternalStorage_GCS) String() string { return proto.CompactTextString(m) } func (*ExternalStorage_GCS) ProtoMessage() {} func (*ExternalStorage_GCS) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70, 3} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70, 3} } func (m *ExternalStorage_GCS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3646,7 +3646,7 @@ func (m *ExternalStorage_Azure) Reset() { *m = ExternalStorage_Azure{} } func (m *ExternalStorage_Azure) String() string { return proto.CompactTextString(m) } func (*ExternalStorage_Azure) ProtoMessage() {} func (*ExternalStorage_Azure) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70, 4} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70, 4} } func (m *ExternalStorage_Azure) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3685,7 +3685,7 @@ func (m *ExternalStorage_Workload) Reset() { *m = ExternalStorage_Worklo func (m *ExternalStorage_Workload) String() string { return proto.CompactTextString(m) } func (*ExternalStorage_Workload) ProtoMessage() {} func (*ExternalStorage_Workload) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70, 5} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70, 5} } func (m *ExternalStorage_Workload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3727,7 +3727,7 @@ func (m *ExternalStorage_FileTable) Reset() { *m = ExternalStorage_FileT func (m *ExternalStorage_FileTable) String() string { return proto.CompactTextString(m) } func (*ExternalStorage_FileTable) ProtoMessage() {} func (*ExternalStorage_FileTable) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{70, 6} + return fileDescriptor_api_2c9fb4f9c25448db, []int{70, 6} } func (m *ExternalStorage_FileTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3767,7 +3767,7 @@ func (m *WriteBatchRequest) Reset() { *m = WriteBatchRequest{} } func (m *WriteBatchRequest) String() string { return proto.CompactTextString(m) } func (*WriteBatchRequest) ProtoMessage() {} func (*WriteBatchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{71} + return fileDescriptor_api_2c9fb4f9c25448db, []int{71} } func (m *WriteBatchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3801,7 +3801,7 @@ func (m *WriteBatchResponse) Reset() { *m = WriteBatchResponse{} } func (m *WriteBatchResponse) String() string { return proto.CompactTextString(m) } func (*WriteBatchResponse) ProtoMessage() {} func (*WriteBatchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{72} + return fileDescriptor_api_2c9fb4f9c25448db, []int{72} } func (m *WriteBatchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3837,7 +3837,7 @@ func (m *FileEncryptionOptions) Reset() { *m = FileEncryptionOptions{} } func (m *FileEncryptionOptions) String() string { return proto.CompactTextString(m) } func (*FileEncryptionOptions) ProtoMessage() {} func (*FileEncryptionOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{73} + return fileDescriptor_api_2c9fb4f9c25448db, []int{73} } func (m *FileEncryptionOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3907,7 +3907,7 @@ func (m *ExportRequest) Reset() { *m = ExportRequest{} } func (m *ExportRequest) String() string { return proto.CompactTextString(m) } func (*ExportRequest) ProtoMessage() {} func (*ExportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{74} + return fileDescriptor_api_2c9fb4f9c25448db, []int{74} } func (m *ExportRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3959,7 +3959,7 @@ func (m *BulkOpSummary) Reset() { *m = BulkOpSummary{} } func (m *BulkOpSummary) String() string { return proto.CompactTextString(m) } func (*BulkOpSummary) ProtoMessage() {} func (*BulkOpSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{75} + return fileDescriptor_api_2c9fb4f9c25448db, []int{75} } func (m *BulkOpSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3995,7 +3995,7 @@ func (m *ExportResponse) Reset() { *m = ExportResponse{} } func (m *ExportResponse) String() string { return proto.CompactTextString(m) } func (*ExportResponse) ProtoMessage() {} func (*ExportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{76} + return fileDescriptor_api_2c9fb4f9c25448db, []int{76} } func (m *ExportResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4035,7 +4035,7 @@ func (m *ExportResponse_File) Reset() { *m = ExportResponse_File{} } func (m *ExportResponse_File) String() string { return proto.CompactTextString(m) } func (*ExportResponse_File) ProtoMessage() {} func (*ExportResponse_File) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{76, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{76, 0} } func (m *ExportResponse_File) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4086,7 +4086,7 @@ func (m *ImportRequest) Reset() { *m = ImportRequest{} } func (m *ImportRequest) String() string { return proto.CompactTextString(m) } func (*ImportRequest) ProtoMessage() {} func (*ImportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{77} + return fileDescriptor_api_2c9fb4f9c25448db, []int{77} } func (m *ImportRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4121,7 +4121,7 @@ func (m *ImportRequest_File) Reset() { *m = ImportRequest_File{} } func (m *ImportRequest_File) String() string { return proto.CompactTextString(m) } func (*ImportRequest_File) ProtoMessage() {} func (*ImportRequest_File) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{77, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{77, 0} } func (m *ImportRequest_File) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4157,7 +4157,7 @@ func (m *ImportRequest_TableRekey) Reset() { *m = ImportRequest_TableRek func (m *ImportRequest_TableRekey) String() string { return proto.CompactTextString(m) } func (*ImportRequest_TableRekey) ProtoMessage() {} func (*ImportRequest_TableRekey) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{77, 1} + return fileDescriptor_api_2c9fb4f9c25448db, []int{77, 1} } func (m *ImportRequest_TableRekey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4192,7 +4192,7 @@ func (m *ImportResponse) Reset() { *m = ImportResponse{} } func (m *ImportResponse) String() string { return proto.CompactTextString(m) } func (*ImportResponse) ProtoMessage() {} func (*ImportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{78} + return fileDescriptor_api_2c9fb4f9c25448db, []int{78} } func (m *ImportResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4230,7 +4230,7 @@ func (m *AdminScatterRequest) Reset() { *m = AdminScatterRequest{} } func (m *AdminScatterRequest) String() string { return proto.CompactTextString(m) } func (*AdminScatterRequest) ProtoMessage() {} func (*AdminScatterRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{79} + return fileDescriptor_api_2c9fb4f9c25448db, []int{79} } func (m *AdminScatterRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4267,7 +4267,7 @@ func (m *AdminScatterResponse) Reset() { *m = AdminScatterResponse{} } func (m *AdminScatterResponse) String() string { return proto.CompactTextString(m) } func (*AdminScatterResponse) ProtoMessage() {} func (*AdminScatterResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{80} + return fileDescriptor_api_2c9fb4f9c25448db, []int{80} } func (m *AdminScatterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4300,7 +4300,7 @@ func (m *AdminScatterResponse_Range) Reset() { *m = AdminScatterResponse func (m *AdminScatterResponse_Range) String() string { return proto.CompactTextString(m) } func (*AdminScatterResponse_Range) ProtoMessage() {} func (*AdminScatterResponse_Range) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{80, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{80, 0} } func (m *AdminScatterResponse_Range) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4345,7 +4345,7 @@ func (m *AdminVerifyProtectedTimestampRequest) Reset() { *m = AdminVerif func (m *AdminVerifyProtectedTimestampRequest) String() string { return proto.CompactTextString(m) } func (*AdminVerifyProtectedTimestampRequest) ProtoMessage() {} func (*AdminVerifyProtectedTimestampRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{81} + return fileDescriptor_api_2c9fb4f9c25448db, []int{81} } func (m *AdminVerifyProtectedTimestampRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4383,7 +4383,7 @@ func (m *AdminVerifyProtectedTimestampResponse) Reset() { *m = AdminVeri func (m *AdminVerifyProtectedTimestampResponse) String() string { return proto.CompactTextString(m) } func (*AdminVerifyProtectedTimestampResponse) ProtoMessage() {} func (*AdminVerifyProtectedTimestampResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{82} + return fileDescriptor_api_2c9fb4f9c25448db, []int{82} } func (m *AdminVerifyProtectedTimestampResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4436,7 +4436,7 @@ func (m *AddSSTableRequest) Reset() { *m = AddSSTableRequest{} } func (m *AddSSTableRequest) String() string { return proto.CompactTextString(m) } func (*AddSSTableRequest) ProtoMessage() {} func (*AddSSTableRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{83} + return fileDescriptor_api_2c9fb4f9c25448db, []int{83} } func (m *AddSSTableRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4470,7 +4470,7 @@ func (m *AddSSTableResponse) Reset() { *m = AddSSTableResponse{} } func (m *AddSSTableResponse) String() string { return proto.CompactTextString(m) } func (*AddSSTableResponse) ProtoMessage() {} func (*AddSSTableResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{84} + return fileDescriptor_api_2c9fb4f9c25448db, []int{84} } func (m *AddSSTableResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4514,7 +4514,7 @@ func (m *RefreshRequest) Reset() { *m = RefreshRequest{} } func (m *RefreshRequest) String() string { return proto.CompactTextString(m) } func (*RefreshRequest) ProtoMessage() {} func (*RefreshRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{85} + return fileDescriptor_api_2c9fb4f9c25448db, []int{85} } func (m *RefreshRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4548,7 +4548,7 @@ func (m *RefreshResponse) Reset() { *m = RefreshResponse{} } func (m *RefreshResponse) String() string { return proto.CompactTextString(m) } func (*RefreshResponse) ProtoMessage() {} func (*RefreshResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{86} + return fileDescriptor_api_2c9fb4f9c25448db, []int{86} } func (m *RefreshResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4587,7 +4587,7 @@ func (m *RefreshRangeRequest) Reset() { *m = RefreshRangeRequest{} } func (m *RefreshRangeRequest) String() string { return proto.CompactTextString(m) } func (*RefreshRangeRequest) ProtoMessage() {} func (*RefreshRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{87} + return fileDescriptor_api_2c9fb4f9c25448db, []int{87} } func (m *RefreshRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4621,7 +4621,7 @@ func (m *RefreshRangeResponse) Reset() { *m = RefreshRangeResponse{} } func (m *RefreshRangeResponse) String() string { return proto.CompactTextString(m) } func (*RefreshRangeResponse) ProtoMessage() {} func (*RefreshRangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{88} + return fileDescriptor_api_2c9fb4f9c25448db, []int{88} } func (m *RefreshRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4670,7 +4670,7 @@ func (m *SubsumeRequest) Reset() { *m = SubsumeRequest{} } func (m *SubsumeRequest) String() string { return proto.CompactTextString(m) } func (*SubsumeRequest) ProtoMessage() {} func (*SubsumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{89} + return fileDescriptor_api_2c9fb4f9c25448db, []int{89} } func (m *SubsumeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4719,7 +4719,7 @@ func (m *SubsumeResponse) Reset() { *m = SubsumeResponse{} } func (m *SubsumeResponse) String() string { return proto.CompactTextString(m) } func (*SubsumeResponse) ProtoMessage() {} func (*SubsumeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{90} + return fileDescriptor_api_2c9fb4f9c25448db, []int{90} } func (m *SubsumeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4754,7 +4754,7 @@ func (m *RangeStatsRequest) Reset() { *m = RangeStatsRequest{} } func (m *RangeStatsRequest) String() string { return proto.CompactTextString(m) } func (*RangeStatsRequest) ProtoMessage() {} func (*RangeStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{91} + return fileDescriptor_api_2c9fb4f9c25448db, []int{91} } func (m *RangeStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4796,7 +4796,7 @@ func (m *RangeStatsResponse) Reset() { *m = RangeStatsResponse{} } func (m *RangeStatsResponse) String() string { return proto.CompactTextString(m) } func (*RangeStatsResponse) ProtoMessage() {} func (*RangeStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{92} + return fileDescriptor_api_2c9fb4f9c25448db, []int{92} } func (m *RangeStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4879,7 +4879,7 @@ func (m *RequestUnion) Reset() { *m = RequestUnion{} } func (m *RequestUnion) String() string { return proto.CompactTextString(m) } func (*RequestUnion) ProtoMessage() {} func (*RequestUnion) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{93} + return fileDescriptor_api_2c9fb4f9c25448db, []int{93} } func (m *RequestUnion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6329,7 +6329,7 @@ func (m *ResponseUnion) Reset() { *m = ResponseUnion{} } func (m *ResponseUnion) String() string { return proto.CompactTextString(m) } func (*ResponseUnion) ProtoMessage() {} func (*ResponseUnion) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{94} + return fileDescriptor_api_2c9fb4f9c25448db, []int{94} } func (m *ResponseUnion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7864,7 +7864,7 @@ func (m *Header) Reset() { *m = Header{} } func (m *Header) String() string { return proto.CompactTextString(m) } func (*Header) ProtoMessage() {} func (*Header) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{95} + return fileDescriptor_api_2c9fb4f9c25448db, []int{95} } func (m *Header) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7902,7 +7902,7 @@ func (m *ClientRangeInfo) Reset() { *m = ClientRangeInfo{} } func (m *ClientRangeInfo) String() string { return proto.CompactTextString(m) } func (*ClientRangeInfo) ProtoMessage() {} func (*ClientRangeInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{96} + return fileDescriptor_api_2c9fb4f9c25448db, []int{96} } func (m *ClientRangeInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7938,7 +7938,7 @@ type BatchRequest struct { func (m *BatchRequest) Reset() { *m = BatchRequest{} } func (*BatchRequest) ProtoMessage() {} func (*BatchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{97} + return fileDescriptor_api_2c9fb4f9c25448db, []int{97} } func (m *BatchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7975,7 +7975,7 @@ type BatchResponse struct { func (m *BatchResponse) Reset() { *m = BatchResponse{} } func (*BatchResponse) ProtoMessage() {} func (*BatchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{98} + return fileDescriptor_api_2c9fb4f9c25448db, []int{98} } func (m *BatchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8049,7 +8049,7 @@ func (m *BatchResponse_Header) Reset() { *m = BatchResponse_Header{} } func (m *BatchResponse_Header) String() string { return proto.CompactTextString(m) } func (*BatchResponse_Header) ProtoMessage() {} func (*BatchResponse_Header) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{98, 0} + return fileDescriptor_api_2c9fb4f9c25448db, []int{98, 0} } func (m *BatchResponse_Header) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8087,7 +8087,7 @@ func (m *RangeLookupRequest) Reset() { *m = RangeLookupRequest{} } func (m *RangeLookupRequest) String() string { return proto.CompactTextString(m) } func (*RangeLookupRequest) ProtoMessage() {} func (*RangeLookupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{99} + return fileDescriptor_api_2c9fb4f9c25448db, []int{99} } func (m *RangeLookupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8125,7 +8125,7 @@ func (m *RangeLookupResponse) Reset() { *m = RangeLookupResponse{} } func (m *RangeLookupResponse) String() string { return proto.CompactTextString(m) } func (*RangeLookupResponse) ProtoMessage() {} func (*RangeLookupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{100} + return fileDescriptor_api_2c9fb4f9c25448db, []int{100} } func (m *RangeLookupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8164,7 +8164,7 @@ func (m *RangeFeedRequest) Reset() { *m = RangeFeedRequest{} } func (m *RangeFeedRequest) String() string { return proto.CompactTextString(m) } func (*RangeFeedRequest) ProtoMessage() {} func (*RangeFeedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{101} + return fileDescriptor_api_2c9fb4f9c25448db, []int{101} } func (m *RangeFeedRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8205,7 +8205,7 @@ func (m *RangeFeedValue) Reset() { *m = RangeFeedValue{} } func (m *RangeFeedValue) String() string { return proto.CompactTextString(m) } func (*RangeFeedValue) ProtoMessage() {} func (*RangeFeedValue) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{102} + return fileDescriptor_api_2c9fb4f9c25448db, []int{102} } func (m *RangeFeedValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8246,7 +8246,7 @@ func (m *RangeFeedCheckpoint) Reset() { *m = RangeFeedCheckpoint{} } func (m *RangeFeedCheckpoint) String() string { return proto.CompactTextString(m) } func (*RangeFeedCheckpoint) ProtoMessage() {} func (*RangeFeedCheckpoint) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{103} + return fileDescriptor_api_2c9fb4f9c25448db, []int{103} } func (m *RangeFeedCheckpoint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8283,7 +8283,7 @@ func (m *RangeFeedError) Reset() { *m = RangeFeedError{} } func (m *RangeFeedError) String() string { return proto.CompactTextString(m) } func (*RangeFeedError) ProtoMessage() {} func (*RangeFeedError) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{104} + return fileDescriptor_api_2c9fb4f9c25448db, []int{104} } func (m *RangeFeedError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8320,7 +8320,7 @@ func (m *RangeFeedEvent) Reset() { *m = RangeFeedEvent{} } func (m *RangeFeedEvent) String() string { return proto.CompactTextString(m) } func (*RangeFeedEvent) ProtoMessage() {} func (*RangeFeedEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{105} + return fileDescriptor_api_2c9fb4f9c25448db, []int{105} } func (m *RangeFeedEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8345,6 +8345,94 @@ func (m *RangeFeedEvent) XXX_DiscardUnknown() { var xxx_messageInfo_RangeFeedEvent proto.InternalMessageInfo +// UnsafeHealRangeRequest sends a snapshot to help recover unavailable ranges. +// This is a lower level primitive that is not called by the user directly and +// is specific to a range (nothing distributed) as other logic should +// be at a higher level that has more insight into state of the cluster. +// +// The caller should update meta2 and then call this RPC to update the range +// snapshot. If this RPC only took a range ID, we would have to look up the +// RangeDescriptor. As a result, RangeDescriptor should be passed in by the +// caller. Higher level abstractions can use meta2 or a survivor to identify the +// RangeDescriptor. +// +// Two cases are covered by this RPC: the case where all replicas are lost and +// the case where one or more relicas remain (resuscitation). For these two +// cases, node_id and store_id are either the designated place we are recreating +// the replica or the designated survivor that we are recovering from, +// respectively. We cover both use cases in this RPC as most of the logic for +// sending a snapshot are the same. +// +// TODO (thesamhuang and tbg): explain how this can be safely used and how the +// orchestrator around this will work. In particular, restarting with a missing +// node vs a missing store. +type UnsafeHealRangeRequest struct { + Desc RangeDescriptor `protobuf:"bytes,1,opt,name=desc,proto3" json:"desc"` + NodeID int32 `protobuf:"varint,2,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"` + StoreID int32 `protobuf:"varint,3,opt,name=store_id,json=storeId,proto3" json:"store_id,omitempty"` +} + +func (m *UnsafeHealRangeRequest) Reset() { *m = UnsafeHealRangeRequest{} } +func (m *UnsafeHealRangeRequest) String() string { return proto.CompactTextString(m) } +func (*UnsafeHealRangeRequest) ProtoMessage() {} +func (*UnsafeHealRangeRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_api_2c9fb4f9c25448db, []int{106} +} +func (m *UnsafeHealRangeRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *UnsafeHealRangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalTo(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (dst *UnsafeHealRangeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_UnsafeHealRangeRequest.Merge(dst, src) +} +func (m *UnsafeHealRangeRequest) XXX_Size() int { + return m.Size() +} +func (m *UnsafeHealRangeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_UnsafeHealRangeRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_UnsafeHealRangeRequest proto.InternalMessageInfo + +type UnsafeHealRangeResponse struct { +} + +func (m *UnsafeHealRangeResponse) Reset() { *m = UnsafeHealRangeResponse{} } +func (m *UnsafeHealRangeResponse) String() string { return proto.CompactTextString(m) } +func (*UnsafeHealRangeResponse) ProtoMessage() {} +func (*UnsafeHealRangeResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_api_2c9fb4f9c25448db, []int{107} +} +func (m *UnsafeHealRangeResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *UnsafeHealRangeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalTo(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (dst *UnsafeHealRangeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_UnsafeHealRangeResponse.Merge(dst, src) +} +func (m *UnsafeHealRangeResponse) XXX_Size() int { + return m.Size() +} +func (m *UnsafeHealRangeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_UnsafeHealRangeResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_UnsafeHealRangeResponse proto.InternalMessageInfo + // GossipSubscriptionRequest initiates a game of telephone. It establishes an // indefinite stream that proxies gossip information overheard by the recipient // node back to the caller. Gossip information is filtered down to just those @@ -8361,7 +8449,7 @@ func (m *GossipSubscriptionRequest) Reset() { *m = GossipSubscriptionReq func (m *GossipSubscriptionRequest) String() string { return proto.CompactTextString(m) } func (*GossipSubscriptionRequest) ProtoMessage() {} func (*GossipSubscriptionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{106} + return fileDescriptor_api_2c9fb4f9c25448db, []int{108} } func (m *GossipSubscriptionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8401,7 +8489,7 @@ func (m *GossipSubscriptionEvent) Reset() { *m = GossipSubscriptionEvent func (m *GossipSubscriptionEvent) String() string { return proto.CompactTextString(m) } func (*GossipSubscriptionEvent) ProtoMessage() {} func (*GossipSubscriptionEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{107} + return fileDescriptor_api_2c9fb4f9c25448db, []int{109} } func (m *GossipSubscriptionEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8437,7 +8525,7 @@ func (m *JoinNodeRequest) Reset() { *m = JoinNodeRequest{} } func (m *JoinNodeRequest) String() string { return proto.CompactTextString(m) } func (*JoinNodeRequest) ProtoMessage() {} func (*JoinNodeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{108} + return fileDescriptor_api_2c9fb4f9c25448db, []int{110} } func (m *JoinNodeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8476,7 +8564,7 @@ func (m *JoinNodeResponse) Reset() { *m = JoinNodeResponse{} } func (m *JoinNodeResponse) String() string { return proto.CompactTextString(m) } func (*JoinNodeResponse) ProtoMessage() {} func (*JoinNodeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_2f741d25c759be28, []int{109} + return fileDescriptor_api_2c9fb4f9c25448db, []int{111} } func (m *JoinNodeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8624,6 +8712,8 @@ func init() { proto.RegisterType((*RangeFeedCheckpoint)(nil), "cockroach.roachpb.RangeFeedCheckpoint") proto.RegisterType((*RangeFeedError)(nil), "cockroach.roachpb.RangeFeedError") proto.RegisterType((*RangeFeedEvent)(nil), "cockroach.roachpb.RangeFeedEvent") + proto.RegisterType((*UnsafeHealRangeRequest)(nil), "cockroach.roachpb.UnsafeHealRangeRequest") + proto.RegisterType((*UnsafeHealRangeResponse)(nil), "cockroach.roachpb.UnsafeHealRangeResponse") proto.RegisterType((*GossipSubscriptionRequest)(nil), "cockroach.roachpb.GossipSubscriptionRequest") proto.RegisterType((*GossipSubscriptionEvent)(nil), "cockroach.roachpb.GossipSubscriptionEvent") proto.RegisterType((*JoinNodeRequest)(nil), "cockroach.roachpb.JoinNodeRequest") @@ -10559,6 +10649,7 @@ type InternalClient interface { RangeLookup(ctx context.Context, in *RangeLookupRequest, opts ...grpc.CallOption) (*RangeLookupResponse, error) RangeFeed(ctx context.Context, in *RangeFeedRequest, opts ...grpc.CallOption) (Internal_RangeFeedClient, error) GossipSubscription(ctx context.Context, in *GossipSubscriptionRequest, opts ...grpc.CallOption) (Internal_GossipSubscriptionClient, error) + UnsafeHealRange(ctx context.Context, in *UnsafeHealRangeRequest, opts ...grpc.CallOption) (*UnsafeHealRangeResponse, error) // Join a bootstrapped cluster. If the target node is itself not part of a // bootstrapped cluster, an appropriate error is returned. Join(ctx context.Context, in *JoinNodeRequest, opts ...grpc.CallOption) (*JoinNodeResponse, error) @@ -10654,6 +10745,15 @@ func (x *internalGossipSubscriptionClient) Recv() (*GossipSubscriptionEvent, err return m, nil } +func (c *internalClient) UnsafeHealRange(ctx context.Context, in *UnsafeHealRangeRequest, opts ...grpc.CallOption) (*UnsafeHealRangeResponse, error) { + out := new(UnsafeHealRangeResponse) + err := c.cc.Invoke(ctx, "/cockroach.roachpb.Internal/UnsafeHealRange", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *internalClient) Join(ctx context.Context, in *JoinNodeRequest, opts ...grpc.CallOption) (*JoinNodeResponse, error) { out := new(JoinNodeResponse) err := c.cc.Invoke(ctx, "/cockroach.roachpb.Internal/Join", in, out, opts...) @@ -10669,6 +10769,7 @@ type InternalServer interface { RangeLookup(context.Context, *RangeLookupRequest) (*RangeLookupResponse, error) RangeFeed(*RangeFeedRequest, Internal_RangeFeedServer) error GossipSubscription(*GossipSubscriptionRequest, Internal_GossipSubscriptionServer) error + UnsafeHealRange(context.Context, *UnsafeHealRangeRequest) (*UnsafeHealRangeResponse, error) // Join a bootstrapped cluster. If the target node is itself not part of a // bootstrapped cluster, an appropriate error is returned. Join(context.Context, *JoinNodeRequest) (*JoinNodeResponse, error) @@ -10756,6 +10857,24 @@ func (x *internalGossipSubscriptionServer) Send(m *GossipSubscriptionEvent) erro return x.ServerStream.SendMsg(m) } +func _Internal_UnsafeHealRange_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(UnsafeHealRangeRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InternalServer).UnsafeHealRange(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cockroach.roachpb.Internal/UnsafeHealRange", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InternalServer).UnsafeHealRange(ctx, req.(*UnsafeHealRangeRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _Internal_Join_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(JoinNodeRequest) if err := dec(in); err != nil { @@ -10786,6 +10905,10 @@ var _Internal_serviceDesc = grpc.ServiceDesc{ MethodName: "RangeLookup", Handler: _Internal_RangeLookup_Handler, }, + { + MethodName: "UnsafeHealRange", + Handler: _Internal_UnsafeHealRange_Handler, + }, { MethodName: "Join", Handler: _Internal_Join_Handler, @@ -17190,6 +17313,60 @@ func (m *RangeFeedEvent) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *UnsafeHealRangeRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *UnsafeHealRangeRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + dAtA[i] = 0xa + i++ + i = encodeVarintApi(dAtA, i, uint64(m.Desc.Size())) + n272, err := m.Desc.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n272 + if m.NodeID != 0 { + dAtA[i] = 0x10 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.NodeID)) + } + if m.StoreID != 0 { + dAtA[i] = 0x18 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.StoreID)) + } + return i, nil +} + +func (m *UnsafeHealRangeResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *UnsafeHealRangeResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + func (m *GossipSubscriptionRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -17247,11 +17424,11 @@ func (m *GossipSubscriptionEvent) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Content.Size())) - n272, err := m.Content.MarshalTo(dAtA[i:]) + n273, err := m.Content.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n272 + i += n273 if len(m.PatternMatched) > 0 { dAtA[i] = 0x1a i++ @@ -17262,11 +17439,11 @@ func (m *GossipSubscriptionEvent) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.Error.Size())) - n273, err := m.Error.MarshalTo(dAtA[i:]) + n274, err := m.Error.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n273 + i += n274 } return i, nil } @@ -17290,11 +17467,11 @@ func (m *JoinNodeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.BinaryVersion.Size())) - n274, err := m.BinaryVersion.MarshalTo(dAtA[i:]) + n275, err := m.BinaryVersion.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n274 + i += n275 } return i, nil } @@ -17334,11 +17511,11 @@ func (m *JoinNodeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.ActiveVersion.Size())) - n275, err := m.ActiveVersion.MarshalTo(dAtA[i:]) + n276, err := m.ActiveVersion.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n275 + i += n276 } return i, nil } @@ -20563,6 +20740,32 @@ func (m *RangeFeedEvent) Size() (n int) { return n } +func (m *UnsafeHealRangeRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Desc.Size() + n += 1 + l + sovApi(uint64(l)) + if m.NodeID != 0 { + n += 1 + sovApi(uint64(m.NodeID)) + } + if m.StoreID != 0 { + n += 1 + sovApi(uint64(m.StoreID)) + } + return n +} + +func (m *UnsafeHealRangeResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func (m *GossipSubscriptionRequest) Size() (n int) { if m == nil { return 0 @@ -39280,6 +39483,174 @@ func (m *RangeFeedEvent) Unmarshal(dAtA []byte) error { } return nil } +func (m *UnsafeHealRangeRequest) 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 ErrIntOverflowApi + } + 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: UnsafeHealRangeRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: UnsafeHealRangeRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Desc", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Desc.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field NodeID", wireType) + } + m.NodeID = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.NodeID |= (int32(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StoreID", wireType) + } + m.StoreID = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StoreID |= (int32(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *UnsafeHealRangeResponse) 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 ErrIntOverflowApi + } + 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: UnsafeHealRangeResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: UnsafeHealRangeResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *GossipSubscriptionRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -39870,513 +40241,516 @@ var ( ErrIntOverflowApi = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("roachpb/api.proto", fileDescriptor_api_2f741d25c759be28) } +func init() { proto.RegisterFile("roachpb/api.proto", fileDescriptor_api_2c9fb4f9c25448db) } -var fileDescriptor_api_2f741d25c759be28 = []byte{ - // 8072 bytes of a gzipped FileDescriptorProto +var fileDescriptor_api_2c9fb4f9c25448db = []byte{ + // 8124 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0x6f, 0x6c, 0x1b, 0x49, - 0x96, 0x9f, 0x9a, 0xa4, 0x24, 0xf2, 0x51, 0x24, 0x5b, 0x25, 0xd9, 0xa6, 0x35, 0x33, 0x96, 0x4d, - 0xff, 0xf7, 0xce, 0x48, 0x63, 0x7b, 0x27, 0x33, 0x37, 0x9e, 0x9b, 0x3d, 0x91, 0xa2, 0x4d, 0x4a, - 0x96, 0x2c, 0x37, 0x29, 0x7b, 0x67, 0x6e, 0x37, 0xbd, 0xad, 0xee, 0x12, 0xd5, 0x2b, 0xb2, 0x9b, - 0xee, 0x6e, 0xea, 0x8f, 0x81, 0x00, 0x97, 0xe4, 0xc3, 0x05, 0x97, 0x60, 0x90, 0x0f, 0x49, 0x10, - 0xe4, 0x72, 0xd9, 0x01, 0x2e, 0xc8, 0x05, 0x38, 0x6c, 0x10, 0x20, 0x08, 0x82, 0x04, 0x97, 0x3f, - 0x1f, 0x2e, 0xc0, 0xe6, 0x70, 0x01, 0x36, 0x01, 0x82, 0x5b, 0x04, 0x88, 0x90, 0xd3, 0x02, 0x41, - 0x90, 0x0f, 0x01, 0x72, 0x1f, 0x12, 0x60, 0x80, 0x04, 0x41, 0xfd, 0xe9, 0x7f, 0x64, 0x93, 0xa2, - 0xbc, 0x3d, 0xc9, 0x00, 0xf7, 0x45, 0x62, 0xbf, 0xaa, 0xf7, 0xba, 0xea, 0x55, 0xd5, 0xab, 0xf7, - 0xab, 0x7a, 0x55, 0x0d, 0xb3, 0x96, 0xa9, 0xa8, 0x7b, 0xdd, 0x9d, 0x65, 0xa5, 0xab, 0x2f, 0x75, - 0x2d, 0xd3, 0x31, 0xd1, 0xac, 0x6a, 0xaa, 0xfb, 0x94, 0xbc, 0xc4, 0x13, 0x17, 0xee, 0xed, 0x1f, - 0x2c, 0xef, 0x1f, 0xd8, 0xd8, 0x3a, 0xc0, 0xd6, 0xb2, 0x6a, 0x1a, 0x6a, 0xcf, 0xb2, 0xb0, 0xa1, - 0x1e, 0x2f, 0xb7, 0x4d, 0x75, 0x9f, 0xfe, 0xd1, 0x8d, 0x16, 0x63, 0x5f, 0x40, 0xae, 0x44, 0x4d, - 0x71, 0x14, 0x4e, 0x9b, 0x77, 0x69, 0xd8, 0xb2, 0x4c, 0xcb, 0xe6, 0xd4, 0x8b, 0x2e, 0xb5, 0x83, - 0x1d, 0x25, 0x90, 0xfb, 0x2d, 0xdb, 0x31, 0x2d, 0xa5, 0x85, 0x97, 0xb1, 0xd1, 0xd2, 0x0d, 0x4c, - 0x32, 0x1c, 0xa8, 0x2a, 0x4f, 0x7c, 0x3b, 0x32, 0xf1, 0x21, 0x4f, 0x2d, 0xf6, 0x1c, 0xbd, 0xbd, - 0xbc, 0xd7, 0x56, 0x97, 0x1d, 0xbd, 0x83, 0x6d, 0x47, 0xe9, 0x74, 0x79, 0xca, 0x3d, 0x9a, 0xe2, - 0x58, 0x8a, 0xaa, 0x1b, 0x2d, 0xf7, 0x7f, 0x77, 0x67, 0xd9, 0xc2, 0xaa, 0x69, 0x69, 0x58, 0x93, - 0xed, 0xae, 0x62, 0xb8, 0xc5, 0x6d, 0x99, 0x2d, 0x93, 0xfe, 0x5c, 0x26, 0xbf, 0x18, 0xb5, 0xf4, - 0x7b, 0x02, 0xe4, 0x24, 0xfc, 0xaa, 0x87, 0x6d, 0xa7, 0x86, 0x15, 0x0d, 0x5b, 0xe8, 0x32, 0x24, - 0xf7, 0xf1, 0x71, 0x31, 0x79, 0x55, 0xb8, 0x33, 0x53, 0x9e, 0xfe, 0xea, 0x64, 0x31, 0xb9, 0x8e, - 0x8f, 0x25, 0x42, 0x43, 0x57, 0x61, 0x1a, 0x1b, 0x9a, 0x4c, 0x92, 0x53, 0xe1, 0xe4, 0x29, 0x6c, - 0x68, 0xeb, 0xf8, 0x18, 0x7d, 0x0f, 0xd2, 0x36, 0x91, 0x66, 0xa8, 0xb8, 0x38, 0x79, 0x55, 0xb8, - 0x33, 0x59, 0xfe, 0x95, 0xaf, 0x4e, 0x16, 0x3f, 0x69, 0xe9, 0xce, 0x5e, 0x6f, 0x67, 0x49, 0x35, - 0x3b, 0xcb, 0x5e, 0x3b, 0x68, 0x3b, 0xfe, 0xef, 0xe5, 0xee, 0x7e, 0x6b, 0xb9, 0x5f, 0x07, 0x4b, - 0xcd, 0x23, 0xa3, 0x81, 0x5f, 0x49, 0x9e, 0xc4, 0x8f, 0x53, 0xff, 0xf5, 0xcb, 0x45, 0x61, 0x2d, - 0x95, 0x16, 0xc4, 0xc4, 0x5a, 0x2a, 0x9d, 0x10, 0x93, 0xa5, 0xdf, 0x4e, 0x42, 0x5e, 0xc2, 0x76, - 0xd7, 0x34, 0x6c, 0xcc, 0xcb, 0xff, 0x3e, 0x24, 0x9d, 0x23, 0x83, 0x96, 0x3f, 0xfb, 0xe0, 0xca, - 0xd2, 0x40, 0xbb, 0x2f, 0x35, 0x2d, 0xc5, 0xb0, 0x15, 0xd5, 0xd1, 0x4d, 0x43, 0x22, 0x59, 0xd1, - 0x47, 0x90, 0xb5, 0xb0, 0xdd, 0xeb, 0x60, 0xaa, 0x2e, 0x5a, 0xb5, 0xec, 0x83, 0x4b, 0x11, 0x9c, - 0x8d, 0xae, 0x62, 0x48, 0xc0, 0xf2, 0x92, 0xdf, 0xe8, 0x32, 0xa4, 0x8d, 0x5e, 0x87, 0x28, 0xc4, - 0xa6, 0xd5, 0x4d, 0x4a, 0xd3, 0x46, 0xaf, 0xb3, 0x8e, 0x8f, 0x6d, 0xf4, 0x5d, 0xb8, 0xa8, 0xe1, - 0xae, 0x85, 0x55, 0xc5, 0xc1, 0x9a, 0x6c, 0x29, 0x46, 0x0b, 0xcb, 0xba, 0xb1, 0x6b, 0xda, 0xc5, - 0xa9, 0xab, 0xc9, 0x3b, 0xd9, 0x07, 0x6f, 0x47, 0xc8, 0x97, 0x48, 0xae, 0xba, 0xb1, 0x6b, 0x96, - 0x53, 0x3f, 0x39, 0x59, 0x9c, 0x90, 0xe6, 0x7d, 0x09, 0x5e, 0x92, 0x8d, 0x1a, 0x90, 0xe3, 0xc5, - 0xb5, 0xb0, 0x62, 0x9b, 0x46, 0x71, 0xfa, 0xaa, 0x70, 0x27, 0xff, 0x60, 0x29, 0x4a, 0x60, 0x48, - 0x35, 0xe4, 0xb1, 0xd7, 0xc1, 0x12, 0xe5, 0x92, 0x66, 0xac, 0xc0, 0x13, 0x7a, 0x0b, 0x32, 0xa4, - 0x26, 0x3b, 0xc7, 0x0e, 0xb6, 0x8b, 0x69, 0x5a, 0x15, 0x52, 0xb5, 0x32, 0x79, 0x2e, 0x7d, 0x0a, - 0x33, 0x41, 0x56, 0x84, 0x20, 0x2f, 0x55, 0x1b, 0xdb, 0x1b, 0x55, 0x79, 0x7b, 0x73, 0x7d, 0xf3, - 0xd9, 0xcb, 0x4d, 0x71, 0x02, 0xcd, 0x83, 0xc8, 0x69, 0xeb, 0xd5, 0xcf, 0xe4, 0xa7, 0xf5, 0x8d, - 0x7a, 0x53, 0x14, 0x16, 0x52, 0x7f, 0xe9, 0xb7, 0xaf, 0x4c, 0x94, 0x5e, 0x00, 0x3c, 0xc1, 0x0e, - 0xef, 0x66, 0xa8, 0x0c, 0x53, 0x7b, 0xb4, 0x3c, 0x45, 0x81, 0x6a, 0xfa, 0x6a, 0x64, 0xc1, 0x03, - 0x5d, 0xb2, 0x9c, 0x26, 0xda, 0xf8, 0xe9, 0xc9, 0xa2, 0x20, 0x71, 0x4e, 0xd6, 0x13, 0x4a, 0xff, - 0x52, 0x80, 0x2c, 0x15, 0xcc, 0x6a, 0x89, 0x2a, 0x7d, 0x92, 0xaf, 0x9d, 0xa9, 0x92, 0x41, 0xd1, - 0x68, 0x09, 0x26, 0x0f, 0x94, 0x76, 0x0f, 0x17, 0x13, 0x54, 0x46, 0x31, 0x42, 0xc6, 0x0b, 0x92, - 0x2e, 0xb1, 0x6c, 0xe8, 0x11, 0xcc, 0xe8, 0x86, 0x83, 0x0d, 0x47, 0x66, 0x6c, 0xc9, 0x33, 0xd8, - 0xb2, 0x2c, 0x37, 0x7d, 0x28, 0xfd, 0x33, 0x01, 0x60, 0xab, 0x17, 0xa7, 0x6a, 0xd0, 0xb7, 0xc7, - 0x2c, 0x3f, 0xef, 0x63, 0xbc, 0x16, 0x17, 0x61, 0x4a, 0x37, 0xda, 0xba, 0xc1, 0xca, 0x9f, 0x96, - 0xf8, 0x13, 0x9a, 0x87, 0xc9, 0x9d, 0xb6, 0x6e, 0x68, 0x74, 0x54, 0xa4, 0x25, 0xf6, 0xc0, 0xd5, - 0x2f, 0x41, 0x96, 0x96, 0x3d, 0x46, 0xed, 0x97, 0xfe, 0x30, 0x01, 0x17, 0x2a, 0xa6, 0xa1, 0xe9, - 0x64, 0x78, 0x2a, 0xed, 0x6f, 0x84, 0x6e, 0xd6, 0x20, 0x30, 0x10, 0x65, 0x7c, 0xd4, 0x1d, 0xb3, - 0xa5, 0x91, 0xcf, 0x55, 0x3d, 0xea, 0x52, 0x5a, 0xb4, 0x3e, 0xd1, 0xb7, 0xe1, 0x92, 0xd2, 0x6e, - 0x9b, 0x87, 0xb2, 0xbe, 0x2b, 0x6b, 0x26, 0xb6, 0x65, 0xc3, 0x74, 0x64, 0x7c, 0xa4, 0xdb, 0x0e, - 0x35, 0x2b, 0x69, 0x69, 0x8e, 0x26, 0xd7, 0x77, 0x57, 0x4d, 0x6c, 0x6f, 0x9a, 0x4e, 0x95, 0x24, - 0x91, 0x31, 0x4b, 0x0a, 0xc3, 0xc6, 0xec, 0x14, 0x31, 0xc8, 0x52, 0x1a, 0x1f, 0x75, 0xe9, 0x98, - 0xe5, 0x4d, 0xf4, 0x7d, 0xb8, 0xd8, 0xaf, 0xcd, 0x38, 0x5b, 0xeb, 0xdf, 0x0b, 0x90, 0xaf, 0x1b, - 0xba, 0xf3, 0x8d, 0x68, 0x26, 0x4f, 0xb5, 0xc9, 0xa0, 0x6a, 0xef, 0x81, 0xb8, 0xab, 0xe8, 0xed, - 0x67, 0x46, 0xd3, 0xec, 0xec, 0xd8, 0x8e, 0x69, 0x60, 0x9b, 0xeb, 0x7e, 0x80, 0xce, 0x75, 0xf6, - 0x02, 0x0a, 0x5e, 0x9d, 0xe2, 0x54, 0xd6, 0x6b, 0x10, 0xeb, 0x86, 0x6a, 0xe1, 0x0e, 0x36, 0x62, - 0xd5, 0xd6, 0xdb, 0x90, 0xd1, 0x5d, 0xb9, 0x54, 0x63, 0x49, 0xc9, 0x27, 0xf0, 0x3a, 0xf5, 0x60, - 0x36, 0xf0, 0xee, 0x38, 0xcd, 0x25, 0x99, 0x38, 0xf0, 0xa1, 0xec, 0xb7, 0x17, 0x99, 0x38, 0xf0, - 0x21, 0x33, 0x6f, 0x9f, 0x41, 0x6e, 0x15, 0xb7, 0xb1, 0x83, 0xe3, 0xb7, 0xfd, 0xdb, 0x90, 0x77, - 0x45, 0xc7, 0xd9, 0x48, 0xbf, 0x25, 0x00, 0xe2, 0x72, 0xc9, 0x8c, 0x1b, 0x67, 0x3b, 0x2d, 0x12, - 0x37, 0xc3, 0xe9, 0x59, 0x06, 0xf3, 0x17, 0x58, 0x2f, 0x05, 0x46, 0xa2, 0x2e, 0x83, 0x6f, 0x83, - 0x53, 0x41, 0x1b, 0xec, 0xb9, 0x3d, 0xc4, 0xe1, 0x39, 0x84, 0xb9, 0x50, 0xf1, 0xe2, 0x6d, 0xca, - 0x14, 0x2d, 0x59, 0xe2, 0x6a, 0x32, 0xe8, 0xdb, 0x51, 0x62, 0xe9, 0xef, 0x08, 0x30, 0x5b, 0x69, - 0x63, 0xc5, 0x8a, 0x5d, 0x2f, 0xdf, 0x81, 0xb4, 0x86, 0x15, 0x8d, 0x56, 0x9c, 0x0d, 0xf8, 0x77, - 0x02, 0x52, 0x88, 0x87, 0xbb, 0xb4, 0xd7, 0x56, 0x97, 0x9a, 0xae, 0xef, 0xcb, 0x47, 0xbd, 0xc7, - 0xc4, 0x3b, 0xc4, 0x67, 0x80, 0x82, 0xe5, 0x8b, 0xb3, 0x53, 0xfc, 0x5d, 0x01, 0x90, 0x84, 0x0f, - 0xb0, 0xe5, 0xc4, 0x5e, 0xf9, 0x55, 0xc8, 0x3a, 0x8a, 0xd5, 0xc2, 0x8e, 0x4c, 0x7c, 0xfb, 0xf3, - 0xd4, 0x1f, 0x18, 0x1f, 0x21, 0x73, 0x0d, 0x7c, 0x0e, 0x73, 0xa1, 0x52, 0xc6, 0xa9, 0x82, 0xff, - 0x29, 0x40, 0xb6, 0xa1, 0x2a, 0x46, 0x9c, 0x75, 0xff, 0x14, 0xb2, 0xb6, 0xaa, 0x18, 0xf2, 0xae, - 0x69, 0x75, 0x14, 0x87, 0x76, 0xfa, 0x7c, 0xa8, 0xee, 0x9e, 0xdf, 0xad, 0x2a, 0xc6, 0x63, 0x9a, - 0x49, 0x02, 0xdb, 0xfb, 0x8d, 0x9e, 0x43, 0x76, 0x1f, 0x1f, 0xcb, 0x1c, 0xa9, 0xd1, 0x99, 0x32, - 0xff, 0xe0, 0xfd, 0x00, 0xff, 0xfe, 0xc1, 0x92, 0x0b, 0xf0, 0x96, 0x02, 0x00, 0x6f, 0x89, 0x70, - 0x2c, 0x35, 0x1c, 0x0b, 0x1b, 0x2d, 0x67, 0x4f, 0x82, 0x7d, 0x7c, 0xfc, 0x94, 0xc9, 0x08, 0x0e, - 0xb5, 0xb5, 0x54, 0x3a, 0x29, 0xa6, 0x4a, 0xff, 0x4b, 0x80, 0x19, 0x56, 0xf1, 0x38, 0x87, 0xda, - 0x07, 0x90, 0xb2, 0xcc, 0x43, 0x36, 0xd4, 0xb2, 0x0f, 0xde, 0x8a, 0x10, 0xb1, 0x8e, 0x8f, 0x83, - 0x73, 0x1c, 0xcd, 0x8e, 0xca, 0xc0, 0xbd, 0x47, 0x99, 0x72, 0x27, 0xc7, 0xe5, 0x06, 0xc6, 0x25, - 0x11, 0x19, 0xb7, 0xa1, 0xb0, 0xa3, 0x38, 0xea, 0x9e, 0x6c, 0xf1, 0x42, 0x92, 0xf9, 0x30, 0x79, - 0x67, 0x46, 0xca, 0x53, 0xb2, 0x5b, 0x74, 0xbb, 0xf4, 0xbf, 0xdd, 0x5e, 0x6f, 0xe3, 0x3f, 0x95, - 0x2d, 0xff, 0x7f, 0x04, 0x3e, 0x9e, 0xdc, 0xfa, 0xff, 0x69, 0xeb, 0x00, 0x3f, 0x4a, 0xc0, 0xa5, - 0xca, 0x1e, 0x56, 0xf7, 0x2b, 0xa6, 0x61, 0xeb, 0xb6, 0x43, 0x34, 0x18, 0x67, 0x2f, 0x78, 0x0b, - 0x32, 0x87, 0xba, 0xb3, 0x27, 0x6b, 0xfa, 0xee, 0x2e, 0xb5, 0x7c, 0x69, 0x29, 0x4d, 0x08, 0xab, - 0xfa, 0xee, 0x2e, 0x7a, 0x08, 0xa9, 0x8e, 0xa9, 0x31, 0x27, 0x3b, 0xff, 0x60, 0x31, 0x42, 0x3c, - 0x2d, 0x9a, 0xdd, 0xeb, 0x6c, 0x98, 0x1a, 0x96, 0x68, 0x66, 0x74, 0x05, 0x40, 0x25, 0xd4, 0xae, - 0xa9, 0x1b, 0x0e, 0x9f, 0x45, 0x03, 0x14, 0x54, 0x83, 0x8c, 0x83, 0xad, 0x8e, 0x6e, 0x28, 0x0e, - 0x2e, 0x4e, 0x52, 0xe5, 0xdd, 0x88, 0x2c, 0x78, 0xb7, 0xad, 0xab, 0xca, 0x2a, 0xb6, 0x55, 0x4b, - 0xef, 0x3a, 0xa6, 0xc5, 0xb5, 0xe8, 0x33, 0x73, 0x8b, 0xfb, 0x45, 0x0a, 0x8a, 0x83, 0x1a, 0x8a, - 0xb3, 0x9f, 0x6c, 0xc1, 0x14, 0xc1, 0xe9, 0x6d, 0x87, 0xf7, 0x94, 0x07, 0xc3, 0x14, 0x11, 0x51, - 0x02, 0x8a, 0xf7, 0xdb, 0x0e, 0x2f, 0x3c, 0x97, 0xb3, 0xf0, 0x7b, 0x02, 0x4c, 0xb1, 0x04, 0x74, - 0x1f, 0xd2, 0x7c, 0x61, 0x42, 0xa3, 0x65, 0x4c, 0x96, 0x2f, 0x9e, 0x9e, 0x2c, 0x4e, 0xb3, 0xb5, - 0x86, 0xd5, 0xaf, 0xfc, 0x9f, 0xd2, 0x34, 0xcd, 0x57, 0xd7, 0x48, 0x9b, 0xd9, 0x8e, 0x62, 0x39, - 0x74, 0x11, 0x28, 0xc1, 0x30, 0x07, 0x25, 0xac, 0xe3, 0x63, 0xb4, 0x06, 0x53, 0xb6, 0xa3, 0x38, - 0x3d, 0x9b, 0xb7, 0xda, 0xb9, 0x0a, 0xdb, 0xa0, 0x9c, 0x12, 0x97, 0x40, 0x9c, 0x21, 0x0d, 0x3b, - 0x8a, 0xde, 0xa6, 0xcd, 0x98, 0x91, 0xf8, 0x53, 0xe9, 0x37, 0x05, 0x98, 0x62, 0x59, 0xd1, 0x25, - 0x98, 0x93, 0x56, 0x36, 0x9f, 0x54, 0xe5, 0xfa, 0xe6, 0x6a, 0xb5, 0x59, 0x95, 0x36, 0xea, 0x9b, - 0x2b, 0xcd, 0xaa, 0x38, 0x81, 0x2e, 0x02, 0x72, 0x13, 0x2a, 0xcf, 0x36, 0x1b, 0xf5, 0x46, 0xb3, - 0xba, 0xd9, 0x14, 0x05, 0xba, 0x46, 0x41, 0xe9, 0x01, 0x6a, 0x02, 0xdd, 0x80, 0xab, 0xfd, 0x54, - 0xb9, 0xd1, 0x5c, 0x69, 0x36, 0xe4, 0x6a, 0xa3, 0x59, 0xdf, 0x58, 0x69, 0x56, 0x57, 0xc5, 0xe4, - 0x88, 0x5c, 0xe4, 0x25, 0x92, 0x54, 0xad, 0x34, 0xc5, 0x54, 0xe9, 0x35, 0x5c, 0x90, 0xb0, 0x6a, - 0x76, 0xba, 0x3d, 0x07, 0x93, 0x52, 0xda, 0x71, 0x8e, 0x97, 0x4b, 0x30, 0xad, 0x59, 0xc7, 0xb2, - 0xd5, 0x33, 0xf8, 0x68, 0x99, 0xd2, 0xac, 0x63, 0xa9, 0x67, 0xf0, 0xce, 0xf8, 0x0f, 0x05, 0xb8, - 0xd8, 0xff, 0xf2, 0x38, 0xbb, 0xe2, 0x73, 0xc8, 0x2a, 0x9a, 0x86, 0x35, 0x59, 0xc3, 0x6d, 0x47, - 0xe1, 0xae, 0xca, 0xbd, 0x80, 0x24, 0xbe, 0x80, 0xb7, 0xe4, 0x2d, 0xe0, 0x6d, 0xbc, 0xa8, 0x54, - 0x68, 0x41, 0x56, 0x09, 0x87, 0x6b, 0x8a, 0xa8, 0x10, 0x4a, 0x29, 0xfd, 0x49, 0x0a, 0x72, 0x55, - 0x43, 0x6b, 0x1e, 0xc5, 0x3a, 0xbb, 0x5c, 0x84, 0x29, 0xd5, 0xec, 0x74, 0x74, 0xc7, 0x55, 0x13, - 0x7b, 0x42, 0xbf, 0x14, 0x70, 0x34, 0x93, 0x63, 0x38, 0x5a, 0xbe, 0x8b, 0x89, 0x7e, 0x00, 0x97, - 0x88, 0x05, 0xb5, 0x0c, 0xa5, 0x2d, 0x33, 0x69, 0xb2, 0x63, 0xe9, 0xad, 0x16, 0xb6, 0xf8, 0x72, - 0xe1, 0x9d, 0x88, 0x72, 0xd6, 0x39, 0x47, 0x85, 0x32, 0x34, 0x59, 0x7e, 0xe9, 0x82, 0x1e, 0x45, - 0x46, 0x9f, 0x00, 0x90, 0xc9, 0x89, 0x2e, 0x41, 0xda, 0xdc, 0x36, 0x0d, 0x5b, 0x83, 0x74, 0xcd, - 0x11, 0x61, 0x20, 0xcf, 0x36, 0x5a, 0x26, 0xd8, 0xe2, 0x55, 0x4f, 0xb7, 0xb0, 0x7c, 0xbf, 0xab, - 0xd2, 0xc5, 0x80, 0x74, 0x39, 0x7f, 0x7a, 0xb2, 0x08, 0x12, 0x23, 0xdf, 0xdf, 0xaa, 0x10, 0xac, - 0xc1, 0x7e, 0x77, 0x55, 0xf4, 0x12, 0xee, 0x06, 0xd6, 0x34, 0xc8, 0x5c, 0xcc, 0xab, 0xa5, 0x38, - 0xf2, 0x9e, 0xde, 0xda, 0xc3, 0x96, 0xec, 0x2d, 0x36, 0xd3, 0xf5, 0xc0, 0xb4, 0x74, 0xc3, 0x67, - 0xa8, 0x28, 0x06, 0x2b, 0xfd, 0x8a, 0x53, 0xa3, 0x99, 0x3d, 0x9d, 0x11, 0xe5, 0x77, 0x4d, 0xdd, - 0x36, 0x8d, 0x62, 0x86, 0x29, 0x9f, 0x3d, 0xa1, 0xbb, 0x20, 0x3a, 0x47, 0x86, 0xbc, 0x87, 0x15, - 0xcb, 0xd9, 0xc1, 0x8a, 0x43, 0xe6, 0x6d, 0xa0, 0x39, 0x0a, 0xce, 0x91, 0x51, 0x0b, 0x90, 0xd1, - 0x73, 0x10, 0x75, 0x43, 0xde, 0x6d, 0xeb, 0xad, 0x3d, 0x47, 0x3e, 0xb4, 0x74, 0x07, 0xdb, 0xc5, - 0x59, 0xaa, 0x90, 0xa8, 0x7e, 0xdb, 0xe0, 0xab, 0xc3, 0xda, 0x4b, 0x92, 0x93, 0xab, 0x26, 0xaf, - 0x1b, 0x8f, 0x29, 0x3f, 0x25, 0xda, 0xde, 0xec, 0x3e, 0x2d, 0xa6, 0x4b, 0xff, 0x49, 0x80, 0xbc, - 0xdb, 0xe9, 0xe2, 0x1c, 0x1f, 0x77, 0x40, 0x34, 0x0d, 0x2c, 0x77, 0xf7, 0x14, 0x1b, 0x73, 0x6d, - 0xf2, 0x29, 0x28, 0x6f, 0x1a, 0x78, 0x8b, 0x90, 0x99, 0xd2, 0xd0, 0x16, 0xcc, 0xda, 0x8e, 0xd2, - 0xd2, 0x8d, 0x56, 0x40, 0xc9, 0x93, 0xe3, 0xbb, 0xfe, 0x22, 0xe7, 0xf6, 0xe8, 0x21, 0xbf, 0xe5, - 0x8f, 0x04, 0x98, 0x5d, 0xd1, 0x3a, 0xba, 0xd1, 0xe8, 0xb6, 0xf5, 0x58, 0x57, 0x1a, 0x6e, 0x40, - 0xc6, 0x26, 0x32, 0x7d, 0xe3, 0xef, 0xa3, 0xc4, 0x34, 0x4d, 0x21, 0xb3, 0xc0, 0x53, 0x28, 0xe0, - 0xa3, 0xae, 0x6e, 0x29, 0x8e, 0x6e, 0x1a, 0x0c, 0xd6, 0xa4, 0xc6, 0xaf, 0x5b, 0xde, 0xe7, 0xf5, - 0xa1, 0x0d, 0xaf, 0xd9, 0x67, 0x80, 0x82, 0x15, 0x8b, 0x13, 0xdf, 0xc8, 0x30, 0x47, 0x45, 0x6f, - 0x1b, 0x76, 0xcc, 0x5a, 0xe3, 0xd6, 0xf9, 0x57, 0x61, 0x3e, 0xfc, 0x82, 0x38, 0x4b, 0xff, 0x7d, - 0xde, 0xe2, 0x1b, 0xd8, 0x6a, 0x7d, 0x0d, 0x6b, 0x2d, 0xae, 0xde, 0xb9, 0xf8, 0x38, 0x4b, 0xfe, - 0x1b, 0x02, 0x5c, 0xa6, 0xb2, 0xe9, 0xae, 0xcc, 0x2e, 0xb6, 0x9e, 0x62, 0xc5, 0x8e, 0x15, 0x61, - 0x5f, 0x87, 0x29, 0x86, 0x94, 0x69, 0x8f, 0x9d, 0x2c, 0x67, 0x89, 0x5f, 0xd3, 0x70, 0x4c, 0x8b, - 0xf8, 0x35, 0x3c, 0x89, 0xd7, 0x53, 0x81, 0x85, 0xa8, 0xb2, 0xc4, 0xbc, 0x94, 0x30, 0xcb, 0xdd, - 0x4b, 0xd2, 0xc5, 0x2b, 0x7b, 0xc4, 0xaf, 0x42, 0x55, 0xc8, 0xaa, 0xf4, 0x97, 0xec, 0x1c, 0x77, - 0x31, 0x95, 0x9f, 0x1f, 0xe5, 0x99, 0x32, 0xb6, 0xe6, 0x71, 0x17, 0x13, 0xf7, 0xd6, 0xfd, 0x4d, - 0xd4, 0x15, 0xa8, 0xea, 0x48, 0xdf, 0x96, 0x8e, 0x2f, 0x9a, 0xd7, 0x75, 0x0f, 0x43, 0x9a, 0xf8, - 0xa7, 0x49, 0xae, 0x0a, 0xf6, 0x26, 0xce, 0x14, 0xab, 0x37, 0xf3, 0x79, 0x68, 0x83, 0x2c, 0x58, - 0xfd, 0xc4, 0x39, 0xaa, 0x1f, 0x58, 0x99, 0xf7, 0xa9, 0xe8, 0x33, 0x08, 0xac, 0xbd, 0xcb, 0xac, - 0x66, 0x2e, 0x5a, 0x3a, 0x8f, 0x52, 0x66, 0x7d, 0x29, 0x8c, 0x6e, 0xa3, 0x0a, 0xa4, 0xf1, 0x51, - 0x57, 0xd6, 0xb0, 0xad, 0x72, 0xb3, 0x56, 0x1a, 0xb6, 0x93, 0x37, 0x80, 0x1f, 0xa6, 0xf1, 0x51, - 0x97, 0x10, 0xd1, 0x36, 0x99, 0xe1, 0x5c, 0x77, 0x82, 0x16, 0xdb, 0x3e, 0x1b, 0x8e, 0xf8, 0xfd, - 0x85, 0x8b, 0x2b, 0x78, 0x9e, 0x04, 0x13, 0xc1, 0xdb, 0xee, 0x4b, 0x01, 0xde, 0x8a, 0x6c, 0xbb, - 0x38, 0x27, 0xbb, 0x4f, 0x20, 0x45, 0x55, 0x90, 0x38, 0xa7, 0x0a, 0x28, 0x57, 0xe9, 0x77, 0xdd, - 0x51, 0x2f, 0xe1, 0xb6, 0x49, 0xd4, 0xfb, 0x35, 0xac, 0xab, 0x4d, 0xbb, 0xcd, 0x9e, 0x38, 0x77, - 0xb3, 0xbb, 0xac, 0x7d, 0x66, 0xa1, 0xaf, 0xb0, 0x71, 0x9a, 0x85, 0xbf, 0x21, 0xc0, 0x9c, 0xe7, - 0x03, 0xc5, 0xec, 0x0e, 0x7f, 0x00, 0x49, 0xc3, 0x3c, 0x3c, 0xcf, 0xd2, 0x22, 0xc9, 0xef, 0x4f, - 0x5b, 0xe1, 0x72, 0xc5, 0x59, 0xeb, 0x7f, 0x93, 0x80, 0xcc, 0x93, 0x4a, 0x9c, 0x75, 0xfd, 0x84, - 0x2f, 0x61, 0xb3, 0xa1, 0x1e, 0xd5, 0x2d, 0xbd, 0xf7, 0x2d, 0x3d, 0xa9, 0xac, 0xe3, 0x63, 0xb7, - 0x5b, 0x12, 0x2e, 0xb4, 0x02, 0x19, 0x67, 0xcf, 0xc2, 0xf6, 0x9e, 0xd9, 0xd6, 0xce, 0xe3, 0xb3, - 0xf8, 0x5c, 0x0b, 0xfb, 0x30, 0x49, 0xe5, 0xba, 0x61, 0x14, 0x42, 0x44, 0x18, 0x05, 0x79, 0x8d, - 0xe7, 0xf6, 0x25, 0xce, 0xf3, 0x1a, 0x97, 0xc0, 0x1a, 0xc7, 0xf3, 0x8d, 0x26, 0xc5, 0xa9, 0xd2, - 0x73, 0x00, 0x52, 0xb5, 0x38, 0x9b, 0xe7, 0xaf, 0x24, 0x21, 0xbf, 0xd5, 0xb3, 0xf7, 0x62, 0xee, - 0x8f, 0x15, 0x80, 0x6e, 0xcf, 0xa6, 0x08, 0xe3, 0xc8, 0xe0, 0xf5, 0x3f, 0x23, 0x4e, 0xc3, 0x55, - 0x00, 0xe3, 0x6b, 0x1e, 0x19, 0xa8, 0xc6, 0x85, 0x60, 0xd9, 0x0f, 0xf6, 0xb8, 0x3e, 0x0a, 0x8b, - 0x36, 0x8f, 0x8c, 0x0d, 0xec, 0x81, 0x50, 0x26, 0x09, 0x13, 0x49, 0x9f, 0xc0, 0x34, 0x79, 0x90, - 0x1d, 0xf3, 0x3c, 0x4d, 0x3e, 0x45, 0x78, 0x9a, 0x26, 0x7a, 0x04, 0x19, 0xc6, 0x4d, 0x26, 0xae, - 0x29, 0x3a, 0x71, 0x45, 0xd5, 0x85, 0xab, 0x91, 0x4e, 0x59, 0x69, 0xca, 0x4a, 0xa6, 0xa9, 0x79, - 0x98, 0xdc, 0x35, 0x2d, 0x15, 0xd3, 0x08, 0x8e, 0xb4, 0xc4, 0x1e, 0x82, 0xad, 0xba, 0x96, 0x4a, - 0xa7, 0xc5, 0xcc, 0x5a, 0x2a, 0x9d, 0x11, 0xa1, 0xf4, 0x9b, 0x02, 0x14, 0xbc, 0xe6, 0x88, 0xd3, - 0x96, 0x57, 0x42, 0xba, 0x3c, 0x7f, 0x83, 0x10, 0x35, 0x96, 0xfe, 0x2d, 0x75, 0x6c, 0x54, 0xf3, - 0x80, 0xb6, 0x4f, 0x9c, 0xfd, 0xe5, 0x11, 0x0b, 0xe8, 0x49, 0x9c, 0xb7, 0x8d, 0x69, 0x6c, 0xcf, - 0x7d, 0x98, 0xd7, 0x3b, 0xc4, 0xca, 0xeb, 0x4e, 0xfb, 0x98, 0xa3, 0x32, 0x07, 0xbb, 0x7b, 0xc4, - 0x73, 0x7e, 0x5a, 0xc5, 0x4d, 0xe2, 0x86, 0x8f, 0xed, 0xf9, 0xf8, 0xf5, 0x89, 0x53, 0xe1, 0x75, - 0xc8, 0x59, 0x4c, 0x34, 0xf1, 0x4e, 0xce, 0xa9, 0xf3, 0x19, 0x8f, 0x95, 0xa8, 0xfd, 0x77, 0x12, - 0x50, 0x78, 0xde, 0xc3, 0xd6, 0xf1, 0x37, 0x49, 0xe9, 0xb7, 0xa0, 0x70, 0xa8, 0xe8, 0x8e, 0xbc, - 0x6b, 0x5a, 0x72, 0xaf, 0xab, 0x29, 0x8e, 0x1b, 0x55, 0x92, 0x23, 0xe4, 0xc7, 0xa6, 0xb5, 0x4d, - 0x89, 0x08, 0x03, 0xda, 0x37, 0xcc, 0x43, 0x43, 0x26, 0x64, 0x8a, 0x86, 0x8f, 0x0c, 0xbe, 0x18, - 0x5d, 0xfe, 0xf0, 0x3f, 0x9e, 0x2c, 0x3e, 0x1c, 0x2b, 0x6e, 0x8c, 0xc6, 0xc0, 0xf5, 0x7a, 0xba, - 0xb6, 0xb4, 0xbd, 0x5d, 0x5f, 0x95, 0x44, 0x2a, 0xf2, 0x25, 0x93, 0xd8, 0x3c, 0x32, 0xdc, 0x59, - 0xfc, 0xef, 0x25, 0x40, 0xf4, 0x35, 0x15, 0x67, 0x73, 0x56, 0x21, 0xfb, 0xaa, 0x87, 0x2d, 0xfd, - 0x0d, 0x1a, 0x13, 0x38, 0x23, 0x31, 0x44, 0x9f, 0xc3, 0x4c, 0x48, 0x0f, 0xc9, 0x5f, 0x4c, 0x0f, - 0xd9, 0x43, 0x5f, 0x05, 0xe8, 0x1e, 0xcc, 0x3a, 0x47, 0x86, 0xcc, 0xe2, 0x02, 0x59, 0x64, 0x89, - 0x1b, 0x06, 0x51, 0x70, 0x88, 0x3e, 0x08, 0x9d, 0x46, 0x95, 0xd8, 0xa5, 0x7f, 0x2d, 0x00, 0xa2, - 0x8a, 0xaa, 0xb3, 0x3d, 0x83, 0x6f, 0x4a, 0xaf, 0xba, 0x03, 0x22, 0x8d, 0xb4, 0x94, 0xf5, 0x5d, - 0xb9, 0xa3, 0xdb, 0xb6, 0x6e, 0xb4, 0x78, 0xb7, 0xca, 0x53, 0x7a, 0x7d, 0x77, 0x83, 0x51, 0x79, - 0x83, 0xff, 0x39, 0x98, 0x0b, 0x55, 0x23, 0xce, 0x26, 0xbf, 0x06, 0x33, 0xbb, 0x66, 0xcf, 0xd0, - 0x64, 0xb6, 0xaf, 0xc2, 0x17, 0x1a, 0xb3, 0x94, 0xc6, 0xde, 0x57, 0xfa, 0x1f, 0x09, 0x98, 0x97, - 0xb0, 0x6d, 0xb6, 0x0f, 0x70, 0xfc, 0x8a, 0xac, 0x01, 0xdf, 0xd1, 0x91, 0xdf, 0x48, 0x9f, 0x19, - 0xc6, 0xcc, 0xa6, 0xbf, 0xf0, 0x9a, 0xfd, 0x8d, 0xd1, 0xfd, 0x76, 0x70, 0x95, 0x9e, 0xaf, 0xf6, - 0xa5, 0x42, 0xab, 0x7d, 0x26, 0x14, 0xf4, 0x96, 0x61, 0x12, 0xfb, 0x66, 0xe3, 0x57, 0x46, 0xaf, - 0xe3, 0xe2, 0x9b, 0xa5, 0x51, 0x85, 0xac, 0x33, 0x96, 0x06, 0x7e, 0xb5, 0xd9, 0xeb, 0x50, 0x2f, - 0xbb, 0x7c, 0x91, 0x94, 0xf7, 0xf4, 0x64, 0x31, 0x1f, 0x4a, 0xb3, 0xa5, 0xbc, 0xee, 0x3d, 0x13, - 0xe9, 0xbc, 0xc9, 0xbf, 0x07, 0x17, 0xfa, 0x54, 0x1e, 0xa7, 0x3f, 0xf4, 0xaf, 0x92, 0x70, 0x39, - 0x2c, 0x3e, 0x6e, 0xd4, 0xf2, 0x4d, 0x6f, 0xd6, 0x1a, 0xe4, 0x3a, 0xba, 0xf1, 0x66, 0x8b, 0x96, - 0x33, 0x1d, 0xdd, 0xf0, 0x97, 0x89, 0x23, 0x3a, 0xc8, 0xd4, 0xff, 0x83, 0x0e, 0xa2, 0xc0, 0x42, - 0x54, 0x0b, 0xc6, 0xd9, 0x4b, 0xbe, 0x10, 0x60, 0x26, 0xee, 0x75, 0xb8, 0x37, 0x8b, 0x88, 0xe3, - 0x75, 0x6e, 0x42, 0xee, 0x6b, 0x58, 0xb8, 0xfb, 0x1d, 0x01, 0x50, 0xd3, 0xea, 0x19, 0x04, 0x10, - 0x3f, 0x35, 0x5b, 0x71, 0x56, 0x76, 0x1e, 0x26, 0x75, 0x43, 0xc3, 0x47, 0xb4, 0xb2, 0x29, 0x89, - 0x3d, 0x84, 0x36, 0x2b, 0x93, 0x63, 0x6d, 0x56, 0xfa, 0x61, 0x31, 0xa1, 0x82, 0xc6, 0xa9, 0x85, - 0x7f, 0x90, 0x80, 0x39, 0x5e, 0x9d, 0xd8, 0x17, 0x2e, 0xbf, 0x0d, 0x93, 0x6d, 0x22, 0x73, 0x44, - 0x9b, 0xd3, 0x77, 0xba, 0x6d, 0x4e, 0x33, 0xa3, 0x5f, 0x06, 0xe8, 0x5a, 0xf8, 0x40, 0x66, 0xac, - 0xc9, 0xb1, 0x58, 0x33, 0x84, 0x83, 0x12, 0xd0, 0x77, 0xa1, 0x40, 0x46, 0x78, 0xd7, 0x32, 0xbb, - 0xa6, 0x4d, 0x1c, 0x1a, 0x7b, 0x3c, 0x54, 0x34, 0x7b, 0x7a, 0xb2, 0x98, 0xdb, 0xd0, 0x8d, 0x2d, - 0xce, 0xd8, 0x6c, 0x48, 0xc4, 0x54, 0x78, 0x8f, 0xee, 0x00, 0xfc, 0x0f, 0x02, 0xcc, 0x7f, 0x6d, - 0x4b, 0xbd, 0xff, 0x3f, 0x34, 0xe6, 0xcd, 0x3c, 0x22, 0x7d, 0xac, 0x1b, 0xbb, 0x66, 0xfc, 0x0b, - 0xf0, 0x5f, 0x08, 0x30, 0x1b, 0x10, 0x1f, 0xa7, 0x27, 0xf3, 0x46, 0x3a, 0x2b, 0xfd, 0x2a, 0xf1, - 0x6d, 0x82, 0xdd, 0x3e, 0xce, 0x41, 0xf5, 0xcf, 0x13, 0x70, 0xb1, 0xc2, 0xb6, 0xb1, 0xdd, 0x18, - 0x8f, 0x38, 0x7b, 0x49, 0x11, 0xa6, 0x0f, 0xb0, 0x65, 0xeb, 0x26, 0x9b, 0x61, 0x73, 0x92, 0xfb, - 0x88, 0x16, 0x20, 0x6d, 0x1b, 0x4a, 0xd7, 0xde, 0x33, 0xdd, 0x9d, 0x3b, 0xef, 0xd9, 0x8b, 0x47, - 0x99, 0x7c, 0xf3, 0x78, 0x94, 0xa9, 0xd1, 0xf1, 0x28, 0xd3, 0xbf, 0x70, 0x3c, 0x0a, 0xdf, 0x26, - 0xfb, 0x03, 0x01, 0x2e, 0x0d, 0xe8, 0x2f, 0xce, 0x3e, 0xf3, 0x43, 0xc8, 0xaa, 0x5c, 0x30, 0xb1, - 0xc6, 0x6c, 0x27, 0xb0, 0x4e, 0xb2, 0xbd, 0x21, 0x58, 0x39, 0x3d, 0x59, 0x04, 0xb7, 0xa8, 0xf5, - 0x55, 0xae, 0x22, 0xf2, 0x5b, 0x2b, 0xfd, 0xa3, 0x1c, 0x14, 0xaa, 0x47, 0x6c, 0x9d, 0xbb, 0xc1, - 0xfc, 0x01, 0xf4, 0x18, 0xd2, 0x5d, 0xcb, 0x3c, 0xd0, 0xdd, 0x6a, 0xe4, 0x43, 0x61, 0x08, 0x6e, - 0x35, 0xfa, 0xb8, 0xb6, 0x38, 0x87, 0xe4, 0xf1, 0xa2, 0x26, 0x64, 0x9e, 0x9a, 0xaa, 0xd2, 0x7e, - 0xac, 0xb7, 0xdd, 0xfe, 0xff, 0xfe, 0xd9, 0x82, 0x96, 0x3c, 0x9e, 0x2d, 0xc5, 0xd9, 0x73, 0x9b, - 0xc2, 0x23, 0xa2, 0x3a, 0xa4, 0x6b, 0x8e, 0xd3, 0x25, 0x89, 0xdc, 0x9a, 0xdc, 0x1e, 0x43, 0x28, - 0x61, 0x71, 0x23, 0x5b, 0x5d, 0x76, 0xd4, 0x84, 0xd9, 0x27, 0xa6, 0xd9, 0x6a, 0xe3, 0x4a, 0xdb, - 0xec, 0x69, 0x15, 0xd3, 0xd8, 0xd5, 0x5b, 0xdc, 0x1e, 0xdf, 0x1a, 0x43, 0xe6, 0x93, 0x4a, 0x43, - 0x1a, 0x14, 0x80, 0x56, 0x20, 0xdd, 0x78, 0xc8, 0x85, 0x31, 0x07, 0xee, 0xe6, 0x18, 0xc2, 0x1a, - 0x0f, 0x25, 0x8f, 0x0d, 0xad, 0x41, 0x76, 0xe5, 0x75, 0xcf, 0xc2, 0x5c, 0xca, 0xd4, 0xd0, 0x18, - 0x88, 0x7e, 0x29, 0x94, 0x4b, 0x0a, 0x32, 0xa3, 0x06, 0xe4, 0x5f, 0x9a, 0xd6, 0x7e, 0xdb, 0x54, - 0xdc, 0x1a, 0x4e, 0x53, 0x71, 0xdf, 0x1a, 0x43, 0x9c, 0xcb, 0x28, 0xf5, 0x89, 0x40, 0xdf, 0x83, - 0x02, 0x69, 0x8c, 0xa6, 0xb2, 0xd3, 0x76, 0x0b, 0x99, 0xa6, 0x52, 0xdf, 0x1d, 0x43, 0xaa, 0xc7, - 0xe9, 0x6e, 0xb4, 0xf4, 0x89, 0x5a, 0xf8, 0x2e, 0xe4, 0x42, 0x9d, 0x00, 0x21, 0x48, 0x75, 0x49, - 0x7b, 0x0b, 0x34, 0x56, 0x89, 0xfe, 0x46, 0xef, 0xc1, 0xb4, 0x61, 0x6a, 0xd8, 0x1d, 0x21, 0xb9, - 0xf2, 0xfc, 0xe9, 0xc9, 0xe2, 0xd4, 0xa6, 0xa9, 0x31, 0x77, 0x85, 0xff, 0x92, 0xa6, 0x48, 0x26, - 0xd7, 0x59, 0x59, 0xb8, 0x05, 0x29, 0xd2, 0xfa, 0xc4, 0x48, 0xed, 0x28, 0x36, 0xde, 0xb6, 0x74, - 0x2e, 0xd3, 0x7d, 0xe4, 0xf9, 0xfe, 0x71, 0x02, 0x12, 0x8d, 0x87, 0xc4, 0x51, 0xdf, 0xe9, 0xa9, - 0xfb, 0xd8, 0xe1, 0xb9, 0xf8, 0x13, 0x75, 0xe0, 0x2d, 0xbc, 0xab, 0x33, 0x1f, 0x2a, 0x23, 0xf1, - 0x27, 0xf4, 0x0e, 0x80, 0xa2, 0xaa, 0xd8, 0xb6, 0x65, 0xf7, 0x8c, 0x5f, 0x46, 0xca, 0x30, 0xca, - 0x3a, 0x3e, 0x26, 0x6c, 0x36, 0x56, 0x2d, 0xec, 0xb8, 0x41, 0x57, 0xec, 0x89, 0xb0, 0x39, 0xb8, - 0xd3, 0x95, 0x1d, 0x73, 0x1f, 0x1b, 0xb4, 0xcf, 0x64, 0x88, 0xf1, 0xe9, 0x74, 0x9b, 0x84, 0x40, - 0xec, 0x26, 0x36, 0x34, 0xdf, 0xc8, 0x65, 0x24, 0xef, 0x99, 0x88, 0xb4, 0x70, 0x4b, 0xe7, 0xc7, - 0xd4, 0x32, 0x12, 0x7f, 0x22, 0x1a, 0x53, 0x7a, 0xce, 0x1e, 0x6d, 0x95, 0x8c, 0x44, 0x7f, 0xa3, - 0x5b, 0x50, 0x60, 0x31, 0x9b, 0x32, 0x36, 0x54, 0x99, 0x9a, 0xdb, 0x0c, 0x4d, 0xce, 0x31, 0x72, - 0xd5, 0x50, 0x89, 0x71, 0x45, 0x0f, 0x81, 0x13, 0xe4, 0xfd, 0x8e, 0x4d, 0xf4, 0x0b, 0x24, 0x57, - 0xb9, 0x70, 0x7a, 0xb2, 0x98, 0x6d, 0xd0, 0x84, 0xf5, 0x8d, 0x46, 0x7d, 0x55, 0xca, 0xb2, 0x5c, - 0xeb, 0x1d, 0xdb, 0xd3, 0xef, 0xdf, 0x12, 0x20, 0xf9, 0xa4, 0xd2, 0x38, 0xb7, 0xe2, 0xdc, 0xe2, - 0x26, 0x03, 0xc5, 0xbd, 0x0d, 0x85, 0x1d, 0xbd, 0xdd, 0xd6, 0x8d, 0x16, 0xf1, 0x97, 0x7e, 0x88, - 0x55, 0x57, 0x6d, 0x79, 0x4e, 0xde, 0x62, 0x54, 0x74, 0x15, 0xb2, 0xaa, 0x85, 0x35, 0x6c, 0x38, - 0xba, 0xd2, 0xb6, 0xb9, 0xfe, 0x82, 0x24, 0x5e, 0xb8, 0x5f, 0x17, 0x60, 0x92, 0x8e, 0x0c, 0xf4, - 0x36, 0x64, 0x54, 0xd3, 0x70, 0x14, 0xdd, 0xe0, 0x26, 0x2e, 0x23, 0xf9, 0x84, 0xa1, 0x85, 0xbc, - 0x06, 0x33, 0x8a, 0xaa, 0x9a, 0x3d, 0xc3, 0x91, 0x0d, 0xa5, 0x83, 0x79, 0x61, 0xb3, 0x9c, 0xb6, - 0xa9, 0x74, 0x30, 0x5a, 0x04, 0xf7, 0xd1, 0x3b, 0xc6, 0x99, 0x91, 0x80, 0x93, 0xd6, 0xf1, 0x31, - 0x2f, 0xc9, 0x1f, 0x08, 0x90, 0x76, 0x47, 0x14, 0x29, 0x4c, 0x0b, 0x1b, 0xd8, 0x52, 0x1c, 0xd3, - 0x2b, 0x8c, 0x47, 0xe8, 0x9f, 0x4e, 0x33, 0xfe, 0x74, 0x3a, 0x0f, 0x93, 0x0e, 0x19, 0x34, 0xbc, - 0x1c, 0xec, 0x81, 0x2e, 0x7a, 0xb7, 0x95, 0x16, 0x5b, 0xe7, 0xcb, 0x48, 0xec, 0x81, 0x54, 0x89, - 0x07, 0x03, 0x33, 0xed, 0xf0, 0x27, 0x52, 0x5e, 0x16, 0xac, 0xba, 0x83, 0x5b, 0xba, 0x41, 0x7b, - 0x57, 0x52, 0x02, 0x4a, 0x2a, 0x13, 0x0a, 0x7a, 0x0b, 0x32, 0x2c, 0x03, 0x36, 0x34, 0xda, 0xc5, - 0x92, 0x52, 0x9a, 0x12, 0xaa, 0xee, 0x39, 0xb5, 0x85, 0x7d, 0xc8, 0x78, 0x03, 0x98, 0x34, 0x64, - 0xcf, 0xf6, 0x94, 0x4a, 0x7f, 0xa3, 0xf7, 0x61, 0xfe, 0x55, 0x4f, 0x69, 0xeb, 0xbb, 0x74, 0x09, - 0x8f, 0x64, 0x63, 0xfa, 0x63, 0xf5, 0x41, 0x5e, 0x1a, 0x95, 0x40, 0xd5, 0xe8, 0x8e, 0xf7, 0xa4, - 0x3f, 0xde, 0x83, 0x7b, 0x32, 0xa5, 0x1f, 0x0b, 0x30, 0xcb, 0xe2, 0x91, 0x58, 0x48, 0x6d, 0x7c, - 0xde, 0xcb, 0xc7, 0x90, 0xd1, 0x14, 0x47, 0x61, 0x47, 0x55, 0x13, 0x23, 0x8f, 0xaa, 0x7a, 0x07, - 0x25, 0x14, 0x47, 0xa1, 0xc7, 0x55, 0x11, 0xa4, 0xc8, 0x6f, 0x76, 0xb6, 0x57, 0xa2, 0xbf, 0xfd, - 0x08, 0x8f, 0x60, 0x71, 0xe3, 0xf4, 0xe6, 0x96, 0xe1, 0x02, 0xd1, 0x7e, 0xd5, 0x50, 0xad, 0xe3, - 0xae, 0xa3, 0x9b, 0xc6, 0x33, 0xfa, 0xd7, 0x46, 0x62, 0x60, 0x87, 0x8c, 0x6e, 0x8c, 0xf1, 0xb2, - 0xfc, 0xfe, 0x14, 0xe4, 0xaa, 0x47, 0x5d, 0xd3, 0x8a, 0x75, 0xc5, 0xac, 0x0c, 0xd3, 0x7c, 0x39, - 0x61, 0xc4, 0x9e, 0x75, 0xdf, 0x44, 0xe0, 0x6e, 0x07, 0x73, 0x46, 0x54, 0x06, 0x60, 0xc1, 0xaf, - 0x34, 0xa8, 0x29, 0x79, 0x8e, 0x9d, 0x3b, 0xca, 0x46, 0xa8, 0x68, 0x13, 0xb2, 0x9d, 0x03, 0x55, - 0x95, 0x77, 0xf5, 0xb6, 0xc3, 0xa3, 0x07, 0xa3, 0x43, 0xdf, 0x37, 0x5e, 0x54, 0x2a, 0x8f, 0x69, - 0x26, 0x16, 0xc8, 0xe7, 0x3f, 0x4b, 0x40, 0x24, 0xb0, 0xdf, 0xe8, 0x5d, 0xe0, 0x47, 0x88, 0x64, - 0xdb, 0x3d, 0x2d, 0x58, 0xce, 0x9d, 0x9e, 0x2c, 0x66, 0x24, 0x4a, 0x6d, 0x34, 0x9a, 0x52, 0x86, - 0x65, 0x68, 0xd8, 0x0e, 0xba, 0x0e, 0x39, 0xb3, 0xa3, 0x3b, 0xb2, 0xeb, 0x60, 0x71, 0x9f, 0x74, - 0x86, 0x10, 0x5d, 0x07, 0x0c, 0x35, 0xe1, 0x36, 0x36, 0xe8, 0x28, 0x20, 0xf5, 0x94, 0x77, 0xd8, - 0x42, 0xa7, 0xc3, 0xc6, 0xbb, 0x6c, 0x76, 0x1d, 0xbd, 0xa3, 0xbf, 0xa6, 0xbb, 0xe6, 0x7c, 0xe3, - 0xea, 0x3a, 0xcb, 0x4e, 0xea, 0x57, 0xa6, 0x2b, 0xa0, 0x3c, 0xef, 0xb3, 0x40, 0x56, 0xf4, 0xeb, - 0x02, 0x5c, 0xe4, 0x8a, 0x94, 0x77, 0x68, 0xec, 0xbe, 0xd2, 0xd6, 0x9d, 0x63, 0x79, 0xff, 0xa0, - 0x98, 0xa6, 0x9e, 0xef, 0x2f, 0x45, 0x36, 0x48, 0xa0, 0x1f, 0x2c, 0xb9, 0xcd, 0x72, 0xfc, 0x94, - 0x33, 0xaf, 0x1f, 0x54, 0x0d, 0xc7, 0x3a, 0x2e, 0x5f, 0x3a, 0x3d, 0x59, 0x9c, 0x1b, 0x4c, 0x7d, - 0x21, 0xcd, 0xd9, 0x83, 0x2c, 0xa8, 0x06, 0x80, 0xbd, 0xde, 0x48, 0x67, 0x98, 0x68, 0xdf, 0x25, - 0xb2, 0xdb, 0x4a, 0x01, 0x5e, 0x74, 0x07, 0x44, 0x7e, 0x7a, 0x67, 0x57, 0x6f, 0x63, 0xd9, 0xd6, - 0x5f, 0x63, 0x3a, 0x17, 0x25, 0xa5, 0x3c, 0xa3, 0x13, 0x11, 0x0d, 0xfd, 0x35, 0x5e, 0xf8, 0x21, - 0x14, 0x87, 0x95, 0x3e, 0x38, 0x10, 0x32, 0x6c, 0x87, 0xf8, 0xa3, 0xf0, 0x72, 0xcf, 0x18, 0x5d, - 0xd5, 0x5d, 0xf2, 0x49, 0x7c, 0xe4, 0x9a, 0xa0, 0xdf, 0x4d, 0x40, 0xae, 0xdc, 0x6b, 0xef, 0x3f, - 0xeb, 0x36, 0x7a, 0x9d, 0x8e, 0x62, 0x1d, 0x13, 0x53, 0xc9, 0x4c, 0x07, 0x29, 0xa6, 0xc0, 0x4c, - 0x25, 0xb5, 0x0d, 0xfa, 0x6b, 0x4c, 0x26, 0xb3, 0xe0, 0x79, 0x75, 0x76, 0x36, 0x81, 0xd6, 0x24, - 0x70, 0x08, 0xdd, 0x3c, 0xb4, 0xd1, 0x47, 0x50, 0x0c, 0x64, 0xa4, 0x6b, 0x33, 0x32, 0x36, 0x1c, - 0x4b, 0xc7, 0x6c, 0xad, 0x31, 0x29, 0x05, 0xe2, 0x7a, 0xea, 0x24, 0xb9, 0xca, 0x52, 0x51, 0x13, - 0x66, 0x48, 0xc6, 0x63, 0x99, 0x4e, 0x36, 0xee, 0x8a, 0xf0, 0xfd, 0x88, 0xca, 0x85, 0xca, 0xbd, - 0x44, 0xb5, 0x54, 0xa1, 0x3c, 0xf4, 0xa7, 0x94, 0xc5, 0x3e, 0x65, 0xe1, 0x53, 0x10, 0xfb, 0x33, - 0x04, 0x35, 0x9a, 0x62, 0x1a, 0x9d, 0x0f, 0x6a, 0x34, 0x19, 0xd0, 0xd6, 0x5a, 0x2a, 0x9d, 0x12, - 0x27, 0x4b, 0x7f, 0x9c, 0x84, 0xbc, 0xdb, 0xd9, 0xe2, 0x84, 0x4a, 0x65, 0x98, 0x24, 0x5d, 0xc3, - 0x8d, 0x42, 0xb9, 0x35, 0xa2, 0x8f, 0xf3, 0x38, 0x78, 0xd2, 0x65, 0x5c, 0xb0, 0x4d, 0x59, 0xe3, - 0x30, 0x3b, 0x0b, 0x7f, 0x3e, 0x01, 0x29, 0x8a, 0x4e, 0xee, 0x43, 0x8a, 0x4e, 0x1d, 0xc2, 0x38, - 0x53, 0x07, 0xcd, 0xea, 0x4d, 0x76, 0x89, 0x80, 0x73, 0x4b, 0x3c, 0xc5, 0x3d, 0xe5, 0x83, 0xfb, - 0x0f, 0xa8, 0xc9, 0x99, 0x91, 0xf8, 0x13, 0x2a, 0xd3, 0xf0, 0x28, 0xd3, 0x72, 0xb0, 0xc6, 0x51, - 0xc1, 0xd5, 0xb3, 0xda, 0xd7, 0x9d, 0xa6, 0x5c, 0x3e, 0x74, 0x19, 0x92, 0xc4, 0x96, 0x4d, 0xb3, - 0xd0, 0x89, 0xd3, 0x93, 0xc5, 0x24, 0xb1, 0x62, 0x84, 0x86, 0x96, 0x21, 0x1b, 0x36, 0x1c, 0xc4, - 0xef, 0xa3, 0xe6, 0x31, 0x30, 0xe8, 0xa1, 0xed, 0x0d, 0x30, 0x86, 0x88, 0x79, 0x1b, 0xff, 0xda, - 0x24, 0xe4, 0xea, 0x9d, 0xb8, 0x27, 0x96, 0x95, 0x70, 0x0b, 0x47, 0x41, 0xa9, 0xd0, 0x4b, 0x23, - 0x1a, 0x38, 0x34, 0xa7, 0x27, 0xcf, 0x37, 0xa7, 0xd7, 0x89, 0x7f, 0xcd, 0x2f, 0xa0, 0x48, 0x0e, - 0x41, 0x4d, 0xe1, 0xf7, 0x53, 0x2f, 0x46, 0x22, 0x3c, 0xfe, 0xc9, 0x10, 0x1a, 0xfe, 0xf2, 0x29, - 0x75, 0xe3, 0x59, 0x2f, 0x9b, 0x1a, 0xbf, 0x97, 0x4d, 0x63, 0x43, 0xa3, 0x53, 0x5b, 0xd8, 0xae, - 0x4e, 0xbf, 0xb9, 0x5d, 0x5d, 0x78, 0xcd, 0x3b, 0xeb, 0xc7, 0x90, 0xd4, 0x74, 0xb7, 0x71, 0xc6, - 0x9f, 0xb0, 0x09, 0xd3, 0x19, 0xbd, 0x36, 0x15, 0xec, 0xb5, 0xc1, 0xd5, 0x93, 0x85, 0x67, 0x00, - 0xbe, 0x86, 0xd0, 0x55, 0x98, 0x32, 0xdb, 0x9a, 0x7b, 0x40, 0x26, 0x57, 0xce, 0x9c, 0x9e, 0x2c, - 0x4e, 0x3e, 0x6b, 0x6b, 0xf5, 0x55, 0x69, 0xd2, 0x6c, 0x6b, 0x75, 0x8d, 0xde, 0x01, 0x82, 0x0f, - 0x65, 0x2f, 0x1a, 0x6e, 0x46, 0x9a, 0x36, 0xf0, 0xe1, 0x2a, 0xb6, 0xd5, 0xbe, 0x28, 0x1d, 0xd2, - 0x05, 0x7f, 0x24, 0x40, 0xde, 0x6d, 0x8d, 0x78, 0xcd, 0x4c, 0x5a, 0xef, 0xf0, 0x61, 0x97, 0x3c, - 0xdf, 0xb0, 0x73, 0xf9, 0xf8, 0x01, 0xe3, 0xdf, 0x10, 0x78, 0x24, 0x74, 0x43, 0x55, 0x1c, 0xe2, - 0x6c, 0xc4, 0x38, 0x54, 0xee, 0x82, 0x68, 0x29, 0x86, 0x66, 0x76, 0xf4, 0xd7, 0x98, 0x2d, 0xb7, - 0xda, 0x7c, 0xe7, 0xb4, 0xe0, 0xd1, 0xe9, 0x7a, 0xa2, 0xbb, 0x5a, 0xfc, 0xfb, 0x09, 0x1e, 0x35, - 0xed, 0x15, 0x26, 0x4e, 0xa5, 0xfd, 0x00, 0x66, 0xfb, 0xaf, 0x68, 0x71, 0x47, 0xf1, 0x7b, 0x11, - 0xf2, 0xa2, 0x0a, 0xc2, 0xa2, 0x1c, 0xdd, 0xb0, 0xfc, 0xbe, 0xeb, 0x5a, 0x6c, 0x54, 0x81, 0x6c, - 0xf0, 0xe6, 0x97, 0xe4, 0xd8, 0x37, 0xbf, 0x80, 0xe5, 0xdd, 0xf7, 0xb2, 0xf0, 0x2b, 0x30, 0x49, - 0x93, 0xdf, 0xc0, 0x74, 0xf3, 0x36, 0xfd, 0x2f, 0x09, 0xb8, 0x41, 0x4b, 0xff, 0x02, 0x5b, 0xfa, - 0xee, 0xf1, 0x96, 0x65, 0x3a, 0x58, 0x75, 0xb0, 0xe6, 0x9f, 0x74, 0x89, 0xd5, 0x1e, 0x66, 0xba, - 0xee, 0x0b, 0xce, 0x15, 0xdd, 0xe6, 0x71, 0xa1, 0x75, 0x28, 0xf0, 0x48, 0x05, 0xa5, 0xad, 0x1f, - 0x60, 0x59, 0x71, 0xce, 0x33, 0xeb, 0xe5, 0x18, 0xef, 0x0a, 0x61, 0x5d, 0x71, 0x90, 0x06, 0x19, - 0x2e, 0x4c, 0xd7, 0xf8, 0xb5, 0x45, 0x4f, 0x7e, 0xb1, 0xa5, 0xca, 0x34, 0x0b, 0x97, 0xa8, 0xaf, - 0x4a, 0x69, 0x26, 0xd9, 0xdb, 0x6a, 0xfa, 0x23, 0x01, 0x6e, 0x9e, 0xa1, 0xe8, 0x38, 0x3b, 0xf0, - 0x02, 0xa4, 0x0f, 0xc8, 0x8b, 0x74, 0xae, 0xe9, 0xb4, 0xe4, 0x3d, 0xa3, 0x0d, 0xc8, 0xed, 0x2a, - 0x7a, 0xdb, 0xef, 0xd8, 0xc3, 0x43, 0x22, 0xa3, 0x23, 0x75, 0x67, 0x18, 0x3b, 0xeb, 0xc9, 0xa5, - 0x1f, 0x25, 0x60, 0x76, 0x45, 0xd3, 0x1a, 0x0d, 0x6e, 0x1b, 0xe3, 0xeb, 0x2f, 0x2e, 0x28, 0x4d, - 0xf8, 0xa0, 0x14, 0xbd, 0x07, 0x48, 0xd3, 0x6d, 0x76, 0x25, 0x8a, 0xbd, 0xa7, 0x68, 0xe6, 0xa1, - 0x1f, 0xec, 0x31, 0xeb, 0xa6, 0x34, 0xdc, 0x04, 0xd4, 0x00, 0x8a, 0x88, 0x64, 0xdb, 0x51, 0xbc, - 0xfd, 0xaa, 0x9b, 0x63, 0x1d, 0x4c, 0x63, 0x50, 0xc9, 0x7b, 0x94, 0x32, 0x44, 0x0e, 0xfd, 0x49, - 0x7c, 0x7b, 0x9d, 0x54, 0xdd, 0x91, 0x15, 0xdb, 0x3d, 0x85, 0xc4, 0x2e, 0x63, 0xc9, 0x33, 0xfa, - 0x8a, 0x1d, 0x3c, 0x5c, 0xc4, 0x0e, 0x49, 0xf8, 0x0a, 0x8a, 0x13, 0x42, 0xff, 0x7d, 0x01, 0xf2, - 0x12, 0xde, 0xb5, 0xb0, 0x1d, 0xeb, 0x52, 0xc2, 0x63, 0x98, 0xb1, 0x98, 0x54, 0x79, 0xd7, 0x32, - 0x3b, 0xe7, 0x19, 0x63, 0x59, 0xce, 0xf8, 0xd8, 0x32, 0x3b, 0xa1, 0xfb, 0x29, 0x5e, 0x40, 0xc1, - 0x2b, 0x69, 0x9c, 0x2a, 0xf8, 0x31, 0x3d, 0x8c, 0xcd, 0x04, 0xc7, 0x1d, 0x75, 0xf1, 0x75, 0xe8, - 0x81, 0x6e, 0x90, 0x05, 0x8b, 0x1b, 0xa7, 0x32, 0xfe, 0x9b, 0x00, 0xf9, 0x46, 0x6f, 0x87, 0xdd, - 0xc8, 0x15, 0x9f, 0x1e, 0xaa, 0x90, 0x69, 0xe3, 0x5d, 0x47, 0x7e, 0xa3, 0xc0, 0xfe, 0x34, 0x61, - 0xa5, 0x87, 0x1b, 0x9e, 0x00, 0x58, 0xf4, 0xe8, 0x1e, 0x95, 0x93, 0x3c, 0xa7, 0x9c, 0x0c, 0xe5, - 0xf5, 0xdd, 0xa7, 0xd2, 0x8f, 0x13, 0x50, 0xf0, 0x2a, 0x1b, 0xa7, 0xf5, 0x7c, 0x19, 0xb2, 0x1a, - 0xc9, 0xf3, 0x58, 0x8d, 0x59, 0x1e, 0x74, 0x12, 0x6d, 0x39, 0x96, 0x60, 0x8e, 0x3a, 0x37, 0xb2, - 0xd2, 0xed, 0xb6, 0x75, 0x17, 0x24, 0x53, 0xbb, 0x94, 0x92, 0x66, 0x69, 0xd2, 0x0a, 0x4b, 0xa1, - 0xf0, 0x98, 0xf4, 0xbf, 0x5d, 0x0b, 0xe3, 0xd7, 0x58, 0xa6, 0x78, 0xed, 0x3c, 0x41, 0x35, 0x59, - 0xc6, 0xd8, 0x20, 0x7c, 0xbc, 0xe7, 0x7d, 0x1f, 0x66, 0xa9, 0x66, 0xe3, 0x3e, 0x7e, 0xcc, 0x9b, - 0xe3, 0xb7, 0x12, 0x80, 0x82, 0xf2, 0xbf, 0xbe, 0x16, 0x49, 0xc4, 0xd7, 0x22, 0xef, 0x02, 0x62, - 0x81, 0x96, 0xb6, 0xdc, 0xc5, 0x96, 0x6c, 0x63, 0xd5, 0xe4, 0xf7, 0x44, 0x09, 0x92, 0xc8, 0x53, - 0xb6, 0xb0, 0xd5, 0xa0, 0x74, 0xf4, 0x08, 0xc0, 0xf7, 0xda, 0xf8, 0x74, 0x32, 0xd2, 0x69, 0x93, - 0x32, 0x9e, 0xbb, 0x56, 0xfa, 0x62, 0x01, 0x66, 0xb8, 0x26, 0xb7, 0x0d, 0xdd, 0x34, 0xd0, 0x7d, - 0x48, 0xb6, 0xf8, 0x36, 0x43, 0x36, 0x72, 0xa1, 0xcf, 0xbf, 0x1a, 0xaf, 0x36, 0x21, 0x91, 0xbc, - 0x84, 0xa5, 0xdb, 0x73, 0x22, 0x9c, 0x27, 0x3f, 0x9c, 0x3c, 0xc8, 0xd2, 0xed, 0x39, 0xa8, 0x01, - 0x05, 0xd5, 0xbf, 0xe8, 0x4b, 0x26, 0xec, 0xc9, 0xa1, 0x00, 0x2c, 0xf2, 0x82, 0xb5, 0xda, 0x84, - 0x94, 0x57, 0x43, 0x09, 0xa8, 0x12, 0xbc, 0x59, 0x2a, 0x35, 0x10, 0x8d, 0xe6, 0x9f, 0x73, 0x0e, - 0xdf, 0x6a, 0x55, 0x9b, 0x08, 0x5c, 0x40, 0x85, 0x3e, 0x86, 0x29, 0x8d, 0xde, 0x58, 0xc4, 0xfb, - 0x75, 0x54, 0xd7, 0x0b, 0x5d, 0x12, 0x55, 0x9b, 0x90, 0x38, 0x07, 0x5a, 0x83, 0x19, 0xf6, 0x8b, - 0x39, 0x31, 0x1c, 0x95, 0xde, 0x1c, 0x2e, 0x21, 0x30, 0x35, 0xd4, 0x26, 0xa4, 0xac, 0xe6, 0x53, - 0xd1, 0xb7, 0x21, 0x65, 0xab, 0x8a, 0x8b, 0x4b, 0xaf, 0x0c, 0xb9, 0x6c, 0xc4, 0x67, 0xa6, 0xb9, - 0xd1, 0x23, 0x76, 0xe5, 0xa5, 0x73, 0xe4, 0x2e, 0x14, 0x46, 0x15, 0x3f, 0x74, 0x84, 0x9d, 0x14, - 0x1f, 0x53, 0x02, 0x7a, 0x02, 0x59, 0x85, 0x78, 0x83, 0x32, 0x3d, 0xf2, 0x49, 0x57, 0x06, 0xa3, - 0x37, 0xf8, 0x07, 0x8e, 0xeb, 0xd6, 0xe8, 0x39, 0x79, 0x97, 0xe8, 0x0b, 0xea, 0x60, 0xab, 0x85, - 0x8b, 0xd9, 0xd1, 0x82, 0x82, 0xd1, 0x67, 0x9e, 0x20, 0x4a, 0x24, 0x5e, 0xa1, 0x77, 0x02, 0x9b, - 0x56, 0x6a, 0x66, 0xe8, 0x66, 0x72, 0xc4, 0x71, 0xa4, 0xda, 0x84, 0x34, 0xb3, 0x17, 0x20, 0xa3, - 0x25, 0x48, 0xb4, 0xd4, 0x62, 0x6e, 0xe8, 0x08, 0xf1, 0x0e, 0xdb, 0xd4, 0x26, 0xa4, 0x44, 0x4b, - 0x45, 0x9f, 0x42, 0x9a, 0x9d, 0x96, 0x38, 0x32, 0x8a, 0xf9, 0xa1, 0x76, 0x22, 0x7c, 0xe6, 0xa4, - 0x36, 0x21, 0xd1, 0x03, 0x1a, 0xe4, 0x7d, 0x5b, 0x90, 0xb7, 0x58, 0xf8, 0x9e, 0x1b, 0x78, 0x2b, - 0x0e, 0xdd, 0x60, 0x8f, 0x8a, 0xbd, 0xad, 0x51, 0x74, 0x10, 0xa0, 0xa3, 0x1f, 0xc0, 0x7c, 0x58, - 0x22, 0xef, 0x69, 0xb3, 0x43, 0x37, 0x8b, 0x87, 0x46, 0x80, 0xd6, 0x26, 0x24, 0x64, 0x0d, 0x24, - 0xa2, 0x0f, 0x61, 0x92, 0xb5, 0x1a, 0xa2, 0x22, 0xa3, 0x22, 0x47, 0xfa, 0x1a, 0x8c, 0xe5, 0x27, - 0x9d, 0xdf, 0xe1, 0x71, 0x6b, 0x72, 0xdb, 0x6c, 0x15, 0xe7, 0x86, 0x76, 0xfe, 0xc1, 0x38, 0x3c, - 0xd2, 0xf9, 0x1d, 0x9f, 0x4a, 0xda, 0xdd, 0x62, 0x29, 0x3c, 0xcc, 0x69, 0x7e, 0x68, 0xbb, 0x47, - 0x84, 0xb3, 0xd5, 0xe8, 0xa9, 0x03, 0x9f, 0x4c, 0x8a, 0x66, 0xb1, 0x9b, 0x71, 0x64, 0x3a, 0xa6, - 0x2e, 0x0c, 0x2d, 0xda, 0xe0, 0x05, 0x42, 0x35, 0xea, 0x35, 0x79, 0x54, 0xf4, 0x02, 0x44, 0x7e, - 0x67, 0x85, 0xbf, 0x2b, 0x71, 0x91, 0xca, 0xbb, 0x1b, 0x69, 0xba, 0xa2, 0xe2, 0x82, 0x6a, 0x13, - 0x52, 0x41, 0x0d, 0xa7, 0xa0, 0xcf, 0x60, 0x96, 0xca, 0x93, 0x55, 0xff, 0xb2, 0x91, 0x62, 0x71, - 0xe0, 0xd2, 0x8a, 0xe1, 0xf7, 0x92, 0xb8, 0x92, 0x45, 0xb5, 0x2f, 0x89, 0x74, 0x63, 0xdd, 0xd0, - 0x1d, 0x6a, 0x65, 0x17, 0x86, 0x76, 0xe3, 0xf0, 0xc5, 0x88, 0xa4, 0x1b, 0xeb, 0x8c, 0x42, 0xba, - 0xb1, 0xc3, 0x63, 0xe0, 0x78, 0x73, 0xbc, 0x3d, 0xb4, 0x1b, 0x47, 0x05, 0xcb, 0x91, 0x6e, 0xec, - 0x04, 0xe9, 0xa4, 0x1b, 0x33, 0x03, 0xd1, 0x27, 0xf7, 0x9d, 0xa1, 0xdd, 0x78, 0xe8, 0xa1, 0x6b, - 0xd2, 0x8d, 0x95, 0x81, 0x44, 0xb4, 0x0a, 0xc0, 0x9c, 0x1a, 0x3a, 0x29, 0x5e, 0x19, 0x3a, 0x19, - 0xf4, 0x47, 0xc1, 0x91, 0xc9, 0xa0, 0xed, 0xd2, 0x88, 0x21, 0xa3, 0x50, 0x4a, 0xa6, 0x5b, 0xb4, - 0xc5, 0xc5, 0xa1, 0x86, 0x6c, 0x60, 0xf3, 0x94, 0x18, 0xb2, 0x43, 0x8f, 0x48, 0x66, 0x15, 0xb6, - 0x5e, 0x5c, 0xbc, 0x3a, 0xdc, 0x2c, 0x07, 0x37, 0x8f, 0xa8, 0x59, 0xa6, 0x04, 0xb4, 0x02, 0x19, - 0x32, 0xe7, 0x1f, 0x53, 0x33, 0x74, 0x6d, 0xa8, 0x7f, 0xda, 0x77, 0xac, 0xa6, 0x36, 0x21, 0xa5, - 0x5f, 0x71, 0x12, 0x79, 0x3d, 0x5b, 0x37, 0x2b, 0x96, 0x86, 0xbe, 0x3e, 0xb4, 0xea, 0x4a, 0x5e, - 0xcf, 0x38, 0x90, 0x0a, 0x17, 0x58, 0x5b, 0xf1, 0x33, 0xcf, 0x16, 0x3f, 0xa0, 0x5b, 0xbc, 0x4e, - 0x45, 0x0d, 0x5d, 0x7a, 0x8a, 0x3c, 0x8a, 0x5d, 0x9b, 0x90, 0xe6, 0x94, 0xc1, 0x54, 0x32, 0xe0, - 0xf9, 0xd4, 0xc3, 0x16, 0xac, 0x8a, 0x37, 0x86, 0x0e, 0xf8, 0x88, 0xd5, 0x3e, 0x32, 0xe0, 0x95, - 0x00, 0x99, 0x4d, 0x40, 0x9a, 0x6c, 0xdb, 0x6c, 0x43, 0xff, 0xe6, 0x88, 0x09, 0xa8, 0x6f, 0x8d, - 0x80, 0x4d, 0x40, 0x5a, 0x83, 0x71, 0x12, 0x41, 0x6a, 0x1b, 0x2b, 0x16, 0x37, 0xb3, 0xb7, 0x86, - 0x0a, 0x1a, 0xb8, 0x6b, 0x90, 0x08, 0x52, 0x3d, 0x22, 0x71, 0x78, 0x2c, 0xf7, 0xb2, 0x1b, 0xee, - 0x30, 0xde, 0x1e, 0xea, 0xf0, 0x44, 0xde, 0xc9, 0x43, 0x1c, 0x1e, 0x2b, 0x94, 0x80, 0x7e, 0x19, - 0xa6, 0x39, 0xa0, 0x2b, 0xde, 0x19, 0xe1, 0xc6, 0x06, 0x91, 0x38, 0x19, 0xd7, 0x9c, 0x87, 0x59, - 0x59, 0x06, 0x24, 0x59, 0xf5, 0xee, 0x8e, 0xb0, 0xb2, 0x03, 0x58, 0x96, 0x59, 0x59, 0x9f, 0x4c, - 0xac, 0x2c, 0xeb, 0xa7, 0x7c, 0xae, 0xbb, 0x37, 0xd4, 0xca, 0x0e, 0x1e, 0xd7, 0x21, 0x56, 0xf6, - 0x95, 0x4f, 0x25, 0x35, 0xb3, 0x19, 0x88, 0x2a, 0x7e, 0x6b, 0x68, 0xcd, 0xc2, 0x98, 0x92, 0xd4, - 0x8c, 0xf3, 0x90, 0x66, 0x63, 0x2e, 0x31, 0xd3, 0xf4, 0xbb, 0xc3, 0xaf, 0x17, 0xe8, 0x87, 0x1e, - 0x35, 0x77, 0x31, 0x93, 0x69, 0xd8, 0x33, 0x54, 0x16, 0x3f, 0x4c, 0xcd, 0x35, 0xf5, 0xde, 0x68, - 0x43, 0x15, 0x75, 0x4e, 0xdc, 0x33, 0x54, 0xa1, 0x44, 0x5a, 0x54, 0x76, 0x42, 0x8e, 0x8e, 0xef, - 0xa5, 0x11, 0x37, 0x21, 0xf4, 0x9d, 0x56, 0xa4, 0x45, 0xf5, 0x88, 0xfe, 0x10, 0xea, 0xb1, 0x2b, - 0x3b, 0x8a, 0xcb, 0xa3, 0x87, 0x50, 0xf8, 0xea, 0x10, 0x6f, 0x08, 0x71, 0xb2, 0x37, 0x67, 0xba, - 0x1e, 0xc6, 0xfb, 0xa3, 0xe7, 0xcc, 0x7e, 0xd7, 0x82, 0xcd, 0x99, 0xdc, 0xa7, 0xf8, 0x0b, 0x02, - 0x5c, 0x65, 0x65, 0xa3, 0xeb, 0x7d, 0xc7, 0xb2, 0xb7, 0x76, 0x1a, 0x38, 0x9b, 0x71, 0x9f, 0xbe, - 0xe0, 0xc3, 0x61, 0xc5, 0x3d, 0x63, 0x2d, 0xb8, 0x36, 0x21, 0xbd, 0xa3, 0x8c, 0xca, 0x57, 0x9e, - 0xe6, 0x5b, 0xaa, 0xde, 0x21, 0xd5, 0x82, 0x28, 0xae, 0xa5, 0xd2, 0x97, 0xc4, 0xe2, 0x5a, 0x2a, - 0x7d, 0x59, 0x5c, 0x58, 0x4b, 0xa5, 0xdf, 0x12, 0xdf, 0x2e, 0xfd, 0xf7, 0xcb, 0x90, 0x73, 0x91, - 0x1f, 0x43, 0x44, 0x0f, 0x82, 0x88, 0xe8, 0xca, 0x30, 0x44, 0xc4, 0xb1, 0x22, 0x87, 0x44, 0x0f, - 0x82, 0x90, 0xe8, 0xca, 0x30, 0x48, 0xe4, 0xf3, 0x10, 0x4c, 0xd4, 0x1c, 0x86, 0x89, 0xee, 0x8e, - 0x81, 0x89, 0x3c, 0x51, 0xfd, 0xa0, 0x68, 0x75, 0x10, 0x14, 0xdd, 0x18, 0x0d, 0x8a, 0x3c, 0x51, - 0x01, 0x54, 0xf4, 0xa8, 0x0f, 0x15, 0x5d, 0x1b, 0x81, 0x8a, 0x3c, 0x7e, 0x17, 0x16, 0xad, 0x47, - 0xc2, 0xa2, 0x5b, 0x67, 0xc1, 0x22, 0x4f, 0x4e, 0x08, 0x17, 0x7d, 0x10, 0xc2, 0x45, 0x8b, 0x43, - 0x71, 0x91, 0xc7, 0xcd, 0x80, 0xd1, 0x27, 0xfd, 0xc0, 0xe8, 0xda, 0x08, 0x60, 0xe4, 0xd7, 0x80, - 0x23, 0xa3, 0x5a, 0x14, 0x32, 0xba, 0x79, 0x06, 0x32, 0xf2, 0xa4, 0x04, 0xa1, 0x51, 0x2d, 0x0a, - 0x1a, 0xdd, 0x3c, 0x03, 0x1a, 0xf5, 0x49, 0x62, 0xd8, 0x68, 0x33, 0x1a, 0x1b, 0xdd, 0x3e, 0x13, - 0x1b, 0x79, 0xd2, 0xc2, 0xe0, 0x68, 0x39, 0x00, 0x8e, 0xde, 0x19, 0x02, 0x8e, 0x3c, 0x56, 0x82, - 0x8e, 0xbe, 0x33, 0x80, 0x8e, 0x4a, 0xa3, 0xd0, 0x91, 0xc7, 0xeb, 0xc1, 0xa3, 0xe7, 0x43, 0xe0, - 0xd1, 0x9d, 0xb3, 0xe1, 0x91, 0x27, 0xac, 0x0f, 0x1f, 0x29, 0x23, 0xf1, 0xd1, 0x7b, 0x63, 0xe2, - 0x23, 0x4f, 0x7a, 0x14, 0x40, 0xfa, 0x28, 0x0c, 0x90, 0xae, 0x0e, 0x07, 0x48, 0x9e, 0x18, 0x8e, - 0x90, 0xd6, 0x23, 0x11, 0xd2, 0xad, 0xb3, 0x10, 0x92, 0x3f, 0x0e, 0x82, 0x10, 0x69, 0x33, 0x1a, - 0x22, 0xdd, 0x3e, 0x13, 0x22, 0xf9, 0xcd, 0x1f, 0xc2, 0x48, 0xeb, 0x91, 0x18, 0xe9, 0xd6, 0x59, - 0x18, 0xc9, 0x2f, 0x5c, 0x10, 0x24, 0xbd, 0x1c, 0x0a, 0x92, 0xee, 0x8d, 0x03, 0x92, 0x3c, 0xa1, - 0x03, 0x28, 0xe9, 0xf3, 0xe1, 0x28, 0xe9, 0x5b, 0xe7, 0xb8, 0xbd, 0x31, 0x12, 0x26, 0x7d, 0x67, - 0x00, 0x26, 0x95, 0x46, 0xc1, 0x24, 0xbf, 0x3f, 0xbb, 0x38, 0x49, 0x19, 0x89, 0x6a, 0xde, 0x1b, - 0x13, 0xd5, 0xf8, 0x9d, 0x2f, 0x02, 0xd6, 0x54, 0x23, 0x60, 0xcd, 0x8d, 0xd1, 0xb0, 0xc6, 0x37, - 0xe7, 0x3e, 0xae, 0xa9, 0x45, 0xe1, 0x9a, 0x9b, 0x67, 0xe0, 0x1a, 0xdf, 0x0a, 0x05, 0x80, 0xcd, - 0xa3, 0x3e, 0x60, 0x73, 0xed, 0xcc, 0x88, 0xa1, 0x00, 0xb2, 0x29, 0x0f, 0x22, 0x9b, 0xeb, 0x23, - 0x91, 0x8d, 0x27, 0xc1, 0x87, 0x36, 0x8f, 0xfa, 0xa0, 0xcd, 0xb5, 0x11, 0xd0, 0xc6, 0x2f, 0x00, - 0xc7, 0x36, 0xda, 0x68, 0x6c, 0xb3, 0x34, 0x2e, 0xb6, 0xf1, 0x04, 0x47, 0x82, 0x9b, 0xcd, 0x68, - 0x70, 0x73, 0x7b, 0xcc, 0x4d, 0xfb, 0x01, 0x74, 0x53, 0x8b, 0x42, 0x37, 0x37, 0xcf, 0x40, 0x37, - 0xc1, 0x39, 0xc4, 0x83, 0x37, 0xb5, 0x28, 0x78, 0x73, 0xf3, 0x0c, 0x78, 0xe3, 0x4b, 0x0a, 0xe0, - 0x9b, 0xe6, 0x30, 0x7c, 0x73, 0x77, 0x0c, 0x7c, 0xe3, 0x3b, 0x2f, 0x7d, 0x00, 0xe7, 0xd3, 0x7e, - 0x80, 0x53, 0x1a, 0x05, 0x70, 0xfc, 0x11, 0xe9, 0x22, 0x9c, 0xcd, 0x68, 0x84, 0x73, 0xfb, 0x4c, - 0x84, 0x13, 0x34, 0x92, 0x01, 0x88, 0xb3, 0x1e, 0x09, 0x71, 0x6e, 0x9d, 0x05, 0x71, 0x7c, 0x23, - 0x19, 0xc4, 0x38, 0x9f, 0xf6, 0x63, 0x9c, 0xd2, 0x28, 0x8c, 0xe3, 0x57, 0xce, 0x05, 0x39, 0xb5, - 0x28, 0x90, 0x73, 0xf3, 0x0c, 0x90, 0xe3, 0x37, 0x5e, 0x00, 0xe5, 0x28, 0x23, 0x51, 0xce, 0x7b, - 0x63, 0xa2, 0x9c, 0x3e, 0xc3, 0x15, 0x86, 0x39, 0xb5, 0x28, 0x98, 0x73, 0xf3, 0x0c, 0x98, 0x13, - 0x28, 0xac, 0x8f, 0x73, 0x36, 0xa3, 0x71, 0xce, 0xed, 0x33, 0x71, 0x4e, 0xdf, 0x68, 0x72, 0x81, - 0xce, 0x7a, 0x24, 0xd0, 0xb9, 0x75, 0x16, 0xd0, 0xe9, 0x9b, 0xf8, 0xb8, 0x73, 0xf0, 0x17, 0xc7, - 0x47, 0x3a, 0x1f, 0x9d, 0x1f, 0xe9, 0x78, 0xef, 0x8c, 0x05, 0xea, 0xac, 0xa5, 0xd2, 0x6f, 0x8b, - 0xef, 0x94, 0xfe, 0xf2, 0x34, 0x4c, 0xd5, 0xbc, 0x58, 0x18, 0xbf, 0x94, 0xc2, 0x9b, 0xdc, 0xf4, - 0x84, 0x56, 0xc9, 0x88, 0xa5, 0x76, 0xef, 0xec, 0x4b, 0xfd, 0x06, 0x2f, 0x9c, 0xe3, 0xac, 0x6f, - 0x70, 0x78, 0x1a, 0x7d, 0x00, 0xb9, 0x9e, 0x8d, 0x2d, 0xb9, 0x6b, 0xe9, 0xa6, 0xa5, 0x3b, 0xec, - 0xac, 0x88, 0x50, 0x16, 0xbf, 0x3a, 0x59, 0x9c, 0xd9, 0xb6, 0xb1, 0xb5, 0xc5, 0xe9, 0xd2, 0x4c, - 0x2f, 0xf0, 0xe4, 0x7e, 0x7e, 0x6b, 0x72, 0xfc, 0xcf, 0x6f, 0x3d, 0x07, 0xd1, 0xc2, 0x8a, 0x16, - 0xf2, 0x40, 0xd8, 0x4d, 0x4a, 0xd1, 0x7d, 0x86, 0x9e, 0xf1, 0x72, 0x73, 0xd2, 0x1b, 0x95, 0x0a, - 0x56, 0x98, 0x88, 0xee, 0xc3, 0x85, 0x8e, 0x72, 0x44, 0xe3, 0x29, 0x65, 0xd7, 0xa9, 0xa3, 0x31, - 0x92, 0xec, 0xcb, 0x56, 0xa8, 0xa3, 0x1c, 0xd1, 0x6f, 0x79, 0xb1, 0x24, 0xfa, 0xf1, 0x8d, 0x9b, - 0x90, 0xd7, 0x74, 0xdb, 0xd1, 0x0d, 0xd5, 0xe1, 0x77, 0xf0, 0xb2, 0xfb, 0x6b, 0x73, 0x2e, 0x95, - 0x5d, 0xb4, 0x7b, 0x0f, 0x66, 0x79, 0xb8, 0x7d, 0x60, 0x8b, 0x90, 0xdf, 0x63, 0xcb, 0x12, 0xbc, - 0x5d, 0x41, 0x54, 0x81, 0x42, 0x4b, 0x71, 0xf0, 0xa1, 0x72, 0x2c, 0xbb, 0x07, 0xc1, 0xb2, 0xf4, - 0x0a, 0xca, 0xb7, 0x4e, 0x4f, 0x16, 0x73, 0x4f, 0x58, 0xd2, 0xc0, 0x79, 0xb0, 0x5c, 0x2b, 0x90, - 0xa0, 0xa1, 0xdb, 0x50, 0x50, 0xec, 0x63, 0x43, 0xa5, 0xea, 0xc1, 0x86, 0xdd, 0xb3, 0x29, 0xa4, - 0x48, 0x4b, 0x79, 0x4a, 0xae, 0xb8, 0x54, 0x74, 0x0d, 0x66, 0x78, 0x2c, 0x3a, 0xfb, 0x20, 0x50, - 0x81, 0x56, 0x95, 0x7f, 0x5d, 0x82, 0x7e, 0x13, 0x08, 0x3d, 0x82, 0x05, 0x7e, 0xeb, 0xfe, 0xa1, - 0x62, 0x69, 0x32, 0xd5, 0xba, 0xdf, 0x3f, 0x45, 0x2a, 0xf6, 0x12, 0xbb, 0x65, 0x9f, 0x64, 0x20, - 0xaa, 0xf6, 0x6f, 0x6c, 0xd8, 0x84, 0x59, 0xb5, 0xad, 0x7b, 0x08, 0x80, 0xd5, 0x7c, 0x76, 0xa8, - 0x9d, 0xad, 0xd0, 0xbc, 0xfe, 0x16, 0x69, 0x41, 0x0d, 0x13, 0x50, 0x03, 0xe8, 0x0d, 0x35, 0x72, - 0xd7, 0x6c, 0xeb, 0xea, 0x31, 0x75, 0xfe, 0xc3, 0x37, 0x86, 0x8f, 0xbc, 0xc3, 0xff, 0xa5, 0xa2, - 0x3b, 0x5b, 0x94, 0x53, 0x82, 0x43, 0xef, 0x37, 0xbb, 0xe1, 0x77, 0x2d, 0x95, 0x9e, 0x11, 0x73, - 0x6b, 0xa9, 0x74, 0x5e, 0x2c, 0x94, 0xfe, 0xba, 0x00, 0x85, 0xbe, 0xb2, 0xa0, 0x1a, 0x5c, 0xd0, - 0xbc, 0xa1, 0x22, 0xf3, 0xa3, 0x4c, 0xba, 0x69, 0xf0, 0x4b, 0xd0, 0xe7, 0xbe, 0x3a, 0x59, 0x2c, - 0xd0, 0xdc, 0x4f, 0xbc, 0x24, 0x69, 0xde, 0xe7, 0xf0, 0xa9, 0xe8, 0x23, 0xc8, 0x33, 0xf7, 0xd1, - 0xfb, 0xea, 0x1d, 0x8d, 0x2f, 0x2f, 0xcf, 0x7e, 0x75, 0xb2, 0x98, 0xa3, 0x3e, 0xa3, 0x7b, 0x3d, - 0xb1, 0x94, 0x6b, 0x07, 0x1f, 0x4b, 0x7f, 0x4d, 0x80, 0x99, 0xd0, 0xe1, 0xa0, 0x47, 0x7d, 0x3b, - 0xe8, 0x97, 0xa3, 0x71, 0xe7, 0xb0, 0xa0, 0xbb, 0x34, 0xef, 0xe7, 0x6e, 0x04, 0xe3, 0xe2, 0x70, - 0xdc, 0x42, 0x57, 0x61, 0xdc, 0xb0, 0x0d, 0x97, 0xed, 0xe3, 0xd4, 0xdf, 0xfc, 0x72, 0x71, 0xa2, - 0xf4, 0x4f, 0x52, 0x90, 0x0b, 0x1f, 0x02, 0xaa, 0xf7, 0x95, 0x2b, 0x6a, 0x5e, 0x08, 0x71, 0x2c, - 0x8d, 0xb8, 0x94, 0x31, 0xe3, 0x7f, 0x73, 0x80, 0x15, 0xf3, 0xea, 0x88, 0x38, 0x81, 0x60, 0x39, - 0x7d, 0xc6, 0x85, 0x2f, 0x92, 0x9e, 0x7d, 0x5d, 0x82, 0x49, 0x7a, 0xf5, 0x0f, 0x2f, 0x5a, 0xd4, - 0xe1, 0xf5, 0x2a, 0x49, 0x97, 0x58, 0x36, 0x62, 0x8f, 0x9b, 0x6f, 0x74, 0xf3, 0x9e, 0x3f, 0x0c, - 0xce, 0xff, 0x79, 0x41, 0x7e, 0xff, 0xe2, 0xe4, 0xf9, 0xee, 0x5f, 0x44, 0xdf, 0x87, 0x82, 0x6a, - 0xb6, 0xdb, 0x6c, 0xae, 0x63, 0x16, 0x69, 0xf0, 0x86, 0x14, 0x2a, 0x82, 0x7f, 0xf7, 0x71, 0xc9, - 0xfb, 0xfe, 0xe3, 0x92, 0xc4, 0xbf, 0xff, 0x18, 0x88, 0x07, 0xcd, 0x7b, 0xc2, 0x98, 0x21, 0xeb, - 0x0b, 0x4d, 0x9d, 0x7e, 0x93, 0xd0, 0x54, 0x16, 0xd4, 0xcc, 0x7b, 0xce, 0xbf, 0x13, 0x78, 0x60, - 0xc8, 0x53, 0xd3, 0xdc, 0xef, 0x79, 0x21, 0xa5, 0x0b, 0xc1, 0x7b, 0x10, 0xd3, 0x5f, 0x9d, 0x2c, - 0xa6, 0x24, 0xef, 0x22, 0xc4, 0x28, 0xcb, 0x9f, 0xf8, 0xc5, 0x2c, 0xff, 0x35, 0x98, 0xe9, 0x5a, - 0x78, 0x17, 0x3b, 0xea, 0x9e, 0x6c, 0xf4, 0x3a, 0xfc, 0x44, 0x4a, 0xd6, 0xa5, 0x6d, 0xf6, 0x3a, - 0xe8, 0x2e, 0x88, 0x5e, 0x16, 0x8e, 0xb1, 0xdd, 0xab, 0xb0, 0x5c, 0x3a, 0x47, 0xe4, 0xa5, 0x3f, - 0x11, 0x60, 0x2e, 0x54, 0x27, 0x3e, 0x26, 0xd6, 0x20, 0xeb, 0x9b, 0x03, 0xbb, 0x28, 0x9c, 0x33, - 0xb4, 0x32, 0xc8, 0x8c, 0x64, 0xb8, 0xe8, 0xbe, 0x96, 0xde, 0xad, 0xef, 0x8b, 0x4d, 0x9c, 0x53, - 0xec, 0x05, 0x5f, 0xce, 0x6a, 0xe0, 0x05, 0xde, 0x20, 0x49, 0x8e, 0x35, 0x48, 0x4a, 0x3f, 0x12, - 0x40, 0xa4, 0x2f, 0x78, 0x8c, 0xb1, 0x16, 0x8b, 0x75, 0x72, 0x03, 0x97, 0x13, 0xe3, 0x9f, 0x39, - 0x09, 0x7d, 0x1b, 0x24, 0x19, 0xfe, 0x36, 0x48, 0xe9, 0x4b, 0x01, 0xf2, 0x5e, 0x09, 0xd9, 0x77, - 0xf5, 0x46, 0x5c, 0xb7, 0xf9, 0x66, 0x5f, 0x93, 0x73, 0x6f, 0x05, 0x19, 0xeb, 0x53, 0x7f, 0xc1, - 0x5b, 0x41, 0xd8, 0x97, 0xcf, 0xfe, 0xb6, 0xdb, 0x73, 0x48, 0x11, 0x2b, 0xfe, 0x8d, 0x0f, 0x6f, - 0x70, 0xfc, 0x46, 0xa2, 0x9f, 0x27, 0x35, 0xdb, 0x07, 0xec, 0x3a, 0x96, 0xb1, 0xcc, 0x16, 0xe2, - 0xe1, 0x50, 0xc0, 0x57, 0xe3, 0xb4, 0x66, 0x83, 0x7e, 0xb8, 0x94, 0xfd, 0xb6, 0x4b, 0x8f, 0x03, - 0x0a, 0xa4, 0x8d, 0x4f, 0xb4, 0x34, 0x96, 0x29, 0x75, 0xb5, 0xc4, 0xfa, 0xca, 0x1f, 0x06, 0x5b, - 0xa2, 0x7a, 0x40, 0x50, 0xd8, 0x43, 0x48, 0x1e, 0x28, 0xed, 0x51, 0x61, 0x60, 0xa1, 0x96, 0x93, - 0x48, 0x6e, 0xf4, 0x38, 0x74, 0x51, 0x46, 0x62, 0x38, 0x62, 0x18, 0x54, 0x69, 0xe8, 0x42, 0x8d, - 0x0f, 0xc3, 0x7d, 0x7d, 0xe4, 0xeb, 0x83, 0x9d, 0xfe, 0xe3, 0xd4, 0x4f, 0xbe, 0x5c, 0x14, 0x4a, - 0x1f, 0xc2, 0xe5, 0x27, 0xa6, 0x6d, 0xeb, 0x5d, 0x82, 0x12, 0xe9, 0x00, 0x22, 0x56, 0xdc, 0xb3, - 0x64, 0xe9, 0x2e, 0x5d, 0x2f, 0x30, 0xd8, 0x88, 0xcf, 0x48, 0xde, 0x73, 0xe9, 0x5f, 0x08, 0x70, - 0x69, 0x90, 0x93, 0x29, 0x24, 0xea, 0x78, 0xdf, 0xb4, 0x6a, 0xfa, 0x17, 0xc7, 0x9d, 0xdd, 0xb1, - 0xdc, 0xec, 0xc4, 0x1b, 0xe4, 0xef, 0x94, 0x3b, 0x0a, 0x1d, 0xe9, 0xfc, 0x08, 0x72, 0x9e, 0x93, - 0x37, 0x18, 0xd5, 0x1f, 0xf4, 0xa9, 0xf1, 0x06, 0x7d, 0x13, 0x0a, 0x6b, 0xa6, 0x6e, 0x10, 0xa7, - 0xd3, 0xad, 0xef, 0x0a, 0xe4, 0x77, 0x74, 0x43, 0xb1, 0x8e, 0x65, 0xf7, 0x7c, 0x37, 0x6b, 0xd3, - 0x85, 0xa8, 0xc2, 0xb2, 0x1c, 0x52, 0x8e, 0x71, 0xf0, 0xc7, 0xd2, 0x4f, 0x05, 0x10, 0x7d, 0xb1, - 0xdc, 0x78, 0xbe, 0x0b, 0xa0, 0xb6, 0x7b, 0xb6, 0x83, 0x2d, 0xf7, 0x58, 0xcd, 0x0c, 0x0b, 0xc3, - 0xae, 0x30, 0x6a, 0x7d, 0x55, 0xca, 0xf0, 0x0c, 0x75, 0x0d, 0x5d, 0x0f, 0xdf, 0xa2, 0x30, 0x59, - 0x86, 0xd3, 0x81, 0xbb, 0x13, 0xd0, 0x2d, 0x48, 0xdb, 0x8e, 0x69, 0x79, 0xf0, 0x66, 0xb2, 0x9c, - 0x3d, 0x0d, 0xdc, 0xf2, 0x4e, 0x0f, 0xf0, 0x92, 0x7c, 0x2b, 0x90, 0x27, 0x33, 0xf3, 0x01, 0xf6, - 0xaa, 0x94, 0x3a, 0xbb, 0x4a, 0x8c, 0x83, 0x3f, 0xde, 0x6b, 0xc0, 0x5c, 0xc4, 0x44, 0x84, 0xf2, - 0x00, 0x81, 0x8f, 0xca, 0xf0, 0xcf, 0xe1, 0xae, 0xac, 0xca, 0xdb, 0x9b, 0x95, 0x67, 0x1b, 0x1b, - 0xf5, 0x66, 0xb3, 0xba, 0x2a, 0x0a, 0x48, 0x84, 0x99, 0xd0, 0x27, 0x69, 0x12, 0xec, 0x03, 0xb9, - 0xf7, 0xfe, 0x0c, 0x80, 0xff, 0xa5, 0x2b, 0x22, 0x6b, 0xbd, 0xfa, 0x99, 0xfc, 0x62, 0xe5, 0xe9, - 0x76, 0xb5, 0x21, 0x4e, 0x20, 0x04, 0xf9, 0xf2, 0x4a, 0xb3, 0x52, 0x93, 0xa5, 0x6a, 0x63, 0xeb, - 0xd9, 0x66, 0xa3, 0xea, 0x7e, 0x58, 0xf7, 0xde, 0x2a, 0xcc, 0x04, 0x6f, 0x9d, 0x41, 0x73, 0x50, - 0xa8, 0xd4, 0xaa, 0x95, 0x75, 0xf9, 0x45, 0x7d, 0x45, 0x7e, 0xbe, 0x5d, 0xdd, 0xae, 0x8a, 0x13, - 0xb4, 0x68, 0x94, 0xf8, 0x78, 0xfb, 0xe9, 0x53, 0x51, 0x40, 0x05, 0xc8, 0xb2, 0x67, 0xfa, 0xf9, - 0x1a, 0x31, 0x71, 0x6f, 0x03, 0xb2, 0x81, 0xfb, 0x69, 0xc9, 0xeb, 0xb6, 0xb6, 0x1b, 0x35, 0xb9, - 0x59, 0xdf, 0xa8, 0x36, 0x9a, 0x2b, 0x1b, 0x5b, 0x4c, 0x06, 0xa5, 0xad, 0x94, 0x9f, 0x49, 0x4d, - 0x51, 0xf0, 0x9e, 0x9b, 0xcf, 0xb6, 0x2b, 0x35, 0xb7, 0x1a, 0xa5, 0x54, 0x3a, 0x29, 0x26, 0xef, - 0xfd, 0x9a, 0x00, 0x97, 0x86, 0xdc, 0xbd, 0x82, 0xb2, 0x30, 0xbd, 0x6d, 0xd0, 0x0b, 0x3a, 0xc5, - 0x09, 0x94, 0x0b, 0x5c, 0xbf, 0x22, 0x0a, 0x28, 0xcd, 0xae, 0xbe, 0x10, 0x13, 0x68, 0x0a, 0x12, - 0x8d, 0x87, 0x62, 0x92, 0x94, 0x34, 0x70, 0x7b, 0x89, 0x98, 0x42, 0x19, 0x7e, 0x3f, 0x82, 0x38, - 0x89, 0x66, 0xfc, 0x0b, 0x0a, 0xc4, 0x29, 0x22, 0xca, 0x3b, 0xe2, 0x2f, 0x4e, 0xdf, 0xbb, 0x06, - 0x81, 0xe3, 0xd2, 0x08, 0x60, 0xea, 0xa9, 0xe2, 0x60, 0xdb, 0x11, 0x27, 0xd0, 0x34, 0x24, 0x57, - 0xda, 0x6d, 0x51, 0x78, 0xf0, 0xb3, 0x24, 0xa4, 0xdd, 0x0f, 0xb4, 0xa0, 0xa7, 0x30, 0xc9, 0x56, - 0x5f, 0x17, 0x87, 0x3b, 0xb7, 0x74, 0x50, 0x2c, 0x5c, 0x3d, 0xcb, 0xfb, 0x2d, 0x4d, 0xa0, 0x3f, - 0x0b, 0xd9, 0x80, 0xd3, 0x80, 0x86, 0xae, 0x20, 0x85, 0x1c, 0xa5, 0x85, 0x5b, 0x67, 0x65, 0xf3, - 0xe4, 0xbf, 0x84, 0x8c, 0x67, 0xc4, 0xd0, 0xf5, 0x51, 0x26, 0xce, 0x95, 0x3d, 0xda, 0x0e, 0x12, - 0x2b, 0x55, 0x9a, 0x78, 0x5f, 0x40, 0x16, 0xa0, 0x41, 0x23, 0x86, 0xa2, 0x36, 0xe5, 0x87, 0x5a, - 0xc9, 0x85, 0x7b, 0x63, 0xe5, 0xf6, 0xdf, 0xf9, 0x1c, 0x52, 0xc4, 0x42, 0xa0, 0x28, 0x37, 0xa7, - 0xcf, 0x22, 0x2d, 0x5c, 0x1f, 0x99, 0xc7, 0xd5, 0x4f, 0xf9, 0xee, 0x4f, 0xfe, 0xf8, 0xca, 0xc4, - 0x4f, 0x4e, 0xaf, 0x08, 0x3f, 0x3d, 0xbd, 0x22, 0xfc, 0xec, 0xf4, 0x8a, 0xf0, 0x9f, 0x4f, 0xaf, - 0x08, 0x7f, 0xf5, 0xe7, 0x57, 0x26, 0x7e, 0xfa, 0xf3, 0x2b, 0x13, 0x3f, 0xfb, 0xf9, 0x95, 0x89, - 0xcf, 0xa7, 0x39, 0xf7, 0xce, 0x14, 0xfd, 0x0a, 0xfa, 0xc3, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, - 0x9f, 0x10, 0xbe, 0xd1, 0x32, 0x7e, 0x00, 0x00, + 0x96, 0x9f, 0x9a, 0xa4, 0x24, 0xf2, 0x51, 0x24, 0x5b, 0x25, 0xd9, 0x96, 0xe5, 0x19, 0xcb, 0xa6, + 0xff, 0x7b, 0x67, 0xa4, 0xb1, 0xbd, 0x93, 0x99, 0x1b, 0xcf, 0xcd, 0x9e, 0x48, 0xd1, 0x26, 0x25, + 0x4b, 0x96, 0x9b, 0x94, 0xbd, 0x33, 0xb7, 0x9b, 0xde, 0x56, 0x77, 0x89, 0xea, 0x15, 0xd9, 0x4d, + 0x77, 0x37, 0xf5, 0xc7, 0x40, 0x80, 0x4b, 0xf2, 0xe1, 0x82, 0x4b, 0x30, 0xc8, 0x87, 0x24, 0x08, + 0x72, 0xb9, 0xec, 0x00, 0x1b, 0xe4, 0x02, 0x1c, 0x36, 0x08, 0x10, 0x04, 0x41, 0x82, 0xcb, 0x9f, + 0x0f, 0x1b, 0x60, 0x73, 0xb8, 0x00, 0x9b, 0x00, 0xc1, 0x1d, 0x02, 0x44, 0xc8, 0x69, 0x81, 0x20, + 0xc8, 0x87, 0x00, 0xb9, 0x0f, 0x09, 0x30, 0x40, 0x82, 0xa0, 0xfe, 0xf4, 0x3f, 0xb2, 0x49, 0x51, + 0x9a, 0x9e, 0x64, 0x80, 0xfd, 0x22, 0xb1, 0x5f, 0xd5, 0x7b, 0x5d, 0xf5, 0xaa, 0xea, 0xd5, 0xfb, + 0x55, 0xbd, 0xaa, 0x86, 0x69, 0xcb, 0x54, 0xd4, 0xdd, 0xce, 0xf6, 0x92, 0xd2, 0xd1, 0x17, 0x3b, + 0x96, 0xe9, 0x98, 0x68, 0x5a, 0x35, 0xd5, 0x3d, 0x4a, 0x5e, 0xe4, 0x89, 0xf3, 0xf7, 0xf7, 0xf6, + 0x97, 0xf6, 0xf6, 0x6d, 0x6c, 0xed, 0x63, 0x6b, 0x49, 0x35, 0x0d, 0xb5, 0x6b, 0x59, 0xd8, 0x50, + 0x8f, 0x96, 0x5a, 0xa6, 0xba, 0x47, 0xff, 0xe8, 0x46, 0x93, 0xb1, 0xcf, 0x23, 0x57, 0xa2, 0xa6, + 0x38, 0x0a, 0xa7, 0xcd, 0xba, 0x34, 0x6c, 0x59, 0xa6, 0x65, 0x73, 0xea, 0x45, 0x97, 0xda, 0xc6, + 0x8e, 0x12, 0xc8, 0x7d, 0xc5, 0x76, 0x4c, 0x4b, 0x69, 0xe2, 0x25, 0x6c, 0x34, 0x75, 0x03, 0x93, + 0x0c, 0xfb, 0xaa, 0xca, 0x13, 0xdf, 0x8a, 0x4c, 0x7c, 0xc4, 0x53, 0xe7, 0xba, 0x8e, 0xde, 0x5a, + 0xda, 0x6d, 0xa9, 0x4b, 0x8e, 0xde, 0xc6, 0xb6, 0xa3, 0xb4, 0x3b, 0x3c, 0xe5, 0x3e, 0x4d, 0x71, + 0x2c, 0x45, 0xd5, 0x8d, 0xa6, 0xfb, 0xbf, 0xb3, 0xbd, 0x64, 0x61, 0xd5, 0xb4, 0x34, 0xac, 0xc9, + 0x76, 0x47, 0x31, 0xdc, 0xe2, 0x36, 0xcd, 0xa6, 0x49, 0x7f, 0x2e, 0x91, 0x5f, 0x8c, 0x5a, 0xfc, + 0x7d, 0x01, 0x72, 0x12, 0x7e, 0xdd, 0xc5, 0xb6, 0x53, 0xc5, 0x8a, 0x86, 0x2d, 0x74, 0x19, 0x92, + 0x7b, 0xf8, 0x68, 0x2e, 0x79, 0x4d, 0xb8, 0x3b, 0x55, 0x9a, 0xfc, 0xf2, 0x78, 0x21, 0xb9, 0x86, + 0x8f, 0x24, 0x42, 0x43, 0xd7, 0x60, 0x12, 0x1b, 0x9a, 0x4c, 0x92, 0x53, 0xe1, 0xe4, 0x09, 0x6c, + 0x68, 0x6b, 0xf8, 0x08, 0x7d, 0x0f, 0xd2, 0x36, 0x91, 0x66, 0xa8, 0x78, 0x6e, 0xfc, 0x9a, 0x70, + 0x77, 0xbc, 0xf4, 0x6b, 0x5f, 0x1e, 0x2f, 0x7c, 0xdc, 0xd4, 0x9d, 0xdd, 0xee, 0xf6, 0xa2, 0x6a, + 0xb6, 0x97, 0xbc, 0x76, 0xd0, 0xb6, 0xfd, 0xdf, 0x4b, 0x9d, 0xbd, 0xe6, 0x52, 0xaf, 0x0e, 0x16, + 0x1b, 0x87, 0x46, 0x1d, 0xbf, 0x96, 0x3c, 0x89, 0x1f, 0xa5, 0xfe, 0xeb, 0x17, 0x0b, 0xc2, 0x6a, + 0x2a, 0x2d, 0x88, 0x89, 0xd5, 0x54, 0x3a, 0x21, 0x26, 0x8b, 0x3f, 0x4e, 0x42, 0x5e, 0xc2, 0x76, + 0xc7, 0x34, 0x6c, 0xcc, 0xcb, 0xff, 0x1e, 0x24, 0x9d, 0x43, 0x83, 0x96, 0x3f, 0xfb, 0xf0, 0xea, + 0x62, 0x5f, 0xbb, 0x2f, 0x36, 0x2c, 0xc5, 0xb0, 0x15, 0xd5, 0xd1, 0x4d, 0x43, 0x22, 0x59, 0xd1, + 0x87, 0x90, 0xb5, 0xb0, 0xdd, 0x6d, 0x63, 0xaa, 0x2e, 0x5a, 0xb5, 0xec, 0xc3, 0x4b, 0x11, 0x9c, + 0xf5, 0x8e, 0x62, 0x48, 0xc0, 0xf2, 0x92, 0xdf, 0xe8, 0x32, 0xa4, 0x8d, 0x6e, 0x9b, 0x28, 0xc4, + 0xa6, 0xd5, 0x4d, 0x4a, 0x93, 0x46, 0xb7, 0xbd, 0x86, 0x8f, 0x6c, 0xf4, 0x5d, 0xb8, 0xa8, 0xe1, + 0x8e, 0x85, 0x55, 0xc5, 0xc1, 0x9a, 0x6c, 0x29, 0x46, 0x13, 0xcb, 0xba, 0xb1, 0x63, 0xda, 0x73, + 0x13, 0xd7, 0x92, 0x77, 0xb3, 0x0f, 0xdf, 0x8a, 0x90, 0x2f, 0x91, 0x5c, 0x35, 0x63, 0xc7, 0x2c, + 0xa5, 0x7e, 0x76, 0xbc, 0x30, 0x26, 0xcd, 0xfa, 0x12, 0xbc, 0x24, 0x1b, 0xd5, 0x21, 0xc7, 0x8b, + 0x6b, 0x61, 0xc5, 0x36, 0x8d, 0xb9, 0xc9, 0x6b, 0xc2, 0xdd, 0xfc, 0xc3, 0xc5, 0x28, 0x81, 0x21, + 0xd5, 0x90, 0xc7, 0x6e, 0x1b, 0x4b, 0x94, 0x4b, 0x9a, 0xb2, 0x02, 0x4f, 0xe8, 0x0a, 0x64, 0x48, + 0x4d, 0xb6, 0x8f, 0x1c, 0x6c, 0xcf, 0xa5, 0x69, 0x55, 0x48, 0xd5, 0x4a, 0xe4, 0xb9, 0xf8, 0x09, + 0x4c, 0x05, 0x59, 0x11, 0x82, 0xbc, 0x54, 0xa9, 0x6f, 0xad, 0x57, 0xe4, 0xad, 0x8d, 0xb5, 0x8d, + 0xe7, 0xaf, 0x36, 0xc4, 0x31, 0x34, 0x0b, 0x22, 0xa7, 0xad, 0x55, 0x3e, 0x95, 0x9f, 0xd5, 0xd6, + 0x6b, 0x0d, 0x51, 0x98, 0x4f, 0xfd, 0xa5, 0x1f, 0x5f, 0x1d, 0x2b, 0xbe, 0x04, 0x78, 0x8a, 0x1d, + 0xde, 0xcd, 0x50, 0x09, 0x26, 0x76, 0x69, 0x79, 0xe6, 0x04, 0xaa, 0xe9, 0x6b, 0x91, 0x05, 0x0f, + 0x74, 0xc9, 0x52, 0x9a, 0x68, 0xe3, 0xe7, 0xc7, 0x0b, 0x82, 0xc4, 0x39, 0x59, 0x4f, 0x28, 0xfe, + 0x4b, 0x01, 0xb2, 0x54, 0x30, 0xab, 0x25, 0x2a, 0xf7, 0x48, 0xbe, 0x7e, 0xaa, 0x4a, 0xfa, 0x45, + 0xa3, 0x45, 0x18, 0xdf, 0x57, 0x5a, 0x5d, 0x3c, 0x97, 0xa0, 0x32, 0xe6, 0x22, 0x64, 0xbc, 0x24, + 0xe9, 0x12, 0xcb, 0x86, 0x1e, 0xc3, 0x94, 0x6e, 0x38, 0xd8, 0x70, 0x64, 0xc6, 0x96, 0x3c, 0x85, + 0x2d, 0xcb, 0x72, 0xd3, 0x87, 0xe2, 0x3f, 0x13, 0x00, 0x36, 0xbb, 0x71, 0xaa, 0x06, 0x7d, 0x7b, + 0xc4, 0xf2, 0xf3, 0x3e, 0xc6, 0x6b, 0x71, 0x11, 0x26, 0x74, 0xa3, 0xa5, 0x1b, 0xac, 0xfc, 0x69, + 0x89, 0x3f, 0xa1, 0x59, 0x18, 0xdf, 0x6e, 0xe9, 0x86, 0x46, 0x47, 0x45, 0x5a, 0x62, 0x0f, 0x5c, + 0xfd, 0x12, 0x64, 0x69, 0xd9, 0x63, 0xd4, 0x7e, 0xf1, 0x0f, 0x13, 0x70, 0xa1, 0x6c, 0x1a, 0x9a, + 0x4e, 0x86, 0xa7, 0xd2, 0xfa, 0x46, 0xe8, 0x66, 0x15, 0x02, 0x03, 0x51, 0xc6, 0x87, 0x9d, 0x11, + 0x5b, 0x1a, 0xf9, 0x5c, 0x95, 0xc3, 0x0e, 0xa5, 0x45, 0xeb, 0x13, 0x7d, 0x1b, 0x2e, 0x29, 0xad, + 0x96, 0x79, 0x20, 0xeb, 0x3b, 0xb2, 0x66, 0x62, 0x5b, 0x36, 0x4c, 0x47, 0xc6, 0x87, 0xba, 0xed, + 0x50, 0xb3, 0x92, 0x96, 0x66, 0x68, 0x72, 0x6d, 0x67, 0xc5, 0xc4, 0xf6, 0x86, 0xe9, 0x54, 0x48, + 0x12, 0x19, 0xb3, 0xa4, 0x30, 0x6c, 0xcc, 0x4e, 0x10, 0x83, 0x2c, 0xa5, 0xf1, 0x61, 0x87, 0x8e, + 0x59, 0xde, 0x44, 0xdf, 0x87, 0x8b, 0xbd, 0xda, 0x8c, 0xb3, 0xb5, 0xfe, 0xbd, 0x00, 0xf9, 0x9a, + 0xa1, 0x3b, 0xdf, 0x88, 0x66, 0xf2, 0x54, 0x9b, 0x0c, 0xaa, 0xf6, 0x3e, 0x88, 0x3b, 0x8a, 0xde, + 0x7a, 0x6e, 0x34, 0xcc, 0xf6, 0xb6, 0xed, 0x98, 0x06, 0xb6, 0xb9, 0xee, 0xfb, 0xe8, 0x5c, 0x67, + 0x2f, 0xa1, 0xe0, 0xd5, 0x29, 0x4e, 0x65, 0xbd, 0x01, 0xb1, 0x66, 0xa8, 0x16, 0x6e, 0x63, 0x23, + 0x56, 0x6d, 0xbd, 0x05, 0x19, 0xdd, 0x95, 0x4b, 0x35, 0x96, 0x94, 0x7c, 0x02, 0xaf, 0x53, 0x17, + 0xa6, 0x03, 0xef, 0x8e, 0xd3, 0x5c, 0x92, 0x89, 0x03, 0x1f, 0xc8, 0x7e, 0x7b, 0x91, 0x89, 0x03, + 0x1f, 0x30, 0xf3, 0xf6, 0x29, 0xe4, 0x56, 0x70, 0x0b, 0x3b, 0x38, 0x7e, 0xdb, 0xbf, 0x05, 0x79, + 0x57, 0x74, 0x9c, 0x8d, 0xf4, 0x3b, 0x02, 0x20, 0x2e, 0x97, 0xcc, 0xb8, 0x71, 0xb6, 0xd3, 0x02, + 0x71, 0x33, 0x9c, 0xae, 0x65, 0x30, 0x7f, 0x81, 0xf5, 0x52, 0x60, 0x24, 0xea, 0x32, 0xf8, 0x36, + 0x38, 0x15, 0xb4, 0xc1, 0x9e, 0xdb, 0x43, 0x1c, 0x9e, 0x03, 0x98, 0x09, 0x15, 0x2f, 0xde, 0xa6, + 0x4c, 0xd1, 0x92, 0x25, 0xae, 0x25, 0x83, 0xbe, 0x1d, 0x25, 0x16, 0xff, 0x8e, 0x00, 0xd3, 0xe5, + 0x16, 0x56, 0xac, 0xd8, 0xf5, 0xf2, 0x1d, 0x48, 0x6b, 0x58, 0xd1, 0x68, 0xc5, 0xd9, 0x80, 0x7f, + 0x3b, 0x20, 0x85, 0x78, 0xb8, 0x8b, 0xbb, 0x2d, 0x75, 0xb1, 0xe1, 0xfa, 0xbe, 0x7c, 0xd4, 0x7b, + 0x4c, 0xbc, 0x43, 0x7c, 0x0a, 0x28, 0x58, 0xbe, 0x38, 0x3b, 0xc5, 0xdf, 0x15, 0x00, 0x49, 0x78, + 0x1f, 0x5b, 0x4e, 0xec, 0x95, 0x5f, 0x81, 0xac, 0xa3, 0x58, 0x4d, 0xec, 0xc8, 0xc4, 0xb7, 0x3f, + 0x4b, 0xfd, 0x81, 0xf1, 0x11, 0x32, 0xd7, 0xc0, 0x67, 0x30, 0x13, 0x2a, 0x65, 0x9c, 0x2a, 0xf8, + 0x9f, 0x02, 0x64, 0xeb, 0xaa, 0x62, 0xc4, 0x59, 0xf7, 0x4f, 0x20, 0x6b, 0xab, 0x8a, 0x21, 0xef, + 0x98, 0x56, 0x5b, 0x71, 0x68, 0xa7, 0xcf, 0x87, 0xea, 0xee, 0xf9, 0xdd, 0xaa, 0x62, 0x3c, 0xa1, + 0x99, 0x24, 0xb0, 0xbd, 0xdf, 0xe8, 0x05, 0x64, 0xf7, 0xf0, 0x91, 0xcc, 0x91, 0x1a, 0x9d, 0x29, + 0xf3, 0x0f, 0xdf, 0x0b, 0xf0, 0xef, 0xed, 0x2f, 0xba, 0x00, 0x6f, 0x31, 0x00, 0xf0, 0x16, 0x09, + 0xc7, 0x62, 0xdd, 0xb1, 0xb0, 0xd1, 0x74, 0x76, 0x25, 0xd8, 0xc3, 0x47, 0xcf, 0x98, 0x8c, 0xe0, + 0x50, 0x5b, 0x4d, 0xa5, 0x93, 0x62, 0xaa, 0xf8, 0xbf, 0x04, 0x98, 0x62, 0x15, 0x8f, 0x73, 0xa8, + 0xbd, 0x0f, 0x29, 0xcb, 0x3c, 0x60, 0x43, 0x2d, 0xfb, 0xf0, 0x4a, 0x84, 0x88, 0x35, 0x7c, 0x14, + 0x9c, 0xe3, 0x68, 0x76, 0x54, 0x02, 0xee, 0x3d, 0xca, 0x94, 0x3b, 0x39, 0x2a, 0x37, 0x30, 0x2e, + 0x89, 0xc8, 0xb8, 0x03, 0x85, 0x6d, 0xc5, 0x51, 0x77, 0x65, 0x8b, 0x17, 0x92, 0xcc, 0x87, 0xc9, + 0xbb, 0x53, 0x52, 0x9e, 0x92, 0xdd, 0xa2, 0xdb, 0xc5, 0xff, 0xed, 0xf6, 0x7a, 0x1b, 0xff, 0x52, + 0xb6, 0xfc, 0xff, 0x11, 0xf8, 0x78, 0x72, 0xeb, 0xff, 0xcb, 0xd6, 0x01, 0x7e, 0x94, 0x80, 0x4b, + 0xe5, 0x5d, 0xac, 0xee, 0x95, 0x4d, 0xc3, 0xd6, 0x6d, 0x87, 0x68, 0x30, 0xce, 0x5e, 0x70, 0x05, + 0x32, 0x07, 0xba, 0xb3, 0x2b, 0x6b, 0xfa, 0xce, 0x0e, 0xb5, 0x7c, 0x69, 0x29, 0x4d, 0x08, 0x2b, + 0xfa, 0xce, 0x0e, 0x7a, 0x04, 0xa9, 0xb6, 0xa9, 0x31, 0x27, 0x3b, 0xff, 0x70, 0x21, 0x42, 0x3c, + 0x2d, 0x9a, 0xdd, 0x6d, 0xaf, 0x9b, 0x1a, 0x96, 0x68, 0x66, 0x74, 0x15, 0x40, 0x25, 0xd4, 0x8e, + 0xa9, 0x1b, 0x0e, 0x9f, 0x45, 0x03, 0x14, 0x54, 0x85, 0x8c, 0x83, 0xad, 0xb6, 0x6e, 0x28, 0x0e, + 0x9e, 0x1b, 0xa7, 0xca, 0xbb, 0x19, 0x59, 0xf0, 0x4e, 0x4b, 0x57, 0x95, 0x15, 0x6c, 0xab, 0x96, + 0xde, 0x71, 0x4c, 0x8b, 0x6b, 0xd1, 0x67, 0xe6, 0x16, 0xf7, 0xf3, 0x14, 0xcc, 0xf5, 0x6b, 0x28, + 0xce, 0x7e, 0xb2, 0x09, 0x13, 0x04, 0xa7, 0xb7, 0x1c, 0xde, 0x53, 0x1e, 0x0e, 0x52, 0x44, 0x44, + 0x09, 0x28, 0xde, 0x6f, 0x39, 0xbc, 0xf0, 0x5c, 0xce, 0xfc, 0xef, 0x0b, 0x30, 0xc1, 0x12, 0xd0, + 0x03, 0x48, 0xf3, 0x85, 0x09, 0x8d, 0x96, 0x31, 0x59, 0xba, 0x78, 0x72, 0xbc, 0x30, 0xc9, 0xd6, + 0x1a, 0x56, 0xbe, 0xf4, 0x7f, 0x4a, 0x93, 0x34, 0x5f, 0x4d, 0x23, 0x6d, 0x66, 0x3b, 0x8a, 0xe5, + 0xd0, 0x45, 0xa0, 0x04, 0xc3, 0x1c, 0x94, 0xb0, 0x86, 0x8f, 0xd0, 0x2a, 0x4c, 0xd8, 0x8e, 0xe2, + 0x74, 0x6d, 0xde, 0x6a, 0x67, 0x2a, 0x6c, 0x9d, 0x72, 0x4a, 0x5c, 0x02, 0x71, 0x86, 0x34, 0xec, + 0x28, 0x7a, 0x8b, 0x36, 0x63, 0x46, 0xe2, 0x4f, 0xc5, 0xdf, 0x16, 0x60, 0x82, 0x65, 0x45, 0x97, + 0x60, 0x46, 0x5a, 0xde, 0x78, 0x5a, 0x91, 0x6b, 0x1b, 0x2b, 0x95, 0x46, 0x45, 0x5a, 0xaf, 0x6d, + 0x2c, 0x37, 0x2a, 0xe2, 0x18, 0xba, 0x08, 0xc8, 0x4d, 0x28, 0x3f, 0xdf, 0xa8, 0xd7, 0xea, 0x8d, + 0xca, 0x46, 0x43, 0x14, 0xe8, 0x1a, 0x05, 0xa5, 0x07, 0xa8, 0x09, 0x74, 0x13, 0xae, 0xf5, 0x52, + 0xe5, 0x7a, 0x63, 0xb9, 0x51, 0x97, 0x2b, 0xf5, 0x46, 0x6d, 0x7d, 0xb9, 0x51, 0x59, 0x11, 0x93, + 0x43, 0x72, 0x91, 0x97, 0x48, 0x52, 0xa5, 0xdc, 0x10, 0x53, 0xc5, 0x37, 0x70, 0x41, 0xc2, 0xaa, + 0xd9, 0xee, 0x74, 0x1d, 0x4c, 0x4a, 0x69, 0xc7, 0x39, 0x5e, 0x2e, 0xc1, 0xa4, 0x66, 0x1d, 0xc9, + 0x56, 0xd7, 0xe0, 0xa3, 0x65, 0x42, 0xb3, 0x8e, 0xa4, 0xae, 0xc1, 0x3b, 0xe3, 0x3f, 0x14, 0xe0, + 0x62, 0xef, 0xcb, 0xe3, 0xec, 0x8a, 0x2f, 0x20, 0xab, 0x68, 0x1a, 0xd6, 0x64, 0x0d, 0xb7, 0x1c, + 0x85, 0xbb, 0x2a, 0xf7, 0x03, 0x92, 0xf8, 0x02, 0xde, 0xa2, 0xb7, 0x80, 0xb7, 0xfe, 0xb2, 0x5c, + 0xa6, 0x05, 0x59, 0x21, 0x1c, 0xae, 0x29, 0xa2, 0x42, 0x28, 0xa5, 0xf8, 0xa7, 0x29, 0xc8, 0x55, + 0x0c, 0xad, 0x71, 0x18, 0xeb, 0xec, 0x72, 0x11, 0x26, 0x54, 0xb3, 0xdd, 0xd6, 0x1d, 0x57, 0x4d, + 0xec, 0x09, 0xfd, 0x4a, 0xc0, 0xd1, 0x4c, 0x8e, 0xe0, 0x68, 0xf9, 0x2e, 0x26, 0xfa, 0x01, 0x5c, + 0x22, 0x16, 0xd4, 0x32, 0x94, 0x96, 0xcc, 0xa4, 0xc9, 0x8e, 0xa5, 0x37, 0x9b, 0xd8, 0xe2, 0xcb, + 0x85, 0x77, 0x23, 0xca, 0x59, 0xe3, 0x1c, 0x65, 0xca, 0xd0, 0x60, 0xf9, 0xa5, 0x0b, 0x7a, 0x14, + 0x19, 0x7d, 0x0c, 0x40, 0x26, 0x27, 0xba, 0x04, 0x69, 0x73, 0xdb, 0x34, 0x68, 0x0d, 0xd2, 0x35, + 0x47, 0x84, 0x81, 0x3c, 0xdb, 0x68, 0x89, 0x60, 0x8b, 0xd7, 0x5d, 0xdd, 0xc2, 0xf2, 0x83, 0x8e, + 0x4a, 0x17, 0x03, 0xd2, 0xa5, 0xfc, 0xc9, 0xf1, 0x02, 0x48, 0x8c, 0xfc, 0x60, 0xb3, 0x4c, 0xb0, + 0x06, 0xfb, 0xdd, 0x51, 0xd1, 0x2b, 0xb8, 0x17, 0x58, 0xd3, 0x20, 0x73, 0x31, 0xaf, 0x96, 0xe2, + 0xc8, 0xbb, 0x7a, 0x73, 0x17, 0x5b, 0xb2, 0xb7, 0xd8, 0x4c, 0xd7, 0x03, 0xd3, 0xd2, 0x4d, 0x9f, + 0xa1, 0xac, 0x18, 0xac, 0xf4, 0xcb, 0x4e, 0x95, 0x66, 0xf6, 0x74, 0x46, 0x94, 0xdf, 0x31, 0x75, + 0xdb, 0x34, 0xe6, 0x32, 0x4c, 0xf9, 0xec, 0x09, 0xdd, 0x03, 0xd1, 0x39, 0x34, 0xe4, 0x5d, 0xac, + 0x58, 0xce, 0x36, 0x56, 0x1c, 0x32, 0x6f, 0x03, 0xcd, 0x51, 0x70, 0x0e, 0x8d, 0x6a, 0x80, 0x8c, + 0x5e, 0x80, 0xa8, 0x1b, 0xf2, 0x4e, 0x4b, 0x6f, 0xee, 0x3a, 0xf2, 0x81, 0xa5, 0x3b, 0xd8, 0x9e, + 0x9b, 0xa6, 0x0a, 0x89, 0xea, 0xb7, 0x75, 0xbe, 0x3a, 0xac, 0xbd, 0x22, 0x39, 0xb9, 0x6a, 0xf2, + 0xba, 0xf1, 0x84, 0xf2, 0x53, 0xa2, 0xed, 0xcd, 0xee, 0x93, 0x62, 0xba, 0xf8, 0x9f, 0x04, 0xc8, + 0xbb, 0x9d, 0x2e, 0xce, 0xf1, 0x71, 0x17, 0x44, 0xd3, 0xc0, 0x72, 0x67, 0x57, 0xb1, 0x31, 0xd7, + 0x26, 0x9f, 0x82, 0xf2, 0xa6, 0x81, 0x37, 0x09, 0x99, 0x29, 0x0d, 0x6d, 0xc2, 0xb4, 0xed, 0x28, + 0x4d, 0xdd, 0x68, 0x06, 0x94, 0x3c, 0x3e, 0xba, 0xeb, 0x2f, 0x72, 0x6e, 0x8f, 0x1e, 0xf2, 0x5b, + 0xfe, 0x48, 0x80, 0xe9, 0x65, 0xad, 0xad, 0x1b, 0xf5, 0x4e, 0x4b, 0x8f, 0x75, 0xa5, 0xe1, 0x26, + 0x64, 0x6c, 0x22, 0xd3, 0x37, 0xfe, 0x3e, 0x4a, 0x4c, 0xd3, 0x14, 0x32, 0x0b, 0x3c, 0x83, 0x02, + 0x3e, 0xec, 0xe8, 0x96, 0xe2, 0xe8, 0xa6, 0xc1, 0x60, 0x4d, 0x6a, 0xf4, 0xba, 0xe5, 0x7d, 0x5e, + 0x1f, 0xda, 0xf0, 0x9a, 0x7d, 0x0a, 0x28, 0x58, 0xb1, 0x38, 0xf1, 0x8d, 0x0c, 0x33, 0x54, 0xf4, + 0x96, 0x61, 0xc7, 0xac, 0x35, 0x6e, 0x9d, 0x7f, 0x1d, 0x66, 0xc3, 0x2f, 0x88, 0xb3, 0xf4, 0xdf, + 0xe7, 0x2d, 0xbe, 0x8e, 0xad, 0xe6, 0xd7, 0xb0, 0xd6, 0xe2, 0xea, 0x9d, 0x8b, 0x8f, 0xb3, 0xe4, + 0xbf, 0x25, 0xc0, 0x65, 0x2a, 0x9b, 0xee, 0xca, 0xec, 0x60, 0xeb, 0x19, 0x56, 0xec, 0x58, 0x11, + 0xf6, 0x0d, 0x98, 0x60, 0x48, 0x99, 0xf6, 0xd8, 0xf1, 0x52, 0x96, 0xf8, 0x35, 0x75, 0xc7, 0xb4, + 0x88, 0x5f, 0xc3, 0x93, 0x78, 0x3d, 0x15, 0x98, 0x8f, 0x2a, 0x4b, 0xcc, 0x4b, 0x09, 0xd3, 0xdc, + 0xbd, 0x24, 0x5d, 0xbc, 0xbc, 0x4b, 0xfc, 0x2a, 0x54, 0x81, 0xac, 0x4a, 0x7f, 0xc9, 0xce, 0x51, + 0x07, 0x53, 0xf9, 0xf9, 0x61, 0x9e, 0x29, 0x63, 0x6b, 0x1c, 0x75, 0x30, 0x71, 0x6f, 0xdd, 0xdf, + 0x44, 0x5d, 0x81, 0xaa, 0x0e, 0xf5, 0x6d, 0xe9, 0xf8, 0xa2, 0x79, 0x5d, 0xf7, 0x30, 0xa4, 0x89, + 0x7f, 0x9a, 0xe4, 0xaa, 0x60, 0x6f, 0xe2, 0x4c, 0xb1, 0x7a, 0x33, 0x9f, 0x85, 0x36, 0xc8, 0x82, + 0xd5, 0x4f, 0x9c, 0xa1, 0xfa, 0x81, 0x95, 0x79, 0x9f, 0x8a, 0x3e, 0x85, 0xc0, 0xda, 0xbb, 0xcc, + 0x6a, 0xe6, 0xa2, 0xa5, 0xb3, 0x28, 0x65, 0xda, 0x97, 0xc2, 0xe8, 0x36, 0x2a, 0x43, 0x1a, 0x1f, + 0x76, 0x64, 0x0d, 0xdb, 0x2a, 0x37, 0x6b, 0xc5, 0x41, 0x3b, 0x79, 0x7d, 0xf8, 0x61, 0x12, 0x1f, + 0x76, 0x08, 0x11, 0x6d, 0x91, 0x19, 0xce, 0x75, 0x27, 0x68, 0xb1, 0xed, 0xd3, 0xe1, 0x88, 0xdf, + 0x5f, 0xb8, 0xb8, 0x82, 0xe7, 0x49, 0x30, 0x11, 0xbc, 0xed, 0xbe, 0x10, 0xe0, 0x4a, 0x64, 0xdb, + 0xc5, 0x39, 0xd9, 0x7d, 0x0c, 0x29, 0xaa, 0x82, 0xc4, 0x19, 0x55, 0x40, 0xb9, 0x8a, 0xbf, 0xe7, + 0x8e, 0x7a, 0x09, 0xb7, 0x4c, 0xa2, 0xde, 0xaf, 0x61, 0x5d, 0x6d, 0xd2, 0x6d, 0xf6, 0xc4, 0x99, + 0x9b, 0xdd, 0x65, 0xed, 0x31, 0x0b, 0x3d, 0x85, 0x8d, 0xd3, 0x2c, 0xfc, 0x0d, 0x01, 0x66, 0x3c, + 0x1f, 0x28, 0x66, 0x77, 0xf8, 0x7d, 0x48, 0x1a, 0xe6, 0xc1, 0x59, 0x96, 0x16, 0x49, 0x7e, 0x7f, + 0xda, 0x0a, 0x97, 0x2b, 0xce, 0x5a, 0xff, 0x9b, 0x04, 0x64, 0x9e, 0x96, 0xe3, 0xac, 0xeb, 0xc7, + 0x7c, 0x09, 0x9b, 0x0d, 0xf5, 0xa8, 0x6e, 0xe9, 0xbd, 0x6f, 0xf1, 0x69, 0x79, 0x0d, 0x1f, 0xb9, + 0xdd, 0x92, 0x70, 0xa1, 0x65, 0xc8, 0x38, 0xbb, 0x16, 0xb6, 0x77, 0xcd, 0x96, 0x76, 0x16, 0x9f, + 0xc5, 0xe7, 0x9a, 0xdf, 0x83, 0x71, 0x2a, 0xd7, 0x0d, 0xa3, 0x10, 0x22, 0xc2, 0x28, 0xc8, 0x6b, + 0x3c, 0xb7, 0x2f, 0x71, 0x96, 0xd7, 0xb8, 0x04, 0xd6, 0x38, 0x9e, 0x6f, 0x34, 0x2e, 0x4e, 0x14, + 0x5f, 0x00, 0x90, 0xaa, 0xc5, 0xd9, 0x3c, 0x7f, 0x25, 0x09, 0xf9, 0xcd, 0xae, 0xbd, 0x1b, 0x73, + 0x7f, 0x2c, 0x03, 0x74, 0xba, 0x36, 0x45, 0x18, 0x87, 0x06, 0xaf, 0xff, 0x29, 0x71, 0x1a, 0xae, + 0x02, 0x18, 0x5f, 0xe3, 0xd0, 0x40, 0x55, 0x2e, 0x04, 0xcb, 0x7e, 0xb0, 0xc7, 0x8d, 0x61, 0x58, + 0xb4, 0x71, 0x68, 0xac, 0x63, 0x0f, 0x84, 0x32, 0x49, 0x98, 0x48, 0xfa, 0x18, 0x26, 0xc9, 0x83, + 0xec, 0x98, 0x67, 0x69, 0xf2, 0x09, 0xc2, 0xd3, 0x30, 0xd1, 0x63, 0xc8, 0x30, 0x6e, 0x32, 0x71, + 0x4d, 0xd0, 0x89, 0x2b, 0xaa, 0x2e, 0x5c, 0x8d, 0x74, 0xca, 0x4a, 0x53, 0x56, 0x32, 0x4d, 0xcd, + 0xc2, 0xf8, 0x8e, 0x69, 0xa9, 0x98, 0x46, 0x70, 0xa4, 0x25, 0xf6, 0x10, 0x6c, 0xd5, 0xd5, 0x54, + 0x3a, 0x2d, 0x66, 0x56, 0x53, 0xe9, 0x8c, 0x08, 0xc5, 0xdf, 0x16, 0xa0, 0xe0, 0x35, 0x47, 0x9c, + 0xb6, 0xbc, 0x1c, 0xd2, 0xe5, 0xd9, 0x1b, 0x84, 0xa8, 0xb1, 0xf8, 0x6f, 0xa9, 0x63, 0xa3, 0x9a, + 0xfb, 0xb4, 0x7d, 0xe2, 0xec, 0x2f, 0x8f, 0x59, 0x40, 0x4f, 0xe2, 0xac, 0x6d, 0x4c, 0x63, 0x7b, + 0x1e, 0xc0, 0xac, 0xde, 0x26, 0x56, 0x5e, 0x77, 0x5a, 0x47, 0x1c, 0x95, 0x39, 0xd8, 0xdd, 0x23, + 0x9e, 0xf1, 0xd3, 0xca, 0x6e, 0x12, 0x37, 0x7c, 0x6c, 0xcf, 0xc7, 0xaf, 0x4f, 0x9c, 0x0a, 0xaf, + 0x41, 0xce, 0x62, 0xa2, 0x89, 0x77, 0x72, 0x46, 0x9d, 0x4f, 0x79, 0xac, 0x44, 0xed, 0xbf, 0x9b, + 0x80, 0xc2, 0x8b, 0x2e, 0xb6, 0x8e, 0xbe, 0x49, 0x4a, 0xbf, 0x0d, 0x85, 0x03, 0x45, 0x77, 0xe4, + 0x1d, 0xd3, 0x92, 0xbb, 0x1d, 0x4d, 0x71, 0xdc, 0xa8, 0x92, 0x1c, 0x21, 0x3f, 0x31, 0xad, 0x2d, + 0x4a, 0x44, 0x18, 0xd0, 0x9e, 0x61, 0x1e, 0x18, 0x32, 0x21, 0x53, 0x34, 0x7c, 0x68, 0xf0, 0xc5, + 0xe8, 0xd2, 0x07, 0xff, 0xf1, 0x78, 0xe1, 0xd1, 0x48, 0x71, 0x63, 0x34, 0x06, 0xae, 0xdb, 0xd5, + 0xb5, 0xc5, 0xad, 0xad, 0xda, 0x8a, 0x24, 0x52, 0x91, 0xaf, 0x98, 0xc4, 0xc6, 0xa1, 0xe1, 0xce, + 0xe2, 0x7f, 0x2f, 0x01, 0xa2, 0xaf, 0xa9, 0x38, 0x9b, 0xb3, 0x02, 0xd9, 0xd7, 0x5d, 0x6c, 0xe9, + 0xe7, 0x68, 0x4c, 0xe0, 0x8c, 0xc4, 0x10, 0x7d, 0x06, 0x53, 0x21, 0x3d, 0x24, 0xbf, 0x9a, 0x1e, + 0xb2, 0x07, 0xbe, 0x0a, 0xd0, 0x7d, 0x98, 0x76, 0x0e, 0x0d, 0x99, 0xc5, 0x05, 0xb2, 0xc8, 0x12, + 0x37, 0x0c, 0xa2, 0xe0, 0x10, 0x7d, 0x10, 0x3a, 0x8d, 0x2a, 0xb1, 0x8b, 0xff, 0x5a, 0x00, 0x44, + 0x15, 0x55, 0x63, 0x7b, 0x06, 0xdf, 0x94, 0x5e, 0x75, 0x17, 0x44, 0x1a, 0x69, 0x29, 0xeb, 0x3b, + 0x72, 0x5b, 0xb7, 0x6d, 0xdd, 0x68, 0xf2, 0x6e, 0x95, 0xa7, 0xf4, 0xda, 0xce, 0x3a, 0xa3, 0xf2, + 0x06, 0xff, 0x73, 0x30, 0x13, 0xaa, 0x46, 0x9c, 0x4d, 0x7e, 0x1d, 0xa6, 0x76, 0xcc, 0xae, 0xa1, + 0xc9, 0x6c, 0x5f, 0x85, 0x2f, 0x34, 0x66, 0x29, 0x8d, 0xbd, 0xaf, 0xf8, 0x3f, 0x12, 0x30, 0x2b, + 0x61, 0xdb, 0x6c, 0xed, 0xe3, 0xf8, 0x15, 0x59, 0x05, 0xbe, 0xa3, 0x23, 0x9f, 0x4b, 0x9f, 0x19, + 0xc6, 0xcc, 0xa6, 0xbf, 0xf0, 0x9a, 0xfd, 0xcd, 0xe1, 0xfd, 0xb6, 0x7f, 0x95, 0x9e, 0xaf, 0xf6, + 0xa5, 0x42, 0xab, 0x7d, 0x26, 0x14, 0xf4, 0xa6, 0x61, 0x12, 0xfb, 0x66, 0xe3, 0xd7, 0x46, 0xb7, + 0xed, 0xe2, 0x9b, 0xc5, 0x61, 0x85, 0xac, 0x31, 0x96, 0x3a, 0x7e, 0xbd, 0xd1, 0x6d, 0x53, 0x2f, + 0xbb, 0x74, 0x91, 0x94, 0xf7, 0xe4, 0x78, 0x21, 0x1f, 0x4a, 0xb3, 0xa5, 0xbc, 0xee, 0x3d, 0x13, + 0xe9, 0xbc, 0xc9, 0xbf, 0x07, 0x17, 0x7a, 0x54, 0x1e, 0xa7, 0x3f, 0xf4, 0xaf, 0x92, 0x70, 0x39, + 0x2c, 0x3e, 0x6e, 0xd4, 0xf2, 0x4d, 0x6f, 0xd6, 0x2a, 0xe4, 0xda, 0xba, 0x71, 0xbe, 0x45, 0xcb, + 0xa9, 0xb6, 0x6e, 0xf8, 0xcb, 0xc4, 0x11, 0x1d, 0x64, 0xe2, 0xff, 0x41, 0x07, 0x51, 0x60, 0x3e, + 0xaa, 0x05, 0xe3, 0xec, 0x25, 0x9f, 0x0b, 0x30, 0x15, 0xf7, 0x3a, 0xdc, 0xf9, 0x22, 0xe2, 0x78, + 0x9d, 0x1b, 0x90, 0xfb, 0x1a, 0x16, 0xee, 0x7e, 0x57, 0x00, 0xd4, 0xb0, 0xba, 0x06, 0x01, 0xc4, + 0xcf, 0xcc, 0x66, 0x9c, 0x95, 0x9d, 0x85, 0x71, 0xdd, 0xd0, 0xf0, 0x21, 0xad, 0x6c, 0x4a, 0x62, + 0x0f, 0xa1, 0xcd, 0xca, 0xe4, 0x48, 0x9b, 0x95, 0x7e, 0x58, 0x4c, 0xa8, 0xa0, 0x71, 0x6a, 0xe1, + 0x1f, 0x24, 0x60, 0x86, 0x57, 0x27, 0xf6, 0x85, 0xcb, 0x6f, 0xc3, 0x78, 0x8b, 0xc8, 0x1c, 0xd2, + 0xe6, 0xf4, 0x9d, 0x6e, 0x9b, 0xd3, 0xcc, 0xe8, 0x57, 0x01, 0x3a, 0x16, 0xde, 0x97, 0x19, 0x6b, + 0x72, 0x24, 0xd6, 0x0c, 0xe1, 0xa0, 0x04, 0xf4, 0x5d, 0x28, 0x90, 0x11, 0xde, 0xb1, 0xcc, 0x8e, + 0x69, 0x13, 0x87, 0xc6, 0x1e, 0x0d, 0x15, 0x4d, 0x9f, 0x1c, 0x2f, 0xe4, 0xd6, 0x75, 0x63, 0x93, + 0x33, 0x36, 0xea, 0x12, 0x31, 0x15, 0xde, 0xa3, 0x3b, 0x00, 0xff, 0x83, 0x00, 0xb3, 0x5f, 0xdb, + 0x52, 0xef, 0xff, 0x0f, 0x8d, 0x79, 0x33, 0x8f, 0x48, 0x1f, 0x6b, 0xc6, 0x8e, 0x19, 0xff, 0x02, + 0xfc, 0xe7, 0x02, 0x4c, 0x07, 0xc4, 0xc7, 0xe9, 0xc9, 0x9c, 0x4b, 0x67, 0xc5, 0x5f, 0x27, 0xbe, + 0x4d, 0xb0, 0xdb, 0xc7, 0x39, 0xa8, 0xfe, 0x79, 0x02, 0x2e, 0x96, 0xd9, 0x36, 0xb6, 0x1b, 0xe3, + 0x11, 0x67, 0x2f, 0x99, 0x83, 0xc9, 0x7d, 0x6c, 0xd9, 0xba, 0xc9, 0x66, 0xd8, 0x9c, 0xe4, 0x3e, + 0xa2, 0x79, 0x48, 0xdb, 0x86, 0xd2, 0xb1, 0x77, 0x4d, 0x77, 0xe7, 0xce, 0x7b, 0xf6, 0xe2, 0x51, + 0xc6, 0xcf, 0x1f, 0x8f, 0x32, 0x31, 0x3c, 0x1e, 0x65, 0xf2, 0x2b, 0xc7, 0xa3, 0xf0, 0x6d, 0xb2, + 0x3f, 0x10, 0xe0, 0x52, 0x9f, 0xfe, 0xe2, 0xec, 0x33, 0x3f, 0x84, 0xac, 0xca, 0x05, 0x13, 0x6b, + 0xcc, 0x76, 0x02, 0x6b, 0x24, 0xdb, 0x39, 0xc1, 0xca, 0xc9, 0xf1, 0x02, 0xb8, 0x45, 0xad, 0xad, + 0x70, 0x15, 0x91, 0xdf, 0x5a, 0xf1, 0x1f, 0xe5, 0xa0, 0x50, 0x39, 0x64, 0xeb, 0xdc, 0x75, 0xe6, + 0x0f, 0xa0, 0x27, 0x90, 0xee, 0x58, 0xe6, 0xbe, 0xee, 0x56, 0x23, 0x1f, 0x0a, 0x43, 0x70, 0xab, + 0xd1, 0xc3, 0xb5, 0xc9, 0x39, 0x24, 0x8f, 0x17, 0x35, 0x20, 0xf3, 0xcc, 0x54, 0x95, 0xd6, 0x13, + 0xbd, 0xe5, 0xf6, 0xff, 0xf7, 0x4e, 0x17, 0xb4, 0xe8, 0xf1, 0x6c, 0x2a, 0xce, 0xae, 0xdb, 0x14, + 0x1e, 0x11, 0xd5, 0x20, 0x5d, 0x75, 0x9c, 0x0e, 0x49, 0xe4, 0xd6, 0xe4, 0xce, 0x08, 0x42, 0x09, + 0x8b, 0x1b, 0xd9, 0xea, 0xb2, 0xa3, 0x06, 0x4c, 0x3f, 0x35, 0xcd, 0x66, 0x0b, 0x97, 0x5b, 0x66, + 0x57, 0x2b, 0x9b, 0xc6, 0x8e, 0xde, 0xe4, 0xf6, 0xf8, 0xf6, 0x08, 0x32, 0x9f, 0x96, 0xeb, 0x52, + 0xbf, 0x00, 0xb4, 0x0c, 0xe9, 0xfa, 0x23, 0x2e, 0x8c, 0x39, 0x70, 0xb7, 0x46, 0x10, 0x56, 0x7f, + 0x24, 0x79, 0x6c, 0x68, 0x15, 0xb2, 0xcb, 0x6f, 0xba, 0x16, 0xe6, 0x52, 0x26, 0x06, 0xc6, 0x40, + 0xf4, 0x4a, 0xa1, 0x5c, 0x52, 0x90, 0x19, 0xd5, 0x21, 0xff, 0xca, 0xb4, 0xf6, 0x5a, 0xa6, 0xe2, + 0xd6, 0x70, 0x92, 0x8a, 0xfb, 0xd6, 0x08, 0xe2, 0x5c, 0x46, 0xa9, 0x47, 0x04, 0xfa, 0x1e, 0x14, + 0x48, 0x63, 0x34, 0x94, 0xed, 0x96, 0x5b, 0xc8, 0x34, 0x95, 0xfa, 0xce, 0x08, 0x52, 0x3d, 0x4e, + 0x77, 0xa3, 0xa5, 0x47, 0xd4, 0xfc, 0x77, 0x21, 0x17, 0xea, 0x04, 0x08, 0x41, 0xaa, 0x43, 0xda, + 0x5b, 0xa0, 0xb1, 0x4a, 0xf4, 0x37, 0x7a, 0x17, 0x26, 0x0d, 0x53, 0xc3, 0xee, 0x08, 0xc9, 0x95, + 0x66, 0x4f, 0x8e, 0x17, 0x26, 0x36, 0x4c, 0x8d, 0xb9, 0x2b, 0xfc, 0x97, 0x34, 0x41, 0x32, 0xb9, + 0xce, 0xca, 0xfc, 0x6d, 0x48, 0x91, 0xd6, 0x27, 0x46, 0x6a, 0x5b, 0xb1, 0xf1, 0x96, 0xa5, 0x73, + 0x99, 0xee, 0x23, 0xcf, 0xf7, 0x8f, 0x13, 0x90, 0xa8, 0x3f, 0x22, 0x8e, 0xfa, 0x76, 0x57, 0xdd, + 0xc3, 0x0e, 0xcf, 0xc5, 0x9f, 0xa8, 0x03, 0x6f, 0xe1, 0x1d, 0x9d, 0xf9, 0x50, 0x19, 0x89, 0x3f, + 0xa1, 0xb7, 0x01, 0x14, 0x55, 0xc5, 0xb6, 0x2d, 0xbb, 0x67, 0xfc, 0x32, 0x52, 0x86, 0x51, 0xd6, + 0xf0, 0x11, 0x61, 0xb3, 0xb1, 0x6a, 0x61, 0xc7, 0x0d, 0xba, 0x62, 0x4f, 0x84, 0xcd, 0xc1, 0xed, + 0x8e, 0xec, 0x98, 0x7b, 0xd8, 0xa0, 0x7d, 0x26, 0x43, 0x8c, 0x4f, 0xbb, 0xd3, 0x20, 0x04, 0x62, + 0x37, 0xb1, 0xa1, 0xf9, 0x46, 0x2e, 0x23, 0x79, 0xcf, 0x44, 0xa4, 0x85, 0x9b, 0x3a, 0x3f, 0xa6, + 0x96, 0x91, 0xf8, 0x13, 0xd1, 0x98, 0xd2, 0x75, 0x76, 0x69, 0xab, 0x64, 0x24, 0xfa, 0x1b, 0xdd, + 0x86, 0x02, 0x8b, 0xd9, 0x94, 0xb1, 0xa1, 0xca, 0xd4, 0xdc, 0x66, 0x68, 0x72, 0x8e, 0x91, 0x2b, + 0x86, 0x4a, 0x8c, 0x2b, 0x7a, 0x04, 0x9c, 0x20, 0xef, 0xb5, 0x6d, 0xa2, 0x5f, 0x20, 0xb9, 0x4a, + 0x85, 0x93, 0xe3, 0x85, 0x6c, 0x9d, 0x26, 0xac, 0xad, 0xd7, 0x6b, 0x2b, 0x52, 0x96, 0xe5, 0x5a, + 0x6b, 0xdb, 0x9e, 0x7e, 0xff, 0x96, 0x00, 0xc9, 0xa7, 0xe5, 0xfa, 0x99, 0x15, 0xe7, 0x16, 0x37, + 0x19, 0x28, 0xee, 0x1d, 0x28, 0x6c, 0xeb, 0xad, 0x96, 0x6e, 0x34, 0x89, 0xbf, 0xf4, 0x43, 0xac, + 0xba, 0x6a, 0xcb, 0x73, 0xf2, 0x26, 0xa3, 0xa2, 0x6b, 0x90, 0x55, 0x2d, 0xac, 0x61, 0xc3, 0xd1, + 0x95, 0x96, 0xcd, 0xf5, 0x17, 0x24, 0xf1, 0xc2, 0xfd, 0xa6, 0x00, 0xe3, 0x74, 0x64, 0xa0, 0xb7, + 0x20, 0xa3, 0x9a, 0x86, 0xa3, 0xe8, 0x06, 0x37, 0x71, 0x19, 0xc9, 0x27, 0x0c, 0x2c, 0xe4, 0x75, + 0x98, 0x52, 0x54, 0xd5, 0xec, 0x1a, 0x8e, 0x6c, 0x28, 0x6d, 0xcc, 0x0b, 0x9b, 0xe5, 0xb4, 0x0d, + 0xa5, 0x8d, 0xd1, 0x02, 0xb8, 0x8f, 0xde, 0x31, 0xce, 0x8c, 0x04, 0x9c, 0xb4, 0x86, 0x8f, 0x78, + 0x49, 0xfe, 0x40, 0x80, 0xb4, 0x3b, 0xa2, 0x48, 0x61, 0x9a, 0xd8, 0xc0, 0x96, 0xe2, 0x98, 0x5e, + 0x61, 0x3c, 0x42, 0xef, 0x74, 0x9a, 0xf1, 0xa7, 0xd3, 0x59, 0x18, 0x77, 0xc8, 0xa0, 0xe1, 0xe5, + 0x60, 0x0f, 0x74, 0xd1, 0xbb, 0xa5, 0x34, 0xd9, 0x3a, 0x5f, 0x46, 0x62, 0x0f, 0xa4, 0x4a, 0x3c, + 0x18, 0x98, 0x69, 0x87, 0x3f, 0x91, 0xf2, 0xb2, 0x60, 0xd5, 0x6d, 0xdc, 0xd4, 0x0d, 0xda, 0xbb, + 0x92, 0x12, 0x50, 0x52, 0x89, 0x50, 0xd0, 0x15, 0xc8, 0xb0, 0x0c, 0xd8, 0xd0, 0x68, 0x17, 0x4b, + 0x4a, 0x69, 0x4a, 0xa8, 0xb8, 0xe7, 0xd4, 0xe6, 0xf7, 0x20, 0xe3, 0x0d, 0x60, 0xd2, 0x90, 0x5d, + 0xdb, 0x53, 0x2a, 0xfd, 0x8d, 0xde, 0x83, 0xd9, 0xd7, 0x5d, 0xa5, 0xa5, 0xef, 0xd0, 0x25, 0x3c, + 0x92, 0x8d, 0xe9, 0x8f, 0xd5, 0x07, 0x79, 0x69, 0x54, 0x02, 0x55, 0xa3, 0x3b, 0xde, 0x93, 0xfe, + 0x78, 0x0f, 0xee, 0xc9, 0x14, 0x7f, 0x22, 0xc0, 0x34, 0x8b, 0x47, 0x62, 0x21, 0xb5, 0xf1, 0x79, + 0x2f, 0x1f, 0x41, 0x46, 0x53, 0x1c, 0x85, 0x1d, 0x55, 0x4d, 0x0c, 0x3d, 0xaa, 0xea, 0x1d, 0x94, + 0x50, 0x1c, 0x85, 0x1e, 0x57, 0x45, 0x90, 0x22, 0xbf, 0xd9, 0xd9, 0x5e, 0x89, 0xfe, 0xf6, 0x23, + 0x3c, 0x82, 0xc5, 0x8d, 0xd3, 0x9b, 0x5b, 0x82, 0x0b, 0x44, 0xfb, 0x15, 0x43, 0xb5, 0x8e, 0x3a, + 0x8e, 0x6e, 0x1a, 0xcf, 0xe9, 0x5f, 0x1b, 0x89, 0x81, 0x1d, 0x32, 0xba, 0x31, 0xc6, 0xcb, 0xf2, + 0xd3, 0x09, 0xc8, 0x55, 0x0e, 0x3b, 0xa6, 0x15, 0xeb, 0x8a, 0x59, 0x09, 0x26, 0xf9, 0x72, 0xc2, + 0x90, 0x3d, 0xeb, 0x9e, 0x89, 0xc0, 0xdd, 0x0e, 0xe6, 0x8c, 0xa8, 0x04, 0xc0, 0x82, 0x5f, 0x69, + 0x50, 0x53, 0xf2, 0x0c, 0x3b, 0x77, 0x94, 0x8d, 0x50, 0xd1, 0x06, 0x64, 0xdb, 0xfb, 0xaa, 0x2a, + 0xef, 0xe8, 0x2d, 0x87, 0x47, 0x0f, 0x46, 0x87, 0xbe, 0xaf, 0xbf, 0x2c, 0x97, 0x9f, 0xd0, 0x4c, + 0x2c, 0x90, 0xcf, 0x7f, 0x96, 0x80, 0x48, 0x60, 0xbf, 0xd1, 0x3b, 0xc0, 0x8f, 0x10, 0xc9, 0xb6, + 0x7b, 0x5a, 0xb0, 0x94, 0x3b, 0x39, 0x5e, 0xc8, 0x48, 0x94, 0x5a, 0xaf, 0x37, 0xa4, 0x0c, 0xcb, + 0x50, 0xb7, 0x1d, 0x74, 0x03, 0x72, 0x66, 0x5b, 0x77, 0x64, 0xd7, 0xc1, 0xe2, 0x3e, 0xe9, 0x14, + 0x21, 0xba, 0x0e, 0x18, 0x6a, 0xc0, 0x1d, 0x6c, 0xd0, 0x51, 0x40, 0xea, 0x29, 0x6f, 0xb3, 0x85, + 0x4e, 0x87, 0x8d, 0x77, 0xd9, 0xec, 0x38, 0x7a, 0x5b, 0x7f, 0x43, 0x77, 0xcd, 0xf9, 0xc6, 0xd5, + 0x0d, 0x96, 0x9d, 0xd4, 0xaf, 0x44, 0x57, 0x40, 0x79, 0xde, 0xe7, 0x81, 0xac, 0xe8, 0x37, 0x05, + 0xb8, 0xc8, 0x15, 0x29, 0x6f, 0xd3, 0xd8, 0x7d, 0xa5, 0xa5, 0x3b, 0x47, 0xf2, 0xde, 0xfe, 0x5c, + 0x9a, 0x7a, 0xbe, 0xbf, 0x12, 0xd9, 0x20, 0x81, 0x7e, 0xb0, 0xe8, 0x36, 0xcb, 0xd1, 0x33, 0xce, + 0xbc, 0xb6, 0x5f, 0x31, 0x1c, 0xeb, 0xa8, 0x74, 0xe9, 0xe4, 0x78, 0x61, 0xa6, 0x3f, 0xf5, 0xa5, + 0x34, 0x63, 0xf7, 0xb3, 0xa0, 0x2a, 0x00, 0xf6, 0x7a, 0x23, 0x9d, 0x61, 0xa2, 0x7d, 0x97, 0xc8, + 0x6e, 0x2b, 0x05, 0x78, 0xd1, 0x5d, 0x10, 0xf9, 0xe9, 0x9d, 0x1d, 0xbd, 0x85, 0x65, 0x5b, 0x7f, + 0x83, 0xe9, 0x5c, 0x94, 0x94, 0xf2, 0x8c, 0x4e, 0x44, 0xd4, 0xf5, 0x37, 0x78, 0xfe, 0x87, 0x30, + 0x37, 0xa8, 0xf4, 0xc1, 0x81, 0x90, 0x61, 0x3b, 0xc4, 0x1f, 0x86, 0x97, 0x7b, 0x46, 0xe8, 0xaa, + 0xee, 0x92, 0x4f, 0xe2, 0x43, 0xd7, 0x04, 0xfd, 0x5e, 0x02, 0x72, 0xa5, 0x6e, 0x6b, 0xef, 0x79, + 0xa7, 0xde, 0x6d, 0xb7, 0x15, 0xeb, 0x88, 0x98, 0x4a, 0x66, 0x3a, 0x48, 0x31, 0x05, 0x66, 0x2a, + 0xa9, 0x6d, 0xd0, 0xdf, 0x60, 0x32, 0x99, 0x05, 0xcf, 0xab, 0xb3, 0xb3, 0x09, 0xb4, 0x26, 0x81, + 0x43, 0xe8, 0xe6, 0x81, 0x8d, 0x3e, 0x84, 0xb9, 0x40, 0x46, 0xba, 0x36, 0x23, 0x63, 0xc3, 0xb1, + 0x74, 0xcc, 0xd6, 0x1a, 0x93, 0x52, 0x20, 0xae, 0xa7, 0x46, 0x92, 0x2b, 0x2c, 0x15, 0x35, 0x60, + 0x8a, 0x64, 0x3c, 0x92, 0xe9, 0x64, 0xe3, 0xae, 0x08, 0x3f, 0x88, 0xa8, 0x5c, 0xa8, 0xdc, 0x8b, + 0x54, 0x4b, 0x65, 0xca, 0x43, 0x7f, 0x4a, 0x59, 0xec, 0x53, 0xe6, 0x3f, 0x01, 0xb1, 0x37, 0x43, + 0x50, 0xa3, 0x29, 0xa6, 0xd1, 0xd9, 0xa0, 0x46, 0x93, 0x01, 0x6d, 0xad, 0xa6, 0xd2, 0x29, 0x71, + 0xbc, 0xf8, 0x27, 0x49, 0xc8, 0xbb, 0x9d, 0x2d, 0x4e, 0xa8, 0x54, 0x82, 0x71, 0xd2, 0x35, 0xdc, + 0x28, 0x94, 0xdb, 0x43, 0xfa, 0x38, 0x8f, 0x83, 0x27, 0x5d, 0xc6, 0x05, 0xdb, 0x94, 0x35, 0x0e, + 0xb3, 0x33, 0xff, 0xe7, 0x13, 0x90, 0xa2, 0xe8, 0xe4, 0x01, 0xa4, 0xe8, 0xd4, 0x21, 0x8c, 0x32, + 0x75, 0xd0, 0xac, 0xde, 0x64, 0x97, 0x08, 0x38, 0xb7, 0xc4, 0x53, 0xdc, 0x55, 0xde, 0x7f, 0xf0, + 0x90, 0x9a, 0x9c, 0x29, 0x89, 0x3f, 0xa1, 0x12, 0x0d, 0x8f, 0x32, 0x2d, 0x07, 0x6b, 0x1c, 0x15, + 0x5c, 0x3b, 0xad, 0x7d, 0xdd, 0x69, 0xca, 0xe5, 0x43, 0x97, 0x21, 0x49, 0x6c, 0xd9, 0x24, 0x0b, + 0x9d, 0x38, 0x39, 0x5e, 0x48, 0x12, 0x2b, 0x46, 0x68, 0x68, 0x09, 0xb2, 0x61, 0xc3, 0x41, 0xfc, + 0x3e, 0x6a, 0x1e, 0x03, 0x83, 0x1e, 0x5a, 0xde, 0x00, 0x63, 0x88, 0x98, 0xb7, 0xf1, 0x6f, 0x8c, + 0x43, 0xae, 0xd6, 0x8e, 0x7b, 0x62, 0x59, 0x0e, 0xb7, 0x70, 0x14, 0x94, 0x0a, 0xbd, 0x34, 0xa2, + 0x81, 0x43, 0x73, 0x7a, 0xf2, 0x6c, 0x73, 0x7a, 0x8d, 0xf8, 0xd7, 0xfc, 0x02, 0x8a, 0xe4, 0x00, + 0xd4, 0x14, 0x7e, 0x3f, 0xf5, 0x62, 0x24, 0xc2, 0xe3, 0x9f, 0x0c, 0xa1, 0xe1, 0x2f, 0x9f, 0x50, + 0x37, 0x9e, 0xf5, 0xb2, 0x89, 0xd1, 0x7b, 0xd9, 0x24, 0x36, 0x34, 0x3a, 0xb5, 0x85, 0xed, 0xea, + 0xe4, 0xf9, 0xed, 0xea, 0xfc, 0x1b, 0xde, 0x59, 0x3f, 0x82, 0xa4, 0xa6, 0xbb, 0x8d, 0x33, 0xfa, + 0x84, 0x4d, 0x98, 0x4e, 0xe9, 0xb5, 0xa9, 0x60, 0xaf, 0x0d, 0xae, 0x9e, 0xcc, 0x3f, 0x07, 0xf0, + 0x35, 0x84, 0xae, 0xc1, 0x84, 0xd9, 0xd2, 0xdc, 0x03, 0x32, 0xb9, 0x52, 0xe6, 0xe4, 0x78, 0x61, + 0xfc, 0x79, 0x4b, 0xab, 0xad, 0x48, 0xe3, 0x66, 0x4b, 0xab, 0x69, 0xf4, 0x0e, 0x10, 0x7c, 0x20, + 0x7b, 0xd1, 0x70, 0x53, 0xd2, 0xa4, 0x81, 0x0f, 0x56, 0xb0, 0xad, 0xf6, 0x44, 0xe9, 0x90, 0x2e, + 0xf8, 0x23, 0x01, 0xf2, 0x6e, 0x6b, 0xc4, 0x6b, 0x66, 0xd2, 0x7a, 0x9b, 0x0f, 0xbb, 0xe4, 0xd9, + 0x86, 0x9d, 0xcb, 0xc7, 0x0f, 0x18, 0xff, 0x96, 0xc0, 0x23, 0xa1, 0xeb, 0xaa, 0xe2, 0x10, 0x67, + 0x23, 0xc6, 0xa1, 0x72, 0x0f, 0x44, 0x4b, 0x31, 0x34, 0xb3, 0xad, 0xbf, 0xc1, 0x6c, 0xb9, 0xd5, + 0xe6, 0x3b, 0xa7, 0x05, 0x8f, 0x4e, 0xd7, 0x13, 0xdd, 0xd5, 0xe2, 0x9f, 0x26, 0x78, 0xd4, 0xb4, + 0x57, 0x98, 0x38, 0x95, 0xf6, 0x03, 0x98, 0xee, 0xbd, 0xa2, 0xc5, 0x1d, 0xc5, 0xef, 0x46, 0xc8, + 0x8b, 0x2a, 0x08, 0x8b, 0x72, 0x74, 0xc3, 0xf2, 0x7b, 0xae, 0x6b, 0xb1, 0x51, 0x19, 0xb2, 0xc1, + 0x9b, 0x5f, 0x92, 0x23, 0xdf, 0xfc, 0x02, 0x96, 0x77, 0xdf, 0xcb, 0xfc, 0xaf, 0xc1, 0x38, 0x4d, + 0x3e, 0x87, 0xe9, 0xe6, 0x6d, 0xfa, 0x5f, 0x12, 0x70, 0x93, 0x96, 0xfe, 0x25, 0xb6, 0xf4, 0x9d, + 0xa3, 0x4d, 0xcb, 0x74, 0xb0, 0xea, 0x60, 0xcd, 0x3f, 0xe9, 0x12, 0xab, 0x3d, 0xcc, 0x74, 0xdc, + 0x17, 0x9c, 0x29, 0xba, 0xcd, 0xe3, 0x42, 0x6b, 0x50, 0xe0, 0x91, 0x0a, 0x4a, 0x4b, 0xdf, 0xc7, + 0xb2, 0xe2, 0x9c, 0x65, 0xd6, 0xcb, 0x31, 0xde, 0x65, 0xc2, 0xba, 0xec, 0x20, 0x0d, 0x32, 0x5c, + 0x98, 0xae, 0xf1, 0x6b, 0x8b, 0x9e, 0x7e, 0xb5, 0xa5, 0xca, 0x34, 0x0b, 0x97, 0xa8, 0xad, 0x48, + 0x69, 0x26, 0xd9, 0xdb, 0x6a, 0xfa, 0x23, 0x01, 0x6e, 0x9d, 0xa2, 0xe8, 0x38, 0x3b, 0xf0, 0x3c, + 0xa4, 0xf7, 0xc9, 0x8b, 0x74, 0xae, 0xe9, 0xb4, 0xe4, 0x3d, 0xa3, 0x75, 0xc8, 0xed, 0x28, 0x7a, + 0xcb, 0xef, 0xd8, 0x83, 0x43, 0x22, 0xa3, 0x23, 0x75, 0xa7, 0x18, 0x3b, 0xeb, 0xc9, 0xc5, 0x1f, + 0x25, 0x60, 0x7a, 0x59, 0xd3, 0xea, 0x75, 0x6e, 0x1b, 0xe3, 0xeb, 0x2f, 0x2e, 0x28, 0x4d, 0xf8, + 0xa0, 0x14, 0xbd, 0x0b, 0x48, 0xd3, 0x6d, 0x76, 0x25, 0x8a, 0xbd, 0xab, 0x68, 0xe6, 0x81, 0x1f, + 0xec, 0x31, 0xed, 0xa6, 0xd4, 0xdd, 0x04, 0x54, 0x07, 0x8a, 0x88, 0x64, 0xdb, 0x51, 0xbc, 0xfd, + 0xaa, 0x5b, 0x23, 0x1d, 0x4c, 0x63, 0x50, 0xc9, 0x7b, 0x94, 0x32, 0x44, 0x0e, 0xfd, 0x49, 0x7c, + 0x7b, 0x9d, 0x54, 0xdd, 0x91, 0x15, 0xdb, 0x3d, 0x85, 0xc4, 0x2e, 0x63, 0xc9, 0x33, 0xfa, 0xb2, + 0x1d, 0x3c, 0x5c, 0xc4, 0x0e, 0x49, 0xf8, 0x0a, 0x8a, 0x13, 0x42, 0xff, 0x7d, 0x01, 0xf2, 0x12, + 0xde, 0xb1, 0xb0, 0x1d, 0xeb, 0x52, 0xc2, 0x13, 0x98, 0xb2, 0x98, 0x54, 0x79, 0xc7, 0x32, 0xdb, + 0x67, 0x19, 0x63, 0x59, 0xce, 0xf8, 0xc4, 0x32, 0xdb, 0xa1, 0xfb, 0x29, 0x5e, 0x42, 0xc1, 0x2b, + 0x69, 0x9c, 0x2a, 0xf8, 0x09, 0x3d, 0x8c, 0xcd, 0x04, 0xc7, 0x1d, 0x75, 0xf1, 0x75, 0xe8, 0x81, + 0x6e, 0x90, 0x05, 0x8b, 0x1b, 0xa7, 0x32, 0xfe, 0x9b, 0x00, 0xf9, 0x7a, 0x77, 0x9b, 0xdd, 0xc8, + 0x15, 0x9f, 0x1e, 0x2a, 0x90, 0x69, 0xe1, 0x1d, 0x47, 0x3e, 0x57, 0x60, 0x7f, 0x9a, 0xb0, 0xd2, + 0xc3, 0x0d, 0x4f, 0x01, 0x2c, 0x7a, 0x74, 0x8f, 0xca, 0x49, 0x9e, 0x51, 0x4e, 0x86, 0xf2, 0xfa, + 0xee, 0x53, 0xf1, 0x27, 0x09, 0x28, 0x78, 0x95, 0x8d, 0xd3, 0x7a, 0xbe, 0x0a, 0x59, 0x8d, 0xe4, + 0x59, 0xac, 0xc6, 0x34, 0x0f, 0x3a, 0x89, 0xb6, 0x1c, 0x8b, 0x30, 0x43, 0x9d, 0x1b, 0x59, 0xe9, + 0x74, 0x5a, 0xba, 0x0b, 0x92, 0xa9, 0x5d, 0x4a, 0x49, 0xd3, 0x34, 0x69, 0x99, 0xa5, 0x50, 0x78, + 0x4c, 0xfa, 0xdf, 0x8e, 0x85, 0xf1, 0x1b, 0x2c, 0x53, 0xbc, 0x76, 0x96, 0xa0, 0x9a, 0x2c, 0x63, + 0xac, 0x13, 0x3e, 0xde, 0xf3, 0xbe, 0x0f, 0xd3, 0x54, 0xb3, 0x71, 0x1f, 0x3f, 0xe6, 0xcd, 0xf1, + 0x3b, 0x09, 0x40, 0x41, 0xf9, 0x5f, 0x5f, 0x8b, 0x24, 0xe2, 0x6b, 0x91, 0x77, 0x00, 0xb1, 0x40, + 0x4b, 0x5b, 0xee, 0x60, 0x4b, 0xb6, 0xb1, 0x6a, 0xf2, 0x7b, 0xa2, 0x04, 0x49, 0xe4, 0x29, 0x9b, + 0xd8, 0xaa, 0x53, 0x3a, 0x7a, 0x0c, 0xe0, 0x7b, 0x6d, 0x7c, 0x3a, 0x19, 0xea, 0xb4, 0x49, 0x19, + 0xcf, 0x5d, 0x2b, 0x7e, 0x3e, 0x0f, 0x53, 0x5c, 0x93, 0x5b, 0x86, 0x6e, 0x1a, 0xe8, 0x01, 0x24, + 0x9b, 0x7c, 0x9b, 0x21, 0x1b, 0xb9, 0xd0, 0xe7, 0x5f, 0x8d, 0x57, 0x1d, 0x93, 0x48, 0x5e, 0xc2, + 0xd2, 0xe9, 0x3a, 0x11, 0xce, 0x93, 0x1f, 0x4e, 0x1e, 0x64, 0xe9, 0x74, 0x1d, 0x54, 0x87, 0x82, + 0xea, 0x5f, 0xf4, 0x25, 0x13, 0xf6, 0xe4, 0x40, 0x00, 0x16, 0x79, 0xc1, 0x5a, 0x75, 0x4c, 0xca, + 0xab, 0xa1, 0x04, 0x54, 0x0e, 0xde, 0x2c, 0x95, 0xea, 0x8b, 0x46, 0xf3, 0xcf, 0x39, 0x87, 0x6f, + 0xb5, 0xaa, 0x8e, 0x05, 0x2e, 0xa0, 0x42, 0x1f, 0xc1, 0x84, 0x46, 0x6f, 0x2c, 0xe2, 0xfd, 0x3a, + 0xaa, 0xeb, 0x85, 0x2e, 0x89, 0xaa, 0x8e, 0x49, 0x9c, 0x03, 0xad, 0xc2, 0x14, 0xfb, 0xc5, 0x9c, + 0x18, 0x8e, 0x4a, 0x6f, 0x0d, 0x96, 0x10, 0x98, 0x1a, 0xaa, 0x63, 0x52, 0x56, 0xf3, 0xa9, 0xe8, + 0xdb, 0x90, 0xb2, 0x55, 0xc5, 0xc5, 0xa5, 0x57, 0x07, 0x5c, 0x36, 0xe2, 0x33, 0xd3, 0xdc, 0xe8, + 0x31, 0xbb, 0xf2, 0xd2, 0x39, 0x74, 0x17, 0x0a, 0xa3, 0x8a, 0x1f, 0x3a, 0xc2, 0x4e, 0x8a, 0x8f, + 0x29, 0x01, 0x3d, 0x85, 0xac, 0x42, 0xbc, 0x41, 0x99, 0x1e, 0xf9, 0xa4, 0x2b, 0x83, 0xd1, 0x1b, + 0xfc, 0x7d, 0xc7, 0x75, 0xab, 0xf4, 0x9c, 0xbc, 0x4b, 0xf4, 0x05, 0xb5, 0xb1, 0xd5, 0xc4, 0x73, + 0xd9, 0xe1, 0x82, 0x82, 0xd1, 0x67, 0x9e, 0x20, 0x4a, 0x24, 0x5e, 0xa1, 0x77, 0x02, 0x9b, 0x56, + 0x6a, 0x6a, 0xe0, 0x66, 0x72, 0xc4, 0x71, 0xa4, 0xea, 0x98, 0x34, 0xb5, 0x1b, 0x20, 0xa3, 0x45, + 0x48, 0x34, 0xd5, 0xb9, 0xdc, 0xc0, 0x11, 0xe2, 0x1d, 0xb6, 0xa9, 0x8e, 0x49, 0x89, 0xa6, 0x8a, + 0x3e, 0x81, 0x34, 0x3b, 0x2d, 0x71, 0x68, 0xcc, 0xe5, 0x07, 0xda, 0x89, 0xf0, 0x99, 0x93, 0xea, + 0x98, 0x44, 0x0f, 0x68, 0x90, 0xf7, 0x6d, 0x42, 0xde, 0x62, 0xe1, 0x7b, 0x6e, 0xe0, 0xad, 0x38, + 0x70, 0x83, 0x3d, 0x2a, 0xf6, 0xb6, 0x4a, 0xd1, 0x41, 0x80, 0x8e, 0x7e, 0x00, 0xb3, 0x61, 0x89, + 0xbc, 0xa7, 0x4d, 0x0f, 0xdc, 0x2c, 0x1e, 0x18, 0x01, 0x5a, 0x1d, 0x93, 0x90, 0xd5, 0x97, 0x88, + 0x3e, 0x80, 0x71, 0xd6, 0x6a, 0x88, 0x8a, 0x8c, 0x8a, 0x1c, 0xe9, 0x69, 0x30, 0x96, 0x9f, 0x74, + 0x7e, 0x87, 0xc7, 0xad, 0xc9, 0x2d, 0xb3, 0x39, 0x37, 0x33, 0xb0, 0xf3, 0xf7, 0xc7, 0xe1, 0x91, + 0xce, 0xef, 0xf8, 0x54, 0xd2, 0xee, 0x16, 0x4b, 0xe1, 0x61, 0x4e, 0xb3, 0x03, 0xdb, 0x3d, 0x22, + 0x9c, 0xad, 0x4a, 0x4f, 0x1d, 0xf8, 0x64, 0x52, 0x34, 0x8b, 0xdd, 0x8c, 0x23, 0xd3, 0x31, 0x75, + 0x61, 0x60, 0xd1, 0xfa, 0x2f, 0x10, 0xaa, 0x52, 0xaf, 0xc9, 0xa3, 0xa2, 0x97, 0x20, 0xf2, 0x3b, + 0x2b, 0xfc, 0x5d, 0x89, 0x8b, 0x54, 0xde, 0xbd, 0x48, 0xd3, 0x15, 0x15, 0x17, 0x54, 0x1d, 0x93, + 0x0a, 0x6a, 0x38, 0x05, 0x7d, 0x0a, 0xd3, 0x54, 0x9e, 0xac, 0xfa, 0x97, 0x8d, 0xcc, 0xcd, 0xf5, + 0x5d, 0x5a, 0x31, 0xf8, 0x5e, 0x12, 0x57, 0xb2, 0xa8, 0xf6, 0x24, 0x91, 0x6e, 0xac, 0x1b, 0xba, + 0x43, 0xad, 0xec, 0xfc, 0xc0, 0x6e, 0x1c, 0xbe, 0x18, 0x91, 0x74, 0x63, 0x9d, 0x51, 0x48, 0x37, + 0x76, 0x78, 0x0c, 0x1c, 0x6f, 0x8e, 0xb7, 0x06, 0x76, 0xe3, 0xa8, 0x60, 0x39, 0xd2, 0x8d, 0x9d, + 0x20, 0x9d, 0x74, 0x63, 0x66, 0x20, 0x7a, 0xe4, 0xbe, 0x3d, 0xb0, 0x1b, 0x0f, 0x3c, 0x74, 0x4d, + 0xba, 0xb1, 0xd2, 0x97, 0x88, 0x56, 0x00, 0x98, 0x53, 0x43, 0x27, 0xc5, 0xab, 0x03, 0x27, 0x83, + 0xde, 0x28, 0x38, 0x32, 0x19, 0xb4, 0x5c, 0x1a, 0x31, 0x64, 0x14, 0x4a, 0xc9, 0x74, 0x8b, 0x76, + 0x6e, 0x61, 0xa0, 0x21, 0xeb, 0xdb, 0x3c, 0x25, 0x86, 0xec, 0xc0, 0x23, 0x92, 0x59, 0x85, 0xad, + 0x17, 0xcf, 0x5d, 0x1b, 0x6c, 0x96, 0x83, 0x9b, 0x47, 0xd4, 0x2c, 0x53, 0x02, 0x5a, 0x86, 0x0c, + 0x99, 0xf3, 0x8f, 0xa8, 0x19, 0xba, 0x3e, 0xd0, 0x3f, 0xed, 0x39, 0x56, 0x53, 0x1d, 0x93, 0xd2, + 0xaf, 0x39, 0x89, 0xbc, 0x9e, 0xad, 0x9b, 0xcd, 0x15, 0x07, 0xbe, 0x3e, 0xb4, 0xea, 0x4a, 0x5e, + 0xcf, 0x38, 0x90, 0x0a, 0x17, 0x58, 0x5b, 0xf1, 0x33, 0xcf, 0x16, 0x3f, 0xa0, 0x3b, 0x77, 0x83, + 0x8a, 0x1a, 0xb8, 0xf4, 0x14, 0x79, 0x14, 0xbb, 0x3a, 0x26, 0xcd, 0x28, 0xfd, 0xa9, 0x64, 0xc0, + 0xf3, 0xa9, 0x87, 0x2d, 0x58, 0xcd, 0xdd, 0x1c, 0x38, 0xe0, 0x23, 0x56, 0xfb, 0xc8, 0x80, 0x57, + 0x02, 0x64, 0x36, 0x01, 0x69, 0xb2, 0x6d, 0xb3, 0x0d, 0xfd, 0x5b, 0x43, 0x26, 0xa0, 0x9e, 0x35, + 0x02, 0x36, 0x01, 0x69, 0x75, 0xc6, 0x49, 0x04, 0xa9, 0x2d, 0xac, 0x58, 0xdc, 0xcc, 0xde, 0x1e, + 0x28, 0xa8, 0xef, 0xae, 0x41, 0x22, 0x48, 0xf5, 0x88, 0xc4, 0xe1, 0xb1, 0xdc, 0xcb, 0x6e, 0xb8, + 0xc3, 0x78, 0x67, 0xa0, 0xc3, 0x13, 0x79, 0x27, 0x0f, 0x71, 0x78, 0xac, 0x50, 0x02, 0xfa, 0x55, + 0x98, 0xe4, 0x80, 0x6e, 0xee, 0xee, 0x10, 0x37, 0x36, 0x88, 0xc4, 0xc9, 0xb8, 0xe6, 0x3c, 0xcc, + 0xca, 0x32, 0x20, 0xc9, 0xaa, 0x77, 0x6f, 0x88, 0x95, 0xed, 0xc3, 0xb2, 0xcc, 0xca, 0xfa, 0x64, + 0x62, 0x65, 0x59, 0x3f, 0xe5, 0x73, 0xdd, 0xfd, 0x81, 0x56, 0xb6, 0xff, 0xb8, 0x0e, 0xb1, 0xb2, + 0xaf, 0x7d, 0x2a, 0xa9, 0x99, 0xcd, 0x40, 0xd4, 0xdc, 0xb7, 0x06, 0xd6, 0x2c, 0x8c, 0x29, 0x49, + 0xcd, 0x38, 0x0f, 0x69, 0x36, 0xe6, 0x12, 0x33, 0x4d, 0xbf, 0x33, 0xf8, 0x7a, 0x81, 0x5e, 0xe8, + 0x51, 0x75, 0x17, 0x33, 0x99, 0x86, 0x3d, 0x43, 0x65, 0xf1, 0xc3, 0xd4, 0x5c, 0x53, 0xef, 0x0e, + 0x37, 0x54, 0x51, 0xe7, 0xc4, 0x3d, 0x43, 0x15, 0x4a, 0xa4, 0x45, 0x65, 0x27, 0xe4, 0xe8, 0xf8, + 0x5e, 0x1c, 0x72, 0x13, 0x42, 0xcf, 0x69, 0x45, 0x5a, 0x54, 0x8f, 0xe8, 0x0f, 0xa1, 0x2e, 0xbb, + 0xb2, 0x63, 0x6e, 0x69, 0xf8, 0x10, 0x0a, 0x5f, 0x1d, 0xe2, 0x0d, 0x21, 0x4e, 0xf6, 0xe6, 0x4c, + 0xd7, 0xc3, 0x78, 0x6f, 0xf8, 0x9c, 0xd9, 0xeb, 0x5a, 0xb0, 0x39, 0x93, 0xfb, 0x14, 0x7f, 0x41, + 0x80, 0x6b, 0xac, 0x6c, 0x74, 0xbd, 0xef, 0x48, 0xf6, 0xd6, 0x4e, 0x03, 0x67, 0x33, 0x1e, 0xd0, + 0x17, 0x7c, 0x30, 0xa8, 0xb8, 0xa7, 0xac, 0x05, 0x57, 0xc7, 0xa4, 0xb7, 0x95, 0x61, 0xf9, 0x4a, + 0x93, 0x7c, 0x4b, 0xd5, 0x3b, 0xa4, 0x5a, 0x10, 0xc5, 0xd5, 0x54, 0xfa, 0x92, 0x38, 0xb7, 0x9a, + 0x4a, 0x5f, 0x16, 0xe7, 0x57, 0x53, 0xe9, 0x2b, 0xe2, 0x5b, 0xc5, 0xff, 0x7e, 0x19, 0x72, 0x2e, + 0xf2, 0x63, 0x88, 0xe8, 0x61, 0x10, 0x11, 0x5d, 0x1d, 0x84, 0x88, 0x38, 0x56, 0xe4, 0x90, 0xe8, + 0x61, 0x10, 0x12, 0x5d, 0x1d, 0x04, 0x89, 0x7c, 0x1e, 0x82, 0x89, 0x1a, 0x83, 0x30, 0xd1, 0xbd, + 0x11, 0x30, 0x91, 0x27, 0xaa, 0x17, 0x14, 0xad, 0xf4, 0x83, 0xa2, 0x9b, 0xc3, 0x41, 0x91, 0x27, + 0x2a, 0x80, 0x8a, 0x1e, 0xf7, 0xa0, 0xa2, 0xeb, 0x43, 0x50, 0x91, 0xc7, 0xef, 0xc2, 0xa2, 0xb5, + 0x48, 0x58, 0x74, 0xfb, 0x34, 0x58, 0xe4, 0xc9, 0x09, 0xe1, 0xa2, 0xf7, 0x43, 0xb8, 0x68, 0x61, + 0x20, 0x2e, 0xf2, 0xb8, 0x19, 0x30, 0xfa, 0xb8, 0x17, 0x18, 0x5d, 0x1f, 0x02, 0x8c, 0xfc, 0x1a, + 0x70, 0x64, 0x54, 0x8d, 0x42, 0x46, 0xb7, 0x4e, 0x41, 0x46, 0x9e, 0x94, 0x20, 0x34, 0xaa, 0x46, + 0x41, 0xa3, 0x5b, 0xa7, 0x40, 0xa3, 0x1e, 0x49, 0x0c, 0x1b, 0x6d, 0x44, 0x63, 0xa3, 0x3b, 0xa7, + 0x62, 0x23, 0x4f, 0x5a, 0x18, 0x1c, 0x2d, 0x05, 0xc0, 0xd1, 0xdb, 0x03, 0xc0, 0x91, 0xc7, 0x4a, + 0xd0, 0xd1, 0x77, 0xfa, 0xd0, 0x51, 0x71, 0x18, 0x3a, 0xf2, 0x78, 0x3d, 0x78, 0xf4, 0x62, 0x00, + 0x3c, 0xba, 0x7b, 0x3a, 0x3c, 0xf2, 0x84, 0xf5, 0xe0, 0x23, 0x65, 0x28, 0x3e, 0x7a, 0x77, 0x44, + 0x7c, 0xe4, 0x49, 0x8f, 0x02, 0x48, 0x1f, 0x86, 0x01, 0xd2, 0xb5, 0xc1, 0x00, 0xc9, 0x13, 0xc3, + 0x11, 0xd2, 0x5a, 0x24, 0x42, 0xba, 0x7d, 0x1a, 0x42, 0xf2, 0xc7, 0x41, 0x10, 0x22, 0x6d, 0x44, + 0x43, 0xa4, 0x3b, 0xa7, 0x42, 0x24, 0xbf, 0xf9, 0x43, 0x18, 0x69, 0x2d, 0x12, 0x23, 0xdd, 0x3e, + 0x0d, 0x23, 0xf9, 0x85, 0x0b, 0x82, 0xa4, 0x57, 0x03, 0x41, 0xd2, 0xfd, 0x51, 0x40, 0x92, 0x27, + 0xb4, 0x0f, 0x25, 0x7d, 0x36, 0x18, 0x25, 0x7d, 0xeb, 0x0c, 0xb7, 0x37, 0x46, 0xc2, 0xa4, 0xef, + 0xf4, 0xc1, 0xa4, 0xe2, 0x30, 0x98, 0xe4, 0xf7, 0x67, 0x17, 0x27, 0x29, 0x43, 0x51, 0xcd, 0xbb, + 0x23, 0xa2, 0x1a, 0xbf, 0xf3, 0x45, 0xc0, 0x9a, 0x4a, 0x04, 0xac, 0xb9, 0x39, 0x1c, 0xd6, 0xf8, + 0xe6, 0xdc, 0xc7, 0x35, 0xd5, 0x28, 0x5c, 0x73, 0xeb, 0x14, 0x5c, 0xe3, 0x5b, 0xa1, 0x00, 0xb0, + 0x79, 0xdc, 0x03, 0x6c, 0xae, 0x9f, 0x1a, 0x31, 0x14, 0x40, 0x36, 0xa5, 0x7e, 0x64, 0x73, 0x63, + 0x28, 0xb2, 0xf1, 0x24, 0xf8, 0xd0, 0xe6, 0x71, 0x0f, 0xb4, 0xb9, 0x3e, 0x04, 0xda, 0xf8, 0x05, + 0xe0, 0xd8, 0x46, 0x1b, 0x8e, 0x6d, 0x16, 0x47, 0xc5, 0x36, 0x9e, 0xe0, 0x48, 0x70, 0xb3, 0x11, + 0x0d, 0x6e, 0xee, 0x8c, 0xb8, 0x69, 0xdf, 0x87, 0x6e, 0xaa, 0x51, 0xe8, 0xe6, 0xd6, 0x29, 0xe8, + 0x26, 0x38, 0x87, 0x78, 0xf0, 0xa6, 0x1a, 0x05, 0x6f, 0x6e, 0x9d, 0x02, 0x6f, 0x7c, 0x49, 0x01, + 0x7c, 0xd3, 0x18, 0x84, 0x6f, 0xee, 0x8d, 0x80, 0x6f, 0x7c, 0xe7, 0xa5, 0x07, 0xe0, 0x7c, 0xd2, + 0x0b, 0x70, 0x8a, 0xc3, 0x00, 0x8e, 0x3f, 0x22, 0x5d, 0x84, 0xb3, 0x11, 0x8d, 0x70, 0xee, 0x9c, + 0x8a, 0x70, 0x82, 0x46, 0x32, 0x00, 0x71, 0xd6, 0x22, 0x21, 0xce, 0xed, 0xd3, 0x20, 0x8e, 0x6f, + 0x24, 0x83, 0x18, 0xe7, 0x93, 0x5e, 0x8c, 0x53, 0x1c, 0x86, 0x71, 0xfc, 0xca, 0xb9, 0x20, 0xa7, + 0x1a, 0x05, 0x72, 0x6e, 0x9d, 0x02, 0x72, 0xfc, 0xc6, 0x0b, 0xa0, 0x1c, 0x65, 0x28, 0xca, 0x79, + 0x77, 0x44, 0x94, 0xd3, 0x63, 0xb8, 0xc2, 0x30, 0xa7, 0x1a, 0x05, 0x73, 0x6e, 0x9d, 0x02, 0x73, + 0x02, 0x85, 0xf5, 0x71, 0xce, 0x46, 0x34, 0xce, 0xb9, 0x73, 0x2a, 0xce, 0xe9, 0x19, 0x4d, 0x2e, + 0xd0, 0x59, 0x8b, 0x04, 0x3a, 0xb7, 0x4f, 0x03, 0x3a, 0x3d, 0x13, 0x1f, 0x77, 0x0e, 0xfe, 0xe2, + 0xe8, 0x48, 0xe7, 0xc3, 0xb3, 0x23, 0x1d, 0xef, 0x9d, 0xb1, 0x40, 0x9d, 0xd5, 0x54, 0xfa, 0x2d, + 0xf1, 0xed, 0xe2, 0x5f, 0x9e, 0x84, 0x89, 0xaa, 0x17, 0x0b, 0xe3, 0x97, 0x52, 0x38, 0xcf, 0x4d, + 0x4f, 0x68, 0x85, 0x8c, 0x58, 0x6a, 0xf7, 0x4e, 0xbf, 0xd4, 0xaf, 0xff, 0xc2, 0x39, 0xce, 0x7a, + 0x8e, 0xc3, 0xd3, 0xe8, 0x7d, 0xc8, 0x75, 0x6d, 0x6c, 0xc9, 0x1d, 0x4b, 0x37, 0x2d, 0xdd, 0x61, + 0x67, 0x45, 0x84, 0x92, 0xf8, 0xe5, 0xf1, 0xc2, 0xd4, 0x96, 0x8d, 0xad, 0x4d, 0x4e, 0x97, 0xa6, + 0xba, 0x81, 0x27, 0xf7, 0xf3, 0x5b, 0xe3, 0xa3, 0x7f, 0x7e, 0xeb, 0x05, 0x88, 0x16, 0x56, 0xb4, + 0x90, 0x07, 0xc2, 0x6e, 0x52, 0x8a, 0xee, 0x33, 0xf4, 0x8c, 0x97, 0x9b, 0x93, 0xde, 0xa8, 0x54, + 0xb0, 0xc2, 0x44, 0xf4, 0x00, 0x2e, 0xb4, 0x95, 0x43, 0x1a, 0x4f, 0x29, 0xbb, 0x4e, 0x1d, 0x8d, + 0x91, 0x64, 0x5f, 0xb6, 0x42, 0x6d, 0xe5, 0x90, 0x7e, 0xcb, 0x8b, 0x25, 0xd1, 0x8f, 0x6f, 0xdc, + 0x82, 0xbc, 0xa6, 0xdb, 0x8e, 0x6e, 0xa8, 0x0e, 0xbf, 0x83, 0x97, 0xdd, 0x5f, 0x9b, 0x73, 0xa9, + 0xec, 0xa2, 0xdd, 0xfb, 0x30, 0xcd, 0xc3, 0xed, 0x03, 0x5b, 0x84, 0xfc, 0x1e, 0x5b, 0x96, 0xe0, + 0xed, 0x0a, 0xa2, 0x32, 0x14, 0x9a, 0x8a, 0x83, 0x0f, 0x94, 0x23, 0xd9, 0x3d, 0x08, 0x96, 0xa5, + 0x57, 0x50, 0x5e, 0x39, 0x39, 0x5e, 0xc8, 0x3d, 0x65, 0x49, 0x7d, 0xe7, 0xc1, 0x72, 0xcd, 0x40, + 0x82, 0x86, 0xee, 0x40, 0x41, 0xb1, 0x8f, 0x0c, 0x95, 0xaa, 0x07, 0x1b, 0x76, 0xd7, 0xa6, 0x90, + 0x22, 0x2d, 0xe5, 0x29, 0xb9, 0xec, 0x52, 0xd1, 0x75, 0x98, 0xe2, 0xb1, 0xe8, 0xec, 0x83, 0x40, + 0x05, 0x5a, 0x55, 0xfe, 0x75, 0x09, 0xfa, 0x4d, 0x20, 0xf4, 0x18, 0xe6, 0xf9, 0xad, 0xfb, 0x07, + 0x8a, 0xa5, 0xc9, 0x54, 0xeb, 0x7e, 0xff, 0x14, 0xa9, 0xd8, 0x4b, 0xec, 0x96, 0x7d, 0x92, 0x81, + 0xa8, 0xda, 0xbf, 0xb1, 0x61, 0x03, 0xa6, 0xd5, 0x96, 0xee, 0x21, 0x00, 0x56, 0xf3, 0xe9, 0x81, + 0x76, 0xb6, 0x4c, 0xf3, 0xfa, 0x5b, 0xa4, 0x05, 0x35, 0x4c, 0x40, 0x75, 0xa0, 0x37, 0xd4, 0xc8, + 0x1d, 0xb3, 0xa5, 0xab, 0x47, 0xd4, 0xf9, 0x0f, 0xdf, 0x18, 0x3e, 0xf4, 0x0e, 0xff, 0x57, 0x8a, + 0xee, 0x6c, 0x52, 0x4e, 0x09, 0x0e, 0xbc, 0xdf, 0xec, 0x86, 0xdf, 0xd5, 0x54, 0x7a, 0x4a, 0xcc, + 0xad, 0xa6, 0xd2, 0x79, 0xb1, 0x50, 0xfc, 0xeb, 0x02, 0x14, 0x7a, 0xca, 0x82, 0xaa, 0x70, 0x41, + 0xf3, 0x86, 0x8a, 0xcc, 0x8f, 0x32, 0xe9, 0xa6, 0xc1, 0x2f, 0x41, 0x9f, 0xf9, 0xf2, 0x78, 0xa1, + 0x40, 0x73, 0x3f, 0xf5, 0x92, 0xa4, 0x59, 0x9f, 0xc3, 0xa7, 0xa2, 0x0f, 0x21, 0xcf, 0xdc, 0x47, + 0xef, 0xab, 0x77, 0x34, 0xbe, 0xbc, 0x34, 0xfd, 0xe5, 0xf1, 0x42, 0x8e, 0xfa, 0x8c, 0xee, 0xf5, + 0xc4, 0x52, 0xae, 0x15, 0x7c, 0x2c, 0xfe, 0x35, 0x01, 0xa6, 0x42, 0x87, 0x83, 0x1e, 0xf7, 0xec, + 0xa0, 0x5f, 0x8e, 0xc6, 0x9d, 0x83, 0x82, 0xee, 0xd2, 0xbc, 0x9f, 0xbb, 0x11, 0x8c, 0x0b, 0x83, + 0x71, 0x0b, 0x5d, 0x85, 0x71, 0xc3, 0x36, 0x5c, 0xb6, 0x8f, 0x52, 0x7f, 0xf3, 0x8b, 0x85, 0xb1, + 0xe2, 0x3f, 0x49, 0x41, 0x2e, 0x7c, 0x08, 0xa8, 0xd6, 0x53, 0xae, 0xa8, 0x79, 0x21, 0xc4, 0xb1, + 0x38, 0xe4, 0x52, 0xc6, 0x8c, 0xff, 0xcd, 0x01, 0x56, 0xcc, 0x6b, 0x43, 0xe2, 0x04, 0x82, 0xe5, + 0xf4, 0x19, 0xe7, 0x3f, 0x4f, 0x7a, 0xf6, 0x75, 0x11, 0xc6, 0xe9, 0xd5, 0x3f, 0xbc, 0x68, 0x51, + 0x87, 0xd7, 0x2b, 0x24, 0x5d, 0x62, 0xd9, 0x88, 0x3d, 0x6e, 0x9c, 0xeb, 0xe6, 0x3d, 0x7f, 0x18, + 0x9c, 0xfd, 0xf3, 0x82, 0xfc, 0xfe, 0xc5, 0xf1, 0xb3, 0xdd, 0xbf, 0x88, 0xbe, 0x0f, 0x05, 0xd5, + 0x6c, 0xb5, 0xd8, 0x5c, 0xc7, 0x2c, 0x52, 0xff, 0x0d, 0x29, 0x54, 0x04, 0xff, 0xee, 0xe3, 0xa2, + 0xf7, 0xfd, 0xc7, 0x45, 0x89, 0x7f, 0xff, 0x31, 0x10, 0x0f, 0x9a, 0xf7, 0x84, 0x31, 0x43, 0xd6, + 0x13, 0x9a, 0x3a, 0x79, 0x9e, 0xd0, 0x54, 0x16, 0xd4, 0xcc, 0x7b, 0xce, 0xbf, 0x13, 0x78, 0x60, + 0xc8, 0x33, 0xd3, 0xdc, 0xeb, 0x7a, 0x21, 0xa5, 0xf3, 0xc1, 0x7b, 0x10, 0xd3, 0x5f, 0x1e, 0x2f, + 0xa4, 0x24, 0xef, 0x22, 0xc4, 0x28, 0xcb, 0x9f, 0xf8, 0x6a, 0x96, 0xff, 0x3a, 0x4c, 0x75, 0x2c, + 0xbc, 0x83, 0x1d, 0x75, 0x57, 0x36, 0xba, 0x6d, 0x7e, 0x22, 0x25, 0xeb, 0xd2, 0x36, 0xba, 0x6d, + 0x74, 0x0f, 0x44, 0x2f, 0x0b, 0xc7, 0xd8, 0xee, 0x55, 0x58, 0x2e, 0x9d, 0x23, 0xf2, 0xe2, 0x9f, + 0x0a, 0x30, 0x13, 0xaa, 0x13, 0x1f, 0x13, 0xab, 0x90, 0xf5, 0xcd, 0x81, 0x3d, 0x27, 0x9c, 0x31, + 0xb4, 0x32, 0xc8, 0x8c, 0x64, 0xb8, 0xe8, 0xbe, 0x96, 0xde, 0xad, 0xef, 0x8b, 0x4d, 0x9c, 0x51, + 0xec, 0x05, 0x5f, 0xce, 0x4a, 0xe0, 0x05, 0xde, 0x20, 0x49, 0x8e, 0x34, 0x48, 0x8a, 0x3f, 0x12, + 0x40, 0xa4, 0x2f, 0x78, 0x82, 0xb1, 0x16, 0x8b, 0x75, 0x72, 0x03, 0x97, 0x13, 0xa3, 0x9f, 0x39, + 0x09, 0x7d, 0x1b, 0x24, 0x19, 0xfe, 0x36, 0x48, 0xf1, 0x0b, 0x01, 0xf2, 0x5e, 0x09, 0xd9, 0x77, + 0xf5, 0x86, 0x5c, 0xb7, 0x79, 0xbe, 0xaf, 0xc9, 0xb9, 0xb7, 0x82, 0x8c, 0xf4, 0xa9, 0xbf, 0xe0, + 0xad, 0x20, 0xec, 0xcb, 0x67, 0x7f, 0xdb, 0xed, 0x39, 0xa4, 0x88, 0x65, 0xff, 0xc6, 0x87, 0x73, + 0x1c, 0xbf, 0x91, 0xe8, 0xe7, 0x49, 0xcd, 0xd6, 0x3e, 0xbb, 0x8e, 0x65, 0x24, 0xb3, 0x85, 0x78, + 0x38, 0x14, 0xf0, 0xd5, 0x38, 0xad, 0x51, 0xa7, 0x1f, 0x2e, 0x65, 0xbf, 0xed, 0xe2, 0x93, 0x80, + 0x02, 0x69, 0xe3, 0x13, 0x2d, 0x8d, 0x64, 0x4a, 0x5d, 0x2d, 0xb1, 0xbe, 0xf2, 0x87, 0xc1, 0x96, + 0xa8, 0xec, 0x13, 0x14, 0xf6, 0x08, 0x92, 0xfb, 0x4a, 0x6b, 0x58, 0x18, 0x58, 0xa8, 0xe5, 0x24, + 0x92, 0x1b, 0x3d, 0x09, 0x5d, 0x94, 0x91, 0x18, 0x8c, 0x18, 0xfa, 0x55, 0x1a, 0xba, 0x50, 0xe3, + 0x83, 0x70, 0x5f, 0x1f, 0xfa, 0xfa, 0x60, 0xa7, 0xff, 0x28, 0xf5, 0xb3, 0x2f, 0x16, 0x84, 0xe2, + 0x8f, 0x05, 0xb8, 0xb8, 0x65, 0xd8, 0xca, 0x0e, 0xae, 0x62, 0xa5, 0x15, 0x0a, 0x34, 0x75, 0x2f, + 0x3c, 0x16, 0xce, 0x73, 0xe1, 0x31, 0xba, 0x11, 0xbe, 0x0b, 0x60, 0xbc, 0x04, 0x27, 0x7d, 0x37, + 0x00, 0xa0, 0xdb, 0x90, 0xb6, 0x1d, 0xd3, 0xf2, 0x9c, 0xf4, 0xf1, 0x52, 0xf6, 0x24, 0x70, 0x57, + 0x39, 0x3d, 0x86, 0x8a, 0x6b, 0x5a, 0xf1, 0x32, 0x5c, 0xea, 0x2b, 0x24, 0x33, 0x4c, 0xc5, 0x0f, + 0xe0, 0xf2, 0x53, 0xd3, 0xb6, 0xf5, 0x0e, 0x81, 0xb9, 0xb4, 0x20, 0x64, 0x1a, 0xf2, 0x4c, 0x71, + 0xba, 0x43, 0x17, 0x3c, 0x0c, 0x66, 0xb2, 0x32, 0x92, 0xf7, 0x5c, 0xfc, 0x17, 0x02, 0x5c, 0xea, + 0xe7, 0x64, 0x2d, 0x1a, 0x75, 0x3e, 0x71, 0x52, 0x35, 0xfd, 0x9b, 0xef, 0x4e, 0x1f, 0x19, 0x6e, + 0x76, 0xe2, 0xce, 0xf2, 0x77, 0xca, 0x6d, 0x85, 0x9a, 0x2a, 0x7e, 0x86, 0x3a, 0xcf, 0xc9, 0xeb, + 0x8c, 0xea, 0x5b, 0xad, 0xd4, 0x68, 0x56, 0xab, 0x01, 0x85, 0x55, 0x53, 0x37, 0x88, 0x4a, 0xdd, + 0xfa, 0x2e, 0x43, 0x7e, 0x5b, 0x37, 0x14, 0xeb, 0x48, 0x76, 0x0f, 0xa8, 0xb3, 0xc6, 0x9b, 0x8f, + 0x2a, 0x2c, 0xcb, 0x21, 0xe5, 0x18, 0x07, 0x7f, 0x2c, 0xfe, 0x5c, 0x00, 0xd1, 0x17, 0xcb, 0xad, + 0xff, 0x3b, 0x00, 0x6a, 0xab, 0x6b, 0x3b, 0xd8, 0x72, 0xcf, 0x05, 0x4d, 0xb1, 0x38, 0xf2, 0x32, + 0xa3, 0xd6, 0x56, 0xa4, 0x0c, 0xcf, 0x50, 0xd3, 0x62, 0x6d, 0x7a, 0x52, 0x25, 0xe2, 0x5a, 0xec, + 0x63, 0xaf, 0x4a, 0xa9, 0xd3, 0xab, 0xc4, 0x38, 0xf8, 0xe3, 0xfd, 0x3a, 0xcc, 0x44, 0xcc, 0xa4, + 0x28, 0x0f, 0x10, 0xf8, 0x2a, 0x0e, 0xff, 0x9e, 0xef, 0xf2, 0x8a, 0xbc, 0xb5, 0x51, 0x7e, 0xbe, + 0xbe, 0x5e, 0x6b, 0x34, 0x2a, 0x2b, 0xa2, 0x80, 0x44, 0x98, 0x0a, 0x7d, 0x53, 0x27, 0xc1, 0xbe, + 0xf0, 0x7b, 0xff, 0xcf, 0x00, 0xf8, 0x9f, 0xea, 0x22, 0xb2, 0xd6, 0x2a, 0x9f, 0xca, 0x2f, 0x97, + 0x9f, 0x6d, 0x55, 0xea, 0xe2, 0x18, 0x42, 0x90, 0x2f, 0x2d, 0x37, 0xca, 0x55, 0x59, 0xaa, 0xd4, + 0x37, 0x9f, 0x6f, 0xd4, 0x2b, 0xee, 0x97, 0x81, 0xef, 0xaf, 0xc0, 0x54, 0xf0, 0xda, 0x1c, 0x34, + 0x03, 0x85, 0x72, 0xb5, 0x52, 0x5e, 0x93, 0x5f, 0xd6, 0x96, 0xe5, 0x17, 0x5b, 0x95, 0xad, 0x8a, + 0x38, 0x46, 0x8b, 0x46, 0x89, 0x4f, 0xb6, 0x9e, 0x3d, 0x13, 0x05, 0x54, 0x80, 0x2c, 0x7b, 0xa6, + 0xdf, 0xdf, 0x11, 0x13, 0xf7, 0xd7, 0x21, 0x1b, 0xb8, 0x60, 0x97, 0xbc, 0x6e, 0x73, 0xab, 0x5e, + 0x95, 0x1b, 0xb5, 0xf5, 0x4a, 0xbd, 0xb1, 0xbc, 0xbe, 0xc9, 0x64, 0x50, 0xda, 0x72, 0xe9, 0xb9, + 0xd4, 0x10, 0x05, 0xef, 0xb9, 0xf1, 0x7c, 0xab, 0x5c, 0x75, 0xab, 0x51, 0x4c, 0xa5, 0x93, 0x62, + 0xf2, 0xfe, 0x6f, 0x08, 0x70, 0x69, 0xc0, 0xe5, 0x31, 0x28, 0x0b, 0x93, 0x5b, 0x06, 0xbd, 0x61, + 0x54, 0x1c, 0x43, 0xb9, 0xc0, 0xfd, 0x31, 0xa2, 0x80, 0xd2, 0xec, 0xee, 0x0e, 0x31, 0x81, 0x26, + 0x20, 0x51, 0x7f, 0x24, 0x26, 0x49, 0x49, 0x03, 0xd7, 0xaf, 0x88, 0x29, 0x94, 0xe1, 0x17, 0x3c, + 0x88, 0xe3, 0x68, 0xca, 0xbf, 0x61, 0x41, 0x9c, 0x20, 0xa2, 0xbc, 0x3b, 0x0a, 0xc4, 0xc9, 0xfb, + 0xd7, 0x21, 0x70, 0xde, 0x1b, 0x01, 0x4c, 0x3c, 0x53, 0x1c, 0x6c, 0x3b, 0xe2, 0x18, 0x9a, 0x84, + 0xe4, 0x72, 0xab, 0x25, 0x0a, 0x0f, 0x7f, 0x9a, 0x82, 0xb4, 0xfb, 0x85, 0x19, 0xf4, 0x0c, 0xc6, + 0xd9, 0xf2, 0xf1, 0xc2, 0x60, 0xef, 0x9c, 0x0e, 0x8a, 0xf9, 0x6b, 0xa7, 0xb9, 0xef, 0xc5, 0x31, + 0xf4, 0x67, 0x21, 0x1b, 0xf0, 0x7a, 0xd0, 0xc0, 0x25, 0xb0, 0x90, 0xa7, 0x37, 0x7f, 0xfb, 0xb4, + 0x6c, 0x9e, 0xfc, 0x57, 0x90, 0xf1, 0xac, 0x30, 0xba, 0x31, 0xcc, 0x46, 0xbb, 0xb2, 0x87, 0x1b, + 0x72, 0x62, 0xa5, 0x8a, 0x63, 0xef, 0x09, 0xc8, 0x02, 0xd4, 0x6f, 0xc4, 0x50, 0x54, 0x54, 0xc1, + 0x40, 0x2b, 0x39, 0x7f, 0x7f, 0xa4, 0xdc, 0xfe, 0x3b, 0x7f, 0x08, 0x85, 0x1e, 0x6b, 0x8c, 0xa2, + 0x96, 0x68, 0xa3, 0xa7, 0x95, 0xc8, 0xb7, 0x0d, 0x32, 0xee, 0x63, 0xe8, 0x05, 0xa4, 0x88, 0x35, + 0x42, 0x51, 0xd3, 0x4f, 0x8f, 0xf5, 0x9b, 0xbf, 0x31, 0x34, 0x8f, 0x2b, 0xb2, 0x74, 0xef, 0x67, + 0x7f, 0x72, 0x75, 0xec, 0x67, 0x27, 0x57, 0x85, 0x9f, 0x9f, 0x5c, 0x15, 0xfe, 0xf8, 0xe4, 0xaa, + 0xf0, 0x9f, 0x4f, 0xae, 0x0a, 0x7f, 0xf5, 0x17, 0x57, 0xc7, 0x7e, 0xfe, 0x8b, 0xab, 0x63, 0x7f, + 0xfc, 0x8b, 0xab, 0x63, 0x9f, 0x4d, 0x72, 0xee, 0xed, 0x09, 0xfa, 0xc9, 0xf8, 0x47, 0xff, 0x37, + 0x00, 0x00, 0xff, 0xff, 0x41, 0x75, 0x7c, 0x6b, 0x5f, 0x7f, 0x00, 0x00, } diff --git a/pkg/roachpb/api.proto b/pkg/roachpb/api.proto index 60e2a221e59e..915eb15494e9 100644 --- a/pkg/roachpb/api.proto +++ b/pkg/roachpb/api.proto @@ -2198,6 +2198,35 @@ message RangeFeedEvent { RangeFeedError error = 3; } +// UnsafeHealRangeRequest sends a snapshot to help recover unavailable ranges. +// This is a lower level primitive that is not called by the user directly and +// is specific to a range (nothing distributed) as other logic should +// be at a higher level that has more insight into state of the cluster. +// +// The caller should update meta2 and then call this RPC to update the range +// snapshot. If this RPC only took a range ID, we would have to look up the +// RangeDescriptor. As a result, RangeDescriptor should be passed in by the +// caller. Higher level abstractions can use meta2 or a survivor to identify the +// RangeDescriptor. +// +// Two cases are covered by this RPC: the case where all replicas are lost and +// the case where one or more relicas remain (resuscitation). For these two +// cases, node_id and store_id are either the designated place we are recreating +// the replica or the designated survivor that we are recovering from, +// respectively. We cover both use cases in this RPC as most of the logic for +// sending a snapshot are the same. +// +// TODO (thesamhuang and tbg): explain how this can be safely used and how the +// orchestrator around this will work. In particular, restarting with a missing +// node vs a missing store. +message UnsafeHealRangeRequest { + RangeDescriptor desc = 1 [(gogoproto.nullable) = false]; + int32 node_id = 2 [(gogoproto.customname) = "NodeID"]; + int32 store_id = 3 [(gogoproto.customname) = "StoreID"]; +} + +message UnsafeHealRangeResponse {} + // GossipSubscriptionRequest initiates a game of telephone. It establishes an // indefinite stream that proxies gossip information overheard by the recipient // node back to the caller. Gossip information is filtered down to just those @@ -2244,6 +2273,7 @@ service Internal { rpc RangeLookup (RangeLookupRequest) returns (RangeLookupResponse) {} rpc RangeFeed (RangeFeedRequest) returns (stream RangeFeedEvent) {} rpc GossipSubscription (GossipSubscriptionRequest) returns (stream GossipSubscriptionEvent) {} + rpc UnsafeHealRange (UnsafeHealRangeRequest) returns (UnsafeHealRangeResponse) {} // Join a bootstrapped cluster. If the target node is itself not part of a // bootstrapped cluster, an appropriate error is returned. diff --git a/pkg/rpc/context.go b/pkg/rpc/context.go index 26afb9b2f3c2..5f0c2dd4f8e6 100644 --- a/pkg/rpc/context.go +++ b/pkg/rpc/context.go @@ -476,6 +476,12 @@ func (a internalClientAdapter) Join( return a.InternalServer.Join(ctx, req) } +func (a internalClientAdapter) UnsafeHealRange( + ctx context.Context, req *roachpb.UnsafeHealRangeRequest, _ ...grpc.CallOption, +) (*roachpb.UnsafeHealRangeResponse, error) { + return a.InternalServer.UnsafeHealRange(ctx, req) +} + type respStreamClientAdapter struct { ctx context.Context respC chan interface{} diff --git a/pkg/server/node.go b/pkg/server/node.go index 16c59b7c2cf3..8ab1bccd7eec 100644 --- a/pkg/server/node.go +++ b/pkg/server/node.go @@ -29,6 +29,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/kv/kvclient/kvtenant" "github.com/cockroachdb/cockroach/pkg/kv/kvserver" "github.com/cockroachdb/cockroach/pkg/roachpb" + "github.com/cockroachdb/cockroach/pkg/rpc" "github.com/cockroachdb/cockroach/pkg/server/status" "github.com/cockroachdb/cockroach/pkg/settings" "github.com/cockroachdb/cockroach/pkg/settings/cluster" @@ -1054,6 +1055,46 @@ func (n *Node) RangeFeed( return nil } +// TODO (thesamhuang): add a comment describing this function and comments throughout. +func (n *Node) UnsafeHealRange( + ctx context.Context, req *roachpb.UnsafeHealRangeRequest, +) (_ *roachpb.UnsafeHealRangeResponse, rErr error) { + defer func() { + if r := recover(); r != nil { + rErr = errors.Errorf("%v", r) + } + }() + + desc := req.Desc + + nodeID, storeID := roachpb.NodeID(req.NodeID), roachpb.StoreID(req.StoreID) + + dead := append([]roachpb.ReplicaDescriptor(nil), desc.Replicas().All()...) + to := desc.AddReplica(nodeID, storeID, roachpb.VOTER_FULL) + for _, rd := range dead { + desc.RemoveReplica(rd.NodeID, rd.StoreID) + } + + // Set up connection to self. Use rpc.SystemClass to avoid throttling. + conn, err := n.storeCfg.NodeDialer.Dial(ctx, nodeID, rpc.SystemClass) + if err != nil { + return nil, err + } + + if err := kvserver.SendEmptySnapshot( + ctx, + n.storeCfg.Settings, + conn, + n.storeCfg.Clock.Now(), + desc, + to, + ); err != nil { + return nil, err + } + + return &roachpb.UnsafeHealRangeResponse{}, nil +} + // GossipSubscription implements the roachpb.InternalServer interface. func (n *Node) GossipSubscription( args *roachpb.GossipSubscriptionRequest, stream roachpb.Internal_GossipSubscriptionServer,