diff --git a/c-deps/libroach/protos/roachpb/data.pb.cc b/c-deps/libroach/protos/roachpb/data.pb.cc index 28beab21609c..8e46b8ba94b0 100644 --- a/c-deps/libroach/protos/roachpb/data.pb.cc +++ b/c-deps/libroach/protos/roachpb/data.pb.cc @@ -2586,7 +2586,6 @@ bool StickyBitTrigger::MergePartialFromCodedStream( tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // .cockroach.util.hlc.Timestamp sticky_bit = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) { @@ -2624,7 +2623,6 @@ void StickyBitTrigger::SerializeWithCachedSizes( ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; - // .cockroach.util.hlc.Timestamp sticky_bit = 1; if (this->has_sticky_bit()) { ::google::protobuf::internal::WireFormatLite::WriteMessage( 1, this->_internal_sticky_bit(), output); @@ -2641,7 +2639,6 @@ size_t StickyBitTrigger::ByteSizeLong() const { total_size += (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()).size(); - // .cockroach.util.hlc.Timestamp sticky_bit = 1; if (this->has_sticky_bit()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( diff --git a/c-deps/libroach/protos/roachpb/data.pb.h b/c-deps/libroach/protos/roachpb/data.pb.h index 41b7a95802e7..60819f3f4fca 100644 --- a/c-deps/libroach/protos/roachpb/data.pb.h +++ b/c-deps/libroach/protos/roachpb/data.pb.h @@ -1251,7 +1251,6 @@ class StickyBitTrigger : public ::google::protobuf::MessageLite /* @@protoc_inse // accessors ------------------------------------------------------- - // .cockroach.util.hlc.Timestamp sticky_bit = 1; bool has_sticky_bit() const; void clear_sticky_bit(); static const int kStickyBitFieldNumber = 1; @@ -3516,7 +3515,6 @@ inline void ModifiedSpanTrigger::set_allocated_node_liveness_span(::cockroach::r // StickyBitTrigger -// .cockroach.util.hlc.Timestamp sticky_bit = 1; inline bool StickyBitTrigger::has_sticky_bit() const { return this != internal_default_instance() && sticky_bit_ != NULL; } diff --git a/c-deps/libroach/protos/roachpb/metadata.pb.cc b/c-deps/libroach/protos/roachpb/metadata.pb.cc index f34a4cb3c747..c188a4e1dc19 100644 --- a/c-deps/libroach/protos/roachpb/metadata.pb.cc +++ b/c-deps/libroach/protos/roachpb/metadata.pb.cc @@ -1426,7 +1426,6 @@ bool RangeDescriptor::MergePartialFromCodedStream( break; } - // optional .cockroach.util.hlc.Timestamp sticky_bit = 7; case 7: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(58u /* 58 & 0xFF */)) { @@ -1496,7 +1495,6 @@ void RangeDescriptor::SerializeWithCachedSizes( ::google::protobuf::internal::WireFormatLite::WriteInt64(6, this->generation(), output); } - // optional .cockroach.util.hlc.Timestamp sticky_bit = 7; if (cached_has_bits & 0x00000004u) { ::google::protobuf::internal::WireFormatLite::WriteMessage( 7, this->_internal_sticky_bit(), output); @@ -1536,7 +1534,6 @@ size_t RangeDescriptor::ByteSizeLong() const { this->end_key()); } - // optional .cockroach.util.hlc.Timestamp sticky_bit = 7; if (has_sticky_bit()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSize( diff --git a/c-deps/libroach/protos/roachpb/metadata.pb.h b/c-deps/libroach/protos/roachpb/metadata.pb.h index 8bff40608162..95679170f866 100644 --- a/c-deps/libroach/protos/roachpb/metadata.pb.h +++ b/c-deps/libroach/protos/roachpb/metadata.pb.h @@ -743,7 +743,6 @@ class RangeDescriptor : public ::google::protobuf::MessageLite /* @@protoc_inser ::std::string* release_end_key(); void set_allocated_end_key(::std::string* end_key); - // optional .cockroach.util.hlc.Timestamp sticky_bit = 7; bool has_sticky_bit() const; void clear_sticky_bit(); static const int kStickyBitFieldNumber = 7; @@ -2677,7 +2676,6 @@ inline void RangeDescriptor::set_generation(::google::protobuf::int64 value) { // @@protoc_insertion_point(field_set:cockroach.roachpb.RangeDescriptor.generation) } -// optional .cockroach.util.hlc.Timestamp sticky_bit = 7; inline bool RangeDescriptor::has_sticky_bit() const { return (_has_bits_[0] & 0x00000004u) != 0; } diff --git a/pkg/ccl/backupccl/restore.go b/pkg/ccl/backupccl/restore.go index 68ba0517b3cc..6c04a5fafa7b 100644 --- a/pkg/ccl/backupccl/restore.go +++ b/pkg/ccl/backupccl/restore.go @@ -793,7 +793,7 @@ func splitAndScatter( // TODO(dan): Really, this should be splitting the Key of the first // entry in the _next_ chunk. log.VEventf(restoreCtx, 1, "presplitting chunk %d of %d", idx, len(importSpanChunks)) - if err := db.AdminSplit(ctx, chunkKey, chunkKey, false /* manual */); err != nil { + if err := db.AdminSplit(ctx, chunkKey, chunkKey, hlc.Timestamp{} /* expirationTime */); err != nil { return err } @@ -849,7 +849,7 @@ func splitAndScatter( // TODO(dan): Really, this should be splitting the Key of // the _next_ entry. log.VEventf(restoreCtx, 1, "presplitting %d of %d", idx, len(importSpans)) - if err := db.AdminSplit(ctx, newSpanKey, newSpanKey, false /* manual */); err != nil { + if err := db.AdminSplit(ctx, newSpanKey, newSpanKey, hlc.Timestamp{} /* expirationTime */); err != nil { return err } diff --git a/pkg/ccl/importccl/bench_test.go b/pkg/ccl/importccl/bench_test.go index 95402fb103f2..03ce98b51192 100644 --- a/pkg/ccl/importccl/bench_test.go +++ b/pkg/ccl/importccl/bench_test.go @@ -27,6 +27,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/testutils" "github.com/cockroachdb/cockroach/pkg/testutils/serverutils" "github.com/cockroachdb/cockroach/pkg/util/ctxgroup" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/timeutil" "github.com/cockroachdb/cockroach/pkg/workload" "github.com/cockroachdb/cockroach/pkg/workload/tpcc" @@ -125,7 +126,7 @@ func benchmarkAddSSTable(b *testing.B, dir string, tables []tableSSTable) { }} s, _, kvDB := serverutils.StartServer(b, args) for _, t := range tables { - if err := kvDB.AdminSplit(ctx, t.span.Key, t.span.Key, false /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, t.span.Key, t.span.Key, hlc.Timestamp{} /* expirationTime */); err != nil { b.Fatal(err) } } diff --git a/pkg/ccl/importccl/read_import_proc.go b/pkg/ccl/importccl/read_import_proc.go index f57c23fb5062..a3d2af02a360 100644 --- a/pkg/ccl/importccl/read_import_proc.go +++ b/pkg/ccl/importccl/read_import_proc.go @@ -487,7 +487,7 @@ func (cp *readImportDataProcessor) doRun(ctx context.Context) error { if cp.spec.IngestDirectly { for _, tbl := range cp.spec.Tables { for _, span := range tbl.AllIndexSpans() { - if err := cp.flowCtx.ClientDB.AdminSplit(ctx, span.Key, span.Key, false /* manual */); err != nil { + if err := cp.flowCtx.ClientDB.AdminSplit(ctx, span.Key, span.Key, hlc.Timestamp{} /* expirationTime */); err != nil { return err } diff --git a/pkg/ccl/importccl/sst_writer_proc.go b/pkg/ccl/importccl/sst_writer_proc.go index 79b45746c1bb..e2c4f7b3e08c 100644 --- a/pkg/ccl/importccl/sst_writer_proc.go +++ b/pkg/ccl/importccl/sst_writer_proc.go @@ -29,6 +29,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/storage/diskmap" "github.com/cockroachdb/cockroach/pkg/storage/engine" "github.com/cockroachdb/cockroach/pkg/util/ctxgroup" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/protoutil" "github.com/cockroachdb/cockroach/pkg/util/tracing" @@ -176,7 +177,7 @@ func (sp *sstWriter) Run(ctx context.Context) { end = sst.span.EndKey } - if err := sp.db.AdminSplit(ctx, end, end, false /* manual */); err != nil { + if err := sp.db.AdminSplit(ctx, end, end, hlc.Timestamp{} /* expirationTime */); err != nil { return err } diff --git a/pkg/ccl/storageccl/import_test.go b/pkg/ccl/storageccl/import_test.go index a55727d9447f..19f324267714 100644 --- a/pkg/ccl/storageccl/import_test.go +++ b/pkg/ccl/storageccl/import_test.go @@ -318,10 +318,10 @@ func runTestImport(t *testing.T, init func(*cluster.Settings)) { t.Fatalf("failed to rewrite key: %s", reqMidKey2) } - if err := kvDB.AdminSplit(ctx, reqMidKey1, reqMidKey1, true /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, reqMidKey1, reqMidKey1, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } - if err := kvDB.AdminSplit(ctx, reqMidKey2, reqMidKey2, true /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, reqMidKey2, reqMidKey2, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } diff --git a/pkg/internal/client/batch.go b/pkg/internal/client/batch.go index e8f2144cd79c..113731cbd1db 100644 --- a/pkg/internal/client/batch.go +++ b/pkg/internal/client/batch.go @@ -16,6 +16,7 @@ import ( "context" "github.com/cockroachdb/cockroach/pkg/roachpb" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/pkg/errors" ) @@ -586,7 +587,7 @@ func (b *Batch) adminMerge(key interface{}) { // adminSplit is only exported on DB. It is here for symmetry with the // other operations. -func (b *Batch) adminSplit(spanKeyIn, splitKeyIn interface{}, manual bool) { +func (b *Batch) adminSplit(spanKeyIn, splitKeyIn interface{}, expirationTime hlc.Timestamp) { spanKey, err := marshalKey(spanKeyIn) if err != nil { b.initResult(0, 0, notRaw, err) @@ -601,8 +602,8 @@ func (b *Batch) adminSplit(spanKeyIn, splitKeyIn interface{}, manual bool) { RequestHeader: roachpb.RequestHeader{ Key: spanKey, }, - SplitKey: splitKey, - Manual: manual, + SplitKey: splitKey, + ExpirationTime: expirationTime, } b.appendReqs(req) b.initResult(1, 0, notRaw, nil) diff --git a/pkg/internal/client/db.go b/pkg/internal/client/db.go index 72a29901d753..0c54ac0492e7 100644 --- a/pkg/internal/client/db.go +++ b/pkg/internal/client/db.go @@ -475,14 +475,18 @@ func (db *DB) AdminMerge(ctx context.Context, key interface{}) error { // #16008 for details, and #16344 for the tracking issue to clean this mess up // properly. // -// When manual is true, the sticky bit associated with the split range is set. -// Any ranges with the sticky bit set will be skipped by the merge queue when -// scanning for potential ranges to merge. +// expirationTime is the timestamp when the split expires and is eligible for +// automatic merging by the merge queue. To specify that a split should +// immediately be eligible for automatic merging, set expirationTime to +// hlc.Timestamp{} (I.E. the zero timestamp). To specify that a split should +// never be eligible, set expirationTime to hlc.MaxTimestamp. // // The keys can be either byte slices or a strings. -func (db *DB) AdminSplit(ctx context.Context, spanKey, splitKey interface{}, manual bool) error { +func (db *DB) AdminSplit( + ctx context.Context, spanKey, splitKey interface{}, expirationTime hlc.Timestamp, +) error { b := &Batch{} - b.adminSplit(spanKey, splitKey, manual) + b.adminSplit(spanKey, splitKey, expirationTime) return getOneErr(db.Run(ctx, b), b) } diff --git a/pkg/kv/dist_sender_server_test.go b/pkg/kv/dist_sender_server_test.go index fcebea8b3fa3..dc5fe813b5aa 100644 --- a/pkg/kv/dist_sender_server_test.go +++ b/pkg/kv/dist_sender_server_test.go @@ -118,7 +118,7 @@ func TestRangeLookupWithOpenTransaction(t *testing.T) { func setupMultipleRanges(ctx context.Context, db *client.DB, splitAt ...string) error { // Split the keyspace at the given keys. for _, key := range splitAt { - if err := db.AdminSplit(ctx, key /* spanKey */, key /* splitKey */, true /* manual */); err != nil { + if err := db.AdminSplit(ctx, key /* spanKey */, key /* splitKey */, hlc.MaxTimestamp /* expirationTime */); err != nil { return err } } @@ -1046,7 +1046,7 @@ func TestParallelSender(t *testing.T) { // Split into multiple ranges. splitKeys := []string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j"} for _, key := range splitKeys { - if err := db.AdminSplit(context.TODO(), key, key, true /* manual */); err != nil { + if err := db.AdminSplit(context.TODO(), key, key, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } } @@ -1091,7 +1091,7 @@ func initReverseScanTestEnv(s serverutils.TestServerInterface, t *testing.T) *cl // ["", "b"),["b", "e") ,["e", "g") and ["g", "\xff\xff"). for _, key := range []string{"b", "e", "g"} { // Split the keyspace at the given key. - if err := db.AdminSplit(context.TODO(), key, key, true /* manual */); err != nil { + if err := db.AdminSplit(context.TODO(), key, key, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } } @@ -1530,7 +1530,7 @@ func TestBatchPutWithConcurrentSplit(t *testing.T) { // Split first using the default client and scan to make sure that // the range descriptor cache reflects the split. for _, key := range []string{"b", "f"} { - if err := db.AdminSplit(context.TODO(), key, key, true /* manual */); err != nil { + if err := db.AdminSplit(context.TODO(), key, key, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } } @@ -1556,6 +1556,7 @@ func TestBatchPutWithConcurrentSplit(t *testing.T) { Key: roachpb.Key(key), }, SplitKey: roachpb.Key(key), + ExpirationTime: hlc.MaxTimestamp, } if _, err := client.SendWrapped(context.Background(), ds, req); err != nil { t.Fatal(err) @@ -1584,7 +1585,7 @@ func TestReverseScanWithSplitAndMerge(t *testing.T) { // Case 1: An encounter with a range split. // Split the range ["b", "e") at "c". - if err := db.AdminSplit(context.TODO(), "c", "c", true /* manual */); err != nil { + if err := db.AdminSplit(context.TODO(), "c", "c", hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } diff --git a/pkg/kv/split_test.go b/pkg/kv/split_test.go index ff95bab95909..a49fec404ab3 100644 --- a/pkg/kv/split_test.go +++ b/pkg/kv/split_test.go @@ -110,7 +110,7 @@ func TestRangeSplitMeta(t *testing.T) { for _, splitRKey := range splitKeys { splitKey := roachpb.Key(splitRKey) log.Infof(ctx, "starting split at key %q...", splitKey) - if err := s.DB.AdminSplit(ctx, splitKey, splitKey, true /* manual */); err != nil { + if err := s.DB.AdminSplit(ctx, splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } log.Infof(ctx, "split at key %q complete", splitKey) @@ -156,7 +156,7 @@ func TestRangeSplitsWithConcurrentTxns(t *testing.T) { <-txnChannel } log.Infof(ctx, "starting split at key %q...", splitKey) - if pErr := s.DB.AdminSplit(context.TODO(), splitKey, splitKey, true /* manual */); pErr != nil { + if pErr := s.DB.AdminSplit(context.TODO(), splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); pErr != nil { t.Error(pErr) } log.Infof(ctx, "split at key %q complete", splitKey) @@ -249,19 +249,19 @@ func TestRangeSplitsWithSameKeyTwice(t *testing.T) { splitKey := roachpb.Key("aa") log.Infof(ctx, "starting split at key %q...", splitKey) - if err := s.DB.AdminSplit(ctx, splitKey, splitKey, true /* manual */); err != nil { + if err := s.DB.AdminSplit(ctx, splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } log.Infof(ctx, "split at key %q first time complete", splitKey) - if err := s.DB.AdminSplit(ctx, splitKey, splitKey, true /* manual */); err != nil { + if err := s.DB.AdminSplit(ctx, splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } } // TestSplitStickyBit checks that the sticky bit is set when performing a manual // split. There are two cases to consider: -// 1. Range is split so sticky bit is set on RHS. -// 2. Range is already split and split key is the start key of a range, so set +// 1. Range is split so sticky bit is updated on RHS. +// 2. Range is already split and split key is the start key of a range, so update // the sticky bit of that range, but no range is split. func TestRangeSplitsStickyBit(t *testing.T) { defer leaktest.AfterTest(t)() @@ -277,7 +277,7 @@ func TestRangeSplitsStickyBit(t *testing.T) { descKey := keys.RangeDescriptorKey(splitKey) // Splitting range. - if err := s.DB.AdminSplit(ctx, splitKey.AsRawKey(), splitKey.AsRawKey(), true /* manual */); err != nil { + if err := s.DB.AdminSplit(ctx, splitKey.AsRawKey(), splitKey.AsRawKey(), hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } @@ -287,7 +287,7 @@ func TestRangeSplitsStickyBit(t *testing.T) { if err != nil { t.Fatal(err) } - if desc.StickyBit == nil { + if (desc.StickyBit == hlc.Timestamp{}) { t.Fatal("Sticky bit not set after splitting") } @@ -297,7 +297,7 @@ func TestRangeSplitsStickyBit(t *testing.T) { } // Splitting range. - if err := s.DB.AdminSplit(ctx, splitKey.AsRawKey(), splitKey.AsRawKey(), true /* manual */); err != nil { + if err := s.DB.AdminSplit(ctx, splitKey.AsRawKey(), splitKey.AsRawKey(), hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } @@ -306,7 +306,7 @@ func TestRangeSplitsStickyBit(t *testing.T) { if err != nil { t.Fatal(err) } - if desc.StickyBit == nil { + if (desc.StickyBit == hlc.Timestamp{}) { t.Fatal("Sticky bit not set after splitting") } } diff --git a/pkg/kv/txn_coord_sender_test.go b/pkg/kv/txn_coord_sender_test.go index d2cbcab86df0..a6d09a0282fa 100644 --- a/pkg/kv/txn_coord_sender_test.go +++ b/pkg/kv/txn_coord_sender_test.go @@ -317,7 +317,7 @@ func TestTxnCoordSenderHeartbeat(t *testing.T) { keyA := roachpb.Key("a") keyC := roachpb.Key("c") splitKey := roachpb.Key("b") - if err := s.DB.AdminSplit(ctx, splitKey /* spanKey */, splitKey /* splitKey */, true /* manual */); err != nil { + if err := s.DB.AdminSplit(ctx, splitKey /* spanKey */, splitKey /* splitKey */, hlc.MaxTimestamp /* expirationTimestamp */); err != nil { t.Fatal(err) } diff --git a/pkg/kv/txn_test.go b/pkg/kv/txn_test.go index ed0ad792530c..f429f52dd0d4 100644 --- a/pkg/kv/txn_test.go +++ b/pkg/kv/txn_test.go @@ -27,6 +27,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/storage/tscache" "github.com/cockroachdb/cockroach/pkg/testutils" "github.com/cockroachdb/cockroach/pkg/testutils/localtestcluster" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/leaktest" "github.com/pkg/errors" ) @@ -406,7 +407,7 @@ func TestTxnRepeatGetWithRangeSplit(t *testing.T) { } s.Manual.Increment(time.Second.Nanoseconds()) // Split range by keyB. - if err := s.DB.AdminSplit(context.TODO(), splitKey, splitKey, true /* manual */); err != nil { + if err := s.DB.AdminSplit(context.TODO(), splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } // Wait till split complete. diff --git a/pkg/roachpb/api.pb.go b/pkg/roachpb/api.pb.go index e15115ac1ed7..cd7140ceafc9 100644 --- a/pkg/roachpb/api.pb.go +++ b/pkg/roachpb/api.pb.go @@ -70,7 +70,7 @@ func (x ReadConsistencyType) String() string { return proto.EnumName(ReadConsistencyType_name, int32(x)) } func (ReadConsistencyType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{0} + return fileDescriptor_api_fa952046dde876d0, []int{0} } // ScanFormat is an enumeration of the available response formats for MVCCScan @@ -98,7 +98,7 @@ func (x ScanFormat) String() string { return proto.EnumName(ScanFormat_name, int32(x)) } func (ScanFormat) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{1} + return fileDescriptor_api_fa952046dde876d0, []int{1} } type ChecksumMode int32 @@ -145,7 +145,7 @@ func (x ChecksumMode) String() string { return proto.EnumName(ChecksumMode_name, int32(x)) } func (ChecksumMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{2} + return fileDescriptor_api_fa952046dde876d0, []int{2} } // PushTxnType determines what action to take when pushing a transaction. @@ -176,7 +176,7 @@ func (x PushTxnType) String() string { return proto.EnumName(PushTxnType_name, int32(x)) } func (PushTxnType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{3} + return fileDescriptor_api_fa952046dde876d0, []int{3} } type ExportStorageProvider int32 @@ -214,7 +214,7 @@ func (x ExportStorageProvider) String() string { return proto.EnumName(ExportStorageProvider_name, int32(x)) } func (ExportStorageProvider) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{4} + return fileDescriptor_api_fa952046dde876d0, []int{4} } type MVCCFilter int32 @@ -237,7 +237,7 @@ func (x MVCCFilter) String() string { return proto.EnumName(MVCCFilter_name, int32(x)) } func (MVCCFilter) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{5} + return fileDescriptor_api_fa952046dde876d0, []int{5} } type ResponseHeader_ResumeReason int32 @@ -269,7 +269,7 @@ func (x ResponseHeader_ResumeReason) String() string { return proto.EnumName(ResponseHeader_ResumeReason_name, int32(x)) } func (ResponseHeader_ResumeReason) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{2, 0} + return fileDescriptor_api_fa952046dde876d0, []int{2, 0} } type CheckConsistencyResponse_Status int32 @@ -311,7 +311,7 @@ func (x CheckConsistencyResponse_Status) String() string { return proto.EnumName(CheckConsistencyResponse_Status_name, int32(x)) } func (CheckConsistencyResponse_Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{25, 0} + return fileDescriptor_api_fa952046dde876d0, []int{25, 0} } // RangeInfo describes a range which executed a request. It contains @@ -327,7 +327,7 @@ func (m *RangeInfo) Reset() { *m = RangeInfo{} } func (m *RangeInfo) String() string { return proto.CompactTextString(m) } func (*RangeInfo) ProtoMessage() {} func (*RangeInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{0} + return fileDescriptor_api_fa952046dde876d0, []int{0} } func (m *RangeInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -372,7 +372,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_9083095177d05045, []int{1} + return fileDescriptor_api_fa952046dde876d0, []int{1} } func (m *RequestHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -432,7 +432,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_9083095177d05045, []int{2} + return fileDescriptor_api_fa952046dde876d0, []int{2} } func (m *ResponseHeader) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -468,7 +468,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_9083095177d05045, []int{3} + return fileDescriptor_api_fa952046dde876d0, []int{3} } func (m *GetRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -508,7 +508,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_9083095177d05045, []int{4} + return fileDescriptor_api_fa952046dde876d0, []int{4} } func (m *GetResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -553,7 +553,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_9083095177d05045, []int{5} + return fileDescriptor_api_fa952046dde876d0, []int{5} } func (m *PutRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -589,7 +589,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_9083095177d05045, []int{6} + return fileDescriptor_api_fa952046dde876d0, []int{6} } func (m *PutResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -645,7 +645,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_9083095177d05045, []int{7} + return fileDescriptor_api_fa952046dde876d0, []int{7} } func (m *ConditionalPutRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -682,7 +682,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_9083095177d05045, []int{8} + return fileDescriptor_api_fa952046dde876d0, []int{8} } func (m *ConditionalPutResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -730,7 +730,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_9083095177d05045, []int{9} + return fileDescriptor_api_fa952046dde876d0, []int{9} } func (m *InitPutRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -766,7 +766,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_9083095177d05045, []int{10} + return fileDescriptor_api_fa952046dde876d0, []int{10} } func (m *InitPutResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -808,7 +808,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_9083095177d05045, []int{11} + return fileDescriptor_api_fa952046dde876d0, []int{11} } func (m *IncrementRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -847,7 +847,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_9083095177d05045, []int{12} + return fileDescriptor_api_fa952046dde876d0, []int{12} } func (m *IncrementResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -883,7 +883,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_9083095177d05045, []int{13} + return fileDescriptor_api_fa952046dde876d0, []int{13} } func (m *DeleteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -919,7 +919,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_9083095177d05045, []int{14} + return fileDescriptor_api_fa952046dde876d0, []int{14} } func (m *DeleteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -970,7 +970,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_9083095177d05045, []int{15} + return fileDescriptor_api_fa952046dde876d0, []int{15} } func (m *DeleteRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1009,7 +1009,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_9083095177d05045, []int{16} + return fileDescriptor_api_fa952046dde876d0, []int{16} } func (m *DeleteRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1058,7 +1058,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_9083095177d05045, []int{17} + return fileDescriptor_api_fa952046dde876d0, []int{17} } func (m *ClearRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1094,7 +1094,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_9083095177d05045, []int{18} + return fileDescriptor_api_fa952046dde876d0, []int{18} } func (m *ClearRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1165,7 +1165,7 @@ func (m *ScanOptions) Reset() { *m = ScanOptions{} } func (m *ScanOptions) String() string { return proto.CompactTextString(m) } func (*ScanOptions) ProtoMessage() {} func (*ScanOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{19} + return fileDescriptor_api_fa952046dde876d0, []int{19} } func (m *ScanOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1207,7 +1207,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_9083095177d05045, []int{20} + return fileDescriptor_api_fa952046dde876d0, []int{20} } func (m *ScanRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1256,7 +1256,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_9083095177d05045, []int{21} + return fileDescriptor_api_fa952046dde876d0, []int{21} } func (m *ScanResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1298,7 +1298,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_9083095177d05045, []int{22} + return fileDescriptor_api_fa952046dde876d0, []int{22} } func (m *ReverseScanRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1347,7 +1347,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_9083095177d05045, []int{23} + return fileDescriptor_api_fa952046dde876d0, []int{23} } func (m *ReverseScanResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1395,7 +1395,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_9083095177d05045, []int{24} + return fileDescriptor_api_fa952046dde876d0, []int{24} } func (m *CheckConsistencyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1434,7 +1434,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_9083095177d05045, []int{25} + return fileDescriptor_api_fa952046dde876d0, []int{25} } func (m *CheckConsistencyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1480,7 +1480,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_9083095177d05045, []int{25, 0} + return fileDescriptor_api_fa952046dde876d0, []int{25, 0} } func (m *CheckConsistencyResponse_Result) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1530,7 +1530,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_9083095177d05045, []int{26} + return fileDescriptor_api_fa952046dde876d0, []int{26} } func (m *RecomputeStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1568,7 +1568,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_9083095177d05045, []int{27} + return fileDescriptor_api_fa952046dde876d0, []int{27} } func (m *RecomputeStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1604,7 +1604,7 @@ func (m *BeginTransactionRequest) Reset() { *m = BeginTransactionRequest func (m *BeginTransactionRequest) String() string { return proto.CompactTextString(m) } func (*BeginTransactionRequest) ProtoMessage() {} func (*BeginTransactionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{28} + return fileDescriptor_api_fa952046dde876d0, []int{28} } func (m *BeginTransactionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1640,7 +1640,7 @@ func (m *BeginTransactionResponse) Reset() { *m = BeginTransactionRespon func (m *BeginTransactionResponse) String() string { return proto.CompactTextString(m) } func (*BeginTransactionResponse) ProtoMessage() {} func (*BeginTransactionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{29} + return fileDescriptor_api_fa952046dde876d0, []int{29} } func (m *BeginTransactionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1730,7 +1730,7 @@ func (m *EndTransactionRequest) Reset() { *m = EndTransactionRequest{} } func (m *EndTransactionRequest) String() string { return proto.CompactTextString(m) } func (*EndTransactionRequest) ProtoMessage() {} func (*EndTransactionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{30} + return fileDescriptor_api_fa952046dde876d0, []int{30} } func (m *EndTransactionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1779,7 +1779,7 @@ func (m *EndTransactionResponse) Reset() { *m = EndTransactionResponse{} func (m *EndTransactionResponse) String() string { return proto.CompactTextString(m) } func (*EndTransactionResponse) ProtoMessage() {} func (*EndTransactionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{31} + return fileDescriptor_api_fa952046dde876d0, []int{31} } func (m *EndTransactionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1825,24 +1825,24 @@ var xxx_messageInfo_EndTransactionResponse proto.InternalMessageInfo // metadata (e.g. abort span and range stats must be copied or // recomputed). // -// The manual flag should be set when the split is requested manually -// from a user operation (I.E. Running ALTER TABLE/INDEX ... SPLIT AT). -// It should also be set when the split ranges should not be merged back -// together automatically by the merge queue. Any split requested by the -// split queue will have the manual flag unset. +// expiration_time represents the time that this split expires. Any split that +// is not expired will not be considered for automatic merging by the merge +// queue. Any split requested by the split queue will have an expiration time +// of hlc.Timestamp{} (I.E. The zero timestamp so they are always eligible for +// automatic merging). type AdminSplitRequest struct { RequestHeader `protobuf:"bytes,1,opt,name=header,proto3,embedded=header" json:"header"` - SplitKey Key `protobuf:"bytes,2,opt,name=split_key,json=splitKey,proto3,casttype=Key" json:"split_key,omitempty"` - Manual bool `protobuf:"varint,3,opt,name=manual,proto3" json:"manual,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + SplitKey Key `protobuf:"bytes,2,opt,name=split_key,json=splitKey,proto3,casttype=Key" json:"split_key,omitempty"` + ExpirationTime hlc.Timestamp `protobuf:"bytes,4,opt,name=expiration_time,json=expirationTime,proto3" json:"expiration_time"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } 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_9083095177d05045, []int{32} + return fileDescriptor_api_fa952046dde876d0, []int{32} } func (m *AdminSplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1879,7 +1879,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_9083095177d05045, []int{33} + return fileDescriptor_api_fa952046dde876d0, []int{33} } func (m *AdminSplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1920,7 +1920,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_9083095177d05045, []int{34} + return fileDescriptor_api_fa952046dde876d0, []int{34} } func (m *AdminUnsplitRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1957,7 +1957,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_9083095177d05045, []int{35} + return fileDescriptor_api_fa952046dde876d0, []int{35} } func (m *AdminUnsplitResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2001,7 +2001,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_9083095177d05045, []int{36} + return fileDescriptor_api_fa952046dde876d0, []int{36} } func (m *AdminMergeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2038,7 +2038,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_9083095177d05045, []int{37} + return fileDescriptor_api_fa952046dde876d0, []int{37} } func (m *AdminMergeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2078,7 +2078,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_9083095177d05045, []int{38} + return fileDescriptor_api_fa952046dde876d0, []int{38} } func (m *AdminTransferLeaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2113,7 +2113,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_9083095177d05045, []int{39} + return fileDescriptor_api_fa952046dde876d0, []int{39} } func (m *AdminTransferLeaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2167,7 +2167,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_9083095177d05045, []int{40} + return fileDescriptor_api_fa952046dde876d0, []int{40} } func (m *AdminChangeReplicasRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2206,7 +2206,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_9083095177d05045, []int{41} + return fileDescriptor_api_fa952046dde876d0, []int{41} } func (m *AdminChangeReplicasResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2245,7 +2245,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_9083095177d05045, []int{42} + return fileDescriptor_api_fa952046dde876d0, []int{42} } func (m *AdminRelocateRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2280,7 +2280,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_9083095177d05045, []int{43} + return fileDescriptor_api_fa952046dde876d0, []int{43} } func (m *AdminRelocateRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2321,7 +2321,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_9083095177d05045, []int{44} + return fileDescriptor_api_fa952046dde876d0, []int{44} } func (m *HeartbeatTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2360,7 +2360,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_9083095177d05045, []int{45} + return fileDescriptor_api_fa952046dde876d0, []int{45} } func (m *HeartbeatTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2405,7 +2405,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_9083095177d05045, []int{46} + return fileDescriptor_api_fa952046dde876d0, []int{46} } func (m *GCRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2441,7 +2441,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_9083095177d05045, []int{46, 0} + return fileDescriptor_api_fa952046dde876d0, []int{46, 0} } func (m *GCRequest_GCKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2477,7 +2477,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_9083095177d05045, []int{47} + return fileDescriptor_api_fa952046dde876d0, []int{47} } func (m *GCResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2561,7 +2561,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_9083095177d05045, []int{48} + return fileDescriptor_api_fa952046dde876d0, []int{48} } func (m *PushTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2606,7 +2606,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_9083095177d05045, []int{49} + return fileDescriptor_api_fa952046dde876d0, []int{49} } func (m *PushTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2655,7 +2655,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_9083095177d05045, []int{50} + return fileDescriptor_api_fa952046dde876d0, []int{50} } func (m *RecoverTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2693,7 +2693,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_9083095177d05045, []int{51} + return fileDescriptor_api_fa952046dde876d0, []int{51} } func (m *RecoverTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2739,7 +2739,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_9083095177d05045, []int{52} + return fileDescriptor_api_fa952046dde876d0, []int{52} } func (m *QueryTxnRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2780,7 +2780,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_9083095177d05045, []int{53} + return fileDescriptor_api_fa952046dde876d0, []int{53} } func (m *QueryTxnResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2842,7 +2842,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_9083095177d05045, []int{54} + return fileDescriptor_api_fa952046dde876d0, []int{54} } func (m *QueryIntentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2880,7 +2880,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_9083095177d05045, []int{55} + return fileDescriptor_api_fa952046dde876d0, []int{55} } func (m *QueryIntentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2926,7 +2926,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_9083095177d05045, []int{56} + return fileDescriptor_api_fa952046dde876d0, []int{56} } func (m *ResolveIntentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2963,7 +2963,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_9083095177d05045, []int{57} + return fileDescriptor_api_fa952046dde876d0, []int{57} } func (m *ResolveIntentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3013,7 +3013,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_9083095177d05045, []int{58} + return fileDescriptor_api_fa952046dde876d0, []int{58} } func (m *ResolveIntentRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3050,7 +3050,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_9083095177d05045, []int{59} + return fileDescriptor_api_fa952046dde876d0, []int{59} } func (m *ResolveIntentRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3089,7 +3089,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_9083095177d05045, []int{60} + return fileDescriptor_api_fa952046dde876d0, []int{60} } func (m *MergeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3125,7 +3125,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_9083095177d05045, []int{61} + return fileDescriptor_api_fa952046dde876d0, []int{61} } func (m *MergeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3172,7 +3172,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_9083095177d05045, []int{62} + return fileDescriptor_api_fa952046dde876d0, []int{62} } func (m *TruncateLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3208,7 +3208,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_9083095177d05045, []int{63} + return fileDescriptor_api_fa952046dde876d0, []int{63} } func (m *TruncateLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3254,7 +3254,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_9083095177d05045, []int{64} + return fileDescriptor_api_fa952046dde876d0, []int{64} } func (m *RequestLeaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3305,7 +3305,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_9083095177d05045, []int{65} + return fileDescriptor_api_fa952046dde876d0, []int{65} } func (m *TransferLeaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3344,7 +3344,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_9083095177d05045, []int{66} + return fileDescriptor_api_fa952046dde876d0, []int{66} } func (m *LeaseInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3383,7 +3383,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_9083095177d05045, []int{67} + return fileDescriptor_api_fa952046dde876d0, []int{67} } func (m *LeaseInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3420,7 +3420,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_9083095177d05045, []int{68} + return fileDescriptor_api_fa952046dde876d0, []int{68} } func (m *RequestLeaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3472,7 +3472,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_9083095177d05045, []int{69} + return fileDescriptor_api_fa952046dde876d0, []int{69} } func (m *ComputeChecksumRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3511,7 +3511,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_9083095177d05045, []int{70} + return fileDescriptor_api_fa952046dde876d0, []int{70} } func (m *ComputeChecksumResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3552,7 +3552,7 @@ func (m *ExportStorage) Reset() { *m = ExportStorage{} } func (m *ExportStorage) String() string { return proto.CompactTextString(m) } func (*ExportStorage) ProtoMessage() {} func (*ExportStorage) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{71} + return fileDescriptor_api_fa952046dde876d0, []int{71} } func (m *ExportStorage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3588,7 +3588,7 @@ func (m *ExportStorage_LocalFilePath) Reset() { *m = ExportStorage_Local func (m *ExportStorage_LocalFilePath) String() string { return proto.CompactTextString(m) } func (*ExportStorage_LocalFilePath) ProtoMessage() {} func (*ExportStorage_LocalFilePath) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{71, 0} + return fileDescriptor_api_fa952046dde876d0, []int{71, 0} } func (m *ExportStorage_LocalFilePath) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3623,7 +3623,7 @@ func (m *ExportStorage_Http) Reset() { *m = ExportStorage_Http{} } func (m *ExportStorage_Http) String() string { return proto.CompactTextString(m) } func (*ExportStorage_Http) ProtoMessage() {} func (*ExportStorage_Http) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{71, 1} + return fileDescriptor_api_fa952046dde876d0, []int{71, 1} } func (m *ExportStorage_Http) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3664,7 +3664,7 @@ func (m *ExportStorage_S3) Reset() { *m = ExportStorage_S3{} } func (m *ExportStorage_S3) String() string { return proto.CompactTextString(m) } func (*ExportStorage_S3) ProtoMessage() {} func (*ExportStorage_S3) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{71, 2} + return fileDescriptor_api_fa952046dde876d0, []int{71, 2} } func (m *ExportStorage_S3) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3705,7 +3705,7 @@ func (m *ExportStorage_GCS) Reset() { *m = ExportStorage_GCS{} } func (m *ExportStorage_GCS) String() string { return proto.CompactTextString(m) } func (*ExportStorage_GCS) ProtoMessage() {} func (*ExportStorage_GCS) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{71, 3} + return fileDescriptor_api_fa952046dde876d0, []int{71, 3} } func (m *ExportStorage_GCS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3743,7 +3743,7 @@ func (m *ExportStorage_Azure) Reset() { *m = ExportStorage_Azure{} } func (m *ExportStorage_Azure) String() string { return proto.CompactTextString(m) } func (*ExportStorage_Azure) ProtoMessage() {} func (*ExportStorage_Azure) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{71, 4} + return fileDescriptor_api_fa952046dde876d0, []int{71, 4} } func (m *ExportStorage_Azure) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3784,7 +3784,7 @@ func (m *ExportStorage_Workload) Reset() { *m = ExportStorage_Workload{} func (m *ExportStorage_Workload) String() string { return proto.CompactTextString(m) } func (*ExportStorage_Workload) ProtoMessage() {} func (*ExportStorage_Workload) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{71, 5} + return fileDescriptor_api_fa952046dde876d0, []int{71, 5} } func (m *ExportStorage_Workload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3826,7 +3826,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_9083095177d05045, []int{72} + return fileDescriptor_api_fa952046dde876d0, []int{72} } func (m *WriteBatchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3862,7 +3862,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_9083095177d05045, []int{73} + return fileDescriptor_api_fa952046dde876d0, []int{73} } func (m *WriteBatchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3922,7 +3922,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_9083095177d05045, []int{74} + return fileDescriptor_api_fa952046dde876d0, []int{74} } func (m *ExportRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3960,7 +3960,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_9083095177d05045, []int{75} + return fileDescriptor_api_fa952046dde876d0, []int{75} } func (m *BulkOpSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3998,7 +3998,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_9083095177d05045, []int{76} + return fileDescriptor_api_fa952046dde876d0, []int{76} } func (m *ExportResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4039,7 +4039,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_9083095177d05045, []int{76, 0} + return fileDescriptor_api_fa952046dde876d0, []int{76, 0} } func (m *ExportResponse_File) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4091,7 +4091,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_9083095177d05045, []int{77} + return fileDescriptor_api_fa952046dde876d0, []int{77} } func (m *ImportRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4128,7 +4128,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_9083095177d05045, []int{77, 0} + return fileDescriptor_api_fa952046dde876d0, []int{77, 0} } func (m *ImportRequest_File) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4166,7 +4166,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_9083095177d05045, []int{77, 1} + return fileDescriptor_api_fa952046dde876d0, []int{77, 1} } func (m *ImportRequest_TableRekey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4203,7 +4203,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_9083095177d05045, []int{78} + return fileDescriptor_api_fa952046dde876d0, []int{78} } func (m *ImportResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4243,7 +4243,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_9083095177d05045, []int{79} + return fileDescriptor_api_fa952046dde876d0, []int{79} } func (m *AdminScatterRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4280,7 +4280,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_9083095177d05045, []int{80} + return fileDescriptor_api_fa952046dde876d0, []int{80} } func (m *AdminScatterResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4315,7 +4315,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_9083095177d05045, []int{80, 0} + return fileDescriptor_api_fa952046dde876d0, []int{80, 0} } func (m *AdminScatterResponse_Range) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4353,7 +4353,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_9083095177d05045, []int{81} + return fileDescriptor_api_fa952046dde876d0, []int{81} } func (m *AddSSTableRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4389,7 +4389,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_9083095177d05045, []int{82} + return fileDescriptor_api_fa952046dde876d0, []int{82} } func (m *AddSSTableResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4435,7 +4435,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_9083095177d05045, []int{83} + return fileDescriptor_api_fa952046dde876d0, []int{83} } func (m *RefreshRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4471,7 +4471,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_9083095177d05045, []int{84} + return fileDescriptor_api_fa952046dde876d0, []int{84} } func (m *RefreshResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4513,7 +4513,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_9083095177d05045, []int{85} + return fileDescriptor_api_fa952046dde876d0, []int{85} } func (m *RefreshRangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4549,7 +4549,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_9083095177d05045, []int{86} + return fileDescriptor_api_fa952046dde876d0, []int{86} } func (m *RefreshRangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4603,7 +4603,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_9083095177d05045, []int{87} + return fileDescriptor_api_fa952046dde876d0, []int{87} } func (m *SubsumeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4650,7 +4650,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_9083095177d05045, []int{88} + return fileDescriptor_api_fa952046dde876d0, []int{88} } func (m *SubsumeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4687,7 +4687,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_9083095177d05045, []int{89} + return fileDescriptor_api_fa952046dde876d0, []int{89} } func (m *RangeStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4728,7 +4728,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_9083095177d05045, []int{90} + return fileDescriptor_api_fa952046dde876d0, []int{90} } func (m *RangeStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4812,7 +4812,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_9083095177d05045, []int{91} + return fileDescriptor_api_fa952046dde876d0, []int{91} } func (m *RequestUnion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6233,7 +6233,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_9083095177d05045, []int{92} + return fileDescriptor_api_fa952046dde876d0, []int{92} } func (m *ResponseUnion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7642,7 +7642,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_9083095177d05045, []int{93} + return fileDescriptor_api_fa952046dde876d0, []int{93} } func (m *Header) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7680,7 +7680,7 @@ type BatchRequest struct { func (m *BatchRequest) Reset() { *m = BatchRequest{} } func (*BatchRequest) ProtoMessage() {} func (*BatchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{94} + return fileDescriptor_api_fa952046dde876d0, []int{94} } func (m *BatchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7719,7 +7719,7 @@ type BatchResponse struct { func (m *BatchResponse) Reset() { *m = BatchResponse{} } func (*BatchResponse) ProtoMessage() {} func (*BatchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_api_9083095177d05045, []int{95} + return fileDescriptor_api_fa952046dde876d0, []int{95} } func (m *BatchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7780,7 +7780,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_9083095177d05045, []int{95, 0} + return fileDescriptor_api_fa952046dde876d0, []int{95, 0} } func (m *BatchResponse_Header) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7818,7 +7818,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_9083095177d05045, []int{96} + return fileDescriptor_api_fa952046dde876d0, []int{96} } func (m *RangeFeedRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7856,7 +7856,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_9083095177d05045, []int{97} + return fileDescriptor_api_fa952046dde876d0, []int{97} } func (m *RangeFeedValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7899,7 +7899,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_9083095177d05045, []int{98} + return fileDescriptor_api_fa952046dde876d0, []int{98} } func (m *RangeFeedCheckpoint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7938,7 +7938,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_9083095177d05045, []int{99} + return fileDescriptor_api_fa952046dde876d0, []int{99} } func (m *RangeFeedError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7977,7 +7977,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_9083095177d05045, []int{100} + return fileDescriptor_api_fa952046dde876d0, []int{100} } func (m *RangeFeedEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8635,7 +8635,7 @@ func (this *AdminSplitRequest) Equal(that interface{}) bool { if !bytes.Equal(this.SplitKey, that1.SplitKey) { return false } - if this.Manual != that1.Manual { + if !this.ExpirationTime.Equal(&that1.ExpirationTime) { return false } return true @@ -11335,16 +11335,14 @@ func (m *AdminSplitRequest) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintApi(dAtA, i, uint64(len(m.SplitKey))) i += copy(dAtA[i:], m.SplitKey) } - if m.Manual { - dAtA[i] = 0x18 - i++ - if m.Manual { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i++ + dAtA[i] = 0x22 + i++ + i = encodeVarintApi(dAtA, i, uint64(m.ExpirationTime.Size())) + n44, err := m.ExpirationTime.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err } + i += n44 return i, nil } @@ -11366,11 +11364,11 @@ func (m *AdminSplitResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n44, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n45, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n44 + i += n45 return i, nil } @@ -11392,11 +11390,11 @@ func (m *AdminUnsplitRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n45, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n46, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n45 + i += n46 return i, nil } @@ -11418,11 +11416,11 @@ func (m *AdminUnsplitResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n46, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n47, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n46 + i += n47 return i, nil } @@ -11444,11 +11442,11 @@ func (m *AdminMergeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n47, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n48, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n47 + i += n48 return i, nil } @@ -11470,11 +11468,11 @@ func (m *AdminMergeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n48, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n49, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n48 + i += n49 return i, nil } @@ -11496,11 +11494,11 @@ func (m *AdminTransferLeaseRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n49, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n50, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n49 + i += n50 if m.Target != 0 { dAtA[i] = 0x10 i++ @@ -11527,11 +11525,11 @@ func (m *AdminTransferLeaseResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n50, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n51, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n50 + i += n51 return i, nil } @@ -11553,11 +11551,11 @@ func (m *AdminChangeReplicasRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n51, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n52, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n51 + i += n52 if m.ChangeType != 0 { dAtA[i] = 0x10 i++ @@ -11579,11 +11577,11 @@ func (m *AdminChangeReplicasRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.ExpDesc.Size())) - n52, err := m.ExpDesc.MarshalTo(dAtA[i:]) + n53, err := m.ExpDesc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n52 + i += n53 } return i, nil } @@ -11606,20 +11604,20 @@ func (m *AdminChangeReplicasResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n53, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n54, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n53 + i += n54 if m.Desc != nil { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Desc.Size())) - n54, err := m.Desc.MarshalTo(dAtA[i:]) + n55, err := m.Desc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n54 + i += n55 } return i, nil } @@ -11642,11 +11640,11 @@ func (m *AdminRelocateRangeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n55, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n56, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n55 + i += n56 if len(m.Targets) > 0 { for _, msg := range m.Targets { dAtA[i] = 0x12 @@ -11680,11 +11678,11 @@ func (m *AdminRelocateRangeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n56, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n57, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n56 + i += n57 return i, nil } @@ -11706,19 +11704,19 @@ func (m *HeartbeatTxnRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n57, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n58, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n57 + i += n58 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Now.Size())) - n58, err := m.Now.MarshalTo(dAtA[i:]) + n59, err := m.Now.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n58 + i += n59 return i, nil } @@ -11740,11 +11738,11 @@ func (m *HeartbeatTxnResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n59, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n60, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n59 + i += n60 return i, nil } @@ -11766,11 +11764,11 @@ func (m *GCRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n60, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n61, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n60 + i += n61 if len(m.Keys) > 0 { for _, msg := range m.Keys { dAtA[i] = 0x1a @@ -11786,19 +11784,19 @@ func (m *GCRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.Threshold.Size())) - n61, err := m.Threshold.MarshalTo(dAtA[i:]) + n62, err := m.Threshold.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n61 + i += n62 dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.TxnSpanGCThreshold.Size())) - n62, err := m.TxnSpanGCThreshold.MarshalTo(dAtA[i:]) + n63, err := m.TxnSpanGCThreshold.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n62 + i += n63 return i, nil } @@ -11826,11 +11824,11 @@ func (m *GCRequest_GCKey) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Timestamp.Size())) - n63, err := m.Timestamp.MarshalTo(dAtA[i:]) + n64, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n63 + i += n64 return i, nil } @@ -11852,11 +11850,11 @@ func (m *GCResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n64, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n65, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n64 + i += n65 return i, nil } @@ -11878,43 +11876,43 @@ func (m *PushTxnRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n65, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n66, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n65 + i += n66 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.PusherTxn.Size())) - n66, err := m.PusherTxn.MarshalTo(dAtA[i:]) + n67, err := m.PusherTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n66 + i += n67 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.PusheeTxn.Size())) - n67, err := m.PusheeTxn.MarshalTo(dAtA[i:]) + n68, err := m.PusheeTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n67 + i += n68 dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.PushTo.Size())) - n68, err := m.PushTo.MarshalTo(dAtA[i:]) + n69, err := m.PushTo.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n68 + i += n69 dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.DeprecatedNow.Size())) - n69, err := m.DeprecatedNow.MarshalTo(dAtA[i:]) + n70, err := m.DeprecatedNow.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n69 + i += n70 if m.PushType != 0 { dAtA[i] = 0x30 i++ @@ -11961,19 +11959,19 @@ func (m *PushTxnResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n70, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n71, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n70 + i += n71 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.PusheeTxn.Size())) - n71, err := m.PusheeTxn.MarshalTo(dAtA[i:]) + n72, err := m.PusheeTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n71 + i += n72 return i, nil } @@ -11995,19 +11993,19 @@ func (m *RecoverTxnRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n72, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n73, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n72 + i += n73 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Txn.Size())) - n73, err := m.Txn.MarshalTo(dAtA[i:]) + n74, err := m.Txn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n73 + i += n74 if m.ImplicitlyCommitted { dAtA[i] = 0x18 i++ @@ -12039,19 +12037,19 @@ func (m *RecoverTxnResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n74, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n75, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n74 + i += n75 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.RecoveredTxn.Size())) - n75, err := m.RecoveredTxn.MarshalTo(dAtA[i:]) + n76, err := m.RecoveredTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n75 + i += n76 return i, nil } @@ -12073,19 +12071,19 @@ func (m *QueryTxnRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n76, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n77, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n76 + i += n77 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Txn.Size())) - n77, err := m.Txn.MarshalTo(dAtA[i:]) + n78, err := m.Txn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n77 + i += n78 if m.WaitForUpdate { dAtA[i] = 0x18 i++ @@ -12129,19 +12127,19 @@ func (m *QueryTxnResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n78, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n79, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n78 + i += n79 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.QueriedTxn.Size())) - n79, err := m.QueriedTxn.MarshalTo(dAtA[i:]) + n80, err := m.QueriedTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n79 + i += n80 if len(m.WaitingTxns) > 0 { for _, msg := range m.WaitingTxns { dAtA[i] = 0x1a @@ -12175,19 +12173,19 @@ func (m *QueryIntentRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n80, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n81, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n80 + i += n81 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Txn.Size())) - n81, err := m.Txn.MarshalTo(dAtA[i:]) + n82, err := m.Txn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n81 + i += n82 if m.ErrorIfMissing { dAtA[i] = 0x18 i++ @@ -12219,11 +12217,11 @@ func (m *QueryIntentResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n82, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n83, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n82 + i += n83 if m.FoundIntent { dAtA[i] = 0x10 i++ @@ -12255,19 +12253,19 @@ func (m *ResolveIntentRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n83, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n84, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n83 + i += n84 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.IntentTxn.Size())) - n84, err := m.IntentTxn.MarshalTo(dAtA[i:]) + n85, err := m.IntentTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n84 + i += n85 if m.Status != 0 { dAtA[i] = 0x18 i++ @@ -12304,11 +12302,11 @@ func (m *ResolveIntentResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n85, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n86, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n85 + i += n86 return i, nil } @@ -12330,19 +12328,19 @@ func (m *ResolveIntentRangeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n86, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n87, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n86 + i += n87 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.IntentTxn.Size())) - n87, err := m.IntentTxn.MarshalTo(dAtA[i:]) + n88, err := m.IntentTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n87 + i += n88 if m.Status != 0 { dAtA[i] = 0x18 i++ @@ -12361,11 +12359,11 @@ func (m *ResolveIntentRangeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.MinTimestamp.Size())) - n88, err := m.MinTimestamp.MarshalTo(dAtA[i:]) + n89, err := m.MinTimestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n88 + i += n89 return i, nil } @@ -12387,11 +12385,11 @@ func (m *ResolveIntentRangeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n89, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n90, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n89 + i += n90 return i, nil } @@ -12413,19 +12411,19 @@ func (m *MergeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n90, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n91, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n90 + i += n91 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Value.Size())) - n91, err := m.Value.MarshalTo(dAtA[i:]) + n92, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n91 + i += n92 return i, nil } @@ -12447,11 +12445,11 @@ func (m *MergeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n92, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n93, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n92 + i += n93 return i, nil } @@ -12473,11 +12471,11 @@ func (m *TruncateLogRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n93, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n94, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n93 + i += n94 if m.Index != 0 { dAtA[i] = 0x10 i++ @@ -12509,11 +12507,11 @@ func (m *TruncateLogResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n94, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n95, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n94 + i += n95 return i, nil } @@ -12535,36 +12533,36 @@ func (m *RequestLeaseRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n95, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n96, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n95 + i += n96 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Lease.Size())) - n96, err := m.Lease.MarshalTo(dAtA[i:]) + n97, err := m.Lease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n96 + i += n97 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.PrevLease.Size())) - n97, err := m.PrevLease.MarshalTo(dAtA[i:]) + n98, err := m.PrevLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n97 + i += n98 if m.MinProposedTS != nil { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.MinProposedTS.Size())) - n98, err := m.MinProposedTS.MarshalTo(dAtA[i:]) + n99, err := m.MinProposedTS.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n98 + i += n99 } return i, nil } @@ -12587,27 +12585,27 @@ func (m *TransferLeaseRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n99, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n100, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n99 + i += n100 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Lease.Size())) - n100, err := m.Lease.MarshalTo(dAtA[i:]) + n101, err := m.Lease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n100 + i += n101 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.PrevLease.Size())) - n101, err := m.PrevLease.MarshalTo(dAtA[i:]) + n102, err := m.PrevLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n101 + i += n102 return i, nil } @@ -12629,11 +12627,11 @@ func (m *LeaseInfoRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n102, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n103, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n102 + i += n103 return i, nil } @@ -12655,19 +12653,19 @@ func (m *LeaseInfoResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n103, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n104, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n103 + i += n104 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Lease.Size())) - n104, err := m.Lease.MarshalTo(dAtA[i:]) + n105, err := m.Lease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n104 + i += n105 return i, nil } @@ -12689,11 +12687,11 @@ func (m *RequestLeaseResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n105, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n106, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n105 + i += n106 return i, nil } @@ -12715,11 +12713,11 @@ func (m *ComputeChecksumRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n106, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n107, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n106 + i += n107 if m.Version != 0 { dAtA[i] = 0x10 i++ @@ -12771,19 +12769,19 @@ func (m *ComputeChecksumResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n107, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n108, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n107 + i += n108 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.ChecksumID.Size())) - n108, err := m.ChecksumID.MarshalTo(dAtA[i:]) + n109, err := m.ChecksumID.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n108 + i += n109 return i, nil } @@ -12810,58 +12808,58 @@ func (m *ExportStorage) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.LocalFile.Size())) - n109, err := m.LocalFile.MarshalTo(dAtA[i:]) + n110, err := m.LocalFile.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n109 + i += n110 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.HttpPath.Size())) - n110, err := m.HttpPath.MarshalTo(dAtA[i:]) + n111, err := m.HttpPath.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n110 + i += n111 if m.GoogleCloudConfig != nil { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.GoogleCloudConfig.Size())) - n111, err := m.GoogleCloudConfig.MarshalTo(dAtA[i:]) + n112, err := m.GoogleCloudConfig.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n111 + i += n112 } if m.S3Config != nil { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.S3Config.Size())) - n112, err := m.S3Config.MarshalTo(dAtA[i:]) + n113, err := m.S3Config.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n112 + i += n113 } if m.AzureConfig != nil { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.AzureConfig.Size())) - n113, err := m.AzureConfig.MarshalTo(dAtA[i:]) + n114, err := m.AzureConfig.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n113 + i += n114 } if m.WorkloadConfig != nil { dAtA[i] = 0x3a i++ i = encodeVarintApi(dAtA, i, uint64(m.WorkloadConfig.Size())) - n114, err := m.WorkloadConfig.MarshalTo(dAtA[i:]) + n115, err := m.WorkloadConfig.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n114 + i += n115 } return i, nil } @@ -13154,19 +13152,19 @@ func (m *WriteBatchRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n115, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n116, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n115 + i += n116 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.DataSpan.Size())) - n116, err := m.DataSpan.MarshalTo(dAtA[i:]) + n117, err := m.DataSpan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n116 + i += n117 if len(m.Data) > 0 { dAtA[i] = 0x1a i++ @@ -13194,11 +13192,11 @@ func (m *WriteBatchResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n117, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n118, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n117 + i += n118 return i, nil } @@ -13220,27 +13218,27 @@ func (m *ExportRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n118, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n119, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n118 + i += n119 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Storage.Size())) - n119, err := m.Storage.MarshalTo(dAtA[i:]) + n120, err := m.Storage.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n119 + i += n120 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.StartTime.Size())) - n120, err := m.StartTime.MarshalTo(dAtA[i:]) + n121, err := m.StartTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n120 + i += n121 if m.MVCCFilter != 0 { dAtA[i] = 0x20 i++ @@ -13335,11 +13333,11 @@ func (m *ExportResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n121, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n122, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n121 + i += n122 if len(m.Files) > 0 { for _, msg := range m.Files { dAtA[i] = 0x12 @@ -13355,11 +13353,11 @@ func (m *ExportResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.StartTime.Size())) - n122, err := m.StartTime.MarshalTo(dAtA[i:]) + n123, err := m.StartTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n122 + i += n123 return i, nil } @@ -13381,11 +13379,11 @@ func (m *ExportResponse_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n123, err := m.Span.MarshalTo(dAtA[i:]) + n124, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n123 + i += n124 if len(m.Path) > 0 { dAtA[i] = 0x12 i++ @@ -13401,11 +13399,11 @@ func (m *ExportResponse_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.Exported.Size())) - n124, err := m.Exported.MarshalTo(dAtA[i:]) + n125, err := m.Exported.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n124 + i += n125 if len(m.SST) > 0 { dAtA[i] = 0x3a i++ @@ -13433,11 +13431,11 @@ func (m *ImportRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n125, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n126, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n125 + i += n126 if len(m.Files) > 0 { for _, msg := range m.Files { dAtA[i] = 0x12 @@ -13453,11 +13451,11 @@ func (m *ImportRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.DataSpan.Size())) - n126, err := m.DataSpan.MarshalTo(dAtA[i:]) + n127, err := m.DataSpan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n126 + i += n127 if len(m.Rekeys) > 0 { for _, msg := range m.Rekeys { dAtA[i] = 0x2a @@ -13473,11 +13471,11 @@ func (m *ImportRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.EndTime.Size())) - n127, err := m.EndTime.MarshalTo(dAtA[i:]) + n128, err := m.EndTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n127 + i += n128 return i, nil } @@ -13499,11 +13497,11 @@ func (m *ImportRequest_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Dir.Size())) - n128, err := m.Dir.MarshalTo(dAtA[i:]) + n129, err := m.Dir.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n128 + i += n129 if len(m.Path) > 0 { dAtA[i] = 0x12 i++ @@ -13566,19 +13564,19 @@ func (m *ImportResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n129, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n130, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n129 + i += n130 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.Imported.Size())) - n130, err := m.Imported.MarshalTo(dAtA[i:]) + n131, err := m.Imported.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n130 + i += n131 return i, nil } @@ -13600,11 +13598,11 @@ func (m *AdminScatterRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n131, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n132, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n131 + i += n132 if m.RandomizeLeases { dAtA[i] = 0x10 i++ @@ -13636,11 +13634,11 @@ func (m *AdminScatterResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n132, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n133, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n132 + i += n133 if len(m.Ranges) > 0 { for _, msg := range m.Ranges { dAtA[i] = 0x12 @@ -13674,11 +13672,11 @@ func (m *AdminScatterResponse_Range) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n133, err := m.Span.MarshalTo(dAtA[i:]) + n134, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n133 + i += n134 return i, nil } @@ -13700,11 +13698,11 @@ func (m *AddSSTableRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n134, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n135, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n134 + i += n135 if len(m.Data) > 0 { dAtA[i] = 0x12 i++ @@ -13732,11 +13730,11 @@ func (m *AddSSTableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n135, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n136, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n135 + i += n136 return i, nil } @@ -13758,11 +13756,11 @@ func (m *RefreshRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n136, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n137, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n136 + i += n137 if m.Write { dAtA[i] = 0x10 i++ @@ -13794,11 +13792,11 @@ func (m *RefreshResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n137, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n138, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n137 + i += n138 return i, nil } @@ -13820,11 +13818,11 @@ func (m *RefreshRangeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n138, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n139, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n138 + i += n139 if m.Write { dAtA[i] = 0x10 i++ @@ -13856,11 +13854,11 @@ func (m *RefreshRangeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n139, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n140, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n139 + i += n140 return i, nil } @@ -13882,28 +13880,28 @@ func (m *SubsumeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n140, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n141, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n140 + i += n141 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.LeftDesc.Size())) - n141, err := m.LeftDesc.MarshalTo(dAtA[i:]) + n142, err := m.LeftDesc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n141 + i += n142 if m.RightDesc != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.RightDesc.Size())) - n142, err := m.RightDesc.MarshalTo(dAtA[i:]) + n143, err := m.RightDesc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n142 + i += n143 } return i, nil } @@ -13926,19 +13924,19 @@ func (m *SubsumeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n143, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n144, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n143 + i += n144 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.MVCCStats.Size())) - n144, err := m.MVCCStats.MarshalTo(dAtA[i:]) + n145, err := m.MVCCStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n144 + i += n145 if m.LeaseAppliedIndex != 0 { dAtA[i] = 0x20 i++ @@ -13947,11 +13945,11 @@ func (m *SubsumeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.FreezeStart.Size())) - n145, err := m.FreezeStart.MarshalTo(dAtA[i:]) + n146, err := m.FreezeStart.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n145 + i += n146 return i, nil } @@ -13973,11 +13971,11 @@ func (m *RangeStatsRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestHeader.Size())) - n146, err := m.RequestHeader.MarshalTo(dAtA[i:]) + n147, err := m.RequestHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n146 + i += n147 return i, nil } @@ -13999,19 +13997,19 @@ func (m *RangeStatsResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n147, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n148, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n147 + i += n148 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.MVCCStats.Size())) - n148, err := m.MVCCStats.MarshalTo(dAtA[i:]) + n149, err := m.MVCCStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n148 + i += n149 if m.QueriesPerSecond != 0 { dAtA[i] = 0x19 i++ @@ -14037,11 +14035,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { var l int _ = l if m.Value != nil { - nn149, err := m.Value.MarshalTo(dAtA[i:]) + nn150, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += nn149 + i += nn150 } return i, nil } @@ -14052,11 +14050,11 @@ func (m *RequestUnion_Get) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Get.Size())) - n150, err := m.Get.MarshalTo(dAtA[i:]) + n151, err := m.Get.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n150 + i += n151 } return i, nil } @@ -14066,11 +14064,11 @@ func (m *RequestUnion_Put) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Put.Size())) - n151, err := m.Put.MarshalTo(dAtA[i:]) + n152, err := m.Put.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n151 + i += n152 } return i, nil } @@ -14080,11 +14078,11 @@ func (m *RequestUnion_ConditionalPut) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.ConditionalPut.Size())) - n152, err := m.ConditionalPut.MarshalTo(dAtA[i:]) + n153, err := m.ConditionalPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n152 + i += n153 } return i, nil } @@ -14094,11 +14092,11 @@ func (m *RequestUnion_Increment) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.Increment.Size())) - n153, err := m.Increment.MarshalTo(dAtA[i:]) + n154, err := m.Increment.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n153 + i += n154 } return i, nil } @@ -14108,11 +14106,11 @@ func (m *RequestUnion_Delete) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Delete.Size())) - n154, err := m.Delete.MarshalTo(dAtA[i:]) + n155, err := m.Delete.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n154 + i += n155 } return i, nil } @@ -14122,11 +14120,11 @@ func (m *RequestUnion_DeleteRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.DeleteRange.Size())) - n155, err := m.DeleteRange.MarshalTo(dAtA[i:]) + n156, err := m.DeleteRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n155 + i += n156 } return i, nil } @@ -14136,11 +14134,11 @@ func (m *RequestUnion_Scan) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x3a i++ i = encodeVarintApi(dAtA, i, uint64(m.Scan.Size())) - n156, err := m.Scan.MarshalTo(dAtA[i:]) + n157, err := m.Scan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n156 + i += n157 } return i, nil } @@ -14150,11 +14148,11 @@ func (m *RequestUnion_BeginTransaction) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x42 i++ i = encodeVarintApi(dAtA, i, uint64(m.BeginTransaction.Size())) - n157, err := m.BeginTransaction.MarshalTo(dAtA[i:]) + n158, err := m.BeginTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n157 + i += n158 } return i, nil } @@ -14164,11 +14162,11 @@ func (m *RequestUnion_EndTransaction) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4a i++ i = encodeVarintApi(dAtA, i, uint64(m.EndTransaction.Size())) - n158, err := m.EndTransaction.MarshalTo(dAtA[i:]) + n159, err := m.EndTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n158 + i += n159 } return i, nil } @@ -14178,11 +14176,11 @@ func (m *RequestUnion_AdminSplit) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x52 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminSplit.Size())) - n159, err := m.AdminSplit.MarshalTo(dAtA[i:]) + n160, err := m.AdminSplit.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n159 + i += n160 } return i, nil } @@ -14192,11 +14190,11 @@ func (m *RequestUnion_AdminMerge) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x5a i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminMerge.Size())) - n160, err := m.AdminMerge.MarshalTo(dAtA[i:]) + n161, err := m.AdminMerge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n160 + i += n161 } return i, nil } @@ -14206,11 +14204,11 @@ func (m *RequestUnion_HeartbeatTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x62 i++ i = encodeVarintApi(dAtA, i, uint64(m.HeartbeatTxn.Size())) - n161, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) + n162, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n161 + i += n162 } return i, nil } @@ -14220,11 +14218,11 @@ func (m *RequestUnion_Gc) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x6a i++ i = encodeVarintApi(dAtA, i, uint64(m.Gc.Size())) - n162, err := m.Gc.MarshalTo(dAtA[i:]) + n163, err := m.Gc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n162 + i += n163 } return i, nil } @@ -14234,11 +14232,11 @@ func (m *RequestUnion_PushTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x72 i++ i = encodeVarintApi(dAtA, i, uint64(m.PushTxn.Size())) - n163, err := m.PushTxn.MarshalTo(dAtA[i:]) + n164, err := m.PushTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n163 + i += n164 } return i, nil } @@ -14250,11 +14248,11 @@ func (m *RequestUnion_ResolveIntent) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntent.Size())) - n164, err := m.ResolveIntent.MarshalTo(dAtA[i:]) + n165, err := m.ResolveIntent.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n164 + i += n165 } return i, nil } @@ -14266,11 +14264,11 @@ func (m *RequestUnion_ResolveIntentRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntentRange.Size())) - n165, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) + n166, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n165 + i += n166 } return i, nil } @@ -14282,11 +14280,11 @@ func (m *RequestUnion_Merge) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.Merge.Size())) - n166, err := m.Merge.MarshalTo(dAtA[i:]) + n167, err := m.Merge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n166 + i += n167 } return i, nil } @@ -14298,11 +14296,11 @@ func (m *RequestUnion_TruncateLog) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.TruncateLog.Size())) - n167, err := m.TruncateLog.MarshalTo(dAtA[i:]) + n168, err := m.TruncateLog.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n167 + i += n168 } return i, nil } @@ -14314,11 +14312,11 @@ func (m *RequestUnion_RequestLease) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestLease.Size())) - n168, err := m.RequestLease.MarshalTo(dAtA[i:]) + n169, err := m.RequestLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n168 + i += n169 } return i, nil } @@ -14330,11 +14328,11 @@ func (m *RequestUnion_ReverseScan) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ReverseScan.Size())) - n169, err := m.ReverseScan.MarshalTo(dAtA[i:]) + n170, err := m.ReverseScan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n169 + i += n170 } return i, nil } @@ -14346,11 +14344,11 @@ func (m *RequestUnion_ComputeChecksum) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ComputeChecksum.Size())) - n170, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) + n171, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n170 + i += n171 } return i, nil } @@ -14362,11 +14360,11 @@ func (m *RequestUnion_CheckConsistency) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.CheckConsistency.Size())) - n171, err := m.CheckConsistency.MarshalTo(dAtA[i:]) + n172, err := m.CheckConsistency.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n171 + i += n172 } return i, nil } @@ -14378,11 +14376,11 @@ func (m *RequestUnion_InitPut) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.InitPut.Size())) - n172, err := m.InitPut.MarshalTo(dAtA[i:]) + n173, err := m.InitPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n172 + i += n173 } return i, nil } @@ -14394,11 +14392,11 @@ func (m *RequestUnion_TransferLease) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.TransferLease.Size())) - n173, err := m.TransferLease.MarshalTo(dAtA[i:]) + n174, err := m.TransferLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n173 + i += n174 } return i, nil } @@ -14410,11 +14408,11 @@ func (m *RequestUnion_AdminTransferLease) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminTransferLease.Size())) - n174, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) + n175, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n174 + i += n175 } return i, nil } @@ -14426,11 +14424,11 @@ func (m *RequestUnion_LeaseInfo) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.LeaseInfo.Size())) - n175, err := m.LeaseInfo.MarshalTo(dAtA[i:]) + n176, err := m.LeaseInfo.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n175 + i += n176 } return i, nil } @@ -14442,11 +14440,11 @@ func (m *RequestUnion_WriteBatch) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.WriteBatch.Size())) - n176, err := m.WriteBatch.MarshalTo(dAtA[i:]) + n177, err := m.WriteBatch.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n176 + i += n177 } return i, nil } @@ -14458,11 +14456,11 @@ func (m *RequestUnion_Export) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Export.Size())) - n177, err := m.Export.MarshalTo(dAtA[i:]) + n178, err := m.Export.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n177 + i += n178 } return i, nil } @@ -14474,11 +14472,11 @@ func (m *RequestUnion_QueryTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.QueryTxn.Size())) - n178, err := m.QueryTxn.MarshalTo(dAtA[i:]) + n179, err := m.QueryTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n178 + i += n179 } return i, nil } @@ -14490,11 +14488,11 @@ func (m *RequestUnion_Import) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Import.Size())) - n179, err := m.Import.MarshalTo(dAtA[i:]) + n180, err := m.Import.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n179 + i += n180 } return i, nil } @@ -14506,11 +14504,11 @@ func (m *RequestUnion_AdminChangeReplicas) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminChangeReplicas.Size())) - n180, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) + n181, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n180 + i += n181 } return i, nil } @@ -14522,11 +14520,11 @@ func (m *RequestUnion_AdminScatter) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminScatter.Size())) - n181, err := m.AdminScatter.MarshalTo(dAtA[i:]) + n182, err := m.AdminScatter.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n181 + i += n182 } return i, nil } @@ -14538,11 +14536,11 @@ func (m *RequestUnion_AddSstable) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AddSstable.Size())) - n182, err := m.AddSstable.MarshalTo(dAtA[i:]) + n183, err := m.AddSstable.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n182 + i += n183 } return i, nil } @@ -14554,11 +14552,11 @@ func (m *RequestUnion_ClearRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.ClearRange.Size())) - n183, err := m.ClearRange.MarshalTo(dAtA[i:]) + n184, err := m.ClearRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n183 + i += n184 } return i, nil } @@ -14570,11 +14568,11 @@ func (m *RequestUnion_RecomputeStats) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RecomputeStats.Size())) - n184, err := m.RecomputeStats.MarshalTo(dAtA[i:]) + n185, err := m.RecomputeStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n184 + i += n185 } return i, nil } @@ -14586,11 +14584,11 @@ func (m *RequestUnion_Refresh) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Refresh.Size())) - n185, err := m.Refresh.MarshalTo(dAtA[i:]) + n186, err := m.Refresh.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n185 + i += n186 } return i, nil } @@ -14602,11 +14600,11 @@ func (m *RequestUnion_RefreshRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RefreshRange.Size())) - n186, err := m.RefreshRange.MarshalTo(dAtA[i:]) + n187, err := m.RefreshRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n186 + i += n187 } return i, nil } @@ -14618,11 +14616,11 @@ func (m *RequestUnion_QueryIntent) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.QueryIntent.Size())) - n187, err := m.QueryIntent.MarshalTo(dAtA[i:]) + n188, err := m.QueryIntent.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n187 + i += n188 } return i, nil } @@ -14634,11 +14632,11 @@ func (m *RequestUnion_Subsume) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Subsume.Size())) - n188, err := m.Subsume.MarshalTo(dAtA[i:]) + n189, err := m.Subsume.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n188 + i += n189 } return i, nil } @@ -14650,11 +14648,11 @@ func (m *RequestUnion_RangeStats) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RangeStats.Size())) - n189, err := m.RangeStats.MarshalTo(dAtA[i:]) + n190, err := m.RangeStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n189 + i += n190 } return i, nil } @@ -14666,11 +14664,11 @@ func (m *RequestUnion_AdminRelocateRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminRelocateRange.Size())) - n190, err := m.AdminRelocateRange.MarshalTo(dAtA[i:]) + n191, err := m.AdminRelocateRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n190 + i += n191 } return i, nil } @@ -14682,11 +14680,11 @@ func (m *RequestUnion_RecoverTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RecoverTxn.Size())) - n191, err := m.RecoverTxn.MarshalTo(dAtA[i:]) + n192, err := m.RecoverTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n191 + i += n192 } return i, nil } @@ -14698,11 +14696,11 @@ func (m *RequestUnion_AdminUnsplit) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminUnsplit.Size())) - n192, err := m.AdminUnsplit.MarshalTo(dAtA[i:]) + n193, err := m.AdminUnsplit.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n192 + i += n193 } return i, nil } @@ -14722,11 +14720,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { var l int _ = l if m.Value != nil { - nn193, err := m.Value.MarshalTo(dAtA[i:]) + nn194, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += nn193 + i += nn194 } return i, nil } @@ -14737,11 +14735,11 @@ func (m *ResponseUnion_Get) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Get.Size())) - n194, err := m.Get.MarshalTo(dAtA[i:]) + n195, err := m.Get.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n194 + i += n195 } return i, nil } @@ -14751,11 +14749,11 @@ func (m *ResponseUnion_Put) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Put.Size())) - n195, err := m.Put.MarshalTo(dAtA[i:]) + n196, err := m.Put.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n195 + i += n196 } return i, nil } @@ -14765,11 +14763,11 @@ func (m *ResponseUnion_ConditionalPut) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.ConditionalPut.Size())) - n196, err := m.ConditionalPut.MarshalTo(dAtA[i:]) + n197, err := m.ConditionalPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n196 + i += n197 } return i, nil } @@ -14779,11 +14777,11 @@ func (m *ResponseUnion_Increment) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.Increment.Size())) - n197, err := m.Increment.MarshalTo(dAtA[i:]) + n198, err := m.Increment.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n197 + i += n198 } return i, nil } @@ -14793,11 +14791,11 @@ func (m *ResponseUnion_Delete) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Delete.Size())) - n198, err := m.Delete.MarshalTo(dAtA[i:]) + n199, err := m.Delete.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n198 + i += n199 } return i, nil } @@ -14807,11 +14805,11 @@ func (m *ResponseUnion_DeleteRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.DeleteRange.Size())) - n199, err := m.DeleteRange.MarshalTo(dAtA[i:]) + n200, err := m.DeleteRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n199 + i += n200 } return i, nil } @@ -14821,11 +14819,11 @@ func (m *ResponseUnion_Scan) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x3a i++ i = encodeVarintApi(dAtA, i, uint64(m.Scan.Size())) - n200, err := m.Scan.MarshalTo(dAtA[i:]) + n201, err := m.Scan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n200 + i += n201 } return i, nil } @@ -14835,11 +14833,11 @@ func (m *ResponseUnion_BeginTransaction) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x42 i++ i = encodeVarintApi(dAtA, i, uint64(m.BeginTransaction.Size())) - n201, err := m.BeginTransaction.MarshalTo(dAtA[i:]) + n202, err := m.BeginTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n201 + i += n202 } return i, nil } @@ -14849,11 +14847,11 @@ func (m *ResponseUnion_EndTransaction) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4a i++ i = encodeVarintApi(dAtA, i, uint64(m.EndTransaction.Size())) - n202, err := m.EndTransaction.MarshalTo(dAtA[i:]) + n203, err := m.EndTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n202 + i += n203 } return i, nil } @@ -14863,11 +14861,11 @@ func (m *ResponseUnion_AdminSplit) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x52 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminSplit.Size())) - n203, err := m.AdminSplit.MarshalTo(dAtA[i:]) + n204, err := m.AdminSplit.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n203 + i += n204 } return i, nil } @@ -14877,11 +14875,11 @@ func (m *ResponseUnion_AdminMerge) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x5a i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminMerge.Size())) - n204, err := m.AdminMerge.MarshalTo(dAtA[i:]) + n205, err := m.AdminMerge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n204 + i += n205 } return i, nil } @@ -14891,11 +14889,11 @@ func (m *ResponseUnion_HeartbeatTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x62 i++ i = encodeVarintApi(dAtA, i, uint64(m.HeartbeatTxn.Size())) - n205, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) + n206, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n205 + i += n206 } return i, nil } @@ -14905,11 +14903,11 @@ func (m *ResponseUnion_Gc) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x6a i++ i = encodeVarintApi(dAtA, i, uint64(m.Gc.Size())) - n206, err := m.Gc.MarshalTo(dAtA[i:]) + n207, err := m.Gc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n206 + i += n207 } return i, nil } @@ -14919,11 +14917,11 @@ func (m *ResponseUnion_PushTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x72 i++ i = encodeVarintApi(dAtA, i, uint64(m.PushTxn.Size())) - n207, err := m.PushTxn.MarshalTo(dAtA[i:]) + n208, err := m.PushTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n207 + i += n208 } return i, nil } @@ -14935,11 +14933,11 @@ func (m *ResponseUnion_ResolveIntent) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntent.Size())) - n208, err := m.ResolveIntent.MarshalTo(dAtA[i:]) + n209, err := m.ResolveIntent.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n208 + i += n209 } return i, nil } @@ -14951,11 +14949,11 @@ func (m *ResponseUnion_ResolveIntentRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntentRange.Size())) - n209, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) + n210, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n209 + i += n210 } return i, nil } @@ -14967,11 +14965,11 @@ func (m *ResponseUnion_Merge) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.Merge.Size())) - n210, err := m.Merge.MarshalTo(dAtA[i:]) + n211, err := m.Merge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n210 + i += n211 } return i, nil } @@ -14983,11 +14981,11 @@ func (m *ResponseUnion_TruncateLog) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.TruncateLog.Size())) - n211, err := m.TruncateLog.MarshalTo(dAtA[i:]) + n212, err := m.TruncateLog.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n211 + i += n212 } return i, nil } @@ -14999,11 +14997,11 @@ func (m *ResponseUnion_RequestLease) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestLease.Size())) - n212, err := m.RequestLease.MarshalTo(dAtA[i:]) + n213, err := m.RequestLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n212 + i += n213 } return i, nil } @@ -15015,11 +15013,11 @@ func (m *ResponseUnion_ReverseScan) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ReverseScan.Size())) - n213, err := m.ReverseScan.MarshalTo(dAtA[i:]) + n214, err := m.ReverseScan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n213 + i += n214 } return i, nil } @@ -15031,11 +15029,11 @@ func (m *ResponseUnion_ComputeChecksum) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ComputeChecksum.Size())) - n214, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) + n215, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n214 + i += n215 } return i, nil } @@ -15047,11 +15045,11 @@ func (m *ResponseUnion_CheckConsistency) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.CheckConsistency.Size())) - n215, err := m.CheckConsistency.MarshalTo(dAtA[i:]) + n216, err := m.CheckConsistency.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n215 + i += n216 } return i, nil } @@ -15063,11 +15061,11 @@ func (m *ResponseUnion_InitPut) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.InitPut.Size())) - n216, err := m.InitPut.MarshalTo(dAtA[i:]) + n217, err := m.InitPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n216 + i += n217 } return i, nil } @@ -15079,11 +15077,11 @@ func (m *ResponseUnion_AdminTransferLease) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminTransferLease.Size())) - n217, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) + n218, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n217 + i += n218 } return i, nil } @@ -15095,11 +15093,11 @@ func (m *ResponseUnion_LeaseInfo) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.LeaseInfo.Size())) - n218, err := m.LeaseInfo.MarshalTo(dAtA[i:]) + n219, err := m.LeaseInfo.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n218 + i += n219 } return i, nil } @@ -15111,11 +15109,11 @@ func (m *ResponseUnion_WriteBatch) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.WriteBatch.Size())) - n219, err := m.WriteBatch.MarshalTo(dAtA[i:]) + n220, err := m.WriteBatch.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n219 + i += n220 } return i, nil } @@ -15127,11 +15125,11 @@ func (m *ResponseUnion_Export) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Export.Size())) - n220, err := m.Export.MarshalTo(dAtA[i:]) + n221, err := m.Export.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n220 + i += n221 } return i, nil } @@ -15143,11 +15141,11 @@ func (m *ResponseUnion_QueryTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.QueryTxn.Size())) - n221, err := m.QueryTxn.MarshalTo(dAtA[i:]) + n222, err := m.QueryTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n221 + i += n222 } return i, nil } @@ -15159,11 +15157,11 @@ func (m *ResponseUnion_Import) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Import.Size())) - n222, err := m.Import.MarshalTo(dAtA[i:]) + n223, err := m.Import.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n222 + i += n223 } return i, nil } @@ -15175,11 +15173,11 @@ func (m *ResponseUnion_AdminChangeReplicas) MarshalTo(dAtA []byte) (int, error) dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminChangeReplicas.Size())) - n223, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) + n224, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n223 + i += n224 } return i, nil } @@ -15191,11 +15189,11 @@ func (m *ResponseUnion_AdminScatter) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminScatter.Size())) - n224, err := m.AdminScatter.MarshalTo(dAtA[i:]) + n225, err := m.AdminScatter.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n224 + i += n225 } return i, nil } @@ -15207,11 +15205,11 @@ func (m *ResponseUnion_AddSstable) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AddSstable.Size())) - n225, err := m.AddSstable.MarshalTo(dAtA[i:]) + n226, err := m.AddSstable.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n225 + i += n226 } return i, nil } @@ -15223,11 +15221,11 @@ func (m *ResponseUnion_ClearRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.ClearRange.Size())) - n226, err := m.ClearRange.MarshalTo(dAtA[i:]) + n227, err := m.ClearRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n226 + i += n227 } return i, nil } @@ -15239,11 +15237,11 @@ func (m *ResponseUnion_RecomputeStats) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RecomputeStats.Size())) - n227, err := m.RecomputeStats.MarshalTo(dAtA[i:]) + n228, err := m.RecomputeStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n227 + i += n228 } return i, nil } @@ -15255,11 +15253,11 @@ func (m *ResponseUnion_Refresh) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Refresh.Size())) - n228, err := m.Refresh.MarshalTo(dAtA[i:]) + n229, err := m.Refresh.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n228 + i += n229 } return i, nil } @@ -15271,11 +15269,11 @@ func (m *ResponseUnion_RefreshRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RefreshRange.Size())) - n229, err := m.RefreshRange.MarshalTo(dAtA[i:]) + n230, err := m.RefreshRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n229 + i += n230 } return i, nil } @@ -15287,11 +15285,11 @@ func (m *ResponseUnion_QueryIntent) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.QueryIntent.Size())) - n230, err := m.QueryIntent.MarshalTo(dAtA[i:]) + n231, err := m.QueryIntent.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n230 + i += n231 } return i, nil } @@ -15303,11 +15301,11 @@ func (m *ResponseUnion_Subsume) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Subsume.Size())) - n231, err := m.Subsume.MarshalTo(dAtA[i:]) + n232, err := m.Subsume.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n231 + i += n232 } return i, nil } @@ -15319,11 +15317,11 @@ func (m *ResponseUnion_RangeStats) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RangeStats.Size())) - n232, err := m.RangeStats.MarshalTo(dAtA[i:]) + n233, err := m.RangeStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n232 + i += n233 } return i, nil } @@ -15335,11 +15333,11 @@ func (m *ResponseUnion_AdminRelocateRange) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminRelocateRange.Size())) - n233, err := m.AdminRelocateRange.MarshalTo(dAtA[i:]) + n234, err := m.AdminRelocateRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n233 + i += n234 } return i, nil } @@ -15351,11 +15349,11 @@ func (m *ResponseUnion_RecoverTxn) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RecoverTxn.Size())) - n234, err := m.RecoverTxn.MarshalTo(dAtA[i:]) + n235, err := m.RecoverTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n234 + i += n235 } return i, nil } @@ -15367,11 +15365,11 @@ func (m *ResponseUnion_AdminUnsplit) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminUnsplit.Size())) - n235, err := m.AdminUnsplit.MarshalTo(dAtA[i:]) + n236, err := m.AdminUnsplit.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n235 + i += n236 } return i, nil } @@ -15393,19 +15391,19 @@ func (m *Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Timestamp.Size())) - n236, err := m.Timestamp.MarshalTo(dAtA[i:]) + n237, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n236 + i += n237 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Replica.Size())) - n237, err := m.Replica.MarshalTo(dAtA[i:]) + n238, err := m.Replica.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n237 + i += n238 if m.RangeID != 0 { dAtA[i] = 0x18 i++ @@ -15421,11 +15419,11 @@ func (m *Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Txn.Size())) - n238, err := m.Txn.MarshalTo(dAtA[i:]) + n239, err := m.Txn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n238 + i += n239 } if m.ReadConsistency != 0 { dAtA[i] = 0x30 @@ -15466,11 +15464,11 @@ func (m *Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x62 i++ i = encodeVarintApi(dAtA, i, uint64(m.ScanOptions.Size())) - n239, err := m.ScanOptions.MarshalTo(dAtA[i:]) + n240, err := m.ScanOptions.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n239 + i += n240 } if m.AsyncConsensus { dAtA[i] = 0x68 @@ -15503,11 +15501,11 @@ func (m *BatchRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Header.Size())) - n240, err := m.Header.MarshalTo(dAtA[i:]) + n241, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n240 + i += n241 if len(m.Requests) > 0 { for _, msg := range m.Requests { dAtA[i] = 0x12 @@ -15541,11 +15539,11 @@ func (m *BatchResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.BatchResponse_Header.Size())) - n241, err := m.BatchResponse_Header.MarshalTo(dAtA[i:]) + n242, err := m.BatchResponse_Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n241 + i += n242 if len(m.Responses) > 0 { for _, msg := range m.Responses { dAtA[i] = 0x12 @@ -15580,38 +15578,38 @@ func (m *BatchResponse_Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Error.Size())) - n242, err := m.Error.MarshalTo(dAtA[i:]) + n243, err := m.Error.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n242 + i += n243 } dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Timestamp.Size())) - n243, err := m.Timestamp.MarshalTo(dAtA[i:]) + n244, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n243 + i += n244 if m.Txn != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.Txn.Size())) - n244, err := m.Txn.MarshalTo(dAtA[i:]) + n245, err := m.Txn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n244 + i += n245 } dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Now.Size())) - n245, err := m.Now.MarshalTo(dAtA[i:]) + n246, err := m.Now.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n245 + i += n246 if len(m.CollectedSpans) > 0 { for _, msg := range m.CollectedSpans { dAtA[i] = 0x32 @@ -15645,19 +15643,19 @@ func (m *RangeFeedRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Header.Size())) - n246, err := m.Header.MarshalTo(dAtA[i:]) + n247, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n246 + i += n247 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n247, err := m.Span.MarshalTo(dAtA[i:]) + n248, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n247 + i += n248 return i, nil } @@ -15685,11 +15683,11 @@ func (m *RangeFeedValue) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Value.Size())) - n248, err := m.Value.MarshalTo(dAtA[i:]) + n249, err := m.Value.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n248 + i += n249 return i, nil } @@ -15711,19 +15709,19 @@ func (m *RangeFeedCheckpoint) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n249, err := m.Span.MarshalTo(dAtA[i:]) + n250, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n249 + i += n250 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolvedTS.Size())) - n250, err := m.ResolvedTS.MarshalTo(dAtA[i:]) + n251, err := m.ResolvedTS.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n250 + i += n251 return i, nil } @@ -15745,11 +15743,11 @@ func (m *RangeFeedError) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Error.Size())) - n251, err := m.Error.MarshalTo(dAtA[i:]) + n252, err := m.Error.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n251 + i += n252 return i, nil } @@ -15772,31 +15770,31 @@ func (m *RangeFeedEvent) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Val.Size())) - n252, err := m.Val.MarshalTo(dAtA[i:]) + n253, err := m.Val.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n252 + i += n253 } if m.Checkpoint != nil { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Checkpoint.Size())) - n253, err := m.Checkpoint.MarshalTo(dAtA[i:]) + n254, err := m.Checkpoint.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n253 + i += n254 } if m.Error != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.Error.Size())) - n254, err := m.Error.MarshalTo(dAtA[i:]) + n255, err := m.Error.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n254 + i += n255 } return i, nil } @@ -16383,9 +16381,8 @@ func (m *AdminSplitRequest) Size() (n int) { if l > 0 { n += 1 + l + sovApi(uint64(l)) } - if m.Manual { - n += 2 - } + l = m.ExpirationTime.Size() + n += 1 + l + sovApi(uint64(l)) return n } @@ -22820,11 +22817,11 @@ func (m *AdminSplitRequest) Unmarshal(dAtA []byte) error { m.SplitKey = []byte{} } iNdEx = postIndex - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Manual", wireType) + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ExpirationTime", wireType) } - var v int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowApi @@ -22834,12 +22831,22 @@ func (m *AdminSplitRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= (int(b) & 0x7F) << shift + msglen |= (int(b) & 0x7F) << shift if b < 0x80 { break } } - m.Manual = bool(v != 0) + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.ExpirationTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -35656,428 +35663,429 @@ var ( ErrIntOverflowApi = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("roachpb/api.proto", fileDescriptor_api_9083095177d05045) } +func init() { proto.RegisterFile("roachpb/api.proto", fileDescriptor_api_fa952046dde876d0) } -var fileDescriptor_api_9083095177d05045 = []byte{ - // 6714 bytes of a gzipped FileDescriptorProto +var fileDescriptor_api_fa952046dde876d0 = []byte{ + // 6728 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7d, 0x5b, 0x6c, 0x23, 0xc9, - 0x75, 0xb6, 0x9a, 0xa4, 0x28, 0xf2, 0xf0, 0xa2, 0x56, 0x69, 0x2e, 0x1c, 0xed, 0xee, 0x48, 0xc3, + 0x75, 0xb6, 0x9a, 0xa4, 0x24, 0xf2, 0xf0, 0xa2, 0x56, 0x69, 0x2e, 0x1c, 0xcd, 0xec, 0x48, 0xc3, 0xb9, 0xee, 0xec, 0xae, 0xc6, 0xa3, 0xf1, 0xda, 0xfe, 0x77, 0xed, 0xb5, 0x45, 0x8a, 0x33, 0xe4, - 0x68, 0x74, 0xd9, 0x26, 0x35, 0xeb, 0x5d, 0xff, 0xfb, 0xb7, 0x5b, 0xdd, 0x25, 0xaa, 0x3d, 0x64, - 0x37, 0xa7, 0xbb, 0x39, 0x92, 0x06, 0xf8, 0x11, 0x20, 0x2f, 0x4e, 0x0c, 0xc3, 0xc8, 0x43, 0x10, - 0x04, 0x76, 0x82, 0x18, 0xb0, 0x81, 0x00, 0x0e, 0x62, 0xc4, 0x81, 0x81, 0x00, 0x41, 0x02, 0x3f, - 0x24, 0x0f, 0x0b, 0xc3, 0x0f, 0x46, 0x10, 0x07, 0x46, 0x1e, 0x84, 0x44, 0x49, 0x60, 0x23, 0xaf, - 0x79, 0x08, 0xb0, 0x0f, 0x49, 0x50, 0x97, 0xbe, 0x90, 0x6c, 0x5e, 0x24, 0xf7, 0x22, 0x1b, 0xe4, - 0x49, 0xac, 0x53, 0x75, 0x4e, 0xd7, 0xe5, 0xd4, 0xa9, 0xf3, 0x55, 0x9d, 0x2a, 0xc1, 0x9c, 0x65, - 0x2a, 0xea, 0x7e, 0x67, 0xf7, 0x8e, 0xd2, 0xd1, 0x97, 0x3b, 0x96, 0xe9, 0x98, 0x68, 0x4e, 0x35, - 0xd5, 0x27, 0x94, 0xbc, 0xcc, 0x33, 0x17, 0x90, 0x5b, 0x4a, 0x53, 0x1c, 0x85, 0x15, 0x5b, 0x38, - 0xe7, 0xd2, 0xb0, 0x65, 0x99, 0x96, 0xcd, 0xa9, 0x17, 0x5c, 0x6a, 0x1b, 0x3b, 0x4a, 0xa0, 0x74, - 0xd1, 0x76, 0x4c, 0x4b, 0x69, 0xe2, 0x3b, 0xd8, 0x68, 0xea, 0x86, 0xfb, 0x87, 0x94, 0x7b, 0xa6, - 0xaa, 0xbc, 0xcc, 0xd5, 0x51, 0x65, 0xee, 0xf1, 0x42, 0x85, 0xae, 0xa3, 0xb7, 0xee, 0xec, 0xb7, - 0xd4, 0x3b, 0x8e, 0xde, 0xc6, 0xb6, 0xa3, 0xb4, 0x3b, 0x3c, 0x67, 0x89, 0xe6, 0x38, 0x96, 0xa2, - 0xea, 0x46, 0xf3, 0x8e, 0x85, 0x55, 0xd3, 0xd2, 0xb0, 0x26, 0xdb, 0x1d, 0xc5, 0x70, 0xab, 0xdc, - 0x34, 0x9b, 0x26, 0xfd, 0x79, 0x87, 0xfc, 0x62, 0xd4, 0xe2, 0xaf, 0x41, 0x5a, 0x52, 0x8c, 0x26, - 0xae, 0x19, 0x7b, 0x26, 0xfa, 0x2c, 0x24, 0x34, 0x6c, 0xab, 0x05, 0x61, 0x49, 0xb8, 0x95, 0x59, - 0x29, 0x2e, 0x0f, 0xf4, 0xc5, 0x32, 0x2d, 0xbb, 0x86, 0x6d, 0xd5, 0xd2, 0x3b, 0x8e, 0x69, 0x95, - 0x12, 0x1f, 0x1c, 0x2f, 0x4e, 0x49, 0x94, 0x0b, 0x7d, 0x12, 0xa6, 0x5b, 0x58, 0xb1, 0x71, 0x21, - 0x46, 0xd9, 0x0b, 0x21, 0xec, 0x8f, 0x48, 0x3e, 0x67, 0x62, 0x85, 0x8b, 0x7f, 0x25, 0x40, 0x4e, - 0xc2, 0x4f, 0xbb, 0xd8, 0x76, 0xaa, 0x58, 0xd1, 0xb0, 0x85, 0x2e, 0x41, 0xfc, 0x09, 0x3e, 0x2a, - 0xc4, 0x97, 0x84, 0x5b, 0xd9, 0xd2, 0xcc, 0x87, 0xc7, 0x8b, 0xf1, 0x75, 0x7c, 0x24, 0x11, 0x1a, - 0x5a, 0x82, 0x19, 0x6c, 0x68, 0x32, 0xc9, 0x4e, 0xf4, 0x66, 0x27, 0xb1, 0xa1, 0xad, 0xe3, 0x23, - 0xa4, 0x42, 0xca, 0x26, 0xd2, 0x0c, 0x15, 0x17, 0xa6, 0x97, 0x84, 0x5b, 0xd3, 0xa5, 0x07, 0x1f, - 0x1e, 0x2f, 0x96, 0x9b, 0xba, 0xb3, 0xdf, 0xdd, 0x5d, 0x56, 0xcd, 0xf6, 0x1d, 0xaf, 0x56, 0xda, - 0xae, 0xff, 0xfb, 0x4e, 0xe7, 0x49, 0xf3, 0xce, 0x90, 0x11, 0x58, 0x6e, 0x1c, 0x1a, 0x75, 0xfc, - 0x54, 0xf2, 0x04, 0xbf, 0x91, 0xf8, 0xe5, 0xb7, 0x17, 0x85, 0x87, 0x89, 0x94, 0x20, 0xc6, 0x1e, - 0x26, 0x52, 0x31, 0x31, 0x5e, 0xfc, 0x7a, 0x1c, 0xf2, 0x12, 0xb6, 0x3b, 0xa6, 0x61, 0x63, 0xde, - 0x8c, 0x4f, 0x40, 0xdc, 0x39, 0x34, 0x68, 0x33, 0x32, 0x2b, 0x97, 0x43, 0x3a, 0xa3, 0x61, 0x29, - 0x86, 0xad, 0xa8, 0x8e, 0x6e, 0x1a, 0x12, 0x29, 0x8a, 0x3e, 0x03, 0x19, 0x0b, 0xdb, 0xdd, 0x36, - 0xa6, 0xc3, 0x46, 0x5b, 0x98, 0x59, 0xb9, 0x18, 0xc2, 0x59, 0xef, 0x28, 0x86, 0x04, 0xac, 0x2c, - 0xf9, 0x8d, 0x2e, 0x41, 0xca, 0xe8, 0xb6, 0x49, 0xbf, 0xd8, 0xb4, 0xd5, 0x71, 0x69, 0xc6, 0xe8, - 0xb6, 0xd7, 0xf1, 0x91, 0x8d, 0xca, 0x90, 0xb1, 0xc8, 0xa0, 0xc9, 0xba, 0xb1, 0x67, 0xda, 0x85, - 0xe4, 0x52, 0xfc, 0x56, 0x66, 0xe5, 0xc5, 0x61, 0x43, 0x4b, 0xd4, 0x80, 0x8f, 0x0f, 0x58, 0x2e, - 0xc1, 0x46, 0x75, 0xc8, 0xf1, 0x9a, 0x59, 0x58, 0xb1, 0x4d, 0xa3, 0x30, 0xb3, 0x24, 0xdc, 0xca, - 0xaf, 0x2c, 0x87, 0x89, 0xe9, 0xe9, 0x05, 0x92, 0xec, 0xb6, 0xb1, 0x44, 0xb9, 0xa4, 0xac, 0x15, - 0x48, 0x15, 0xdf, 0x85, 0x6c, 0x30, 0x17, 0x21, 0xc8, 0x4b, 0x95, 0xfa, 0xce, 0x46, 0x45, 0xde, - 0xd9, 0x5c, 0xdf, 0xdc, 0x7a, 0x67, 0x53, 0x9c, 0x42, 0xe7, 0x40, 0xe4, 0xb4, 0xf5, 0xca, 0xbb, - 0xf2, 0xa3, 0xda, 0x46, 0xad, 0x21, 0x0a, 0xe8, 0x12, 0x9c, 0xe7, 0x54, 0x69, 0x75, 0xf3, 0x41, - 0x45, 0x2e, 0x6d, 0xed, 0x6c, 0xae, 0xad, 0x4a, 0xef, 0x8a, 0xb1, 0x85, 0xc4, 0x6f, 0x7c, 0xe7, - 0xf2, 0x54, 0xf1, 0x31, 0xc0, 0x03, 0xec, 0x70, 0xb5, 0x42, 0x25, 0x48, 0xee, 0xd3, 0xda, 0x70, - 0xc5, 0x5e, 0x0a, 0xad, 0x76, 0x40, 0x05, 0x4b, 0x29, 0xd2, 0x03, 0x3f, 0x3d, 0x5e, 0x14, 0x24, - 0xce, 0xc9, 0x86, 0xbc, 0xf8, 0x23, 0x01, 0x32, 0x54, 0x30, 0x6b, 0x23, 0x2a, 0xf7, 0x49, 0xbe, - 0x32, 0xb6, 0x43, 0x06, 0x45, 0xa3, 0x65, 0x98, 0x7e, 0xa6, 0xb4, 0xba, 0xa3, 0xe6, 0xcd, 0x63, - 0x92, 0x2f, 0xb1, 0x62, 0xe8, 0x4d, 0xc8, 0xea, 0x86, 0x83, 0x0d, 0x47, 0x66, 0x6c, 0xf1, 0x31, - 0x6c, 0x19, 0x56, 0x9a, 0x26, 0x8a, 0x7f, 0x2e, 0x00, 0x6c, 0x77, 0xa3, 0xec, 0x1a, 0x32, 0xef, - 0x27, 0xaa, 0xbf, 0x3b, 0xef, 0x59, 0x2b, 0x2e, 0x40, 0x52, 0x37, 0x5a, 0xba, 0xc1, 0xea, 0x9f, - 0x92, 0x78, 0x0a, 0x9d, 0x83, 0xe9, 0xdd, 0x96, 0x6e, 0x68, 0x54, 0xfd, 0x53, 0x12, 0x4b, 0xf0, - 0xee, 0x97, 0x20, 0x43, 0xeb, 0x1e, 0x61, 0xef, 0x17, 0xbf, 0x19, 0x83, 0xf3, 0x65, 0xd3, 0xd0, - 0x74, 0x32, 0x0f, 0x95, 0xd6, 0xc7, 0xa2, 0x6f, 0x5e, 0x87, 0x34, 0x3e, 0xec, 0x4c, 0x38, 0xbc, - 0x29, 0x7c, 0xd8, 0xa1, 0xbf, 0xc2, 0xbb, 0x0e, 0x7d, 0x12, 0x2e, 0x2a, 0xad, 0x96, 0x79, 0x20, - 0xeb, 0x7b, 0xb2, 0x66, 0x62, 0x5b, 0x36, 0x4c, 0x47, 0xc6, 0x87, 0xba, 0xed, 0x50, 0x53, 0x91, - 0x92, 0xe6, 0x69, 0x76, 0x6d, 0x6f, 0xcd, 0xc4, 0xf6, 0xa6, 0xe9, 0x54, 0x48, 0x16, 0xef, 0xf0, - 0xf7, 0xe1, 0x42, 0x7f, 0xdf, 0x44, 0xd9, 0xf7, 0x7f, 0x23, 0x40, 0xbe, 0x66, 0xe8, 0xce, 0xc7, - 0xa2, 0xd3, 0xbd, 0xde, 0x8b, 0x07, 0x7b, 0xef, 0x36, 0x88, 0x7b, 0x8a, 0xde, 0xda, 0x32, 0x1a, - 0x66, 0x7b, 0xd7, 0x76, 0x4c, 0x03, 0xdb, 0xbc, 0x7b, 0x07, 0xe8, 0xbc, 0xcf, 0x1e, 0xc3, 0xac, - 0xd7, 0xa6, 0x28, 0x3b, 0xeb, 0x39, 0x88, 0x35, 0x43, 0xb5, 0x70, 0x1b, 0x1b, 0x91, 0xf6, 0xd6, - 0x8b, 0x90, 0xd6, 0x5d, 0xb9, 0xb4, 0xc7, 0xe2, 0x92, 0x4f, 0xe0, 0x6d, 0xea, 0xc2, 0x5c, 0xe0, - 0xdb, 0x51, 0x1a, 0xbf, 0x17, 0x20, 0x6d, 0xe0, 0x03, 0xd9, 0x1f, 0xaf, 0xb8, 0x94, 0x32, 0xf0, - 0x01, 0x33, 0x56, 0xef, 0x42, 0x6e, 0x0d, 0xb7, 0xb0, 0x83, 0xa3, 0xb7, 0xe4, 0x3b, 0x90, 0x77, - 0x45, 0x47, 0x39, 0x48, 0xbf, 0x2f, 0x00, 0xe2, 0x72, 0xc9, 0xea, 0x19, 0xe5, 0x38, 0x2d, 0x12, - 0xef, 0xc0, 0xe9, 0x5a, 0x06, 0x5b, 0xe6, 0x99, 0x96, 0x02, 0x23, 0xd1, 0x95, 0xde, 0xb7, 0xa8, - 0x89, 0xa0, 0x45, 0xf5, 0xbc, 0x15, 0xe2, 0xa7, 0x1c, 0xc0, 0x7c, 0x4f, 0xf5, 0xa2, 0x1d, 0xca, - 0x04, 0xad, 0x59, 0x6c, 0x29, 0x1e, 0xf4, 0xcc, 0x28, 0xb1, 0xf8, 0x3e, 0xcc, 0x95, 0x5b, 0x58, - 0xb1, 0xa2, 0xee, 0x16, 0x3e, 0x9c, 0xef, 0x02, 0x0a, 0x8a, 0x8f, 0x72, 0x48, 0x75, 0xc8, 0xd4, - 0x55, 0xc5, 0xd8, 0xea, 0x10, 0x23, 0x68, 0xa3, 0x7b, 0x70, 0xc1, 0x76, 0xcc, 0x8e, 0xac, 0x38, - 0x32, 0xf3, 0xab, 0x76, 0xcd, 0xae, 0xa1, 0x29, 0xd6, 0x11, 0xfd, 0x46, 0x4a, 0x9a, 0x27, 0xb9, - 0xab, 0x0e, 0xad, 0x48, 0x89, 0x67, 0x91, 0xb1, 0x6b, 0xeb, 0x86, 0x4c, 0xdc, 0x9f, 0x96, 0x63, - 0x73, 0x3d, 0x87, 0xb6, 0x6e, 0x48, 0x8c, 0xc2, 0x5b, 0xf1, 0x1d, 0x81, 0x7d, 0x2b, 0x4a, 0xb5, - 0x79, 0x0b, 0x32, 0xb6, 0xaa, 0x18, 0xf2, 0x9e, 0x69, 0xb5, 0x15, 0x87, 0xaa, 0x46, 0x7e, 0xe5, - 0xa5, 0x30, 0xa7, 0x52, 0x55, 0x8c, 0xfb, 0xb4, 0x90, 0x04, 0xb6, 0xf7, 0x3b, 0xa8, 0x3d, 0x0f, - 0x13, 0xa9, 0xb8, 0x98, 0x28, 0xfe, 0xbb, 0x00, 0x59, 0x56, 0xcb, 0x28, 0xb5, 0xe7, 0x75, 0x48, - 0x58, 0xe6, 0x01, 0xd3, 0x9e, 0xcc, 0xca, 0x0b, 0x21, 0x22, 0xd6, 0xf1, 0x51, 0xd0, 0x6c, 0xd3, - 0xe2, 0xa8, 0x04, 0xdc, 0xbd, 0x91, 0x29, 0x77, 0x7c, 0x52, 0x6e, 0x60, 0x5c, 0x12, 0x91, 0x71, - 0x13, 0x66, 0x77, 0x15, 0x47, 0xdd, 0x27, 0xe3, 0x43, 0x2b, 0x49, 0x4c, 0x7c, 0xfc, 0x56, 0x56, - 0xca, 0x53, 0xb2, 0x5b, 0x75, 0xbb, 0xf8, 0x3d, 0x01, 0x90, 0x84, 0x9f, 0x61, 0xcb, 0xc6, 0x1f, - 0xff, 0x61, 0xfa, 0x0f, 0x01, 0xe6, 0x7b, 0x2a, 0xfb, 0xbf, 0x6d, 0xb4, 0x7e, 0x26, 0xc0, 0xc5, - 0xf2, 0x3e, 0x56, 0x9f, 0x94, 0x4d, 0xc3, 0xd6, 0x6d, 0x07, 0x1b, 0xea, 0x51, 0x94, 0x43, 0xf6, - 0x02, 0xa4, 0x0f, 0x74, 0x67, 0x5f, 0xd6, 0xf4, 0xbd, 0x3d, 0x3a, 0xa5, 0x53, 0x52, 0x8a, 0x10, - 0xd6, 0xf4, 0xbd, 0x3d, 0x74, 0x0f, 0x12, 0x6d, 0x53, 0x63, 0xde, 0x5b, 0x7e, 0x65, 0x31, 0x44, - 0x3c, 0xad, 0x9a, 0xdd, 0x6d, 0x6f, 0x98, 0x1a, 0x96, 0x68, 0x61, 0x74, 0x19, 0x40, 0x25, 0xd4, - 0x8e, 0xa9, 0x1b, 0x0e, 0xb7, 0xe2, 0x01, 0x0a, 0xb7, 0x12, 0xdf, 0x48, 0x40, 0x61, 0xb0, 0x5d, - 0x51, 0x8e, 0xee, 0x36, 0x24, 0x99, 0xa9, 0xe2, 0xe3, 0xbb, 0x32, 0xac, 0xfa, 0x21, 0x35, 0x58, - 0x66, 0x26, 0x8d, 0x0f, 0x1c, 0x97, 0xb3, 0xf0, 0x17, 0x02, 0x24, 0x59, 0x06, 0xba, 0x0b, 0x29, - 0x0e, 0x48, 0x35, 0x5a, 0xc7, 0x78, 0xe9, 0xc2, 0xc9, 0xf1, 0xe2, 0x0c, 0x83, 0x9f, 0x6b, 0x1f, - 0xfa, 0x3f, 0xa5, 0x19, 0x86, 0x40, 0x35, 0xd2, 0xd3, 0xb6, 0xa3, 0x58, 0x0e, 0x05, 0xfe, 0xa4, - 0xa7, 0xb3, 0x52, 0x8a, 0x12, 0x08, 0xe2, 0x7f, 0x08, 0x49, 0xdb, 0x51, 0x9c, 0xae, 0xcd, 0xfb, - 0xfa, 0x54, 0x95, 0xad, 0x53, 0x4e, 0x89, 0x4b, 0x20, 0x4b, 0xa8, 0x86, 0x1d, 0x45, 0x6f, 0xd1, - 0xce, 0x4f, 0x4b, 0x3c, 0x55, 0xfc, 0x96, 0x00, 0x49, 0x56, 0x14, 0x5d, 0x84, 0x79, 0x06, 0x3a, - 0x6b, 0x9b, 0x6b, 0x95, 0x46, 0x45, 0xda, 0xa8, 0x6d, 0xae, 0x36, 0x2a, 0xe2, 0x14, 0xba, 0x00, - 0xc8, 0xcd, 0x28, 0x6f, 0x6d, 0xd6, 0x6b, 0xf5, 0x46, 0x65, 0x93, 0x80, 0x55, 0x02, 0x61, 0x29, - 0x3d, 0x40, 0x8d, 0xa1, 0x6b, 0xb0, 0xd4, 0x4f, 0x95, 0xeb, 0x8d, 0xd5, 0x46, 0x5d, 0xae, 0xd4, - 0x1b, 0xb5, 0x8d, 0xd5, 0x46, 0x65, 0x4d, 0x8c, 0x8f, 0x28, 0x45, 0x3e, 0x22, 0x49, 0x95, 0x72, - 0x43, 0x4c, 0x14, 0x9f, 0xc3, 0x79, 0x09, 0xab, 0x66, 0xbb, 0xd3, 0x75, 0x30, 0xa9, 0xa5, 0x1d, - 0xa5, 0x96, 0x5f, 0x84, 0x19, 0xcd, 0x3a, 0x92, 0xad, 0xae, 0xc1, 0x75, 0x3c, 0xa9, 0x59, 0x47, - 0x52, 0xd7, 0xe0, 0xca, 0xf8, 0x67, 0x02, 0x5c, 0xe8, 0xff, 0x78, 0x94, 0xaa, 0xf8, 0x45, 0xc8, - 0x28, 0x9a, 0x86, 0x35, 0x59, 0xc3, 0x2d, 0x47, 0xe1, 0x1e, 0xfd, 0xdd, 0x80, 0x24, 0xbe, 0x69, - 0xb3, 0xcc, 0x76, 0x6b, 0x96, 0xbd, 0x4d, 0x9b, 0x8d, 0xc7, 0xe5, 0x32, 0xad, 0xcf, 0x1a, 0x61, - 0x74, 0xed, 0x08, 0x95, 0x45, 0x29, 0x45, 0x15, 0x2e, 0x96, 0x70, 0x53, 0x37, 0x82, 0xdb, 0x30, - 0x91, 0xfb, 0x25, 0x32, 0x14, 0x06, 0x3f, 0x12, 0xa5, 0x77, 0xf2, 0xdd, 0x04, 0x9c, 0xaf, 0x18, - 0xda, 0x47, 0xd3, 0x08, 0x32, 0x1f, 0x54, 0xb3, 0xdd, 0xd6, 0x1d, 0x77, 0xec, 0x59, 0x0a, 0xfd, - 0x1f, 0x48, 0x69, 0x58, 0xd1, 0x3c, 0xf8, 0x9e, 0xe9, 0x59, 0xaa, 0xba, 0x8e, 0xde, 0x5a, 0xde, - 0x6f, 0xa9, 0xcb, 0x0d, 0x77, 0x93, 0x52, 0xf2, 0x8a, 0xa3, 0x2f, 0xc3, 0x45, 0x62, 0xcc, 0x2d, - 0x43, 0x69, 0xc9, 0x4c, 0x9a, 0xec, 0x58, 0x7a, 0xb3, 0x89, 0x2d, 0xbe, 0xe1, 0x75, 0x2b, 0xa4, - 0x9e, 0x35, 0xce, 0x51, 0xa6, 0x0c, 0x0d, 0x56, 0x5e, 0x3a, 0xaf, 0x87, 0x91, 0xd1, 0x17, 0xbc, - 0xfd, 0x11, 0xbb, 0xa3, 0x18, 0x76, 0x61, 0x9a, 0xda, 0xb0, 0x61, 0xfb, 0x68, 0x5c, 0x33, 0xf8, - 0xba, 0x44, 0x28, 0x36, 0xba, 0x43, 0x5c, 0xed, 0xa7, 0x5d, 0xdd, 0xc2, 0xf2, 0xdd, 0x8e, 0x5a, - 0x48, 0x92, 0xb6, 0x97, 0xf2, 0x27, 0xc7, 0x8b, 0x20, 0x31, 0xf2, 0xdd, 0xed, 0x32, 0x71, 0xbd, - 0xd9, 0xef, 0x8e, 0x8a, 0x6e, 0x81, 0x68, 0x98, 0xb2, 0x85, 0xf7, 0x2c, 0x6c, 0xef, 0xf3, 0xcf, - 0xa6, 0x68, 0x8f, 0xe5, 0x0d, 0x53, 0x62, 0x64, 0x26, 0xfa, 0x02, 0x24, 0x3b, 0xa6, 0x6e, 0x9b, - 0x46, 0x21, 0xcd, 0x7a, 0x94, 0xa5, 0xd0, 0xdb, 0x20, 0xea, 0x86, 0xbc, 0xd7, 0xd2, 0x9b, 0xfb, - 0x8e, 0x7c, 0x60, 0xe9, 0x0e, 0xb6, 0x0b, 0x73, 0xb4, 0xe2, 0x61, 0x6a, 0x51, 0xe7, 0x3b, 0x91, - 0xda, 0x3b, 0xa4, 0x24, 0x6f, 0x42, 0x5e, 0x37, 0xee, 0x53, 0x7e, 0x4a, 0xb4, 0x3d, 0x97, 0x60, - 0x46, 0x4c, 0x15, 0xff, 0x45, 0x80, 0x0b, 0xfd, 0x6a, 0x12, 0xe5, 0x34, 0xbd, 0x05, 0xa2, 0x69, - 0x60, 0xb9, 0xb3, 0xaf, 0xd8, 0x98, 0x0f, 0x2b, 0x5f, 0xbf, 0xf2, 0xa6, 0x81, 0xb7, 0x09, 0x99, - 0x0d, 0x12, 0xda, 0x86, 0x39, 0xdb, 0x51, 0x9a, 0xba, 0xd1, 0x94, 0xbd, 0x3d, 0x6c, 0xba, 0x11, - 0x31, 0x4e, 0x87, 0x78, 0x2b, 0x45, 0xce, 0xed, 0xd1, 0x7b, 0x9c, 0x9e, 0x6f, 0x09, 0x30, 0xb7, - 0xaa, 0xb5, 0x75, 0xa3, 0xde, 0x69, 0xe9, 0x91, 0xc2, 0xe4, 0x6b, 0x90, 0xb6, 0x89, 0x4c, 0x7f, - 0x0d, 0xf2, 0x21, 0x4e, 0x8a, 0xe6, 0x90, 0xc5, 0xe8, 0x02, 0x24, 0xdb, 0x8a, 0xd1, 0x55, 0x5a, - 0xee, 0xae, 0x16, 0x4b, 0xf9, 0x28, 0x25, 0x58, 0xb9, 0x28, 0xed, 0x80, 0x0c, 0xf3, 0x54, 0xf4, - 0x8e, 0x61, 0x47, 0xdc, 0x72, 0x5e, 0xf7, 0x2f, 0xc1, 0xb9, 0xde, 0x0f, 0x44, 0x59, 0xfb, 0xf7, - 0xf9, 0xa8, 0x6d, 0x60, 0xeb, 0x23, 0x42, 0x87, 0x41, 0xf1, 0x51, 0xd6, 0xfc, 0x6b, 0x02, 0x5c, - 0xa2, 0xb2, 0xe9, 0xd4, 0xda, 0xc3, 0x16, 0x3d, 0xe2, 0x88, 0x52, 0xf1, 0xae, 0x42, 0xd2, 0x51, - 0xac, 0x26, 0x66, 0x36, 0x78, 0xba, 0x94, 0x21, 0x2e, 0x52, 0xdd, 0x31, 0x2d, 0xe2, 0x22, 0xf1, - 0x2c, 0xde, 0x4e, 0x05, 0x16, 0xc2, 0xea, 0x12, 0x65, 0x7b, 0xff, 0x34, 0xc6, 0xbf, 0x51, 0xde, - 0x67, 0x50, 0xbb, 0xd3, 0xd2, 0x55, 0x25, 0x52, 0x8f, 0xa3, 0x02, 0x19, 0x95, 0x0a, 0x97, 0x9d, - 0xa3, 0x0e, 0xdb, 0x14, 0xca, 0xaf, 0x5c, 0x0b, 0x15, 0x44, 0x3f, 0xce, 0x6a, 0xd2, 0x38, 0xea, - 0x60, 0xe2, 0x2c, 0xbb, 0xbf, 0xd1, 0x1a, 0xcc, 0xb0, 0xce, 0x71, 0x71, 0xc6, 0x08, 0x11, 0xc4, - 0x20, 0x36, 0x68, 0x61, 0x6e, 0x65, 0x5c, 0x56, 0xf4, 0x39, 0x48, 0xe1, 0xc3, 0x8e, 0x4c, 0x8f, - 0xc5, 0x12, 0x93, 0x1e, 0x8b, 0x49, 0x33, 0xf8, 0xb0, 0x43, 0x92, 0x7c, 0x5c, 0xbe, 0x29, 0xc0, - 0x0b, 0xa1, 0x9d, 0x16, 0xa5, 0x09, 0xfe, 0x14, 0x3f, 0xbc, 0x8b, 0x4d, 0x5c, 0x4b, 0x5a, 0xbe, - 0xf8, 0x47, 0xae, 0x06, 0x4b, 0xb8, 0x65, 0xaa, 0xca, 0x47, 0xb0, 0x73, 0x15, 0x18, 0x89, 0xd8, - 0x99, 0x47, 0xa2, 0x4f, 0xc5, 0xfb, 0x2a, 0x1b, 0xa5, 0x8a, 0xff, 0x8e, 0x00, 0xf3, 0x55, 0xac, - 0x58, 0xce, 0x2e, 0x56, 0x9c, 0xc6, 0x61, 0xa4, 0x0e, 0xd5, 0xeb, 0x10, 0x37, 0xcc, 0x03, 0x3e, - 0x46, 0x13, 0xad, 0x77, 0xa4, 0xbc, 0x6f, 0x82, 0x7b, 0xeb, 0x15, 0x65, 0xab, 0x7f, 0x10, 0x87, - 0xf4, 0x83, 0x72, 0x94, 0x6d, 0xfd, 0x2c, 0xdf, 0x0f, 0x64, 0xb3, 0x2f, 0x4c, 0x21, 0xbd, 0xef, - 0x2d, 0x3f, 0x28, 0xaf, 0xe3, 0x23, 0x77, 0xab, 0x80, 0x70, 0xa1, 0x55, 0x48, 0x3b, 0xfb, 0xc4, - 0x6f, 0x32, 0x5b, 0x1a, 0x9f, 0x79, 0x13, 0xf5, 0x97, 0xcf, 0x85, 0x5a, 0x70, 0xde, 0x39, 0x34, - 0xa8, 0x3b, 0x26, 0x37, 0x55, 0xd9, 0x17, 0x37, 0x91, 0xbb, 0xb1, 0x40, 0xc4, 0x9d, 0x1c, 0x2f, - 0xa2, 0xc6, 0xa1, 0x41, 0x7c, 0xb7, 0x07, 0xe5, 0x86, 0x2b, 0x40, 0x42, 0x0e, 0xa7, 0xa9, 0x1e, - 0x6d, 0xe1, 0x09, 0x4c, 0xd3, 0x56, 0xb8, 0xe7, 0xd7, 0x42, 0xc8, 0xf9, 0x35, 0x69, 0x94, 0xe7, - 0xf4, 0xc4, 0x4e, 0xd3, 0x28, 0x97, 0xc0, 0x54, 0x81, 0x2b, 0xc4, 0xdb, 0x00, 0xa4, 0x0b, 0xa3, - 0x54, 0x83, 0xff, 0x8c, 0x43, 0x7e, 0xbb, 0x6b, 0xef, 0x47, 0xac, 0xf7, 0x65, 0x80, 0x4e, 0xd7, - 0xde, 0xc7, 0x96, 0xec, 0x1c, 0x1a, 0xbc, 0xe5, 0x63, 0xce, 0xc4, 0xdd, 0xa6, 0x33, 0xbe, 0xc6, - 0xa1, 0x81, 0xb6, 0xb8, 0x10, 0x2c, 0xfb, 0x07, 0xeb, 0xb7, 0x27, 0x80, 0x82, 0x8d, 0x43, 0x63, - 0x03, 0x7b, 0x18, 0x90, 0x09, 0xc4, 0x44, 0xe0, 0x67, 0x61, 0x86, 0x24, 0x64, 0xc7, 0x3c, 0x8d, - 0x86, 0x25, 0x09, 0x4f, 0xc3, 0x44, 0x0f, 0x21, 0xaf, 0xe1, 0x8e, 0x85, 0x89, 0x19, 0xd2, 0x64, - 0x32, 0xad, 0x4f, 0xe1, 0xc6, 0xe6, 0x7c, 0xd6, 0x4d, 0xf3, 0x00, 0xbd, 0x09, 0x69, 0x56, 0x13, - 0xb2, 0xe2, 0x25, 0xe9, 0x8a, 0x17, 0xd6, 0x3d, 0x7c, 0x64, 0xe8, 0x5a, 0x97, 0xa2, 0xd5, 0x20, - 0x2b, 0xdd, 0x39, 0x98, 0xde, 0x33, 0x2d, 0x15, 0xd3, 0x53, 0xf9, 0x94, 0xc4, 0x12, 0xe8, 0x36, - 0xcc, 0xe9, 0x86, 0xda, 0xea, 0xda, 0xfa, 0x33, 0x2c, 0xbb, 0xcd, 0x64, 0xa0, 0x63, 0xd6, 0xcb, - 0xa0, 0x02, 0x4d, 0x0f, 0x2a, 0xa4, 0xc4, 0x34, 0x71, 0xa1, 0x67, 0x3d, 0x0d, 0x88, 0x72, 0x81, - 0x2a, 0xf7, 0x0c, 0xdf, 0xe9, 0x75, 0x80, 0x0c, 0x59, 0xf1, 0x6f, 0x05, 0x98, 0x93, 0xb0, 0x6a, - 0x3e, 0xa3, 0x2a, 0x11, 0xa5, 0x8a, 0x96, 0x58, 0xbc, 0x46, 0xec, 0x8c, 0x6a, 0x45, 0x23, 0x38, - 0xee, 0xc2, 0x39, 0xbd, 0x4d, 0xd6, 0x31, 0xdd, 0x69, 0x1d, 0x71, 0x1c, 0xe4, 0x60, 0xf7, 0x48, - 0x71, 0xde, 0xcf, 0x2b, 0xbb, 0x59, 0x7c, 0x26, 0x7f, 0x97, 0xee, 0x2c, 0xfb, 0xcd, 0x8a, 0xb2, - 0xdf, 0x6b, 0x90, 0xb3, 0x98, 0x68, 0xac, 0x9d, 0xba, 0xeb, 0xb3, 0x1e, 0x2b, 0xe9, 0xfd, 0xef, - 0xc7, 0x60, 0xf6, 0xed, 0x2e, 0xb6, 0x8e, 0x3e, 0x86, 0x7d, 0x7f, 0x03, 0x66, 0x0f, 0x14, 0xdd, - 0x91, 0xf7, 0x4c, 0x4b, 0xee, 0x76, 0x34, 0xc5, 0x71, 0x23, 0x0b, 0x72, 0x84, 0x7c, 0xdf, 0xb4, - 0x76, 0x28, 0x11, 0x61, 0x40, 0x4f, 0x0c, 0xf3, 0xc0, 0x90, 0x09, 0x99, 0xc2, 0xd0, 0x43, 0x83, - 0x6f, 0x21, 0x97, 0x3e, 0xfd, 0xf7, 0xc7, 0x8b, 0xf7, 0x26, 0x8a, 0x15, 0xa2, 0xe1, 0x56, 0xdd, - 0xae, 0xae, 0x2d, 0xef, 0xec, 0xd4, 0xd6, 0x24, 0x91, 0x8a, 0x7c, 0x87, 0x49, 0x6c, 0x1c, 0x1a, - 0xae, 0xbb, 0xf2, 0xa1, 0x00, 0xa2, 0xdf, 0x61, 0x51, 0x8e, 0x6a, 0x05, 0x32, 0x4f, 0xbb, 0xd8, - 0xd2, 0xcf, 0x30, 0xa6, 0xc0, 0x19, 0x89, 0x09, 0x7c, 0x0f, 0xb2, 0x3d, 0xfd, 0x10, 0xff, 0xd5, - 0xfa, 0x21, 0x73, 0xe0, 0x77, 0x41, 0xf1, 0x27, 0x02, 0x20, 0xda, 0xf8, 0x1a, 0xdb, 0xbd, 0xff, - 0x98, 0x29, 0xcc, 0x2d, 0x10, 0x69, 0xf4, 0x9e, 0xac, 0xef, 0xc9, 0x6d, 0xdd, 0xb6, 0x75, 0xa3, - 0xc9, 0x35, 0x26, 0x4f, 0xe9, 0xb5, 0xbd, 0x0d, 0x46, 0xe5, 0x63, 0xf9, 0xff, 0x61, 0xbe, 0xa7, - 0x35, 0x51, 0x8e, 0xe6, 0x15, 0xc8, 0xee, 0x99, 0x5d, 0x43, 0x93, 0xd9, 0x36, 0x14, 0xdf, 0x6e, - 0xcb, 0x50, 0x1a, 0xfb, 0x5e, 0xf1, 0xab, 0x31, 0x38, 0x27, 0x61, 0xdb, 0x6c, 0x3d, 0xc3, 0xd1, - 0xf7, 0xe7, 0x16, 0xf0, 0x23, 0x16, 0xf9, 0x57, 0xe9, 0xd6, 0x34, 0x93, 0xc1, 0x96, 0xd6, 0xde, - 0x5d, 0xf9, 0x6b, 0xa3, 0x35, 0x73, 0x70, 0x1f, 0x9e, 0xef, 0x92, 0x25, 0x82, 0xbb, 0x64, 0x7c, - 0x20, 0xfe, 0x2f, 0x9c, 0xef, 0xeb, 0x88, 0x28, 0x3d, 0xa0, 0xbf, 0x8b, 0xc1, 0xa5, 0x5e, 0xf1, - 0x51, 0xe3, 0xa1, 0xff, 0x19, 0x9d, 0x8d, 0xaa, 0x90, 0x6b, 0xeb, 0xc6, 0xd9, 0x76, 0xe9, 0xb2, - 0x6d, 0xdd, 0x68, 0xf4, 0xfa, 0xac, 0x04, 0xba, 0x85, 0xf5, 0x6b, 0x94, 0x63, 0xf7, 0x0d, 0x01, - 0xb2, 0x51, 0xef, 0x21, 0x9d, 0x2d, 0x9c, 0x88, 0xb7, 0xb9, 0x01, 0xb9, 0x8f, 0x60, 0xd3, 0xe9, - 0x0f, 0x05, 0x40, 0x0d, 0xab, 0x6b, 0x10, 0xf7, 0xf1, 0x91, 0xd9, 0x8c, 0xb2, 0xb1, 0xe7, 0x60, - 0x5a, 0x37, 0x34, 0x7c, 0x48, 0x1b, 0x9b, 0x90, 0x58, 0xa2, 0xe7, 0xcc, 0x2e, 0x3e, 0xd1, 0x99, - 0x1d, 0x6f, 0xff, 0x7b, 0x30, 0xdf, 0x53, 0xd1, 0x28, 0x7b, 0xe1, 0xfb, 0x31, 0x98, 0xe7, 0xcd, - 0x89, 0x7c, 0xd3, 0xed, 0x4c, 0xb1, 0xcc, 0xe8, 0x73, 0x00, 0x1d, 0x0b, 0x3f, 0x93, 0x19, 0x6b, - 0x7c, 0x22, 0xd6, 0x34, 0xe1, 0xa0, 0x04, 0xf4, 0x45, 0x98, 0x25, 0x13, 0xae, 0x63, 0x99, 0x1d, - 0xd3, 0x26, 0xeb, 0xba, 0x3d, 0x19, 0x2c, 0x99, 0x3b, 0x39, 0x5e, 0xcc, 0x6d, 0xe8, 0xc6, 0x36, - 0x67, 0x6c, 0xd4, 0x25, 0x32, 0x73, 0xbd, 0xa4, 0xeb, 0x8c, 0xfc, 0x4c, 0x80, 0x73, 0x1f, 0xd9, - 0x36, 0xe5, 0x7f, 0x47, 0x8f, 0x79, 0xeb, 0x81, 0x48, 0x93, 0x35, 0x63, 0xcf, 0x8c, 0x7e, 0xf3, - 0xf8, 0x1b, 0x02, 0xcc, 0x05, 0xc4, 0x47, 0xb9, 0xea, 0x9f, 0x2d, 0x62, 0xfe, 0x4b, 0xc4, 0x0f, - 0x08, 0xaa, 0x7d, 0x94, 0x93, 0xea, 0xdf, 0x04, 0xb8, 0x50, 0x66, 0xa7, 0xb9, 0x6e, 0x80, 0x42, - 0x94, 0x5a, 0x52, 0x80, 0x99, 0x67, 0xd8, 0xb2, 0x75, 0x93, 0xad, 0x7b, 0x39, 0xc9, 0x4d, 0xa2, - 0x05, 0x48, 0xd9, 0x86, 0xd2, 0xb1, 0xf7, 0x4d, 0xf7, 0xe4, 0xc8, 0x4b, 0x7b, 0xc1, 0x14, 0xd3, - 0x67, 0x0f, 0xa6, 0x48, 0x86, 0x07, 0x53, 0xf0, 0x63, 0xa3, 0x1f, 0x0b, 0x70, 0x71, 0xa0, 0xd5, - 0x51, 0x8e, 0xf4, 0x57, 0x20, 0xa3, 0x72, 0xc1, 0xc4, 0x86, 0xb2, 0xf3, 0xa3, 0x1a, 0x29, 0x76, - 0x46, 0x4f, 0xfb, 0xe4, 0x78, 0x11, 0xdc, 0xaa, 0xd6, 0xd6, 0x78, 0xc3, 0xc8, 0x6f, 0xad, 0xf8, - 0x0b, 0x80, 0x5c, 0xe5, 0xb0, 0x63, 0x5a, 0x4e, 0x9d, 0x39, 0x12, 0x68, 0x0d, 0x52, 0x1d, 0xcb, - 0x7c, 0xa6, 0xbb, 0x8d, 0xc8, 0x87, 0x1e, 0xb2, 0xf6, 0xf0, 0x6c, 0xf3, 0xf2, 0x92, 0xc7, 0x89, - 0x24, 0x48, 0x3f, 0x32, 0x55, 0xa5, 0x75, 0x5f, 0x6f, 0xb9, 0x1a, 0xbb, 0x3c, 0x4e, 0xcc, 0xb2, - 0xc7, 0xb1, 0xad, 0x38, 0xfb, 0xee, 0x04, 0xf6, 0x88, 0xe8, 0x01, 0xa4, 0xaa, 0x8e, 0xd3, 0x21, - 0x99, 0x7c, 0xf6, 0x5f, 0x1f, 0x2b, 0x92, 0x30, 0x70, 0x49, 0x1e, 0x33, 0x92, 0x60, 0xee, 0x81, - 0x69, 0x36, 0x5b, 0xb8, 0xdc, 0x32, 0xbb, 0x5a, 0xd9, 0x34, 0xf6, 0xf4, 0x26, 0xb7, 0x9e, 0xd7, - 0xc6, 0x4a, 0x7c, 0x50, 0xae, 0x4b, 0x83, 0xec, 0xe8, 0xf3, 0x90, 0xaa, 0xdf, 0xe3, 0xa2, 0x98, - 0xef, 0x73, 0x75, 0xac, 0xa8, 0xfa, 0x3d, 0xc9, 0x63, 0x42, 0x55, 0xc8, 0xac, 0x3e, 0xef, 0x5a, - 0x98, 0xcb, 0x48, 0x52, 0x19, 0x37, 0xc6, 0xca, 0xa0, 0x3c, 0x52, 0x90, 0x15, 0xbd, 0x0d, 0xf9, - 0x77, 0x4c, 0xeb, 0x49, 0xcb, 0x54, 0xdc, 0xb6, 0xcd, 0x50, 0x61, 0x2f, 0x8f, 0x15, 0xe6, 0xb2, - 0x49, 0x7d, 0x02, 0x16, 0xbe, 0x08, 0xb9, 0x9e, 0xc1, 0x41, 0x08, 0x12, 0x1d, 0x32, 0x0e, 0x02, - 0x0d, 0x7d, 0xa1, 0xbf, 0xd1, 0x6b, 0x30, 0x63, 0x98, 0x1a, 0x76, 0x75, 0x36, 0x57, 0x3a, 0x77, - 0x72, 0xbc, 0x98, 0xdc, 0x34, 0x35, 0xb6, 0xec, 0xf3, 0x5f, 0x52, 0x92, 0x14, 0x72, 0x17, 0xfd, - 0x85, 0x1b, 0x90, 0x20, 0xe3, 0x42, 0x26, 0xfb, 0xae, 0x62, 0xe3, 0x1d, 0x4b, 0xe7, 0x32, 0xdd, - 0x24, 0x2f, 0xf7, 0xd7, 0x02, 0xc4, 0xea, 0xf7, 0x88, 0xff, 0xb9, 0xdb, 0x55, 0x9f, 0x60, 0x87, - 0x97, 0xe2, 0x29, 0xea, 0x97, 0x5a, 0x78, 0x4f, 0x67, 0xbe, 0x48, 0x5a, 0xe2, 0x29, 0xf4, 0x12, - 0x80, 0xa2, 0xaa, 0xd8, 0xb6, 0x65, 0xf7, 0x9a, 0x50, 0x5a, 0x4a, 0x33, 0x0a, 0x3f, 0x82, 0xb5, - 0xb1, 0x6a, 0x61, 0xc7, 0x8d, 0xe1, 0x61, 0x29, 0xc2, 0xe6, 0xe0, 0x76, 0x47, 0x76, 0xcc, 0x27, - 0xd8, 0xa0, 0xe3, 0x99, 0x96, 0xd2, 0x84, 0xd2, 0x20, 0x04, 0x62, 0x7f, 0xb0, 0xa1, 0xf9, 0xc6, - 0x22, 0x2d, 0x79, 0x69, 0x22, 0xd2, 0xc2, 0x4d, 0x9d, 0xdf, 0x7b, 0x49, 0x4b, 0x3c, 0xc5, 0x9b, - 0xf1, 0x4d, 0x01, 0xe2, 0x0f, 0xca, 0xf5, 0x53, 0xb7, 0x03, 0x41, 0x42, 0xe9, 0x72, 0xbd, 0x4f, - 0x4b, 0xf4, 0x37, 0x0d, 0x6e, 0xd3, 0x5b, 0x2d, 0x02, 0xc7, 0x3b, 0x96, 0xf9, 0x15, 0xac, 0xba, - 0xad, 0xc8, 0x73, 0xf2, 0x36, 0xa3, 0xa2, 0x25, 0xc8, 0xa8, 0x16, 0xd6, 0xb0, 0xe1, 0xe8, 0x4a, - 0xcb, 0xe6, 0xcd, 0x09, 0x92, 0x78, 0xe5, 0xbe, 0x2a, 0xc0, 0x34, 0x55, 0x24, 0xf4, 0x22, 0xa4, - 0x55, 0xd3, 0x70, 0x14, 0xdd, 0xe0, 0x56, 0x20, 0x2d, 0xf9, 0x84, 0xa1, 0x95, 0xbc, 0x02, 0x59, - 0x45, 0x55, 0xcd, 0xae, 0xe1, 0xc8, 0x86, 0xd2, 0xc6, 0xbc, 0xb2, 0x19, 0x4e, 0xdb, 0x54, 0xda, - 0x18, 0x2d, 0x82, 0x9b, 0xf4, 0x2e, 0x66, 0xa5, 0x25, 0xe0, 0xa4, 0x75, 0x7c, 0xc4, 0x6b, 0xf2, - 0x63, 0x01, 0x52, 0xae, 0x0a, 0x92, 0xca, 0x34, 0xb1, 0x81, 0x2d, 0xc5, 0x31, 0xbd, 0xca, 0x78, - 0x84, 0xfe, 0x55, 0x22, 0xed, 0xaf, 0x12, 0xe7, 0x60, 0xda, 0x51, 0x76, 0x5b, 0x6e, 0x3d, 0x58, - 0x82, 0x6e, 0x80, 0xb6, 0x94, 0x26, 0xdb, 0xc5, 0x49, 0x4b, 0x2c, 0x41, 0x9a, 0xc4, 0xa3, 0x29, - 0x59, 0xef, 0xf0, 0x14, 0xa9, 0x2f, 0x0b, 0x20, 0xdc, 0xc5, 0x4d, 0xdd, 0xa0, 0x83, 0x1d, 0x97, - 0x80, 0x92, 0x68, 0xac, 0x0e, 0x7a, 0x01, 0xd2, 0xac, 0x00, 0x36, 0x34, 0x3a, 0xe2, 0x71, 0x29, - 0x45, 0x09, 0x15, 0xf7, 0x26, 0x0a, 0x77, 0x0d, 0xfe, 0x58, 0x80, 0x39, 0x16, 0x81, 0xc1, 0x22, - 0x0f, 0xa3, 0x5b, 0x27, 0xdf, 0x80, 0xb4, 0xa6, 0x38, 0x0a, 0xbb, 0x08, 0x16, 0x1b, 0x79, 0x11, - 0xcc, 0x35, 0x85, 0xa4, 0x3c, 0xbd, 0x0c, 0x86, 0x20, 0x41, 0x7e, 0xb3, 0x0b, 0x74, 0x12, 0xfd, - 0xed, 0x9f, 0x83, 0x07, 0xab, 0x1b, 0xa5, 0xdf, 0xf0, 0xf3, 0xb8, 0xbb, 0xe8, 0x44, 0xd9, 0x0d, - 0x5f, 0x80, 0x19, 0x0e, 0x86, 0x79, 0x27, 0x2c, 0x8d, 0xb3, 0x77, 0xee, 0xa9, 0x21, 0x67, 0x43, - 0x25, 0x00, 0x16, 0x3a, 0x48, 0x60, 0xec, 0x44, 0xb1, 0x4a, 0xee, 0x22, 0x45, 0xd9, 0x08, 0x15, - 0x6d, 0x42, 0xa6, 0xfd, 0x4c, 0x55, 0xe5, 0x3d, 0xbd, 0xe5, 0xf0, 0x30, 0xa5, 0xf0, 0xd8, 0xdc, - 0x8d, 0xc7, 0xe5, 0xf2, 0x7d, 0x5a, 0x88, 0x45, 0x0b, 0xf9, 0x69, 0x09, 0x88, 0x04, 0xf6, 0x1b, - 0xbd, 0x0a, 0x3c, 0x6c, 0x5f, 0xb6, 0xdd, 0x4b, 0x38, 0xa5, 0xdc, 0xc9, 0xf1, 0x62, 0x5a, 0xa2, - 0xd4, 0x7a, 0xbd, 0x21, 0xa5, 0x59, 0x81, 0xba, 0xed, 0xa0, 0xab, 0x90, 0x33, 0xdb, 0xba, 0x23, - 0xbb, 0x2b, 0x3c, 0x77, 0x65, 0xb2, 0x84, 0xe8, 0x7a, 0x00, 0xa8, 0x01, 0x37, 0xb1, 0x41, 0xe6, - 0x02, 0x6d, 0x27, 0x8b, 0x49, 0x97, 0x75, 0x87, 0xcd, 0x27, 0xd9, 0xec, 0x38, 0x7a, 0x5b, 0x7f, - 0x4e, 0x0f, 0x57, 0xf9, 0x21, 0xc1, 0x55, 0x56, 0x9c, 0xb4, 0x8f, 0x46, 0xa9, 0xd7, 0x78, 0xd9, - 0xad, 0x40, 0x51, 0xae, 0x35, 0x5f, 0x17, 0x20, 0x57, 0xea, 0xb6, 0x9e, 0x6c, 0x75, 0xea, 0xdd, - 0x76, 0x5b, 0xb1, 0x8e, 0xc8, 0x04, 0x61, 0xda, 0xa9, 0x3f, 0xc7, 0x2c, 0x86, 0x93, 0xab, 0x9f, - 0xfe, 0x1c, 0x13, 0xf5, 0xe3, 0xa1, 0xc1, 0x84, 0xce, 0xe2, 0x7e, 0xaf, 0x42, 0x8e, 0x02, 0x49, - 0x19, 0x1b, 0x8e, 0xa5, 0x63, 0xb6, 0x4f, 0x11, 0x97, 0xb2, 0x94, 0x58, 0x61, 0x34, 0x74, 0x1d, - 0xf2, 0xf6, 0x91, 0xed, 0xe0, 0xb6, 0xcc, 0xae, 0xaf, 0x32, 0xf4, 0x13, 0x97, 0x72, 0x8c, 0x2a, - 0x31, 0x62, 0xf1, 0x4f, 0xe2, 0x90, 0x77, 0x35, 0x2d, 0x4a, 0x17, 0xad, 0x04, 0xd3, 0x7b, 0x7a, - 0x0b, 0xbb, 0x67, 0xd4, 0xc3, 0x97, 0x69, 0x2f, 0x78, 0x94, 0xac, 0x9c, 0xae, 0x6b, 0x4e, 0x59, - 0xa3, 0xd0, 0xb6, 0x85, 0x9f, 0x0a, 0x90, 0xa0, 0xbe, 0xd1, 0x5d, 0x48, 0xd0, 0xe9, 0x2f, 0x4c, - 0x32, 0xfd, 0x69, 0x51, 0x6f, 0x09, 0x8f, 0x05, 0x96, 0x70, 0xb2, 0x1e, 0xee, 0x2b, 0xaf, 0xdf, - 0x5d, 0xa1, 0x9a, 0x96, 0x95, 0x78, 0x0a, 0x95, 0x68, 0x64, 0x83, 0x69, 0x39, 0x58, 0xe3, 0x9e, - 0x49, 0xd8, 0xe4, 0xea, 0x19, 0x78, 0xd7, 0xd4, 0xb8, 0x7c, 0xe8, 0x12, 0xc4, 0x89, 0x0a, 0xcf, - 0xb0, 0xa3, 0xce, 0x93, 0xe3, 0xc5, 0x38, 0x51, 0x5e, 0x42, 0x63, 0x8e, 0xf5, 0xc3, 0x44, 0x2a, - 0x21, 0x4e, 0x17, 0x7f, 0x98, 0x80, 0x5c, 0xad, 0x1d, 0xb5, 0x71, 0x58, 0xed, 0x1d, 0xb0, 0x30, - 0xc7, 0xb1, 0xe7, 0xa3, 0x21, 0xe3, 0xd5, 0x63, 0x66, 0xe3, 0xa7, 0x33, 0xb3, 0x35, 0xe2, 0x14, - 0xf0, 0x1b, 0xb7, 0xe4, 0xfb, 0xaf, 0x8c, 0xfd, 0x7e, 0x83, 0xcc, 0x38, 0x89, 0xf0, 0xf8, 0xd1, - 0xd1, 0xf4, 0xac, 0xfb, 0x2d, 0xea, 0x7b, 0x30, 0xa5, 0x49, 0x4e, 0xae, 0x34, 0x33, 0xd8, 0xd0, - 0xa8, 0xca, 0x1c, 0x72, 0x8d, 0xf9, 0x0c, 0xc4, 0x35, 0x7d, 0x54, 0x97, 0x86, 0x99, 0x4a, 0xc2, - 0x32, 0x46, 0x71, 0x12, 0x41, 0xc5, 0x09, 0x02, 0xa7, 0x85, 0x2d, 0x00, 0xbf, 0x55, 0x68, 0x09, - 0x92, 0x66, 0x4b, 0x73, 0x03, 0xbb, 0x73, 0xa5, 0xf4, 0xc9, 0xf1, 0xe2, 0xf4, 0x56, 0x4b, 0xab, - 0xad, 0x49, 0xd3, 0x66, 0x4b, 0xab, 0x69, 0xf4, 0xa2, 0x32, 0x3e, 0x90, 0xbd, 0x40, 0x95, 0xac, - 0x34, 0x63, 0xe0, 0x03, 0x3f, 0x54, 0xc6, 0x13, 0x4e, 0xd4, 0xe6, 0x0f, 0x04, 0xc8, 0xbb, 0x3d, - 0x18, 0xed, 0x4c, 0x4f, 0xe9, 0x6d, 0xae, 0xf9, 0xf1, 0xd3, 0x69, 0xbe, 0xcb, 0xc7, 0xaf, 0x53, - 0x7d, 0x4d, 0xe0, 0x61, 0x77, 0x75, 0x55, 0x71, 0x88, 0x99, 0x8f, 0x50, 0xbd, 0x5f, 0x06, 0xd1, - 0x52, 0x0c, 0xcd, 0x6c, 0xeb, 0xcf, 0x31, 0xdb, 0x1f, 0xb1, 0xf9, 0xb1, 0xc0, 0xac, 0x47, 0xa7, - 0x1b, 0x00, 0xee, 0xf6, 0xce, 0xbf, 0x0a, 0x3c, 0x44, 0xcf, 0xab, 0x4c, 0x94, 0x9d, 0xb6, 0x0e, - 0x49, 0xba, 0xb5, 0xe7, 0x4e, 0xb7, 0xd7, 0x42, 0x84, 0x84, 0x7d, 0x9d, 0x45, 0x1d, 0x79, 0x0a, - 0x4f, 0x45, 0x2c, 0x7c, 0x01, 0xa6, 0x29, 0xf9, 0x0c, 0x36, 0x8e, 0xf7, 0xfc, 0x53, 0x98, 0x5b, - 0xd5, 0xb4, 0x7a, 0x9d, 0x6b, 0x5f, 0x74, 0xdd, 0xee, 0x7a, 0x4f, 0xb1, 0x30, 0xef, 0x29, 0xf8, - 0xc9, 0x28, 0xbd, 0xa7, 0x0e, 0xe4, 0x79, 0x94, 0x70, 0xc4, 0x7b, 0xb9, 0x34, 0x92, 0x98, 0xab, - 0x0d, 0x4b, 0xf8, 0xb7, 0x54, 0xbd, 0x2f, 0x46, 0xd9, 0x92, 0x2e, 0xcc, 0xbb, 0x72, 0xa3, 0x3e, - 0x36, 0x19, 0xd5, 0x1c, 0xba, 0x27, 0x16, 0xfc, 0x6c, 0x94, 0x6d, 0xfa, 0x67, 0x01, 0xf2, 0xf5, - 0xee, 0x2e, 0x7b, 0xaa, 0x20, 0xca, 0x38, 0xc7, 0x74, 0x0b, 0xef, 0x39, 0xf2, 0xe9, 0xa2, 0xf6, - 0x5c, 0x4b, 0x44, 0x58, 0x09, 0x15, 0xad, 0x02, 0x58, 0x34, 0x6a, 0x9c, 0xca, 0x89, 0x4f, 0x1c, - 0xfd, 0x97, 0xa6, 0x5c, 0x81, 0x28, 0xc5, 0x1f, 0xc6, 0x60, 0xd6, 0x6b, 0x66, 0x94, 0xa6, 0xe3, - 0xff, 0x01, 0xf5, 0x7e, 0x65, 0xdb, 0x51, 0x1c, 0x9b, 0xd7, 0xf0, 0xd5, 0xd3, 0x5c, 0xe1, 0x28, - 0xcd, 0xf1, 0x58, 0xac, 0xb4, 0x47, 0x92, 0xd2, 0x44, 0x24, 0xfd, 0x89, 0x96, 0x61, 0x9e, 0xda, - 0x47, 0x59, 0xe9, 0x74, 0x5a, 0x3a, 0xd6, 0x64, 0x76, 0x82, 0x91, 0xa0, 0x27, 0x18, 0x73, 0x34, - 0x6b, 0x95, 0xe5, 0xd4, 0xe8, 0x69, 0xc6, 0x7d, 0xc8, 0xee, 0x59, 0x18, 0x3f, 0xc7, 0x32, 0xf5, - 0xba, 0x4e, 0x73, 0xae, 0x95, 0x61, 0x8c, 0x75, 0xc2, 0xc7, 0x2d, 0xd1, 0xfb, 0x30, 0x47, 0xbb, - 0x36, 0xea, 0x9b, 0x37, 0x7c, 0x54, 0x7e, 0x21, 0x00, 0x0a, 0xca, 0xff, 0xe8, 0x06, 0x26, 0x16, - 0xf9, 0xc0, 0xbc, 0x0a, 0x88, 0x85, 0x1a, 0xd8, 0x72, 0x07, 0x5b, 0xb2, 0x8d, 0x55, 0x93, 0xdf, - 0xaf, 0x17, 0x24, 0x91, 0xe7, 0x6c, 0x63, 0xab, 0x4e, 0xe9, 0xc5, 0xef, 0x5d, 0x82, 0x2c, 0xef, - 0x93, 0x1d, 0x83, 0x80, 0xfd, 0xbb, 0x10, 0x6f, 0xf2, 0xdd, 0x94, 0x4c, 0x28, 0xde, 0xf2, 0xdf, - 0xf8, 0xa8, 0x4e, 0x49, 0xa4, 0x2c, 0x61, 0xe9, 0x74, 0x9d, 0x90, 0xd0, 0x3a, 0x3f, 0x82, 0x2a, - 0xc8, 0xd2, 0xe9, 0x3a, 0xa8, 0x0e, 0xb3, 0xaa, 0xff, 0xc6, 0x81, 0x4c, 0xd8, 0xe3, 0x43, 0x2f, - 0xa2, 0x84, 0xbe, 0x14, 0x51, 0x9d, 0x92, 0xf2, 0x6a, 0x4f, 0x06, 0x2a, 0x07, 0x2f, 0xd5, 0x27, - 0x86, 0xee, 0x1d, 0xf6, 0x5f, 0xe8, 0xaf, 0x4e, 0x05, 0xee, 0xde, 0xa3, 0x37, 0x20, 0xa9, 0xd1, - 0xcb, 0xda, 0x5c, 0x43, 0xc3, 0x94, 0xa8, 0xe7, 0x7e, 0x7c, 0x75, 0x4a, 0xe2, 0x1c, 0xe8, 0x21, - 0x64, 0xd9, 0x2f, 0x76, 0x4b, 0x99, 0xbb, 0x95, 0xd7, 0x87, 0x4b, 0x08, 0x58, 0xeb, 0xea, 0x94, - 0x94, 0xd1, 0x7c, 0x2a, 0xfa, 0x24, 0x24, 0x6c, 0x55, 0x31, 0xf8, 0x96, 0xe3, 0xe5, 0x21, 0x97, - 0x52, 0x7d, 0x66, 0x5a, 0x1a, 0xbd, 0x0b, 0x73, 0x74, 0x83, 0x45, 0x76, 0xfc, 0x93, 0x67, 0x7a, - 0x29, 0xa6, 0xf7, 0xb0, 0xdb, 0x73, 0xb7, 0xc2, 0xef, 0x62, 0x55, 0xa7, 0x24, 0x71, 0xb7, 0x2f, - 0x8b, 0x0c, 0x19, 0xf5, 0x97, 0x03, 0x82, 0xd3, 0x43, 0x87, 0x2c, 0xf4, 0x76, 0x14, 0x19, 0x32, - 0xdc, 0x93, 0x81, 0x1e, 0x40, 0x46, 0x21, 0xfe, 0x8b, 0x4c, 0xef, 0x37, 0x14, 0x60, 0xe8, 0xde, - 0xf1, 0xc0, 0xfd, 0x92, 0x2a, 0xbd, 0x58, 0xe6, 0x12, 0x7d, 0x41, 0x6d, 0x6c, 0x35, 0x71, 0x21, - 0x33, 0x5a, 0x50, 0xf0, 0xb8, 0xda, 0x13, 0x44, 0x89, 0x68, 0x03, 0x72, 0xfb, 0x6e, 0xbc, 0x2f, - 0x0d, 0x15, 0xc8, 0x0e, 0xdd, 0x40, 0x0e, 0x89, 0x57, 0xae, 0x4e, 0x49, 0xd9, 0xfd, 0x00, 0x19, - 0x2d, 0x43, 0xac, 0xa9, 0x16, 0x72, 0x54, 0xc6, 0x8b, 0xa3, 0xa2, 0x71, 0xab, 0x53, 0x52, 0xac, - 0xa9, 0x12, 0x54, 0xc2, 0xc2, 0x06, 0x0f, 0x8d, 0x42, 0x7e, 0xa8, 0x91, 0xe9, 0x0d, 0x16, 0xad, - 0x4e, 0x49, 0x34, 0xa4, 0x92, 0x7c, 0x6f, 0x1b, 0xf2, 0x16, 0x3b, 0xef, 0x77, 0xa3, 0x5a, 0x44, - 0x2a, 0xe5, 0x66, 0xb8, 0xa9, 0x1a, 0x08, 0x6c, 0xa9, 0x4e, 0x49, 0x39, 0x2b, 0x48, 0x47, 0x5f, - 0x86, 0x73, 0xbd, 0x12, 0xb9, 0x72, 0xcf, 0x0d, 0x58, 0xae, 0x70, 0xb9, 0xbd, 0x3a, 0x8e, 0xac, - 0x81, 0x4c, 0xf4, 0x69, 0x98, 0x66, 0xa3, 0x86, 0xa8, 0xc8, 0xb0, 0xa3, 0xa6, 0xbe, 0x01, 0x63, - 0xe5, 0xc9, 0x7c, 0x73, 0xf8, 0x41, 0xb7, 0xdc, 0x32, 0x9b, 0x85, 0xf9, 0xa1, 0xf3, 0x6d, 0xf0, - 0xe0, 0x9e, 0xcc, 0x37, 0xc7, 0xa7, 0x92, 0x71, 0xb7, 0x58, 0x0e, 0x3f, 0x17, 0x3d, 0x37, 0x74, - 0xdc, 0x43, 0xce, 0xbf, 0xab, 0x34, 0x68, 0xcf, 0x27, 0x93, 0xaa, 0x59, 0xec, 0x1e, 0xb8, 0x4c, - 0xa7, 0xf1, 0xf9, 0xa1, 0x55, 0x1b, 0xbc, 0xdb, 0x4e, 0xaa, 0x66, 0xf9, 0x54, 0xf4, 0x18, 0x44, - 0x7e, 0xd7, 0xd3, 0xdf, 0x8f, 0xba, 0x30, 0xf4, 0x24, 0x22, 0xfc, 0x20, 0xb1, 0x3a, 0x25, 0xcd, - 0xaa, 0xbd, 0x39, 0xc4, 0x58, 0x50, 0x79, 0xb2, 0xea, 0x5f, 0xd2, 0x2d, 0x14, 0x86, 0x1a, 0x8b, - 0x21, 0xd7, 0xba, 0x89, 0xb1, 0x50, 0xfb, 0xb2, 0x88, 0x1a, 0xeb, 0x86, 0xee, 0x50, 0xc3, 0xbe, - 0x30, 0x54, 0x8d, 0x7b, 0x9f, 0xa1, 0x21, 0x6a, 0xac, 0x33, 0x0a, 0x51, 0x63, 0x87, 0x1f, 0x9a, - 0xf3, 0xe1, 0x78, 0x71, 0xa8, 0x1a, 0x87, 0x9d, 0xae, 0x13, 0x35, 0x76, 0x82, 0x74, 0xa2, 0xc6, - 0xcc, 0x40, 0xf4, 0xc9, 0x7d, 0x69, 0xa8, 0x1a, 0x0f, 0xbd, 0x61, 0x44, 0xd4, 0x58, 0x19, 0xc8, - 0x44, 0x6b, 0x00, 0xcc, 0x23, 0xd2, 0x8d, 0x3d, 0xb3, 0x70, 0x79, 0xe8, 0xfa, 0xd3, 0x7f, 0x6c, - 0x4e, 0xd6, 0x9f, 0x96, 0x4b, 0x23, 0x86, 0x8c, 0xfa, 0xd8, 0x32, 0xdd, 0xfc, 0x2e, 0x2c, 0x0e, - 0x35, 0x64, 0x03, 0x7b, 0xe0, 0xc4, 0x90, 0x1d, 0x78, 0x44, 0xb2, 0x90, 0xb1, 0x2d, 0xa3, 0xc2, - 0xd2, 0x98, 0xad, 0x89, 0xc0, 0x42, 0xc6, 0x38, 0xd0, 0x2a, 0xa4, 0x89, 0xa7, 0x70, 0x44, 0xcd, - 0xd0, 0x95, 0xa1, 0xde, 0x6d, 0x5f, 0x54, 0x6a, 0x75, 0x4a, 0x4a, 0x3d, 0xe5, 0x24, 0xf2, 0x79, - 0x86, 0xdb, 0x0b, 0xc5, 0xa1, 0x9f, 0xef, 0xd9, 0xa9, 0x21, 0x9f, 0x67, 0x1c, 0x48, 0x85, 0xf3, - 0x6c, 0xac, 0xf8, 0x95, 0x24, 0x8b, 0xdf, 0xdd, 0x29, 0x5c, 0xa5, 0xa2, 0x86, 0xa2, 0xe0, 0xd0, - 0xeb, 0x51, 0xd5, 0x29, 0x69, 0x5e, 0x19, 0xcc, 0x25, 0x13, 0x9e, 0x2f, 0x3d, 0x0c, 0x3b, 0x17, - 0xae, 0x0d, 0x9d, 0xf0, 0x21, 0xbb, 0x0d, 0x64, 0xc2, 0x2b, 0x01, 0x32, 0x5b, 0x80, 0x34, 0xd9, - 0xb6, 0xd9, 0x51, 0xc9, 0xf5, 0x11, 0x0b, 0x50, 0x1f, 0x82, 0x66, 0x0b, 0x90, 0x56, 0x67, 0x9c, - 0x44, 0x90, 0xda, 0xc2, 0x8a, 0xc5, 0xcd, 0xec, 0x8d, 0xa1, 0x82, 0x06, 0x9e, 0x76, 0x21, 0x82, - 0x54, 0x8f, 0x48, 0x16, 0x6c, 0xcb, 0xbd, 0x24, 0xce, 0xbd, 0xcd, 0x9b, 0x43, 0x17, 0xec, 0xd0, - 0xbb, 0xec, 0x64, 0xc1, 0xb6, 0x7a, 0x32, 0xd0, 0xe7, 0x60, 0x86, 0xdf, 0xb8, 0x2d, 0xdc, 0x1a, - 0xe1, 0x03, 0x07, 0x61, 0x35, 0x99, 0xd7, 0x9c, 0x87, 0x59, 0x59, 0x76, 0x61, 0x97, 0x35, 0xef, - 0xe5, 0x11, 0x56, 0x76, 0x00, 0xd1, 0x32, 0x2b, 0xeb, 0x93, 0x89, 0x95, 0x65, 0x7a, 0xca, 0xd7, - 0xba, 0xdb, 0x43, 0xad, 0xec, 0x60, 0x48, 0x2c, 0xb1, 0xb2, 0x4f, 0x7d, 0x2a, 0x69, 0x99, 0xcd, - 0x80, 0x58, 0xe1, 0x95, 0xa1, 0x2d, 0xeb, 0x45, 0xa4, 0xa4, 0x65, 0x9c, 0x87, 0x0c, 0x1b, 0x8b, - 0xd6, 0x62, 0x3d, 0xfd, 0xea, 0xd0, 0x61, 0x1b, 0xc0, 0x2d, 0x55, 0xf7, 0xd9, 0x3f, 0xd6, 0xc3, - 0x9e, 0xa1, 0xb2, 0xf8, 0x6d, 0x2b, 0xde, 0x53, 0xaf, 0x8d, 0x36, 0x54, 0x61, 0x17, 0xc9, 0x3c, - 0x43, 0xd5, 0x93, 0x49, 0xab, 0xca, 0x02, 0xcc, 0xe9, 0xfc, 0x5e, 0x1e, 0x5e, 0xd5, 0xfe, 0x98, - 0x7f, 0x5a, 0x55, 0x8f, 0xe8, 0x4f, 0xa1, 0x2e, 0xbb, 0x9f, 0x5a, 0xb8, 0x33, 0x7a, 0x0a, 0xf5, - 0xde, 0x93, 0xf5, 0xa6, 0x10, 0x27, 0x97, 0x66, 0x78, 0xcc, 0xdf, 0xc3, 0x44, 0x6a, 0x56, 0x14, - 0x1f, 0x26, 0x52, 0x17, 0xc5, 0xc2, 0xc3, 0x44, 0xea, 0x92, 0xb8, 0xf0, 0x30, 0x91, 0x7a, 0x41, - 0x7c, 0xb1, 0xf8, 0x9b, 0x97, 0x20, 0xe7, 0xe2, 0x2b, 0x86, 0x56, 0x56, 0x82, 0x68, 0xe5, 0xf2, - 0x30, 0xb4, 0xc2, 0x11, 0x19, 0x87, 0x2b, 0x2b, 0x41, 0xb8, 0x72, 0x79, 0x18, 0x5c, 0xf1, 0x79, - 0x08, 0x5e, 0x69, 0x0c, 0xc3, 0x2b, 0x2f, 0x4f, 0x80, 0x57, 0x3c, 0x51, 0xfd, 0x80, 0x65, 0x6d, - 0x10, 0xb0, 0x5c, 0x1b, 0x0d, 0x58, 0x3c, 0x51, 0x01, 0xc4, 0xf2, 0x66, 0x1f, 0x62, 0xb9, 0x32, - 0x02, 0xb1, 0x78, 0xfc, 0x2e, 0x64, 0x59, 0x0f, 0x85, 0x2c, 0x37, 0xc6, 0x41, 0x16, 0x4f, 0x4e, - 0x0f, 0x66, 0x79, 0xbd, 0x07, 0xb3, 0x2c, 0x0e, 0xc5, 0x2c, 0x1e, 0x37, 0x03, 0x2d, 0xef, 0x0d, - 0x07, 0x2d, 0xaf, 0x4c, 0x04, 0x5a, 0x3c, 0x79, 0x83, 0xa8, 0xa5, 0x31, 0x0c, 0xb5, 0xbc, 0x3c, - 0x01, 0x6a, 0xf1, 0x07, 0xae, 0x0f, 0xb6, 0x54, 0xc3, 0x60, 0xcb, 0xf5, 0x31, 0xb0, 0xc5, 0x93, - 0x16, 0xc4, 0x2d, 0xd5, 0x30, 0xdc, 0x72, 0x7d, 0x0c, 0x6e, 0xe9, 0x93, 0xc4, 0x80, 0xcb, 0x66, - 0x38, 0x70, 0xb9, 0x39, 0x16, 0xb8, 0x78, 0xd2, 0x7a, 0x91, 0xcb, 0x9d, 0x00, 0x72, 0x79, 0x69, - 0x08, 0x72, 0xf1, 0x58, 0x09, 0x74, 0xf9, 0xfc, 0x00, 0x74, 0x29, 0x8e, 0x82, 0x2e, 0x1e, 0xaf, - 0x87, 0x5d, 0xde, 0x1e, 0x82, 0x5d, 0x6e, 0x8d, 0xc7, 0x2e, 0x9e, 0xb0, 0x3e, 0xf0, 0xa2, 0x8c, - 0x04, 0x2f, 0xaf, 0x4d, 0x08, 0x5e, 0x3c, 0xe9, 0x61, 0xe8, 0xe5, 0x33, 0xbd, 0xe8, 0x65, 0x69, - 0x38, 0x7a, 0xf1, 0xc4, 0x70, 0xf8, 0xb2, 0x1e, 0x0a, 0x5f, 0x6e, 0x8c, 0x83, 0x2f, 0xfe, 0xdc, - 0x0b, 0xe2, 0x97, 0xcd, 0x70, 0xfc, 0x72, 0x73, 0x2c, 0x7e, 0xf1, 0x87, 0xbf, 0x07, 0xc0, 0xac, - 0x87, 0x02, 0x98, 0x1b, 0xe3, 0x00, 0x8c, 0x5f, 0xb9, 0x20, 0x82, 0x79, 0x67, 0x28, 0x82, 0xb9, - 0x3d, 0x09, 0x82, 0xf1, 0x84, 0x0e, 0x40, 0x98, 0xf7, 0x86, 0x43, 0x98, 0x57, 0x4e, 0xf1, 0x24, - 0x51, 0x28, 0x86, 0xf9, 0xfc, 0x00, 0x86, 0x29, 0x8e, 0xc2, 0x30, 0xbe, 0x3e, 0xbb, 0x20, 0x46, - 0x19, 0x09, 0x39, 0x5e, 0x9b, 0x10, 0x72, 0xf8, 0xca, 0x17, 0x82, 0x39, 0x2a, 0x21, 0x98, 0xe3, - 0xda, 0x68, 0xcc, 0xe1, 0x2f, 0x21, 0x3e, 0xe8, 0xa8, 0x86, 0x81, 0x8e, 0xeb, 0x63, 0x40, 0x87, - 0x6f, 0x85, 0x02, 0xa8, 0xe3, 0xcd, 0x3e, 0xd4, 0x71, 0x65, 0xec, 0x89, 0x7e, 0x00, 0x76, 0x94, - 0x06, 0x61, 0xc7, 0xd5, 0x91, 0xb0, 0xc3, 0x93, 0xe0, 0xe3, 0x8e, 0x37, 0xfb, 0x70, 0xc7, 0x95, - 0x11, 0xb8, 0xc3, 0xaf, 0x00, 0x07, 0x1e, 0xda, 0x68, 0xe0, 0xb1, 0x3c, 0x29, 0xf0, 0xf0, 0x04, - 0x87, 0x22, 0x8f, 0xcd, 0x70, 0xe4, 0x71, 0x73, 0xc2, 0xc3, 0xbd, 0x01, 0xe8, 0x51, 0x0d, 0x83, - 0x1e, 0xd7, 0xc7, 0x40, 0x8f, 0xe0, 0x1a, 0xe2, 0x61, 0x8f, 0x6a, 0x18, 0xf6, 0xb8, 0x3e, 0x06, - 0x7b, 0xf8, 0x92, 0x02, 0xe0, 0xa3, 0x31, 0x0c, 0x7c, 0xbc, 0x3c, 0x01, 0xf8, 0xf0, 0xd7, 0xdd, - 0x3e, 0xf4, 0xf1, 0x56, 0x3f, 0xfa, 0x28, 0x8e, 0x42, 0x1f, 0xfe, 0x8c, 0x74, 0xe1, 0xc7, 0x66, - 0x38, 0xfc, 0xb8, 0x39, 0x16, 0x7e, 0x04, 0x8d, 0x64, 0x00, 0x7f, 0xac, 0x87, 0xe2, 0x8f, 0x1b, - 0xe3, 0xf0, 0x87, 0x6f, 0x24, 0x83, 0x00, 0xe4, 0xad, 0x7e, 0x00, 0x52, 0x1c, 0x05, 0x40, 0xfc, - 0xc6, 0xb9, 0x08, 0xa4, 0x1a, 0x86, 0x40, 0xae, 0x8f, 0x41, 0x20, 0xfe, 0xe0, 0x05, 0x20, 0x88, - 0x32, 0x12, 0x82, 0xbc, 0x36, 0x21, 0x04, 0xe9, 0x33, 0x5c, 0xbd, 0x18, 0xa4, 0x1a, 0x86, 0x41, - 0xae, 0x8f, 0xc1, 0x20, 0x81, 0xca, 0xfa, 0x20, 0x64, 0x33, 0x1c, 0x84, 0xdc, 0x1c, 0x0b, 0x42, - 0xfa, 0x66, 0xd3, 0xa4, 0x28, 0xe4, 0x61, 0x22, 0xf5, 0xa2, 0xf8, 0x52, 0xf1, 0x2f, 0xa7, 0x21, - 0x59, 0x75, 0x63, 0x62, 0x02, 0x0f, 0x0c, 0x08, 0x67, 0x79, 0x60, 0x00, 0xad, 0x11, 0xc5, 0xa6, - 0xe6, 0x81, 0xe3, 0x92, 0x11, 0xaf, 0x75, 0x0c, 0x1c, 0x4b, 0xba, 0xac, 0x67, 0xb8, 0x31, 0x84, - 0x5e, 0x87, 0x5c, 0xd7, 0xc6, 0x96, 0xdc, 0xb1, 0x74, 0xd3, 0xd2, 0x1d, 0x16, 0x49, 0x2a, 0x94, - 0xc4, 0x0f, 0x8f, 0x17, 0xb3, 0x3b, 0x36, 0xb6, 0xb6, 0x39, 0x5d, 0xca, 0x76, 0x03, 0x29, 0xf7, - 0x9d, 0xfd, 0xe9, 0xc9, 0xdf, 0xd9, 0x7f, 0x1b, 0x44, 0x0b, 0x2b, 0x5a, 0xcf, 0x42, 0xcd, 0xee, - 0xdc, 0x87, 0xfb, 0x14, 0x34, 0x64, 0xda, 0x2d, 0x49, 0xef, 0xde, 0xcf, 0x5a, 0xbd, 0x44, 0x74, - 0x17, 0xce, 0xb7, 0x95, 0x43, 0xf6, 0xd4, 0x84, 0xeb, 0xfb, 0xd0, 0xd8, 0xa0, 0x14, 0x0d, 0x61, - 0x43, 0x6d, 0xe5, 0x90, 0x3e, 0xda, 0xcf, 0xb2, 0xe8, 0x73, 0xbd, 0xd7, 0x21, 0xaf, 0xe9, 0xb6, - 0xa3, 0x1b, 0xaa, 0xfb, 0x50, 0x19, 0xbb, 0x9c, 0x9f, 0x73, 0xa9, 0xec, 0xc1, 0xb0, 0xdb, 0x30, - 0xc7, 0x83, 0x05, 0xfd, 0x67, 0xfc, 0xa9, 0x97, 0x9f, 0x22, 0xb5, 0x20, 0x19, 0xfe, 0xff, 0x6f, - 0x28, 0xc3, 0x6c, 0x53, 0x71, 0xf0, 0x81, 0x72, 0x24, 0xbb, 0x51, 0xdb, 0x19, 0xfa, 0x66, 0xd0, - 0x0b, 0x27, 0xc7, 0x8b, 0xb9, 0x07, 0x2c, 0x6b, 0x20, 0x78, 0x3b, 0xd7, 0x0c, 0x64, 0x68, 0x68, - 0x15, 0xb2, 0xf4, 0x25, 0x52, 0x93, 0x3d, 0x78, 0xcb, 0x7d, 0xf7, 0x61, 0xa7, 0x3e, 0xfc, 0x59, - 0x5c, 0x89, 0xbe, 0x5e, 0xea, 0xbe, 0x91, 0x7b, 0x13, 0x66, 0x15, 0xfb, 0xc8, 0x50, 0x69, 0x0f, - 0x63, 0xc3, 0xee, 0xda, 0xd4, 0x79, 0x4f, 0x49, 0x79, 0x4a, 0x2e, 0xbb, 0x54, 0xfe, 0x38, 0xd9, - 0x6f, 0x0b, 0x90, 0xed, 0x89, 0xa0, 0x7d, 0xb3, 0xef, 0x70, 0xf3, 0x52, 0x38, 0x70, 0x18, 0x16, - 0x16, 0x96, 0xe2, 0x23, 0xe0, 0x86, 0xaa, 0x2c, 0x0e, 0x77, 0x3c, 0x29, 0x74, 0x77, 0x8f, 0xd4, - 0x5d, 0xb6, 0x37, 0x12, 0xbf, 0xfb, 0xed, 0xc5, 0xa9, 0xe2, 0x2f, 0xe3, 0x90, 0xeb, 0x8d, 0x94, - 0xad, 0xf5, 0xd5, 0x2b, 0x6c, 0x62, 0xf7, 0x70, 0x2c, 0x8f, 0x78, 0x13, 0x27, 0xed, 0xbf, 0x5f, - 0xca, 0xaa, 0xb9, 0x34, 0xe2, 0x08, 0x37, 0x58, 0x4f, 0x9f, 0x71, 0xe1, 0x47, 0x31, 0x6f, 0xe6, - 0x2f, 0xc3, 0x34, 0xbd, 0xb5, 0xcc, 0xab, 0x16, 0x76, 0x97, 0xa8, 0x42, 0xf2, 0x25, 0x56, 0x8c, - 0x58, 0x8a, 0xc6, 0x99, 0x9e, 0x22, 0xf1, 0x08, 0x67, 0xf8, 0x0f, 0x17, 0xfc, 0xf9, 0x9b, 0xe9, - 0xd3, 0x3d, 0x7f, 0xc3, 0x8e, 0x68, 0x5b, 0x2d, 0xac, 0x3a, 0xfc, 0x5f, 0x9a, 0xb8, 0xff, 0xc7, - 0xe2, 0x5a, 0xbf, 0x08, 0xfe, 0x0f, 0x50, 0x96, 0x25, 0xfe, 0x0f, 0x50, 0x02, 0xd1, 0x43, 0x79, - 0x4f, 0x04, 0x9d, 0x58, 0x2c, 0xc6, 0x8c, 0x0f, 0xf5, 0xaf, 0x0b, 0x20, 0xd2, 0x69, 0x74, 0x1f, - 0x63, 0x2d, 0x12, 0x2d, 0x74, 0x03, 0x9b, 0x62, 0x13, 0x07, 0x36, 0x15, 0x15, 0xc8, 0x7b, 0x75, - 0x60, 0x0f, 0xfa, 0x8f, 0x78, 0x49, 0xe6, 0x4c, 0x97, 0x52, 0x8b, 0xbf, 0x27, 0xc0, 0xbc, 0xf7, - 0x8d, 0xb2, 0x77, 0x17, 0xea, 0x2c, 0xa1, 0xa6, 0x12, 0xfd, 0x67, 0x25, 0x04, 0x81, 0xd2, 0x8b, - 0x8a, 0x13, 0x69, 0x10, 0xe2, 0xd1, 0x02, 0xc0, 0x91, 0xad, 0xd6, 0xa8, 0xd3, 0x7f, 0x63, 0xc2, - 0x7e, 0xdb, 0xc5, 0xfb, 0x81, 0x1e, 0xa0, 0xca, 0x4a, 0x9a, 0x39, 0x91, 0x56, 0xbb, 0xcd, 0xa4, - 0x85, 0x8b, 0x3f, 0x11, 0x82, 0x82, 0x9e, 0x11, 0x8f, 0xe6, 0x1e, 0xc4, 0x9f, 0x29, 0xad, 0x51, - 0xc1, 0x12, 0x3d, 0x5d, 0x2f, 0x91, 0xd2, 0xe8, 0x7e, 0xcf, 0x15, 0xb2, 0xd8, 0x70, 0xd8, 0x39, - 0xd8, 0xa5, 0xc1, 0xab, 0x66, 0xe8, 0xd3, 0x6e, 0x2b, 0xe2, 0xe3, 0x3f, 0x1f, 0x9c, 0xa4, 0x6f, - 0x24, 0x3e, 0xf8, 0xf6, 0xa2, 0x70, 0xbb, 0x0e, 0xf3, 0x21, 0x8b, 0x10, 0xca, 0x03, 0x04, 0x9e, - 0x94, 0xe5, 0xff, 0x2b, 0x65, 0x75, 0x4d, 0xde, 0xd9, 0x2c, 0x6f, 0x6d, 0x6c, 0xd4, 0x1a, 0x8d, - 0xca, 0x9a, 0x28, 0x20, 0x11, 0xb2, 0x3d, 0x0f, 0xd2, 0xf2, 0x7f, 0x91, 0x72, 0xfb, 0x53, 0x00, - 0xfe, 0x53, 0xd2, 0x44, 0xd6, 0x7a, 0xe5, 0x5d, 0xf9, 0xf1, 0xea, 0xa3, 0x9d, 0x4a, 0x5d, 0x9c, - 0x42, 0x08, 0xf2, 0xa5, 0xd5, 0x46, 0xb9, 0x2a, 0x4b, 0x95, 0xfa, 0xf6, 0xd6, 0x66, 0xbd, 0x22, - 0x0a, 0x9c, 0x6f, 0x0d, 0xb2, 0xc1, 0xcb, 0x76, 0x68, 0x1e, 0x66, 0xcb, 0xd5, 0x4a, 0x79, 0x5d, - 0x7e, 0x5c, 0x5b, 0x95, 0xdf, 0xde, 0xa9, 0xec, 0x54, 0xc4, 0x29, 0x5a, 0x35, 0x4a, 0xbc, 0xbf, - 0xf3, 0xe8, 0x91, 0x28, 0xa0, 0x59, 0xc8, 0xb0, 0x34, 0x7d, 0xbc, 0x56, 0x8c, 0xdd, 0xde, 0x80, - 0x4c, 0xe0, 0x2d, 0x1b, 0xf2, 0xb9, 0xed, 0x9d, 0x7a, 0x55, 0x6e, 0xd4, 0x36, 0x2a, 0xf5, 0xc6, - 0xea, 0xc6, 0x36, 0x93, 0x41, 0x69, 0xab, 0xa5, 0x2d, 0xa9, 0x21, 0x0a, 0x5e, 0xba, 0xb1, 0xb5, - 0x53, 0xae, 0x7a, 0xff, 0xe9, 0x25, 0x91, 0x8a, 0x8b, 0xf1, 0xdb, 0x26, 0x9c, 0x0f, 0xbd, 0xbd, - 0x86, 0x32, 0x30, 0xb3, 0x63, 0xd0, 0xb7, 0x39, 0xc4, 0x29, 0x94, 0x0b, 0x5c, 0x60, 0x13, 0x05, - 0x94, 0x62, 0xd7, 0x94, 0xc4, 0x18, 0x4a, 0x42, 0xac, 0x7e, 0x4f, 0x8c, 0x93, 0x6a, 0x06, 0x6e, - 0x81, 0x89, 0x09, 0x94, 0xe6, 0x97, 0x67, 0xc4, 0x69, 0x94, 0xf5, 0x6f, 0xaf, 0x88, 0xc9, 0xdb, - 0x57, 0x20, 0x10, 0xdc, 0x8f, 0x00, 0x92, 0x8f, 0x14, 0x07, 0xdb, 0x8e, 0x38, 0x85, 0x66, 0x20, - 0xbe, 0xda, 0x6a, 0x89, 0xc2, 0xca, 0x0f, 0x04, 0x48, 0xb9, 0xef, 0x96, 0xa2, 0x47, 0x30, 0xcd, - 0x40, 0xe9, 0xe2, 0xf0, 0x25, 0x83, 0x5a, 0x9d, 0x85, 0xa5, 0x71, 0x6b, 0x4a, 0x71, 0x0a, 0xbd, - 0xc3, 0xff, 0x69, 0x13, 0xd1, 0x17, 0x74, 0x75, 0x94, 0x36, 0xb9, 0x52, 0x47, 0xab, 0x1c, 0x99, - 0x21, 0xc5, 0xa9, 0x4f, 0x08, 0xa5, 0x2b, 0x1f, 0xfc, 0xe3, 0xe5, 0xa9, 0x0f, 0x4e, 0x2e, 0x0b, - 0x3f, 0x3d, 0xb9, 0x2c, 0xfc, 0xfc, 0xe4, 0xb2, 0xf0, 0x0f, 0x27, 0x97, 0x85, 0xdf, 0xfa, 0xa7, - 0xcb, 0x53, 0xef, 0xcd, 0x70, 0xae, 0xdd, 0x24, 0xfd, 0xbf, 0x51, 0xf7, 0xfe, 0x2b, 0x00, 0x00, - 0xff, 0xff, 0x1a, 0x05, 0x6e, 0x16, 0x3c, 0x6b, 0x00, 0x00, + 0x68, 0x74, 0x99, 0x26, 0x35, 0xeb, 0x59, 0xff, 0xfb, 0xb7, 0x5b, 0xdd, 0x25, 0xaa, 0x3d, 0x64, + 0x37, 0xa7, 0xbb, 0x39, 0x92, 0x06, 0xf8, 0xf1, 0x03, 0xff, 0x8b, 0x13, 0xc3, 0x30, 0xf2, 0x10, + 0x04, 0x81, 0x9d, 0x20, 0x06, 0x6c, 0x20, 0x80, 0x83, 0x18, 0x71, 0x60, 0x20, 0x40, 0x90, 0xc0, + 0x0f, 0xc9, 0xc3, 0xc2, 0xf0, 0x83, 0x11, 0xc4, 0x89, 0x91, 0x07, 0x21, 0x51, 0x12, 0xd8, 0xc8, + 0x6b, 0x1e, 0x02, 0xec, 0x43, 0x12, 0xd4, 0xa5, 0x2f, 0x24, 0x9b, 0x17, 0xc9, 0xbd, 0xc8, 0x06, + 0x79, 0x62, 0xf7, 0xa9, 0x3a, 0xa7, 0xeb, 0x72, 0xea, 0xd4, 0xf9, 0xaa, 0x4e, 0x15, 0x61, 0xd6, + 0x32, 0x15, 0x75, 0xaf, 0xbd, 0x73, 0x47, 0x69, 0xeb, 0x4b, 0x6d, 0xcb, 0x74, 0x4c, 0x34, 0xab, + 0x9a, 0xea, 0x33, 0x4a, 0x5e, 0xe2, 0x89, 0xf3, 0xc8, 0xcd, 0xa5, 0x29, 0x8e, 0xc2, 0xb2, 0xcd, + 0x9f, 0x71, 0x69, 0xd8, 0xb2, 0x4c, 0xcb, 0xe6, 0xd4, 0x73, 0x2e, 0xb5, 0x85, 0x1d, 0x25, 0x90, + 0xbb, 0x60, 0x3b, 0xa6, 0xa5, 0x34, 0xf0, 0x1d, 0x6c, 0x34, 0x74, 0xc3, 0xfd, 0x21, 0xf9, 0x5e, + 0xa8, 0x2a, 0xcf, 0x73, 0x75, 0x58, 0x9e, 0x7b, 0x3c, 0x53, 0xbe, 0xe3, 0xe8, 0xcd, 0x3b, 0x7b, + 0x4d, 0xf5, 0x8e, 0xa3, 0xb7, 0xb0, 0xed, 0x28, 0xad, 0x36, 0x4f, 0x59, 0xa4, 0x29, 0x8e, 0xa5, + 0xa8, 0xba, 0xd1, 0xb8, 0x63, 0x61, 0xd5, 0xb4, 0x34, 0xac, 0xc9, 0x76, 0x5b, 0x31, 0xdc, 0x22, + 0x37, 0xcc, 0x86, 0x49, 0x1f, 0xef, 0x90, 0x27, 0x46, 0x2d, 0xfc, 0x3f, 0x48, 0x49, 0x8a, 0xd1, + 0xc0, 0x55, 0x63, 0xd7, 0x44, 0x9f, 0x85, 0x84, 0x86, 0x6d, 0x35, 0x2f, 0x2c, 0x0a, 0xb7, 0xd2, + 0xcb, 0x85, 0xa5, 0xbe, 0xb6, 0x58, 0xa2, 0x79, 0x57, 0xb1, 0xad, 0x5a, 0x7a, 0xdb, 0x31, 0xad, + 0x62, 0xe2, 0x83, 0xa3, 0x85, 0x09, 0x89, 0x72, 0xa1, 0x4f, 0xc2, 0x64, 0x13, 0x2b, 0x36, 0xce, + 0xc7, 0x28, 0x7b, 0x3e, 0x84, 0xfd, 0x11, 0x49, 0xe7, 0x4c, 0x2c, 0x73, 0xe1, 0x2f, 0x04, 0xc8, + 0x4a, 0xf8, 0x79, 0x07, 0xdb, 0x4e, 0x05, 0x2b, 0x1a, 0xb6, 0xd0, 0x05, 0x88, 0x3f, 0xc3, 0x87, + 0xf9, 0xf8, 0xa2, 0x70, 0x2b, 0x53, 0x9c, 0xfe, 0xf0, 0x68, 0x21, 0xbe, 0x86, 0x0f, 0x25, 0x42, + 0x43, 0x8b, 0x30, 0x8d, 0x0d, 0x4d, 0x26, 0xc9, 0x89, 0xee, 0xe4, 0x29, 0x6c, 0x68, 0x6b, 0xf8, + 0x10, 0xa9, 0x90, 0xb4, 0x89, 0x34, 0x43, 0xc5, 0xf9, 0xc9, 0x45, 0xe1, 0xd6, 0x64, 0xf1, 0xc1, + 0x87, 0x47, 0x0b, 0xa5, 0x86, 0xee, 0xec, 0x75, 0x76, 0x96, 0x54, 0xb3, 0x75, 0xc7, 0x2b, 0x95, + 0xb6, 0xe3, 0x3f, 0xdf, 0x69, 0x3f, 0x6b, 0xdc, 0x19, 0xd0, 0x03, 0x4b, 0xf5, 0x03, 0xa3, 0x86, + 0x9f, 0x4b, 0x9e, 0xe0, 0xb7, 0x12, 0xbf, 0xfc, 0xf6, 0x82, 0xf0, 0x30, 0x91, 0x14, 0xc4, 0xd8, + 0xc3, 0x44, 0x32, 0x26, 0xc6, 0x0b, 0x5f, 0x8f, 0x43, 0x4e, 0xc2, 0x76, 0xdb, 0x34, 0x6c, 0xcc, + 0xab, 0xf1, 0x09, 0x88, 0x3b, 0x07, 0x06, 0xad, 0x46, 0x7a, 0xf9, 0x72, 0x48, 0x63, 0xd4, 0x2d, + 0xc5, 0xb0, 0x15, 0xd5, 0xd1, 0x4d, 0x43, 0x22, 0x59, 0xd1, 0x67, 0x20, 0x6d, 0x61, 0xbb, 0xd3, + 0xc2, 0xb4, 0xdb, 0x68, 0x0d, 0xd3, 0xcb, 0xe7, 0x43, 0x38, 0x6b, 0x6d, 0xc5, 0x90, 0x80, 0xe5, + 0x25, 0xcf, 0xe8, 0x02, 0x24, 0x8d, 0x4e, 0x8b, 0xb4, 0x8b, 0x4d, 0x6b, 0x1d, 0x97, 0xa6, 0x8d, + 0x4e, 0x6b, 0x0d, 0x1f, 0xda, 0xa8, 0x04, 0x69, 0x8b, 0x74, 0x9a, 0xac, 0x1b, 0xbb, 0xa6, 0x9d, + 0x9f, 0x5a, 0x8c, 0xdf, 0x4a, 0x2f, 0x5f, 0x1a, 0xd4, 0xb5, 0x44, 0x0d, 0x78, 0xff, 0x80, 0xe5, + 0x12, 0x6c, 0x54, 0x83, 0x2c, 0x2f, 0x99, 0x85, 0x15, 0xdb, 0x34, 0xf2, 0xd3, 0x8b, 0xc2, 0xad, + 0xdc, 0xf2, 0x52, 0x98, 0x98, 0xae, 0x56, 0x20, 0xaf, 0x9d, 0x16, 0x96, 0x28, 0x97, 0x94, 0xb1, + 0x02, 0x6f, 0x85, 0xa7, 0x90, 0x09, 0xa6, 0x22, 0x04, 0x39, 0xa9, 0x5c, 0xdb, 0x5e, 0x2f, 0xcb, + 0xdb, 0x1b, 0x6b, 0x1b, 0x9b, 0xef, 0x6e, 0x88, 0x13, 0xe8, 0x0c, 0x88, 0x9c, 0xb6, 0x56, 0x7e, + 0x2a, 0x3f, 0xaa, 0xae, 0x57, 0xeb, 0xa2, 0x80, 0x2e, 0xc0, 0x59, 0x4e, 0x95, 0x56, 0x36, 0x1e, + 0x94, 0xe5, 0xe2, 0xe6, 0xf6, 0xc6, 0xea, 0x8a, 0xf4, 0x54, 0x8c, 0xcd, 0x27, 0x7e, 0xed, 0x3b, + 0x97, 0x27, 0x0a, 0x4f, 0x00, 0x1e, 0x60, 0x87, 0xab, 0x15, 0x2a, 0xc2, 0xd4, 0x1e, 0x2d, 0x0d, + 0x57, 0xec, 0xc5, 0xd0, 0x62, 0x07, 0x54, 0xb0, 0x98, 0x24, 0x2d, 0xf0, 0xd3, 0xa3, 0x05, 0x41, + 0xe2, 0x9c, 0xac, 0xcb, 0x0b, 0x3f, 0x12, 0x20, 0x4d, 0x05, 0xb3, 0x3a, 0xa2, 0x52, 0x8f, 0xe4, + 0x2b, 0x23, 0x1b, 0xa4, 0x5f, 0x34, 0x5a, 0x82, 0xc9, 0x17, 0x4a, 0xb3, 0x33, 0x6c, 0xdc, 0x3c, + 0x21, 0xe9, 0x12, 0xcb, 0x86, 0xde, 0x86, 0x8c, 0x6e, 0x38, 0xd8, 0x70, 0x64, 0xc6, 0x16, 0x1f, + 0xc1, 0x96, 0x66, 0xb9, 0xe9, 0x4b, 0xe1, 0x4f, 0x05, 0x80, 0xad, 0x4e, 0x94, 0x4d, 0x43, 0xc6, + 0xfd, 0x58, 0xe5, 0x77, 0xc7, 0x3d, 0xab, 0xc5, 0x39, 0x98, 0xd2, 0x8d, 0xa6, 0x6e, 0xb0, 0xf2, + 0x27, 0x25, 0xfe, 0x86, 0xce, 0xc0, 0xe4, 0x4e, 0x53, 0x37, 0x34, 0xaa, 0xfe, 0x49, 0x89, 0xbd, + 0xf0, 0xe6, 0x97, 0x20, 0x4d, 0xcb, 0x1e, 0x61, 0xeb, 0x17, 0xbe, 0x19, 0x83, 0xb3, 0x25, 0xd3, + 0xd0, 0x74, 0x32, 0x0e, 0x95, 0xe6, 0xc7, 0xa2, 0x6d, 0xde, 0x84, 0x14, 0x3e, 0x68, 0x8f, 0xd9, + 0xbd, 0x49, 0x7c, 0xd0, 0xa6, 0x4f, 0xe1, 0x4d, 0x87, 0x3e, 0x09, 0xe7, 0x95, 0x66, 0xd3, 0xdc, + 0x97, 0xf5, 0x5d, 0x59, 0x33, 0xb1, 0x2d, 0x1b, 0xa6, 0x23, 0xe3, 0x03, 0xdd, 0x76, 0xa8, 0xa9, + 0x48, 0x4a, 0x73, 0x34, 0xb9, 0xba, 0xbb, 0x6a, 0x62, 0x7b, 0xc3, 0x74, 0xca, 0x24, 0x89, 0x37, + 0xf8, 0xfb, 0x70, 0xae, 0xb7, 0x6d, 0xa2, 0x6c, 0xfb, 0xbf, 0x12, 0x20, 0x57, 0x35, 0x74, 0xe7, + 0x63, 0xd1, 0xe8, 0x5e, 0xeb, 0xc5, 0x83, 0xad, 0x77, 0x1b, 0xc4, 0x5d, 0x45, 0x6f, 0x6e, 0x1a, + 0x75, 0xb3, 0xb5, 0x63, 0x3b, 0xa6, 0x81, 0x6d, 0xde, 0xbc, 0x7d, 0x74, 0xde, 0x66, 0x4f, 0x60, + 0xc6, 0xab, 0x53, 0x94, 0x8d, 0xf5, 0x12, 0xc4, 0xaa, 0xa1, 0x5a, 0xb8, 0x85, 0x8d, 0x48, 0x5b, + 0xeb, 0x12, 0xa4, 0x74, 0x57, 0x2e, 0x6d, 0xb1, 0xb8, 0xe4, 0x13, 0x78, 0x9d, 0x3a, 0x30, 0x1b, + 0xf8, 0x76, 0x94, 0xc6, 0xef, 0x22, 0xa4, 0x0c, 0xbc, 0x2f, 0xfb, 0xfd, 0x15, 0x97, 0x92, 0x06, + 0xde, 0x67, 0xc6, 0xea, 0x29, 0x64, 0x57, 0x71, 0x13, 0x3b, 0x38, 0x7a, 0x4b, 0xbe, 0x0d, 0x39, + 0x57, 0x74, 0x94, 0x9d, 0xf4, 0xbb, 0x02, 0x20, 0x2e, 0x97, 0xcc, 0x9e, 0x51, 0xf6, 0xd3, 0x02, + 0xf1, 0x0e, 0x9c, 0x8e, 0x65, 0xb0, 0x69, 0x9e, 0x69, 0x29, 0x30, 0x12, 0x9d, 0xe9, 0x7d, 0x8b, + 0x9a, 0x08, 0x5a, 0x54, 0xcf, 0x5b, 0x21, 0x7e, 0xca, 0x3e, 0xcc, 0x75, 0x15, 0x2f, 0xda, 0xae, + 0x4c, 0xd0, 0x92, 0xc5, 0x16, 0xe3, 0x41, 0xcf, 0x8c, 0x12, 0x0b, 0xef, 0xc3, 0x6c, 0xa9, 0x89, + 0x15, 0x2b, 0xea, 0x66, 0xe1, 0xdd, 0xf9, 0x14, 0x50, 0x50, 0x7c, 0x94, 0x5d, 0xaa, 0x43, 0xba, + 0xa6, 0x2a, 0xc6, 0x66, 0x9b, 0x18, 0x41, 0x1b, 0xdd, 0x83, 0x73, 0xb6, 0x63, 0xb6, 0x65, 0xc5, + 0x91, 0x99, 0x5f, 0xb5, 0x63, 0x76, 0x0c, 0x4d, 0xb1, 0x0e, 0xe9, 0x37, 0x92, 0xd2, 0x1c, 0x49, + 0x5d, 0x71, 0x68, 0x41, 0x8a, 0x3c, 0x89, 0xf4, 0x5d, 0x4b, 0x37, 0x64, 0xe2, 0xfe, 0x34, 0x1d, + 0x9b, 0xeb, 0x39, 0xb4, 0x74, 0x43, 0x62, 0x14, 0x5e, 0x8b, 0xef, 0x08, 0xec, 0x5b, 0x51, 0xaa, + 0xcd, 0x3b, 0x90, 0xb6, 0x55, 0xc5, 0x90, 0x77, 0x4d, 0xab, 0xa5, 0x38, 0x54, 0x35, 0x72, 0xcb, + 0xaf, 0x84, 0x39, 0x95, 0xaa, 0x62, 0xdc, 0xa7, 0x99, 0x24, 0xb0, 0xbd, 0xe7, 0xa0, 0xf6, 0x3c, + 0x4c, 0x24, 0xe3, 0x62, 0xa2, 0xf0, 0x6f, 0x02, 0x64, 0x58, 0x29, 0xa3, 0xd4, 0x9e, 0x37, 0x21, + 0x61, 0x99, 0xfb, 0x4c, 0x7b, 0xd2, 0xcb, 0x17, 0x43, 0x44, 0xac, 0xe1, 0xc3, 0xa0, 0xd9, 0xa6, + 0xd9, 0x51, 0x11, 0xb8, 0x7b, 0x23, 0x53, 0xee, 0xf8, 0xb8, 0xdc, 0xc0, 0xb8, 0x24, 0x22, 0xe3, + 0x26, 0xcc, 0xec, 0x28, 0x8e, 0xba, 0x47, 0xfa, 0x87, 0x16, 0x92, 0x98, 0xf8, 0xf8, 0xad, 0x8c, + 0x94, 0xa3, 0x64, 0xb7, 0xe8, 0x76, 0xe1, 0x7b, 0x02, 0x20, 0x09, 0xbf, 0xc0, 0x96, 0x8d, 0x3f, + 0xfe, 0xdd, 0xf4, 0xef, 0x02, 0xcc, 0x75, 0x15, 0xf6, 0x7f, 0x5a, 0x6f, 0xfd, 0x4c, 0x80, 0xf3, + 0xa5, 0x3d, 0xac, 0x3e, 0x2b, 0x99, 0x86, 0xad, 0xdb, 0x0e, 0x36, 0xd4, 0xc3, 0x28, 0xbb, 0xec, + 0x22, 0xa4, 0xf6, 0x75, 0x67, 0x4f, 0xd6, 0xf4, 0xdd, 0x5d, 0x3a, 0xa4, 0x93, 0x52, 0x92, 0x10, + 0x56, 0xf5, 0xdd, 0x5d, 0x74, 0x0f, 0x12, 0x2d, 0x53, 0x63, 0xde, 0x5b, 0x6e, 0x79, 0x21, 0x44, + 0x3c, 0x2d, 0x9a, 0xdd, 0x69, 0xad, 0x9b, 0x1a, 0x96, 0x68, 0x66, 0x74, 0x19, 0x40, 0x25, 0xd4, + 0xb6, 0xa9, 0x1b, 0x0e, 0xb7, 0xe2, 0x01, 0x0a, 0xb7, 0x12, 0xdf, 0x48, 0x40, 0xbe, 0xbf, 0x5e, + 0x51, 0xf6, 0xee, 0x16, 0x4c, 0x31, 0x53, 0xc5, 0xfb, 0x77, 0x79, 0x50, 0xf1, 0x43, 0x4a, 0xb0, + 0xc4, 0x4c, 0x1a, 0xef, 0x38, 0x2e, 0x67, 0xfe, 0xcf, 0x04, 0x98, 0x62, 0x09, 0xe8, 0x2e, 0x24, + 0x39, 0x20, 0xd5, 0x68, 0x19, 0xe3, 0xc5, 0x73, 0xc7, 0x47, 0x0b, 0xd3, 0x0c, 0x7e, 0xae, 0x7e, + 0xe8, 0x3f, 0x4a, 0xd3, 0x0c, 0x81, 0x6a, 0xa4, 0xa5, 0x6d, 0x47, 0xb1, 0x1c, 0x0a, 0xfc, 0x49, + 0x4b, 0x67, 0xa4, 0x24, 0x25, 0x10, 0xc4, 0xff, 0x10, 0xa6, 0x6c, 0x47, 0x71, 0x3a, 0x36, 0x6f, + 0xeb, 0x13, 0x15, 0xb6, 0x46, 0x39, 0x25, 0x2e, 0x81, 0x4c, 0xa1, 0x1a, 0x76, 0x14, 0xbd, 0x49, + 0x1b, 0x3f, 0x25, 0xf1, 0xb7, 0xc2, 0xb7, 0x04, 0x98, 0x62, 0x59, 0xd1, 0x79, 0x98, 0x63, 0xa0, + 0xb3, 0xba, 0xb1, 0x5a, 0xae, 0x97, 0xa5, 0xf5, 0xea, 0xc6, 0x4a, 0xbd, 0x2c, 0x4e, 0xa0, 0x73, + 0x80, 0xdc, 0x84, 0xd2, 0xe6, 0x46, 0xad, 0x5a, 0xab, 0x97, 0x37, 0x08, 0x58, 0x25, 0x10, 0x96, + 0xd2, 0x03, 0xd4, 0x18, 0xba, 0x06, 0x8b, 0xbd, 0x54, 0xb9, 0x56, 0x5f, 0xa9, 0xd7, 0xe4, 0x72, + 0xad, 0x5e, 0x5d, 0x5f, 0xa9, 0x97, 0x57, 0xc5, 0xf8, 0x90, 0x5c, 0xe4, 0x23, 0x92, 0x54, 0x2e, + 0xd5, 0xc5, 0x44, 0xe1, 0x25, 0x9c, 0x95, 0xb0, 0x6a, 0xb6, 0xda, 0x1d, 0x07, 0x93, 0x52, 0xda, + 0x51, 0x6a, 0xf9, 0x79, 0x98, 0xd6, 0xac, 0x43, 0xd9, 0xea, 0x18, 0x5c, 0xc7, 0xa7, 0x34, 0xeb, + 0x50, 0xea, 0x18, 0x5c, 0x19, 0xff, 0x44, 0x80, 0x73, 0xbd, 0x1f, 0x8f, 0x52, 0x15, 0xbf, 0x08, + 0x69, 0x45, 0xd3, 0xb0, 0x26, 0x6b, 0xb8, 0xe9, 0x28, 0xdc, 0xa3, 0xbf, 0x1b, 0x90, 0xc4, 0x17, + 0x6d, 0x96, 0xd8, 0x6a, 0xcd, 0x92, 0xb7, 0x68, 0xb3, 0xfe, 0xa4, 0x54, 0xa2, 0xe5, 0x59, 0x25, + 0x8c, 0xae, 0x1d, 0xa1, 0xb2, 0x28, 0xa5, 0xa0, 0xc2, 0xf9, 0x22, 0x6e, 0xe8, 0x46, 0x70, 0x19, + 0x26, 0x72, 0xbf, 0x44, 0x86, 0x7c, 0xff, 0x47, 0xa2, 0xf4, 0x4e, 0xbe, 0x9b, 0x80, 0xb3, 0x65, + 0x43, 0xfb, 0x68, 0x2a, 0x41, 0xc6, 0x83, 0x6a, 0xb6, 0x5a, 0xba, 0xe3, 0xf6, 0x3d, 0x7b, 0x43, + 0xff, 0x0b, 0x92, 0x1a, 0x56, 0x34, 0x0f, 0xbe, 0xa7, 0xbb, 0xa6, 0xaa, 0x8e, 0xa3, 0x37, 0x97, + 0xf6, 0x9a, 0xea, 0x52, 0xdd, 0x5d, 0xa4, 0x94, 0xbc, 0xec, 0xe8, 0xcb, 0x70, 0x9e, 0x18, 0x73, + 0xcb, 0x50, 0x9a, 0x32, 0x93, 0x26, 0x3b, 0x96, 0xde, 0x68, 0x60, 0x8b, 0x2f, 0x78, 0xdd, 0x0a, + 0x29, 0x67, 0x95, 0x73, 0x94, 0x28, 0x43, 0x9d, 0xe5, 0x97, 0xce, 0xea, 0x61, 0x64, 0xf4, 0x05, + 0x6f, 0x7d, 0xc4, 0x6e, 0x2b, 0x86, 0x9d, 0x9f, 0xa4, 0x36, 0x6c, 0xd0, 0x3a, 0x1a, 0xd7, 0x0c, + 0x3e, 0x2f, 0x11, 0x8a, 0x8d, 0xee, 0x10, 0x57, 0xfb, 0x79, 0x47, 0xb7, 0xb0, 0x7c, 0xb7, 0xad, + 0xe6, 0xa7, 0x48, 0xdd, 0x8b, 0xb9, 0xe3, 0xa3, 0x05, 0x90, 0x18, 0xf9, 0xee, 0x56, 0x89, 0xb8, + 0xde, 0xec, 0xb9, 0xad, 0xa2, 0x5b, 0x20, 0x1a, 0xa6, 0x6c, 0xe1, 0x5d, 0x0b, 0xdb, 0x7b, 0xfc, + 0xb3, 0x49, 0xda, 0x62, 0x39, 0xc3, 0x94, 0x18, 0x99, 0x89, 0x3e, 0x07, 0x53, 0x6d, 0x53, 0xb7, + 0x4d, 0x23, 0x9f, 0x62, 0x2d, 0xca, 0xde, 0xd0, 0x63, 0x10, 0x75, 0x43, 0xde, 0x6d, 0xea, 0x8d, + 0x3d, 0x47, 0xde, 0xb7, 0x74, 0x07, 0xdb, 0xf9, 0x59, 0x5a, 0xf0, 0x30, 0xb5, 0xa8, 0xf1, 0x95, + 0x48, 0xed, 0x5d, 0x92, 0x93, 0x57, 0x21, 0xa7, 0x1b, 0xf7, 0x29, 0x3f, 0x25, 0xda, 0x9e, 0x4b, + 0x30, 0x2d, 0x26, 0x0b, 0xff, 0x2c, 0xc0, 0xb9, 0x5e, 0x35, 0x89, 0x72, 0x98, 0xde, 0x02, 0xd1, + 0x34, 0xb0, 0xdc, 0xde, 0x53, 0x6c, 0xcc, 0xbb, 0x95, 0xcf, 0x5f, 0x39, 0xd3, 0xc0, 0x5b, 0x84, + 0xcc, 0x3a, 0x09, 0x6d, 0xc1, 0xac, 0xed, 0x28, 0x0d, 0xdd, 0x68, 0xc8, 0xde, 0x1a, 0x36, 0x5d, + 0x88, 0x18, 0xa5, 0x43, 0xbc, 0x96, 0x22, 0xe7, 0xf6, 0xe8, 0x5d, 0x4e, 0xcf, 0xdf, 0x0a, 0x30, + 0xbb, 0xa2, 0xb5, 0x74, 0xa3, 0xd6, 0x6e, 0xea, 0x91, 0xc2, 0xe4, 0x6b, 0x90, 0xb2, 0x89, 0x4c, + 0x7f, 0x0e, 0xf2, 0x21, 0x4e, 0x92, 0xa6, 0x90, 0xc9, 0xe8, 0x11, 0xcc, 0xe0, 0x83, 0xb6, 0x6e, + 0x29, 0xa4, 0x89, 0x69, 0x05, 0xb9, 0x56, 0x8f, 0x55, 0xb7, 0x9c, 0xcf, 0x4b, 0x92, 0xbc, 0x1e, + 0x24, 0x35, 0x7b, 0x0a, 0x28, 0x58, 0xb1, 0x28, 0x6d, 0x88, 0x0c, 0x73, 0x54, 0xf4, 0xb6, 0x61, + 0x47, 0xdc, 0x6a, 0xdc, 0x0a, 0x7e, 0x09, 0xce, 0x74, 0x7f, 0x20, 0xca, 0xd2, 0xbf, 0xcf, 0x7b, + 0x7c, 0x1d, 0x5b, 0x1f, 0x11, 0xb2, 0x0c, 0x8a, 0x8f, 0xb2, 0xe4, 0x5f, 0x13, 0xe0, 0x02, 0x95, + 0x4d, 0x87, 0xe5, 0x2e, 0xb6, 0xe8, 0xf6, 0x48, 0x94, 0x4a, 0x7b, 0x15, 0xa6, 0x1c, 0xc5, 0x6a, + 0x60, 0x66, 0xbf, 0x27, 0x8b, 0x69, 0xe2, 0x5e, 0xd5, 0x1c, 0xd3, 0x22, 0xee, 0x15, 0x4f, 0xe2, + 0xf5, 0x54, 0x60, 0x3e, 0xac, 0x2c, 0x51, 0xd6, 0xf7, 0x8f, 0x63, 0xfc, 0x1b, 0xa5, 0x3d, 0x06, + 0xd3, 0xdb, 0x4d, 0x5d, 0x55, 0x22, 0xf5, 0x56, 0xca, 0x90, 0x56, 0xa9, 0x70, 0xd9, 0x39, 0x6c, + 0xb3, 0x05, 0xa5, 0xdc, 0xf2, 0xb5, 0x50, 0x41, 0xf4, 0xe3, 0xac, 0x24, 0xf5, 0xc3, 0x36, 0x26, + 0x8e, 0xb6, 0xfb, 0x8c, 0x56, 0x61, 0x9a, 0x35, 0x8e, 0x8b, 0x51, 0x86, 0x88, 0xa0, 0xa3, 0x95, + 0x66, 0xe6, 0xa3, 0xd8, 0x65, 0x45, 0x9f, 0x83, 0x24, 0x3e, 0x68, 0xcb, 0x74, 0x4b, 0x2d, 0x31, + 0xee, 0x96, 0x9a, 0x34, 0x8d, 0x0f, 0xda, 0xe4, 0x95, 0xf7, 0xcb, 0x37, 0x05, 0xb8, 0x18, 0xda, + 0x68, 0x51, 0x9a, 0xef, 0x4f, 0xf1, 0x8d, 0xbf, 0xd8, 0xd8, 0xa5, 0xa4, 0xf9, 0x0b, 0x7f, 0xe0, + 0x6a, 0xb0, 0x84, 0x9b, 0xa6, 0xaa, 0x7c, 0x04, 0xab, 0x5e, 0x81, 0x9e, 0x88, 0x9d, 0xba, 0x27, + 0x7a, 0x54, 0xbc, 0xa7, 0xb0, 0x51, 0xaa, 0xf8, 0x6f, 0x09, 0x30, 0x57, 0xc1, 0x8a, 0xe5, 0xec, + 0x60, 0xc5, 0xa9, 0x1f, 0x44, 0xea, 0x8c, 0xbd, 0x09, 0x71, 0xc3, 0xdc, 0xe7, 0x7d, 0x34, 0xd6, + 0x7c, 0x42, 0xf2, 0xfb, 0x26, 0xb8, 0xbb, 0x5c, 0x51, 0xd6, 0xfa, 0x07, 0x71, 0x48, 0x3d, 0x28, + 0x45, 0x59, 0xd7, 0xcf, 0xf2, 0xb5, 0x44, 0x36, 0xfa, 0xc2, 0x14, 0xd2, 0xfb, 0xde, 0xd2, 0x83, + 0xd2, 0x1a, 0x3e, 0x74, 0x97, 0x19, 0x08, 0x17, 0x5a, 0x81, 0x94, 0xb3, 0x47, 0x7c, 0x2e, 0xb3, + 0xa9, 0x9d, 0x64, 0xfe, 0xf5, 0xb9, 0x50, 0x13, 0xce, 0x3a, 0x07, 0x06, 0x75, 0xe5, 0xe4, 0x86, + 0x2a, 0xfb, 0xe2, 0xc6, 0x72, 0x55, 0xe6, 0x89, 0xb8, 0xe3, 0xa3, 0x05, 0x54, 0x3f, 0x30, 0x88, + 0xdf, 0xf7, 0xa0, 0x54, 0x77, 0x05, 0x48, 0xc8, 0xe1, 0x34, 0xd5, 0xa3, 0xcd, 0x3f, 0x83, 0x49, + 0x5a, 0x0b, 0x77, 0xef, 0x5b, 0x08, 0xd9, 0xfb, 0x26, 0x95, 0xf2, 0x1c, 0xa6, 0xd8, 0x49, 0x2a, + 0xe5, 0x12, 0x98, 0x2a, 0x70, 0x85, 0x78, 0x0c, 0x40, 0x9a, 0x30, 0x4a, 0x35, 0xf8, 0x8f, 0x38, + 0xe4, 0xb6, 0x3a, 0xf6, 0x5e, 0xc4, 0x7a, 0x5f, 0x02, 0x68, 0x77, 0xec, 0x3d, 0x6c, 0xc9, 0xce, + 0x81, 0xc1, 0x6b, 0x3e, 0x62, 0x3f, 0xdd, 0xad, 0x3a, 0xe3, 0xab, 0x1f, 0x18, 0x68, 0x93, 0x0b, + 0xc1, 0xb2, 0xbf, 0x29, 0x7f, 0x7b, 0x0c, 0x18, 0x59, 0x3f, 0x30, 0xd6, 0xb1, 0x87, 0x1f, 0x99, + 0x40, 0x4c, 0x04, 0x7e, 0x16, 0xa6, 0xc9, 0x8b, 0xec, 0x98, 0x27, 0xd1, 0xb0, 0x29, 0xc2, 0x53, + 0x37, 0xd1, 0x43, 0xc8, 0x69, 0xb8, 0x6d, 0x61, 0x62, 0x86, 0x34, 0x99, 0x0c, 0xeb, 0x13, 0xb8, + 0xc0, 0x59, 0x9f, 0x75, 0xc3, 0xdc, 0x47, 0x6f, 0x43, 0x8a, 0x95, 0x84, 0xcc, 0x78, 0x53, 0x74, + 0xc6, 0x0b, 0x6b, 0x1e, 0xde, 0x33, 0x74, 0xae, 0x4b, 0xd2, 0x62, 0x90, 0x99, 0xee, 0x0c, 0x4c, + 0xee, 0x9a, 0x96, 0x8a, 0xe9, 0x8e, 0x7e, 0x52, 0x62, 0x2f, 0xe8, 0x36, 0xcc, 0xea, 0x86, 0xda, + 0xec, 0xd8, 0xfa, 0x0b, 0x2c, 0xbb, 0xd5, 0x64, 0x80, 0x65, 0xc6, 0x4b, 0xa0, 0x02, 0x4d, 0xcf, + 0x49, 0x4d, 0x8a, 0xa9, 0xc2, 0xb7, 0x04, 0x98, 0xf1, 0x34, 0x20, 0xca, 0x09, 0xaa, 0xd4, 0xd5, + 0x7d, 0x27, 0xd7, 0x01, 0xd2, 0x65, 0x85, 0xbf, 0x16, 0x60, 0x56, 0xc2, 0xaa, 0xf9, 0x82, 0xaa, + 0x44, 0x94, 0x2a, 0x5a, 0x64, 0xb1, 0x1e, 0xb1, 0x53, 0xaa, 0x15, 0x8d, 0xfe, 0xb8, 0x0b, 0x67, + 0xf4, 0x16, 0x99, 0xc7, 0x74, 0xa7, 0x79, 0xc8, 0x31, 0x94, 0x83, 0xdd, 0xed, 0xc8, 0x39, 0x3f, + 0xad, 0xe4, 0x26, 0xf1, 0x91, 0xfc, 0x5d, 0xba, 0x2a, 0xed, 0x57, 0x2b, 0xca, 0x76, 0xaf, 0x42, + 0xd6, 0x62, 0xa2, 0xb1, 0x76, 0xe2, 0xa6, 0xcf, 0x78, 0xac, 0xa4, 0xf5, 0xbf, 0x1f, 0x83, 0x99, + 0xc7, 0x1d, 0x6c, 0x1d, 0x7e, 0x0c, 0xdb, 0xfe, 0x06, 0xcc, 0xec, 0x2b, 0xba, 0x23, 0xef, 0x9a, + 0x96, 0xdc, 0x69, 0x6b, 0x8a, 0xe3, 0x46, 0x25, 0x64, 0x09, 0xf9, 0xbe, 0x69, 0x6d, 0x53, 0x22, + 0xc2, 0x80, 0x9e, 0x19, 0xe6, 0xbe, 0x21, 0x13, 0x32, 0x85, 0xb0, 0x07, 0x06, 0x5f, 0x7e, 0x2e, + 0x7e, 0xfa, 0xef, 0x8e, 0x16, 0xee, 0x8d, 0x15, 0x67, 0x44, 0x43, 0xb5, 0x3a, 0x1d, 0x5d, 0x5b, + 0xda, 0xde, 0xae, 0xae, 0x4a, 0x22, 0x15, 0xf9, 0x2e, 0x93, 0x58, 0x3f, 0x30, 0x5c, 0x77, 0xe5, + 0x43, 0x01, 0x44, 0xbf, 0xc1, 0xa2, 0xec, 0xd5, 0x32, 0xa4, 0x9f, 0x77, 0xb0, 0xa5, 0x9f, 0xa2, + 0x4f, 0x81, 0x33, 0x12, 0x13, 0xf8, 0x1e, 0x64, 0xba, 0xda, 0x21, 0xfe, 0xab, 0xb5, 0x43, 0x7a, + 0xdf, 0x6f, 0x82, 0xc2, 0x4f, 0x04, 0x40, 0xb4, 0xf2, 0x55, 0xb6, 0xf2, 0xff, 0x31, 0x53, 0x98, + 0x5b, 0x20, 0xd2, 0xc8, 0x3f, 0x59, 0xdf, 0x95, 0x5b, 0xba, 0x6d, 0xeb, 0x46, 0x83, 0x6b, 0x4c, + 0x8e, 0xd2, 0xab, 0xbb, 0xeb, 0x8c, 0xca, 0xfb, 0xf2, 0xff, 0xc2, 0x5c, 0x57, 0x6d, 0xa2, 0xec, + 0xcd, 0x2b, 0x90, 0xd9, 0x35, 0x3b, 0x86, 0x26, 0xb3, 0x25, 0x2c, 0xbe, 0x54, 0x97, 0xa6, 0x34, + 0xf6, 0xbd, 0xc2, 0x57, 0x63, 0x70, 0x46, 0xc2, 0xb6, 0xd9, 0x7c, 0x81, 0xa3, 0x6f, 0xcf, 0x4d, + 0xe0, 0xdb, 0x33, 0xf2, 0xaf, 0xd2, 0xac, 0x29, 0x26, 0x83, 0x4d, 0xad, 0xdd, 0x2b, 0xfa, 0xd7, + 0x86, 0x6b, 0x66, 0xff, 0x1a, 0x3e, 0x5f, 0x61, 0x4b, 0x04, 0x57, 0xd8, 0x78, 0x47, 0xfc, 0x6f, + 0x38, 0xdb, 0xd3, 0x10, 0x51, 0x7a, 0x40, 0x7f, 0x13, 0x83, 0x0b, 0xdd, 0xe2, 0xa3, 0xc6, 0x43, + 0xff, 0x3d, 0x1a, 0x1b, 0x55, 0x20, 0xdb, 0xd2, 0x8d, 0xd3, 0xad, 0xf0, 0x65, 0x5a, 0xba, 0x51, + 0xef, 0xf6, 0x59, 0x09, 0x74, 0x0b, 0x6b, 0xd7, 0x28, 0xfb, 0xee, 0x1b, 0x02, 0x64, 0xa2, 0x5e, + 0x43, 0x3a, 0x5d, 0x28, 0x12, 0xaf, 0x73, 0x1d, 0xb2, 0x1f, 0xc1, 0xa2, 0xd3, 0xef, 0x0b, 0x80, + 0xea, 0x56, 0xc7, 0x20, 0xee, 0xe3, 0x23, 0xb3, 0x11, 0x65, 0x65, 0xcf, 0xc0, 0xa4, 0x6e, 0x68, + 0xf8, 0x80, 0x56, 0x36, 0x21, 0xb1, 0x97, 0xae, 0xfd, 0xbe, 0xf8, 0x58, 0xfb, 0x7d, 0xbc, 0xfe, + 0xef, 0xc1, 0x5c, 0x57, 0x41, 0xa3, 0x6c, 0x85, 0xef, 0xc7, 0x60, 0x8e, 0x57, 0x27, 0xf2, 0x45, + 0xb7, 0x53, 0xc5, 0x41, 0xa3, 0xcf, 0x01, 0xb4, 0x2d, 0xfc, 0x42, 0x66, 0xac, 0xf1, 0xb1, 0x58, + 0x53, 0x84, 0x83, 0x12, 0xd0, 0x17, 0x61, 0x86, 0x0c, 0xb8, 0xb6, 0x65, 0xb6, 0x4d, 0x9b, 0xcc, + 0xeb, 0xf6, 0x78, 0xb0, 0x64, 0xf6, 0xf8, 0x68, 0x21, 0xbb, 0xae, 0x1b, 0x5b, 0x9c, 0xb1, 0x5e, + 0x93, 0xc8, 0xc8, 0xf5, 0x5e, 0x5d, 0x67, 0xe4, 0x67, 0x02, 0x9c, 0xf9, 0xc8, 0x96, 0x29, 0xff, + 0x2b, 0x5a, 0xcc, 0x9b, 0x0f, 0x44, 0xfa, 0x5a, 0x35, 0x76, 0xcd, 0xe8, 0x17, 0x8f, 0xbf, 0x21, + 0xc0, 0x6c, 0x40, 0x7c, 0x94, 0xb3, 0xfe, 0xe9, 0xa2, 0xed, 0xbf, 0x44, 0xfc, 0x80, 0xa0, 0xda, + 0x47, 0x39, 0xa8, 0xfe, 0x55, 0x80, 0x73, 0x25, 0xb6, 0x13, 0xec, 0x06, 0x37, 0x44, 0xa9, 0x25, + 0x79, 0x98, 0x7e, 0x81, 0x2d, 0x5b, 0x37, 0xd9, 0xbc, 0x97, 0x95, 0xdc, 0x57, 0x34, 0x0f, 0x49, + 0xdb, 0x50, 0xda, 0xf6, 0x9e, 0xe9, 0xee, 0x3a, 0x79, 0xef, 0x5e, 0x20, 0xc6, 0xe4, 0xe9, 0x03, + 0x31, 0xa6, 0xc2, 0x03, 0x31, 0xf8, 0xc6, 0xcc, 0x8f, 0x05, 0x38, 0xdf, 0x57, 0xeb, 0x28, 0x7b, + 0xfa, 0x2b, 0x90, 0x56, 0xb9, 0x60, 0x62, 0x43, 0xd9, 0xde, 0x53, 0x95, 0x64, 0x3b, 0xa5, 0xa7, + 0x7d, 0x7c, 0xb4, 0x00, 0x6e, 0x51, 0xab, 0xab, 0xbc, 0x62, 0xe4, 0x59, 0x2b, 0xfc, 0x02, 0x20, + 0x5b, 0x3e, 0x68, 0x9b, 0x96, 0x53, 0x63, 0x8e, 0x04, 0x5a, 0x85, 0x64, 0xdb, 0x32, 0x5f, 0xe8, + 0x6e, 0x25, 0x72, 0xa1, 0x1b, 0xb4, 0x5d, 0x3c, 0x5b, 0x3c, 0xbf, 0xe4, 0x71, 0x22, 0x09, 0x52, + 0x8f, 0x4c, 0x55, 0x69, 0xde, 0xd7, 0x9b, 0xae, 0xc6, 0x2e, 0x8d, 0x12, 0xb3, 0xe4, 0x71, 0x6c, + 0x29, 0xce, 0x9e, 0x3b, 0x80, 0x3d, 0x22, 0x7a, 0x00, 0xc9, 0x8a, 0xe3, 0xb4, 0x49, 0x22, 0x1f, + 0xfd, 0xd7, 0x47, 0x8a, 0x24, 0x0c, 0x5c, 0x92, 0xc7, 0x8c, 0x24, 0x98, 0x7d, 0x60, 0x9a, 0x8d, + 0x26, 0x2e, 0x35, 0xcd, 0x8e, 0x56, 0x32, 0x8d, 0x5d, 0xbd, 0xc1, 0xad, 0xe7, 0xb5, 0x91, 0x12, + 0x1f, 0x94, 0x6a, 0x52, 0x3f, 0x3b, 0xfa, 0x3c, 0x24, 0x6b, 0xf7, 0xb8, 0x28, 0xe6, 0xfb, 0x5c, + 0x1d, 0x29, 0xaa, 0x76, 0x4f, 0xf2, 0x98, 0x50, 0x05, 0xd2, 0x2b, 0x2f, 0x3b, 0x16, 0xe6, 0x32, + 0xa6, 0xa8, 0x8c, 0x1b, 0x23, 0x65, 0x50, 0x1e, 0x29, 0xc8, 0x8a, 0x1e, 0x43, 0xee, 0x5d, 0xd3, + 0x7a, 0xd6, 0x34, 0x15, 0xb7, 0x6e, 0xd3, 0x54, 0xd8, 0xab, 0x23, 0x85, 0xb9, 0x6c, 0x52, 0x8f, + 0x80, 0xf9, 0x2f, 0x42, 0xb6, 0xab, 0x73, 0x10, 0x82, 0x44, 0x9b, 0xf4, 0x83, 0x40, 0xc3, 0x66, + 0xe8, 0x33, 0x7a, 0x03, 0xa6, 0x0d, 0x53, 0xc3, 0xae, 0xce, 0x66, 0x8b, 0x67, 0x8e, 0x8f, 0x16, + 0xa6, 0x36, 0x4c, 0x8d, 0x4d, 0xfb, 0xfc, 0x49, 0x9a, 0x22, 0x99, 0xdc, 0x49, 0x7f, 0xfe, 0x06, + 0x24, 0x48, 0xbf, 0x90, 0xc1, 0xbe, 0xa3, 0xd8, 0x78, 0xdb, 0xd2, 0xb9, 0x4c, 0xf7, 0x95, 0xe7, + 0xfb, 0x4b, 0x01, 0x62, 0xb5, 0x7b, 0xc4, 0xff, 0xdc, 0xe9, 0xa8, 0xcf, 0xb0, 0xc3, 0x73, 0xf1, + 0x37, 0xea, 0x97, 0x5a, 0x78, 0x57, 0x67, 0xbe, 0x48, 0x4a, 0xe2, 0x6f, 0xe8, 0x15, 0x00, 0x45, + 0x55, 0xb1, 0x6d, 0xcb, 0xee, 0x11, 0xa3, 0x94, 0x94, 0x62, 0x94, 0x35, 0x7c, 0x48, 0xd8, 0x6c, + 0xac, 0x5a, 0xd8, 0x71, 0xe3, 0x7f, 0xd8, 0x1b, 0x61, 0x73, 0x70, 0xab, 0x2d, 0x3b, 0xe6, 0x33, + 0x6c, 0xd0, 0xfe, 0x4c, 0x49, 0x29, 0x42, 0xa9, 0x13, 0x02, 0xb1, 0x3f, 0xd8, 0xd0, 0x7c, 0x63, + 0x91, 0x92, 0xbc, 0x77, 0x22, 0xd2, 0xc2, 0x0d, 0x9d, 0x9f, 0x99, 0x49, 0x49, 0xfc, 0x8d, 0x57, + 0xe3, 0x9b, 0x02, 0xc4, 0x1f, 0x94, 0x6a, 0x27, 0xae, 0x07, 0x82, 0x84, 0xd2, 0xe1, 0x7a, 0x9f, + 0x92, 0xe8, 0x33, 0x0d, 0x8c, 0xd3, 0x9b, 0x4d, 0x02, 0xc7, 0xdb, 0x96, 0xf9, 0x15, 0xac, 0xba, + 0xb5, 0xc8, 0x71, 0xf2, 0x16, 0xa3, 0xa2, 0x45, 0x48, 0xab, 0x16, 0xd6, 0xb0, 0xe1, 0xe8, 0x4a, + 0xd3, 0xe6, 0xd5, 0x09, 0x92, 0x78, 0xe1, 0xbe, 0x2a, 0xc0, 0x24, 0x55, 0x24, 0x74, 0x09, 0x52, + 0xaa, 0x69, 0x38, 0x8a, 0x6e, 0x70, 0x2b, 0x90, 0x92, 0x7c, 0xc2, 0xc0, 0x42, 0x5e, 0x81, 0x8c, + 0xa2, 0xaa, 0x66, 0xc7, 0x70, 0x64, 0x43, 0x69, 0x61, 0x5e, 0xd8, 0x34, 0xa7, 0x6d, 0x28, 0x2d, + 0x8c, 0x16, 0xc0, 0x7d, 0xf5, 0x0e, 0x75, 0xa5, 0x24, 0xe0, 0xa4, 0x35, 0x7c, 0xc8, 0x4b, 0xf2, + 0x63, 0x01, 0x92, 0xae, 0x0a, 0x92, 0xc2, 0x34, 0xb0, 0x81, 0x2d, 0xc5, 0x31, 0xbd, 0xc2, 0x78, + 0x84, 0xde, 0x59, 0x22, 0xe5, 0xcf, 0x12, 0x67, 0x60, 0xd2, 0x51, 0x76, 0x9a, 0x6e, 0x39, 0xd8, + 0x0b, 0x5d, 0x00, 0x6d, 0x2a, 0x0d, 0xb6, 0x8a, 0x93, 0x92, 0xd8, 0x0b, 0xa9, 0x12, 0x8f, 0xc4, + 0x64, 0xad, 0xc3, 0xdf, 0x48, 0x79, 0x59, 0xf0, 0xe1, 0x0e, 0x6e, 0xe8, 0x06, 0xed, 0xec, 0xb8, + 0x04, 0x94, 0x44, 0xe3, 0x7c, 0xd0, 0x45, 0x48, 0xb1, 0x0c, 0xd8, 0xd0, 0x68, 0x8f, 0xc7, 0xa5, + 0x24, 0x25, 0x94, 0xdd, 0x53, 0x2c, 0xdc, 0x35, 0xf8, 0x43, 0x01, 0x66, 0x59, 0xf4, 0x06, 0x8b, + 0x5a, 0x8c, 0x6e, 0x9e, 0x7c, 0x0b, 0x52, 0x9a, 0xe2, 0x28, 0xec, 0x10, 0x59, 0x6c, 0xe8, 0x21, + 0x32, 0xd7, 0x14, 0x92, 0xfc, 0xf4, 0x20, 0x19, 0x82, 0x04, 0x79, 0x66, 0x87, 0xef, 0x24, 0xfa, + 0xec, 0xef, 0x83, 0x07, 0x8b, 0x1b, 0xa5, 0xdf, 0xf0, 0xf3, 0xb8, 0x3b, 0xe9, 0x44, 0xd9, 0x0c, + 0x5f, 0x80, 0x69, 0x0e, 0x86, 0x79, 0x23, 0x2c, 0x8e, 0xb2, 0x77, 0xee, 0xae, 0x21, 0x67, 0x43, + 0x45, 0x00, 0x16, 0x76, 0x48, 0xe3, 0x38, 0xe2, 0x27, 0xd8, 0x72, 0xa1, 0x6c, 0x84, 0x8a, 0x36, + 0x20, 0xdd, 0x7a, 0xa1, 0xaa, 0xf2, 0xae, 0xde, 0x74, 0x78, 0x88, 0x53, 0x78, 0x5c, 0xef, 0xfa, + 0x93, 0x52, 0xe9, 0x3e, 0xcd, 0xc4, 0x22, 0x8d, 0xfc, 0x77, 0x09, 0x88, 0x04, 0xf6, 0x8c, 0x5e, + 0x07, 0x1e, 0xf2, 0x2f, 0xdb, 0xee, 0x01, 0x9e, 0x62, 0xf6, 0xf8, 0x68, 0x21, 0x25, 0x51, 0x6a, + 0xad, 0x56, 0x97, 0x52, 0x2c, 0x43, 0xcd, 0x76, 0xd0, 0x55, 0xc8, 0x9a, 0x2d, 0xdd, 0x91, 0xdd, + 0x19, 0x9e, 0xbb, 0x32, 0x19, 0x42, 0x74, 0x3d, 0x00, 0x54, 0x87, 0x9b, 0xd8, 0x20, 0x63, 0x81, + 0xd6, 0x93, 0xc5, 0xb3, 0xcb, 0xba, 0xc3, 0xc6, 0x93, 0x6c, 0xb6, 0x1d, 0xbd, 0xa5, 0xbf, 0xa4, + 0x9b, 0xab, 0x7c, 0x93, 0xe0, 0x2a, 0xcb, 0x4e, 0xea, 0x47, 0x23, 0xdc, 0xab, 0x3c, 0xef, 0x66, + 0x20, 0x2b, 0xd7, 0x9a, 0xaf, 0x0b, 0x90, 0x2d, 0x76, 0x9a, 0xcf, 0x36, 0xdb, 0xb5, 0x4e, 0xab, + 0xa5, 0x58, 0x87, 0x64, 0x80, 0x30, 0xed, 0xd4, 0x5f, 0x62, 0x16, 0xff, 0xc9, 0xd5, 0x4f, 0x7f, + 0x89, 0x89, 0xfa, 0xf1, 0xb0, 0x62, 0x42, 0x67, 0x31, 0xc3, 0x57, 0x21, 0x4b, 0x81, 0xa4, 0x8c, + 0x0d, 0xc7, 0xd2, 0x31, 0x5b, 0xa7, 0x88, 0x4b, 0x19, 0x4a, 0x2c, 0x33, 0x1a, 0xba, 0x0e, 0x39, + 0xfb, 0xd0, 0x76, 0x70, 0x4b, 0x66, 0x47, 0x5f, 0x19, 0xfa, 0x89, 0x4b, 0x59, 0x46, 0x95, 0x18, + 0xb1, 0xf0, 0x47, 0x71, 0xc8, 0xb9, 0x9a, 0x16, 0xa5, 0x8b, 0x56, 0x84, 0xc9, 0x5d, 0xbd, 0x89, + 0xdd, 0x3d, 0xea, 0xc1, 0xd3, 0xb4, 0x17, 0x78, 0x4a, 0x66, 0x4e, 0xd7, 0x35, 0xa7, 0xac, 0x51, + 0x68, 0xdb, 0xfc, 0x4f, 0x05, 0x48, 0x50, 0xdf, 0xe8, 0x2e, 0x24, 0xe8, 0xf0, 0x17, 0xc6, 0x19, + 0xfe, 0x34, 0xab, 0x37, 0x85, 0xc7, 0x02, 0x53, 0x38, 0x99, 0x0f, 0xf7, 0x94, 0x37, 0xef, 0x2e, + 0x53, 0x4d, 0xcb, 0x48, 0xfc, 0x0d, 0x15, 0x69, 0x64, 0x83, 0x69, 0x39, 0x58, 0xe3, 0x9e, 0x49, + 0xd8, 0xe0, 0xea, 0xea, 0x78, 0xd7, 0xd4, 0xb8, 0x7c, 0xe8, 0x02, 0xc4, 0x89, 0x0a, 0x4f, 0xb3, + 0xad, 0xce, 0xe3, 0xa3, 0x85, 0x38, 0x51, 0x5e, 0x42, 0x63, 0x8e, 0xf5, 0xc3, 0x44, 0x32, 0x21, + 0x4e, 0x16, 0x7e, 0x98, 0x80, 0x6c, 0xb5, 0x15, 0xb5, 0x71, 0x58, 0xe9, 0xee, 0xb0, 0x30, 0xc7, + 0xb1, 0xeb, 0xa3, 0x21, 0xfd, 0xd5, 0x65, 0x66, 0xe3, 0x27, 0x33, 0xb3, 0x55, 0xe2, 0x14, 0xf0, + 0xd3, 0xba, 0xe4, 0xfb, 0xaf, 0x8d, 0xfc, 0x7e, 0x9d, 0x8c, 0x38, 0x89, 0xf0, 0xf8, 0x91, 0xd5, + 0x74, 0xaf, 0xfb, 0x1d, 0xea, 0x7b, 0x30, 0xa5, 0x99, 0x1a, 0x5f, 0x69, 0xa6, 0xb1, 0xa1, 0x51, + 0x95, 0x39, 0xe0, 0x1a, 0xf3, 0x19, 0x88, 0x6b, 0xfa, 0xb0, 0x26, 0x0d, 0x33, 0x95, 0x84, 0x65, + 0x84, 0xe2, 0x24, 0x82, 0x8a, 0x13, 0x04, 0x4e, 0xf3, 0x9b, 0x00, 0x7e, 0xad, 0xd0, 0x22, 0x4c, + 0x99, 0x4d, 0xcd, 0x0d, 0x0a, 0xcf, 0x16, 0x53, 0xc7, 0x47, 0x0b, 0x93, 0x9b, 0x4d, 0xad, 0xba, + 0x2a, 0x4d, 0x9a, 0x4d, 0xad, 0xaa, 0xd1, 0x43, 0xce, 0x78, 0x5f, 0xf6, 0x02, 0x55, 0x32, 0xd2, + 0xb4, 0x81, 0xf7, 0xfd, 0x50, 0x19, 0x4f, 0x38, 0x51, 0x9b, 0xdf, 0x13, 0x20, 0xe7, 0xb6, 0x60, + 0xb4, 0x23, 0x3d, 0xa9, 0xb7, 0xb8, 0xe6, 0xc7, 0x4f, 0xa6, 0xf9, 0x2e, 0x1f, 0x3f, 0x8a, 0xf5, + 0x35, 0x81, 0x87, 0xdd, 0xd5, 0x54, 0xc5, 0x21, 0x66, 0x3e, 0x42, 0xf5, 0x7e, 0x15, 0x44, 0x4b, + 0x31, 0x34, 0xb3, 0xa5, 0xbf, 0xc4, 0x6c, 0x7d, 0xc4, 0xe6, 0xdb, 0x02, 0x33, 0x1e, 0x9d, 0x2e, + 0x00, 0xb8, 0xcb, 0x3b, 0xff, 0x22, 0xf0, 0x10, 0x3d, 0xaf, 0x30, 0x51, 0x36, 0xda, 0x1a, 0x4c, + 0xd1, 0xa5, 0x3d, 0x77, 0xb8, 0xbd, 0x11, 0x22, 0x24, 0xec, 0xeb, 0x2c, 0xea, 0xc8, 0x53, 0x78, + 0x2a, 0x62, 0xfe, 0x0b, 0x30, 0x49, 0xc9, 0xa7, 0xb0, 0x71, 0xbc, 0xe5, 0x9f, 0xc3, 0xec, 0x8a, + 0xa6, 0xd5, 0x6a, 0x5c, 0xfb, 0xa2, 0x6b, 0x76, 0xd7, 0x7b, 0x8a, 0x85, 0x79, 0x4f, 0xc1, 0x4f, + 0x46, 0xe9, 0x3d, 0xb5, 0x21, 0xc7, 0x23, 0x8c, 0x23, 0x5e, 0xcb, 0xa5, 0x51, 0xc8, 0x5c, 0x6d, + 0xd8, 0x8b, 0x7f, 0xc2, 0xd5, 0xfb, 0x62, 0x94, 0x35, 0xe9, 0xc0, 0x9c, 0x2b, 0x37, 0xea, 0x6d, + 0x93, 0x61, 0xd5, 0xa1, 0x6b, 0x62, 0xc1, 0xcf, 0x46, 0x59, 0xa7, 0x7f, 0x12, 0x20, 0x57, 0xeb, + 0xec, 0xb0, 0x6b, 0x0e, 0xa2, 0x8c, 0x73, 0x4c, 0x35, 0xf1, 0xae, 0x23, 0x9f, 0x2c, 0x6a, 0xcf, + 0xb5, 0x44, 0x84, 0x95, 0x50, 0xd1, 0x0a, 0x80, 0x45, 0x23, 0xce, 0xa9, 0x9c, 0xf8, 0xd8, 0xd1, + 0x7f, 0x29, 0xca, 0x15, 0x88, 0x52, 0xfc, 0x61, 0x0c, 0x66, 0xbc, 0x6a, 0x46, 0x69, 0x3a, 0xfe, + 0x0f, 0x50, 0xef, 0x57, 0xb6, 0x1d, 0xc5, 0xb1, 0x79, 0x09, 0x5f, 0x3f, 0xc9, 0xf1, 0x8f, 0xe2, + 0x2c, 0x8f, 0xc5, 0x4a, 0x79, 0x24, 0x29, 0x45, 0x44, 0xd2, 0x47, 0xb4, 0x04, 0x73, 0xd4, 0x3e, + 0xca, 0x4a, 0xbb, 0xdd, 0xd4, 0xb1, 0x26, 0xb3, 0x1d, 0x8c, 0x04, 0xdd, 0xc1, 0x98, 0xa5, 0x49, + 0x2b, 0x2c, 0xa5, 0x4a, 0x77, 0x33, 0xee, 0x43, 0x66, 0xd7, 0xc2, 0xf8, 0x25, 0x96, 0xa9, 0xd7, + 0x75, 0x92, 0x7d, 0xad, 0x34, 0x63, 0xac, 0x11, 0x3e, 0x6e, 0x89, 0xde, 0x87, 0x59, 0xda, 0xb4, + 0x51, 0x9f, 0xda, 0xe1, 0xbd, 0xf2, 0x0b, 0x01, 0x50, 0x50, 0xfe, 0x47, 0xd7, 0x31, 0xb1, 0xc8, + 0x3b, 0xe6, 0x75, 0x40, 0x2c, 0xd4, 0xc0, 0x96, 0xdb, 0xd8, 0x92, 0x6d, 0xac, 0x9a, 0xfc, 0x6c, + 0xbe, 0x20, 0x89, 0x3c, 0x65, 0x0b, 0x5b, 0x35, 0x4a, 0x2f, 0x7c, 0xef, 0x02, 0x64, 0x78, 0x9b, + 0x6c, 0x1b, 0x04, 0xec, 0xdf, 0x85, 0x78, 0x83, 0xaf, 0xa6, 0xa4, 0x43, 0xf1, 0x96, 0x7f, 0x3f, + 0x48, 0x65, 0x42, 0x22, 0x79, 0x09, 0x4b, 0xbb, 0xe3, 0x84, 0x84, 0xd6, 0xf9, 0x11, 0x54, 0x41, + 0x96, 0x76, 0xc7, 0x41, 0x35, 0x98, 0x51, 0xfd, 0xfb, 0x11, 0x64, 0xc2, 0x1e, 0x1f, 0x78, 0x88, + 0x25, 0xf4, 0x96, 0x89, 0xca, 0x84, 0x94, 0x53, 0xbb, 0x12, 0x50, 0x29, 0x78, 0x20, 0x3f, 0x31, + 0x70, 0xed, 0xb0, 0xf7, 0x32, 0x80, 0xca, 0x44, 0xe0, 0xdc, 0x3e, 0x7a, 0x0b, 0xa6, 0x34, 0x7a, + 0xd0, 0x9b, 0x6b, 0x68, 0x98, 0x12, 0x75, 0x9d, 0xad, 0xaf, 0x4c, 0x48, 0x9c, 0x03, 0x3d, 0x84, + 0x0c, 0x7b, 0x62, 0x27, 0x9c, 0xb9, 0x5b, 0x79, 0x7d, 0xb0, 0x84, 0x80, 0xb5, 0xae, 0x4c, 0x48, + 0x69, 0xcd, 0xa7, 0xa2, 0x4f, 0x42, 0xc2, 0x56, 0x15, 0x83, 0x2f, 0x39, 0x5e, 0x1e, 0x70, 0xa0, + 0xd5, 0x67, 0xa6, 0xb9, 0xd1, 0x53, 0x98, 0xa5, 0x0b, 0x2c, 0xb2, 0xe3, 0xef, 0x3c, 0xd3, 0x03, + 0x35, 0xdd, 0x9b, 0xdd, 0x9e, 0xbb, 0x15, 0x7e, 0x8e, 0xab, 0x32, 0x21, 0x89, 0x3b, 0x3d, 0x49, + 0xa4, 0xcb, 0xa8, 0xbf, 0x1c, 0x10, 0x9c, 0x1a, 0xd8, 0x65, 0xa1, 0x27, 0xab, 0x48, 0x97, 0xe1, + 0xae, 0x04, 0xf4, 0x00, 0xd2, 0x0a, 0xf1, 0x5f, 0x64, 0x7a, 0xbe, 0x21, 0x0f, 0x03, 0xd7, 0x8e, + 0xfb, 0xce, 0xa6, 0x54, 0xe8, 0xa1, 0x34, 0x97, 0xe8, 0x0b, 0x6a, 0x61, 0xab, 0x81, 0xf3, 0xe9, + 0xe1, 0x82, 0x82, 0xdb, 0xd5, 0x9e, 0x20, 0x4a, 0x44, 0xeb, 0x90, 0xdd, 0x73, 0xe3, 0x7d, 0x69, + 0xa8, 0x40, 0x66, 0xe0, 0x02, 0x72, 0x48, 0xbc, 0x72, 0x65, 0x42, 0xca, 0xec, 0x05, 0xc8, 0x68, + 0x09, 0x62, 0x0d, 0x35, 0x9f, 0xa5, 0x32, 0x2e, 0x0d, 0x8b, 0xc6, 0xad, 0x4c, 0x48, 0xb1, 0x86, + 0x4a, 0x50, 0x09, 0x0b, 0x1b, 0x3c, 0x30, 0xf2, 0xb9, 0x81, 0x46, 0xa6, 0x3b, 0x58, 0xb4, 0x32, + 0x21, 0xd1, 0x90, 0x4a, 0xf2, 0xbd, 0x2d, 0xc8, 0x59, 0x6c, 0xbf, 0xdf, 0x8d, 0x6a, 0x11, 0xa9, + 0x94, 0x9b, 0xe1, 0xa6, 0xaa, 0x2f, 0xb0, 0xa5, 0x32, 0x21, 0x65, 0xad, 0x20, 0x1d, 0x7d, 0x19, + 0xce, 0x74, 0x4b, 0xe4, 0xca, 0x3d, 0xdb, 0x67, 0xb9, 0xc2, 0xe5, 0x76, 0xeb, 0x38, 0xb2, 0xfa, + 0x12, 0xd1, 0xa7, 0x61, 0x92, 0xf5, 0x1a, 0xa2, 0x22, 0xc3, 0xb6, 0x9a, 0x7a, 0x3a, 0x8c, 0xe5, + 0x27, 0xe3, 0xcd, 0xe1, 0x1b, 0xdd, 0x72, 0xd3, 0x6c, 0xe4, 0xe7, 0x06, 0x8e, 0xb7, 0xfe, 0x8d, + 0x7b, 0x32, 0xde, 0x1c, 0x9f, 0x4a, 0xfa, 0xdd, 0x62, 0x29, 0x7c, 0x5f, 0xf4, 0xcc, 0xc0, 0x7e, + 0x0f, 0xd9, 0xff, 0xae, 0xd0, 0xa0, 0x3d, 0x9f, 0x4c, 0x8a, 0x66, 0xb1, 0x33, 0xe4, 0x32, 0x1d, + 0xc6, 0x67, 0x07, 0x16, 0xad, 0xff, 0x5c, 0x3c, 0x29, 0x9a, 0xe5, 0x53, 0xd1, 0x13, 0x10, 0xf9, + 0x39, 0x51, 0x7f, 0x3d, 0xea, 0xdc, 0xc0, 0x9d, 0x88, 0xf0, 0x8d, 0xc4, 0xca, 0x84, 0x34, 0xa3, + 0x76, 0xa7, 0x10, 0x63, 0x41, 0xe5, 0xc9, 0xaa, 0x7f, 0xc0, 0x37, 0x9f, 0x1f, 0x68, 0x2c, 0x06, + 0x1c, 0x09, 0x27, 0xc6, 0x42, 0xed, 0x49, 0x22, 0x6a, 0xac, 0x1b, 0xba, 0x43, 0x0d, 0xfb, 0xfc, + 0x40, 0x35, 0xee, 0xbe, 0xc2, 0x86, 0xa8, 0xb1, 0xce, 0x28, 0x44, 0x8d, 0x1d, 0xbe, 0x69, 0xce, + 0xbb, 0xe3, 0xd2, 0x40, 0x35, 0x0e, 0xdb, 0x5d, 0x27, 0x6a, 0xec, 0x04, 0xe9, 0x44, 0x8d, 0x99, + 0x81, 0xe8, 0x91, 0xfb, 0xca, 0x40, 0x35, 0x1e, 0x78, 0xc2, 0x88, 0xa8, 0xb1, 0xd2, 0x97, 0x88, + 0x56, 0x01, 0x98, 0x47, 0xa4, 0x1b, 0xbb, 0x66, 0xfe, 0xf2, 0xc0, 0xf9, 0xa7, 0x77, 0xdb, 0x9c, + 0xcc, 0x3f, 0x4d, 0x97, 0x46, 0x0c, 0x19, 0xf5, 0xb1, 0x65, 0xba, 0xf8, 0x9d, 0x5f, 0x18, 0x68, + 0xc8, 0xfa, 0xd6, 0xc0, 0x89, 0x21, 0xdb, 0xf7, 0x88, 0x64, 0x22, 0x63, 0x4b, 0x46, 0xf9, 0xc5, + 0x11, 0x4b, 0x13, 0x81, 0x89, 0x8c, 0x71, 0xa0, 0x15, 0x48, 0x11, 0x4f, 0xe1, 0x90, 0x9a, 0xa1, + 0x2b, 0x03, 0xbd, 0xdb, 0x9e, 0xa8, 0xd4, 0xca, 0x84, 0x94, 0x7c, 0xce, 0x49, 0xe4, 0xf3, 0x0c, + 0xb7, 0xe7, 0x0b, 0x03, 0x3f, 0xdf, 0xb5, 0x52, 0x43, 0x3e, 0xcf, 0x38, 0x90, 0x0a, 0x67, 0x59, + 0x5f, 0xf1, 0x23, 0x49, 0x16, 0x3f, 0xbb, 0x93, 0xbf, 0x4a, 0x45, 0x0d, 0x44, 0xc1, 0xa1, 0xc7, + 0xa3, 0x2a, 0x13, 0xd2, 0x9c, 0xd2, 0x9f, 0x4a, 0x06, 0x3c, 0x9f, 0x7a, 0x18, 0x76, 0xce, 0x5f, + 0x1b, 0x38, 0xe0, 0x43, 0x56, 0x1b, 0xc8, 0x80, 0x57, 0x02, 0x64, 0x36, 0x01, 0x69, 0xb2, 0x6d, + 0xb3, 0xad, 0x92, 0xeb, 0x43, 0x26, 0xa0, 0x1e, 0x04, 0xcd, 0x26, 0x20, 0xad, 0xc6, 0x38, 0x89, + 0x20, 0xb5, 0x89, 0x15, 0x8b, 0x9b, 0xd9, 0x1b, 0x03, 0x05, 0xf5, 0x5d, 0x0b, 0x43, 0x04, 0xa9, + 0x1e, 0x91, 0x4c, 0xd8, 0x96, 0x7b, 0xc0, 0x9c, 0x7b, 0x9b, 0x37, 0x07, 0x4e, 0xd8, 0xa1, 0xe7, + 0xe0, 0xc9, 0x84, 0x6d, 0x75, 0x25, 0xa0, 0xcf, 0xc1, 0x34, 0x3f, 0xad, 0x9b, 0xbf, 0x35, 0xc4, + 0x07, 0x0e, 0xc2, 0x6a, 0x32, 0xae, 0x39, 0x0f, 0xb3, 0xb2, 0xec, 0xb0, 0x2f, 0xab, 0xde, 0xab, + 0x43, 0xac, 0x6c, 0x1f, 0xa2, 0x65, 0x56, 0xd6, 0x27, 0x13, 0x2b, 0xcb, 0xf4, 0x94, 0xcf, 0x75, + 0xb7, 0x07, 0x5a, 0xd9, 0xfe, 0x90, 0x58, 0x62, 0x65, 0x9f, 0xfb, 0x54, 0x52, 0x33, 0x9b, 0x01, + 0xb1, 0xfc, 0x6b, 0x03, 0x6b, 0xd6, 0x8d, 0x48, 0x49, 0xcd, 0x38, 0x0f, 0xe9, 0x36, 0x16, 0xad, + 0xc5, 0x5a, 0xfa, 0xf5, 0x81, 0xdd, 0xd6, 0x87, 0x5b, 0x2a, 0xee, 0x95, 0x81, 0xac, 0x85, 0x3d, + 0x43, 0x65, 0xf1, 0xd3, 0x56, 0xbc, 0xa5, 0xde, 0x18, 0x6e, 0xa8, 0xc2, 0x0e, 0x92, 0x79, 0x86, + 0xaa, 0x2b, 0x91, 0x16, 0x95, 0x05, 0x98, 0xd3, 0xf1, 0xbd, 0x34, 0xb8, 0xa8, 0xbd, 0x31, 0xff, + 0xb4, 0xa8, 0x1e, 0xd1, 0x1f, 0x42, 0x1d, 0x76, 0x3e, 0x35, 0x7f, 0x67, 0xf8, 0x10, 0xea, 0x3e, + 0x27, 0xeb, 0x0d, 0x21, 0x4e, 0x2e, 0x4e, 0xf3, 0x98, 0xbf, 0x87, 0x89, 0xe4, 0x8c, 0x28, 0x3e, + 0x4c, 0x24, 0xcf, 0x8b, 0xf9, 0x87, 0x89, 0xe4, 0x05, 0x71, 0xfe, 0x61, 0x22, 0x79, 0x51, 0xbc, + 0x54, 0xf8, 0xf5, 0x0b, 0x90, 0x75, 0xf1, 0x15, 0x43, 0x2b, 0xcb, 0x41, 0xb4, 0x72, 0x79, 0x10, + 0x5a, 0xe1, 0x88, 0x8c, 0xc3, 0x95, 0xe5, 0x20, 0x5c, 0xb9, 0x3c, 0x08, 0xae, 0xf8, 0x3c, 0x04, + 0xaf, 0xd4, 0x07, 0xe1, 0x95, 0x57, 0xc7, 0xc0, 0x2b, 0x9e, 0xa8, 0x5e, 0xc0, 0xb2, 0xda, 0x0f, + 0x58, 0xae, 0x0d, 0x07, 0x2c, 0x9e, 0xa8, 0x00, 0x62, 0x79, 0xbb, 0x07, 0xb1, 0x5c, 0x19, 0x82, + 0x58, 0x3c, 0x7e, 0x17, 0xb2, 0xac, 0x85, 0x42, 0x96, 0x1b, 0xa3, 0x20, 0x8b, 0x27, 0xa7, 0x0b, + 0xb3, 0xbc, 0xd9, 0x85, 0x59, 0x16, 0x06, 0x62, 0x16, 0x8f, 0x9b, 0x81, 0x96, 0xf7, 0x06, 0x83, + 0x96, 0xd7, 0xc6, 0x02, 0x2d, 0x9e, 0xbc, 0x7e, 0xd4, 0x52, 0x1f, 0x84, 0x5a, 0x5e, 0x1d, 0x03, + 0xb5, 0xf8, 0x1d, 0xd7, 0x03, 0x5b, 0x2a, 0x61, 0xb0, 0xe5, 0xfa, 0x08, 0xd8, 0xe2, 0x49, 0x0b, + 0xe2, 0x96, 0x4a, 0x18, 0x6e, 0xb9, 0x3e, 0x02, 0xb7, 0xf4, 0x48, 0x62, 0xc0, 0x65, 0x23, 0x1c, + 0xb8, 0xdc, 0x1c, 0x09, 0x5c, 0x3c, 0x69, 0xdd, 0xc8, 0xe5, 0x4e, 0x00, 0xb9, 0xbc, 0x32, 0x00, + 0xb9, 0x78, 0xac, 0x04, 0xba, 0x7c, 0xbe, 0x0f, 0xba, 0x14, 0x86, 0x41, 0x17, 0x8f, 0xd7, 0xc3, + 0x2e, 0x8f, 0x07, 0x60, 0x97, 0x5b, 0xa3, 0xb1, 0x8b, 0x27, 0xac, 0x07, 0xbc, 0x28, 0x43, 0xc1, + 0xcb, 0x1b, 0x63, 0x82, 0x17, 0x4f, 0x7a, 0x18, 0x7a, 0xf9, 0x4c, 0x37, 0x7a, 0x59, 0x1c, 0x8c, + 0x5e, 0x3c, 0x31, 0x1c, 0xbe, 0xac, 0x85, 0xc2, 0x97, 0x1b, 0xa3, 0xe0, 0x8b, 0x3f, 0xf6, 0x82, + 0xf8, 0x65, 0x23, 0x1c, 0xbf, 0xdc, 0x1c, 0x89, 0x5f, 0xfc, 0xee, 0xef, 0x02, 0x30, 0x6b, 0xa1, + 0x00, 0xe6, 0xc6, 0x28, 0x00, 0xe3, 0x17, 0x2e, 0x88, 0x60, 0xde, 0x1d, 0x88, 0x60, 0x6e, 0x8f, + 0x83, 0x60, 0x3c, 0xa1, 0x7d, 0x10, 0xe6, 0xbd, 0xc1, 0x10, 0xe6, 0xb5, 0x13, 0x5c, 0x67, 0x14, + 0x8a, 0x61, 0x3e, 0xdf, 0x87, 0x61, 0x0a, 0xc3, 0x30, 0x8c, 0xaf, 0xcf, 0x2e, 0x88, 0x51, 0x86, + 0x42, 0x8e, 0x37, 0xc6, 0x84, 0x1c, 0xbe, 0xf2, 0x85, 0x60, 0x8e, 0x72, 0x08, 0xe6, 0xb8, 0x36, + 0x1c, 0x73, 0xf8, 0x53, 0x88, 0x0f, 0x3a, 0x2a, 0x61, 0xa0, 0xe3, 0xfa, 0x08, 0xd0, 0xe1, 0x5b, + 0xa1, 0x00, 0xea, 0x78, 0xbb, 0x07, 0x75, 0x5c, 0x19, 0xb9, 0xa3, 0x1f, 0x80, 0x1d, 0xc5, 0x7e, + 0xd8, 0x71, 0x75, 0x28, 0xec, 0xf0, 0x24, 0xf8, 0xb8, 0xe3, 0xed, 0x1e, 0xdc, 0x71, 0x65, 0x08, + 0xee, 0xf0, 0x0b, 0xc0, 0x81, 0x87, 0x36, 0x1c, 0x78, 0x2c, 0x8d, 0x0b, 0x3c, 0x3c, 0xc1, 0xa1, + 0xc8, 0x63, 0x23, 0x1c, 0x79, 0xdc, 0x1c, 0x73, 0x73, 0xaf, 0x0f, 0x7a, 0x54, 0xc2, 0xa0, 0xc7, + 0xf5, 0x11, 0xd0, 0x23, 0x38, 0x87, 0x78, 0xd8, 0xa3, 0x12, 0x86, 0x3d, 0xae, 0x8f, 0xc0, 0x1e, + 0xbe, 0xa4, 0x00, 0xf8, 0xa8, 0x0f, 0x02, 0x1f, 0xaf, 0x8e, 0x01, 0x3e, 0xfc, 0x79, 0xb7, 0x07, + 0x7d, 0xbc, 0xd3, 0x8b, 0x3e, 0x0a, 0xc3, 0xd0, 0x87, 0x3f, 0x22, 0x5d, 0xf8, 0xb1, 0x11, 0x0e, + 0x3f, 0x6e, 0x8e, 0x84, 0x1f, 0x41, 0x23, 0x19, 0xc0, 0x1f, 0x6b, 0xa1, 0xf8, 0xe3, 0xc6, 0x28, + 0xfc, 0xe1, 0x1b, 0xc9, 0x20, 0x00, 0x79, 0xa7, 0x17, 0x80, 0x14, 0x86, 0x01, 0x10, 0xbf, 0x72, + 0x2e, 0x02, 0xa9, 0x84, 0x21, 0x90, 0xeb, 0x23, 0x10, 0x88, 0xdf, 0x79, 0x01, 0x08, 0xa2, 0x0c, + 0x85, 0x20, 0x6f, 0x8c, 0x09, 0x41, 0x7a, 0x0c, 0x57, 0x37, 0x06, 0xa9, 0x84, 0x61, 0x90, 0xeb, + 0x23, 0x30, 0x48, 0xa0, 0xb0, 0x3e, 0x08, 0xd9, 0x08, 0x07, 0x21, 0x37, 0x47, 0x82, 0x90, 0x9e, + 0xd1, 0x34, 0x2e, 0x0a, 0x79, 0x98, 0x48, 0x5e, 0x12, 0x5f, 0x29, 0xfc, 0xf9, 0x24, 0x4c, 0x55, + 0xdc, 0x98, 0x98, 0xc0, 0x05, 0x03, 0xc2, 0x69, 0x2e, 0x18, 0x40, 0xab, 0x44, 0xb1, 0xa9, 0x79, + 0xe0, 0xb8, 0x64, 0xc8, 0x6d, 0x1d, 0x7d, 0xdb, 0x92, 0x2e, 0xeb, 0x29, 0x4e, 0x0c, 0xa1, 0x37, + 0x21, 0xdb, 0xb1, 0xb1, 0x25, 0xb7, 0x2d, 0xdd, 0xb4, 0x74, 0x87, 0x45, 0x92, 0x0a, 0x45, 0xf1, + 0xc3, 0xa3, 0x85, 0xcc, 0xb6, 0x8d, 0xad, 0x2d, 0x4e, 0x97, 0x32, 0x9d, 0xc0, 0x9b, 0x7b, 0x47, + 0xff, 0xe4, 0xf8, 0x77, 0xf4, 0x3f, 0x06, 0xd1, 0xc2, 0x8a, 0xd6, 0x35, 0x51, 0xb3, 0x33, 0xf7, + 0xe1, 0x3e, 0x05, 0x0d, 0x99, 0x76, 0x73, 0xd2, 0xb3, 0xf7, 0x33, 0x56, 0x37, 0x11, 0xdd, 0x85, + 0xb3, 0x2d, 0xe5, 0x80, 0x5d, 0x35, 0xe1, 0xfa, 0x3e, 0x34, 0x36, 0x28, 0x49, 0x43, 0xd8, 0x50, + 0x4b, 0x39, 0xa0, 0x17, 0xfe, 0xb3, 0x24, 0x7a, 0xd5, 0xef, 0x75, 0xc8, 0x69, 0xba, 0xed, 0xe8, + 0x86, 0xea, 0x5e, 0x72, 0xc6, 0x0e, 0xe7, 0x67, 0x5d, 0x2a, 0xbb, 0x6c, 0xec, 0x36, 0xcc, 0xf2, + 0x60, 0x41, 0xff, 0x2f, 0x00, 0xa8, 0x97, 0x9f, 0x24, 0xa5, 0x20, 0x09, 0xfe, 0x7f, 0x3f, 0x94, + 0x60, 0xa6, 0xa1, 0x38, 0x78, 0x5f, 0x39, 0x94, 0xdd, 0xa8, 0xed, 0x34, 0xbd, 0x33, 0xe8, 0xe2, + 0xf1, 0xd1, 0x42, 0xf6, 0x01, 0x4b, 0xea, 0x0b, 0xde, 0xce, 0x36, 0x02, 0x09, 0x1a, 0x5a, 0x81, + 0x0c, 0xbd, 0xc5, 0xd4, 0x64, 0x97, 0xe5, 0x72, 0xdf, 0x7d, 0xd0, 0xae, 0x0f, 0xbf, 0x52, 0x57, + 0xa2, 0x37, 0x9f, 0xba, 0xf7, 0xeb, 0xde, 0x84, 0x19, 0xc5, 0x3e, 0x34, 0x54, 0xda, 0xc2, 0xd8, + 0xb0, 0x3b, 0x36, 0x75, 0xde, 0x93, 0x52, 0x8e, 0x92, 0x4b, 0x2e, 0x95, 0x5f, 0x6c, 0xf6, 0x9b, + 0x02, 0x64, 0xba, 0x22, 0x68, 0xdf, 0xee, 0xd9, 0xdc, 0xbc, 0x10, 0x0e, 0x1c, 0x06, 0x85, 0x85, + 0x25, 0x79, 0x0f, 0xb8, 0xa1, 0x2a, 0x0b, 0x83, 0x1d, 0x4f, 0x0a, 0xdd, 0xdd, 0x2d, 0x75, 0x97, + 0xed, 0xad, 0xc4, 0x6f, 0x7f, 0x7b, 0x61, 0xa2, 0xf0, 0xcb, 0x38, 0x64, 0xbb, 0x23, 0x65, 0xab, + 0x3d, 0xe5, 0x0a, 0x1b, 0xd8, 0x5d, 0x1c, 0x4b, 0x43, 0xee, 0xc4, 0x49, 0xf9, 0x77, 0x9f, 0xb2, + 0x62, 0x2e, 0x0e, 0xd9, 0xc2, 0x0d, 0x96, 0xd3, 0x67, 0x9c, 0xff, 0x51, 0xcc, 0x1b, 0xf9, 0x4b, + 0x30, 0x49, 0x4f, 0x2d, 0xf3, 0xa2, 0x85, 0x9d, 0x25, 0x2a, 0x93, 0x74, 0x89, 0x65, 0x23, 0x96, + 0xa2, 0x7e, 0xaa, 0xab, 0x48, 0x3c, 0xc2, 0x29, 0xfe, 0x1d, 0x83, 0x5f, 0x7f, 0x33, 0x79, 0xb2, + 0xeb, 0x6f, 0xd8, 0x16, 0x6d, 0xb3, 0x89, 0x55, 0x87, 0xff, 0x1d, 0x8a, 0xfb, 0x1f, 0x18, 0xd7, + 0x7a, 0x45, 0xf0, 0x3f, 0x4f, 0x59, 0x92, 0xf8, 0x9f, 0xa7, 0x04, 0xa2, 0x87, 0x72, 0x9e, 0x08, + 0x3a, 0xb0, 0x58, 0x8c, 0x19, 0xef, 0xea, 0xff, 0x2f, 0x80, 0x48, 0x87, 0xd1, 0x7d, 0x8c, 0xb5, + 0x48, 0xb4, 0xd0, 0x0d, 0x6c, 0x8a, 0x8d, 0x1d, 0xd8, 0x54, 0x50, 0x20, 0xe7, 0x95, 0x81, 0xfd, + 0x19, 0xc0, 0x90, 0x9b, 0x64, 0x4e, 0x75, 0x28, 0xb5, 0xf0, 0x3b, 0x02, 0xcc, 0x79, 0xdf, 0x28, + 0x79, 0x67, 0xa1, 0x4e, 0x13, 0x6a, 0x2a, 0xd1, 0x3f, 0x3a, 0x21, 0x08, 0x94, 0x1e, 0x54, 0x1c, + 0x4b, 0x83, 0x10, 0x8f, 0x16, 0x00, 0x8e, 0x6c, 0xb5, 0x7a, 0x8d, 0xfe, 0x05, 0x0a, 0x7b, 0xb6, + 0x0b, 0xf7, 0x03, 0x2d, 0x40, 0x95, 0x95, 0x54, 0x73, 0x2c, 0xad, 0x76, 0xab, 0x49, 0x33, 0x17, + 0x7e, 0x22, 0x04, 0x05, 0xbd, 0x20, 0x1e, 0xcd, 0x3d, 0x88, 0xbf, 0x50, 0x9a, 0xc3, 0x82, 0x25, + 0xba, 0x9a, 0x5e, 0x22, 0xb9, 0xd1, 0xfd, 0xae, 0x23, 0x64, 0xb1, 0xc1, 0xb0, 0xb3, 0xbf, 0x49, + 0x83, 0x47, 0xcd, 0xd0, 0xa7, 0xdd, 0x5a, 0xc4, 0x47, 0x7f, 0x3e, 0x38, 0x48, 0xdf, 0x4a, 0x7c, + 0xf0, 0xed, 0x05, 0xe1, 0x76, 0x0d, 0xe6, 0x42, 0x26, 0x21, 0x94, 0x03, 0x08, 0x5c, 0x47, 0xcb, + 0xff, 0x67, 0x65, 0x65, 0x55, 0xde, 0xde, 0x28, 0x6d, 0xae, 0xaf, 0x57, 0xeb, 0xf5, 0xf2, 0xaa, + 0x28, 0x20, 0x11, 0x32, 0x5d, 0x97, 0xd9, 0xf2, 0xbf, 0x57, 0xb9, 0xfd, 0x29, 0x00, 0xff, 0x1a, + 0x6a, 0x22, 0x6b, 0xad, 0xfc, 0x54, 0x7e, 0xb2, 0xf2, 0x68, 0xbb, 0x5c, 0x13, 0x27, 0x10, 0x82, + 0x5c, 0x71, 0xa5, 0x5e, 0xaa, 0xc8, 0x52, 0xb9, 0xb6, 0xb5, 0xb9, 0x51, 0x2b, 0x8b, 0x02, 0xe7, + 0x5b, 0x85, 0x4c, 0xf0, 0xb0, 0x1d, 0x9a, 0x83, 0x99, 0x52, 0xa5, 0x5c, 0x5a, 0x93, 0x9f, 0x54, + 0x57, 0xe4, 0xc7, 0xdb, 0xe5, 0xed, 0xb2, 0x38, 0x41, 0x8b, 0x46, 0x89, 0xf7, 0xb7, 0x1f, 0x3d, + 0x12, 0x05, 0x34, 0x03, 0x69, 0xf6, 0x4e, 0x2f, 0xbe, 0x15, 0x63, 0xb7, 0xd7, 0x21, 0x1d, 0xb8, + 0xcb, 0x86, 0x7c, 0x6e, 0x6b, 0xbb, 0x56, 0x91, 0xeb, 0xd5, 0xf5, 0x72, 0xad, 0xbe, 0xb2, 0xbe, + 0xc5, 0x64, 0x50, 0xda, 0x4a, 0x71, 0x53, 0xaa, 0x8b, 0x82, 0xf7, 0x5e, 0xdf, 0xdc, 0x2e, 0x55, + 0xbc, 0x7f, 0x89, 0x49, 0x24, 0xe3, 0x62, 0xfc, 0xb6, 0x09, 0x67, 0x43, 0x4f, 0xaf, 0xa1, 0x34, + 0x4c, 0x6f, 0x1b, 0xf4, 0x6e, 0x0e, 0x71, 0x02, 0x65, 0x03, 0x07, 0xd8, 0x44, 0x01, 0x25, 0xd9, + 0x31, 0x25, 0x31, 0x86, 0xa6, 0x20, 0x56, 0xbb, 0x27, 0xc6, 0x49, 0x31, 0x03, 0xa7, 0xc0, 0xc4, + 0x04, 0x4a, 0xf1, 0xc3, 0x33, 0xe2, 0x24, 0xca, 0xf8, 0xa7, 0x57, 0xc4, 0xa9, 0xdb, 0x57, 0x20, + 0x10, 0xdc, 0x8f, 0x00, 0xa6, 0x1e, 0x29, 0x0e, 0xb6, 0x1d, 0x71, 0x02, 0x4d, 0x43, 0x7c, 0xa5, + 0xd9, 0x14, 0x85, 0xe5, 0x1f, 0x08, 0x90, 0x74, 0xef, 0x3c, 0x45, 0x8f, 0x60, 0x92, 0x81, 0xd2, + 0x85, 0xc1, 0x53, 0x06, 0xb5, 0x3a, 0xf3, 0x8b, 0xa3, 0xe6, 0x94, 0xc2, 0x04, 0x7a, 0x97, 0xff, + 0xe1, 0x13, 0xd1, 0x17, 0x74, 0x75, 0x98, 0x36, 0xb9, 0x52, 0x87, 0xab, 0x1c, 0x19, 0x21, 0x85, + 0x89, 0x4f, 0x08, 0xc5, 0x2b, 0x1f, 0xfc, 0xc3, 0xe5, 0x89, 0x0f, 0x8e, 0x2f, 0x0b, 0x3f, 0x3d, + 0xbe, 0x2c, 0xfc, 0xfc, 0xf8, 0xb2, 0xf0, 0xf7, 0xc7, 0x97, 0x85, 0xdf, 0xf8, 0xc7, 0xcb, 0x13, + 0xef, 0x4d, 0x73, 0xae, 0x9d, 0x29, 0xfa, 0x9f, 0x53, 0xf7, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, + 0x52, 0x77, 0xcf, 0x42, 0x78, 0x6b, 0x00, 0x00, } diff --git a/pkg/roachpb/api.proto b/pkg/roachpb/api.proto index 7ae66385b907..d309f4286cc6 100644 --- a/pkg/roachpb/api.proto +++ b/pkg/roachpb/api.proto @@ -654,17 +654,18 @@ message EndTransactionResponse { // metadata (e.g. abort span and range stats must be copied or // recomputed). // -// The manual flag should be set when the split is requested manually -// from a user operation (I.E. Running ALTER TABLE/INDEX ... SPLIT AT). -// It should also be set when the split ranges should not be merged back -// together automatically by the merge queue. Any split requested by the -// split queue will have the manual flag unset. +// expiration_time represents the time that this split expires. Any split that +// is not expired will not be considered for automatic merging by the merge +// queue. Any split requested by the split queue will have an expiration time +// of hlc.Timestamp{} (I.E. The zero timestamp so they are always eligible for +// automatic merging). message AdminSplitRequest { option (gogoproto.equal) = true; RequestHeader header = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; bytes split_key = 2 [(gogoproto.casttype) = "Key"]; - bool manual = 3; + reserved 3; + util.hlc.Timestamp expiration_time = 4 [(gogoproto.nullable) = false]; } // An AdminSplitResponse is the return value from the AdminSplit() diff --git a/pkg/roachpb/data.pb.go b/pkg/roachpb/data.pb.go index 0ba8709abda7..879b3e943a65 100644 --- a/pkg/roachpb/data.pb.go +++ b/pkg/roachpb/data.pb.go @@ -87,7 +87,7 @@ func (x ValueType) String() string { return proto.EnumName(ValueType_name, int32(x)) } func (ValueType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{0} + return fileDescriptor_data_b1056f8ea57f2df6, []int{0} } // ReplicaChangeType is a parameter of ChangeReplicasTrigger. @@ -111,7 +111,7 @@ func (x ReplicaChangeType) String() string { return proto.EnumName(ReplicaChangeType_name, int32(x)) } func (ReplicaChangeType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{1} + return fileDescriptor_data_b1056f8ea57f2df6, []int{1} } // TransactionStatus specifies possible states for a transaction. @@ -163,7 +163,7 @@ func (x TransactionStatus) String() string { return proto.EnumName(TransactionStatus_name, int32(x)) } func (TransactionStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{2} + return fileDescriptor_data_b1056f8ea57f2df6, []int{2} } // Span is a key range with an inclusive start Key and an exclusive end Key. @@ -182,7 +182,7 @@ type Span struct { func (m *Span) Reset() { *m = Span{} } func (*Span) ProtoMessage() {} func (*Span) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{0} + return fileDescriptor_data_b1056f8ea57f2df6, []int{0} } func (m *Span) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -236,7 +236,7 @@ func (m *Value) Reset() { *m = Value{} } func (m *Value) String() string { return proto.CompactTextString(m) } func (*Value) ProtoMessage() {} func (*Value) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{1} + return fileDescriptor_data_b1056f8ea57f2df6, []int{1} } func (m *Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -274,7 +274,7 @@ func (m *KeyValue) Reset() { *m = KeyValue{} } func (m *KeyValue) String() string { return proto.CompactTextString(m) } func (*KeyValue) ProtoMessage() {} func (*KeyValue) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{2} + return fileDescriptor_data_b1056f8ea57f2df6, []int{2} } func (m *KeyValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -314,7 +314,7 @@ func (m *StoreIdent) Reset() { *m = StoreIdent{} } func (m *StoreIdent) String() string { return proto.CompactTextString(m) } func (*StoreIdent) ProtoMessage() {} func (*StoreIdent) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{3} + return fileDescriptor_data_b1056f8ea57f2df6, []int{3} } func (m *StoreIdent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -356,7 +356,7 @@ func (m *SplitTrigger) Reset() { *m = SplitTrigger{} } func (m *SplitTrigger) String() string { return proto.CompactTextString(m) } func (*SplitTrigger) ProtoMessage() {} func (*SplitTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{4} + return fileDescriptor_data_b1056f8ea57f2df6, []int{4} } func (m *SplitTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -406,7 +406,7 @@ func (m *MergeTrigger) Reset() { *m = MergeTrigger{} } func (m *MergeTrigger) String() string { return proto.CompactTextString(m) } func (*MergeTrigger) ProtoMessage() {} func (*MergeTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{5} + return fileDescriptor_data_b1056f8ea57f2df6, []int{5} } func (m *MergeTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -445,7 +445,7 @@ type ChangeReplicasTrigger struct { func (m *ChangeReplicasTrigger) Reset() { *m = ChangeReplicasTrigger{} } func (*ChangeReplicasTrigger) ProtoMessage() {} func (*ChangeReplicasTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{6} + return fileDescriptor_data_b1056f8ea57f2df6, []int{6} } func (m *ChangeReplicasTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -489,7 +489,7 @@ func (m *ModifiedSpanTrigger) Reset() { *m = ModifiedSpanTrigger{} } func (m *ModifiedSpanTrigger) String() string { return proto.CompactTextString(m) } func (*ModifiedSpanTrigger) ProtoMessage() {} func (*ModifiedSpanTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{7} + return fileDescriptor_data_b1056f8ea57f2df6, []int{7} } func (m *ModifiedSpanTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -517,10 +517,10 @@ var xxx_messageInfo_ModifiedSpanTrigger proto.InternalMessageInfo // StickyBitTrigger indicates that the sticky bit of a range should be changed. // This trigger is used in two cases: // 1. Unsplitting a range. Note that unsplitting and merging are different -// operations. Unsplitting a range will only remove the sticky bit -// associated with the range. +// operations. Unsplitting a range will only update the expiration time +// associated with the range to hlc.Timestamp{}. // 2. Splitting at the start key of a range. In this case, no range is split but -// the sticky bit is still set, so we need to use this trigger instead of +// the sticky bit is still updated, so we need to use this trigger instead of // SplitTrigger. // // Note that the sticky_bit should always be set to the same timestamp used to @@ -528,16 +528,16 @@ var xxx_messageInfo_ModifiedSpanTrigger proto.InternalMessageInfo // timestamps are aligned. type StickyBitTrigger struct { // Set to nil to remove a RangeDescriptor's sticky bit. - StickyBit *hlc.Timestamp `protobuf:"bytes,1,opt,name=sticky_bit,json=stickyBit,proto3" json:"sticky_bit,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + StickyBit hlc.Timestamp `protobuf:"bytes,1,opt,name=sticky_bit,json=stickyBit,proto3" json:"sticky_bit"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *StickyBitTrigger) Reset() { *m = StickyBitTrigger{} } func (m *StickyBitTrigger) String() string { return proto.CompactTextString(m) } func (*StickyBitTrigger) ProtoMessage() {} func (*StickyBitTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{8} + return fileDescriptor_data_b1056f8ea57f2df6, []int{8} } func (m *StickyBitTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -578,7 +578,7 @@ func (m *InternalCommitTrigger) Reset() { *m = InternalCommitTrigger{} } func (m *InternalCommitTrigger) String() string { return proto.CompactTextString(m) } func (*InternalCommitTrigger) ProtoMessage() {} func (*InternalCommitTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{9} + return fileDescriptor_data_b1056f8ea57f2df6, []int{9} } func (m *InternalCommitTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -649,7 +649,7 @@ func (m *ObservedTimestamp) Reset() { *m = ObservedTimestamp{} } func (m *ObservedTimestamp) String() string { return proto.CompactTextString(m) } func (*ObservedTimestamp) ProtoMessage() {} func (*ObservedTimestamp) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{10} + return fileDescriptor_data_b1056f8ea57f2df6, []int{10} } func (m *ObservedTimestamp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -858,7 +858,7 @@ type Transaction struct { func (m *Transaction) Reset() { *m = Transaction{} } func (*Transaction) ProtoMessage() {} func (*Transaction) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{11} + return fileDescriptor_data_b1056f8ea57f2df6, []int{11} } func (m *Transaction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -915,7 +915,7 @@ func (m *TransactionRecord) Reset() { *m = TransactionRecord{} } func (m *TransactionRecord) String() string { return proto.CompactTextString(m) } func (*TransactionRecord) ProtoMessage() {} func (*TransactionRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{12} + return fileDescriptor_data_b1056f8ea57f2df6, []int{12} } func (m *TransactionRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -953,7 +953,7 @@ func (m *Intent) Reset() { *m = Intent{} } func (m *Intent) String() string { return proto.CompactTextString(m) } func (*Intent) ProtoMessage() {} func (*Intent) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{13} + return fileDescriptor_data_b1056f8ea57f2df6, []int{13} } func (m *Intent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -992,7 +992,7 @@ func (m *SequencedWrite) Reset() { *m = SequencedWrite{} } func (m *SequencedWrite) String() string { return proto.CompactTextString(m) } func (*SequencedWrite) ProtoMessage() {} func (*SequencedWrite) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{14} + return fileDescriptor_data_b1056f8ea57f2df6, []int{14} } func (m *SequencedWrite) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1058,7 +1058,7 @@ type Lease struct { func (m *Lease) Reset() { *m = Lease{} } func (*Lease) ProtoMessage() {} func (*Lease) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{15} + return fileDescriptor_data_b1056f8ea57f2df6, []int{15} } func (m *Lease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1105,7 +1105,7 @@ func (m *AbortSpanEntry) Reset() { *m = AbortSpanEntry{} } func (m *AbortSpanEntry) String() string { return proto.CompactTextString(m) } func (*AbortSpanEntry) ProtoMessage() {} func (*AbortSpanEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{16} + return fileDescriptor_data_b1056f8ea57f2df6, []int{16} } func (m *AbortSpanEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1171,7 +1171,7 @@ func (m *TxnCoordMeta) Reset() { *m = TxnCoordMeta{} } func (m *TxnCoordMeta) String() string { return proto.CompactTextString(m) } func (*TxnCoordMeta) ProtoMessage() {} func (*TxnCoordMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_data_0680a1dc0a4428c1, []int{17} + return fileDescriptor_data_b1056f8ea57f2df6, []int{17} } func (m *TxnCoordMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1417,7 +1417,7 @@ func (this *StickyBitTrigger) Equal(that interface{}) bool { } else if this == nil { return false } - if !this.StickyBit.Equal(that1.StickyBit) { + if !this.StickyBit.Equal(&that1.StickyBit) { return false } return true @@ -2014,16 +2014,14 @@ func (m *StickyBitTrigger) MarshalTo(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.StickyBit != nil { - dAtA[i] = 0xa - i++ - i = encodeVarintData(dAtA, i, uint64(m.StickyBit.Size())) - n12, err := m.StickyBit.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n12 + dAtA[i] = 0xa + i++ + i = encodeVarintData(dAtA, i, uint64(m.StickyBit.Size())) + n12, err := m.StickyBit.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err } + i += n12 return i, nil } @@ -2992,10 +2990,8 @@ func (m *StickyBitTrigger) Size() (n int) { } var l int _ = l - if m.StickyBit != nil { - l = m.StickyBit.Size() - n += 1 + l + sovData(uint64(l)) - } + l = m.StickyBit.Size() + n += 1 + l + sovData(uint64(l)) return n } @@ -4295,9 +4291,6 @@ func (m *StickyBitTrigger) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.StickyBit == nil { - m.StickyBit = &hlc.Timestamp{} - } if err := m.StickyBit.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } @@ -6212,136 +6205,136 @@ var ( ErrIntOverflowData = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("roachpb/data.proto", fileDescriptor_data_0680a1dc0a4428c1) } - -var fileDescriptor_data_0680a1dc0a4428c1 = []byte{ - // 2042 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xcd, 0x6f, 0xdb, 0xc8, - 0x15, 0x37, 0x45, 0xca, 0xa2, 0x9e, 0x3e, 0x4c, 0x4f, 0xe2, 0x44, 0xcd, 0xa2, 0x52, 0x56, 0x29, - 0xda, 0x20, 0xd8, 0xc8, 0x68, 0xd2, 0x16, 0x68, 0xb0, 0x2d, 0xaa, 0xaf, 0x24, 0x54, 0x2c, 0x39, - 0x4b, 0xd1, 0x09, 0x36, 0x8b, 0x05, 0x4b, 0x91, 0x63, 0x89, 0x88, 0x44, 0x6a, 0xc9, 0x91, 0x63, - 0xed, 0x5f, 0xb0, 0xb7, 0xee, 0xa1, 0x87, 0xa2, 0xa7, 0x00, 0xbd, 0xf5, 0x1f, 0x68, 0x4f, 0xbd, - 0x36, 0x97, 0x02, 0x7b, 0x6a, 0x8b, 0x1e, 0x84, 0x56, 0xbd, 0xf4, 0xdc, 0xa3, 0x81, 0x02, 0xc5, - 0x0c, 0x87, 0x12, 0x1d, 0x2b, 0x86, 0x5c, 0x6f, 0x81, 0xa2, 0x17, 0x7b, 0xf8, 0xe6, 0xbd, 0xdf, - 0xcc, 0xbc, 0x8f, 0xdf, 0x9b, 0x11, 0x20, 0xdf, 0x33, 0xad, 0xc1, 0xb8, 0xb7, 0x6b, 0x9b, 0xc4, - 0xac, 0x8c, 0x7d, 0x8f, 0x78, 0x68, 0xdb, 0xf2, 0xac, 0x97, 0x4c, 0x5e, 0xe1, 0xb3, 0x37, 0xae, - 0x45, 0x6a, 0x23, 0x4c, 0xcc, 0xa5, 0xea, 0x8d, 0x72, 0x40, 0x3c, 0xdf, 0xec, 0xe3, 0x5d, 0xec, - 0xf6, 0x1d, 0x37, 0xfa, 0x47, 0xf5, 0x8e, 0x2c, 0x8b, 0xeb, 0xdc, 0x3a, 0x4f, 0xe7, 0x3e, 0x57, - 0x2a, 0x4c, 0x88, 0x33, 0xdc, 0x1d, 0x0c, 0xad, 0x5d, 0xe2, 0x8c, 0x70, 0x40, 0xcc, 0xd1, 0x98, - 0xcf, 0x5c, 0xed, 0x7b, 0x7d, 0x8f, 0x0d, 0x77, 0xe9, 0x28, 0x94, 0x96, 0x3f, 0x05, 0xa9, 0x3b, - 0x36, 0x5d, 0xf4, 0x0d, 0x10, 0x5f, 0xe2, 0x69, 0x41, 0xbc, 0x29, 0xdc, 0xce, 0xd6, 0x52, 0x27, - 0xb3, 0x92, 0xf8, 0x04, 0x4f, 0x35, 0x2a, 0x43, 0x37, 0x21, 0x85, 0x5d, 0xdb, 0xa0, 0xd3, 0xd2, - 0xe9, 0xe9, 0x4d, 0xec, 0xda, 0x4f, 0xf0, 0xf4, 0x41, 0xf6, 0x17, 0xaf, 0x4b, 0x1b, 0xbf, 0x7d, - 0x5d, 0x12, 0xfe, 0xf1, 0xba, 0x24, 0xb4, 0x24, 0x59, 0x50, 0x12, 0x2d, 0x49, 0x4e, 0x28, 0x62, - 0x79, 0x04, 0xc9, 0x67, 0xe6, 0x70, 0x82, 0xd1, 0x7b, 0x90, 0xf6, 0xcd, 0x57, 0x46, 0x6f, 0x4a, - 0x70, 0x50, 0x10, 0x28, 0x8c, 0x26, 0xfb, 0xe6, 0xab, 0x1a, 0xfd, 0x46, 0x55, 0x48, 0x2f, 0x76, - 0x5b, 0x48, 0xdc, 0x14, 0x6e, 0x67, 0xee, 0x7d, 0xb3, 0xb2, 0x74, 0x1e, 0x3d, 0x52, 0x65, 0x30, - 0xb4, 0x2a, 0x7a, 0xa4, 0x54, 0x93, 0xde, 0xcc, 0x4a, 0x1b, 0xda, 0xd2, 0xea, 0x81, 0x44, 0x97, - 0x2e, 0x7f, 0x02, 0xf2, 0x13, 0x3c, 0x0d, 0x57, 0xe4, 0x27, 0x12, 0x56, 0x9c, 0xe8, 0x7b, 0x90, - 0x3c, 0xa2, 0x3a, 0x7c, 0xad, 0x42, 0xe5, 0x4c, 0xa0, 0x2a, 0x0c, 0x83, 0x2f, 0x13, 0x2a, 0x97, - 0xff, 0x24, 0x00, 0x74, 0x89, 0xe7, 0x63, 0xd5, 0xc6, 0x2e, 0x41, 0x7d, 0x00, 0x6b, 0x38, 0x09, - 0x08, 0xf6, 0x0d, 0xc7, 0xe6, 0xcb, 0x3c, 0xa6, 0xfa, 0x7f, 0x99, 0x95, 0xee, 0xf7, 0x1d, 0x32, - 0x98, 0xf4, 0x2a, 0x96, 0x37, 0xda, 0x5d, 0x60, 0xdb, 0xbd, 0xe5, 0x78, 0x77, 0xfc, 0xb2, 0xbf, - 0xcb, 0x42, 0x35, 0x99, 0x38, 0x76, 0xe5, 0xe0, 0x40, 0x6d, 0xcc, 0x67, 0xa5, 0x74, 0x3d, 0x04, - 0x54, 0x1b, 0x5a, 0x9a, 0x63, 0xab, 0x36, 0xba, 0x0b, 0x29, 0xd7, 0xb3, 0x31, 0x5d, 0x85, 0xee, - 0x37, 0x59, 0xbb, 0x3a, 0x9f, 0x95, 0x36, 0x3b, 0x9e, 0x8d, 0xd5, 0xc6, 0xc9, 0x62, 0xa4, 0x6d, - 0x52, 0x25, 0xd5, 0x46, 0xdf, 0x05, 0x99, 0x26, 0x0a, 0xd3, 0x17, 0x99, 0xfe, 0xb5, 0xf9, 0xac, - 0x94, 0x0a, 0x77, 0x4e, 0x0d, 0xa2, 0xa1, 0x96, 0x0a, 0xc2, 0xd3, 0x94, 0x7f, 0x2d, 0x40, 0xb6, - 0x3b, 0x1e, 0x3a, 0x44, 0xf7, 0x9d, 0x7e, 0x1f, 0xfb, 0xa8, 0x09, 0xe9, 0x21, 0x3e, 0x24, 0x86, - 0x8d, 0x03, 0x8b, 0x1d, 0x2d, 0x73, 0xaf, 0xbc, 0xc2, 0x49, 0x9a, 0xe9, 0xf6, 0x71, 0x03, 0x07, - 0x96, 0xef, 0x8c, 0x89, 0xe7, 0x73, 0x77, 0xc9, 0xd4, 0x94, 0x4a, 0xd1, 0x23, 0x00, 0xdf, 0xe9, - 0x0f, 0x38, 0x4e, 0xe2, 0x82, 0x38, 0x69, 0x66, 0x4b, 0xc5, 0x61, 0x74, 0x5b, 0x92, 0x2c, 0x2a, - 0x52, 0x79, 0x9e, 0x80, 0x6c, 0x1b, 0xfb, 0x7d, 0xfc, 0x3f, 0xba, 0x59, 0xe4, 0x82, 0x12, 0x02, - 0xd1, 0xba, 0x34, 0x02, 0x62, 0x92, 0x80, 0x15, 0x4e, 0xe6, 0xde, 0x07, 0x31, 0x38, 0x5e, 0xcc, - 0x95, 0xb0, 0x8a, 0x2b, 0x51, 0x31, 0x57, 0xda, 0xcf, 0xea, 0xf5, 0x2e, 0xb5, 0xa9, 0x5d, 0xa3, - 0xc0, 0xf3, 0x59, 0x29, 0xaf, 0x51, 0xb4, 0x85, 0x5c, 0xcb, 0x33, 0xf4, 0xf6, 0x91, 0x65, 0xb1, - 0x6f, 0xf4, 0x10, 0xb2, 0x87, 0x3e, 0xc6, 0x9f, 0x63, 0xba, 0x96, 0x4f, 0x0a, 0xc9, 0xf5, 0x0b, - 0x28, 0x13, 0x1a, 0x76, 0xa9, 0xdd, 0x29, 0x27, 0xff, 0x21, 0x01, 0x3b, 0xf5, 0x01, 0x3d, 0xa9, - 0x86, 0xc7, 0x43, 0xc7, 0x32, 0x83, 0xa5, 0xb7, 0x33, 0x16, 0x9b, 0x30, 0xc8, 0x74, 0x8c, 0x99, - 0xbf, 0xf3, 0xf7, 0xbe, 0xb5, 0xca, 0x4f, 0xa1, 0x61, 0x88, 0xa2, 0x4f, 0xc7, 0x58, 0x03, 0x6b, - 0x31, 0x46, 0x0d, 0x48, 0xf9, 0xa1, 0x02, 0x77, 0xf5, 0x39, 0x10, 0x67, 0x9c, 0x1d, 0x99, 0xa2, - 0x03, 0x50, 0x26, 0x63, 0xdb, 0x24, 0xd8, 0x36, 0xb8, 0x28, 0x28, 0x88, 0x37, 0xc5, 0x0b, 0xc2, - 0x6d, 0x71, 0x8c, 0xe8, 0xa8, 0xe8, 0x21, 0x6c, 0xb9, 0xf8, 0x98, 0x44, 0x98, 0xb4, 0x92, 0x24, - 0x56, 0x49, 0xc5, 0xf9, 0xac, 0x94, 0xeb, 0xe0, 0x63, 0xc2, 0x55, 0x59, 0x3d, 0xa5, 0x17, 0x1f, - 0x5a, 0xce, 0x8d, 0xcd, 0xd9, 0x0f, 0x64, 0xca, 0x8b, 0x8c, 0x98, 0xbe, 0x14, 0xe0, 0x4a, 0xdb, - 0xb3, 0x9d, 0x43, 0x07, 0xdb, 0x94, 0x6f, 0x23, 0x6f, 0x7e, 0x00, 0x28, 0x98, 0x06, 0x04, 0x8f, - 0x0c, 0xcb, 0x73, 0x0f, 0x9d, 0xbe, 0x11, 0x8c, 0x4d, 0x97, 0x39, 0x55, 0xd6, 0x94, 0x70, 0xa6, - 0xce, 0x26, 0x18, 0x49, 0x37, 0x01, 0x31, 0x26, 0x18, 0x3a, 0x47, 0xd8, 0xc5, 0x41, 0x10, 0x6a, - 0x87, 0xfe, 0xbb, 0xbe, 0xe2, 0xc0, 0xd4, 0x48, 0x53, 0xa8, 0xc9, 0x1e, 0xb7, 0xa0, 0x12, 0xce, - 0x95, 0xcf, 0x40, 0xe9, 0x12, 0xc7, 0x7a, 0x39, 0xad, 0x2d, 0xeb, 0xfe, 0x43, 0x80, 0x80, 0xc9, - 0x8c, 0x9e, 0x43, 0x78, 0x2d, 0x9d, 0x9f, 0x48, 0x5a, 0x3a, 0x88, 0x40, 0x38, 0xee, 0xef, 0x44, - 0xd8, 0x51, 0x5d, 0x82, 0x7d, 0xd7, 0x1c, 0xd6, 0xbd, 0xd1, 0x68, 0x89, 0xde, 0x80, 0x5c, 0x40, - 0x59, 0xc6, 0x20, 0xa1, 0x80, 0x2f, 0x50, 0x5a, 0xb9, 0xf3, 0x25, 0x1b, 0x69, 0xd9, 0x20, 0xce, - 0x4d, 0x0d, 0xc8, 0x8d, 0x68, 0xf9, 0x2f, 0x50, 0x12, 0xef, 0x44, 0x89, 0xd3, 0x84, 0x96, 0x1d, - 0xc5, 0x49, 0xe3, 0xa7, 0x70, 0x9d, 0xa7, 0x71, 0x94, 0x38, 0x0b, 0x3c, 0x91, 0xe1, 0xdd, 0x5e, - 0x81, 0xb7, 0xb2, 0x22, 0xb4, 0x1d, 0x6b, 0x65, 0xa1, 0xbc, 0x80, 0x9d, 0x11, 0x8f, 0x38, 0x8b, - 0xd3, 0x02, 0x3f, 0xe4, 0x82, 0x6f, 0xaf, 0xda, 0xef, 0xd9, 0x0c, 0xd1, 0xae, 0x8c, 0x56, 0xa4, - 0xcd, 0x47, 0x80, 0x96, 0x71, 0x5a, 0x00, 0x87, 0x85, 0x7f, 0x6b, 0x95, 0x3b, 0xdf, 0x0a, 0xb4, - 0xa6, 0x04, 0x6f, 0x49, 0x1e, 0xc8, 0x5f, 0xf0, 0xfe, 0x5d, 0xfe, 0x99, 0x00, 0xdb, 0xfb, 0xbd, - 0x00, 0xfb, 0x47, 0xd8, 0x5e, 0xc4, 0x39, 0xde, 0x85, 0x84, 0x35, 0xba, 0xd0, 0xd7, 0xd0, 0xd2, - 0xe5, 0xe8, 0x46, 0x51, 0xfe, 0x63, 0x0a, 0x32, 0xba, 0x6f, 0xba, 0x81, 0x69, 0x11, 0xc7, 0x73, - 0xd1, 0x63, 0x90, 0xe8, 0xfd, 0x89, 0xe7, 0xcf, 0x9d, 0x35, 0x58, 0x55, 0x3f, 0x76, 0xdb, 0x98, - 0x98, 0x35, 0x99, 0x2e, 0xf2, 0xd5, 0xac, 0x24, 0x68, 0x0c, 0x01, 0x21, 0x90, 0x5c, 0x73, 0x14, - 0x5e, 0x04, 0xd2, 0x1a, 0x1b, 0xa3, 0x0f, 0x61, 0x93, 0x92, 0xf6, 0x24, 0x64, 0xed, 0xd5, 0xe4, - 0x16, 0xdb, 0x4d, 0x97, 0xe9, 0x6a, 0xdc, 0x06, 0xb5, 0x20, 0x3f, 0x34, 0x03, 0x62, 0x0c, 0xb0, - 0xe9, 0x93, 0x1e, 0x36, 0x2f, 0xc4, 0xc7, 0x39, 0x6a, 0xfa, 0x38, 0xb2, 0xa4, 0x58, 0x9e, 0xef, - 0xf4, 0x8d, 0xa5, 0x27, 0x37, 0x2f, 0x80, 0x45, 0x4d, 0x97, 0xf1, 0x7b, 0x0c, 0xb9, 0x91, 0x79, - 0x1c, 0x83, 0x4a, 0xad, 0x0f, 0x95, 0x1d, 0x99, 0xc7, 0x4b, 0xa4, 0x4f, 0xe0, 0x8a, 0xc7, 0xd3, - 0x63, 0x09, 0x17, 0x14, 0xe4, 0x77, 0xf2, 0xee, 0x99, 0x64, 0xe2, 0xb0, 0xc8, 0x7b, 0x7b, 0x22, - 0x40, 0x77, 0x01, 0xd9, 0x78, 0xec, 0x63, 0x8b, 0x91, 0xfa, 0x2b, 0xdf, 0x21, 0x8e, 0xdb, 0x2f, - 0xa4, 0x19, 0x21, 0x6e, 0x2f, 0x67, 0x9e, 0x87, 0x13, 0xe8, 0x27, 0x90, 0x75, 0x5c, 0x82, 0x5d, - 0xc2, 0x4a, 0x2c, 0x28, 0x64, 0xd8, 0x26, 0xde, 0xc5, 0x85, 0x51, 0xd7, 0x0b, 0x4d, 0xa8, 0x24, - 0x40, 0x65, 0xc8, 0xd1, 0x55, 0xb0, 0x41, 0x3c, 0xcf, 0xf0, 0x86, 0x76, 0x21, 0xcb, 0xd6, 0xca, - 0x30, 0xa1, 0xee, 0x79, 0xfb, 0x43, 0x1b, 0x1d, 0xc0, 0x55, 0x3c, 0xf6, 0xac, 0x81, 0xf1, 0x39, - 0xf6, 0xbd, 0x98, 0x0b, 0xf3, 0xeb, 0xbb, 0x10, 0x31, 0x80, 0x17, 0xd8, 0xf7, 0x96, 0x8e, 0xd4, - 0xe1, 0x8a, 0x8f, 0x0f, 0x7d, 0x1c, 0x0c, 0xe2, 0x9e, 0x2c, 0x6c, 0x5d, 0x00, 0x75, 0x61, 0xbf, - 0x44, 0xfd, 0x11, 0xbc, 0x77, 0x3a, 0x69, 0x8c, 0x57, 0x66, 0x60, 0x44, 0xae, 0x2e, 0x28, 0xec, - 0x78, 0x85, 0x53, 0xc9, 0xf1, 0xdc, 0x0c, 0xa2, 0x18, 0xa1, 0x8f, 0x40, 0x71, 0x5c, 0xe3, 0x70, - 0xc8, 0x6e, 0x30, 0xcc, 0x09, 0x41, 0x61, 0x9b, 0x79, 0xf5, 0xfd, 0x55, 0x5e, 0xc5, 0x9f, 0x4d, - 0xb0, 0x6b, 0x85, 0x01, 0x89, 0xee, 0xcb, 0x79, 0xc7, 0x7d, 0xc8, 0xec, 0x99, 0x30, 0x38, 0xf3, - 0x3c, 0x10, 0x15, 0xa9, 0x25, 0xc9, 0x39, 0x25, 0x5f, 0xfe, 0xb9, 0x04, 0xdb, 0xb1, 0x52, 0xd2, - 0xb0, 0xe5, 0xf9, 0xf6, 0xd7, 0x58, 0xde, 0xff, 0x9f, 0xa5, 0x7c, 0xf9, 0xa4, 0xff, 0x2f, 0x04, - 0x59, 0x8e, 0x05, 0x38, 0xa1, 0x88, 0x8b, 0x30, 0xa7, 0x14, 0xb9, 0x25, 0xc9, 0xb2, 0x92, 0x6e, - 0x49, 0x72, 0x5a, 0x81, 0x96, 0x24, 0x83, 0x92, 0x69, 0x49, 0x72, 0x56, 0xc9, 0x85, 0x49, 0xd0, - 0x92, 0xe4, 0xbc, 0xb2, 0xd5, 0x92, 0xe4, 0x2d, 0x45, 0x69, 0x49, 0xb2, 0xa2, 0x6c, 0x97, 0x7f, - 0x2f, 0xc0, 0xa6, 0xca, 0xb6, 0x8b, 0xbe, 0x0f, 0xd2, 0xe2, 0x4a, 0x74, 0xce, 0x19, 0x63, 0x81, - 0xa7, 0xea, 0xa8, 0x06, 0x22, 0x39, 0x8e, 0xae, 0x46, 0x17, 0xc9, 0xa0, 0xf0, 0x70, 0xd4, 0x38, - 0x96, 0x3c, 0xe2, 0xc5, 0x93, 0x87, 0x5f, 0x86, 0x7e, 0x29, 0x40, 0xfe, 0xb4, 0xfb, 0xce, 0x7b, - 0x97, 0x5a, 0x20, 0x07, 0x5c, 0x99, 0x3f, 0xf5, 0x1e, 0x9d, 0xcc, 0x4a, 0xf5, 0xb5, 0x1e, 0x93, - 0xef, 0xf8, 0x71, 0x80, 0x1e, 0xac, 0x8b, 0x3f, 0xd3, 0x16, 0xc0, 0xb1, 0xb6, 0xfa, 0x2f, 0x11, - 0x92, 0x7b, 0xd8, 0x0c, 0x30, 0xfa, 0x21, 0x24, 0xc3, 0xb7, 0x83, 0xb0, 0x7e, 0x52, 0x86, 0x16, - 0xe8, 0x53, 0x00, 0x7c, 0x3c, 0x76, 0x7c, 0x93, 0xfa, 0x60, 0xbd, 0x4e, 0x5f, 0xfc, 0xe7, 0xac, - 0x74, 0x23, 0x76, 0x92, 0x07, 0x65, 0xdf, 0x74, 0x6d, 0x77, 0x32, 0x1c, 0x9a, 0xbd, 0x21, 0x2e, - 0x6b, 0x31, 0xc0, 0xf8, 0x3b, 0x41, 0xfc, 0xcf, 0xdf, 0x09, 0x13, 0xb8, 0x1e, 0xeb, 0x2a, 0x6c, - 0xe3, 0xf4, 0x6f, 0xe0, 0x44, 0x2f, 0xb3, 0x4b, 0xee, 0x78, 0x67, 0x89, 0xce, 0xde, 0x52, 0x5d, - 0x86, 0x8d, 0x3a, 0x90, 0x19, 0xfb, 0xde, 0xd8, 0x0b, 0x28, 0xbf, 0x07, 0xeb, 0xb1, 0x47, 0x7e, - 0x3e, 0x2b, 0xc1, 0x53, 0x6e, 0xa5, 0x77, 0x35, 0x88, 0x10, 0xf4, 0x00, 0x5d, 0x85, 0x24, 0x6b, - 0x23, 0x8c, 0x3b, 0x44, 0x2d, 0xfc, 0x40, 0x77, 0x63, 0x59, 0x43, 0x9b, 0xba, 0x58, 0xdb, 0x3e, - 0x99, 0x95, 0x72, 0x2c, 0xb2, 0x51, 0xee, 0xc5, 0xe3, 0x1f, 0xb1, 0x71, 0x79, 0x2e, 0x40, 0xbe, - 0xda, 0xf3, 0x7c, 0x46, 0x0a, 0x4d, 0x97, 0xf8, 0xd3, 0xf3, 0x92, 0xf3, 0xf2, 0x37, 0x3a, 0x34, - 0x00, 0x79, 0xec, 0x3b, 0x9e, 0xef, 0x90, 0x29, 0xff, 0x69, 0x62, 0xef, 0x64, 0x56, 0x7a, 0x7c, - 0xd9, 0xfc, 0x7e, 0xca, 0x31, 0xb5, 0x05, 0x7a, 0x3c, 0xc9, 0x13, 0x90, 0xd5, 0x8f, 0xdd, 0xba, - 0xe7, 0xf9, 0x36, 0xad, 0x70, 0xf4, 0x83, 0x90, 0x1a, 0xc2, 0x4c, 0x2f, 0x9e, 0x5f, 0xd3, 0x71, - 0x3a, 0xb8, 0x05, 0x39, 0xcb, 0x1b, 0x8d, 0x4c, 0xd7, 0x36, 0x2c, 0x6f, 0xe2, 0x92, 0xf0, 0x04, - 0x5a, 0x96, 0x0b, 0xeb, 0x54, 0x86, 0x6a, 0x90, 0xe3, 0x2d, 0xd9, 0xf0, 0xb1, 0x69, 0xd3, 0xf4, - 0x5a, 0x83, 0x9b, 0xb3, 0xdc, 0x46, 0xa3, 0x26, 0xa8, 0x01, 0xf9, 0x08, 0x83, 0x53, 0x73, 0x72, - 0x1d, 0x90, 0x68, 0xe1, 0x90, 0x8f, 0xd1, 0x77, 0x60, 0x2b, 0x42, 0x71, 0xdc, 0x23, 0x73, 0xe8, - 0xd8, 0x2c, 0x39, 0x64, 0x2d, 0x02, 0x57, 0x43, 0xe9, 0xca, 0x5e, 0x20, 0x5f, 0xaa, 0x17, 0x2c, - 0x3a, 0xc0, 0xa6, 0x92, 0xba, 0xf3, 0x1b, 0x01, 0xd2, 0xec, 0xc7, 0x34, 0xf6, 0xec, 0xcf, 0x40, - 0xea, 0xa0, 0xf3, 0xa4, 0xb3, 0xff, 0xbc, 0xa3, 0x6c, 0xa0, 0x14, 0x88, 0x6a, 0x47, 0x57, 0x04, - 0x94, 0x86, 0xe4, 0xc3, 0xbd, 0xfd, 0xaa, 0xae, 0x24, 0xe8, 0xb0, 0xf6, 0xb1, 0xde, 0xec, 0x2a, - 0x22, 0xba, 0x02, 0x5b, 0x8d, 0xe6, 0x9e, 0xda, 0x56, 0xf5, 0x66, 0xc3, 0x08, 0x85, 0x32, 0x92, - 0x41, 0xd2, 0xd5, 0x76, 0x53, 0x91, 0x28, 0x54, 0xa3, 0x59, 0x57, 0xdb, 0xd5, 0x3d, 0x25, 0x89, - 0x76, 0x60, 0x7b, 0xa9, 0x1b, 0x89, 0xd3, 0x28, 0x0b, 0x72, 0xe3, 0x40, 0xab, 0xea, 0xea, 0x7e, - 0x47, 0xd9, 0xa4, 0xd8, 0xfa, 0xc1, 0xd3, 0xbd, 0xa6, 0x02, 0x74, 0xa2, 0xa6, 0xea, 0x55, 0x4d, - 0xab, 0x7e, 0xac, 0x64, 0x50, 0x1e, 0x80, 0x82, 0x76, 0x9b, 0x9a, 0xda, 0xec, 0x2a, 0x76, 0x99, - 0x76, 0xad, 0xd4, 0x9d, 0x1f, 0xc3, 0xf6, 0x99, 0xdf, 0x30, 0xd0, 0x16, 0x64, 0xaa, 0x8d, 0x86, - 0xa1, 0x35, 0x9f, 0xee, 0xa9, 0xf5, 0xaa, 0xb2, 0x81, 0x10, 0xe4, 0xb5, 0x66, 0x7b, 0xff, 0x59, - 0x73, 0x21, 0x13, 0x6e, 0x48, 0x5f, 0xfc, 0xaa, 0xb8, 0x71, 0x67, 0xff, 0xd4, 0xdd, 0x26, 0x6c, - 0x0f, 0x74, 0xd7, 0x4f, 0x9b, 0x9d, 0x86, 0xda, 0x79, 0xa4, 0x6c, 0xd0, 0x8f, 0xae, 0x5e, 0x7d, - 0x44, 0x3f, 0x44, 0x94, 0x83, 0x74, 0x7d, 0xbf, 0xdd, 0x56, 0x75, 0xbd, 0xd9, 0x50, 0x04, 0x3a, - 0x57, 0xad, 0xed, 0x6b, 0xf4, 0x23, 0x11, 0x02, 0xd6, 0xde, 0x7f, 0xf3, 0xb7, 0xe2, 0xc6, 0x9b, - 0x79, 0x51, 0xf8, 0x6a, 0x5e, 0x14, 0xfe, 0x3c, 0x2f, 0x0a, 0x7f, 0x9d, 0x17, 0x85, 0x2f, 0xff, - 0x5e, 0xdc, 0x78, 0x91, 0xe2, 0xe1, 0xe9, 0x6d, 0xb2, 0x5f, 0x75, 0xef, 0xff, 0x3b, 0x00, 0x00, - 0xff, 0xff, 0xa2, 0xd8, 0x37, 0xee, 0x8f, 0x16, 0x00, 0x00, +func init() { proto.RegisterFile("roachpb/data.proto", fileDescriptor_data_b1056f8ea57f2df6) } + +var fileDescriptor_data_b1056f8ea57f2df6 = []byte{ + // 2041 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xcd, 0x8f, 0x1b, 0x49, + 0x15, 0x9f, 0x76, 0xb7, 0xc7, 0xed, 0xe7, 0x8f, 0xe9, 0xa9, 0x64, 0x12, 0x93, 0x15, 0x76, 0xd6, + 0x41, 0x10, 0x45, 0x1b, 0x8f, 0x48, 0x00, 0x89, 0x08, 0x10, 0xfe, 0x4a, 0xd2, 0xce, 0xd8, 0x93, + 0x6d, 0xf7, 0x24, 0xda, 0x2c, 0xab, 0xa6, 0xdd, 0x5d, 0x63, 0xb7, 0x62, 0x77, 0x7b, 0xbb, 0xcb, + 0x93, 0xf1, 0xfe, 0x05, 0x7b, 0x63, 0x0f, 0x1c, 0x10, 0xa7, 0x48, 0xdc, 0xf8, 0x07, 0xe0, 0xc4, + 0x95, 0x5c, 0x90, 0xf6, 0x04, 0x88, 0x83, 0x05, 0xe6, 0xc2, 0x99, 0xe3, 0x48, 0x48, 0xa8, 0xaa, + 0xab, 0xed, 0x9e, 0x8c, 0x33, 0xf2, 0x30, 0x8b, 0x84, 0xb8, 0xcc, 0x54, 0xbf, 0x7a, 0xef, 0x57, + 0x55, 0xef, 0xe3, 0xf7, 0xaa, 0x0c, 0xc8, 0xf7, 0x4c, 0x6b, 0x30, 0xee, 0xed, 0xda, 0x26, 0x31, + 0x2b, 0x63, 0xdf, 0x23, 0x1e, 0xda, 0xb6, 0x3c, 0xeb, 0x25, 0x93, 0x57, 0xf8, 0xec, 0x8d, 0x6b, + 0x91, 0xda, 0x08, 0x13, 0x73, 0xa9, 0x7a, 0xa3, 0x1c, 0x10, 0xcf, 0x37, 0xfb, 0x78, 0x17, 0xbb, + 0x7d, 0xc7, 0x8d, 0xfe, 0x51, 0xbd, 0x23, 0xcb, 0xe2, 0x3a, 0xb7, 0xce, 0xd3, 0xb9, 0xcf, 0x95, + 0x0a, 0x13, 0xe2, 0x0c, 0x77, 0x07, 0x43, 0x6b, 0x97, 0x38, 0x23, 0x1c, 0x10, 0x73, 0x34, 0xe6, + 0x33, 0x57, 0xfb, 0x5e, 0xdf, 0x63, 0xc3, 0x5d, 0x3a, 0x0a, 0xa5, 0xe5, 0x4f, 0x40, 0xea, 0x8e, + 0x4d, 0x17, 0x7d, 0x0d, 0xc4, 0x97, 0x78, 0x5a, 0x10, 0x6f, 0x0a, 0xb7, 0xb3, 0xb5, 0xd4, 0xc9, + 0xac, 0x24, 0x3e, 0xc1, 0x53, 0x8d, 0xca, 0xd0, 0x4d, 0x48, 0x61, 0xd7, 0x36, 0xe8, 0xb4, 0x74, + 0x7a, 0x7a, 0x13, 0xbb, 0xf6, 0x13, 0x3c, 0x7d, 0x90, 0xfd, 0xc5, 0xeb, 0xd2, 0xc6, 0x6f, 0x5f, + 0x97, 0x84, 0x7f, 0xbc, 0x2e, 0x09, 0x2d, 0x49, 0x16, 0x94, 0x44, 0x4b, 0x92, 0x13, 0x8a, 0x58, + 0x1e, 0x41, 0xf2, 0x99, 0x39, 0x9c, 0x60, 0xf4, 0x1e, 0xa4, 0x7d, 0xf3, 0x95, 0xd1, 0x9b, 0x12, + 0x1c, 0x14, 0x04, 0x0a, 0xa3, 0xc9, 0xbe, 0xf9, 0xaa, 0x46, 0xbf, 0x51, 0x15, 0xd2, 0x8b, 0xdd, + 0x16, 0x12, 0x37, 0x85, 0xdb, 0x99, 0x7b, 0x5f, 0xaf, 0x2c, 0x9d, 0x47, 0x8f, 0x54, 0x19, 0x0c, + 0xad, 0x8a, 0x1e, 0x29, 0xd5, 0xa4, 0x37, 0xb3, 0xd2, 0x86, 0xb6, 0xb4, 0x7a, 0x20, 0xd1, 0xa5, + 0xcb, 0x1f, 0x83, 0xfc, 0x04, 0x4f, 0xc3, 0x15, 0xf9, 0x89, 0x84, 0x15, 0x27, 0xfa, 0x0e, 0x24, + 0x8f, 0xa8, 0x0e, 0x5f, 0xab, 0x50, 0x39, 0x13, 0xa8, 0x0a, 0xc3, 0xe0, 0xcb, 0x84, 0xca, 0xe5, + 0x3f, 0x09, 0x00, 0x5d, 0xe2, 0xf9, 0x58, 0xb5, 0xb1, 0x4b, 0x50, 0x1f, 0xc0, 0x1a, 0x4e, 0x02, + 0x82, 0x7d, 0xc3, 0xb1, 0xf9, 0x32, 0x8f, 0xa9, 0xfe, 0x5f, 0x66, 0xa5, 0xfb, 0x7d, 0x87, 0x0c, + 0x26, 0xbd, 0x8a, 0xe5, 0x8d, 0x76, 0x17, 0xd8, 0x76, 0x6f, 0x39, 0xde, 0x1d, 0xbf, 0xec, 0xef, + 0xb2, 0x50, 0x4d, 0x26, 0x8e, 0x5d, 0x39, 0x38, 0x50, 0x1b, 0xf3, 0x59, 0x29, 0x5d, 0x0f, 0x01, + 0xd5, 0x86, 0x96, 0xe6, 0xd8, 0xaa, 0x8d, 0xee, 0x42, 0xca, 0xf5, 0x6c, 0x4c, 0x57, 0xa1, 0xfb, + 0x4d, 0xd6, 0xae, 0xce, 0x67, 0xa5, 0xcd, 0x8e, 0x67, 0x63, 0xb5, 0x71, 0xb2, 0x18, 0x69, 0x9b, + 0x54, 0x49, 0xb5, 0xd1, 0xb7, 0x41, 0xa6, 0x89, 0xc2, 0xf4, 0x45, 0xa6, 0x7f, 0x6d, 0x3e, 0x2b, + 0xa5, 0xc2, 0x9d, 0x53, 0x83, 0x68, 0xa8, 0xa5, 0x82, 0xf0, 0x34, 0xe5, 0x5f, 0x0b, 0x90, 0xed, + 0x8e, 0x87, 0x0e, 0xd1, 0x7d, 0xa7, 0xdf, 0xc7, 0x3e, 0x6a, 0x42, 0x7a, 0x88, 0x0f, 0x89, 0x61, + 0xe3, 0xc0, 0x62, 0x47, 0xcb, 0xdc, 0x2b, 0xaf, 0x70, 0x92, 0x66, 0xba, 0x7d, 0xdc, 0xc0, 0x81, + 0xe5, 0x3b, 0x63, 0xe2, 0xf9, 0xdc, 0x5d, 0x32, 0x35, 0xa5, 0x52, 0xf4, 0x08, 0xc0, 0x77, 0xfa, + 0x03, 0x8e, 0x93, 0xb8, 0x20, 0x4e, 0x9a, 0xd9, 0x52, 0x71, 0x18, 0xdd, 0x96, 0x24, 0x8b, 0x8a, + 0x54, 0x9e, 0x27, 0x20, 0xdb, 0xc6, 0x7e, 0x1f, 0xff, 0x8f, 0x6e, 0x16, 0xb9, 0xa0, 0x84, 0x40, + 0xb4, 0x2e, 0x8d, 0x80, 0x98, 0x24, 0x60, 0x85, 0x93, 0xb9, 0xf7, 0x41, 0x0c, 0x8e, 0x17, 0x73, + 0x25, 0xac, 0xe2, 0x4a, 0x54, 0xcc, 0x95, 0xf6, 0xb3, 0x7a, 0xbd, 0x4b, 0x6d, 0x6a, 0xd7, 0x28, + 0xf0, 0x7c, 0x56, 0xca, 0x6b, 0x14, 0x6d, 0x21, 0xd7, 0xf2, 0x0c, 0xbd, 0x7d, 0x64, 0x59, 0xec, + 0x1b, 0x3d, 0x84, 0xec, 0xa1, 0x8f, 0xf1, 0x67, 0x98, 0xae, 0xe5, 0x93, 0x42, 0x72, 0xfd, 0x02, + 0xca, 0x84, 0x86, 0x5d, 0x6a, 0x77, 0xca, 0xc9, 0x7f, 0x48, 0xc0, 0x4e, 0x7d, 0x40, 0x4f, 0xaa, + 0xe1, 0xf1, 0xd0, 0xb1, 0xcc, 0x60, 0xe9, 0xed, 0x8c, 0xc5, 0x26, 0x0c, 0x32, 0x1d, 0x63, 0xe6, + 0xef, 0xfc, 0xbd, 0x6f, 0xac, 0xf2, 0x53, 0x68, 0x18, 0xa2, 0xe8, 0xd3, 0x31, 0xd6, 0xc0, 0x5a, + 0x8c, 0x51, 0x03, 0x52, 0x7e, 0xa8, 0xc0, 0x5d, 0x7d, 0x0e, 0xc4, 0x19, 0x67, 0x47, 0xa6, 0xe8, + 0x00, 0x94, 0xc9, 0xd8, 0x36, 0x09, 0xb6, 0x0d, 0x2e, 0x0a, 0x0a, 0xe2, 0x4d, 0xf1, 0x82, 0x70, + 0x5b, 0x1c, 0x23, 0x3a, 0x2a, 0x7a, 0x08, 0x5b, 0x2e, 0x3e, 0x26, 0x11, 0x26, 0xad, 0x24, 0x89, + 0x55, 0x52, 0x71, 0x3e, 0x2b, 0xe5, 0x3a, 0xf8, 0x98, 0x70, 0x55, 0x56, 0x4f, 0xe9, 0xc5, 0x87, + 0x96, 0x73, 0x63, 0x73, 0xf6, 0x03, 0x99, 0xf2, 0x22, 0x23, 0xa6, 0x2f, 0x04, 0xb8, 0xd2, 0xf6, + 0x6c, 0xe7, 0xd0, 0xc1, 0x36, 0xe5, 0xdb, 0xc8, 0x9b, 0x1f, 0x00, 0x0a, 0xa6, 0x01, 0xc1, 0x23, + 0xc3, 0xf2, 0xdc, 0x43, 0xa7, 0x6f, 0x04, 0x63, 0xd3, 0x65, 0x4e, 0x95, 0x35, 0x25, 0x9c, 0xa9, + 0xb3, 0x09, 0x46, 0xd2, 0x4d, 0x40, 0x8c, 0x09, 0x86, 0xce, 0x11, 0x76, 0x71, 0x10, 0x84, 0xda, + 0xa1, 0xff, 0xae, 0xaf, 0x38, 0x30, 0x35, 0xd2, 0x14, 0x6a, 0xb2, 0xc7, 0x2d, 0xa8, 0x84, 0x73, + 0xe5, 0x4f, 0x40, 0xe9, 0x12, 0xc7, 0x7a, 0x39, 0xad, 0x2d, 0xeb, 0xbe, 0x06, 0x10, 0x30, 0x99, + 0xd1, 0x73, 0x08, 0xaf, 0xa5, 0xf5, 0x98, 0x38, 0x88, 0xa0, 0x38, 0xfa, 0xef, 0x44, 0xd8, 0x51, + 0x5d, 0x82, 0x7d, 0xd7, 0x1c, 0xd6, 0xbd, 0xd1, 0x68, 0xb9, 0x46, 0x03, 0x72, 0x01, 0xe5, 0x1a, + 0x83, 0x84, 0x02, 0xbe, 0x4c, 0x69, 0xe5, 0xfe, 0x97, 0x9c, 0xa4, 0x65, 0x83, 0x38, 0x43, 0x35, + 0x20, 0x37, 0xa2, 0x24, 0xb0, 0x40, 0x49, 0xbc, 0x13, 0x25, 0x4e, 0x16, 0x5a, 0x76, 0x14, 0xa7, + 0x8e, 0x9f, 0xc2, 0x75, 0x9e, 0xcc, 0x51, 0xfa, 0x2c, 0xf0, 0x44, 0x86, 0x77, 0x7b, 0x05, 0xde, + 0xca, 0xba, 0xd0, 0x76, 0xac, 0x95, 0xe5, 0xf2, 0x02, 0x76, 0x46, 0x3c, 0xee, 0x2c, 0x5a, 0x0b, + 0xfc, 0x90, 0x11, 0xbe, 0xb9, 0x6a, 0xbf, 0x67, 0xf3, 0x44, 0xbb, 0x32, 0x5a, 0x91, 0x3c, 0x1f, + 0x02, 0x5a, 0x46, 0x6b, 0x01, 0x1c, 0x96, 0xff, 0xad, 0x55, 0xee, 0x7c, 0x2b, 0xdc, 0x9a, 0x12, + 0xbc, 0x25, 0x79, 0x20, 0x7f, 0xce, 0xbb, 0x78, 0xf9, 0x67, 0x02, 0x6c, 0xef, 0xf7, 0x02, 0xec, + 0x1f, 0x61, 0x7b, 0x11, 0xed, 0x78, 0x2f, 0x12, 0xd6, 0xe8, 0x45, 0x5f, 0x41, 0x63, 0x97, 0xa3, + 0x7b, 0x45, 0xf9, 0x8f, 0x29, 0xc8, 0xe8, 0xbe, 0xe9, 0x06, 0xa6, 0x45, 0x1c, 0xcf, 0x45, 0x8f, + 0x41, 0xa2, 0xb7, 0x28, 0x9e, 0x3f, 0x77, 0xd6, 0xe0, 0x56, 0xfd, 0xd8, 0x6d, 0x63, 0x62, 0xd6, + 0x64, 0xba, 0xc8, 0x97, 0xb3, 0x92, 0xa0, 0x31, 0x04, 0x84, 0x40, 0x72, 0xcd, 0x51, 0x78, 0x1d, + 0x48, 0x6b, 0x6c, 0x8c, 0x7e, 0x00, 0x9b, 0x94, 0xba, 0x27, 0x21, 0x77, 0xaf, 0xa6, 0xb8, 0xd8, + 0x6e, 0xba, 0x4c, 0x57, 0xe3, 0x36, 0xa8, 0x05, 0xf9, 0xa1, 0x19, 0x10, 0x63, 0x80, 0x4d, 0x9f, + 0xf4, 0xb0, 0x79, 0x21, 0x56, 0xce, 0x51, 0xd3, 0xc7, 0x91, 0x25, 0xc5, 0xf2, 0x7c, 0xa7, 0x6f, + 0x2c, 0x3d, 0xb9, 0x79, 0x01, 0x2c, 0x6a, 0xba, 0x8c, 0xdf, 0x63, 0xc8, 0x8d, 0xcc, 0xe3, 0x18, + 0x54, 0x6a, 0x7d, 0xa8, 0xec, 0xc8, 0x3c, 0x5e, 0x22, 0x7d, 0x0c, 0x57, 0x3c, 0x9e, 0x1e, 0x4b, + 0xb8, 0xa0, 0x20, 0xbf, 0x93, 0x7d, 0xcf, 0x24, 0x13, 0x87, 0x45, 0xde, 0xdb, 0x13, 0x01, 0xba, + 0x0b, 0xc8, 0xc6, 0x63, 0x1f, 0x5b, 0x8c, 0xda, 0x5f, 0xf9, 0x0e, 0x71, 0xdc, 0x7e, 0x21, 0xcd, + 0x68, 0x71, 0x7b, 0x39, 0xf3, 0x3c, 0x9c, 0x40, 0x3f, 0x86, 0xac, 0xe3, 0x12, 0xec, 0x12, 0x56, + 0x62, 0x41, 0x21, 0xc3, 0x36, 0xf1, 0x2e, 0x46, 0x8c, 0x7a, 0x5f, 0x68, 0x42, 0x25, 0x01, 0x2a, + 0x43, 0x8e, 0xae, 0x82, 0x0d, 0xe2, 0x79, 0x86, 0x37, 0xb4, 0x0b, 0x59, 0xb6, 0x56, 0x86, 0x09, + 0x75, 0xcf, 0xdb, 0x1f, 0xda, 0xe8, 0x00, 0xae, 0xe2, 0xb1, 0x67, 0x0d, 0x8c, 0xcf, 0xb0, 0xef, + 0xc5, 0x5c, 0x98, 0x5f, 0xdf, 0x85, 0x88, 0x01, 0xbc, 0xc0, 0xbe, 0xb7, 0x74, 0xa4, 0x0e, 0x57, + 0x7c, 0x7c, 0xe8, 0xe3, 0x60, 0x10, 0xf7, 0x64, 0x61, 0xeb, 0x02, 0xa8, 0x0b, 0xfb, 0x25, 0xea, + 0x0f, 0xe1, 0xbd, 0xd3, 0x49, 0x63, 0xbc, 0x32, 0x03, 0x23, 0x72, 0x75, 0x41, 0x61, 0xc7, 0x2b, + 0x9c, 0x4a, 0x8e, 0xe7, 0x66, 0x10, 0xc5, 0x08, 0x7d, 0x08, 0x8a, 0xe3, 0x1a, 0x87, 0x43, 0x76, + 0x8f, 0x61, 0x4e, 0x08, 0x0a, 0xdb, 0xcc, 0xab, 0xef, 0xaf, 0xf2, 0x2a, 0xfe, 0x74, 0x82, 0x5d, + 0x2b, 0x0c, 0x48, 0x74, 0x6b, 0xce, 0x3b, 0xee, 0x43, 0x66, 0xcf, 0x84, 0xc1, 0x99, 0x47, 0x82, + 0xa8, 0x48, 0x2d, 0x49, 0xce, 0x29, 0xf9, 0xf2, 0xcf, 0x25, 0xd8, 0x8e, 0x95, 0x92, 0x86, 0x2d, + 0xcf, 0xb7, 0xbf, 0xc2, 0xf2, 0xfe, 0xff, 0x2c, 0xe5, 0xcb, 0x27, 0xfd, 0x7f, 0x21, 0xc8, 0x72, + 0x2c, 0xc0, 0x09, 0x45, 0x5c, 0x84, 0x39, 0xa5, 0xc8, 0x2d, 0x49, 0x96, 0x95, 0x74, 0x4b, 0x92, + 0xd3, 0x0a, 0xb4, 0x24, 0x19, 0x94, 0x4c, 0x4b, 0x92, 0xb3, 0x4a, 0x2e, 0x4c, 0x82, 0x96, 0x24, + 0xe7, 0x95, 0xad, 0x96, 0x24, 0x6f, 0x29, 0x4a, 0x4b, 0x92, 0x15, 0x65, 0xbb, 0xfc, 0x7b, 0x01, + 0x36, 0x55, 0xb6, 0x5d, 0xf4, 0x5d, 0x90, 0x16, 0x17, 0xa3, 0x73, 0xce, 0x18, 0x0b, 0x3c, 0x55, + 0x47, 0x35, 0x10, 0xc9, 0x71, 0x74, 0x41, 0xba, 0x48, 0x06, 0x85, 0x87, 0xa3, 0xc6, 0xb1, 0xe4, + 0x11, 0x2f, 0x9e, 0x3c, 0xfc, 0x32, 0xf4, 0x4b, 0x01, 0xf2, 0xa7, 0xdd, 0x77, 0xde, 0xeb, 0xd4, + 0x02, 0x39, 0xe0, 0xca, 0xfc, 0xc1, 0xf7, 0xe8, 0x64, 0x56, 0xaa, 0xaf, 0xf5, 0xa4, 0x7c, 0xc7, + 0x4f, 0x04, 0xf4, 0x60, 0x5d, 0xfc, 0xa9, 0xb6, 0x00, 0x8e, 0xb5, 0xd5, 0x7f, 0x89, 0x90, 0xdc, + 0xc3, 0x66, 0x80, 0xd1, 0xf7, 0x21, 0x19, 0xbe, 0x20, 0x2e, 0x70, 0xf1, 0x0b, 0x2d, 0xd0, 0x27, + 0x00, 0xf8, 0x78, 0xec, 0xf8, 0x26, 0xf5, 0xc1, 0x7a, 0x9d, 0xbe, 0xf8, 0xcf, 0x59, 0xe9, 0x46, + 0xec, 0x24, 0x0f, 0xca, 0xbe, 0xe9, 0xda, 0xee, 0x64, 0x38, 0x34, 0x7b, 0x43, 0x5c, 0xd6, 0x62, + 0x80, 0xf1, 0xd7, 0x82, 0xf8, 0x9f, 0xbf, 0x16, 0x26, 0x70, 0x3d, 0xd6, 0x55, 0xd8, 0xc6, 0xe9, + 0xdf, 0xc0, 0x89, 0xde, 0x67, 0x97, 0xdc, 0xf1, 0xce, 0x12, 0x9d, 0xbd, 0xa8, 0xba, 0x0c, 0x1b, + 0x75, 0x20, 0x33, 0xf6, 0xbd, 0xb1, 0x17, 0x50, 0x7e, 0x0f, 0xd6, 0x63, 0x8f, 0xfc, 0x7c, 0x56, + 0x82, 0xa7, 0xdc, 0x4a, 0xef, 0x6a, 0x10, 0x21, 0xe8, 0x01, 0xba, 0x0a, 0x49, 0xd6, 0x46, 0x18, + 0x77, 0x88, 0x5a, 0xf8, 0x81, 0xee, 0xc6, 0xb2, 0x86, 0x36, 0x75, 0xb1, 0xb6, 0x7d, 0x32, 0x2b, + 0xe5, 0x58, 0x64, 0xa3, 0xdc, 0x8b, 0xc7, 0x3f, 0x62, 0xe3, 0xf2, 0x5c, 0x80, 0x7c, 0xb5, 0xe7, + 0xf9, 0x8c, 0x14, 0x9a, 0x2e, 0xf1, 0xa7, 0xe7, 0x25, 0xe7, 0xe5, 0x6f, 0x74, 0x68, 0x00, 0xf2, + 0xd8, 0x77, 0x3c, 0xdf, 0x21, 0x53, 0xfe, 0x03, 0xc5, 0xde, 0xc9, 0xac, 0xf4, 0xf8, 0xb2, 0xf9, + 0xfd, 0x94, 0x63, 0x6a, 0x0b, 0xf4, 0x78, 0x92, 0x27, 0x20, 0xab, 0x1f, 0xbb, 0x75, 0xcf, 0xf3, + 0x6d, 0x5a, 0xe1, 0xe8, 0x7b, 0x21, 0x35, 0x84, 0x99, 0x5e, 0x3c, 0xbf, 0xa6, 0xe3, 0x74, 0x70, + 0x0b, 0x72, 0x96, 0x37, 0x1a, 0x99, 0xae, 0x6d, 0x58, 0xde, 0xc4, 0x25, 0xe1, 0x09, 0xb4, 0x2c, + 0x17, 0xd6, 0xa9, 0x0c, 0xd5, 0x20, 0xc7, 0x5b, 0xb2, 0xe1, 0x63, 0xd3, 0xa6, 0xe9, 0xb5, 0x06, + 0x37, 0x67, 0xb9, 0x8d, 0x46, 0x4d, 0x50, 0x03, 0xf2, 0x11, 0x06, 0xa7, 0xe6, 0xe4, 0x3a, 0x20, + 0xd1, 0xc2, 0x21, 0x1f, 0xa3, 0x6f, 0xc1, 0x56, 0x84, 0xe2, 0xb8, 0x47, 0xe6, 0xd0, 0xb1, 0x59, + 0x72, 0xc8, 0x5a, 0x04, 0xae, 0x86, 0xd2, 0x95, 0xbd, 0x40, 0xbe, 0x54, 0x2f, 0x58, 0x74, 0x80, + 0x4d, 0x25, 0x75, 0xe7, 0x37, 0x02, 0xa4, 0xd9, 0x4f, 0x6a, 0xec, 0xf1, 0x9f, 0x81, 0xd4, 0x41, + 0xe7, 0x49, 0x67, 0xff, 0x79, 0x47, 0xd9, 0x40, 0x29, 0x10, 0xd5, 0x8e, 0xae, 0x08, 0x28, 0x0d, + 0xc9, 0x87, 0x7b, 0xfb, 0x55, 0x5d, 0x49, 0xd0, 0x61, 0xed, 0x23, 0xbd, 0xd9, 0x55, 0x44, 0x74, + 0x05, 0xb6, 0x1a, 0xcd, 0x3d, 0xb5, 0xad, 0xea, 0xcd, 0x86, 0x11, 0x0a, 0x65, 0x24, 0x83, 0xa4, + 0xab, 0xed, 0xa6, 0x22, 0x51, 0xa8, 0x46, 0xb3, 0xae, 0xb6, 0xab, 0x7b, 0x4a, 0x12, 0xed, 0xc0, + 0xf6, 0x52, 0x37, 0x12, 0xa7, 0x51, 0x16, 0xe4, 0xc6, 0x81, 0x56, 0xd5, 0xd5, 0xfd, 0x8e, 0xb2, + 0x49, 0xb1, 0xf5, 0x83, 0xa7, 0x7b, 0x4d, 0x05, 0xe8, 0x44, 0x4d, 0xd5, 0xab, 0x9a, 0x56, 0xfd, + 0x48, 0xc9, 0xa0, 0x3c, 0x00, 0x05, 0xed, 0x36, 0x35, 0xb5, 0xd9, 0x55, 0xec, 0x32, 0xed, 0x5a, + 0xa9, 0x3b, 0x3f, 0x82, 0xed, 0x33, 0xbf, 0x64, 0xa0, 0x2d, 0xc8, 0x54, 0x1b, 0x0d, 0x43, 0x6b, + 0x3e, 0xdd, 0x53, 0xeb, 0x55, 0x65, 0x03, 0x21, 0xc8, 0x6b, 0xcd, 0xf6, 0xfe, 0xb3, 0xe6, 0x42, + 0x26, 0xdc, 0x90, 0x3e, 0xff, 0x55, 0x71, 0xe3, 0xce, 0xfe, 0xa9, 0xbb, 0x4d, 0xd8, 0x1e, 0xe8, + 0xae, 0x9f, 0x36, 0x3b, 0x0d, 0xb5, 0xf3, 0x48, 0xd9, 0xa0, 0x1f, 0x5d, 0xbd, 0xfa, 0x88, 0x7e, + 0x88, 0x28, 0x07, 0xe9, 0xfa, 0x7e, 0xbb, 0xad, 0xea, 0x7a, 0xb3, 0xa1, 0x08, 0x74, 0xae, 0x5a, + 0xdb, 0xd7, 0xe8, 0x47, 0x22, 0x04, 0xac, 0xbd, 0xff, 0xe6, 0x6f, 0xc5, 0x8d, 0x37, 0xf3, 0xa2, + 0xf0, 0xe5, 0xbc, 0x28, 0xfc, 0x79, 0x5e, 0x14, 0xfe, 0x3a, 0x2f, 0x0a, 0x5f, 0xfc, 0xbd, 0xb8, + 0xf1, 0x22, 0xc5, 0xc3, 0xd3, 0xdb, 0x64, 0xbf, 0xed, 0xde, 0xff, 0x77, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x99, 0x02, 0x34, 0xf6, 0x95, 0x16, 0x00, 0x00, } diff --git a/pkg/roachpb/data.proto b/pkg/roachpb/data.proto index 35177d39e941..b5d6f4615a1b 100644 --- a/pkg/roachpb/data.proto +++ b/pkg/roachpb/data.proto @@ -194,11 +194,11 @@ message ModifiedSpanTrigger { // StickyBitTrigger indicates that the sticky bit of a range should be changed. // This trigger is used in two cases: // 1. Unsplitting a range. Note that unsplitting and merging are different -// operations. Unsplitting a range will only remove the sticky bit -// associated with the range. +// operations. Unsplitting a range will only update the expiration time +// associated with the range to hlc.Timestamp{}. // 2. Splitting at the start key of a range. In this case, no range is split but -// the sticky bit is still set, so we need to use this trigger instead of -// SplitTrigger. +// the sticky bit is might be updated, so we need to use this trigger instead +// of SplitTrigger. // // Note that the sticky_bit should always be set to the same timestamp used to // update the range descriptor and it's the client's responsibility that the @@ -207,7 +207,7 @@ message StickyBitTrigger { option (gogoproto.equal) = true; // Set to nil to remove a RangeDescriptor's sticky bit. - util.hlc.Timestamp sticky_bit = 1; + util.hlc.Timestamp sticky_bit = 1 [(gogoproto.nullable) = false]; } // InternalCommitTrigger encapsulates all of the internal-only commit triggers. diff --git a/pkg/roachpb/metadata.pb.go b/pkg/roachpb/metadata.pb.go index ba91186687b2..113cdeeb060f 100644 --- a/pkg/roachpb/metadata.pb.go +++ b/pkg/roachpb/metadata.pb.go @@ -37,7 +37,7 @@ type Attributes struct { func (m *Attributes) Reset() { *m = Attributes{} } func (*Attributes) ProtoMessage() {} func (*Attributes) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{0} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{0} } func (m *Attributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -73,7 +73,7 @@ type ReplicationTarget struct { func (m *ReplicationTarget) Reset() { *m = ReplicationTarget{} } func (*ReplicationTarget) ProtoMessage() {} func (*ReplicationTarget) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{1} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{1} } func (m *ReplicationTarget) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -115,7 +115,7 @@ type ReplicaDescriptor struct { func (m *ReplicaDescriptor) Reset() { *m = ReplicaDescriptor{} } func (*ReplicaDescriptor) ProtoMessage() {} func (*ReplicaDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{2} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{2} } func (m *ReplicaDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -152,7 +152,7 @@ func (m *ReplicaIdent) Reset() { *m = ReplicaIdent{} } func (m *ReplicaIdent) String() string { return proto.CompactTextString(m) } func (*ReplicaIdent) ProtoMessage() {} func (*ReplicaIdent) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{3} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{3} } func (m *ReplicaIdent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -277,12 +277,11 @@ type RangeDescriptor struct { Generation *int64 `protobuf:"varint,6,opt,name=generation" json:"generation,omitempty"` // The presence of the sticky_bit indicates that the range should not be // automatically merged by the merge queue with the range to its left. It is - // set during a split operation with the manual flag set and unset during an - // unsplit operation. Note that the unsplit operation is a different - // operation from the merge operation. Unsplit only unsets sticky_bit. It is - // represented using a timestamp to support the possible feature of having an - // expiration policy for manual splits in the future. Additionally, it could - // be useful for users to know when this range was manually split. + // set during a split operation and unset during an unsplit operation. Note + // that the unsplit operation is a different operation from the merge + // operation. Unsplit only unsets sticky_bit. It is represented by a + // timestamp that indicates when it expires. After the expiration time has + // passed, the split is eligible for automatic merging. // // The reason the sticky_bit exists is because when the merge queue is // enabled and a manual split happens, the split ranges would immediately be @@ -290,15 +289,15 @@ type RangeDescriptor struct { // attempted to execute ALTER TABLE/INDEX ... SPLIT AT ... when the merge // queue is enabled. With sticky_bit, users can manually split ranges without // diabling the merge queue. - StickyBit *hlc.Timestamp `protobuf:"bytes,7,opt,name=sticky_bit,json=stickyBit" json:"sticky_bit,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + StickyBit hlc.Timestamp `protobuf:"bytes,7,opt,name=sticky_bit,json=stickyBit" json:"sticky_bit"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *RangeDescriptor) Reset() { *m = RangeDescriptor{} } func (*RangeDescriptor) ProtoMessage() {} func (*RangeDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{4} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{4} } func (m *RangeDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -339,7 +338,7 @@ type Percentiles struct { func (m *Percentiles) Reset() { *m = Percentiles{} } func (*Percentiles) ProtoMessage() {} func (*Percentiles) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{5} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{5} } func (m *Percentiles) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -403,7 +402,7 @@ type StoreCapacity struct { func (m *StoreCapacity) Reset() { *m = StoreCapacity{} } func (*StoreCapacity) ProtoMessage() {} func (*StoreCapacity) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{6} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{6} } func (m *StoreCapacity) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -446,7 +445,7 @@ func (m *NodeDescriptor) Reset() { *m = NodeDescriptor{} } func (m *NodeDescriptor) String() string { return proto.CompactTextString(m) } func (*NodeDescriptor) ProtoMessage() {} func (*NodeDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{7} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{7} } func (m *NodeDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -484,7 +483,7 @@ func (m *LocalityAddress) Reset() { *m = LocalityAddress{} } func (m *LocalityAddress) String() string { return proto.CompactTextString(m) } func (*LocalityAddress) ProtoMessage() {} func (*LocalityAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{8} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{8} } func (m *LocalityAddress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -524,7 +523,7 @@ func (m *StoreDescriptor) Reset() { *m = StoreDescriptor{} } func (m *StoreDescriptor) String() string { return proto.CompactTextString(m) } func (*StoreDescriptor) ProtoMessage() {} func (*StoreDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{9} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{9} } func (m *StoreDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -563,7 +562,7 @@ func (m *StoreDeadReplicas) Reset() { *m = StoreDeadReplicas{} } func (m *StoreDeadReplicas) String() string { return proto.CompactTextString(m) } func (*StoreDeadReplicas) ProtoMessage() {} func (*StoreDeadReplicas) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{10} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{10} } func (m *StoreDeadReplicas) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -599,7 +598,7 @@ type Locality struct { func (m *Locality) Reset() { *m = Locality{} } func (*Locality) ProtoMessage() {} func (*Locality) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{11} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{11} } func (m *Locality) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -637,7 +636,7 @@ type Tier struct { func (m *Tier) Reset() { *m = Tier{} } func (*Tier) ProtoMessage() {} func (*Tier) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{12} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{12} } func (m *Tier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -680,7 +679,7 @@ type Version struct { func (m *Version) Reset() { *m = Version{} } func (*Version) ProtoMessage() {} func (*Version) Descriptor() ([]byte, []int) { - return fileDescriptor_metadata_97cb68c9238668c4, []int{13} + return fileDescriptor_metadata_15080fa20ed9c3bc, []int{13} } func (m *Version) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -826,7 +825,7 @@ func (this *RangeDescriptor) Equal(that interface{}) bool { } else if that1.Generation != nil { return false } - if !this.StickyBit.Equal(that1.StickyBit) { + if !this.StickyBit.Equal(&that1.StickyBit) { return false } return true @@ -994,16 +993,14 @@ func (m *RangeDescriptor) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintMetadata(dAtA, i, uint64(*m.Generation)) } - if m.StickyBit != nil { - dAtA[i] = 0x3a - i++ - i = encodeVarintMetadata(dAtA, i, uint64(m.StickyBit.Size())) - n2, err := m.StickyBit.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n2 + dAtA[i] = 0x3a + i++ + i = encodeVarintMetadata(dAtA, i, uint64(m.StickyBit.Size())) + n2, err := m.StickyBit.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err } + i += n2 return i, nil } @@ -1446,9 +1443,8 @@ func NewPopulatedRangeDescriptor(r randyMetadata, easy bool) *RangeDescriptor { } this.Generation = &v5 } - if r.Intn(10) != 0 { - this.StickyBit = hlc.NewPopulatedTimestamp(r, easy) - } + v6 := hlc.NewPopulatedTimestamp(r, easy) + this.StickyBit = *v6 if !easy && r.Intn(10) != 0 { } return this @@ -1473,9 +1469,9 @@ func randUTF8RuneMetadata(r randyMetadata) rune { return rune(ru + 61) } func randStringMetadata(r randyMetadata) string { - v6 := r.Intn(100) - tmps := make([]rune, v6) - for i := 0; i < v6; i++ { + v7 := r.Intn(100) + tmps := make([]rune, v7) + for i := 0; i < v7; i++ { tmps[i] = randUTF8RuneMetadata(r) } return string(tmps) @@ -1497,11 +1493,11 @@ func randFieldMetadata(dAtA []byte, r randyMetadata, fieldNumber int, wire int) switch wire { case 0: dAtA = encodeVarintPopulateMetadata(dAtA, uint64(key)) - v7 := r.Int63() + v8 := r.Int63() if r.Intn(2) == 0 { - v7 *= -1 + v8 *= -1 } - dAtA = encodeVarintPopulateMetadata(dAtA, uint64(v7)) + dAtA = encodeVarintPopulateMetadata(dAtA, uint64(v8)) case 1: dAtA = encodeVarintPopulateMetadata(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) @@ -1601,10 +1597,8 @@ func (m *RangeDescriptor) Size() (n int) { if m.Generation != nil { n += 1 + sovMetadata(uint64(*m.Generation)) } - if m.StickyBit != nil { - l = m.StickyBit.Size() - n += 1 + l + sovMetadata(uint64(l)) - } + l = m.StickyBit.Size() + n += 1 + l + sovMetadata(uint64(l)) return n } @@ -2349,9 +2343,6 @@ func (m *RangeDescriptor) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.StickyBit == nil { - m.StickyBit = &hlc.Timestamp{} - } if err := m.StickyBit.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } @@ -3796,85 +3787,85 @@ var ( ErrIntOverflowMetadata = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("roachpb/metadata.proto", fileDescriptor_metadata_97cb68c9238668c4) } +func init() { proto.RegisterFile("roachpb/metadata.proto", fileDescriptor_metadata_15080fa20ed9c3bc) } -var fileDescriptor_metadata_97cb68c9238668c4 = []byte{ +var fileDescriptor_metadata_15080fa20ed9c3bc = []byte{ // 1222 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0xcf, 0x6f, 0x1b, 0xc5, - 0x17, 0xcf, 0xc6, 0x76, 0xbc, 0x7e, 0x8d, 0xbf, 0x89, 0x47, 0x5f, 0xca, 0xca, 0x08, 0x3b, 0x59, - 0xa8, 0x54, 0x7e, 0xc8, 0x49, 0x83, 0xac, 0xaa, 0x81, 0x02, 0x71, 0x0b, 0x52, 0x28, 0xad, 0xa2, - 0x4d, 0x28, 0x12, 0x97, 0xd5, 0x78, 0x77, 0x70, 0x96, 0x6e, 0x76, 0xcd, 0xec, 0x38, 0xad, 0xef, - 0x48, 0x1c, 0x10, 0x12, 0x17, 0x24, 0x8e, 0x95, 0x50, 0xff, 0x07, 0xfe, 0x84, 0x8a, 0x13, 0x47, - 0x4e, 0x11, 0x98, 0x0b, 0x67, 0x8e, 0x3d, 0xa1, 0x79, 0x33, 0xb3, 0x5e, 0xbb, 0x2e, 0xd0, 0x22, - 0x71, 0x1b, 0x7f, 0xde, 0xe7, 0x33, 0x7e, 0xf3, 0x7e, 0x2e, 0x9c, 0xe7, 0x29, 0x0d, 0x8e, 0x87, - 0xfd, 0xad, 0x13, 0x26, 0x68, 0x48, 0x05, 0xed, 0x0c, 0x79, 0x2a, 0x52, 0xd2, 0x08, 0xd2, 0xe0, - 0x0e, 0xda, 0x3a, 0x9a, 0xd1, 0x6c, 0x8e, 0x44, 0x14, 0x6f, 0x8d, 0x12, 0xce, 0xb2, 0x34, 0x3e, - 0x65, 0xa1, 0x4f, 0xc3, 0x90, 0x2b, 0x7a, 0xd3, 0x41, 0xdb, 0x71, 0x1c, 0x6c, 0x89, 0xe8, 0x84, - 0x65, 0x82, 0x9e, 0x0c, 0xb5, 0xe5, 0xff, 0x83, 0x74, 0x90, 0xe2, 0x71, 0x4b, 0x9e, 0x14, 0xea, - 0xbe, 0x03, 0xb0, 0x27, 0x04, 0x8f, 0xfa, 0x23, 0xc1, 0x32, 0xf2, 0x1a, 0x54, 0xa8, 0x10, 0x3c, - 0x73, 0xac, 0x8d, 0xd2, 0xc5, 0x5a, 0xef, 0xb9, 0x3f, 0xce, 0xda, 0x8d, 0x31, 0x3d, 0x89, 0x77, - 0x5d, 0x84, 0x5f, 0xff, 0x34, 0x4e, 0xef, 0xba, 0x9e, 0xe2, 0xec, 0x96, 0xbf, 0xbb, 0xdf, 0x5e, - 0x72, 0xbf, 0xb4, 0xa0, 0xe1, 0xb1, 0x61, 0x1c, 0x05, 0x54, 0x44, 0x69, 0x72, 0x44, 0xf9, 0x80, - 0x09, 0x72, 0x09, 0xaa, 0x49, 0x1a, 0x32, 0x3f, 0x0a, 0x1d, 0x6b, 0xc3, 0xba, 0x58, 0xe9, 0x39, - 0x0f, 0xcf, 0xda, 0x4b, 0x93, 0xb3, 0xf6, 0xca, 0xad, 0x34, 0x64, 0xfb, 0xd7, 0x1f, 0xe5, 0x27, - 0x6f, 0x45, 0x12, 0xf7, 0x43, 0xd2, 0x05, 0x3b, 0x13, 0x29, 0x47, 0xcd, 0x32, 0x6a, 0x9a, 0x5a, - 0x53, 0x3d, 0x94, 0x38, 0x8a, 0xcc, 0xd1, 0xab, 0x22, 0x77, 0x3f, 0xdc, 0xb5, 0xa5, 0x17, 0xbf, - 0xdf, 0x6f, 0x5b, 0xee, 0x8f, 0x53, 0x4f, 0xae, 0xb3, 0x2c, 0xe0, 0xd1, 0x50, 0xa4, 0xfc, 0xbf, - 0xf3, 0x84, 0x5c, 0x05, 0xe0, 0xea, 0xef, 0xa5, 0xb0, 0x84, 0xc2, 0x96, 0x16, 0xd6, 0xb4, 0x63, - 0x28, 0x9d, 0xfe, 0xf0, 0x6a, 0x5a, 0xb1, 0x1f, 0xee, 0xae, 0xca, 0x87, 0xfc, 0x70, 0xbf, 0x6d, - 0xe1, 0x63, 0xbe, 0xb2, 0x60, 0xd5, 0xd0, 0x42, 0x96, 0x08, 0xe9, 0x14, 0xa7, 0xc9, 0x20, 0x7f, - 0x48, 0x69, 0xea, 0x94, 0x27, 0x71, 0xe5, 0x94, 0x3e, 0x7a, 0x55, 0xe4, 0xee, 0x87, 0xe4, 0x3a, - 0x54, 0xf5, 0x5f, 0xe0, 0x53, 0xce, 0xed, 0xbc, 0xdc, 0x79, 0xac, 0xa0, 0x3a, 0x8f, 0x45, 0xad, - 0x57, 0x96, 0x77, 0x7b, 0x46, 0xea, 0x7e, 0x5f, 0x82, 0x35, 0xbc, 0xba, 0x10, 0xd8, 0x67, 0x74, - 0xe8, 0x02, 0xd4, 0x32, 0x41, 0xb9, 0xf0, 0xef, 0xb0, 0x31, 0xba, 0xb4, 0xda, 0xb3, 0x1f, 0x9d, - 0xb5, 0xcb, 0xde, 0x0d, 0x36, 0xf6, 0x6c, 0x34, 0xdd, 0x60, 0x63, 0xb2, 0x09, 0x55, 0x96, 0x84, - 0x48, 0x2a, 0xcd, 0x91, 0x56, 0x58, 0x12, 0x4a, 0xca, 0xc7, 0xd0, 0x88, 0x12, 0xc1, 0x78, 0x42, - 0x63, 0x5f, 0x3b, 0x9a, 0x39, 0xe5, 0x8d, 0xd2, 0x53, 0x3e, 0x72, 0xdd, 0x5c, 0xa2, 0x09, 0x19, - 0xf9, 0x00, 0xd6, 0x12, 0x76, 0x4f, 0xf8, 0x85, 0x6c, 0x56, 0x30, 0x9b, 0xae, 0x7e, 0x60, 0xfd, - 0x16, 0xbb, 0x27, 0x9e, 0x90, 0xd1, 0x7a, 0x52, 0xb0, 0x85, 0xa4, 0x05, 0x30, 0x60, 0x09, 0xe3, - 0xd8, 0x1c, 0xce, 0x8a, 0x8c, 0x93, 0x57, 0x40, 0xc8, 0x5b, 0x00, 0x99, 0x88, 0x82, 0x3b, 0x63, - 0xbf, 0x1f, 0x09, 0xa7, 0x8a, 0x29, 0x7a, 0xb1, 0xe0, 0xbd, 0x6c, 0xe7, 0xce, 0x71, 0x1c, 0x74, - 0x8e, 0x4c, 0x3b, 0x7b, 0x35, 0x25, 0xe8, 0x45, 0x62, 0xae, 0x66, 0x1e, 0x58, 0x70, 0xee, 0x80, - 0xf1, 0x80, 0x25, 0x22, 0x8a, 0x59, 0x46, 0xce, 0x43, 0x69, 0x78, 0x69, 0x1b, 0x93, 0x63, 0xe9, - 0xc7, 0x4a, 0x00, 0xf1, 0x9d, 0x2e, 0x06, 0x7f, 0x8a, 0xef, 0x74, 0x11, 0xef, 0x6e, 0x63, 0xbc, - 0xa7, 0x78, 0x57, 0xf1, 0x2f, 0x77, 0x9d, 0xf2, 0x0c, 0x7e, 0x59, 0xf1, 0xaf, 0x6c, 0x63, 0x6c, - 0xa6, 0xf8, 0x95, 0x6d, 0xe2, 0x40, 0x79, 0x78, 0x93, 0xde, 0xc3, 0xd7, 0x1a, 0x03, 0x22, 0x7a, - 0x64, 0x3c, 0x2a, 0x41, 0x1d, 0xbb, 0xe7, 0x1a, 0x1d, 0xd2, 0x20, 0x12, 0x63, 0xb2, 0x01, 0x76, - 0xa0, 0xcf, 0xba, 0x96, 0x94, 0x2a, 0x47, 0x89, 0x0b, 0x35, 0x7a, 0x4a, 0xa3, 0x98, 0xf6, 0x63, - 0x86, 0x9e, 0x1b, 0xca, 0x14, 0x26, 0x17, 0xe0, 0x9c, 0xaa, 0xc8, 0x20, 0x1d, 0x25, 0x42, 0x77, - 0xa0, 0x62, 0x01, 0x1a, 0xae, 0x49, 0x5c, 0xd2, 0x62, 0x46, 0x33, 0x43, 0x2b, 0x17, 0x69, 0x68, - 0x50, 0xb4, 0x6d, 0x68, 0xdc, 0xe5, 0x91, 0x60, 0x99, 0x3f, 0x64, 0xdc, 0xcf, 0x58, 0x90, 0x26, - 0xe1, 0xcc, 0x5b, 0xd7, 0x94, 0xf9, 0x80, 0xf1, 0x43, 0x34, 0x92, 0x03, 0x68, 0xf4, 0xc7, 0x46, - 0x60, 0xba, 0x6e, 0x05, 0x53, 0xda, 0x5a, 0x50, 0x90, 0x85, 0x54, 0x99, 0x1b, 0x51, 0x7e, 0xc0, - 0xb8, 0xae, 0x1f, 0xe2, 0x01, 0x29, 0xf8, 0x60, 0xae, 0xac, 0x3e, 0xc5, 0x95, 0xeb, 0xb9, 0x93, - 0xe6, 0x4e, 0x07, 0xca, 0xa3, 0x8c, 0x85, 0x8e, 0x5d, 0x08, 0x22, 0x22, 0xe4, 0x15, 0xa8, 0xc7, - 0xe9, 0x20, 0x0a, 0x68, 0xec, 0xa3, 0x23, 0x4e, 0xad, 0x40, 0x59, 0xd5, 0xa6, 0x9e, 0xb4, 0x90, - 0x1d, 0x20, 0x9f, 0x8f, 0x18, 0x8f, 0x66, 0xa3, 0x03, 0x85, 0xe8, 0xac, 0x6b, 0x7b, 0x1e, 0x1e, - 0x9d, 0xfc, 0x49, 0x09, 0xfe, 0x27, 0xe7, 0xed, 0xbf, 0x1b, 0xd1, 0x6f, 0x43, 0x55, 0x2e, 0x3d, - 0x96, 0x65, 0x7a, 0xac, 0xb5, 0xe6, 0x7b, 0xe6, 0xa3, 0x7c, 0x3d, 0xee, 0x85, 0x61, 0x3e, 0xd0, - 0xb4, 0x88, 0x5c, 0x31, 0x8b, 0xae, 0xf4, 0x58, 0xc7, 0x99, 0x58, 0x4e, 0xd7, 0xa2, 0x16, 0x2b, - 0x05, 0xb9, 0x0a, 0x76, 0x9c, 0x06, 0x34, 0x96, 0xb5, 0x5a, 0x46, 0xf5, 0x0b, 0x0b, 0xd4, 0x1f, - 0x6a, 0x8a, 0x29, 0x64, 0x23, 0x21, 0xef, 0x43, 0xfd, 0x90, 0xf1, 0x53, 0xc6, 0x6f, 0x33, 0x9e, - 0xc9, 0x99, 0x50, 0xc1, 0x3b, 0x9a, 0x0b, 0xee, 0xd0, 0x0c, 0x7d, 0xc5, 0xac, 0x8c, 0x6c, 0x42, - 0xad, 0x3f, 0x8a, 0xe2, 0xd0, 0x17, 0x74, 0x80, 0x45, 0x56, 0x33, 0x7f, 0x85, 0xf0, 0x11, 0x1d, - 0x90, 0x97, 0xe4, 0x6c, 0xa1, 0x5c, 0xc8, 0x2f, 0x04, 0x35, 0x5b, 0xf2, 0xa6, 0xd1, 0xf8, 0x9e, - 0x20, 0x87, 0xb0, 0x6e, 0x7c, 0xf3, 0x4d, 0x48, 0x6d, 0x1c, 0xa2, 0xee, 0x5f, 0x3c, 0x6b, 0x4f, - 0x31, 0x4d, 0xdd, 0xc6, 0xb3, 0xb0, 0xfb, 0xad, 0x05, 0x6b, 0x73, 0xd4, 0x62, 0xca, 0xac, 0x67, - 0x49, 0x59, 0x4f, 0x56, 0xa7, 0x76, 0x54, 0x44, 0x8c, 0xeb, 0xc4, 0x3f, 0xbf, 0xc0, 0xcb, 0xa3, - 0x88, 0xf1, 0x69, 0xd9, 0x2a, 0x8d, 0xc4, 0xdc, 0x2f, 0x96, 0x61, 0x0d, 0x27, 0xcf, 0xec, 0x1e, - 0xcb, 0xb7, 0xbd, 0xf5, 0xcf, 0xb7, 0x7d, 0x5e, 0x41, 0xcb, 0x4f, 0x5d, 0x41, 0x6f, 0x42, 0x59, - 0x96, 0xb1, 0xae, 0xbd, 0xcd, 0x05, 0xca, 0xd9, 0x06, 0x31, 0x4d, 0x2a, 0x45, 0xa4, 0x57, 0x18, - 0x95, 0xaa, 0xfc, 0x36, 0x16, 0x5c, 0x30, 0x33, 0x5e, 0xe7, 0x87, 0xa9, 0xfb, 0xb5, 0x05, 0x0d, - 0x1d, 0x06, 0x1a, 0xe6, 0x6b, 0xef, 0x19, 0x03, 0xb1, 0x07, 0x76, 0xbe, 0x7d, 0x97, 0xb1, 0x70, - 0xda, 0x4f, 0xde, 0xbe, 0xf8, 0x2d, 0x63, 0xfc, 0x31, 0x32, 0xf7, 0x3d, 0xb0, 0x4d, 0xb5, 0x90, - 0x37, 0xa0, 0x22, 0xb3, 0xab, 0x3e, 0x41, 0xff, 0x36, 0xbd, 0x8a, 0xab, 0x47, 0xcb, 0xbb, 0x50, - 0x96, 0x26, 0xb9, 0x97, 0xe4, 0x77, 0x83, 0x55, 0x68, 0x0a, 0x09, 0x90, 0x26, 0x54, 0x4e, 0x69, - 0x3c, 0x52, 0xfb, 0xc3, 0x58, 0x14, 0xa4, 0x6f, 0x78, 0x60, 0x41, 0xd5, 0x34, 0xd8, 0xab, 0x50, - 0x3b, 0xa1, 0x9f, 0xa5, 0xdc, 0x3f, 0xa5, 0xb1, 0x8e, 0x47, 0x5d, 0xc7, 0xa3, 0x72, 0x53, 0x1a, - 0x3c, 0x1b, 0xed, 0xb7, 0x69, 0x8c, 0xdc, 0x28, 0xd1, 0xdc, 0xe5, 0x39, 0xae, 0x34, 0x78, 0x36, - 0xda, 0x25, 0xb7, 0x09, 0x95, 0x21, 0x15, 0xc1, 0xf1, 0xcc, 0x7e, 0x52, 0x90, 0xdc, 0x83, 0xa3, - 0x24, 0x13, 0xb8, 0xe4, 0x8a, 0x7b, 0x29, 0x47, 0x95, 0x9f, 0xbd, 0xcd, 0x87, 0xbf, 0xb6, 0x96, - 0x1e, 0x4e, 0x5a, 0xd6, 0x4f, 0x93, 0x96, 0xf5, 0xf3, 0xa4, 0x65, 0xfd, 0x32, 0x69, 0x59, 0xdf, - 0xfc, 0xd6, 0x5a, 0xfa, 0xa4, 0xaa, 0x83, 0xf4, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x55, - 0x8a, 0x71, 0x50, 0x0c, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xce, 0xc6, 0x76, 0xbc, 0x7e, 0x8d, 0x49, 0x3c, 0x82, 0xb2, 0x32, 0xc2, 0x4e, 0x16, 0x2a, + 0x95, 0x1f, 0x72, 0xd2, 0x20, 0xab, 0x6a, 0x50, 0x81, 0xb8, 0x05, 0x29, 0x94, 0x56, 0xd1, 0x26, + 0x14, 0x89, 0xcb, 0x6a, 0xbc, 0x3b, 0x38, 0x4b, 0x37, 0xbb, 0x66, 0x76, 0x9c, 0xd6, 0x77, 0x24, + 0x0e, 0x08, 0x89, 0x0b, 0x12, 0xc7, 0x5e, 0x7a, 0xe0, 0x3f, 0xe0, 0x4f, 0xa8, 0x38, 0x71, 0xe4, + 0x14, 0x81, 0xb9, 0x70, 0xe6, 0xd8, 0x13, 0x9a, 0x37, 0x33, 0xeb, 0xb5, 0xeb, 0x02, 0x2d, 0x12, + 0xb7, 0xf1, 0xf7, 0xbe, 0x6f, 0xfc, 0xe6, 0xfd, 0x5c, 0x38, 0xcf, 0x53, 0x1a, 0x1c, 0x0f, 0xfb, + 0x5b, 0x27, 0x4c, 0xd0, 0x90, 0x0a, 0xda, 0x19, 0xf2, 0x54, 0xa4, 0xa4, 0x11, 0xa4, 0xc1, 0x1d, + 0xb4, 0x75, 0x34, 0xa3, 0xd9, 0x1c, 0x89, 0x28, 0xde, 0x1a, 0x25, 0x9c, 0x65, 0x69, 0x7c, 0xca, + 0x42, 0x9f, 0x86, 0x21, 0x57, 0xf4, 0xa6, 0x83, 0xb6, 0xe3, 0x38, 0xd8, 0x12, 0xd1, 0x09, 0xcb, + 0x04, 0x3d, 0x19, 0x6a, 0xcb, 0xf3, 0x83, 0x74, 0x90, 0xe2, 0x71, 0x4b, 0x9e, 0x14, 0xea, 0xbe, + 0x0b, 0xb0, 0x27, 0x04, 0x8f, 0xfa, 0x23, 0xc1, 0x32, 0xf2, 0x06, 0x54, 0xa8, 0x10, 0x3c, 0x73, + 0xac, 0x8d, 0xd2, 0xc5, 0x5a, 0xef, 0x85, 0x3f, 0xcf, 0xda, 0x8d, 0x31, 0x3d, 0x89, 0x77, 0x5d, + 0x84, 0xdf, 0xfc, 0x2c, 0x4e, 0xef, 0xba, 0x9e, 0xe2, 0xec, 0x96, 0xbf, 0xbf, 0xdf, 0x5e, 0x72, + 0xbf, 0xb2, 0xa0, 0xe1, 0xb1, 0x61, 0x1c, 0x05, 0x54, 0x44, 0x69, 0x72, 0x44, 0xf9, 0x80, 0x09, + 0x72, 0x09, 0xaa, 0x49, 0x1a, 0x32, 0x3f, 0x0a, 0x1d, 0x6b, 0xc3, 0xba, 0x58, 0xe9, 0x39, 0x0f, + 0xcf, 0xda, 0x4b, 0x93, 0xb3, 0xf6, 0xca, 0xad, 0x34, 0x64, 0xfb, 0xd7, 0x1f, 0xe5, 0x27, 0x6f, + 0x45, 0x12, 0xf7, 0x43, 0xd2, 0x05, 0x3b, 0x13, 0x29, 0x47, 0xcd, 0x32, 0x6a, 0x9a, 0x5a, 0x53, + 0x3d, 0x94, 0x38, 0x8a, 0xcc, 0xd1, 0xab, 0x22, 0x77, 0x3f, 0xdc, 0xb5, 0xa5, 0x17, 0x7f, 0xdc, + 0x6f, 0x5b, 0xee, 0x4f, 0x53, 0x4f, 0xae, 0xb3, 0x2c, 0xe0, 0xd1, 0x50, 0xa4, 0xfc, 0xff, 0xf3, + 0x84, 0x5c, 0x05, 0xe0, 0xea, 0xef, 0xa5, 0xb0, 0x84, 0xc2, 0x96, 0x16, 0xd6, 0xb4, 0x63, 0x28, + 0x9d, 0xfe, 0xf0, 0x6a, 0x5a, 0xb1, 0x1f, 0xee, 0xae, 0xca, 0x87, 0xfc, 0x78, 0xbf, 0x6d, 0xe1, + 0x63, 0xbe, 0xb6, 0x60, 0xd5, 0xd0, 0x42, 0x96, 0x08, 0xe9, 0x14, 0xa7, 0xc9, 0x20, 0x7f, 0x48, + 0x69, 0xea, 0x94, 0x27, 0x71, 0xe5, 0x94, 0x3e, 0x7a, 0x55, 0xe4, 0xee, 0x87, 0xe4, 0x3a, 0x54, + 0xf5, 0x5f, 0xe0, 0x53, 0xce, 0xed, 0xbc, 0xda, 0x79, 0xac, 0xa0, 0x3a, 0x8f, 0x45, 0xad, 0x57, + 0x96, 0x77, 0x7b, 0x46, 0xea, 0xfe, 0x50, 0x82, 0x35, 0xbc, 0xba, 0x10, 0xd8, 0x67, 0x74, 0xe8, + 0x02, 0xd4, 0x32, 0x41, 0xb9, 0xf0, 0xef, 0xb0, 0x31, 0xba, 0xb4, 0xda, 0xb3, 0x1f, 0x9d, 0xb5, + 0xcb, 0xde, 0x0d, 0x36, 0xf6, 0x6c, 0x34, 0xdd, 0x60, 0x63, 0xb2, 0x09, 0x55, 0x96, 0x84, 0x48, + 0x2a, 0xcd, 0x91, 0x56, 0x58, 0x12, 0x4a, 0xca, 0x27, 0xd0, 0x88, 0x12, 0xc1, 0x78, 0x42, 0x63, + 0x5f, 0x3b, 0x9a, 0x39, 0xe5, 0x8d, 0xd2, 0x53, 0x3e, 0x72, 0xdd, 0x5c, 0xa2, 0x09, 0x19, 0xf9, + 0x10, 0xd6, 0x12, 0x76, 0x4f, 0xf8, 0x85, 0x6c, 0x56, 0x30, 0x9b, 0xae, 0x7e, 0x60, 0xfd, 0x16, + 0xbb, 0x27, 0x9e, 0x90, 0xd1, 0x7a, 0x52, 0xb0, 0x85, 0xa4, 0x05, 0x30, 0x60, 0x09, 0xe3, 0xd8, + 0x1c, 0xce, 0x8a, 0x8c, 0x93, 0x57, 0x40, 0x48, 0x0f, 0x20, 0x13, 0x51, 0x70, 0x67, 0xec, 0xf7, + 0x23, 0xe1, 0x54, 0x31, 0x45, 0x2f, 0x17, 0xbc, 0x97, 0xed, 0xdc, 0x39, 0x8e, 0x83, 0xce, 0x91, + 0x69, 0x67, 0xed, 0x76, 0x4d, 0xc9, 0x7a, 0x91, 0x98, 0xab, 0x9c, 0x07, 0x16, 0x9c, 0x3b, 0x60, + 0x3c, 0x60, 0x89, 0x88, 0x62, 0x96, 0x91, 0xf3, 0x50, 0x1a, 0x5e, 0xda, 0xc6, 0x14, 0x59, 0x5a, + 0x2b, 0x01, 0xc4, 0x77, 0xba, 0x98, 0x82, 0x29, 0xbe, 0xd3, 0x45, 0xbc, 0xbb, 0x8d, 0x51, 0x9f, + 0xe2, 0x5d, 0xc5, 0xbf, 0xdc, 0x75, 0xca, 0x33, 0xf8, 0x65, 0xc5, 0xbf, 0xb2, 0x8d, 0x11, 0x9a, + 0xe2, 0x57, 0xb6, 0x89, 0x03, 0xe5, 0xe1, 0x4d, 0x7a, 0x0f, 0xdf, 0x6c, 0x0c, 0x88, 0xe8, 0xc1, + 0xf1, 0xa8, 0x04, 0x75, 0xec, 0xa1, 0x6b, 0x74, 0x48, 0x83, 0x48, 0x8c, 0xc9, 0x06, 0xd8, 0x81, + 0x3e, 0xeb, 0x8a, 0x52, 0xaa, 0x1c, 0x25, 0x2e, 0xd4, 0xe8, 0x29, 0x8d, 0x62, 0xda, 0x8f, 0x19, + 0x7a, 0x6e, 0x28, 0x53, 0x98, 0x5c, 0x80, 0x73, 0xaa, 0x2e, 0x83, 0x74, 0x94, 0x08, 0xdd, 0x87, + 0x8a, 0x05, 0x68, 0xb8, 0x26, 0x71, 0x49, 0x8b, 0x19, 0xcd, 0x0c, 0xad, 0x5c, 0xa4, 0xa1, 0x41, + 0xd1, 0xb6, 0xa1, 0x71, 0x97, 0x47, 0x82, 0x65, 0xfe, 0x90, 0x71, 0x3f, 0x63, 0x41, 0x9a, 0x84, + 0x33, 0x6f, 0x5d, 0x53, 0xe6, 0x03, 0xc6, 0x0f, 0xd1, 0x48, 0x0e, 0xa0, 0xd1, 0x1f, 0x1b, 0x81, + 0xe9, 0xbd, 0x15, 0x4c, 0x6c, 0x6b, 0x41, 0x59, 0x16, 0x52, 0x65, 0x6e, 0x44, 0xf9, 0x01, 0xe3, + 0xba, 0x8a, 0x88, 0x07, 0xa4, 0xe0, 0x83, 0xb9, 0xb2, 0xfa, 0x14, 0x57, 0xae, 0xe7, 0x4e, 0x9a, + 0x3b, 0x1d, 0x28, 0x8f, 0x32, 0x16, 0x3a, 0x76, 0x21, 0x88, 0x88, 0x90, 0xd7, 0xa0, 0x1e, 0xa7, + 0x83, 0x28, 0xa0, 0xb1, 0x8f, 0x8e, 0x38, 0xb5, 0x02, 0x65, 0x55, 0x9b, 0x7a, 0xd2, 0x42, 0x76, + 0x80, 0x7c, 0x31, 0x62, 0x3c, 0x9a, 0x8d, 0x0e, 0x14, 0xa2, 0xb3, 0xae, 0xed, 0x79, 0x78, 0x74, + 0xf2, 0x27, 0x25, 0x78, 0x4e, 0x4e, 0xdd, 0xff, 0x36, 0xa8, 0xdf, 0x81, 0xaa, 0x5c, 0x7d, 0x2c, + 0xcb, 0xf4, 0x70, 0x6b, 0xcd, 0x77, 0xce, 0xc7, 0xf9, 0x92, 0xdc, 0x0b, 0xc3, 0x7c, 0xac, 0x69, + 0x11, 0xb9, 0x62, 0xd6, 0x5d, 0xe9, 0xb1, 0xbe, 0x33, 0xb1, 0x9c, 0x2e, 0x47, 0x2d, 0x56, 0x0a, + 0x72, 0x15, 0xec, 0x38, 0x0d, 0x68, 0x2c, 0x6b, 0xb5, 0x8c, 0xea, 0x97, 0x16, 0xa8, 0x3f, 0xd2, + 0x14, 0x53, 0xc8, 0x46, 0x42, 0x3e, 0x80, 0xfa, 0x21, 0xe3, 0xa7, 0x8c, 0xdf, 0x66, 0x3c, 0x93, + 0x93, 0xa1, 0x82, 0x77, 0x34, 0x17, 0xdc, 0xa1, 0x19, 0xfa, 0x8a, 0x59, 0x19, 0xd9, 0x84, 0x5a, + 0x7f, 0x14, 0xc5, 0xa1, 0x2f, 0xe8, 0x00, 0x8b, 0xac, 0x66, 0xfe, 0x0a, 0xe1, 0x23, 0x3a, 0x20, + 0xaf, 0xc8, 0x09, 0x43, 0xb9, 0x90, 0xdf, 0x09, 0x6a, 0xc2, 0x94, 0xa6, 0x23, 0x04, 0xf1, 0x3d, + 0x41, 0x0e, 0x61, 0xdd, 0xf8, 0xe6, 0x9b, 0x90, 0xda, 0x38, 0x4a, 0xdd, 0xbf, 0x79, 0xd6, 0x9e, + 0x62, 0x9a, 0xba, 0x8d, 0x67, 0x61, 0xf7, 0x3b, 0x0b, 0xd6, 0xe6, 0xa8, 0xc5, 0x94, 0x59, 0xcf, + 0x92, 0xb2, 0x9e, 0xac, 0x4e, 0xed, 0xa8, 0x88, 0x18, 0xd7, 0x89, 0x7f, 0x71, 0x81, 0x97, 0x47, + 0x11, 0xe3, 0xd3, 0xb2, 0x55, 0x1a, 0x89, 0xb9, 0x5f, 0x2e, 0xc3, 0x1a, 0x4e, 0x9e, 0xd9, 0x6d, + 0x96, 0xef, 0x7c, 0xeb, 0xdf, 0xef, 0xfc, 0xbc, 0x82, 0x96, 0x9f, 0xba, 0x82, 0xde, 0x86, 0xb2, + 0x2c, 0x63, 0x5d, 0x7b, 0x9b, 0x0b, 0x94, 0xb3, 0x0d, 0x62, 0x9a, 0x54, 0x8a, 0x48, 0xaf, 0x30, + 0x2a, 0x55, 0xf9, 0x6d, 0x2c, 0xb8, 0x60, 0x66, 0xbc, 0xce, 0x0f, 0x53, 0xf7, 0x1b, 0x0b, 0x1a, + 0x3a, 0x0c, 0x34, 0xcc, 0x97, 0xdf, 0x33, 0x06, 0x62, 0x0f, 0xec, 0x7c, 0x07, 0x2f, 0x63, 0xe1, + 0xb4, 0x9f, 0xbc, 0x83, 0xf1, 0x8b, 0xc6, 0xf8, 0x63, 0x64, 0xee, 0xfb, 0x60, 0x9b, 0x6a, 0x21, + 0x6f, 0x41, 0x45, 0x66, 0x57, 0x7d, 0x88, 0xfe, 0x63, 0x7a, 0x15, 0x57, 0x8f, 0x96, 0xf7, 0xa0, + 0x2c, 0x4d, 0x72, 0x2f, 0xc9, 0xaf, 0x07, 0xab, 0xd0, 0x14, 0x12, 0x20, 0x4d, 0xa8, 0x9c, 0xd2, + 0x78, 0xa4, 0xf6, 0x87, 0xb1, 0x28, 0x48, 0xdf, 0xf0, 0xc0, 0x82, 0xaa, 0x69, 0xb0, 0xd7, 0xa1, + 0x76, 0x42, 0x3f, 0x4f, 0xb9, 0x7f, 0x4a, 0x63, 0x1d, 0x8f, 0xba, 0x8e, 0x47, 0xe5, 0xa6, 0x34, + 0x78, 0x36, 0xda, 0x6f, 0xd3, 0x18, 0xb9, 0x51, 0xa2, 0xb9, 0xcb, 0x73, 0x5c, 0x69, 0xf0, 0x6c, + 0xb4, 0x4b, 0x6e, 0x13, 0x2a, 0x43, 0x2a, 0x82, 0xe3, 0x99, 0xfd, 0xa4, 0x20, 0xb9, 0x07, 0x47, + 0x49, 0x26, 0x70, 0xc9, 0x15, 0xf7, 0x52, 0x8e, 0x2a, 0x3f, 0x7b, 0x9b, 0x0f, 0x7f, 0x6b, 0x2d, + 0x3d, 0x9c, 0xb4, 0xac, 0x9f, 0x27, 0x2d, 0xeb, 0x97, 0x49, 0xcb, 0xfa, 0x75, 0xd2, 0xb2, 0xbe, + 0xfd, 0xbd, 0xb5, 0xf4, 0x69, 0x55, 0x07, 0xe9, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xde, 0xc0, + 0x1f, 0x40, 0x56, 0x0c, 0x00, 0x00, } diff --git a/pkg/roachpb/metadata.proto b/pkg/roachpb/metadata.proto index 16348774a593..d3533ba7402e 100644 --- a/pkg/roachpb/metadata.proto +++ b/pkg/roachpb/metadata.proto @@ -173,12 +173,11 @@ message RangeDescriptor { optional int64 generation = 6; // The presence of the sticky_bit indicates that the range should not be // automatically merged by the merge queue with the range to its left. It is - // set during a split operation with the manual flag set and unset during an - // unsplit operation. Note that the unsplit operation is a different - // operation from the merge operation. Unsplit only unsets sticky_bit. It is - // represented using a timestamp to support the possible feature of having an - // expiration policy for manual splits in the future. Additionally, it could - // be useful for users to know when this range was manually split. + // set during a split operation and unset during an unsplit operation. Note + // that the unsplit operation is a different operation from the merge + // operation. Unsplit only unsets sticky_bit. It is represented by a + // timestamp that indicates when it expires. After the expiration time has + // passed, the split is eligible for automatic merging. // // The reason the sticky_bit exists is because when the merge queue is // enabled and a manual split happens, the split ranges would immediately be @@ -186,7 +185,7 @@ message RangeDescriptor { // attempted to execute ALTER TABLE/INDEX ... SPLIT AT ... when the merge // queue is enabled. With sticky_bit, users can manually split ranges without // diabling the merge queue. - optional util.hlc.Timestamp sticky_bit = 7; + optional util.hlc.Timestamp sticky_bit = 7 [(gogoproto.nullable) = false]; } // Percentiles contains a handful of hard-coded percentiles meant to summarize diff --git a/pkg/server/intent_test.go b/pkg/server/intent_test.go index 46a1008ad1dd..613295a4c12e 100644 --- a/pkg/server/intent_test.go +++ b/pkg/server/intent_test.go @@ -25,6 +25,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/storage" "github.com/cockroachdb/cockroach/pkg/storage/storagebase" "github.com/cockroachdb/cockroach/pkg/testutils/serverutils" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/leaktest" "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/randutil" @@ -117,7 +118,7 @@ func TestIntentResolution(t *testing.T) { Knobs: base.TestingKnobs{Store: &storeKnobs}}) defer s.Stopper().Stop(context.TODO()) // Split the Range. This should not have any asynchronous intents. - if err := kvDB.AdminSplit(context.TODO(), splitKey, splitKey, true /* manual */); err != nil { + if err := kvDB.AdminSplit(context.TODO(), splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } diff --git a/pkg/server/node_test.go b/pkg/server/node_test.go index 5c7c5206fffb..24f0d8035981 100644 --- a/pkg/server/node_test.go +++ b/pkg/server/node_test.go @@ -690,7 +690,7 @@ func TestNodeStatusWritten(t *testing.T) { // ======================================== // Split the range. - if err := ts.db.AdminSplit(context.TODO(), splitKey, splitKey, true /* manual */); err != nil { + if err := ts.db.AdminSplit(context.TODO(), splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } diff --git a/pkg/server/server_test.go b/pkg/server/server_test.go index 6aec8719614f..4d3136873917 100644 --- a/pkg/server/server_test.go +++ b/pkg/server/server_test.go @@ -317,7 +317,7 @@ func TestMultiRangeScanDeleteRange(t *testing.T) { ts := s.(*TestServer) tds := db.NonTransactionalSender() - if err := ts.node.storeCfg.DB.AdminSplit(ctx, "m", "m", true /* manual */); err != nil { + if err := ts.node.storeCfg.DB.AdminSplit(ctx, "m", "m", hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } writes := []roachpb.Key{roachpb.Key("a"), roachpb.Key("z")} @@ -414,7 +414,7 @@ func TestMultiRangeScanWithMaxResults(t *testing.T) { tds := db.NonTransactionalSender() for _, sk := range tc.splitKeys { - if err := ts.node.storeCfg.DB.AdminSplit(ctx, sk, sk, true /* manual */); err != nil { + if err := ts.node.storeCfg.DB.AdminSplit(ctx, sk, sk, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } } diff --git a/pkg/server/testserver.go b/pkg/server/testserver.go index 847fd951e2af..d962d179e155 100644 --- a/pkg/server/testserver.go +++ b/pkg/server/testserver.go @@ -636,8 +636,8 @@ func (ts *TestServer) SplitRange( RequestHeader: roachpb.RequestHeader{ Key: splitKey, }, - SplitKey: splitKey, - Manual: true, + SplitKey: splitKey, + ExpirationTime: hlc.MaxTimestamp, } _, pErr := client.SendWrapped(ctx, ts.DB().NonTransactionalSender(), &splitReq) if pErr != nil { diff --git a/pkg/sql/backfill.go b/pkg/sql/backfill.go index 6dca66de3b60..0ba6384c3073 100644 --- a/pkg/sql/backfill.go +++ b/pkg/sql/backfill.go @@ -1076,7 +1076,7 @@ func (sc *SchemaChanger) backfillIndexes( sc.execCfg.Gossip.DisableMerges(disableCtx, []uint32{uint32(sc.tableID)}) for _, span := range addingSpans { - if err := sc.db.AdminSplit(ctx, span.Key, span.Key, false /* manual */); err != nil { + if err := sc.db.AdminSplit(ctx, span.Key, span.Key, hlc.Timestamp{} /* expirationTime */); err != nil { return err } } diff --git a/pkg/sql/crdb_internal.go b/pkg/sql/crdb_internal.go index 4feef915813f..8a668ffe8849 100644 --- a/pkg/sql/crdb_internal.go +++ b/pkg/sql/crdb_internal.go @@ -39,6 +39,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/sqlbase" "github.com/cockroachdb/cockroach/pkg/sql/types" "github.com/cockroachdb/cockroach/pkg/storage/storagepb" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/json" "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/protoutil" @@ -1673,7 +1674,7 @@ CREATE VIEW crdb_internal.ranges AS SELECT table_name, index_name, replicas, - manual_split_time, + split_enforced_until, crdb_internal.lease_holder(start_key) AS lease_holder FROM crdb_internal.ranges_no_leases `, @@ -1687,7 +1688,7 @@ FROM crdb_internal.ranges_no_leases {Name: "table_name", Typ: types.String}, {Name: "index_name", Typ: types.String}, {Name: "replicas", Typ: types.Int2Vector}, - {Name: "manual_split_time", Typ: types.Timestamp}, + {Name: "split_enforced_until", Typ: types.Timestamp}, {Name: "lease_holder", Typ: types.Int}, }, } @@ -1700,16 +1701,16 @@ var crdbInternalRangesNoLeasesTable = virtualSchemaTable{ comment: `range metadata without leaseholder details (KV join; expensive!)`, schema: ` CREATE TABLE crdb_internal.ranges_no_leases ( - range_id INT NOT NULL, - start_key BYTES NOT NULL, - start_pretty STRING NOT NULL, - end_key BYTES NOT NULL, - end_pretty STRING NOT NULL, - database_name STRING NOT NULL, - table_name STRING NOT NULL, - index_name STRING NOT NULL, - replicas INT[] NOT NULL, - manual_split_time TIMESTAMP + range_id INT NOT NULL, + start_key BYTES NOT NULL, + start_pretty STRING NOT NULL, + end_key BYTES NOT NULL, + end_pretty STRING NOT NULL, + database_name STRING NOT NULL, + table_name STRING NOT NULL, + index_name STRING NOT NULL, + replicas INT[] NOT NULL, + split_enforced_until TIMESTAMP ) `, generator: func(ctx context.Context, p *planner, _ *DatabaseDescriptor) (virtualTableGenerator, error) { @@ -1788,9 +1789,9 @@ CREATE TABLE crdb_internal.ranges_no_leases ( } } - manualSplitTime := tree.DNull - if desc.StickyBit != nil { - manualSplitTime = tree.TimestampToInexactDTimestamp(*desc.StickyBit) + splitEnforcedUntil := tree.DNull + if (desc.StickyBit != hlc.Timestamp{}) { + splitEnforcedUntil = tree.TimestampToInexactDTimestamp(desc.StickyBit) } return tree.Datums{ @@ -1803,7 +1804,7 @@ CREATE TABLE crdb_internal.ranges_no_leases ( tree.NewDString(tableName), tree.NewDString(indexName), arr, - manualSplitTime, + splitEnforcedUntil, }, nil }, nil }, diff --git a/pkg/sql/logictest/testdata/logic_test/crdb_internal b/pkg/sql/logictest/testdata/logic_test/crdb_internal index 784249ccdd5a..de1d37539717 100644 --- a/pkg/sql/logictest/testdata/logic_test/crdb_internal +++ b/pkg/sql/logictest/testdata/logic_test/crdb_internal @@ -210,12 +210,12 @@ zone_id zone_name cli_specifier config_yaml config_sql config_protobuf query ITTTTTTTTTT colnames SELECT * FROM crdb_internal.ranges WHERE range_id < 0 ---- -range_id start_key start_pretty end_key end_pretty database_name table_name index_name replicas manual_split_time lease_holder +range_id start_key start_pretty end_key end_pretty database_name table_name index_name replicas split_enforced_until lease_holder query ITTTTTTTTT colnames SELECT * FROM crdb_internal.ranges_no_leases WHERE range_id < 0 ---- -range_id start_key start_pretty end_key end_pretty database_name table_name index_name replicas manual_split_time +range_id start_key start_pretty end_key end_pretty database_name table_name index_name replicas split_enforced_until statement ok INSERT INTO system.zones (id, config) VALUES @@ -330,30 +330,30 @@ CREATE TABLE foo (a INT PRIMARY KEY); INSERT INTO foo VALUES(1) statement ok ALTER TABLE foo SPLIT AT VALUES(2) -query TT colnames -SELECT start_pretty, end_pretty FROM crdb_internal.ranges WHERE manual_split_time IS NOT NULL +query TTT colnames +SELECT start_pretty, end_pretty, split_enforced_until FROM crdb_internal.ranges WHERE split_enforced_until IS NOT NULL ---- -start_pretty end_pretty -/Table/56/1/2 /Max +start_pretty end_pretty split_enforced_until +/Table/56/1/2 /Max 2262-04-11 23:47:16.854776 +0000 +0000 -query TT colnames -SELECT start_pretty, end_pretty FROM crdb_internal.ranges_no_leases WHERE manual_split_time IS NOT NULL +query TTT colnames +SELECT start_pretty, end_pretty, split_enforced_until FROM crdb_internal.ranges_no_leases WHERE split_enforced_until IS NOT NULL AND table_name = 'foo' ---- -start_pretty end_pretty -/Table/56/1/2 /Max +start_pretty end_pretty split_enforced_until +/Table/56/1/2 /Max 2262-04-11 23:47:16.854776 +0000 +0000 statement ok ALTER TABLE foo UNSPLIT AT VALUES(2) query TT colnames -SELECT start_pretty, end_pretty FROM crdb_internal.ranges WHERE manual_split_time IS NOT NULL +SELECT start_pretty, end_pretty FROM crdb_internal.ranges WHERE split_enforced_until IS NOT NULL AND table_name = 'foo' ---- -start_pretty end_pretty +start_pretty end_pretty query TT colnames -SELECT start_pretty, end_pretty FROM crdb_internal.ranges_no_leases WHERE manual_split_time IS NOT NULL +SELECT start_pretty, end_pretty FROM crdb_internal.ranges_no_leases WHERE split_enforced_until IS NOT NULL AND table_name = 'foo' ---- -start_pretty end_pretty +start_pretty end_pretty # Make sure that the cluster id isn't unset. query B diff --git a/pkg/sql/split.go b/pkg/sql/split.go index bcc1d56b2b65..4ca41bc4958f 100644 --- a/pkg/sql/split.go +++ b/pkg/sql/split.go @@ -22,6 +22,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/sqlbase" "github.com/cockroachdb/cockroach/pkg/sql/types" "github.com/cockroachdb/cockroach/pkg/storage/storagebase" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/pkg/errors" ) @@ -129,7 +130,11 @@ func (n *splitNode) Next(params runParams) (bool, error) { // Don't set the manual flag if the cluster is not up-to-date. stickyBitEnabled := params.EvalContext().Settings.Version.IsActive(cluster.VersionStickyBit) - if err := params.extendedEvalCtx.ExecCfg.DB.AdminSplit(params.ctx, rowKey, rowKey, stickyBitEnabled); err != nil { + expirationTime := hlc.Timestamp{} + if stickyBitEnabled { + expirationTime = hlc.MaxTimestamp + } + if err := params.extendedEvalCtx.ExecCfg.DB.AdminSplit(params.ctx, rowKey, rowKey, expirationTime); err != nil { return false, err } diff --git a/pkg/sql/unsplit_test.go b/pkg/sql/unsplit_test.go index afe4715e683f..1a5d27a27a8e 100644 --- a/pkg/sql/unsplit_test.go +++ b/pkg/sql/unsplit_test.go @@ -22,6 +22,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/sql/tests" "github.com/cockroachdb/cockroach/pkg/testutils/serverutils" "github.com/cockroachdb/cockroach/pkg/testutils/sqlutils" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/leaktest" ) @@ -143,8 +144,8 @@ func TestUnsplitAt(t *testing.T) { if err != nil { t.Fatal(err) } - if rng.StickyBit != nil { - t.Fatalf("%s: expected range sticky bit to be nil, got %s", tt.in, pretty) + if (rng.StickyBit != hlc.Timestamp{}) { + t.Fatalf("%s: expected range sticky bit to be hlc.MinTimestamp, got %s", tt.in, pretty) } } } diff --git a/pkg/storage/below_raft_protos_test.go b/pkg/storage/below_raft_protos_test.go index 269f8ad29e98..e41a1b4a2e81 100644 --- a/pkg/storage/below_raft_protos_test.go +++ b/pkg/storage/below_raft_protos_test.go @@ -106,8 +106,8 @@ var belowRaftGoldenProtos = map[reflect.Type]fixture{ populatedConstructor: func(r *rand.Rand) protoutil.Message { return roachpb.NewPopulatedRangeDescriptor(r, false) }, - emptySum: 5524024218313206949, - populatedSum: 7797688559592618706, + emptySum: 13619898788881670775, + populatedSum: 1579180890942159507, }, reflect.TypeOf(&storagepb.Liveness{}): { populatedConstructor: func(r *rand.Rand) protoutil.Message { diff --git a/pkg/storage/bulk/sst_batcher_test.go b/pkg/storage/bulk/sst_batcher_test.go index e8e2277ebdaf..d8065ab7437f 100644 --- a/pkg/storage/bulk/sst_batcher_test.go +++ b/pkg/storage/bulk/sst_batcher_test.go @@ -105,10 +105,10 @@ func runTestImport(t *testing.T, batchSize int64) { return encoding.EncodeStringAscending(append([]byte{}, prefix...), fmt.Sprintf("k%d", i)) } - if err := kvDB.AdminSplit(ctx, key(split1), key(split1), true /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, key(split1), key(split1), hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } - if err := kvDB.AdminSplit(ctx, key(split2), key(split2), true /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, key(split2), key(split2), hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } diff --git a/pkg/storage/client_merge_test.go b/pkg/storage/client_merge_test.go index f7eb9efefb94..cb192cf0d290 100644 --- a/pkg/storage/client_merge_test.go +++ b/pkg/storage/client_merge_test.go @@ -3275,6 +3275,8 @@ func TestMergeQueue(t *testing.T) { defer leaktest.AfterTest(t)() ctx := context.Background() + manualClock := hlc.NewManualClock(123) + clock := hlc.NewClock(manualClock.UnixNano, time.Nanosecond) storeCfg := storage.TestStoreConfig(nil) storeCfg.TestingKnobs.DisableSplitQueue = true storeCfg.TestingKnobs.DisableScanner = true @@ -3287,16 +3289,18 @@ func TestMergeQueue(t *testing.T) { mtc.startWithSingleRange = true mtc.storeConfig = &storeCfg + // Inject clock for manipulation in tests. + mtc.clock = clock mtc.Start(t, 2) defer mtc.Stop() mtc.initGossipNetwork() // needed for the non-collocated case's rebalancing to work store := mtc.Store(0) store.SetMergeQueueActive(true) - split := func(t *testing.T, key roachpb.Key, manual bool) { + split := func(t *testing.T, key roachpb.Key, expirationTime hlc.Timestamp) { t.Helper() args := adminSplitArgs(key) - args.Manual = manual + args.ExpirationTime = expirationTime if _, pErr := client.SendWrapped(ctx, store.DB().NonTransactionalSender(), args); pErr != nil { t.Fatal(pErr) } @@ -3315,7 +3319,7 @@ func TestMergeQueue(t *testing.T) { rhsStartKey := roachpb.RKey("b") rhsEndKey := roachpb.RKey("c") for _, k := range []roachpb.RKey{lhsStartKey, rhsStartKey, rhsEndKey} { - split(t, k.AsRawKey(), false /* manual */) + split(t, k.AsRawKey(), hlc.Timestamp{} /* expirationTime */) } lhs := func() *storage.Replica { return store.LookupReplica(lhsStartKey) } rhs := func() *storage.Replica { return store.LookupReplica(rhsStartKey) } @@ -3340,7 +3344,7 @@ func TestMergeQueue(t *testing.T) { } setZones(*storeCfg.DefaultZoneConfig) store.MustForceMergeScanAndProcess() // drain any merges that might already be queued - split(t, roachpb.Key("b"), false /* manual */) + split(t, roachpb.Key("b"), hlc.Timestamp{} /* expirationTime */) } verifyMerged := func(t *testing.T) { @@ -3418,13 +3422,13 @@ func TestMergeQueue(t *testing.T) { // TODO(jeffreyxiao): Add subtest to consider load when making merging // decisions. - t.Run("sticky bit", func(t *testing.T) { + t.Run("sticky-bit", func(t *testing.T) { reset(t) store.MustForceMergeScanAndProcess() verifyUnmerged(t) // Perform manual merge and verify that no merge occurred. - split(t, rhsStartKey.AsRawKey(), true /* manual */) + split(t, rhsStartKey.AsRawKey(), hlc.MaxTimestamp /* expirationTime */) clearRange(t, lhsStartKey, rhsEndKey) store.MustForceMergeScanAndProcess() verifyUnmerged(t) @@ -3441,6 +3445,29 @@ func TestMergeQueue(t *testing.T) { store.MustForceMergeScanAndProcess() verifyMerged(t) }) + + t.Run("sticky-bit-expiration", func(t *testing.T) { + manualSplitTTL := time.Millisecond * 200 + reset(t) + store.MustForceMergeScanAndProcess() + verifyUnmerged(t) + + // Perform manual merge and verify that no merge occurred. + split(t, rhsStartKey.AsRawKey(), clock.Now().Add(manualSplitTTL.Nanoseconds(), 0) /* expirationTime */) + clearRange(t, lhsStartKey, rhsEndKey) + store.MustForceMergeScanAndProcess() + verifyUnmerged(t) + + // Sticky bit is not expired yet. + manualClock.Set(manualSplitTTL.Nanoseconds()) + store.MustForceMergeScanAndProcess() + verifyUnmerged(t) + + // Sticky bit is expired. + manualClock.Set(manualSplitTTL.Nanoseconds() * 2) + store.MustForceMergeScanAndProcess() + verifyMerged(t) + }) } func TestInvalidSubsumeRequest(t *testing.T) { diff --git a/pkg/storage/consistency_queue_test.go b/pkg/storage/consistency_queue_test.go index f9562f5e8f1b..a8a8fda0d866 100644 --- a/pkg/storage/consistency_queue_test.go +++ b/pkg/storage/consistency_queue_test.go @@ -433,7 +433,7 @@ func TestConsistencyQueueRecomputeStats(t *testing.T) { // Split off a range so that we get away from the timeseries writes, which // pollute the stats with ContainsEstimates=true. Note that the split clears // the right hand side (which is what we operate on) from that flag. - if err := db0.AdminSplit(ctx, key, key, true /* manual */); err != nil { + if err := db0.AdminSplit(ctx, key, key, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } diff --git a/pkg/storage/log_test.go b/pkg/storage/log_test.go index 7a30114d2061..ef4d601f2209 100644 --- a/pkg/storage/log_test.go +++ b/pkg/storage/log_test.go @@ -29,6 +29,7 @@ import ( "github.com/cockroachdb/cockroach/pkg/storage/storagepb" "github.com/cockroachdb/cockroach/pkg/testutils/serverutils" "github.com/cockroachdb/cockroach/pkg/testutils/sqlutils" + "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/leaktest" _ "github.com/lib/pq" ) @@ -55,7 +56,7 @@ func TestLogSplits(t *testing.T) { initialSplits := countSplits() // Generate an explicit split event. - if err := kvDB.AdminSplit(ctx, "splitkey", "splitkey", true /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, "splitkey", "splitkey", hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } @@ -176,10 +177,10 @@ func TestLogMerges(t *testing.T) { } // Create two ranges, then merge them. - if err := kvDB.AdminSplit(ctx, "a", "a", true /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, "a", "a", hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } - if err := kvDB.AdminSplit(ctx, "b", "b", true /* manual */); err != nil { + if err := kvDB.AdminSplit(ctx, "b", "b", hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } if err := kvDB.AdminMerge(ctx, "a"); err != nil { diff --git a/pkg/storage/merge_queue.go b/pkg/storage/merge_queue.go index dc03914eb15e..a03d01343e3a 100644 --- a/pkg/storage/merge_queue.go +++ b/pkg/storage/merge_queue.go @@ -289,9 +289,10 @@ func (mq *mergeQueue) process( } } - // Range was manually split, so skip merging. - if rhsDesc.StickyBit != nil { - log.VEventf(ctx, 2, "skipping merge: ranges were manually split") + // Range was manually split and not expired, so skip merging. + now := mq.store.Clock().Now() + if now.Less(rhsDesc.StickyBit) { + log.VEventf(ctx, 2, "skipping merge: ranges were manually split and sticky bit was not expired") // TODO(jeffreyxiao): Consider returning a purgatory error to avoid // repeatedly processing ranges that cannot be merged. return nil @@ -316,7 +317,7 @@ func (mq *mergeQueue) process( // On seeing a ConditionFailedError, don't return an error and enqueue // this replica again in case it still needs to be merged. log.Infof(ctx, "merge saw concurrent descriptor modification; maybe retrying") - mq.MaybeAddAsync(ctx, lhsRepl, mq.store.Clock().Now()) + mq.MaybeAddAsync(ctx, lhsRepl, now) default: // While range merges are unstable, be extra cautious and mark every error // as purgatory-worthy. diff --git a/pkg/storage/replica_command.go b/pkg/storage/replica_command.go index 3e9dbec62aff..94cfa507dfb9 100644 --- a/pkg/storage/replica_command.go +++ b/pkg/storage/replica_command.go @@ -221,11 +221,11 @@ func (r *Replica) adminSplitWithDescriptor( log.Fatal(ctx, "MVCCFindSplitKey returned start key of range") } log.Event(ctx, "range already split") - // Even if the range is already split, we should still set the sticky bit - if args.Manual { - nowTs := r.store.Clock().Now() + // Even if the range is already split, we should still update the sticky + // bit if it has a later expiration time. + if desc.StickyBit.Less(args.ExpirationTime) { newDesc := *desc - newDesc.StickyBit = &nowTs + newDesc.StickyBit = args.ExpirationTime err := r.store.DB().Txn(ctx, func(ctx context.Context, txn *client.Txn) error { b := txn.NewBatch() descKey := keys.RangeDescriptorKey(desc.StartKey) @@ -241,7 +241,7 @@ func (r *Replica) adminSplitWithDescriptor( Commit: true, InternalCommitTrigger: &roachpb.InternalCommitTrigger{ StickyBitTrigger: &roachpb.StickyBitTrigger{ - StickyBit: &nowTs, + StickyBit: args.ExpirationTime, }, }, }) @@ -268,11 +268,8 @@ func (r *Replica) adminSplitWithDescriptor( return reply, errors.Errorf("unable to allocate right hand side range descriptor: %s", err) } - // Add sticky bit. - if args.Manual { - nowTs := r.store.Clock().Now() - rightDesc.StickyBit = &nowTs - } + // Set the range descriptor's sticky bit. + rightDesc.StickyBit = args.ExpirationTime // Init updated version of existing range descriptor. leftDesc := *desc @@ -392,16 +389,17 @@ func (r *Replica) AdminUnsplit( return reply, roachpb.NewErrorf("key %s is not the start of a range", args.Header().Key) } - // If the range's sticky bit is not set, we treat the unsplit command - // as a no-op and return success instead of throwing an error. - if desc.StickyBit == nil { + // If the range's sticky bit is already hlc.Timestamp{}, we treat the + // unsplit command as a no-op and return success instead of throwing an + // error. + if (desc.StickyBit == hlc.Timestamp{}) { return reply, nil } if err := r.store.DB().Txn(ctx, func(ctx context.Context, txn *client.Txn) error { b := txn.NewBatch() newDesc := desc - newDesc.StickyBit = nil + newDesc.StickyBit = hlc.Timestamp{} descKey := keys.RangeDescriptorKey(newDesc.StartKey) if err := updateRangeDescriptor(b, descKey, &desc, &newDesc); err != nil { @@ -415,8 +413,9 @@ func (r *Replica) AdminUnsplit( Commit: true, InternalCommitTrigger: &roachpb.InternalCommitTrigger{ StickyBitTrigger: &roachpb.StickyBitTrigger{ - // Setting StickyBit to nil unsets the sticky bit. - StickyBit: nil, + // Setting StickyBit to the zero timestamp ensures that it is always + // eligible for automatic merging. + StickyBit: hlc.Timestamp{}, }, }, }) diff --git a/pkg/storage/replica_test.go b/pkg/storage/replica_test.go index c77a4717dddd..8b9ff5069f88 100644 --- a/pkg/storage/replica_test.go +++ b/pkg/storage/replica_test.go @@ -1194,7 +1194,7 @@ func TestReplicaGossipConfigsOnLease(t *testing.T) { key := keys.MakeTablePrefix(keys.MaxSystemConfigDescID) var val roachpb.Value val.SetInt(42) - if err := engine.MVCCPut(context.Background(), tc.engine, nil, key, hlc.MinTimestamp, val, nil); err != nil { + if err := engine.MVCCPut(context.Background(), tc.engine, nil, key, hlc.Timestamp{}, val, nil); err != nil { t.Fatal(err) } @@ -5840,7 +5840,7 @@ func TestConditionFailedError(t *testing.T) { ExpValue: &val, } - _, pErr := tc.SendWrappedWith(roachpb.Header{Timestamp: hlc.MinTimestamp}, &args) + _, pErr := tc.SendWrappedWith(roachpb.Header{Timestamp: hlc.Timestamp{}}, &args) if cErr, ok := pErr.GetDetail().(*roachpb.ConditionFailedError); pErr == nil || !ok { t.Fatalf("expected ConditionFailedError, got %T with content %+v", @@ -8752,7 +8752,7 @@ func TestErrorInRaftApplicationClearsIntents(t *testing.T) { defer s.Stopper().Stop(context.TODO()) splitKey := roachpb.Key("b") - if err := kvDB.AdminSplit(context.TODO(), splitKey, splitKey, true /* manual */); err != nil { + if err := kvDB.AdminSplit(context.TODO(), splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) } diff --git a/pkg/storage/split_queue.go b/pkg/storage/split_queue.go index 4e3badd010fe..b1685971b301 100644 --- a/pkg/storage/split_queue.go +++ b/pkg/storage/split_queue.go @@ -163,7 +163,8 @@ func (sq *splitQueue) processAttempt( RequestHeader: roachpb.RequestHeader{ Key: splitKey.AsRawKey(), }, - SplitKey: splitKey.AsRawKey(), + SplitKey: splitKey.AsRawKey(), + ExpirationTime: hlc.Timestamp{}, }, desc, false, /* delayable */ diff --git a/pkg/storage/ts_maintenance_queue_test.go b/pkg/storage/ts_maintenance_queue_test.go index d5f14019176b..2ed9b73b65da 100644 --- a/pkg/storage/ts_maintenance_queue_test.go +++ b/pkg/storage/ts_maintenance_queue_test.go @@ -270,7 +270,7 @@ func TestTimeSeriesMaintenanceQueueServer(t *testing.T) { // Force a range split in between near past and far past. This guarantees // that the pruning operation will issue a DeleteRange which spans ranges. - if err := db.AdminSplit(context.TODO(), splitKey, splitKey, true /* manual */); err != nil { + if err := db.AdminSplit(context.TODO(), splitKey, splitKey, hlc.MaxTimestamp /* expirationTime */); err != nil { t.Fatal(err) }