From c3c893199ee702ebcdaf4da55c542e5f68bdbf87 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Tue, 13 Feb 2018 18:06:58 +0000 Subject: [PATCH] backupccl: check revision start time Record the revision start time, which may not be the same as the start time, namely in full backups where start time is 0 but revision history obviously can only be captured since the GC threshold. The backup records the latest safe time and then restore checks that requested times are after that. Fixes #19455. Release note (enterprise change): Check that backup actually contains requested restore time. --- pkg/ccl/backupccl/backup.go | 8 +- pkg/ccl/backupccl/backup.pb.go | 180 +++-- pkg/ccl/backupccl/backup.proto | 3 + pkg/ccl/backupccl/backup_test.go | 42 ++ pkg/ccl/backupccl/restore.go | 21 +- pkg/ccl/storageccl/export.go | 16 +- pkg/roachpb/api.pb.go | 1129 ++++++++++++++++-------------- pkg/roachpb/api.proto | 1 + 8 files changed, 778 insertions(+), 622 deletions(-) diff --git a/pkg/ccl/backupccl/backup.go b/pkg/ccl/backupccl/backup.go index 60ba8d155f9e..f7c66d449344 100644 --- a/pkg/ccl/backupccl/backup.go +++ b/pkg/ccl/backupccl/backup.go @@ -688,13 +688,17 @@ func backup( StartTime: span.start, MVCCFilter: roachpb.MVCCFilter(backupDesc.MVCCFilter), } - res, pErr := client.SendWrappedWith(gCtx, db.GetSender(), header, req) + rawRes, pErr := client.SendWrappedWith(gCtx, db.GetSender(), header, req) if pErr != nil { return pErr.GoError() } + res := rawRes.(*roachpb.ExportResponse) mu.Lock() - for _, file := range res.(*roachpb.ExportResponse).Files { + if backupDesc.RevisionStartTime.Less(res.StartTime) { + backupDesc.RevisionStartTime = res.StartTime + } + for _, file := range res.Files { f := BackupDescriptor_File{ Span: file.Span, Path: file.Path, diff --git a/pkg/ccl/backupccl/backup.pb.go b/pkg/ccl/backupccl/backup.pb.go index 0c2333943c17..35a795e8d74d 100644 --- a/pkg/ccl/backupccl/backup.pb.go +++ b/pkg/ccl/backupccl/backup.pb.go @@ -69,6 +69,9 @@ type BackupDescriptor struct { StartTime cockroach_util_hlc.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime" json:"start_time"` EndTime cockroach_util_hlc.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime" json:"end_time"` MVCCFilter MVCCFilter `protobuf:"varint,13,opt,name=mvcc_filter,json=mvccFilter,proto3,enum=cockroach.ccl.backupccl.MVCCFilter" json:"mvcc_filter,omitempty"` + // Even if StartTime is zero, we only get revisions since gc threshold, so + // do not allow AS OF SYSTEM TIME before revision_start_time. + RevisionStartTime cockroach_util_hlc.Timestamp `protobuf:"bytes,17,opt,name=revision_start_time,json=revisionStartTime" json:"revision_start_time"` // Spans contains the spans requested for backup. The keyranges covered by // `files` may be a subset of this if there were ranges with no changes since // the last backup. For all tables in the backup descriptor, these spans must @@ -294,6 +297,16 @@ func (m *BackupDescriptor) MarshalTo(dAtA []byte) (int, error) { i += n } } + dAtA[i] = 0x8a + i++ + dAtA[i] = 0x1 + i++ + i = encodeVarintBackup(dAtA, i, uint64(m.RevisionStartTime.Size())) + n9, err := m.RevisionStartTime.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n9 return i, nil } @@ -315,11 +328,11 @@ func (m *BackupDescriptor_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintBackup(dAtA, i, uint64(m.Span.Size())) - n9, err := m.Span.MarshalTo(dAtA[i:]) + n10, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n9 + i += n10 if len(m.Path) > 0 { dAtA[i] = 0x12 i++ @@ -335,27 +348,27 @@ func (m *BackupDescriptor_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintBackup(dAtA, i, uint64(m.EntryCounts.Size())) - n10, err := m.EntryCounts.MarshalTo(dAtA[i:]) + n11, err := m.EntryCounts.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n10 + i += n11 dAtA[i] = 0x3a i++ i = encodeVarintBackup(dAtA, i, uint64(m.StartTime.Size())) - n11, err := m.StartTime.MarshalTo(dAtA[i:]) + n12, err := m.StartTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n11 + i += n12 dAtA[i] = 0x42 i++ i = encodeVarintBackup(dAtA, i, uint64(m.EndTime.Size())) - n12, err := m.EndTime.MarshalTo(dAtA[i:]) + n13, err := m.EndTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n12 + i += n13 return i, nil } @@ -377,11 +390,11 @@ func (m *BackupDescriptor_DescriptorRevision) MarshalTo(dAtA []byte) (int, error dAtA[i] = 0xa i++ i = encodeVarintBackup(dAtA, i, uint64(m.Time.Size())) - n13, err := m.Time.MarshalTo(dAtA[i:]) + n14, err := m.Time.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n13 + i += n14 if m.ID != 0 { dAtA[i] = 0x10 i++ @@ -391,11 +404,11 @@ func (m *BackupDescriptor_DescriptorRevision) MarshalTo(dAtA []byte) (int, error dAtA[i] = 0x1a i++ i = encodeVarintBackup(dAtA, i, uint64(m.Desc.Size())) - n14, err := m.Desc.MarshalTo(dAtA[i:]) + n15, err := m.Desc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n14 + i += n15 } return i, nil } @@ -470,6 +483,8 @@ func (m *BackupDescriptor) Size() (n int) { n += 2 + l + sovBackup(uint64(l)) } } + l = m.RevisionStartTime.Size() + n += 2 + l + sovBackup(uint64(l)) return n } @@ -1006,6 +1021,36 @@ func (m *BackupDescriptor) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RevisionStartTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBackup + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBackup + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.RevisionStartTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipBackup(dAtA[iNdEx:]) @@ -1497,59 +1542,60 @@ var ( func init() { proto.RegisterFile("ccl/backupccl/backup.proto", fileDescriptorBackup) } var fileDescriptorBackup = []byte{ - // 850 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xcd, 0x6e, 0xdb, 0x46, - 0x10, 0x36, 0x2d, 0xea, 0x6f, 0x64, 0x39, 0xca, 0xa2, 0x6d, 0x08, 0xa1, 0x95, 0x94, 0x06, 0x05, - 0x84, 0x1e, 0x48, 0xc4, 0x46, 0x90, 0xa2, 0x28, 0x0a, 0x84, 0x52, 0xd3, 0xd0, 0xe8, 0x0f, 0x40, - 0x27, 0x39, 0xf8, 0x42, 0x90, 0xbb, 0x2b, 0x89, 0xf0, 0x8a, 0x4b, 0xef, 0x2e, 0x8d, 0xe6, 0x2d, - 0x7a, 0xeb, 0xeb, 0xf4, 0xe8, 0x4b, 0x81, 0x1e, 0x8b, 0x1e, 0x84, 0x56, 0x7d, 0x8b, 0x9e, 0x0a, - 0x2e, 0x29, 0x53, 0x6d, 0x6a, 0x44, 0x89, 0x6f, 0xc3, 0xd9, 0xf9, 0xbe, 0x99, 0x9d, 0x9d, 0x6f, - 0x08, 0x7d, 0x8c, 0x99, 0x13, 0x85, 0xf8, 0x3c, 0x4b, 0x2b, 0xcb, 0x4e, 0x05, 0x57, 0x1c, 0xdd, - 0xc3, 0x1c, 0x9f, 0x0b, 0x1e, 0xe2, 0x85, 0x8d, 0x31, 0xb3, 0xaf, 0xa3, 0xfa, 0xbd, 0x28, 0x8b, - 0x19, 0x71, 0xe2, 0x64, 0xc6, 0x8b, 0xd0, 0xfe, 0x5d, 0x1d, 0x96, 0x46, 0x4e, 0x98, 0xc6, 0xa5, - 0x0b, 0x6d, 0x5c, 0x24, 0x54, 0x61, 0xe9, 0xfb, 0x50, 0x5e, 0x30, 0x47, 0x5e, 0xb0, 0x28, 0x94, - 0xd4, 0x91, 0x4a, 0x64, 0x58, 0x65, 0x82, 0x92, 0xf2, 0xd4, 0xca, 0x54, 0xcc, 0x9c, 0x05, 0xc3, - 0x8e, 0x8a, 0x97, 0x54, 0xaa, 0x70, 0x59, 0x56, 0xd2, 0x7f, 0x6f, 0xce, 0xe7, 0x5c, 0x9b, 0x4e, - 0x6e, 0x15, 0xde, 0x8f, 0x7f, 0xea, 0x42, 0xcf, 0xd5, 0x45, 0x4d, 0xa9, 0xc4, 0x22, 0x4e, 0x15, - 0x17, 0xc8, 0x05, 0x90, 0x2a, 0x14, 0x2a, 0xc8, 0x39, 0x2c, 0x63, 0x64, 0x8c, 0x3b, 0x47, 0x1f, - 0xd9, 0xd5, 0x4d, 0xf2, 0x1c, 0xf6, 0x82, 0x61, 0xfb, 0xf9, 0x26, 0x87, 0x6b, 0x5e, 0xad, 0x86, - 0x7b, 0x7e, 0x5b, 0xc3, 0x72, 0x2f, 0xfa, 0x12, 0x5a, 0x34, 0x21, 0x05, 0xc3, 0xfe, 0xee, 0x0c, - 0x4d, 0x9a, 0x10, 0x8d, 0x3f, 0x86, 0xba, 0x4c, 0xc3, 0x44, 0x5a, 0xb5, 0x51, 0x6d, 0xdc, 0x39, - 0xba, 0xb7, 0x05, 0x2e, 0x9b, 0x62, 0x9f, 0xa6, 0x61, 0x52, 0xc2, 0x8a, 0x58, 0x74, 0x02, 0xf5, - 0x59, 0xcc, 0xa8, 0xb4, 0x4c, 0x0d, 0xb2, 0xed, 0x1b, 0xba, 0x6f, 0xff, 0xf7, 0xca, 0xf6, 0xd3, - 0x98, 0xd1, 0x0d, 0x97, 0xa6, 0x40, 0x1e, 0x74, 0xc8, 0xf5, 0xb9, 0xb4, 0xea, 0x9a, 0xf1, 0xfe, - 0x16, 0xa3, 0xbc, 0x60, 0x76, 0xf9, 0x0e, 0x76, 0xc5, 0x54, 0x92, 0x6c, 0x63, 0xd1, 0x67, 0x50, - 0x23, 0xb1, 0xb0, 0x9a, 0xba, 0x0d, 0xa3, 0xff, 0xb9, 0xc9, 0x57, 0x3f, 0xa4, 0x5c, 0xa8, 0x53, - 0xc5, 0x45, 0x38, 0xdf, 0x94, 0x91, 0x43, 0xd0, 0x27, 0x70, 0x38, 0xe3, 0x62, 0x19, 0xaa, 0xe0, - 0x92, 0x0a, 0x19, 0xf3, 0xc4, 0x6a, 0x8d, 0x8c, 0x71, 0xd7, 0xef, 0x16, 0xde, 0x97, 0x85, 0x13, - 0xcd, 0x01, 0x30, 0xcb, 0xa4, 0xa2, 0x22, 0x88, 0x89, 0xd5, 0x1e, 0x19, 0xe3, 0x03, 0xf7, 0x59, - 0xce, 0xf2, 0xfb, 0x6a, 0x78, 0x3c, 0x8f, 0xd5, 0x22, 0x8b, 0x6c, 0xcc, 0x97, 0xce, 0x75, 0x66, - 0x12, 0x55, 0xb6, 0x93, 0x9e, 0xcf, 0x1d, 0x3d, 0x36, 0x59, 0x16, 0x13, 0xfb, 0xc5, 0x0b, 0x6f, - 0xba, 0x5e, 0x0d, 0xdb, 0x93, 0x82, 0xd0, 0x9b, 0xfa, 0xed, 0x92, 0xdb, 0x23, 0xe8, 0x0c, 0x9a, - 0x09, 0x27, 0x34, 0xcf, 0x02, 0x23, 0x63, 0x5c, 0x77, 0x9f, 0xac, 0x57, 0xc3, 0xc6, 0x77, 0x9c, - 0x50, 0x6f, 0xfa, 0xf7, 0xae, 0xb9, 0x36, 0xb7, 0x2e, 0x60, 0x7e, 0x23, 0x67, 0xf4, 0x08, 0xfa, - 0x1c, 0x40, 0x6b, 0x22, 0xc8, 0x35, 0x61, 0x75, 0x74, 0xb3, 0xde, 0xdf, 0x6a, 0x96, 0x3e, 0xb4, - 0xbd, 0x64, 0xc6, 0x37, 0xd3, 0xa6, 0x3d, 0xb9, 0x03, 0x79, 0x70, 0x40, 0x13, 0x25, 0x5e, 0x05, - 0x98, 0x67, 0x89, 0x92, 0xd6, 0xc1, 0x8d, 0xad, 0x76, 0x33, 0x76, 0xfe, 0x7d, 0x7a, 0x9a, 0x2d, - 0x97, 0xa1, 0x78, 0xb5, 0x79, 0x2c, 0x8d, 0x9d, 0x68, 0x28, 0x7a, 0x0e, 0x9d, 0xe5, 0x25, 0xc6, - 0xc1, 0x2c, 0x66, 0x8a, 0x0a, 0xab, 0x3b, 0x32, 0xc6, 0x87, 0x47, 0x0f, 0x6e, 0x9c, 0xa4, 0x6f, - 0x5f, 0x4e, 0x26, 0x4f, 0x75, 0xa8, 0x7b, 0xb8, 0x5e, 0x0d, 0xa1, 0xfa, 0xf6, 0x21, 0xe7, 0x29, - 0x6c, 0x74, 0x06, 0x07, 0x98, 0x2f, 0x53, 0x46, 0x15, 0x0d, 0x48, 0x24, 0xad, 0xc3, 0x51, 0x6d, - 0xdc, 0x75, 0x1f, 0xef, 0xdc, 0xb3, 0x2d, 0xd1, 0xdb, 0xde, 0xd4, 0xef, 0x6c, 0xc8, 0xa6, 0x91, - 0x44, 0xcf, 0xa0, 0x17, 0x27, 0x4a, 0x70, 0x92, 0x61, 0x4a, 0x82, 0x42, 0x35, 0x77, 0x76, 0x51, - 0xcd, 0x9d, 0x0a, 0x76, 0xaa, 0xf5, 0x73, 0x01, 0xa8, 0x9a, 0xdb, 0x00, 0x2f, 0xc2, 0x64, 0x4e, - 0xa5, 0xd5, 0xd3, 0x5c, 0x5f, 0xec, 0x2e, 0xa6, 0xca, 0xf4, 0xe9, 0x65, 0x9c, 0x4f, 0x68, 0x99, - 0xf0, 0x6e, 0xc5, 0x3e, 0x29, 0xc8, 0xfb, 0x3f, 0xef, 0x83, 0x99, 0x8b, 0x0f, 0x3d, 0x04, 0x33, - 0x2f, 0xbd, 0x5c, 0x37, 0x6f, 0xa8, 0x5c, 0x87, 0x22, 0x04, 0x66, 0x1a, 0xaa, 0x85, 0xde, 0x2f, - 0x6d, 0x5f, 0xdb, 0xe8, 0x03, 0x68, 0xc8, 0x45, 0xf8, 0xe8, 0xe1, 0x91, 0x65, 0xe6, 0x32, 0xf0, - 0xcb, 0xaf, 0xd7, 0x26, 0xa4, 0xf1, 0xee, 0x13, 0xf2, 0xef, 0xf5, 0xd8, 0xbc, 0xf5, 0x7a, 0x6c, - 0xbd, 0xfd, 0x7a, 0x3c, 0x31, 0x5b, 0xb5, 0x9e, 0x79, 0x62, 0xb6, 0xea, 0xbd, 0x46, 0xff, 0x17, - 0x03, 0xd0, 0xeb, 0x2d, 0x47, 0x8f, 0xc1, 0x7c, 0xdb, 0xfd, 0xad, 0x01, 0xe8, 0x6b, 0xd8, 0xf7, - 0xa6, 0xba, 0xa9, 0xb7, 0x98, 0xd0, 0x7d, 0x6f, 0x8a, 0x1e, 0x81, 0x99, 0x3f, 0xb8, 0x55, 0xd3, - 0x15, 0xbc, 0x79, 0x77, 0xfa, 0x3a, 0xfc, 0xc4, 0x6c, 0x35, 0x7a, 0xcd, 0x4f, 0xef, 0xc3, 0x96, - 0x96, 0x10, 0x40, 0xe3, 0x9b, 0x50, 0x51, 0xa9, 0x7a, 0x7b, 0xa8, 0x09, 0xb5, 0x27, 0x8c, 0xf5, - 0x0c, 0xf7, 0xc1, 0xd5, 0x9f, 0x83, 0xbd, 0xab, 0xf5, 0xc0, 0xf8, 0x75, 0x3d, 0x30, 0x7e, 0x5b, - 0x0f, 0x8c, 0x3f, 0xd6, 0x03, 0xe3, 0xc7, 0xbf, 0x06, 0x7b, 0x67, 0xed, 0xeb, 0xe9, 0x8c, 0x1a, - 0xfa, 0x47, 0x77, 0xfc, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x27, 0x15, 0xb5, 0xf0, 0xa6, 0x07, - 0x00, 0x00, + // 869 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x4d, 0x6f, 0xdb, 0x46, + 0x10, 0x35, 0x2d, 0x5a, 0x1f, 0x23, 0xcb, 0xa1, 0xb7, 0x1f, 0x21, 0x84, 0x56, 0x52, 0x1a, 0x14, + 0x10, 0x7a, 0x20, 0x11, 0x1b, 0x41, 0x8a, 0xa2, 0x28, 0x10, 0x4a, 0x4d, 0x43, 0xa3, 0x1f, 0x00, + 0x95, 0xe4, 0xe0, 0x0b, 0x41, 0x2e, 0x57, 0x12, 0xe1, 0x15, 0x97, 0xde, 0x5d, 0x1a, 0xcd, 0xbf, + 0xe8, 0x4f, 0xea, 0xd1, 0x97, 0x02, 0x3d, 0x16, 0x3d, 0x08, 0xad, 0x7a, 0xed, 0x2f, 0xe8, 0xa9, + 0xe0, 0x92, 0x34, 0xd5, 0xa6, 0x46, 0x94, 0xe6, 0x36, 0x1c, 0xce, 0x7b, 0xb3, 0x3b, 0x7c, 0x6f, + 0x08, 0x7d, 0x8c, 0xa9, 0x1d, 0x06, 0xf8, 0x22, 0x4b, 0xeb, 0xc8, 0x4a, 0x39, 0x93, 0x0c, 0xdd, + 0xc5, 0x0c, 0x5f, 0x70, 0x16, 0xe0, 0xa5, 0x85, 0x31, 0xb5, 0x6e, 0xaa, 0xfa, 0x46, 0x98, 0xc5, + 0x34, 0xb2, 0xe3, 0x64, 0xce, 0x8a, 0xd2, 0xfe, 0xb1, 0x2a, 0x4b, 0x43, 0x3b, 0x48, 0xe3, 0x32, + 0x85, 0xaa, 0x54, 0x14, 0xc8, 0xa0, 0xcc, 0x7d, 0x20, 0x2e, 0xa9, 0x2d, 0x2e, 0x69, 0x18, 0x08, + 0x62, 0x0b, 0xc9, 0x33, 0x2c, 0x33, 0x4e, 0xa2, 0xf2, 0xad, 0x99, 0xc9, 0x98, 0xda, 0x4b, 0x8a, + 0x6d, 0x19, 0xaf, 0x88, 0x90, 0xc1, 0xaa, 0x3c, 0x49, 0xff, 0xdd, 0x05, 0x5b, 0x30, 0x15, 0xda, + 0x79, 0x54, 0x64, 0x3f, 0xfa, 0xb3, 0x07, 0x86, 0xa3, 0x0e, 0x35, 0x25, 0x02, 0xf3, 0x38, 0x95, + 0x8c, 0x23, 0x07, 0x40, 0xc8, 0x80, 0x4b, 0x3f, 0xe7, 0x30, 0xb5, 0x91, 0x36, 0xee, 0x9e, 0x7c, + 0x68, 0xd5, 0x37, 0xc9, 0x7b, 0x58, 0x4b, 0x8a, 0xad, 0x67, 0x55, 0x0f, 0x47, 0xbf, 0x5e, 0x0f, + 0xf7, 0xbc, 0x8e, 0x82, 0xe5, 0x59, 0xf4, 0x05, 0xb4, 0x49, 0x12, 0x15, 0x0c, 0xfb, 0xbb, 0x33, + 0xb4, 0x48, 0x12, 0x29, 0xfc, 0x29, 0x1c, 0x88, 0x34, 0x48, 0x84, 0xd9, 0x18, 0x35, 0xc6, 0xdd, + 0x93, 0xbb, 0x5b, 0xe0, 0x72, 0x28, 0xd6, 0x2c, 0x0d, 0x92, 0x12, 0x56, 0xd4, 0xa2, 0x33, 0x38, + 0x98, 0xc7, 0x94, 0x08, 0x53, 0x57, 0x20, 0xcb, 0xba, 0x65, 0xfa, 0xd6, 0xbf, 0xaf, 0x6c, 0x3d, + 0x89, 0x29, 0xa9, 0xb8, 0x14, 0x05, 0x72, 0xa1, 0x1b, 0xdd, 0xbc, 0x17, 0xe6, 0x81, 0x62, 0xbc, + 0xb7, 0xc5, 0x28, 0x2e, 0xa9, 0x55, 0x7e, 0x07, 0xab, 0x66, 0x2a, 0x49, 0xb6, 0xb1, 0xe8, 0x53, + 0x68, 0x44, 0x31, 0x37, 0x5b, 0x6a, 0x0c, 0xa3, 0xff, 0xb8, 0xc9, 0x97, 0xdf, 0xa7, 0x8c, 0xcb, + 0x99, 0x64, 0x3c, 0x58, 0x54, 0xc7, 0xc8, 0x21, 0xe8, 0x63, 0x38, 0x9a, 0x33, 0xbe, 0x0a, 0xa4, + 0x7f, 0x45, 0xb8, 0x88, 0x59, 0x62, 0xb6, 0x47, 0xda, 0xb8, 0xe7, 0xf5, 0x8a, 0xec, 0x8b, 0x22, + 0x89, 0x16, 0x00, 0x98, 0x66, 0x42, 0x12, 0xee, 0xc7, 0x91, 0xd9, 0x19, 0x69, 0xe3, 0x43, 0xe7, + 0x69, 0xce, 0xf2, 0xeb, 0x7a, 0x78, 0xba, 0x88, 0xe5, 0x32, 0x0b, 0x2d, 0xcc, 0x56, 0xf6, 0x4d, + 0xe7, 0x28, 0xac, 0x63, 0x3b, 0xbd, 0x58, 0xd8, 0x4a, 0x36, 0x59, 0x16, 0x47, 0xd6, 0xf3, 0xe7, + 0xee, 0x74, 0xb3, 0x1e, 0x76, 0x26, 0x05, 0xa1, 0x3b, 0xf5, 0x3a, 0x25, 0xb7, 0x1b, 0xa1, 0x73, + 0x68, 0x25, 0x2c, 0x22, 0x79, 0x17, 0x18, 0x69, 0xe3, 0x03, 0xe7, 0xf1, 0x66, 0x3d, 0x6c, 0x7e, + 0xcb, 0x22, 0xe2, 0x4e, 0xff, 0xda, 0xb5, 0x57, 0x75, 0xeb, 0x02, 0xe6, 0x35, 0x73, 0x46, 0x37, + 0x42, 0x9f, 0x01, 0x28, 0x4f, 0xf8, 0xb9, 0x27, 0xcc, 0xae, 0x1a, 0xd6, 0x7b, 0x5b, 0xc3, 0x52, + 0x2f, 0x2d, 0x37, 0x99, 0xb3, 0x4a, 0x6d, 0x2a, 0x93, 0x27, 0x90, 0x0b, 0x87, 0x24, 0x91, 0xfc, + 0xa5, 0x8f, 0x59, 0x96, 0x48, 0x61, 0x1e, 0xde, 0x3a, 0x6a, 0x27, 0xa3, 0x17, 0xdf, 0xa5, 0xb3, + 0x6c, 0xb5, 0x0a, 0xf8, 0xcb, 0xea, 0x63, 0x29, 0xec, 0x44, 0x41, 0xd1, 0x33, 0xe8, 0xae, 0xae, + 0x30, 0xf6, 0xe7, 0x31, 0x95, 0x84, 0x9b, 0xbd, 0x91, 0x36, 0x3e, 0x3a, 0xb9, 0x7f, 0xab, 0x92, + 0xbe, 0x79, 0x31, 0x99, 0x3c, 0x51, 0xa5, 0xce, 0xd1, 0x66, 0x3d, 0x84, 0xfa, 0xd9, 0x83, 0x9c, + 0xa7, 0x88, 0xd1, 0x39, 0x1c, 0x62, 0xb6, 0x4a, 0x29, 0x91, 0xc4, 0x8f, 0x42, 0x61, 0x1e, 0x8d, + 0x1a, 0xe3, 0x9e, 0xf3, 0x68, 0xe7, 0x99, 0x6d, 0x99, 0xde, 0x72, 0xa7, 0x5e, 0xb7, 0x22, 0x9b, + 0x86, 0x02, 0x3d, 0x05, 0x23, 0x4e, 0x24, 0x67, 0x51, 0x86, 0x49, 0xe4, 0x17, 0xae, 0xb9, 0xb3, + 0x8b, 0x6b, 0xee, 0xd4, 0xb0, 0x99, 0xf2, 0xcf, 0x25, 0xa0, 0x5a, 0xb7, 0x3e, 0x5e, 0x06, 0xc9, + 0x82, 0x08, 0xd3, 0x50, 0x5c, 0x9f, 0xef, 0x6e, 0xa6, 0x3a, 0xf4, 0xc8, 0x55, 0x9c, 0x2b, 0xb4, + 0x6c, 0x78, 0x5c, 0xb3, 0x4f, 0x0a, 0x72, 0x34, 0x83, 0x77, 0x78, 0x59, 0xe4, 0x6f, 0x2d, 0x9d, + 0xe3, 0xdd, 0x57, 0xc6, 0x71, 0x85, 0x9f, 0x55, 0xcb, 0xa7, 0xff, 0xe3, 0x3e, 0xe8, 0xb9, 0xa3, + 0xd1, 0x03, 0xd0, 0xf3, 0x79, 0x94, 0x3b, 0xec, 0x35, 0xe3, 0x50, 0xa5, 0x08, 0x81, 0x9e, 0x06, + 0x72, 0xa9, 0x96, 0x56, 0xc7, 0x53, 0x31, 0x7a, 0x1f, 0x9a, 0x62, 0x19, 0x3c, 0x7c, 0x70, 0x62, + 0xea, 0xb9, 0xb7, 0xbc, 0xf2, 0xe9, 0x15, 0xd9, 0x35, 0xff, 0xbf, 0xec, 0xfe, 0xb9, 0x73, 0x5b, + 0x6f, 0xbd, 0x73, 0xdb, 0x6f, 0xbe, 0x73, 0xcf, 0xf4, 0x76, 0xc3, 0xd0, 0xcf, 0xf4, 0xf6, 0x81, + 0xd1, 0xec, 0xff, 0xa4, 0x01, 0x7a, 0xf5, 0x3b, 0xa2, 0x47, 0xa0, 0xbf, 0xe9, 0x4f, 0x41, 0x01, + 0xd0, 0x57, 0xb0, 0xef, 0x4e, 0xd5, 0x50, 0xdf, 0x42, 0xf6, 0xfb, 0xee, 0x14, 0x3d, 0x04, 0x3d, + 0x57, 0x91, 0xd9, 0x50, 0x27, 0x78, 0xfd, 0x42, 0xf6, 0x54, 0xf9, 0x99, 0xde, 0x6e, 0x1a, 0xad, + 0x4f, 0xee, 0xc1, 0x96, 0x41, 0x11, 0x40, 0xf3, 0xeb, 0x40, 0x12, 0x21, 0x8d, 0x3d, 0xd4, 0x82, + 0xc6, 0x63, 0x4a, 0x0d, 0xcd, 0xb9, 0x7f, 0xfd, 0xfb, 0x60, 0xef, 0x7a, 0x33, 0xd0, 0x7e, 0xde, + 0x0c, 0xb4, 0x5f, 0x36, 0x03, 0xed, 0xb7, 0xcd, 0x40, 0xfb, 0xe1, 0x8f, 0xc1, 0xde, 0x79, 0xe7, + 0x46, 0xf2, 0x61, 0x53, 0xfd, 0x3d, 0x4f, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x47, 0x06, 0x10, + 0x8e, 0xfb, 0x07, 0x00, 0x00, } diff --git a/pkg/ccl/backupccl/backup.proto b/pkg/ccl/backupccl/backup.proto index 483ad8443ca1..0b40ac1e4ee0 100644 --- a/pkg/ccl/backupccl/backup.proto +++ b/pkg/ccl/backupccl/backup.proto @@ -54,6 +54,9 @@ message BackupDescriptor { util.hlc.Timestamp start_time = 1 [(gogoproto.nullable) = false]; util.hlc.Timestamp end_time = 2 [(gogoproto.nullable) = false]; MVCCFilter mvcc_filter = 13 [(gogoproto.customname) = "MVCCFilter"]; + // Even if StartTime is zero, we only get revisions since gc threshold, so + // do not allow AS OF SYSTEM TIME before revision_start_time. + util.hlc.Timestamp revision_start_time = 17 [(gogoproto.nullable) = false]; // Spans contains the spans requested for backup. The keyranges covered by // `files` may be a subset of this if there were ranges with no changes since diff --git a/pkg/ccl/backupccl/backup_test.go b/pkg/ccl/backupccl/backup_test.go index 94c350ef2bf0..0b510e86b5fd 100644 --- a/pkg/ccl/backupccl/backup_test.go +++ b/pkg/ccl/backupccl/backup_test.go @@ -36,12 +36,14 @@ import ( "github.com/cockroachdb/cockroach/pkg/base" "github.com/cockroachdb/cockroach/pkg/ccl/backupccl" "github.com/cockroachdb/cockroach/pkg/ccl/utilccl/sampledataccl" + "github.com/cockroachdb/cockroach/pkg/internal/client" "github.com/cockroachdb/cockroach/pkg/keys" "github.com/cockroachdb/cockroach/pkg/roachpb" "github.com/cockroachdb/cockroach/pkg/security" "github.com/cockroachdb/cockroach/pkg/settings/cluster" "github.com/cockroachdb/cockroach/pkg/sql" "github.com/cockroachdb/cockroach/pkg/sql/jobs" + "github.com/cockroachdb/cockroach/pkg/sql/sem/tree" "github.com/cockroachdb/cockroach/pkg/sql/sqlbase" "github.com/cockroachdb/cockroach/pkg/storage" "github.com/cockroachdb/cockroach/pkg/testutils" @@ -1917,6 +1919,46 @@ func TestRestoreAsOfSystemTime(t *testing.T) { }) } +func TestRestoreAsOfSystemTimeGCBounds(t *testing.T) { + defer leaktest.AfterTest(t)() + + const numAccounts = 10 + ctx, tc, sqlDB, _, cleanupFn := backupRestoreTestSetup(t, singleNode, numAccounts, initNone) + defer cleanupFn() + const dir = "nodelocal:///" + preGC := tree.TimestampToDecimal(tc.Server(0).Clock().Now()).String() + + gcr := roachpb.GCRequest{ + // Bogus span to make it a valid request. + Span: roachpb.Span{ + Key: keys.MakeTablePrefix(keys.MaxReservedDescID + 1), + EndKey: keys.MaxKey, + }, + Threshold: tc.Server(0).Clock().Now(), + } + if _, err := client.SendWrapped(ctx, tc.Server(0).DistSender(), &gcr); err != nil { + t.Fatal(err) + } + + postGC := tree.TimestampToDecimal(tc.Server(0).Clock().Now()).String() + + lateFullTableBackup := filepath.Join(dir, "tbl-after-gc") + sqlDB.Exec(t, `BACKUP data.bank TO $1 WITH experimental_revision_history`, lateFullTableBackup) + sqlDB.Exec(t, `DROP TABLE data.bank`) + if _, err := sqlDB.DB.Exec( + fmt.Sprintf(`RESTORE data.bank FROM $1 EXPERIMENTAL AS OF SYSTEM TIME %s`, preGC), + lateFullTableBackup, + ); !testutils.IsError(err, `BACKUP only has revision history from`) { + t.Fatal(err) + } + if _, err := sqlDB.DB.Exec( + fmt.Sprintf(`RESTORE data.bank FROM $1 EXPERIMENTAL AS OF SYSTEM TIME %s`, postGC), + lateFullTableBackup, + ); err != nil { + t.Fatal(err) + } +} + func TestAsOfSystemTimeOnRestoredData(t *testing.T) { defer leaktest.AfterTest(t)() diff --git a/pkg/ccl/backupccl/restore.go b/pkg/ccl/backupccl/restore.go index e65096256de0..2aa8d3fca6b8 100644 --- a/pkg/ccl/backupccl/restore.go +++ b/pkg/ccl/backupccl/restore.go @@ -1202,9 +1202,24 @@ func doRestorePlan( if !endTime.IsEmpty() { for _, b := range backupDescs { - if b.StartTime.Less(endTime) && endTime.Less(b.EndTime) && b.MVCCFilter != MVCCFilter_All { - return errors.Errorf( - "incompatible RESTORE timestamp (BACKUP needs option '%s')", backupOptRevisionHistory) + // Find the backup that covers the requested time. + if b.StartTime.Less(endTime) && !b.EndTime.Less(endTime) { + // Ensure that the backup actually has revision history. + if b.MVCCFilter != MVCCFilter_All { + return errors.Errorf( + "incompatible RESTORE timestamp (BACKUP needs option '%s')", backupOptRevisionHistory, + ) + } + // Ensure that the revision history actually covers the requested time - + // while the BACKUP's start and end might contain the requested time for + // example if start time is 0 (full backup), the revision history was + // only captured since the GC window. Note that the RevisionStartTime is + // the latest for ranges backed up. + if !b.RevisionStartTime.Less(endTime) { + return errors.Errorf( + "incompatible RESTORE timestamp (BACKUP only has revision history from %v)", b.RevisionStartTime, + ) + } } } } diff --git a/pkg/ccl/storageccl/export.go b/pkg/ccl/storageccl/export.go index 3d266ba68077..bb72e863cc23 100644 --- a/pkg/ccl/storageccl/export.go +++ b/pkg/ccl/storageccl/export.go @@ -23,7 +23,6 @@ import ( "github.com/cockroachdb/cockroach/pkg/storage/engine" "github.com/cockroachdb/cockroach/pkg/storage/spanset" "github.com/cockroachdb/cockroach/pkg/util/encoding" - "github.com/cockroachdb/cockroach/pkg/util/hlc" "github.com/cockroachdb/cockroach/pkg/util/log" "github.com/cockroachdb/cockroach/pkg/util/tracing" "github.com/pkg/errors" @@ -106,15 +105,20 @@ func evalExport( defer tracing.FinishSpan(span) // If the startTime is zero, then we're doing a full backup and the gc - // threshold is irrelevant. Otherwise, make sure startTime is after the gc - // threshold. If it's not, the mvcc tombstones could have been deleted and - // the resulting RocksDB tombstones compacted, which means we'd miss - // deletions in the incremental backup. + // threshold is irrelevant for MVCC_Lastest backups. Otherwise, make sure + // startTime is after the gc threshold. If it's not, the mvcc tombstones could + // have been deleted and the resulting RocksDB tombstones compacted, which + // means we'd miss deletions in the incremental backup. For MVCC_All backups + // with no start time, they'll only be capturing the *revisions* since the + // gc threshold, so noting that in the reply allows the BACKUP to correctly + // note the supported time bounds for RESTORE AS OF SYSTEM TIME. gcThreshold := cArgs.EvalCtx.GetGCThreshold() - if args.StartTime != (hlc.Timestamp{}) { + if !args.StartTime.IsEmpty() { if !gcThreshold.Less(args.StartTime) { return result.Result{}, errors.Errorf("start timestamp %v must be after replica GC threshold %v", args.StartTime, gcThreshold) } + } else if args.MVCCFilter == roachpb.MVCCFilter_All { + reply.StartTime = gcThreshold } if err := exportRequestLimiter.beginLimitedRequest(ctx); err != nil { diff --git a/pkg/roachpb/api.pb.go b/pkg/roachpb/api.pb.go index 0b21a8269730..782af39bf4a6 100644 --- a/pkg/roachpb/api.pb.go +++ b/pkg/roachpb/api.pb.go @@ -1622,7 +1622,8 @@ func (*BulkOpSummary) Descriptor() ([]byte, []int) { return fileDescriptorApi, [ // ExportResponse is the response to an Export() operation. type ExportResponse struct { ResponseHeader `protobuf:"bytes,1,opt,name=header,embedded=header" json:"header"` - Files []ExportResponse_File `protobuf:"bytes,2,rep,name=files" json:"files"` + Files []ExportResponse_File `protobuf:"bytes,2,rep,name=files" json:"files"` + StartTime cockroach_util_hlc.Timestamp `protobuf:"bytes,3,opt,name=start_time,json=startTime" json:"start_time"` } func (m *ExportResponse) Reset() { *m = ExportResponse{} } @@ -6644,6 +6645,14 @@ func (m *ExportResponse) MarshalTo(dAtA []byte) (int, error) { i += n } } + dAtA[i] = 0x1a + i++ + i = encodeVarintApi(dAtA, i, uint64(m.StartTime.Size())) + n110, err := m.StartTime.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n110 return i, nil } @@ -6665,11 +6674,11 @@ func (m *ExportResponse_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n110, err := m.Span.MarshalTo(dAtA[i:]) + n111, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n110 + i += n111 if len(m.Path) > 0 { dAtA[i] = 0x12 i++ @@ -6685,11 +6694,11 @@ func (m *ExportResponse_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.Exported.Size())) - n111, err := m.Exported.MarshalTo(dAtA[i:]) + n112, err := m.Exported.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n111 + i += n112 if len(m.SST) > 0 { dAtA[i] = 0x3a i++ @@ -6717,11 +6726,11 @@ func (m *ImportRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n112, err := m.Span.MarshalTo(dAtA[i:]) + n113, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n112 + i += n113 if len(m.Files) > 0 { for _, msg := range m.Files { dAtA[i] = 0x12 @@ -6737,11 +6746,11 @@ func (m *ImportRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.DataSpan.Size())) - n113, err := m.DataSpan.MarshalTo(dAtA[i:]) + n114, err := m.DataSpan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n113 + i += n114 if len(m.Rekeys) > 0 { for _, msg := range m.Rekeys { dAtA[i] = 0x2a @@ -6757,11 +6766,11 @@ func (m *ImportRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.EndTime.Size())) - n114, err := m.EndTime.MarshalTo(dAtA[i:]) + n115, err := m.EndTime.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n114 + i += n115 return i, nil } @@ -6783,11 +6792,11 @@ func (m *ImportRequest_File) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Dir.Size())) - n115, err := m.Dir.MarshalTo(dAtA[i:]) + n116, err := m.Dir.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n115 + i += n116 if len(m.Path) > 0 { dAtA[i] = 0x12 i++ @@ -6850,19 +6859,19 @@ func (m *ImportResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n116, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n117, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n116 + i += n117 dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.Imported.Size())) - n117, err := m.Imported.MarshalTo(dAtA[i:]) + n118, err := m.Imported.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n117 + i += n118 return i, nil } @@ -6884,11 +6893,11 @@ func (m *AdminScatterRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n118, err := m.Span.MarshalTo(dAtA[i:]) + n119, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n118 + i += n119 if m.RandomizeLeases { dAtA[i] = 0x10 i++ @@ -6920,11 +6929,11 @@ func (m *AdminScatterResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n119, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n120, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n119 + i += n120 if len(m.Ranges) > 0 { for _, msg := range m.Ranges { dAtA[i] = 0x12 @@ -6958,11 +6967,11 @@ func (m *AdminScatterResponse_Range) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n120, err := m.Span.MarshalTo(dAtA[i:]) + n121, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n120 + i += n121 return i, nil } @@ -6984,11 +6993,11 @@ func (m *AddSSTableRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n121, err := m.Span.MarshalTo(dAtA[i:]) + n122, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n121 + i += n122 if len(m.Data) > 0 { dAtA[i] = 0x12 i++ @@ -7016,11 +7025,11 @@ func (m *AddSSTableResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n122, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n123, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n122 + i += n123 return i, nil } @@ -7042,11 +7051,11 @@ func (m *RefreshRequest) 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 m.Write { dAtA[i] = 0x10 i++ @@ -7078,11 +7087,11 @@ func (m *RefreshResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n124, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n125, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n124 + i += n125 return i, nil } @@ -7104,11 +7113,11 @@ func (m *RefreshRangeRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Span.Size())) - n125, err := m.Span.MarshalTo(dAtA[i:]) + n126, err := m.Span.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n125 + i += n126 if m.Write { dAtA[i] = 0x10 i++ @@ -7140,11 +7149,11 @@ func (m *RefreshRangeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.ResponseHeader.Size())) - n126, err := m.ResponseHeader.MarshalTo(dAtA[i:]) + n127, err := m.ResponseHeader.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n126 + i += n127 return i, nil } @@ -7167,151 +7176,151 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Get.Size())) - n127, err := m.Get.MarshalTo(dAtA[i:]) + n128, err := m.Get.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n127 + i += n128 } if m.Put != nil { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Put.Size())) - n128, err := m.Put.MarshalTo(dAtA[i:]) + n129, err := m.Put.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n128 + i += n129 } if m.ConditionalPut != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.ConditionalPut.Size())) - n129, err := m.ConditionalPut.MarshalTo(dAtA[i:]) + n130, err := m.ConditionalPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n129 + i += n130 } if m.Increment != nil { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.Increment.Size())) - n130, err := m.Increment.MarshalTo(dAtA[i:]) + n131, err := m.Increment.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n130 + i += n131 } if m.Delete != nil { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Delete.Size())) - n131, err := m.Delete.MarshalTo(dAtA[i:]) + n132, err := m.Delete.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n131 + i += n132 } if m.DeleteRange != nil { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.DeleteRange.Size())) - n132, err := m.DeleteRange.MarshalTo(dAtA[i:]) + n133, err := m.DeleteRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n132 + i += n133 } if m.Scan != nil { dAtA[i] = 0x3a i++ i = encodeVarintApi(dAtA, i, uint64(m.Scan.Size())) - n133, err := m.Scan.MarshalTo(dAtA[i:]) + n134, err := m.Scan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n133 + i += n134 } if m.BeginTransaction != nil { dAtA[i] = 0x42 i++ i = encodeVarintApi(dAtA, i, uint64(m.BeginTransaction.Size())) - n134, err := m.BeginTransaction.MarshalTo(dAtA[i:]) + n135, err := m.BeginTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n134 + i += n135 } if m.EndTransaction != nil { dAtA[i] = 0x4a i++ i = encodeVarintApi(dAtA, i, uint64(m.EndTransaction.Size())) - n135, err := m.EndTransaction.MarshalTo(dAtA[i:]) + n136, err := m.EndTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n135 + i += n136 } if m.AdminSplit != nil { dAtA[i] = 0x52 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminSplit.Size())) - n136, err := m.AdminSplit.MarshalTo(dAtA[i:]) + n137, err := m.AdminSplit.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n136 + i += n137 } if m.AdminMerge != nil { dAtA[i] = 0x5a i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminMerge.Size())) - n137, err := m.AdminMerge.MarshalTo(dAtA[i:]) + n138, err := m.AdminMerge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n137 + i += n138 } if m.HeartbeatTxn != nil { dAtA[i] = 0x62 i++ i = encodeVarintApi(dAtA, i, uint64(m.HeartbeatTxn.Size())) - n138, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) + n139, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n138 + i += n139 } if m.Gc != nil { dAtA[i] = 0x6a i++ i = encodeVarintApi(dAtA, i, uint64(m.Gc.Size())) - n139, err := m.Gc.MarshalTo(dAtA[i:]) + n140, err := m.Gc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n139 + i += n140 } if m.PushTxn != nil { dAtA[i] = 0x72 i++ i = encodeVarintApi(dAtA, i, uint64(m.PushTxn.Size())) - n140, err := m.PushTxn.MarshalTo(dAtA[i:]) + n141, err := m.PushTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n140 + i += n141 } if m.DeprecatedRangeLookup != nil { dAtA[i] = 0x7a i++ i = encodeVarintApi(dAtA, i, uint64(m.DeprecatedRangeLookup.Size())) - n141, err := m.DeprecatedRangeLookup.MarshalTo(dAtA[i:]) + n142, err := m.DeprecatedRangeLookup.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n141 + i += n142 } if m.ResolveIntent != nil { dAtA[i] = 0x82 @@ -7319,11 +7328,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntent.Size())) - n142, err := m.ResolveIntent.MarshalTo(dAtA[i:]) + n143, err := m.ResolveIntent.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n142 + i += n143 } if m.ResolveIntentRange != nil { dAtA[i] = 0x8a @@ -7331,11 +7340,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntentRange.Size())) - n143, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) + n144, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n143 + i += n144 } if m.Merge != nil { dAtA[i] = 0x92 @@ -7343,11 +7352,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.Merge.Size())) - n144, err := m.Merge.MarshalTo(dAtA[i:]) + n145, err := m.Merge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n144 + i += n145 } if m.TruncateLog != nil { dAtA[i] = 0x9a @@ -7355,11 +7364,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.TruncateLog.Size())) - n145, err := m.TruncateLog.MarshalTo(dAtA[i:]) + n146, err := m.TruncateLog.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n145 + i += n146 } if m.RequestLease != nil { dAtA[i] = 0xa2 @@ -7367,11 +7376,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestLease.Size())) - n146, err := m.RequestLease.MarshalTo(dAtA[i:]) + n147, err := m.RequestLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n146 + i += n147 } if m.ReverseScan != nil { dAtA[i] = 0xaa @@ -7379,11 +7388,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ReverseScan.Size())) - n147, err := m.ReverseScan.MarshalTo(dAtA[i:]) + n148, err := m.ReverseScan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n147 + i += n148 } if m.ComputeChecksum != nil { dAtA[i] = 0xb2 @@ -7391,11 +7400,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ComputeChecksum.Size())) - n148, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) + n149, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n148 + i += n149 } if m.DeprecatedVerifyChecksum != nil { dAtA[i] = 0xba @@ -7403,11 +7412,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.DeprecatedVerifyChecksum.Size())) - n149, err := m.DeprecatedVerifyChecksum.MarshalTo(dAtA[i:]) + n150, err := m.DeprecatedVerifyChecksum.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n149 + i += n150 } if m.CheckConsistency != nil { dAtA[i] = 0xc2 @@ -7415,11 +7424,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.CheckConsistency.Size())) - n150, err := m.CheckConsistency.MarshalTo(dAtA[i:]) + n151, err := m.CheckConsistency.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n150 + i += n151 } if m.Noop != nil { dAtA[i] = 0xca @@ -7427,11 +7436,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.Noop.Size())) - n151, err := m.Noop.MarshalTo(dAtA[i:]) + n152, err := m.Noop.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n151 + i += n152 } if m.InitPut != nil { dAtA[i] = 0xd2 @@ -7439,11 +7448,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.InitPut.Size())) - n152, err := m.InitPut.MarshalTo(dAtA[i:]) + n153, err := m.InitPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n152 + i += n153 } if m.TransferLease != nil { dAtA[i] = 0xe2 @@ -7451,11 +7460,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.TransferLease.Size())) - n153, err := m.TransferLease.MarshalTo(dAtA[i:]) + n154, err := m.TransferLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n153 + i += n154 } if m.AdminTransferLease != nil { dAtA[i] = 0xea @@ -7463,11 +7472,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminTransferLease.Size())) - n154, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) + n155, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n154 + i += n155 } if m.LeaseInfo != nil { dAtA[i] = 0xf2 @@ -7475,11 +7484,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.LeaseInfo.Size())) - n155, err := m.LeaseInfo.MarshalTo(dAtA[i:]) + n156, err := m.LeaseInfo.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n155 + i += n156 } if m.WriteBatch != nil { dAtA[i] = 0xfa @@ -7487,11 +7496,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.WriteBatch.Size())) - n156, err := m.WriteBatch.MarshalTo(dAtA[i:]) + n157, err := m.WriteBatch.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n156 + i += n157 } if m.Export != nil { dAtA[i] = 0x82 @@ -7499,11 +7508,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Export.Size())) - n157, err := m.Export.MarshalTo(dAtA[i:]) + n158, err := m.Export.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n157 + i += n158 } if m.QueryTxn != nil { dAtA[i] = 0x8a @@ -7511,11 +7520,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.QueryTxn.Size())) - n158, err := m.QueryTxn.MarshalTo(dAtA[i:]) + n159, err := m.QueryTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n158 + i += n159 } if m.Import != nil { dAtA[i] = 0x92 @@ -7523,11 +7532,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Import.Size())) - n159, err := m.Import.MarshalTo(dAtA[i:]) + n160, err := m.Import.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n159 + i += n160 } if m.AdminChangeReplicas != nil { dAtA[i] = 0x9a @@ -7535,11 +7544,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminChangeReplicas.Size())) - n160, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) + n161, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n160 + i += n161 } if m.AdminScatter != nil { dAtA[i] = 0xa2 @@ -7547,11 +7556,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminScatter.Size())) - n161, err := m.AdminScatter.MarshalTo(dAtA[i:]) + n162, err := m.AdminScatter.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n161 + i += n162 } if m.AddSstable != nil { dAtA[i] = 0xaa @@ -7559,11 +7568,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AddSstable.Size())) - n162, err := m.AddSstable.MarshalTo(dAtA[i:]) + n163, err := m.AddSstable.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n162 + i += n163 } if m.ClearRange != nil { dAtA[i] = 0xb2 @@ -7571,11 +7580,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.ClearRange.Size())) - n163, err := m.ClearRange.MarshalTo(dAtA[i:]) + n164, err := m.ClearRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n163 + i += n164 } if m.RecomputeStats != nil { dAtA[i] = 0xba @@ -7583,11 +7592,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RecomputeStats.Size())) - n164, err := m.RecomputeStats.MarshalTo(dAtA[i:]) + n165, err := m.RecomputeStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n164 + i += n165 } if m.Refresh != nil { dAtA[i] = 0xc2 @@ -7595,11 +7604,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Refresh.Size())) - n165, err := m.Refresh.MarshalTo(dAtA[i:]) + n166, err := m.Refresh.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n165 + i += n166 } if m.RefreshRange != nil { dAtA[i] = 0xca @@ -7607,11 +7616,11 @@ func (m *RequestUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RefreshRange.Size())) - n166, err := m.RefreshRange.MarshalTo(dAtA[i:]) + n167, err := m.RefreshRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n166 + i += n167 } return i, nil } @@ -7635,151 +7644,151 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Get.Size())) - n167, err := m.Get.MarshalTo(dAtA[i:]) + n168, err := m.Get.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n167 + i += n168 } if m.Put != nil { dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Put.Size())) - n168, err := m.Put.MarshalTo(dAtA[i:]) + n169, err := m.Put.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n168 + i += n169 } if m.ConditionalPut != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.ConditionalPut.Size())) - n169, err := m.ConditionalPut.MarshalTo(dAtA[i:]) + n170, err := m.ConditionalPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n169 + i += n170 } if m.Increment != nil { dAtA[i] = 0x22 i++ i = encodeVarintApi(dAtA, i, uint64(m.Increment.Size())) - n170, err := m.Increment.MarshalTo(dAtA[i:]) + n171, err := m.Increment.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n170 + i += n171 } if m.Delete != nil { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Delete.Size())) - n171, err := m.Delete.MarshalTo(dAtA[i:]) + n172, err := m.Delete.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n171 + i += n172 } if m.DeleteRange != nil { dAtA[i] = 0x32 i++ i = encodeVarintApi(dAtA, i, uint64(m.DeleteRange.Size())) - n172, err := m.DeleteRange.MarshalTo(dAtA[i:]) + n173, err := m.DeleteRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n172 + i += n173 } if m.Scan != nil { dAtA[i] = 0x3a i++ i = encodeVarintApi(dAtA, i, uint64(m.Scan.Size())) - n173, err := m.Scan.MarshalTo(dAtA[i:]) + n174, err := m.Scan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n173 + i += n174 } if m.BeginTransaction != nil { dAtA[i] = 0x42 i++ i = encodeVarintApi(dAtA, i, uint64(m.BeginTransaction.Size())) - n174, err := m.BeginTransaction.MarshalTo(dAtA[i:]) + n175, err := m.BeginTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n174 + i += n175 } if m.EndTransaction != nil { dAtA[i] = 0x4a i++ i = encodeVarintApi(dAtA, i, uint64(m.EndTransaction.Size())) - n175, err := m.EndTransaction.MarshalTo(dAtA[i:]) + n176, err := m.EndTransaction.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n175 + i += n176 } if m.AdminSplit != nil { dAtA[i] = 0x52 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminSplit.Size())) - n176, err := m.AdminSplit.MarshalTo(dAtA[i:]) + n177, err := m.AdminSplit.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n176 + i += n177 } if m.AdminMerge != nil { dAtA[i] = 0x5a i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminMerge.Size())) - n177, err := m.AdminMerge.MarshalTo(dAtA[i:]) + n178, err := m.AdminMerge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n177 + i += n178 } if m.HeartbeatTxn != nil { dAtA[i] = 0x62 i++ i = encodeVarintApi(dAtA, i, uint64(m.HeartbeatTxn.Size())) - n178, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) + n179, err := m.HeartbeatTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n178 + i += n179 } if m.Gc != nil { dAtA[i] = 0x6a i++ i = encodeVarintApi(dAtA, i, uint64(m.Gc.Size())) - n179, err := m.Gc.MarshalTo(dAtA[i:]) + n180, err := m.Gc.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n179 + i += n180 } if m.PushTxn != nil { dAtA[i] = 0x72 i++ i = encodeVarintApi(dAtA, i, uint64(m.PushTxn.Size())) - n180, err := m.PushTxn.MarshalTo(dAtA[i:]) + n181, err := m.PushTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n180 + i += n181 } if m.DeprecatedRangeLookup != nil { dAtA[i] = 0x7a i++ i = encodeVarintApi(dAtA, i, uint64(m.DeprecatedRangeLookup.Size())) - n181, err := m.DeprecatedRangeLookup.MarshalTo(dAtA[i:]) + n182, err := m.DeprecatedRangeLookup.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n181 + i += n182 } if m.ResolveIntent != nil { dAtA[i] = 0x82 @@ -7787,11 +7796,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntent.Size())) - n182, err := m.ResolveIntent.MarshalTo(dAtA[i:]) + n183, err := m.ResolveIntent.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n182 + i += n183 } if m.ResolveIntentRange != nil { dAtA[i] = 0x8a @@ -7799,11 +7808,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ResolveIntentRange.Size())) - n183, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) + n184, err := m.ResolveIntentRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n183 + i += n184 } if m.Merge != nil { dAtA[i] = 0x92 @@ -7811,11 +7820,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.Merge.Size())) - n184, err := m.Merge.MarshalTo(dAtA[i:]) + n185, err := m.Merge.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n184 + i += n185 } if m.TruncateLog != nil { dAtA[i] = 0x9a @@ -7823,11 +7832,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.TruncateLog.Size())) - n185, err := m.TruncateLog.MarshalTo(dAtA[i:]) + n186, err := m.TruncateLog.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n185 + i += n186 } if m.RequestLease != nil { dAtA[i] = 0xa2 @@ -7835,11 +7844,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.RequestLease.Size())) - n186, err := m.RequestLease.MarshalTo(dAtA[i:]) + n187, err := m.RequestLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n186 + i += n187 } if m.ReverseScan != nil { dAtA[i] = 0xaa @@ -7847,11 +7856,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ReverseScan.Size())) - n187, err := m.ReverseScan.MarshalTo(dAtA[i:]) + n188, err := m.ReverseScan.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n187 + i += n188 } if m.ComputeChecksum != nil { dAtA[i] = 0xb2 @@ -7859,11 +7868,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.ComputeChecksum.Size())) - n188, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) + n189, err := m.ComputeChecksum.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n188 + i += n189 } if m.DeprecatedVerifyChecksum != nil { dAtA[i] = 0xba @@ -7871,11 +7880,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.DeprecatedVerifyChecksum.Size())) - n189, err := m.DeprecatedVerifyChecksum.MarshalTo(dAtA[i:]) + n190, err := m.DeprecatedVerifyChecksum.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n189 + i += n190 } if m.CheckConsistency != nil { dAtA[i] = 0xc2 @@ -7883,11 +7892,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.CheckConsistency.Size())) - n190, err := m.CheckConsistency.MarshalTo(dAtA[i:]) + n191, err := m.CheckConsistency.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n190 + i += n191 } if m.Noop != nil { dAtA[i] = 0xca @@ -7895,11 +7904,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.Noop.Size())) - n191, err := m.Noop.MarshalTo(dAtA[i:]) + n192, err := m.Noop.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n191 + i += n192 } if m.InitPut != nil { dAtA[i] = 0xd2 @@ -7907,11 +7916,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.InitPut.Size())) - n192, err := m.InitPut.MarshalTo(dAtA[i:]) + n193, err := m.InitPut.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n192 + i += n193 } if m.AdminTransferLease != nil { dAtA[i] = 0xea @@ -7919,11 +7928,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminTransferLease.Size())) - n193, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) + n194, err := m.AdminTransferLease.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n193 + i += n194 } if m.LeaseInfo != nil { dAtA[i] = 0xf2 @@ -7931,11 +7940,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.LeaseInfo.Size())) - n194, err := m.LeaseInfo.MarshalTo(dAtA[i:]) + n195, err := m.LeaseInfo.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n194 + i += n195 } if m.WriteBatch != nil { dAtA[i] = 0xfa @@ -7943,11 +7952,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1 i++ i = encodeVarintApi(dAtA, i, uint64(m.WriteBatch.Size())) - n195, err := m.WriteBatch.MarshalTo(dAtA[i:]) + n196, err := m.WriteBatch.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n195 + i += n196 } if m.Export != nil { dAtA[i] = 0x82 @@ -7955,11 +7964,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Export.Size())) - n196, err := m.Export.MarshalTo(dAtA[i:]) + n197, err := m.Export.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n196 + i += n197 } if m.QueryTxn != nil { dAtA[i] = 0x8a @@ -7967,11 +7976,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.QueryTxn.Size())) - n197, err := m.QueryTxn.MarshalTo(dAtA[i:]) + n198, err := m.QueryTxn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n197 + i += n198 } if m.Import != nil { dAtA[i] = 0x92 @@ -7979,11 +7988,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Import.Size())) - n198, err := m.Import.MarshalTo(dAtA[i:]) + n199, err := m.Import.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n198 + i += n199 } if m.AdminChangeReplicas != nil { dAtA[i] = 0x9a @@ -7991,11 +8000,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminChangeReplicas.Size())) - n199, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) + n200, err := m.AdminChangeReplicas.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n199 + i += n200 } if m.AdminScatter != nil { dAtA[i] = 0xa2 @@ -8003,11 +8012,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AdminScatter.Size())) - n200, err := m.AdminScatter.MarshalTo(dAtA[i:]) + n201, err := m.AdminScatter.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n200 + i += n201 } if m.AddSstable != nil { dAtA[i] = 0xaa @@ -8015,11 +8024,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.AddSstable.Size())) - n201, err := m.AddSstable.MarshalTo(dAtA[i:]) + n202, err := m.AddSstable.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n201 + i += n202 } if m.ClearRange != nil { dAtA[i] = 0xb2 @@ -8027,11 +8036,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.ClearRange.Size())) - n202, err := m.ClearRange.MarshalTo(dAtA[i:]) + n203, err := m.ClearRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n202 + i += n203 } if m.RecomputeStats != nil { dAtA[i] = 0xba @@ -8039,11 +8048,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RecomputeStats.Size())) - n203, err := m.RecomputeStats.MarshalTo(dAtA[i:]) + n204, err := m.RecomputeStats.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n203 + i += n204 } if m.Refresh != nil { dAtA[i] = 0xc2 @@ -8051,11 +8060,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.Refresh.Size())) - n204, err := m.Refresh.MarshalTo(dAtA[i:]) + n205, err := m.Refresh.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n204 + i += n205 } if m.RefreshRange != nil { dAtA[i] = 0xca @@ -8063,11 +8072,11 @@ func (m *ResponseUnion) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2 i++ i = encodeVarintApi(dAtA, i, uint64(m.RefreshRange.Size())) - n205, err := m.RefreshRange.MarshalTo(dAtA[i:]) + n206, err := m.RefreshRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n205 + i += n206 } return i, nil } @@ -8090,19 +8099,19 @@ func (m *Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Timestamp.Size())) - n206, err := m.Timestamp.MarshalTo(dAtA[i:]) + n207, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n206 + i += n207 dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Replica.Size())) - n207, err := m.Replica.MarshalTo(dAtA[i:]) + n208, err := m.Replica.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n207 + i += n208 if m.RangeID != 0 { dAtA[i] = 0x18 i++ @@ -8118,11 +8127,11 @@ func (m *Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Txn.Size())) - n208, err := m.Txn.MarshalTo(dAtA[i:]) + n209, err := m.Txn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n208 + i += n209 } if m.ReadConsistency != 0 { dAtA[i] = 0x30 @@ -8163,11 +8172,11 @@ func (m *Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x62 i++ i = encodeVarintApi(dAtA, i, uint64(m.ScanOptions.Size())) - n209, err := m.ScanOptions.MarshalTo(dAtA[i:]) + n210, err := m.ScanOptions.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n209 + i += n210 } return i, nil } @@ -8190,11 +8199,11 @@ func (m *BatchRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Header.Size())) - n210, err := m.Header.MarshalTo(dAtA[i:]) + n211, err := m.Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n210 + i += n211 if len(m.Requests) > 0 { for _, msg := range m.Requests { dAtA[i] = 0x12 @@ -8228,11 +8237,11 @@ func (m *BatchResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.BatchResponse_Header.Size())) - n211, err := m.BatchResponse_Header.MarshalTo(dAtA[i:]) + n212, err := m.BatchResponse_Header.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n211 + i += n212 if len(m.Responses) > 0 { for _, msg := range m.Responses { dAtA[i] = 0x12 @@ -8267,38 +8276,38 @@ func (m *BatchResponse_Header) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintApi(dAtA, i, uint64(m.Error.Size())) - n212, err := m.Error.MarshalTo(dAtA[i:]) + n213, err := m.Error.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n212 + i += n213 } dAtA[i] = 0x12 i++ i = encodeVarintApi(dAtA, i, uint64(m.Timestamp.Size())) - n213, err := m.Timestamp.MarshalTo(dAtA[i:]) + n214, err := m.Timestamp.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n213 + i += n214 if m.Txn != nil { dAtA[i] = 0x1a i++ i = encodeVarintApi(dAtA, i, uint64(m.Txn.Size())) - n214, err := m.Txn.MarshalTo(dAtA[i:]) + n215, err := m.Txn.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n214 + i += n215 } dAtA[i] = 0x2a i++ i = encodeVarintApi(dAtA, i, uint64(m.Now.Size())) - n215, err := m.Now.MarshalTo(dAtA[i:]) + n216, err := m.Now.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n215 + i += n216 if len(m.CollectedSpans) > 0 { for _, msg := range m.CollectedSpans { dAtA[i] = 0x32 @@ -9327,6 +9336,8 @@ func (m *ExportResponse) Size() (n int) { n += 1 + l + sovApi(uint64(l)) } } + l = m.StartTime.Size() + n += 1 + l + sovApi(uint64(l)) return n } @@ -19465,6 +19476,36 @@ func (m *ExportResponse) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTime", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.StartTime.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -24628,340 +24669,340 @@ var ( func init() { proto.RegisterFile("roachpb/api.proto", fileDescriptorApi) } var fileDescriptorApi = []byte{ - // 5347 bytes of a gzipped FileDescriptorProto + // 5349 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5c, 0xdd, 0x8f, 0x1b, 0xc9, 0x56, 0x4f, 0x8f, 0xed, 0x19, 0xfb, 0xf8, 0x23, 0x9e, 0x4a, 0x26, 0x71, 0x26, 0x1f, 0x9e, 0x38, 0xdf, 0xb9, 0xbb, 0x33, 0x9b, 0x0c, 0x81, 0xfd, 0xe4, 0xee, 0xd8, 0x33, 0x49, 0xbc, 0x49, 0x66, 0xb2, 0x65, 0xcf, 0x7e, 0x5d, 0xb8, 0x4d, 0x4f, 0x77, 0x8d, 0xdd, 0xc4, 0xee, 0x76, 0xba, 0xdb, 0x99, 0x99, 0x7d, 0x41, 0xf7, 0x01, 0xc1, 0xc3, 0x82, 0xae, 0xc4, 0x4a, 0x20, 0x21, 0x5d, 0xae, - 0x04, 0x48, 0x48, 0xbc, 0xc0, 0x03, 0x0f, 0x3c, 0xdd, 0x17, 0x1e, 0x16, 0x71, 0x41, 0xfb, 0x00, - 0x12, 0x02, 0x69, 0x04, 0xc3, 0xcb, 0xd5, 0x8a, 0xbf, 0x60, 0x11, 0x08, 0xd5, 0x97, 0xdd, 0xb6, - 0xbb, 0x6d, 0x4f, 0xb6, 0xd1, 0x02, 0x4f, 0x76, 0x9d, 0xae, 0x73, 0xaa, 0xea, 0xd4, 0xa9, 0x53, - 0xbf, 0xea, 0x73, 0xaa, 0x61, 0xde, 0xb1, 0x35, 0xbd, 0xd9, 0xd9, 0x59, 0xd1, 0x3a, 0xe6, 0x72, - 0xc7, 0xb1, 0x3d, 0x1b, 0xcd, 0xeb, 0xb6, 0xfe, 0x8c, 0x91, 0x97, 0xc5, 0xc3, 0x45, 0x24, 0x6b, - 0x19, 0x9a, 0xa7, 0xf1, 0x6a, 0x8b, 0xa7, 0x25, 0x8d, 0x38, 0x8e, 0xed, 0xb8, 0x82, 0x7a, 0x46, - 0x52, 0xdb, 0xc4, 0xd3, 0x7c, 0xb5, 0xaf, 0xb8, 0x9e, 0xed, 0x68, 0x0d, 0xb2, 0x42, 0xac, 0x86, - 0x69, 0xc9, 0x1f, 0x5a, 0xef, 0x85, 0xae, 0xaf, 0x8a, 0x4a, 0x85, 0xae, 0x67, 0xb6, 0x56, 0x9a, - 0x2d, 0x7d, 0xc5, 0x33, 0xdb, 0xc4, 0xf5, 0xb4, 0x76, 0x47, 0x3c, 0x59, 0x62, 0x4f, 0x3c, 0x47, - 0xd3, 0x4d, 0xab, 0xb1, 0xe2, 0x10, 0xdd, 0x76, 0x0c, 0x62, 0xa8, 0x6e, 0x47, 0xb3, 0x64, 0x77, - 0x1a, 0x76, 0xc3, 0x66, 0x7f, 0x57, 0xe8, 0x3f, 0x4e, 0x2d, 0xfd, 0x1a, 0xa4, 0xb0, 0x66, 0x35, - 0x48, 0xd5, 0xda, 0xb5, 0xd1, 0xdb, 0x10, 0x37, 0x88, 0xab, 0x17, 0x94, 0x25, 0xe5, 0x66, 0xfa, - 0x6e, 0x69, 0x79, 0x64, 0x9c, 0xcb, 0xac, 0xee, 0x3a, 0x71, 0x75, 0xc7, 0xec, 0x78, 0xb6, 0x53, - 0x8e, 0x7f, 0x71, 0x58, 0x3c, 0x81, 0x19, 0x17, 0xfa, 0x39, 0x48, 0xb4, 0x88, 0xe6, 0x92, 0xc2, - 0x0c, 0x63, 0x2f, 0x04, 0xb0, 0x3f, 0xa6, 0xcf, 0x05, 0x13, 0xaf, 0x5c, 0xfa, 0x2c, 0x06, 0x39, - 0x4c, 0xdc, 0x8e, 0x6d, 0xb9, 0xe4, 0x21, 0xd1, 0x0c, 0xe2, 0xa0, 0xd7, 0x20, 0xe6, 0xed, 0x5b, - 0x85, 0x18, 0x13, 0x73, 0x29, 0x40, 0x4c, 0xdd, 0xd1, 0x2c, 0x57, 0xd3, 0x3d, 0xd3, 0xb6, 0x30, - 0xad, 0x8a, 0x5e, 0x87, 0xb4, 0x43, 0xdc, 0x6e, 0x9b, 0xb0, 0x01, 0x17, 0xe2, 0x8c, 0xf3, 0x6c, - 0x00, 0x67, 0xad, 0xa3, 0x59, 0x18, 0x78, 0x5d, 0xfa, 0x1f, 0x9d, 0x83, 0xa4, 0xd5, 0x6d, 0xab, - 0xcf, 0xc8, 0x81, 0x5b, 0x48, 0x2c, 0x29, 0x37, 0x63, 0x78, 0xce, 0xea, 0xb6, 0x1f, 0x91, 0x03, - 0x17, 0x55, 0x20, 0xed, 0xd0, 0xe1, 0xaa, 0xa6, 0xb5, 0x6b, 0xbb, 0x85, 0xd9, 0xa5, 0xd8, 0xcd, - 0xf4, 0xdd, 0x0b, 0x61, 0x4a, 0xa1, 0x0a, 0x14, 0x23, 0x03, 0x47, 0x12, 0x5c, 0x54, 0x83, 0xac, - 0xe8, 0x99, 0x43, 0x34, 0xd7, 0xb6, 0x0a, 0x73, 0x4b, 0xca, 0xcd, 0xdc, 0xdd, 0xe5, 0x20, 0x31, - 0x03, 0x5a, 0xa0, 0xc5, 0x6e, 0x9b, 0x60, 0xc6, 0x85, 0x33, 0x8e, 0xaf, 0x54, 0xfa, 0x18, 0x32, - 0xfe, 0xa7, 0x08, 0x41, 0x0e, 0x6f, 0xd4, 0xb6, 0x9f, 0x6c, 0xa8, 0xdb, 0x9b, 0x8f, 0x36, 0xb7, - 0x3e, 0xdc, 0xcc, 0x9f, 0x40, 0xa7, 0x21, 0x2f, 0x68, 0x8f, 0x36, 0x3e, 0x56, 0x1f, 0x57, 0x9f, - 0x54, 0xeb, 0x79, 0x05, 0x9d, 0x83, 0x05, 0x41, 0xc5, 0x6b, 0x9b, 0x0f, 0x36, 0xd4, 0xf2, 0xd6, - 0xf6, 0xe6, 0xfa, 0x1a, 0xfe, 0x38, 0x3f, 0xb3, 0x18, 0xff, 0xcd, 0x3f, 0xbc, 0x74, 0xa2, 0xf4, - 0x04, 0xe0, 0x01, 0xf1, 0x30, 0x79, 0xde, 0x25, 0xae, 0x87, 0xde, 0x80, 0xd9, 0x26, 0xeb, 0x8d, - 0x30, 0x89, 0x30, 0x95, 0x96, 0x93, 0x74, 0xe0, 0x5f, 0x1e, 0x16, 0x15, 0x2c, 0x18, 0xde, 0x8c, - 0xff, 0xec, 0xc7, 0x45, 0xa5, 0xf4, 0x13, 0x05, 0xd2, 0x4c, 0x1e, 0x1f, 0x1a, 0xaa, 0x0c, 0x09, - 0xbc, 0x3c, 0x51, 0x0f, 0xa3, 0xa2, 0xd1, 0x32, 0x24, 0x5e, 0x68, 0xad, 0xee, 0x38, 0x43, 0xfb, - 0x80, 0x3e, 0xc7, 0xbc, 0x1a, 0x7a, 0x0b, 0x32, 0xa6, 0xe5, 0x11, 0xcb, 0x53, 0x39, 0x5b, 0x6c, - 0x02, 0x5b, 0x9a, 0xd7, 0x66, 0x85, 0xd2, 0x9f, 0x2b, 0x00, 0x4f, 0xbb, 0x11, 0x68, 0x84, 0xae, - 0x8f, 0xa9, 0xba, 0x2d, 0xd7, 0x07, 0xef, 0xfc, 0x19, 0x98, 0x35, 0xad, 0x96, 0x69, 0xf1, 0x6e, - 0x27, 0xb1, 0x28, 0xa1, 0xd3, 0x90, 0xd8, 0x69, 0x99, 0x96, 0xc1, 0x8c, 0x3d, 0x89, 0x79, 0x41, - 0x68, 0x1d, 0x43, 0x9a, 0x75, 0x39, 0x42, 0xa5, 0x97, 0xfe, 0x59, 0x81, 0x85, 0x8a, 0x6d, 0x19, - 0x26, 0x5d, 0x75, 0x5a, 0xeb, 0xdb, 0x54, 0xc9, 0x3d, 0x48, 0x91, 0xfd, 0xce, 0x94, 0x93, 0x99, - 0x24, 0xfb, 0x1d, 0xf6, 0x6f, 0xac, 0xc6, 0x7e, 0x19, 0xce, 0x0c, 0x0f, 0x2e, 0x4a, 0xe5, 0xfd, - 0xb5, 0x02, 0xb9, 0xaa, 0x65, 0x7a, 0xdf, 0xa6, 0xd6, 0x7a, 0xc3, 0x8f, 0xf9, 0x86, 0x8f, 0x6e, - 0x43, 0x7e, 0x57, 0x33, 0x5b, 0x5b, 0x56, 0xdd, 0x6e, 0xef, 0xb8, 0x9e, 0x6d, 0x11, 0x57, 0xe8, - 0x67, 0x84, 0x2e, 0x54, 0xf5, 0x01, 0x9c, 0xec, 0x0d, 0x25, 0x4a, 0x1d, 0x3d, 0x87, 0x7c, 0xd5, - 0xd2, 0x1d, 0xd2, 0x26, 0x56, 0x14, 0x4a, 0xba, 0x00, 0x29, 0x53, 0x8a, 0x63, 0x8a, 0x8a, 0xe1, - 0x3e, 0x41, 0x0c, 0xa5, 0x0b, 0xf3, 0xbe, 0x26, 0xa3, 0x74, 0x51, 0xe7, 0x21, 0x65, 0x91, 0x3d, - 0xb5, 0x3f, 0x4d, 0x31, 0x9c, 0xb4, 0xc8, 0x1e, 0x77, 0x29, 0x4f, 0x21, 0xbb, 0x4e, 0x5a, 0xc4, - 0x23, 0x91, 0xb9, 0xd9, 0x6d, 0xc8, 0x49, 0x89, 0x51, 0x4e, 0xc9, 0xe7, 0x0a, 0x20, 0x21, 0x97, - 0xee, 0x68, 0x11, 0xcc, 0x4a, 0x91, 0x6e, 0xd4, 0x5e, 0xd7, 0xb1, 0xf8, 0x8e, 0xcb, 0x4d, 0x11, - 0x38, 0x89, 0x6d, 0xba, 0x7d, 0x77, 0x17, 0xf7, 0xbb, 0x3b, 0x3e, 0xce, 0xf7, 0xe2, 0xc9, 0x99, - 0x7c, 0xac, 0xb4, 0x07, 0xa7, 0x06, 0x7a, 0x15, 0xed, 0xc4, 0xc5, 0x59, 0xcf, 0x66, 0x96, 0x62, - 0x37, 0x33, 0xe5, 0xb9, 0xaf, 0x0f, 0x8b, 0xb1, 0x47, 0xe4, 0x00, 0x33, 0x62, 0xa9, 0x0e, 0xf3, - 0x95, 0x16, 0xd1, 0x9c, 0x88, 0xb4, 0x21, 0x26, 0xef, 0x63, 0x40, 0x7e, 0xa9, 0x51, 0x4e, 0xa0, - 0x09, 0xe9, 0x9a, 0xae, 0x59, 0x5b, 0x1d, 0xea, 0xd7, 0x5c, 0xb4, 0x0a, 0x67, 0x5c, 0xcf, 0xee, - 0xa8, 0x9a, 0xa7, 0x72, 0x64, 0xb3, 0x63, 0x77, 0x2d, 0x43, 0x73, 0x0e, 0x58, 0x1b, 0x49, 0x7c, - 0x8a, 0x3e, 0x5d, 0xf3, 0x58, 0x47, 0xca, 0xe2, 0x11, 0x9d, 0xb2, 0xb6, 0x69, 0xa9, 0x14, 0x80, - 0xb4, 0x3c, 0x57, 0x18, 0x33, 0xb4, 0x4d, 0x0b, 0x73, 0x8a, 0x18, 0xc5, 0x0f, 0x15, 0xde, 0x56, - 0x04, 0x46, 0xf2, 0x26, 0x9c, 0x33, 0x48, 0xc7, 0x21, 0xba, 0xe6, 0x11, 0x43, 0x15, 0xf6, 0xc2, - 0xf7, 0x64, 0x69, 0x32, 0x67, 0xfb, 0x15, 0x30, 0x7b, 0x5e, 0xe5, 0x8f, 0x07, 0xec, 0xe4, 0xef, - 0x14, 0xc8, 0xf0, 0x2e, 0x45, 0x69, 0x21, 0xf7, 0x20, 0xee, 0xd8, 0x7b, 0xdc, 0x42, 0xd2, 0x77, - 0xcf, 0x07, 0x88, 0x78, 0x44, 0x0e, 0xfc, 0xfe, 0x97, 0x55, 0x47, 0x65, 0x10, 0xb0, 0x42, 0x65, - 0xdc, 0xb1, 0x69, 0xb9, 0x81, 0x73, 0x61, 0x7b, 0xcf, 0x2d, 0xfd, 0xae, 0x02, 0x08, 0x93, 0x17, - 0xc4, 0x71, 0xc9, 0xff, 0x32, 0x55, 0xff, 0x83, 0x02, 0xa7, 0x06, 0x7a, 0xf6, 0xff, 0x44, 0xe3, - 0x7b, 0x70, 0xb6, 0xd2, 0x24, 0xfa, 0xb3, 0x8a, 0x6d, 0xb9, 0xa6, 0xeb, 0x11, 0x4b, 0x3f, 0x88, - 0x40, 0xeb, 0xe7, 0x21, 0xb5, 0x67, 0x7a, 0x4d, 0xd5, 0x30, 0x77, 0x77, 0xd9, 0x82, 0x4a, 0xe2, - 0x24, 0x25, 0xac, 0x9b, 0xbb, 0xbb, 0x62, 0x39, 0xa9, 0x50, 0x18, 0x6d, 0x38, 0xda, 0xed, 0x76, - 0x01, 0x13, 0xdd, 0x6e, 0x77, 0xba, 0x1e, 0xa9, 0x79, 0x9a, 0xe7, 0x46, 0x30, 0xae, 0xb3, 0x30, - 0x67, 0x38, 0x07, 0xaa, 0xd3, 0xb5, 0xc4, 0xa8, 0x66, 0x0d, 0xe7, 0x00, 0x77, 0x2d, 0x31, 0xa6, - 0xbf, 0x54, 0xe0, 0xcc, 0x70, 0x9b, 0x51, 0xda, 0xc9, 0x27, 0x90, 0xd6, 0x0c, 0x7a, 0xea, 0x35, - 0x48, 0xcb, 0xd3, 0x04, 0x3a, 0x5a, 0xf5, 0x49, 0x12, 0x47, 0xec, 0x65, 0x7e, 0xb6, 0x5e, 0x96, - 0x47, 0xec, 0xe5, 0x27, 0x1f, 0x54, 0x2a, 0x9b, 0xc4, 0xdb, 0xb3, 0x9d, 0x67, 0xac, 0x5b, 0xd2, - 0x10, 0x98, 0xb4, 0x75, 0x2a, 0xac, 0xf4, 0x09, 0x9c, 0x2d, 0x93, 0x86, 0x69, 0xf9, 0x8f, 0x9e, - 0x51, 0x6d, 0x00, 0x2a, 0x14, 0x46, 0x65, 0x47, 0x39, 0xd7, 0x7f, 0x16, 0x83, 0x85, 0x0d, 0xcb, - 0x88, 0xb4, 0xef, 0x74, 0xa7, 0xd6, 0xed, 0x76, 0xdb, 0xf4, 0xe4, 0x5c, 0xf3, 0x12, 0x7a, 0x03, - 0x92, 0x06, 0xd1, 0x8c, 0xde, 0x91, 0x25, 0x7d, 0xf7, 0xa2, 0x4f, 0x68, 0xd7, 0x33, 0x5b, 0xcb, - 0xcd, 0x96, 0xbe, 0x5c, 0x97, 0x2f, 0x30, 0x70, 0xaf, 0x3a, 0xfa, 0x15, 0x38, 0x4b, 0xd7, 0x9e, - 0x63, 0x69, 0x2d, 0x95, 0x4b, 0x53, 0x3d, 0xc7, 0x6c, 0x34, 0x88, 0x23, 0x8e, 0xf4, 0x37, 0x03, - 0xba, 0x57, 0x15, 0x1c, 0x15, 0xc6, 0x50, 0xe7, 0xf5, 0xf1, 0x82, 0x19, 0x44, 0x46, 0xef, 0xf6, - 0x8e, 0x82, 0x6e, 0x47, 0xb3, 0xe8, 0x91, 0x3f, 0x36, 0x6e, 0xd4, 0xdc, 0x0e, 0x84, 0x1b, 0xa1, - 0x14, 0x17, 0xad, 0x50, 0x04, 0xf3, 0xbc, 0x6b, 0x3a, 0x44, 0xbd, 0xd3, 0xd1, 0x0b, 0xb3, 0x74, - 0xec, 0xe5, 0xdc, 0xd1, 0x61, 0x11, 0x30, 0x27, 0xdf, 0x79, 0x5a, 0xa1, 0x88, 0x86, 0xff, 0xef, - 0xe8, 0xe8, 0x26, 0xe4, 0x2d, 0x5b, 0x75, 0xc8, 0xae, 0x43, 0xdc, 0xa6, 0x68, 0x36, 0xc9, 0x34, - 0x96, 0xb3, 0x6c, 0xcc, 0xc9, 0x4c, 0x74, 0xcf, 0xa1, 0xce, 0xe5, 0x93, 0xa5, 0xdf, 0x51, 0xe0, - 0xcc, 0xf0, 0x94, 0x45, 0xb9, 0x56, 0x6e, 0x42, 0xde, 0xb6, 0x88, 0xda, 0x69, 0x6a, 0x2e, 0x11, - 0xba, 0x16, 0x88, 0x2b, 0x67, 0x5b, 0xe4, 0x29, 0x25, 0x73, 0xcd, 0x71, 0x07, 0xff, 0x5e, 0x3c, - 0x19, 0xcb, 0xc7, 0x4b, 0x9f, 0xc2, 0xfc, 0x9a, 0xd1, 0x36, 0xad, 0x5a, 0xa7, 0x65, 0x46, 0x01, - 0xd2, 0xaf, 0x42, 0xca, 0xa5, 0xa2, 0x28, 0x1a, 0x64, 0x66, 0xe4, 0x83, 0x5c, 0x49, 0xf6, 0xe4, - 0x11, 0x39, 0xe8, 0xc3, 0x24, 0x7f, 0xdb, 0x51, 0xae, 0x8f, 0xba, 0x18, 0xd6, 0x13, 0xe2, 0x44, - 0x8b, 0xeb, 0xfc, 0x52, 0xa3, 0xec, 0xf0, 0x0f, 0x14, 0x38, 0xc7, 0x64, 0x33, 0xfb, 0xd8, 0x25, - 0x0e, 0x7b, 0xb1, 0x16, 0xc1, 0x84, 0x5c, 0x81, 0x59, 0x4f, 0x73, 0x1a, 0x84, 0x2f, 0xea, 0x44, - 0x39, 0xfd, 0xf5, 0x61, 0x71, 0xae, 0xe6, 0xd9, 0x0e, 0xa9, 0xae, 0x63, 0xf1, 0x48, 0x0c, 0x4f, - 0x83, 0xc5, 0xa0, 0x2e, 0x44, 0x39, 0xcc, 0xaf, 0x14, 0xd1, 0x46, 0xa5, 0xc9, 0xb1, 0x71, 0xa7, - 0x65, 0xea, 0x5a, 0x14, 0x3b, 0xd5, 0x06, 0xa4, 0x75, 0x26, 0x53, 0xf5, 0x0e, 0x3a, 0xfc, 0x84, - 0x96, 0xbb, 0x7b, 0x35, 0xb0, 0x8f, 0xac, 0x4d, 0xde, 0x81, 0xfa, 0x41, 0x87, 0x60, 0xd0, 0x7b, - 0xff, 0xd1, 0x3a, 0xcc, 0x71, 0x9d, 0x48, 0x78, 0x31, 0x46, 0x04, 0x5d, 0xc3, 0x75, 0x56, 0x59, - 0xb8, 0x15, 0xc9, 0x2a, 0xf4, 0xb9, 0x03, 0xe7, 0x03, 0xc7, 0x1a, 0xa5, 0x42, 0x7f, 0xa4, 0xc0, - 0x85, 0xf5, 0x3e, 0x9c, 0xa3, 0x0d, 0x3d, 0xb6, 0xed, 0x67, 0xdd, 0x4e, 0x04, 0x2a, 0xbd, 0x08, - 0xd0, 0xd6, 0xf6, 0xf9, 0xc1, 0x82, 0x1f, 0x13, 0x12, 0x38, 0xd5, 0xd6, 0xf6, 0x59, 0x2b, 0x2e, - 0x2a, 0xc0, 0x9c, 0xc3, 0x01, 0xa2, 0xf0, 0x33, 0xb2, 0xd8, 0x73, 0x7b, 0xd4, 0xc1, 0xfc, 0xa7, - 0x02, 0x17, 0x43, 0x3a, 0x18, 0xa5, 0xf7, 0x7b, 0x17, 0x66, 0x7b, 0xfd, 0x8c, 0x1d, 0xeb, 0x55, - 0xb7, 0xe0, 0x43, 0xdb, 0x30, 0xdf, 0x71, 0xc8, 0x2e, 0xf1, 0xf4, 0x26, 0x05, 0xce, 0x5c, 0x58, - 0xec, 0x98, 0xc2, 0xf2, 0x7d, 0x11, 0x5c, 0x4b, 0xa5, 0xdf, 0x52, 0xe0, 0xd4, 0x43, 0xa2, 0x39, - 0xde, 0x0e, 0xd1, 0xbc, 0xfa, 0x7e, 0x14, 0xfb, 0xf4, 0x3d, 0x88, 0x59, 0xf6, 0x9e, 0x40, 0x43, - 0xe3, 0xb7, 0x62, 0xd1, 0x2d, 0x5a, 0x5f, 0x18, 0xe5, 0xf7, 0xe0, 0xf4, 0x60, 0x77, 0xa2, 0xb4, - 0xc6, 0x3f, 0x89, 0x41, 0xea, 0x41, 0x25, 0x82, 0x21, 0xbe, 0x2d, 0x0e, 0xed, 0xe1, 0xfa, 0xef, - 0x35, 0xb3, 0xfc, 0xa0, 0xf2, 0x88, 0x1c, 0xc8, 0x73, 0x02, 0xe5, 0x42, 0x6b, 0x90, 0xf2, 0x9a, - 0x74, 0x17, 0xb6, 0x5b, 0x86, 0xc0, 0x19, 0x53, 0xa9, 0xa9, 0xcf, 0x85, 0x5a, 0xb0, 0xe0, 0xed, - 0x5b, 0x6c, 0x73, 0x57, 0x1b, 0xba, 0xda, 0x17, 0x97, 0x98, 0x46, 0xdc, 0x22, 0x15, 0x77, 0x74, - 0x58, 0x44, 0xf5, 0x7d, 0x8b, 0x8e, 0xf0, 0x41, 0xa5, 0x2e, 0x05, 0x60, 0xe4, 0x09, 0x9a, 0xde, - 0xa3, 0x2d, 0x3e, 0x83, 0x04, 0x1b, 0x05, 0x3a, 0x07, 0x31, 0xba, 0x71, 0x2a, 0x83, 0x1b, 0x27, - 0xa5, 0xb1, 0x41, 0xc9, 0x06, 0x8e, 0x33, 0xf7, 0x7d, 0x2e, 0x6e, 0x01, 0xc2, 0x0e, 0xde, 0x07, - 0xa0, 0x2a, 0x8c, 0x72, 0xf6, 0xff, 0x22, 0x06, 0xb9, 0xa7, 0x5d, 0xb7, 0x19, 0x8d, 0x95, 0x57, - 0x00, 0x3a, 0x5d, 0xb7, 0x49, 0x1c, 0xd5, 0xdb, 0xb7, 0xc4, 0x80, 0x27, 0x84, 0x8e, 0xe4, 0x88, - 0x39, 0x5f, 0x7d, 0xdf, 0x42, 0x5b, 0x42, 0x08, 0x51, 0xfb, 0xf1, 0xa7, 0xdb, 0x53, 0x9c, 0x1f, - 0xea, 0xfb, 0xd6, 0x13, 0xe2, 0x69, 0x03, 0x02, 0x09, 0x15, 0xf8, 0x36, 0xcc, 0xd1, 0x82, 0xea, - 0xd9, 0xc7, 0x31, 0xac, 0x59, 0xca, 0x53, 0xb7, 0xe5, 0xca, 0x4d, 0x1c, 0x6f, 0xe5, 0xa2, 0xb7, - 0x20, 0xc5, 0x1b, 0xa5, 0x3b, 0xdb, 0x2c, 0xdb, 0xd9, 0x82, 0x34, 0x21, 0x74, 0xcf, 0xf6, 0xb4, - 0x24, 0x6b, 0x91, 0xee, 0x68, 0xa7, 0x21, 0xb1, 0x6b, 0x3b, 0x3a, 0x61, 0x71, 0xaa, 0x24, 0xe6, - 0x85, 0x9e, 0x8b, 0x4e, 0xe6, 0x53, 0xa5, 0xdf, 0x57, 0xe0, 0x64, 0x6f, 0xde, 0xa2, 0x74, 0xca, - 0x95, 0x01, 0xed, 0x1f, 0x7f, 0x0a, 0xa9, 0xc6, 0x4b, 0x7f, 0x3c, 0x03, 0x27, 0xdf, 0xef, 0x12, - 0xe7, 0x20, 0x1a, 0xb3, 0x2a, 0xf3, 0x50, 0xe4, 0xcc, 0x4b, 0x9a, 0x02, 0x0b, 0x4e, 0x5e, 0x87, - 0x93, 0x7b, 0x9a, 0xe9, 0xa9, 0xbb, 0xb6, 0xa3, 0x76, 0x3b, 0x86, 0xe6, 0xc9, 0x50, 0x4e, 0x96, - 0x92, 0xef, 0xdb, 0xce, 0x36, 0x23, 0x22, 0x02, 0xe8, 0x99, 0x65, 0xef, 0x59, 0x2a, 0x25, 0x9b, - 0x56, 0x83, 0xaa, 0xc1, 0x2d, 0xc4, 0xd9, 0x8b, 0xc8, 0x5f, 0xf8, 0xa7, 0xc3, 0xe2, 0x6a, 0xc3, - 0xf4, 0x9a, 0xdd, 0x9d, 0x65, 0xdd, 0x6e, 0xaf, 0xf4, 0x3a, 0x62, 0xec, 0xf4, 0xff, 0xaf, 0x74, - 0x9e, 0x35, 0x56, 0x58, 0x1c, 0xb8, 0xdb, 0x35, 0x8d, 0xe5, 0xed, 0xed, 0xea, 0x3a, 0xce, 0x33, - 0x91, 0x1f, 0x72, 0x89, 0xf5, 0x7d, 0x79, 0xca, 0x28, 0x7d, 0xad, 0x40, 0xbe, 0xaf, 0xa7, 0x28, - 0xa7, 0x71, 0x03, 0xd2, 0xcf, 0xbb, 0xc4, 0x31, 0x89, 0x71, 0xec, 0x79, 0x04, 0xc1, 0x48, 0x97, - 0xce, 0x27, 0x90, 0x19, 0xd0, 0x43, 0xec, 0x9b, 0xe9, 0x21, 0xbd, 0xd7, 0x57, 0x41, 0xe9, 0xbf, - 0x14, 0x38, 0x8d, 0x89, 0x6b, 0xb7, 0x5e, 0x10, 0xfe, 0x32, 0x2b, 0x02, 0x4b, 0xd9, 0x02, 0xf1, - 0xde, 0x48, 0xfd, 0x26, 0x06, 0x93, 0xe2, 0x32, 0xb8, 0xef, 0x98, 0x75, 0x3d, 0xcd, 0xeb, 0xf2, - 0xf7, 0x70, 0xc1, 0xe8, 0xd4, 0xa7, 0xc2, 0x1a, 0xab, 0x8b, 0x05, 0x0f, 0x3d, 0x9d, 0x77, 0x6c, - 0xd3, 0xb5, 0x2d, 0xf9, 0x1e, 0x9d, 0x97, 0xc4, 0xec, 0xff, 0x12, 0x2c, 0x0c, 0x8d, 0x3f, 0x4a, - 0xcf, 0xfe, 0xb7, 0x33, 0x70, 0x6e, 0x50, 0x7c, 0x44, 0xd1, 0x83, 0xff, 0x1b, 0x3a, 0x46, 0x0f, - 0x21, 0xdb, 0x36, 0x2d, 0xb5, 0xbf, 0xff, 0x1e, 0xc3, 0x83, 0x67, 0xe8, 0x89, 0x6a, 0x70, 0x0b, - 0x2e, 0xe5, 0x20, 0xb3, 0x69, 0xdb, 0x3d, 0x08, 0x5c, 0xca, 0x42, 0x9a, 0x97, 0x99, 0x42, 0xe9, - 0x41, 0x2c, 0x48, 0xdb, 0x51, 0xce, 0xe8, 0xaf, 0x2b, 0x90, 0x89, 0xe8, 0x70, 0xfc, 0x72, 0xd1, - 0x4b, 0xa1, 0x89, 0x3a, 0x64, 0xff, 0x07, 0x4e, 0xd3, 0x3f, 0x52, 0x00, 0xd5, 0x9d, 0xae, 0x45, - 0xcf, 0x1c, 0x8f, 0xed, 0x46, 0x04, 0x63, 0x3c, 0x0d, 0x09, 0xd3, 0x32, 0xc8, 0x3e, 0x1b, 0x63, - 0x1c, 0xf3, 0x02, 0xba, 0x03, 0x49, 0x91, 0x50, 0xc2, 0x83, 0xb0, 0xb1, 0xf2, 0x99, 0xa3, 0xc3, - 0xe2, 0x1c, 0x4f, 0x1f, 0x59, 0xff, 0xba, 0xff, 0x17, 0xcf, 0xf1, 0x0c, 0x12, 0x19, 0x9d, 0xfe, - 0x04, 0x4e, 0x0d, 0xf4, 0x2f, 0xca, 0xc1, 0xff, 0x0d, 0x7b, 0x73, 0xcf, 0x46, 0x1c, 0xd5, 0x4b, - 0x84, 0x97, 0x4a, 0x04, 0x42, 0xef, 0x00, 0x74, 0x1c, 0xf2, 0x42, 0xe5, 0xac, 0xb1, 0xa9, 0x58, - 0x53, 0x94, 0x83, 0x11, 0x84, 0xa6, 0x7e, 0xaa, 0xc0, 0xe9, 0xa8, 0xdf, 0x89, 0x7c, 0x8b, 0xc3, - 0xa9, 0x41, 0x9e, 0x15, 0xab, 0xd6, 0xae, 0x1d, 0xd9, 0x7b, 0xa9, 0xdf, 0x56, 0x60, 0xde, 0x27, - 0x35, 0xca, 0xbd, 0xff, 0xe5, 0x52, 0xc0, 0xbe, 0x47, 0x77, 0x63, 0xbf, 0x05, 0x46, 0x69, 0xdf, - 0xff, 0xa1, 0xc0, 0x99, 0x0a, 0x0f, 0x39, 0xb0, 0x80, 0x8a, 0xdb, 0x6d, 0x47, 0x60, 0x13, 0x05, - 0x98, 0x7b, 0x41, 0x1c, 0xd7, 0xb4, 0xf9, 0x36, 0x94, 0xc5, 0xb2, 0x88, 0x7e, 0x15, 0xd2, 0xba, - 0x68, 0x47, 0xae, 0xf3, 0x4c, 0xb9, 0x4a, 0x05, 0xbc, 0x24, 0x74, 0x39, 0x3a, 0x2c, 0x82, 0xec, - 0x79, 0x75, 0x1d, 0x83, 0x94, 0x5e, 0x35, 0xd0, 0x22, 0x24, 0x5d, 0x4b, 0xeb, 0xb8, 0x4d, 0x5b, - 0xbe, 0xbc, 0xed, 0x95, 0xc5, 0x5c, 0x7f, 0x1f, 0xce, 0x8e, 0x0c, 0x3e, 0x4a, 0xed, 0xee, 0x40, - 0xb1, 0xff, 0xba, 0xe6, 0x03, 0xe2, 0x98, 0xbb, 0x07, 0xd1, 0x69, 0x59, 0x8c, 0xa1, 0x01, 0x4b, - 0xe1, 0x6d, 0x44, 0x39, 0x98, 0x9f, 0xce, 0x41, 0x76, 0x63, 0xbf, 0x63, 0x3b, 0x5e, 0x8d, 0x03, - 0x09, 0xb4, 0x0e, 0xc9, 0x8e, 0x63, 0xbf, 0x30, 0xa5, 0xe0, 0x5c, 0x60, 0x04, 0x62, 0x80, 0xe7, - 0xa9, 0xa8, 0x8f, 0x7b, 0x9c, 0x08, 0x43, 0xea, 0xb1, 0xad, 0x6b, 0xad, 0xfb, 0x66, 0x4b, 0xae, - 0x8c, 0xe5, 0x49, 0x62, 0x96, 0x7b, 0x1c, 0x4f, 0x35, 0xaf, 0x29, 0xfd, 0x43, 0x8f, 0x88, 0x1e, - 0x40, 0xf2, 0xa1, 0xe7, 0x75, 0xe8, 0x43, 0xe1, 0x5c, 0xae, 0x4d, 0x14, 0x49, 0x19, 0x84, 0xa4, - 0x1e, 0x33, 0xc2, 0x30, 0xff, 0xc0, 0xb6, 0x1b, 0x2d, 0x52, 0x69, 0xd9, 0x5d, 0xa3, 0x62, 0x5b, - 0xbb, 0x66, 0x43, 0x1c, 0x56, 0xaf, 0x4e, 0x94, 0xf8, 0xa0, 0x52, 0xc3, 0xa3, 0xec, 0xe8, 0xbb, - 0x90, 0xac, 0xad, 0x0a, 0x51, 0x1c, 0xfb, 0x5c, 0x99, 0x28, 0xaa, 0xb6, 0x8a, 0x7b, 0x4c, 0xe8, - 0x21, 0xa4, 0xd7, 0x3e, 0xed, 0x3a, 0x44, 0xc8, 0x98, 0x65, 0x32, 0xae, 0x4f, 0x94, 0xc1, 0x78, - 0xb0, 0x9f, 0x75, 0xf1, 0x16, 0x64, 0x07, 0x34, 0x89, 0x10, 0xc4, 0x3b, 0x54, 0x69, 0x74, 0x3a, - 0x53, 0x98, 0xfd, 0xe7, 0x76, 0xb6, 0x78, 0x1d, 0xe2, 0x54, 0x2b, 0x74, 0x6d, 0xef, 0x68, 0x2e, - 0xd9, 0x76, 0x4c, 0x51, 0x49, 0x16, 0x45, 0xbd, 0xbf, 0x52, 0x60, 0xa6, 0xb6, 0x4a, 0xd1, 0xdf, - 0x4e, 0x57, 0x7f, 0x46, 0x3c, 0x51, 0x4b, 0x94, 0x18, 0x2a, 0x74, 0xc8, 0xae, 0xc9, 0x37, 0xff, - 0x14, 0x16, 0x25, 0x74, 0x11, 0x40, 0xd3, 0x75, 0xe2, 0xba, 0x2c, 0xd8, 0x11, 0x63, 0xcf, 0x52, - 0x9c, 0xf2, 0x88, 0x1c, 0x50, 0x36, 0x97, 0xe8, 0x0e, 0xe1, 0x2b, 0x39, 0x85, 0x45, 0x89, 0xb2, - 0x79, 0xa4, 0xdd, 0x51, 0x3d, 0xfb, 0x19, 0xb1, 0x98, 0x36, 0x53, 0x38, 0x45, 0x29, 0x75, 0x4a, - 0xa0, 0x2e, 0x80, 0x58, 0x46, 0xc7, 0x36, 0x2d, 0x8f, 0xa9, 0x29, 0x85, 0x7b, 0x65, 0x2a, 0xd2, - 0x21, 0x0d, 0x53, 0x24, 0x9d, 0xa6, 0xb0, 0x28, 0x89, 0x61, 0x6c, 0x41, 0xec, 0x41, 0xa5, 0x76, - 0xec, 0x61, 0x20, 0x88, 0x6b, 0x5d, 0x61, 0x74, 0x29, 0xcc, 0xfe, 0x0b, 0x81, 0xbf, 0xa1, 0x40, - 0x82, 0xa9, 0x1e, 0x5d, 0x80, 0x94, 0x6e, 0x5b, 0x9e, 0x66, 0x5a, 0x62, 0xdd, 0xa4, 0x70, 0x9f, - 0x10, 0x2a, 0xf9, 0x32, 0x64, 0x34, 0x5d, 0xb7, 0xbb, 0x96, 0xa7, 0x5a, 0x5a, 0x9b, 0x88, 0x16, - 0xd2, 0x82, 0xb6, 0xa9, 0xb5, 0x09, 0x2a, 0x82, 0x2c, 0x32, 0x25, 0x72, 0x4d, 0x81, 0x20, 0xf5, - 0x42, 0x45, 0xc2, 0x6f, 0xfc, 0x91, 0x02, 0xf3, 0x1f, 0x3a, 0xa6, 0x47, 0xca, 0x9a, 0xa7, 0x37, - 0x23, 0x49, 0x96, 0x48, 0x19, 0x9a, 0xa7, 0xf1, 0x1c, 0xe3, 0x99, 0xf1, 0xdc, 0x62, 0x99, 0xd1, - 0xfa, 0x2c, 0xcf, 0x18, 0x41, 0x9c, 0xfe, 0xe7, 0xfb, 0x01, 0x66, 0xff, 0xfb, 0x61, 0x22, 0x7f, - 0x2f, 0xa3, 0x74, 0x68, 0x7f, 0x3f, 0x23, 0x1d, 0x5a, 0x04, 0xa3, 0x7f, 0x17, 0xe6, 0xc4, 0xf9, - 0x4a, 0x8c, 0x7d, 0x69, 0xd2, 0x7a, 0x94, 0x71, 0x0e, 0xc1, 0x86, 0xca, 0x00, 0xae, 0xa7, 0x39, - 0x1e, 0x3b, 0x19, 0x4d, 0x15, 0x1b, 0x96, 0x7e, 0x8f, 0xb1, 0x51, 0x2a, 0xda, 0x84, 0x74, 0xfb, - 0x85, 0xae, 0xab, 0xbb, 0x66, 0xcb, 0x13, 0x61, 0xe1, 0xdc, 0x80, 0x10, 0xd9, 0x93, 0x27, 0x1f, - 0x54, 0x2a, 0xf7, 0x59, 0x25, 0x1e, 0x9d, 0xed, 0x97, 0x31, 0x50, 0x09, 0xfc, 0x3f, 0x7a, 0x05, - 0x44, 0xf6, 0x99, 0xea, 0xba, 0x1e, 0x5b, 0x5e, 0xc9, 0x72, 0xf6, 0xe8, 0xb0, 0x98, 0xe2, 0xb9, - 0x2e, 0xb5, 0x5a, 0x1d, 0xa7, 0x78, 0x85, 0x9a, 0x2b, 0x37, 0xd5, 0xcf, 0x14, 0xc8, 0x96, 0xbb, - 0xad, 0x67, 0x5b, 0x9d, 0x5a, 0xb7, 0xdd, 0xd6, 0x9c, 0x03, 0x74, 0x5e, 0x5a, 0x86, 0xf9, 0x29, - 0x61, 0x9a, 0x8d, 0x89, 0xa9, 0x37, 0x3f, 0x25, 0x74, 0xea, 0x45, 0xfa, 0x0a, 0xa5, 0xf3, 0xdc, - 0x94, 0x2b, 0x90, 0x65, 0x67, 0x02, 0x95, 0x58, 0x9e, 0x63, 0x12, 0x7e, 0xfe, 0x8c, 0xe1, 0x0c, - 0x23, 0x6e, 0x70, 0x1a, 0xba, 0x06, 0x39, 0xf7, 0xc0, 0xf5, 0x48, 0x5b, 0xe5, 0xf9, 0xfc, 0x3c, - 0x33, 0x33, 0x86, 0xb3, 0x9c, 0x8a, 0x39, 0xb1, 0xf4, 0xef, 0x33, 0x90, 0x93, 0xb3, 0x1c, 0x25, - 0x98, 0x2b, 0x43, 0x62, 0xd7, 0x6c, 0xf5, 0x62, 0x24, 0xe1, 0xee, 0x57, 0x4a, 0x5a, 0xa6, 0x4e, - 0x56, 0x42, 0x3b, 0xc6, 0xba, 0xf8, 0xa5, 0x02, 0x71, 0xb6, 0x5f, 0xdd, 0x81, 0x38, 0x5b, 0x36, - 0xca, 0x34, 0xcb, 0x86, 0x55, 0xed, 0x79, 0xea, 0x99, 0xbe, 0xa7, 0x66, 0x5e, 0xb2, 0xa9, 0xdd, - 0xbb, 0x73, 0x97, 0x4d, 0x55, 0x06, 0x8b, 0x12, 0x2a, 0x43, 0x92, 0xb0, 0xbe, 0x10, 0x43, 0xec, - 0x16, 0x41, 0xd6, 0x39, 0x30, 0x69, 0x72, 0x89, 0x4a, 0x3e, 0x74, 0x0e, 0x62, 0xd4, 0x06, 0xe6, - 0xf8, 0xdb, 0xf4, 0xa3, 0xc3, 0x62, 0x8c, 0xce, 0x3e, 0xa5, 0xf1, 0xe0, 0xd4, 0x7b, 0xf1, 0x64, - 0x3c, 0x9f, 0x28, 0xfd, 0x69, 0x1c, 0xb2, 0xd5, 0x76, 0x44, 0x8b, 0x6a, 0x6d, 0x50, 0xc7, 0x41, - 0x7b, 0xf8, 0x40, 0x5b, 0xa3, 0x2a, 0x1e, 0xf4, 0x4a, 0xb1, 0xe3, 0x79, 0xa5, 0x2a, 0xdd, 0x21, - 0xc4, 0xdd, 0x07, 0xda, 0xfe, 0x77, 0x26, 0xb6, 0x5f, 0xd7, 0x76, 0x5a, 0x04, 0x53, 0x9e, 0x5e, - 0x40, 0x8c, 0x09, 0x40, 0xbf, 0xc8, 0x36, 0x22, 0xbe, 0xb4, 0x67, 0xa7, 0x5f, 0xda, 0x73, 0xc4, - 0x32, 0x28, 0x6d, 0x71, 0x5f, 0x18, 0xca, 0xeb, 0x10, 0x33, 0x4c, 0xa9, 0xc9, 0x69, 0x5d, 0x0c, - 0x65, 0x99, 0x60, 0x2f, 0x71, 0xbf, 0xbd, 0xf8, 0x63, 0x8e, 0x8b, 0x5b, 0x00, 0xfd, 0x51, 0xa1, - 0x25, 0x98, 0xb5, 0x5b, 0x06, 0x85, 0xee, 0xb4, 0x0b, 0xd9, 0x72, 0xea, 0xe8, 0xb0, 0x98, 0xd8, - 0x6a, 0x19, 0xd5, 0x75, 0x9c, 0xb0, 0x5b, 0x46, 0xd5, 0x60, 0x57, 0x46, 0xc8, 0x9e, 0xca, 0x6e, - 0xca, 0xb0, 0x9c, 0x05, 0x3c, 0x67, 0x91, 0xbd, 0x75, 0xe2, 0xea, 0xfe, 0xed, 0x47, 0x58, 0xcb, - 0x1f, 0x28, 0x90, 0x93, 0x1a, 0x8c, 0x76, 0x71, 0x26, 0xcd, 0xb6, 0x30, 0xf8, 0xd8, 0xf1, 0x0c, - 0x5e, 0xf2, 0x89, 0xd4, 0xbd, 0x1f, 0x28, 0x70, 0x8a, 0x27, 0x56, 0xe8, 0x9a, 0x47, 0xdd, 0xe3, - 0x37, 0xb7, 0xea, 0x5b, 0x90, 0x77, 0x34, 0xcb, 0xb0, 0xdb, 0xe6, 0xa7, 0x84, 0x1f, 0x80, 0x5d, - 0x91, 0x24, 0x74, 0xb2, 0x47, 0x67, 0x47, 0x3d, 0xf9, 0x36, 0xfa, 0x2b, 0x05, 0x4e, 0x0f, 0xf6, - 0x21, 0x4a, 0x5d, 0x3d, 0x1a, 0x8a, 0xf6, 0xbe, 0x1a, 0x20, 0x24, 0xa8, 0x75, 0x1e, 0xb5, 0x1d, - 0x0c, 0xfc, 0x2e, 0xbe, 0x0b, 0x09, 0x46, 0x7e, 0x09, 0x8f, 0x26, 0x14, 0xde, 0x84, 0xf9, 0x35, - 0xc3, 0xa8, 0xd5, 0x84, 0xd1, 0x7d, 0x63, 0x6d, 0x4b, 0x68, 0x31, 0x13, 0x04, 0x2d, 0xfc, 0x2d, - 0x45, 0x09, 0x2d, 0x1a, 0x90, 0x13, 0xb9, 0x4b, 0xd1, 0xbc, 0x2e, 0xdb, 0xa3, 0x10, 0x48, 0x18, - 0x09, 0x2f, 0xf4, 0xaf, 0x1b, 0xf4, 0x1a, 0x8a, 0x72, 0x00, 0x2d, 0x38, 0x25, 0xe5, 0x46, 0xf4, - 0x76, 0x7a, 0xdc, 0x28, 0xd8, 0x2b, 0x0e, 0x7f, 0x6b, 0x51, 0x0e, 0xe5, 0xb3, 0xb3, 0x90, 0x11, - 0xfd, 0xdf, 0xb6, 0x4c, 0xdb, 0x42, 0x2b, 0x10, 0x6b, 0x08, 0x40, 0x9f, 0x0e, 0x04, 0x47, 0xfd, - 0x2b, 0x5e, 0x98, 0xd6, 0xa4, 0x0c, 0x9d, 0xae, 0x17, 0x10, 0x27, 0xee, 0x07, 0x0b, 0xfb, 0x0c, - 0x9d, 0xae, 0x87, 0xde, 0x87, 0x93, 0x7a, 0xff, 0xbe, 0x8c, 0x4a, 0x99, 0x63, 0xa1, 0x19, 0x7a, - 0x81, 0xd7, 0x86, 0x70, 0x4e, 0x1f, 0x20, 0xa3, 0x35, 0xff, 0x85, 0x8d, 0x78, 0xe8, 0xa9, 0x71, - 0xf8, 0x8e, 0x88, 0xef, 0x56, 0x07, 0x7a, 0x1d, 0x66, 0x0d, 0x76, 0x31, 0x40, 0x9c, 0x3a, 0x83, - 0x5c, 0xe2, 0xc0, 0xcd, 0x0b, 0x2c, 0xea, 0xa3, 0x87, 0x90, 0xe1, 0xff, 0x78, 0x2a, 0x87, 0xd8, - 0xc1, 0xae, 0x85, 0xf3, 0xfb, 0x6c, 0x06, 0xa7, 0x8d, 0x3e, 0x0d, 0xdd, 0x85, 0xb8, 0xab, 0x6b, - 0xfc, 0xc8, 0x15, 0x1c, 0xf7, 0xf2, 0xa5, 0x6e, 0x63, 0x56, 0x17, 0x7d, 0x08, 0xf3, 0x3b, 0xa4, - 0x61, 0x5a, 0xaa, 0xd7, 0x8f, 0x35, 0xb0, 0x1c, 0xc1, 0xc1, 0xf0, 0x46, 0xcf, 0xab, 0x07, 0x27, - 0xa2, 0xe2, 0xfc, 0xce, 0xd0, 0x03, 0x3a, 0x4d, 0x6c, 0x53, 0xf6, 0x89, 0x4d, 0x85, 0x4e, 0x53, - 0x60, 0x86, 0x28, 0xce, 0x91, 0x01, 0x32, 0xda, 0x80, 0xb4, 0x46, 0x7d, 0xa5, 0xca, 0xd2, 0xf3, - 0x0a, 0x10, 0xfa, 0xa6, 0x60, 0x24, 0x51, 0x10, 0x83, 0xd6, 0x23, 0xf5, 0xc5, 0xb4, 0x89, 0xd3, - 0x20, 0x85, 0xf4, 0x78, 0x31, 0xfe, 0xd8, 0x83, 0x10, 0xc3, 0x48, 0xe8, 0x11, 0x64, 0x9b, 0x32, - 0x3f, 0x85, 0x05, 0x85, 0x32, 0xa1, 0xaf, 0x0a, 0x02, 0xd2, 0x6a, 0x70, 0xa6, 0xe9, 0x23, 0xa2, - 0x57, 0x60, 0xa6, 0xa1, 0x17, 0xb2, 0x4c, 0xc2, 0x85, 0x71, 0x49, 0x24, 0x78, 0xa6, 0xa1, 0xa3, - 0xb7, 0x21, 0xc9, 0xc3, 0xec, 0xfb, 0x56, 0x21, 0x17, 0xba, 0x78, 0x07, 0x33, 0x1c, 0x30, 0x4b, - 0x07, 0xa0, 0x6d, 0x35, 0xe0, 0xac, 0x3f, 0xf1, 0x9e, 0x85, 0x05, 0x5a, 0x2c, 0xd3, 0xa9, 0x70, - 0x92, 0x09, 0x5b, 0x09, 0xb4, 0xbd, 0xf0, 0xd4, 0x2d, 0xbc, 0x60, 0x04, 0x3d, 0x45, 0x9b, 0x90, - 0x73, 0x78, 0x74, 0x48, 0xe4, 0xf5, 0x17, 0xf2, 0x4c, 0xfe, 0x8d, 0x60, 0x4f, 0x33, 0x12, 0x13, - 0xc5, 0x59, 0xc7, 0x4f, 0x45, 0xdf, 0x87, 0xd3, 0x83, 0xf2, 0xc4, 0x8a, 0x99, 0x67, 0x52, 0x5f, - 0x99, 0x28, 0xd5, 0xbf, 0x70, 0x90, 0x33, 0xf2, 0x08, 0xdd, 0x83, 0x04, 0x37, 0x09, 0xc4, 0x04, - 0x16, 0x83, 0x8e, 0x76, 0x7e, 0x6b, 0xe0, 0xb5, 0xe9, 0x02, 0xf6, 0x44, 0x88, 0x44, 0x6d, 0xd9, - 0x8d, 0xc2, 0xa9, 0xd0, 0x05, 0x3c, 0x1a, 0xe9, 0xc1, 0x69, 0xaf, 0x4f, 0xa3, 0x26, 0xe5, 0x70, - 0xba, 0x78, 0x77, 0x7f, 0x3a, 0xd4, 0xa4, 0x02, 0xe2, 0x26, 0x38, 0xe3, 0xf8, 0x88, 0xb4, 0x5b, - 0x22, 0xcd, 0x4d, 0x65, 0x5e, 0x61, 0x21, 0xb4, 0x5b, 0xa3, 0xf7, 0x3a, 0x70, 0xda, 0xe9, 0xd3, - 0x50, 0x1d, 0xf2, 0x22, 0x73, 0x5e, 0x95, 0x6f, 0x80, 0x0b, 0x67, 0x98, 0xb4, 0x5b, 0x81, 0x2e, - 0x37, 0xe8, 0x8d, 0x37, 0x3e, 0xa9, 0x0f, 0xd2, 0x51, 0x07, 0x16, 0x7d, 0x66, 0xf8, 0x82, 0xbd, - 0x5c, 0xed, 0xcb, 0x3f, 0xcb, 0xe4, 0xdf, 0x1d, 0x6b, 0x89, 0x81, 0x2f, 0x7d, 0x71, 0xc1, 0x08, - 0xa9, 0x40, 0x7d, 0x1d, 0x93, 0xaf, 0xea, 0xfd, 0x9b, 0x0d, 0x85, 0x42, 0xa8, 0xaf, 0x0b, 0xb9, - 0x7d, 0x81, 0xf3, 0xfa, 0xd0, 0x03, 0xea, 0x78, 0x2d, 0xdb, 0xee, 0x14, 0xce, 0x85, 0x3a, 0x5e, - 0x5f, 0xd0, 0x14, 0xb3, 0xba, 0x74, 0x0d, 0x9b, 0x96, 0xe9, 0xb1, 0xfd, 0x6b, 0x31, 0x74, 0x0d, - 0x0f, 0xde, 0xdc, 0xc4, 0x73, 0x26, 0x2f, 0xd3, 0xa5, 0xe5, 0x89, 0x58, 0x93, 0x30, 0x95, 0x0b, - 0xa1, 0x4b, 0x2b, 0x28, 0x28, 0x85, 0xb3, 0x9e, 0x9f, 0x4a, 0x97, 0x16, 0xf7, 0x89, 0x43, 0x52, - 0x2f, 0x86, 0x2e, 0xad, 0xd0, 0x1c, 0x60, 0x8c, 0xb4, 0x91, 0x47, 0xa8, 0x0c, 0xc0, 0x04, 0xb2, - 0x0b, 0xed, 0x85, 0x4b, 0xa1, 0x5b, 0xec, 0x70, 0xc8, 0x09, 0xa7, 0x5a, 0x92, 0x42, 0xfd, 0x36, - 0xc3, 0x35, 0xea, 0x8e, 0xe6, 0xe9, 0xcd, 0x42, 0x31, 0xd4, 0x6f, 0x8f, 0xbc, 0x79, 0xc3, 0xb0, - 0xd7, 0x23, 0xd1, 0x9d, 0x9a, 0x9f, 0xbb, 0x0b, 0x4b, 0x13, 0x0e, 0x7a, 0xbd, 0x9d, 0x9a, 0xd7, - 0x47, 0xdf, 0x85, 0xd4, 0xf3, 0x2e, 0x71, 0x0e, 0x98, 0xdf, 0xbd, 0x1c, 0xfa, 0xa1, 0x82, 0xa1, - 0x1c, 0x20, 0x9c, 0x7c, 0x2e, 0x08, 0xb4, 0x69, 0x7e, 0x02, 0x2a, 0x94, 0x42, 0x9b, 0x1e, 0x38, - 0xf3, 0x62, 0x51, 0x1f, 0x69, 0xb0, 0xc0, 0xe7, 0x47, 0xa4, 0x0e, 0x3b, 0x22, 0x47, 0xb7, 0x70, - 0x85, 0x09, 0x0a, 0x3d, 0x56, 0x04, 0x66, 0x2f, 0xe3, 0x53, 0xda, 0xe8, 0x33, 0xea, 0x7c, 0xc4, - 0xee, 0xca, 0x8f, 0x22, 0x85, 0xab, 0xa1, 0xce, 0x27, 0xe0, 0xcc, 0x86, 0x33, 0x9a, 0x8f, 0xc8, - 0xf7, 0x58, 0x43, 0x75, 0x5d, 0x8f, 0xe2, 0xff, 0xc2, 0xb5, 0x31, 0x7b, 0xec, 0xd0, 0x71, 0x84, - 0x5d, 0x7d, 0xa9, 0x71, 0x3e, 0x96, 0x2b, 0xdd, 0x22, 0x9a, 0x23, 0x1c, 0xfd, 0xf5, 0x50, 0x31, - 0x23, 0x77, 0x23, 0x31, 0xe8, 0x3d, 0x12, 0xc5, 0x22, 0x8e, 0xbc, 0xfc, 0xa3, 0xba, 0x9e, 0xe6, - 0xb9, 0x85, 0x1b, 0xa1, 0x58, 0x24, 0xf0, 0x6a, 0x12, 0xce, 0x39, 0x03, 0x64, 0xf4, 0x16, 0xcc, - 0x89, 0x7b, 0x15, 0x85, 0x9b, 0x63, 0xe0, 0xb3, 0xff, 0x98, 0x82, 0x25, 0x07, 0xf7, 0xf3, 0xfc, - 0x52, 0x06, 0x1f, 0xd8, 0xad, 0x31, 0x7e, 0x7e, 0xe4, 0xa0, 0x40, 0xfd, 0x7c, 0x9f, 0xf8, 0x66, - 0xfc, 0x0b, 0x7e, 0xe4, 0x3f, 0x9f, 0xbf, 0x50, 0xfa, 0xea, 0x0c, 0x64, 0x25, 0x66, 0xe7, 0x78, - 0xfc, 0x35, 0x3f, 0x1e, 0xbf, 0x14, 0x86, 0xc7, 0x39, 0x07, 0x07, 0xe4, 0xaf, 0xf9, 0x01, 0xf9, - 0xa5, 0x30, 0x40, 0x2e, 0x39, 0x28, 0x22, 0xc7, 0x61, 0x88, 0xfc, 0xd6, 0x14, 0x88, 0x5c, 0x08, - 0x1a, 0x86, 0xe4, 0xe5, 0x51, 0x48, 0x7e, 0x75, 0x3c, 0x24, 0x17, 0x82, 0x7c, 0x98, 0xfc, 0x8d, - 0x21, 0x4c, 0x7e, 0x79, 0x0c, 0x26, 0x17, 0xdc, 0x12, 0x94, 0x57, 0x03, 0x41, 0xf9, 0xf5, 0x49, - 0xa0, 0x5c, 0x48, 0x19, 0x40, 0xe5, 0xab, 0x03, 0xa8, 0xbc, 0x18, 0x8a, 0xca, 0x05, 0x2f, 0x87, - 0xe5, 0x1f, 0x85, 0xc3, 0xf2, 0xef, 0x4c, 0x05, 0xcb, 0x85, 0xb4, 0x51, 0x5c, 0x8e, 0xc3, 0x70, - 0xf9, 0xad, 0x29, 0x70, 0xb9, 0x9c, 0xac, 0x21, 0x60, 0x7e, 0x3f, 0x08, 0x98, 0x5f, 0x9b, 0x00, - 0xcc, 0x85, 0x2c, 0x3f, 0x32, 0xbf, 0x1f, 0x84, 0xcc, 0xaf, 0x4d, 0x40, 0xe6, 0x03, 0x72, 0x38, - 0x34, 0x7f, 0x1c, 0x0c, 0xcd, 0x6f, 0x4c, 0x84, 0xe6, 0x42, 0xd6, 0x20, 0x36, 0x7f, 0xd5, 0x87, - 0xcd, 0x2f, 0x86, 0x60, 0x73, 0xc1, 0x48, 0xc1, 0xf9, 0x3b, 0x23, 0xe0, 0xbc, 0x34, 0x0e, 0x9c, - 0x0b, 0xce, 0x1e, 0x3a, 0x6f, 0x4e, 0x42, 0xe7, 0xaf, 0x4d, 0x8f, 0xce, 0x85, 0xec, 0x10, 0x78, - 0xbe, 0x15, 0x02, 0xcf, 0x6f, 0x4e, 0x86, 0xe7, 0x42, 0xf0, 0x10, 0x3e, 0x57, 0xc7, 0xe2, 0xf3, - 0x57, 0xa7, 0xc4, 0xe7, 0x42, 0x76, 0x10, 0x40, 0xff, 0xf9, 0x41, 0x80, 0xbe, 0x14, 0x0e, 0xd0, - 0x85, 0x10, 0x81, 0xd0, 0xab, 0x81, 0x08, 0xfd, 0xfa, 0x24, 0x84, 0x2e, 0x57, 0xb3, 0x1f, 0xa2, - 0x3f, 0x0e, 0x86, 0xe8, 0x37, 0x26, 0x42, 0x74, 0x69, 0x5a, 0x03, 0x18, 0xbd, 0x1a, 0x88, 0xd1, - 0xaf, 0x4f, 0xc2, 0xe8, 0xb2, 0x63, 0x7e, 0x90, 0xbe, 0x1d, 0x0a, 0xd2, 0x6f, 0x4f, 0x03, 0xd2, - 0x85, 0xc8, 0x11, 0x94, 0xfe, 0x7c, 0x0a, 0x94, 0xbe, 0x7a, 0x2c, 0x94, 0x2e, 0x5a, 0x0a, 0x87, - 0xe9, 0x1f, 0x85, 0xc3, 0xf4, 0xef, 0x4c, 0x05, 0xd3, 0xa5, 0xef, 0x1b, 0xc1, 0xe9, 0xab, 0x03, - 0x38, 0xbd, 0x18, 0x8a, 0xd3, 0xa5, 0x2b, 0x66, 0x40, 0xfd, 0x9d, 0x11, 0xa0, 0x5e, 0x1a, 0x07, - 0xd4, 0xe5, 0x7a, 0x96, 0x48, 0x5d, 0x1d, 0x8b, 0xac, 0x5f, 0x9d, 0x12, 0x59, 0xcb, 0x45, 0x11, - 0x00, 0xad, 0x2b, 0x01, 0xd0, 0xfa, 0xea, 0x78, 0x68, 0x2d, 0xb7, 0xca, 0x3e, 0xb6, 0xbe, 0x1f, - 0x84, 0xad, 0xaf, 0x4d, 0xc0, 0xd6, 0xd2, 0xf3, 0xfa, 0xc0, 0xf5, 0x1b, 0x43, 0xe0, 0xfa, 0xf2, - 0xc4, 0xc8, 0x5d, 0x0f, 0x5d, 0xbf, 0x3b, 0x8a, 0xae, 0xaf, 0x8c, 0x45, 0xd7, 0x82, 0xbf, 0x0f, - 0xaf, 0xdf, 0x18, 0x82, 0xd7, 0x97, 0xc7, 0xc0, 0x6b, 0xd9, 0xb8, 0xc0, 0xd7, 0x3b, 0xe3, 0xf1, - 0xf5, 0xf2, 0xb4, 0xf8, 0x5a, 0x88, 0x0d, 0x04, 0xd8, 0x8f, 0x83, 0x01, 0xf6, 0x8d, 0x29, 0x43, - 0x02, 0x43, 0x08, 0xfb, 0x7e, 0x10, 0xc2, 0xbe, 0x36, 0x01, 0x61, 0xf7, 0xf7, 0xca, 0x1e, 0xc4, - 0xbe, 0x1f, 0x04, 0xb1, 0xaf, 0x4d, 0x80, 0xd8, 0x52, 0x8e, 0x0f, 0x63, 0xe3, 0x30, 0x8c, 0x7d, - 0x6b, 0x0a, 0x8c, 0x2d, 0x71, 0xc5, 0x10, 0xc8, 0x7e, 0x7b, 0x18, 0x64, 0x97, 0xc6, 0x81, 0x6c, - 0xb9, 0xf2, 0x24, 0xca, 0x7e, 0x1c, 0x8c, 0xb2, 0x6f, 0x4c, 0x44, 0xd9, 0x7d, 0x57, 0x1d, 0x0c, - 0xb3, 0xdf, 0x8b, 0x27, 0x2f, 0xe4, 0x2f, 0x96, 0x3e, 0x4f, 0xc0, 0xec, 0x43, 0x19, 0x4b, 0xf5, - 0x5d, 0x79, 0x52, 0x5e, 0xe6, 0xca, 0x13, 0x5a, 0xa7, 0x63, 0x65, 0x96, 0x22, 0xa0, 0xf7, 0x98, - 0xfb, 0x9c, 0x23, 0xb7, 0xf9, 0x24, 0xeb, 0x4b, 0xe4, 0xf9, 0xa2, 0x7b, 0x90, 0xed, 0xba, 0xc4, - 0x51, 0x3b, 0x8e, 0x69, 0x3b, 0xa6, 0xc7, 0x53, 0x5b, 0x94, 0x72, 0xfe, 0xeb, 0xc3, 0x62, 0x66, - 0xdb, 0x25, 0xce, 0x53, 0x41, 0xc7, 0x99, 0xae, 0xaf, 0x24, 0xbf, 0x94, 0x97, 0x98, 0xfe, 0x4b, - 0x79, 0xef, 0x43, 0xde, 0x21, 0x9a, 0x31, 0xe0, 0xd6, 0xf9, 0x1d, 0xa1, 0xe0, 0x0d, 0x4f, 0x33, - 0x7c, 0xbe, 0x9b, 0xdd, 0x15, 0x3a, 0xe9, 0x0c, 0x12, 0xd1, 0x1d, 0x58, 0x68, 0x6b, 0xfb, 0xfc, - 0xf2, 0x9b, 0xdc, 0x96, 0x59, 0x4c, 0x39, 0xc9, 0xb2, 0x15, 0x50, 0x5b, 0xdb, 0x67, 0x9f, 0xdd, - 0xe3, 0x8f, 0xd8, 0x57, 0x7e, 0xae, 0x41, 0xce, 0x30, 0x5d, 0xcf, 0xb4, 0x74, 0x79, 0x11, 0x3f, - 0xc5, 0x6f, 0xc4, 0x48, 0x2a, 0xbf, 0x6b, 0x7f, 0x1b, 0xe6, 0x45, 0x72, 0x46, 0xff, 0x43, 0x7c, - 0x0c, 0xd8, 0x26, 0x69, 0x2f, 0xe8, 0x83, 0xfe, 0xb7, 0x0b, 0x2b, 0x70, 0xb2, 0xa1, 0x79, 0x64, - 0x4f, 0x3b, 0x50, 0x2d, 0xdb, 0x60, 0xba, 0x4f, 0xb3, 0x2b, 0xcc, 0xe7, 0x8f, 0x0e, 0x8b, 0xd9, - 0x07, 0xfc, 0xd1, 0xa6, 0x6d, 0xf0, 0x19, 0x98, 0xe5, 0xff, 0x70, 0xb6, 0xe1, 0x7b, 0x60, 0xa0, - 0x35, 0xc8, 0x50, 0x08, 0xa0, 0xda, 0xfc, 0x83, 0x39, 0x02, 0xb2, 0x86, 0xbd, 0xc4, 0x17, 0x9f, - 0xd5, 0xc1, 0x69, 0xb7, 0x5f, 0x10, 0xd7, 0xf7, 0x3f, 0x57, 0x20, 0x33, 0x90, 0x76, 0xf4, 0xd6, - 0x50, 0xa0, 0xe7, 0x5c, 0x30, 0x0c, 0x0e, 0x0e, 0x60, 0xae, 0x41, 0x52, 0x28, 0x56, 0x86, 0x30, - 0x8b, 0xe1, 0x50, 0x87, 0x1d, 0x39, 0x65, 0xac, 0x57, 0xb2, 0xbd, 0x19, 0xff, 0xbd, 0x1f, 0x17, - 0x4f, 0x94, 0x7e, 0x16, 0x83, 0xec, 0x60, 0x9e, 0x51, 0x75, 0xa8, 0x5f, 0x41, 0x0b, 0x73, 0x80, - 0x23, 0xbc, 0x97, 0xeb, 0x90, 0x72, 0x44, 0x25, 0xd9, 0xcd, 0xa5, 0x31, 0xe1, 0x2c, 0x7f, 0x3f, - 0xfb, 0x8c, 0x8b, 0x3f, 0x99, 0xe9, 0x2d, 0xe8, 0x65, 0x48, 0xb0, 0x4f, 0x67, 0x8a, 0xae, 0x05, - 0x65, 0x13, 0x6f, 0xd0, 0xe7, 0x98, 0x57, 0xa3, 0x0e, 0xa0, 0xfe, 0x52, 0x77, 0x1e, 0x7b, 0x84, - 0x97, 0xf8, 0xf4, 0xe4, 0x4b, 0x5e, 0xd2, 0xab, 0xd1, 0xe3, 0x7a, 0xab, 0x45, 0x74, 0x4f, 0x7c, - 0xa5, 0x53, 0x7e, 0x60, 0xf2, 0xea, 0xb0, 0x08, 0xf1, 0x4d, 0xcf, 0x65, 0x2c, 0xbe, 0xe9, 0xe9, - 0x8b, 0x2a, 0xe7, 0x7a, 0x22, 0xd8, 0x7a, 0xe1, 0x29, 0x07, 0x7c, 0xaa, 0x6f, 0xd7, 0xe0, 0x54, - 0xc0, 0xea, 0x45, 0x39, 0x80, 0xca, 0xd6, 0x66, 0xad, 0x5a, 0xab, 0x6f, 0x6c, 0xd6, 0xe5, 0x67, - 0x22, 0xd7, 0xd6, 0xd5, 0xed, 0xcd, 0xca, 0xd6, 0x93, 0x27, 0xd5, 0x7a, 0x7d, 0x63, 0x3d, 0xaf, - 0xa0, 0x3c, 0x64, 0xaa, 0x9b, 0xbe, 0x7a, 0xe2, 0xeb, 0x90, 0xb7, 0x3f, 0x84, 0xb4, 0xef, 0xda, - 0x20, 0x42, 0x90, 0x7b, 0xba, 0x5d, 0x7b, 0xa8, 0xd6, 0xab, 0x4f, 0x36, 0x6a, 0xf5, 0xb5, 0x27, - 0x4f, 0xf3, 0x27, 0x68, 0x03, 0x8c, 0xb6, 0x56, 0xde, 0xc2, 0xf5, 0xbc, 0xd2, 0x2b, 0xd7, 0xb7, - 0xb6, 0x2b, 0x0f, 0xf3, 0x33, 0xbd, 0xf2, 0xfb, 0xdb, 0x1b, 0xf8, 0xe3, 0x7c, 0x4c, 0x08, 0xd6, - 0x60, 0x21, 0x30, 0x8b, 0x16, 0xa5, 0x61, 0x6e, 0xdb, 0x62, 0x77, 0xd8, 0xf2, 0x27, 0x50, 0xd6, - 0x97, 0x48, 0x9b, 0x57, 0x50, 0x92, 0x27, 0x6c, 0xe6, 0x67, 0xd0, 0x2c, 0xcc, 0xd4, 0x56, 0xf3, - 0x31, 0x74, 0x12, 0xd2, 0xbe, 0x6c, 0xd4, 0x7c, 0x1c, 0xa5, 0x44, 0x4a, 0x62, 0x3e, 0x71, 0xfb, - 0x32, 0xf8, 0x72, 0xc0, 0x10, 0xc0, 0xec, 0x63, 0xcd, 0x23, 0xae, 0x97, 0x3f, 0x81, 0xe6, 0x20, - 0xb6, 0xd6, 0x6a, 0xe5, 0x95, 0xbb, 0x1f, 0x41, 0x52, 0x7e, 0x4d, 0x04, 0x3d, 0x86, 0x04, 0x47, - 0x53, 0xc5, 0xf0, 0x15, 0xc1, 0xd6, 0xd6, 0xe2, 0xd2, 0xa4, 0x25, 0x53, 0x3a, 0x51, 0xbe, 0xfc, - 0xc5, 0xbf, 0x5e, 0x3a, 0xf1, 0xc5, 0xd1, 0x25, 0xe5, 0xcb, 0xa3, 0x4b, 0xca, 0x3f, 0x1e, 0x5d, - 0x52, 0xfe, 0xe5, 0xe8, 0x92, 0xf2, 0xc3, 0x7f, 0xbb, 0x74, 0xe2, 0x93, 0x39, 0xc1, 0xb2, 0x33, - 0xcb, 0x3e, 0xc8, 0xba, 0xfa, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xae, 0x99, 0xc6, 0x83, 0x71, - 0x56, 0x00, 0x00, + 0x04, 0x48, 0x48, 0xbc, 0x5c, 0x1e, 0x78, 0xe0, 0xe9, 0xbe, 0xf0, 0xb0, 0x88, 0x0b, 0xda, 0x07, + 0x90, 0x10, 0x48, 0x23, 0x18, 0x5e, 0xae, 0xf6, 0x4f, 0x58, 0x04, 0x42, 0xf5, 0x65, 0xb7, 0xed, + 0x6e, 0xdb, 0x93, 0x6d, 0xb4, 0xc0, 0x93, 0x5d, 0xa7, 0xeb, 0x9c, 0xaa, 0x3a, 0x75, 0xea, 0xd4, + 0xaf, 0xfa, 0x9c, 0x6a, 0x98, 0x77, 0x6c, 0x4d, 0x6f, 0x76, 0x76, 0x56, 0xb4, 0x8e, 0xb9, 0xdc, + 0x71, 0x6c, 0xcf, 0x46, 0xf3, 0xba, 0xad, 0x3f, 0x63, 0xe4, 0x65, 0xf1, 0x70, 0x11, 0xc9, 0x5a, + 0x86, 0xe6, 0x69, 0xbc, 0xda, 0xe2, 0x69, 0x49, 0x23, 0x8e, 0x63, 0x3b, 0xae, 0xa0, 0x9e, 0x91, + 0xd4, 0x36, 0xf1, 0x34, 0x5f, 0xed, 0x2b, 0xae, 0x67, 0x3b, 0x5a, 0x83, 0xac, 0x10, 0xab, 0x61, + 0x5a, 0xf2, 0x87, 0xd6, 0x7b, 0xa1, 0xeb, 0xab, 0xa2, 0x52, 0xa1, 0xeb, 0x99, 0xad, 0x95, 0x66, + 0x4b, 0x5f, 0xf1, 0xcc, 0x36, 0x71, 0x3d, 0xad, 0xdd, 0x11, 0x4f, 0x96, 0xd8, 0x13, 0xcf, 0xd1, + 0x74, 0xd3, 0x6a, 0xac, 0x38, 0x44, 0xb7, 0x1d, 0x83, 0x18, 0xaa, 0xdb, 0xd1, 0x2c, 0xd9, 0x9d, + 0x86, 0xdd, 0xb0, 0xd9, 0xdf, 0x15, 0xfa, 0x8f, 0x53, 0x4b, 0xbf, 0x01, 0x29, 0xac, 0x59, 0x0d, + 0x52, 0xb5, 0x76, 0x6d, 0xf4, 0x36, 0xc4, 0x0d, 0xe2, 0xea, 0x05, 0x65, 0x49, 0xb9, 0x99, 0xbe, + 0x5b, 0x5a, 0x1e, 0x19, 0xe7, 0x32, 0xab, 0xbb, 0x4e, 0x5c, 0xdd, 0x31, 0x3b, 0x9e, 0xed, 0x94, + 0xe3, 0x5f, 0x1c, 0x16, 0x4f, 0x60, 0xc6, 0x85, 0x7e, 0x01, 0x12, 0x2d, 0xa2, 0xb9, 0xa4, 0x30, + 0xc3, 0xd8, 0x0b, 0x01, 0xec, 0x8f, 0xe9, 0x73, 0xc1, 0xc4, 0x2b, 0x97, 0x3e, 0x8b, 0x41, 0x0e, + 0x13, 0xb7, 0x63, 0x5b, 0x2e, 0x79, 0x48, 0x34, 0x83, 0x38, 0xe8, 0x35, 0x88, 0x79, 0xfb, 0x56, + 0x21, 0xc6, 0xc4, 0x5c, 0x0a, 0x10, 0x53, 0x77, 0x34, 0xcb, 0xd5, 0x74, 0xcf, 0xb4, 0x2d, 0x4c, + 0xab, 0xa2, 0xd7, 0x21, 0xed, 0x10, 0xb7, 0xdb, 0x26, 0x6c, 0xc0, 0x85, 0x38, 0xe3, 0x3c, 0x1b, + 0xc0, 0x59, 0xeb, 0x68, 0x16, 0x06, 0x5e, 0x97, 0xfe, 0x47, 0xe7, 0x20, 0x69, 0x75, 0xdb, 0xea, + 0x33, 0x72, 0xe0, 0x16, 0x12, 0x4b, 0xca, 0xcd, 0x18, 0x9e, 0xb3, 0xba, 0xed, 0x47, 0xe4, 0xc0, + 0x45, 0x15, 0x48, 0x3b, 0x74, 0xb8, 0xaa, 0x69, 0xed, 0xda, 0x6e, 0x61, 0x76, 0x29, 0x76, 0x33, + 0x7d, 0xf7, 0x42, 0x98, 0x52, 0xa8, 0x02, 0xc5, 0xc8, 0xc0, 0x91, 0x04, 0x17, 0xd5, 0x20, 0x2b, + 0x7a, 0xe6, 0x10, 0xcd, 0xb5, 0xad, 0xc2, 0xdc, 0x92, 0x72, 0x33, 0x77, 0x77, 0x39, 0x48, 0xcc, + 0x80, 0x16, 0x68, 0xb1, 0xdb, 0x26, 0x98, 0x71, 0xe1, 0x8c, 0xe3, 0x2b, 0x95, 0x3e, 0x86, 0x8c, + 0xff, 0x29, 0x42, 0x90, 0xc3, 0x1b, 0xb5, 0xed, 0x27, 0x1b, 0xea, 0xf6, 0xe6, 0xa3, 0xcd, 0xad, + 0x0f, 0x37, 0xf3, 0x27, 0xd0, 0x69, 0xc8, 0x0b, 0xda, 0xa3, 0x8d, 0x8f, 0xd5, 0xc7, 0xd5, 0x27, + 0xd5, 0x7a, 0x5e, 0x41, 0xe7, 0x60, 0x41, 0x50, 0xf1, 0xda, 0xe6, 0x83, 0x0d, 0xb5, 0xbc, 0xb5, + 0xbd, 0xb9, 0xbe, 0x86, 0x3f, 0xce, 0xcf, 0x2c, 0xc6, 0x7f, 0xfb, 0x8f, 0x2f, 0x9d, 0x28, 0x3d, + 0x01, 0x78, 0x40, 0x3c, 0x4c, 0x9e, 0x77, 0x89, 0xeb, 0xa1, 0x37, 0x60, 0xb6, 0xc9, 0x7a, 0x23, + 0x4c, 0x22, 0x4c, 0xa5, 0xe5, 0x24, 0x1d, 0xf8, 0x97, 0x87, 0x45, 0x05, 0x0b, 0x86, 0x37, 0xe3, + 0x3f, 0xff, 0x71, 0x51, 0x29, 0xfd, 0x54, 0x81, 0x34, 0x93, 0xc7, 0x87, 0x86, 0x2a, 0x43, 0x02, + 0x2f, 0x4f, 0xd4, 0xc3, 0xa8, 0x68, 0xb4, 0x0c, 0x89, 0x17, 0x5a, 0xab, 0x3b, 0xce, 0xd0, 0x3e, + 0xa0, 0xcf, 0x31, 0xaf, 0x86, 0xde, 0x82, 0x8c, 0x69, 0x79, 0xc4, 0xf2, 0x54, 0xce, 0x16, 0x9b, + 0xc0, 0x96, 0xe6, 0xb5, 0x59, 0xa1, 0xf4, 0x17, 0x0a, 0xc0, 0xd3, 0x6e, 0x04, 0x1a, 0xa1, 0xeb, + 0x63, 0xaa, 0x6e, 0xcb, 0xf5, 0xc1, 0x3b, 0x7f, 0x06, 0x66, 0x4d, 0xab, 0x65, 0x5a, 0xbc, 0xdb, + 0x49, 0x2c, 0x4a, 0xe8, 0x34, 0x24, 0x76, 0x5a, 0xa6, 0x65, 0x30, 0x63, 0x4f, 0x62, 0x5e, 0x10, + 0x5a, 0xc7, 0x90, 0x66, 0x5d, 0x8e, 0x50, 0xe9, 0xa5, 0x7f, 0x51, 0x60, 0xa1, 0x62, 0x5b, 0x86, + 0x49, 0x57, 0x9d, 0xd6, 0xfa, 0x36, 0x55, 0x72, 0x0f, 0x52, 0x64, 0xbf, 0x33, 0xe5, 0x64, 0x26, + 0xc9, 0x7e, 0x87, 0xfd, 0x1b, 0xab, 0xb1, 0x5f, 0x85, 0x33, 0xc3, 0x83, 0x8b, 0x52, 0x79, 0x7f, + 0xa3, 0x40, 0xae, 0x6a, 0x99, 0xde, 0xb7, 0xa9, 0xb5, 0xde, 0xf0, 0x63, 0xbe, 0xe1, 0xa3, 0xdb, + 0x90, 0xdf, 0xd5, 0xcc, 0xd6, 0x96, 0x55, 0xb7, 0xdb, 0x3b, 0xae, 0x67, 0x5b, 0xc4, 0x15, 0xfa, + 0x19, 0xa1, 0x0b, 0x55, 0x7d, 0x00, 0x27, 0x7b, 0x43, 0x89, 0x52, 0x47, 0xcf, 0x21, 0x5f, 0xb5, + 0x74, 0x87, 0xb4, 0x89, 0x15, 0x85, 0x92, 0x2e, 0x40, 0xca, 0x94, 0xe2, 0x98, 0xa2, 0x62, 0xb8, + 0x4f, 0x10, 0x43, 0xe9, 0xc2, 0xbc, 0xaf, 0xc9, 0x28, 0x5d, 0xd4, 0x79, 0x48, 0x59, 0x64, 0x4f, + 0xed, 0x4f, 0x53, 0x0c, 0x27, 0x2d, 0xb2, 0xc7, 0x5d, 0xca, 0x53, 0xc8, 0xae, 0x93, 0x16, 0xf1, + 0x48, 0x64, 0x6e, 0x76, 0x1b, 0x72, 0x52, 0x62, 0x94, 0x53, 0xf2, 0xb9, 0x02, 0x48, 0xc8, 0xa5, + 0x3b, 0x5a, 0x04, 0xb3, 0x52, 0xa4, 0x1b, 0xb5, 0xd7, 0x75, 0x2c, 0xbe, 0xe3, 0x72, 0x53, 0x04, + 0x4e, 0x62, 0x9b, 0x6e, 0xdf, 0xdd, 0xc5, 0xfd, 0xee, 0x8e, 0x8f, 0xf3, 0xbd, 0x78, 0x72, 0x26, + 0x1f, 0x2b, 0xed, 0xc1, 0xa9, 0x81, 0x5e, 0x45, 0x3b, 0x71, 0x71, 0xd6, 0xb3, 0x99, 0xa5, 0xd8, + 0xcd, 0x4c, 0x79, 0xee, 0xeb, 0xc3, 0x62, 0xec, 0x11, 0x39, 0xc0, 0x8c, 0x58, 0xaa, 0xc3, 0x7c, + 0xa5, 0x45, 0x34, 0x27, 0x22, 0x6d, 0x88, 0xc9, 0xfb, 0x18, 0x90, 0x5f, 0x6a, 0x94, 0x13, 0x68, + 0x42, 0xba, 0xa6, 0x6b, 0xd6, 0x56, 0x87, 0xfa, 0x35, 0x17, 0xad, 0xc2, 0x19, 0xd7, 0xb3, 0x3b, + 0xaa, 0xe6, 0xa9, 0x1c, 0xd9, 0xec, 0xd8, 0x5d, 0xcb, 0xd0, 0x9c, 0x03, 0xd6, 0x46, 0x12, 0x9f, + 0xa2, 0x4f, 0xd7, 0x3c, 0xd6, 0x91, 0xb2, 0x78, 0x44, 0xa7, 0xac, 0x6d, 0x5a, 0x2a, 0x05, 0x20, + 0x2d, 0xcf, 0x15, 0xc6, 0x0c, 0x6d, 0xd3, 0xc2, 0x9c, 0x22, 0x46, 0xf1, 0x43, 0x85, 0xb7, 0x15, + 0x81, 0x91, 0xbc, 0x09, 0xe7, 0x0c, 0xd2, 0x71, 0x88, 0xae, 0x79, 0xc4, 0x50, 0x85, 0xbd, 0xf0, + 0x3d, 0x59, 0x9a, 0xcc, 0xd9, 0x7e, 0x05, 0xcc, 0x9e, 0x57, 0xf9, 0xe3, 0x01, 0x3b, 0xf9, 0x7b, + 0x05, 0x32, 0xbc, 0x4b, 0x51, 0x5a, 0xc8, 0x3d, 0x88, 0x3b, 0xf6, 0x1e, 0xb7, 0x90, 0xf4, 0xdd, + 0xf3, 0x01, 0x22, 0x1e, 0x91, 0x03, 0xbf, 0xff, 0x65, 0xd5, 0x51, 0x19, 0x04, 0xac, 0x50, 0x19, + 0x77, 0x6c, 0x5a, 0x6e, 0xe0, 0x5c, 0xd8, 0xde, 0x73, 0x4b, 0xbf, 0xaf, 0x00, 0xc2, 0xe4, 0x05, + 0x71, 0x5c, 0xf2, 0xbf, 0x4c, 0xd5, 0xff, 0xa8, 0xc0, 0xa9, 0x81, 0x9e, 0xfd, 0x3f, 0xd1, 0xf8, + 0x1e, 0x9c, 0xad, 0x34, 0x89, 0xfe, 0xac, 0x62, 0x5b, 0xae, 0xe9, 0x7a, 0xc4, 0xd2, 0x0f, 0x22, + 0xd0, 0xfa, 0x79, 0x48, 0xed, 0x99, 0x5e, 0x53, 0x35, 0xcc, 0xdd, 0x5d, 0xb6, 0xa0, 0x92, 0x38, + 0x49, 0x09, 0xeb, 0xe6, 0xee, 0xae, 0x58, 0x4e, 0x2a, 0x14, 0x46, 0x1b, 0x8e, 0x76, 0xbb, 0x5d, + 0xc0, 0x44, 0xb7, 0xdb, 0x9d, 0xae, 0x47, 0x6a, 0x9e, 0xe6, 0xb9, 0x11, 0x8c, 0xeb, 0x2c, 0xcc, + 0x19, 0xce, 0x81, 0xea, 0x74, 0x2d, 0x31, 0xaa, 0x59, 0xc3, 0x39, 0xc0, 0x5d, 0x4b, 0x8c, 0xe9, + 0xaf, 0x14, 0x38, 0x33, 0xdc, 0x66, 0x94, 0x76, 0xf2, 0x09, 0xa4, 0x35, 0x83, 0x9e, 0x7a, 0x0d, + 0xd2, 0xf2, 0x34, 0x81, 0x8e, 0x56, 0x7d, 0x92, 0xc4, 0x11, 0x7b, 0x99, 0x9f, 0xad, 0x97, 0xe5, + 0x11, 0x7b, 0xf9, 0xc9, 0x07, 0x95, 0xca, 0x26, 0xf1, 0xf6, 0x6c, 0xe7, 0x19, 0xeb, 0x96, 0x34, + 0x04, 0x26, 0x6d, 0x9d, 0x0a, 0x2b, 0x7d, 0x02, 0x67, 0xcb, 0xa4, 0x61, 0x5a, 0xfe, 0xa3, 0x67, + 0x54, 0x1b, 0x80, 0x0a, 0x85, 0x51, 0xd9, 0x51, 0xce, 0xf5, 0x4f, 0x62, 0xb0, 0xb0, 0x61, 0x19, + 0x91, 0xf6, 0x9d, 0xee, 0xd4, 0xba, 0xdd, 0x6e, 0x9b, 0x9e, 0x9c, 0x6b, 0x5e, 0x42, 0x6f, 0x40, + 0xd2, 0x20, 0x9a, 0xd1, 0x3b, 0xb2, 0xa4, 0xef, 0x5e, 0xf4, 0x09, 0xed, 0x7a, 0x66, 0x6b, 0xb9, + 0xd9, 0xd2, 0x97, 0xeb, 0xf2, 0x05, 0x06, 0xee, 0x55, 0x47, 0xbf, 0x06, 0x67, 0xe9, 0xda, 0x73, + 0x2c, 0xad, 0xa5, 0x72, 0x69, 0xaa, 0xe7, 0x98, 0x8d, 0x06, 0x71, 0xc4, 0x91, 0xfe, 0x66, 0x40, + 0xf7, 0xaa, 0x82, 0xa3, 0xc2, 0x18, 0xea, 0xbc, 0x3e, 0x5e, 0x30, 0x83, 0xc8, 0xe8, 0xdd, 0xde, + 0x51, 0xd0, 0xed, 0x68, 0x16, 0x3d, 0xf2, 0xc7, 0xc6, 0x8d, 0x9a, 0xdb, 0x81, 0x70, 0x23, 0x94, + 0xe2, 0xa2, 0x15, 0x8a, 0x60, 0x9e, 0x77, 0x4d, 0x87, 0xa8, 0x77, 0x3a, 0x7a, 0x61, 0x96, 0x8e, + 0xbd, 0x9c, 0x3b, 0x3a, 0x2c, 0x02, 0xe6, 0xe4, 0x3b, 0x4f, 0x2b, 0x14, 0xd1, 0xf0, 0xff, 0x1d, + 0x1d, 0xdd, 0x84, 0xbc, 0x65, 0xab, 0x0e, 0xd9, 0x75, 0x88, 0xdb, 0x14, 0xcd, 0x26, 0x99, 0xc6, + 0x72, 0x96, 0x8d, 0x39, 0x99, 0x89, 0xee, 0x39, 0xd4, 0xb9, 0x7c, 0xb2, 0xf4, 0x7b, 0x0a, 0x9c, + 0x19, 0x9e, 0xb2, 0x28, 0xd7, 0xca, 0x4d, 0xc8, 0xdb, 0x16, 0x51, 0x3b, 0x4d, 0xcd, 0x25, 0x42, + 0xd7, 0x02, 0x71, 0xe5, 0x6c, 0x8b, 0x3c, 0xa5, 0x64, 0xae, 0x39, 0xee, 0xe0, 0xdf, 0x8b, 0x27, + 0x63, 0xf9, 0x78, 0xe9, 0x53, 0x98, 0x5f, 0x33, 0xda, 0xa6, 0x55, 0xeb, 0xb4, 0xcc, 0x28, 0x40, + 0xfa, 0x55, 0x48, 0xb9, 0x54, 0x14, 0x45, 0x83, 0xcc, 0x8c, 0x7c, 0x90, 0x2b, 0xc9, 0x9e, 0x3c, + 0x22, 0x07, 0x7d, 0x98, 0xe4, 0x6f, 0x3b, 0xca, 0xf5, 0x51, 0x17, 0xc3, 0x7a, 0x42, 0x9c, 0x68, + 0x71, 0x9d, 0x5f, 0x6a, 0x94, 0x1d, 0xfe, 0x81, 0x02, 0xe7, 0x98, 0x6c, 0x66, 0x1f, 0xbb, 0xc4, + 0x61, 0x2f, 0xd6, 0x22, 0x98, 0x90, 0x2b, 0x30, 0xeb, 0x69, 0x4e, 0x83, 0xf0, 0x45, 0x9d, 0x28, + 0xa7, 0xbf, 0x3e, 0x2c, 0xce, 0xd5, 0x3c, 0xdb, 0x21, 0xd5, 0x75, 0x2c, 0x1e, 0x89, 0xe1, 0x69, + 0xb0, 0x18, 0xd4, 0x85, 0x28, 0x87, 0xf9, 0x95, 0x22, 0xda, 0xa8, 0x34, 0x39, 0x36, 0xee, 0xb4, + 0x4c, 0x5d, 0x8b, 0x62, 0xa7, 0xda, 0x80, 0xb4, 0xce, 0x64, 0xaa, 0xde, 0x41, 0x87, 0x9f, 0xd0, + 0x72, 0x77, 0xaf, 0x06, 0xf6, 0x91, 0xb5, 0xc9, 0x3b, 0x50, 0x3f, 0xe8, 0x10, 0x0c, 0x7a, 0xef, + 0x3f, 0x5a, 0x87, 0x39, 0xae, 0x13, 0x09, 0x2f, 0xc6, 0x88, 0xa0, 0x6b, 0xb8, 0xce, 0x2a, 0x0b, + 0xb7, 0x22, 0x59, 0x85, 0x3e, 0x77, 0xe0, 0x7c, 0xe0, 0x58, 0xa3, 0x54, 0xe8, 0x8f, 0x14, 0xb8, + 0xb0, 0xde, 0x87, 0x73, 0xb4, 0xa1, 0xc7, 0xb6, 0xfd, 0xac, 0xdb, 0x89, 0x40, 0xa5, 0x17, 0x01, + 0xda, 0xda, 0x3e, 0x3f, 0x58, 0xf0, 0x63, 0x42, 0x02, 0xa7, 0xda, 0xda, 0x3e, 0x6b, 0xc5, 0x45, + 0x05, 0x98, 0x73, 0x38, 0x40, 0x14, 0x7e, 0x46, 0x16, 0x7b, 0x6e, 0x8f, 0x3a, 0x98, 0xff, 0x54, + 0xe0, 0x62, 0x48, 0x07, 0xa3, 0xf4, 0x7e, 0xef, 0xc2, 0x6c, 0xaf, 0x9f, 0xb1, 0x63, 0xbd, 0xea, + 0x16, 0x7c, 0x68, 0x1b, 0xe6, 0x3b, 0x0e, 0xd9, 0x25, 0x9e, 0xde, 0xa4, 0xc0, 0x99, 0x0b, 0x8b, + 0x1d, 0x53, 0x58, 0xbe, 0x2f, 0x82, 0x6b, 0xa9, 0xf4, 0x3b, 0x0a, 0x9c, 0x7a, 0x48, 0x34, 0xc7, + 0xdb, 0x21, 0x9a, 0x57, 0xdf, 0x8f, 0x62, 0x9f, 0xbe, 0x07, 0x31, 0xcb, 0xde, 0x13, 0x68, 0x68, + 0xfc, 0x56, 0x2c, 0xba, 0x45, 0xeb, 0x0b, 0xa3, 0xfc, 0x1e, 0x9c, 0x1e, 0xec, 0x4e, 0x94, 0xd6, + 0xf8, 0x67, 0x31, 0x48, 0x3d, 0xa8, 0x44, 0x30, 0xc4, 0xb7, 0xc5, 0xa1, 0x3d, 0x5c, 0xff, 0xbd, + 0x66, 0x96, 0x1f, 0x54, 0x1e, 0x91, 0x03, 0x79, 0x4e, 0xa0, 0x5c, 0x68, 0x0d, 0x52, 0x5e, 0x93, + 0xee, 0xc2, 0x76, 0xcb, 0x10, 0x38, 0x63, 0x2a, 0x35, 0xf5, 0xb9, 0x50, 0x0b, 0x16, 0xbc, 0x7d, + 0x8b, 0x6d, 0xee, 0x6a, 0x43, 0x57, 0xfb, 0xe2, 0x12, 0xd3, 0x88, 0x5b, 0xa4, 0xe2, 0x8e, 0x0e, + 0x8b, 0xa8, 0xbe, 0x6f, 0xd1, 0x11, 0x3e, 0xa8, 0xd4, 0xa5, 0x00, 0x8c, 0x3c, 0x41, 0xd3, 0x7b, + 0xb4, 0xc5, 0x67, 0x90, 0x60, 0xa3, 0x40, 0xe7, 0x20, 0x46, 0x37, 0x4e, 0x65, 0x70, 0xe3, 0xa4, + 0x34, 0x36, 0x28, 0xd9, 0xc0, 0x71, 0xe6, 0xbe, 0xcf, 0xc5, 0x2d, 0x40, 0xd8, 0xc1, 0xfb, 0x00, + 0x54, 0x85, 0x51, 0xce, 0xfe, 0x5f, 0xc6, 0x20, 0xf7, 0xb4, 0xeb, 0x36, 0xa3, 0xb1, 0xf2, 0x0a, + 0x40, 0xa7, 0xeb, 0x36, 0x89, 0xa3, 0x7a, 0xfb, 0x96, 0x18, 0xf0, 0x84, 0xd0, 0x91, 0x1c, 0x31, + 0xe7, 0xab, 0xef, 0x5b, 0x68, 0x4b, 0x08, 0x21, 0x6a, 0x3f, 0xfe, 0x74, 0x7b, 0x8a, 0xf3, 0x43, + 0x7d, 0xdf, 0x7a, 0x42, 0x3c, 0x6d, 0x40, 0x20, 0xa1, 0x02, 0xdf, 0x86, 0x39, 0x5a, 0x50, 0x3d, + 0xfb, 0x38, 0x86, 0x35, 0x4b, 0x79, 0xea, 0xb6, 0x5c, 0xb9, 0x89, 0xe3, 0xad, 0x5c, 0xf4, 0x16, + 0xa4, 0x78, 0xa3, 0x74, 0x67, 0x9b, 0x65, 0x3b, 0x5b, 0x90, 0x26, 0x84, 0xee, 0xd9, 0x9e, 0x96, + 0x64, 0x2d, 0xd2, 0x1d, 0xed, 0x34, 0x24, 0x76, 0x6d, 0x47, 0x27, 0x2c, 0x4e, 0x95, 0xc4, 0xbc, + 0xd0, 0x73, 0xd1, 0xc9, 0x7c, 0xaa, 0xf4, 0x87, 0x0a, 0x9c, 0xec, 0xcd, 0x5b, 0x94, 0x4e, 0xb9, + 0x32, 0xa0, 0xfd, 0xe3, 0x4f, 0x21, 0xd5, 0x78, 0xe9, 0x4f, 0x67, 0xe0, 0xe4, 0xfb, 0x5d, 0xe2, + 0x1c, 0x44, 0x63, 0x56, 0x65, 0x1e, 0x8a, 0x9c, 0x79, 0x49, 0x53, 0x60, 0xc1, 0xc9, 0xeb, 0x70, + 0x72, 0x4f, 0x33, 0x3d, 0x75, 0xd7, 0x76, 0xd4, 0x6e, 0xc7, 0xd0, 0x3c, 0x19, 0xca, 0xc9, 0x52, + 0xf2, 0x7d, 0xdb, 0xd9, 0x66, 0x44, 0x44, 0x00, 0x3d, 0xb3, 0xec, 0x3d, 0x4b, 0xa5, 0x64, 0xd3, + 0x6a, 0x50, 0x35, 0xb8, 0x85, 0x38, 0x7b, 0x11, 0xf9, 0x4b, 0xff, 0x7c, 0x58, 0x5c, 0x6d, 0x98, + 0x5e, 0xb3, 0xbb, 0xb3, 0xac, 0xdb, 0xed, 0x95, 0x5e, 0x47, 0x8c, 0x9d, 0xfe, 0xff, 0x95, 0xce, + 0xb3, 0xc6, 0x0a, 0x8b, 0x03, 0x77, 0xbb, 0xa6, 0xb1, 0xbc, 0xbd, 0x5d, 0x5d, 0xc7, 0x79, 0x26, + 0xf2, 0x43, 0x2e, 0xb1, 0xbe, 0x2f, 0x4f, 0x19, 0xa5, 0xaf, 0x15, 0xc8, 0xf7, 0xf5, 0x14, 0xe5, + 0x34, 0x6e, 0x40, 0xfa, 0x79, 0x97, 0x38, 0x26, 0x31, 0x8e, 0x3d, 0x8f, 0x20, 0x18, 0xe9, 0xd2, + 0xf9, 0x04, 0x32, 0x03, 0x7a, 0x88, 0x7d, 0x33, 0x3d, 0xa4, 0xf7, 0xfa, 0x2a, 0x28, 0xfd, 0x97, + 0x02, 0xa7, 0x31, 0x71, 0xed, 0xd6, 0x0b, 0xc2, 0x5f, 0x66, 0x45, 0x60, 0x29, 0x5b, 0x20, 0xde, + 0x1b, 0xa9, 0xdf, 0xc4, 0x60, 0x52, 0x5c, 0x06, 0xf7, 0x1d, 0xb3, 0xae, 0xa7, 0x79, 0x5d, 0xfe, + 0x1e, 0x2e, 0x18, 0x9d, 0xfa, 0x54, 0x58, 0x63, 0x75, 0xb1, 0xe0, 0xa1, 0xa7, 0xf3, 0x8e, 0x6d, + 0xba, 0xb6, 0x25, 0xdf, 0xa3, 0xf3, 0x92, 0x98, 0xfd, 0x5f, 0x81, 0x85, 0xa1, 0xf1, 0x47, 0xe9, + 0xd9, 0xff, 0x6e, 0x06, 0xce, 0x0d, 0x8a, 0x8f, 0x28, 0x7a, 0xf0, 0x7f, 0x43, 0xc7, 0xe8, 0x21, + 0x64, 0xdb, 0xa6, 0xa5, 0xf6, 0xf7, 0xdf, 0x63, 0x78, 0xf0, 0x0c, 0x3d, 0x51, 0x0d, 0x6e, 0xc1, + 0xa5, 0x1c, 0x64, 0x36, 0x6d, 0xbb, 0x07, 0x81, 0x4b, 0x59, 0x48, 0xf3, 0x32, 0x53, 0x28, 0x3d, + 0x88, 0x05, 0x69, 0x3b, 0xca, 0x19, 0xfd, 0x4d, 0x05, 0x32, 0x11, 0x1d, 0x8e, 0x5f, 0x2e, 0x7a, + 0x29, 0x34, 0x51, 0x87, 0xec, 0xff, 0xc0, 0x69, 0xfa, 0x47, 0x0a, 0xa0, 0xba, 0xd3, 0xb5, 0xe8, + 0x99, 0xe3, 0xb1, 0xdd, 0x88, 0x60, 0x8c, 0xa7, 0x21, 0x61, 0x5a, 0x06, 0xd9, 0x67, 0x63, 0x8c, + 0x63, 0x5e, 0x40, 0x77, 0x20, 0x29, 0x12, 0x4a, 0x78, 0x10, 0x36, 0x56, 0x3e, 0x73, 0x74, 0x58, + 0x9c, 0xe3, 0xe9, 0x23, 0xeb, 0x5f, 0xf7, 0xff, 0xe2, 0x39, 0x9e, 0x41, 0x22, 0xa3, 0xd3, 0x9f, + 0xc0, 0xa9, 0x81, 0xfe, 0x45, 0x39, 0xf8, 0xbf, 0x65, 0x6f, 0xee, 0xd9, 0x88, 0xa3, 0x7a, 0x89, + 0xf0, 0x52, 0x89, 0x40, 0xe8, 0x1d, 0x80, 0x8e, 0x43, 0x5e, 0xa8, 0x9c, 0x35, 0x36, 0x15, 0x6b, + 0x8a, 0x72, 0x30, 0x82, 0xd0, 0xd4, 0xcf, 0x14, 0x38, 0x1d, 0xf5, 0x3b, 0x91, 0x6f, 0x71, 0x38, + 0x35, 0xc8, 0xb3, 0x62, 0xd5, 0xda, 0xb5, 0x23, 0x7b, 0x2f, 0xf5, 0xbb, 0x0a, 0xcc, 0xfb, 0xa4, + 0x46, 0xb9, 0xf7, 0xbf, 0x5c, 0x0a, 0xd8, 0xf7, 0xe8, 0x6e, 0xec, 0xb7, 0xc0, 0x28, 0xed, 0xfb, + 0x3f, 0x14, 0x38, 0x53, 0xe1, 0x21, 0x07, 0x16, 0x50, 0x71, 0xbb, 0xed, 0x08, 0x6c, 0xa2, 0x00, + 0x73, 0x2f, 0x88, 0xe3, 0x9a, 0x36, 0xdf, 0x86, 0xb2, 0x58, 0x16, 0xd1, 0xaf, 0x43, 0x5a, 0x17, + 0xed, 0xc8, 0x75, 0x9e, 0x29, 0x57, 0xa9, 0x80, 0x97, 0x84, 0x2e, 0x47, 0x87, 0x45, 0x90, 0x3d, + 0xaf, 0xae, 0x63, 0x90, 0xd2, 0xab, 0x06, 0x5a, 0x84, 0xa4, 0x6b, 0x69, 0x1d, 0xb7, 0x69, 0xcb, + 0x97, 0xb7, 0xbd, 0xb2, 0x98, 0xeb, 0xef, 0xc3, 0xd9, 0x91, 0xc1, 0x47, 0xa9, 0xdd, 0x1d, 0x28, + 0xf6, 0x5f, 0xd7, 0x7c, 0x40, 0x1c, 0x73, 0xf7, 0x20, 0x3a, 0x2d, 0x8b, 0x31, 0x34, 0x60, 0x29, + 0xbc, 0x8d, 0x28, 0x07, 0xf3, 0xb3, 0x39, 0xc8, 0x6e, 0xec, 0x77, 0x6c, 0xc7, 0xab, 0x71, 0x20, + 0x81, 0xd6, 0x21, 0xd9, 0x71, 0xec, 0x17, 0xa6, 0x14, 0x9c, 0x0b, 0x8c, 0x40, 0x0c, 0xf0, 0x3c, + 0x15, 0xf5, 0x71, 0x8f, 0x13, 0x61, 0x48, 0x3d, 0xb6, 0x75, 0xad, 0x75, 0xdf, 0x6c, 0xc9, 0x95, + 0xb1, 0x3c, 0x49, 0xcc, 0x72, 0x8f, 0xe3, 0xa9, 0xe6, 0x35, 0xa5, 0x7f, 0xe8, 0x11, 0xd1, 0x03, + 0x48, 0x3e, 0xf4, 0xbc, 0x0e, 0x7d, 0x28, 0x9c, 0xcb, 0xb5, 0x89, 0x22, 0x29, 0x83, 0x90, 0xd4, + 0x63, 0x46, 0x18, 0xe6, 0x1f, 0xd8, 0x76, 0xa3, 0x45, 0x2a, 0x2d, 0xbb, 0x6b, 0x54, 0x6c, 0x6b, + 0xd7, 0x6c, 0x88, 0xc3, 0xea, 0xd5, 0x89, 0x12, 0x1f, 0x54, 0x6a, 0x78, 0x94, 0x1d, 0x7d, 0x17, + 0x92, 0xb5, 0x55, 0x21, 0x8a, 0x63, 0x9f, 0x2b, 0x13, 0x45, 0xd5, 0x56, 0x71, 0x8f, 0x09, 0x3d, + 0x84, 0xf4, 0xda, 0xa7, 0x5d, 0x87, 0x08, 0x19, 0xb3, 0x4c, 0xc6, 0xf5, 0x89, 0x32, 0x18, 0x0f, + 0xf6, 0xb3, 0x2e, 0xde, 0x82, 0xec, 0x80, 0x26, 0x11, 0x82, 0x78, 0x87, 0x2a, 0x8d, 0x4e, 0x67, + 0x0a, 0xb3, 0xff, 0xdc, 0xce, 0x16, 0xaf, 0x43, 0x9c, 0x6a, 0x85, 0xae, 0xed, 0x1d, 0xcd, 0x25, + 0xdb, 0x8e, 0x29, 0x2a, 0xc9, 0xa2, 0xa8, 0xf7, 0xd7, 0x0a, 0xcc, 0xd4, 0x56, 0x29, 0xfa, 0xdb, + 0xe9, 0xea, 0xcf, 0x88, 0x27, 0x6a, 0x89, 0x12, 0x43, 0x85, 0x0e, 0xd9, 0x35, 0xf9, 0xe6, 0x9f, + 0xc2, 0xa2, 0x84, 0x2e, 0x02, 0x68, 0xba, 0x4e, 0x5c, 0x97, 0x05, 0x3b, 0x62, 0xec, 0x59, 0x8a, + 0x53, 0x1e, 0x91, 0x03, 0xca, 0xe6, 0x12, 0xdd, 0x21, 0x7c, 0x25, 0xa7, 0xb0, 0x28, 0x51, 0x36, + 0x8f, 0xb4, 0x3b, 0xaa, 0x67, 0x3f, 0x23, 0x16, 0xd3, 0x66, 0x0a, 0xa7, 0x28, 0xa5, 0x4e, 0x09, + 0xd4, 0x05, 0x10, 0xcb, 0xe8, 0xd8, 0xa6, 0xe5, 0x31, 0x35, 0xa5, 0x70, 0xaf, 0x4c, 0x45, 0x3a, + 0xa4, 0x61, 0x8a, 0xa4, 0xd3, 0x14, 0x16, 0x25, 0x31, 0x8c, 0x2d, 0x88, 0x3d, 0xa8, 0xd4, 0x8e, + 0x3d, 0x0c, 0x04, 0x71, 0xad, 0x2b, 0x8c, 0x2e, 0x85, 0xd9, 0x7f, 0x21, 0xf0, 0xb7, 0x14, 0x48, + 0x30, 0xd5, 0xa3, 0x0b, 0x90, 0xd2, 0x6d, 0xcb, 0xd3, 0x4c, 0x4b, 0xac, 0x9b, 0x14, 0xee, 0x13, + 0x42, 0x25, 0x5f, 0x86, 0x8c, 0xa6, 0xeb, 0x76, 0xd7, 0xf2, 0x54, 0x4b, 0x6b, 0x13, 0xd1, 0x42, + 0x5a, 0xd0, 0x36, 0xb5, 0x36, 0x41, 0x45, 0x90, 0x45, 0xa6, 0x44, 0xae, 0x29, 0x10, 0xa4, 0x5e, + 0xa8, 0x48, 0xf8, 0x8d, 0x3f, 0x51, 0x60, 0xfe, 0x43, 0xc7, 0xf4, 0x48, 0x59, 0xf3, 0xf4, 0x66, + 0x24, 0xc9, 0x12, 0x29, 0x43, 0xf3, 0x34, 0x9e, 0x63, 0x3c, 0x33, 0x9e, 0x5b, 0x2c, 0x33, 0x5a, + 0x9f, 0xe5, 0x19, 0x23, 0x88, 0xd3, 0xff, 0x7c, 0x3f, 0xc0, 0xec, 0x7f, 0x3f, 0x4c, 0xe4, 0xef, + 0x65, 0x94, 0x0e, 0xed, 0x1f, 0x66, 0xa4, 0x43, 0x8b, 0x60, 0xf4, 0xef, 0xc2, 0x9c, 0x38, 0x5f, + 0x89, 0xb1, 0x2f, 0x4d, 0x5a, 0x8f, 0x32, 0xce, 0x21, 0xd8, 0x50, 0x19, 0xc0, 0xf5, 0x34, 0xc7, + 0x63, 0x27, 0xa3, 0xa9, 0x62, 0xc3, 0xd2, 0xef, 0x31, 0x36, 0x4a, 0x45, 0x9b, 0x90, 0x6e, 0xbf, + 0xd0, 0x75, 0x75, 0xd7, 0x6c, 0x79, 0x22, 0x2c, 0x9c, 0x1b, 0x10, 0x22, 0x7b, 0xf2, 0xe4, 0x83, + 0x4a, 0xe5, 0x3e, 0xab, 0xc4, 0xa3, 0xb3, 0xfd, 0x32, 0x06, 0x2a, 0x81, 0xff, 0x47, 0xaf, 0x80, + 0xc8, 0x3e, 0x53, 0x5d, 0xd7, 0x63, 0xcb, 0x2b, 0x59, 0xce, 0x1e, 0x1d, 0x16, 0x53, 0x3c, 0xd7, + 0xa5, 0x56, 0xab, 0xe3, 0x14, 0xaf, 0x50, 0x73, 0xe5, 0xa6, 0xfa, 0x99, 0x02, 0xd9, 0x72, 0xb7, + 0xf5, 0x6c, 0xab, 0x53, 0xeb, 0xb6, 0xdb, 0x9a, 0x73, 0x80, 0xce, 0x4b, 0xcb, 0x30, 0x3f, 0x25, + 0x4c, 0xb3, 0x31, 0x31, 0xf5, 0xe6, 0xa7, 0x84, 0x4e, 0xbd, 0x48, 0x5f, 0xa1, 0x74, 0x9e, 0x9b, + 0x72, 0x05, 0xb2, 0xec, 0x4c, 0xa0, 0x12, 0xcb, 0x73, 0x4c, 0xc2, 0xcf, 0x9f, 0x31, 0x9c, 0x61, + 0xc4, 0x0d, 0x4e, 0x43, 0xd7, 0x20, 0xe7, 0x1e, 0xb8, 0x1e, 0x69, 0xab, 0x3c, 0x9f, 0x9f, 0x67, + 0x66, 0xc6, 0x70, 0x96, 0x53, 0x31, 0x27, 0x96, 0x7e, 0x12, 0x83, 0x9c, 0x9c, 0xe5, 0x28, 0xc1, + 0x5c, 0x19, 0x12, 0xbb, 0x66, 0xab, 0x17, 0x23, 0x09, 0x77, 0xbf, 0x52, 0xd2, 0x32, 0x75, 0xb2, + 0x12, 0xda, 0x31, 0xd6, 0x28, 0xa6, 0x7c, 0xf1, 0x4b, 0x05, 0xe2, 0x6c, 0xcf, 0xbb, 0x03, 0x71, + 0xb6, 0xf4, 0x94, 0x69, 0x96, 0x1e, 0xab, 0xda, 0xf3, 0xf6, 0x33, 0x7d, 0x6f, 0xcf, 0x3c, 0x6d, + 0x53, 0xbb, 0x77, 0xe7, 0x2e, 0x9b, 0xee, 0x0c, 0x16, 0x25, 0x54, 0x86, 0x24, 0x61, 0xe3, 0x21, + 0x86, 0xd8, 0x71, 0x82, 0x2c, 0x7c, 0x60, 0xe2, 0xe5, 0x32, 0x97, 0x7c, 0xe8, 0x1c, 0xc4, 0xa8, + 0x1d, 0xcd, 0xf1, 0x37, 0xf2, 0x47, 0x87, 0xc5, 0x18, 0xb5, 0x20, 0x4a, 0xe3, 0x01, 0xae, 0xf7, + 0xe2, 0xc9, 0x78, 0x3e, 0x51, 0xfa, 0xf3, 0x38, 0x64, 0xab, 0xed, 0x88, 0x16, 0xe6, 0xda, 0xe0, + 0x3c, 0x05, 0xe1, 0x80, 0x81, 0xb6, 0x02, 0xa6, 0x69, 0xc0, 0xb3, 0xc5, 0x8e, 0xe7, 0xd9, 0xaa, + 0x74, 0x97, 0x11, 0xf7, 0x27, 0x68, 0xfb, 0xdf, 0x99, 0xd8, 0x7e, 0x5d, 0xdb, 0x69, 0x11, 0x4c, + 0x79, 0x7a, 0x41, 0x35, 0x26, 0x00, 0xfd, 0x32, 0xdb, 0xcc, 0xb8, 0xad, 0xcc, 0x4e, 0x6f, 0x2b, + 0x73, 0xc4, 0x32, 0x98, 0xa5, 0xec, 0x0b, 0x43, 0x79, 0x1d, 0x62, 0x86, 0x29, 0x35, 0x39, 0xad, + 0x9b, 0xa2, 0x2c, 0x13, 0xec, 0x25, 0xee, 0xb7, 0x17, 0x7f, 0xdc, 0x72, 0x71, 0x0b, 0xa0, 0x3f, + 0x2a, 0xb4, 0x04, 0xb3, 0x76, 0xcb, 0xa0, 0xf0, 0x9f, 0x76, 0x21, 0x5b, 0x4e, 0x1d, 0x1d, 0x16, + 0x13, 0x5b, 0x2d, 0xa3, 0xba, 0x8e, 0x13, 0x76, 0xcb, 0xa8, 0x1a, 0xec, 0xda, 0x09, 0xd9, 0x53, + 0xd9, 0x6d, 0x1b, 0x96, 0xf7, 0x80, 0xe7, 0x2c, 0xb2, 0xb7, 0x4e, 0x5c, 0xdd, 0xbf, 0x85, 0x09, + 0x6b, 0xf9, 0x23, 0x05, 0x72, 0x52, 0x83, 0xd1, 0x2e, 0xf0, 0xa4, 0xd9, 0x16, 0x06, 0x1f, 0x3b, + 0x9e, 0xc1, 0x4b, 0x3e, 0x91, 0xfe, 0xf7, 0x03, 0x05, 0x4e, 0xf1, 0xe4, 0x0c, 0x5d, 0xf3, 0xa8, + 0x8b, 0xfd, 0xe6, 0x56, 0x7d, 0x0b, 0xf2, 0x8e, 0x66, 0x19, 0x76, 0xdb, 0xfc, 0x94, 0xf0, 0x43, + 0xb4, 0x2b, 0x12, 0x8d, 0x4e, 0xf6, 0xe8, 0xec, 0xb8, 0x28, 0xdf, 0x68, 0x7f, 0xa5, 0xc0, 0xe9, + 0xc1, 0x3e, 0x44, 0xa9, 0xab, 0x47, 0x43, 0x11, 0xe3, 0x57, 0x03, 0x84, 0x04, 0xb5, 0xce, 0x23, + 0xbf, 0x83, 0xc1, 0xe3, 0xc5, 0x77, 0x21, 0xc1, 0xc8, 0x2f, 0xe1, 0xd1, 0x84, 0xc2, 0x9b, 0x30, + 0xbf, 0x66, 0x18, 0xb5, 0x9a, 0x30, 0xba, 0x6f, 0xac, 0x6d, 0x09, 0x4f, 0x66, 0x82, 0xe0, 0x89, + 0xbf, 0xa5, 0x28, 0xe1, 0x49, 0x03, 0x72, 0x22, 0xff, 0x29, 0x9a, 0x57, 0x6e, 0x7b, 0x14, 0x46, + 0x09, 0x23, 0xe1, 0x85, 0xfe, 0x95, 0x85, 0x5e, 0x43, 0x51, 0x0e, 0xa0, 0x05, 0xa7, 0xa4, 0xdc, + 0x88, 0xde, 0x70, 0x8f, 0x1b, 0x05, 0x7b, 0x4d, 0xe2, 0x6f, 0x2d, 0xca, 0xa1, 0x7c, 0x76, 0x16, + 0x32, 0xa2, 0xff, 0xdb, 0x96, 0x69, 0x5b, 0x68, 0x05, 0x62, 0x0d, 0x71, 0x28, 0x48, 0x07, 0x02, + 0xac, 0xfe, 0x35, 0x31, 0x4c, 0x6b, 0x52, 0x86, 0x4e, 0xd7, 0x0b, 0x88, 0x35, 0xf7, 0x03, 0x8e, + 0x7d, 0x86, 0x4e, 0xd7, 0x43, 0xef, 0xc3, 0x49, 0xbd, 0x7f, 0xe7, 0x46, 0xa5, 0xcc, 0xb1, 0xd0, + 0x2c, 0xbf, 0xc0, 0xab, 0x47, 0x38, 0xa7, 0x0f, 0x90, 0xd1, 0x9a, 0xff, 0xd2, 0x47, 0x3c, 0xf4, + 0xe4, 0x39, 0x7c, 0xcf, 0xc4, 0x77, 0x33, 0x04, 0xbd, 0x0e, 0xb3, 0x06, 0xbb, 0x5c, 0x20, 0x4e, + 0xae, 0x41, 0x2e, 0x71, 0xe0, 0xf6, 0x06, 0x16, 0xf5, 0xd1, 0x43, 0xc8, 0xf0, 0x7f, 0x3c, 0x1d, + 0x44, 0xec, 0x60, 0xd7, 0xc2, 0xf9, 0x7d, 0x36, 0x83, 0xd3, 0x46, 0x9f, 0x86, 0xee, 0x42, 0xdc, + 0xd5, 0x35, 0x7e, 0x6c, 0x0b, 0x8e, 0x9d, 0xf9, 0xd2, 0xbf, 0x31, 0xab, 0x8b, 0x3e, 0x84, 0xf9, + 0x1d, 0xd2, 0x30, 0x2d, 0xd5, 0xeb, 0xc7, 0x2b, 0x58, 0x9e, 0xe1, 0x60, 0x88, 0xa4, 0xe7, 0xd5, + 0x83, 0x93, 0x59, 0x71, 0x7e, 0x67, 0xe8, 0x01, 0x9d, 0x26, 0xb6, 0x29, 0xfb, 0xc4, 0xa6, 0x42, + 0xa7, 0x29, 0x30, 0xcb, 0x14, 0xe7, 0xc8, 0x00, 0x19, 0x6d, 0x40, 0x5a, 0xa3, 0xbe, 0x52, 0x65, + 0x29, 0x7e, 0x05, 0x08, 0x7d, 0xdb, 0x30, 0x92, 0x6c, 0x88, 0x41, 0xeb, 0x91, 0xfa, 0x62, 0xda, + 0xc4, 0x69, 0x90, 0x42, 0x7a, 0xbc, 0x18, 0x7f, 0xfc, 0x42, 0x88, 0x61, 0x24, 0xf4, 0x08, 0xb2, + 0x4d, 0x99, 0xe3, 0xc2, 0x02, 0x4b, 0x99, 0xd0, 0xd7, 0x0d, 0x01, 0xa9, 0x39, 0x38, 0xd3, 0xf4, + 0x11, 0xd1, 0x2b, 0x30, 0xd3, 0xd0, 0x0b, 0x59, 0x26, 0xe1, 0xc2, 0xb8, 0x44, 0x14, 0x3c, 0xd3, + 0xd0, 0xd1, 0xdb, 0x90, 0xe4, 0xa1, 0xfa, 0x7d, 0xab, 0x90, 0x0b, 0x5d, 0xbc, 0x83, 0x59, 0x12, + 0x98, 0xa5, 0x14, 0xd0, 0xb6, 0x1a, 0x70, 0xd6, 0x9f, 0xbc, 0xcf, 0x42, 0x0b, 0x2d, 0x96, 0x2d, + 0x55, 0x38, 0xc9, 0x84, 0xad, 0x04, 0xda, 0x5e, 0x78, 0xfa, 0x17, 0x5e, 0x30, 0x82, 0x9e, 0xa2, + 0x4d, 0xc8, 0x39, 0x3c, 0xc2, 0x24, 0xee, 0x06, 0x14, 0xf2, 0x4c, 0xfe, 0x8d, 0x60, 0x4f, 0x33, + 0x12, 0x57, 0xc5, 0x59, 0xc7, 0x4f, 0x45, 0xdf, 0x87, 0xd3, 0x83, 0xf2, 0xc4, 0x8a, 0x99, 0x67, + 0x52, 0x5f, 0x99, 0x28, 0xd5, 0xbf, 0x70, 0x90, 0x33, 0xf2, 0x08, 0xdd, 0x83, 0x04, 0x37, 0x09, + 0xc4, 0x04, 0x16, 0x83, 0x8e, 0x87, 0x7e, 0x6b, 0xe0, 0xb5, 0xe9, 0x02, 0xf6, 0x44, 0x98, 0x45, + 0x6d, 0xd9, 0x8d, 0xc2, 0xa9, 0xd0, 0x05, 0x3c, 0x1a, 0x2d, 0xc2, 0x69, 0xaf, 0x4f, 0xa3, 0x26, + 0xe5, 0x70, 0xba, 0x78, 0xff, 0x7f, 0x3a, 0xd4, 0xa4, 0x02, 0x62, 0x2f, 0x38, 0xe3, 0xf8, 0x88, + 0xb4, 0x5b, 0x22, 0x55, 0x4e, 0x65, 0x5e, 0x61, 0x21, 0xb4, 0x5b, 0xa3, 0x77, 0x43, 0x70, 0xda, + 0xe9, 0xd3, 0x50, 0x1d, 0xf2, 0x22, 0xfb, 0x5e, 0x95, 0x6f, 0x91, 0x0b, 0x67, 0x98, 0xb4, 0x5b, + 0x81, 0x2e, 0x37, 0xe8, 0xad, 0x39, 0x3e, 0xa9, 0x0f, 0xd2, 0x51, 0x07, 0x16, 0x7d, 0x66, 0xf8, + 0x82, 0xbd, 0xa0, 0xed, 0xcb, 0x3f, 0xcb, 0xe4, 0xdf, 0x1d, 0x6b, 0x89, 0x81, 0x2f, 0x8e, 0x71, + 0xc1, 0x08, 0xa9, 0x40, 0x7d, 0x1d, 0x93, 0xaf, 0xea, 0xfd, 0xdb, 0x11, 0x85, 0x42, 0xa8, 0xaf, + 0x0b, 0xb9, 0xc1, 0x81, 0xf3, 0xfa, 0xd0, 0x03, 0xea, 0x78, 0x2d, 0xdb, 0xee, 0x14, 0xce, 0x85, + 0x3a, 0x5e, 0x5f, 0xe0, 0x15, 0xb3, 0xba, 0x74, 0x0d, 0x9b, 0x96, 0xe9, 0xb1, 0xfd, 0x6b, 0x31, + 0x74, 0x0d, 0x0f, 0xde, 0xfe, 0xc4, 0x73, 0x26, 0x2f, 0xd3, 0xa5, 0xe5, 0x89, 0x78, 0x95, 0x30, + 0x95, 0x0b, 0xa1, 0x4b, 0x2b, 0x28, 0xb0, 0x85, 0xb3, 0x9e, 0x9f, 0x4a, 0x97, 0x16, 0xf7, 0x89, + 0x43, 0x52, 0x2f, 0x86, 0x2e, 0xad, 0xd0, 0x3c, 0x62, 0x8c, 0xb4, 0x91, 0x47, 0xf4, 0x40, 0xcf, + 0x04, 0xb2, 0x4b, 0xf1, 0x85, 0x4b, 0xa1, 0x5b, 0xec, 0x70, 0xd8, 0x0a, 0xa7, 0x5a, 0x92, 0x42, + 0xfd, 0x36, 0xc3, 0x35, 0xea, 0x8e, 0xe6, 0xe9, 0xcd, 0x42, 0x31, 0xd4, 0x6f, 0x8f, 0xbc, 0xbd, + 0xc3, 0xb0, 0xd7, 0x23, 0xd1, 0x9d, 0x9a, 0x9f, 0xbb, 0x0b, 0x4b, 0x13, 0x0e, 0x7a, 0xbd, 0x9d, + 0x9a, 0xd7, 0x47, 0xdf, 0x85, 0xd4, 0xf3, 0x2e, 0x71, 0x0e, 0x98, 0xdf, 0xbd, 0x1c, 0xfa, 0xb1, + 0x83, 0xa1, 0x3c, 0x22, 0x9c, 0x7c, 0x2e, 0x08, 0xb4, 0x69, 0x7e, 0x02, 0x2a, 0x94, 0x42, 0x9b, + 0x1e, 0x38, 0xf3, 0x62, 0x51, 0x1f, 0x69, 0xb0, 0xc0, 0xe7, 0x47, 0xa4, 0x1f, 0x3b, 0x22, 0xcf, + 0xb7, 0x70, 0x85, 0x09, 0x0a, 0x3d, 0x56, 0x04, 0x66, 0x40, 0xe3, 0x53, 0xda, 0xe8, 0x33, 0xea, + 0x7c, 0xc4, 0xee, 0xca, 0x8f, 0x22, 0x85, 0xab, 0xa1, 0xce, 0x27, 0xe0, 0xcc, 0x86, 0x33, 0x9a, + 0x8f, 0xc8, 0xf7, 0x58, 0x43, 0x75, 0x5d, 0x8f, 0xe2, 0xff, 0xc2, 0xb5, 0x31, 0x7b, 0xec, 0xd0, + 0x71, 0x84, 0x5d, 0x9f, 0xa9, 0x71, 0x3e, 0x96, 0x6f, 0xdd, 0x22, 0x9a, 0x23, 0x1c, 0xfd, 0xf5, + 0x50, 0x31, 0x23, 0xf7, 0x2b, 0x31, 0xe8, 0x3d, 0x12, 0xc5, 0x22, 0x8e, 0xbc, 0x40, 0xa4, 0xba, + 0x9e, 0xe6, 0xb9, 0x85, 0x1b, 0xa1, 0x58, 0x24, 0xf0, 0x7a, 0x13, 0xce, 0x39, 0x03, 0x64, 0xf4, + 0x16, 0xcc, 0x89, 0xbb, 0x19, 0x85, 0x9b, 0x63, 0xe0, 0xb3, 0xff, 0x98, 0x82, 0x25, 0x07, 0xf7, + 0xf3, 0xfc, 0x62, 0x07, 0x1f, 0xd8, 0xad, 0x31, 0x7e, 0x7e, 0xe4, 0xa0, 0x40, 0xfd, 0x7c, 0x9f, + 0xf8, 0x66, 0xfc, 0x0b, 0x7e, 0xe4, 0x3f, 0x9f, 0xbf, 0x50, 0xfa, 0xea, 0x0c, 0x64, 0x25, 0x66, + 0xe7, 0x78, 0xfc, 0x35, 0x3f, 0x1e, 0xbf, 0x14, 0x86, 0xc7, 0x39, 0x07, 0x07, 0xe4, 0xaf, 0xf9, + 0x01, 0xf9, 0xa5, 0x30, 0x40, 0x2e, 0x39, 0x28, 0x22, 0xc7, 0x61, 0x88, 0xfc, 0xd6, 0x14, 0x88, + 0x5c, 0x08, 0x1a, 0x86, 0xe4, 0xe5, 0x51, 0x48, 0x7e, 0x75, 0x3c, 0x24, 0x17, 0x82, 0x7c, 0x98, + 0xfc, 0x8d, 0x21, 0x4c, 0x7e, 0x79, 0x0c, 0x26, 0x17, 0xdc, 0x12, 0x94, 0x57, 0x03, 0x41, 0xf9, + 0xf5, 0x49, 0xa0, 0x5c, 0x48, 0x19, 0x40, 0xe5, 0xab, 0x03, 0xa8, 0xbc, 0x18, 0x8a, 0xca, 0x05, + 0x2f, 0x87, 0xe5, 0x1f, 0x85, 0xc3, 0xf2, 0xef, 0x4c, 0x05, 0xcb, 0x85, 0xb4, 0x51, 0x5c, 0x8e, + 0xc3, 0x70, 0xf9, 0xad, 0x29, 0x70, 0xb9, 0x9c, 0xac, 0x21, 0x60, 0x7e, 0x3f, 0x08, 0x98, 0x5f, + 0x9b, 0x00, 0xcc, 0x85, 0x2c, 0x3f, 0x32, 0xbf, 0x1f, 0x84, 0xcc, 0xaf, 0x4d, 0x40, 0xe6, 0x03, + 0x72, 0x38, 0x34, 0x7f, 0x1c, 0x0c, 0xcd, 0x6f, 0x4c, 0x84, 0xe6, 0x42, 0xd6, 0x20, 0x36, 0x7f, + 0xd5, 0x87, 0xcd, 0x2f, 0x86, 0x60, 0x73, 0xc1, 0x48, 0xc1, 0xf9, 0x3b, 0x23, 0xe0, 0xbc, 0x34, + 0x0e, 0x9c, 0x0b, 0xce, 0x1e, 0x3a, 0x6f, 0x4e, 0x42, 0xe7, 0xaf, 0x4d, 0x8f, 0xce, 0x85, 0xec, + 0x10, 0x78, 0xbe, 0x15, 0x02, 0xcf, 0x6f, 0x4e, 0x86, 0xe7, 0x42, 0xf0, 0x10, 0x3e, 0x57, 0xc7, + 0xe2, 0xf3, 0x57, 0xa7, 0xc4, 0xe7, 0x42, 0x76, 0x10, 0x40, 0xff, 0xc5, 0x41, 0x80, 0xbe, 0x14, + 0x0e, 0xd0, 0x85, 0x10, 0x81, 0xd0, 0xab, 0x81, 0x08, 0xfd, 0xfa, 0x24, 0x84, 0x2e, 0x57, 0xb3, + 0x1f, 0xa2, 0x3f, 0x0e, 0x86, 0xe8, 0x37, 0x26, 0x42, 0x74, 0x69, 0x5a, 0x03, 0x18, 0xbd, 0x1a, + 0x88, 0xd1, 0xaf, 0x4f, 0xc2, 0xe8, 0xb2, 0x63, 0x7e, 0x90, 0xbe, 0x1d, 0x0a, 0xd2, 0x6f, 0x4f, + 0x03, 0xd2, 0x85, 0xc8, 0x11, 0x94, 0xfe, 0x7c, 0x0a, 0x94, 0xbe, 0x7a, 0x2c, 0x94, 0x2e, 0x5a, + 0x0a, 0x87, 0xe9, 0x1f, 0x85, 0xc3, 0xf4, 0xef, 0x4c, 0x05, 0xd3, 0xa5, 0xef, 0x1b, 0xc1, 0xe9, + 0xab, 0x03, 0x38, 0xbd, 0x18, 0x8a, 0xd3, 0xa5, 0x2b, 0x66, 0x40, 0xfd, 0x9d, 0x11, 0xa0, 0x5e, + 0x1a, 0x07, 0xd4, 0xe5, 0x7a, 0x96, 0x48, 0x5d, 0x1d, 0x8b, 0xac, 0x5f, 0x9d, 0x12, 0x59, 0xcb, + 0x45, 0x11, 0x00, 0xad, 0x2b, 0x01, 0xd0, 0xfa, 0xea, 0x78, 0x68, 0x2d, 0xb7, 0xca, 0x3e, 0xb6, + 0xbe, 0x1f, 0x84, 0xad, 0xaf, 0x4d, 0xc0, 0xd6, 0xd2, 0xf3, 0xfa, 0xc0, 0xf5, 0x1b, 0x43, 0xe0, + 0xfa, 0xf2, 0xc4, 0xe8, 0x5f, 0x0f, 0x5d, 0xbf, 0x3b, 0x8a, 0xae, 0xaf, 0x8c, 0x45, 0xd7, 0x82, + 0xbf, 0x0f, 0xaf, 0xdf, 0x18, 0x82, 0xd7, 0x97, 0xc7, 0xc0, 0x6b, 0xd9, 0xb8, 0xc0, 0xd7, 0x3b, + 0xe3, 0xf1, 0xf5, 0xf2, 0xb4, 0xf8, 0x5a, 0x88, 0x0d, 0x04, 0xd8, 0x8f, 0x83, 0x01, 0xf6, 0x8d, + 0x29, 0x43, 0x02, 0x43, 0x08, 0xfb, 0x7e, 0x10, 0xc2, 0xbe, 0x36, 0x01, 0x61, 0xf7, 0xf7, 0xca, + 0x1e, 0xc4, 0xbe, 0x1f, 0x04, 0xb1, 0xaf, 0x4d, 0x80, 0xd8, 0x52, 0x8e, 0x0f, 0x63, 0xe3, 0x30, + 0x8c, 0x7d, 0x6b, 0x0a, 0x8c, 0x2d, 0x71, 0xc5, 0x10, 0xc8, 0x7e, 0x7b, 0x18, 0x64, 0x97, 0xc6, + 0x81, 0x6c, 0xb9, 0xf2, 0x24, 0xca, 0x7e, 0x1c, 0x8c, 0xb2, 0x6f, 0x4c, 0x44, 0xd9, 0x7d, 0x57, + 0x1d, 0x0c, 0xb3, 0xdf, 0x8b, 0x27, 0x2f, 0xe4, 0x2f, 0x96, 0x3e, 0x4f, 0xc0, 0xec, 0x43, 0x19, + 0x4b, 0xf5, 0x5d, 0x9b, 0x52, 0x5e, 0xe6, 0xda, 0x14, 0x5a, 0xa7, 0x63, 0x65, 0x96, 0x22, 0xa0, + 0xf7, 0x98, 0x3b, 0xa1, 0x23, 0x37, 0x02, 0x25, 0xeb, 0x4b, 0xe4, 0x0a, 0xa3, 0x7b, 0x90, 0xed, + 0xba, 0xc4, 0x51, 0x3b, 0x8e, 0x69, 0x3b, 0xa6, 0xc7, 0xd3, 0x63, 0x94, 0x72, 0xfe, 0xeb, 0xc3, + 0x62, 0x66, 0xdb, 0x25, 0xce, 0x53, 0x41, 0xc7, 0x99, 0xae, 0xaf, 0x24, 0xbf, 0xb6, 0x97, 0x98, + 0xfe, 0x6b, 0x7b, 0xef, 0x43, 0xde, 0x21, 0x9a, 0x31, 0xe0, 0xd6, 0xf9, 0x3d, 0xa3, 0xe0, 0x0d, + 0x4f, 0x33, 0x7c, 0xbe, 0x9b, 0xdd, 0x37, 0x3a, 0xe9, 0x0c, 0x12, 0xd1, 0x1d, 0x58, 0x68, 0x6b, + 0xfb, 0xfc, 0x02, 0x9d, 0xdc, 0x96, 0x59, 0x4c, 0x39, 0xc9, 0x32, 0x1e, 0x50, 0x5b, 0xdb, 0x67, + 0x9f, 0xee, 0xe3, 0x8f, 0xd8, 0x97, 0x82, 0xae, 0x41, 0xce, 0x30, 0x5d, 0xcf, 0xb4, 0x74, 0x79, + 0x99, 0x3f, 0xc5, 0x6f, 0xd5, 0x48, 0x2a, 0xbf, 0xaf, 0x7f, 0x1b, 0xe6, 0x45, 0x82, 0x47, 0xff, + 0x63, 0x7e, 0x0c, 0xd8, 0x26, 0x69, 0x2f, 0xe8, 0x83, 0xfe, 0xf7, 0x0f, 0x2b, 0x70, 0xb2, 0xa1, + 0x79, 0x64, 0x4f, 0x3b, 0x50, 0x2d, 0xdb, 0x60, 0xba, 0x4f, 0xb3, 0x6b, 0xd0, 0xe7, 0x8f, 0x0e, + 0x8b, 0xd9, 0x07, 0xfc, 0xd1, 0xa6, 0x6d, 0xf0, 0x19, 0x98, 0xe5, 0xff, 0x70, 0xb6, 0xe1, 0x7b, + 0x60, 0xa0, 0x35, 0xc8, 0x50, 0x08, 0xa0, 0xda, 0xfc, 0xa3, 0x3b, 0x02, 0xb2, 0x86, 0xbd, 0xc4, + 0x17, 0x9f, 0xe6, 0xc1, 0x69, 0xb7, 0x5f, 0x10, 0x9f, 0x00, 0xf8, 0x5c, 0x81, 0xcc, 0x40, 0xea, + 0xd2, 0x5b, 0x43, 0x81, 0x9e, 0x73, 0xc1, 0x30, 0x38, 0x38, 0x80, 0xb9, 0x06, 0x49, 0xa1, 0x58, + 0x19, 0xc2, 0x2c, 0x86, 0x43, 0x1d, 0x76, 0xe4, 0x94, 0xb1, 0x5e, 0xc9, 0xf6, 0x66, 0xfc, 0x0f, + 0x7e, 0x5c, 0x3c, 0x51, 0xfa, 0x79, 0x0c, 0xb2, 0x83, 0xb9, 0x4a, 0xd5, 0xa1, 0x7e, 0x05, 0x2d, + 0xcc, 0x01, 0x8e, 0xf0, 0x5e, 0xae, 0x43, 0xca, 0x11, 0x95, 0x64, 0x37, 0x97, 0xc6, 0x84, 0xb3, + 0xfc, 0xfd, 0xec, 0x33, 0x2e, 0xfe, 0x74, 0xa6, 0xb7, 0xa0, 0x97, 0x21, 0xc1, 0x3e, 0xbf, 0x29, + 0xba, 0x16, 0x94, 0x91, 0xbc, 0x41, 0x9f, 0x63, 0x5e, 0x8d, 0x3a, 0x80, 0xfa, 0x4b, 0xdd, 0x9b, + 0xec, 0x11, 0x5e, 0xe2, 0xf3, 0x95, 0x2f, 0x79, 0xd1, 0xaf, 0x46, 0x8f, 0xeb, 0xad, 0x16, 0xd1, + 0x3d, 0xf1, 0xa5, 0x4f, 0xf9, 0x91, 0xca, 0xab, 0xc3, 0x22, 0xc4, 0x77, 0x41, 0x97, 0xb1, 0xf8, + 0x2e, 0xa8, 0x2f, 0xaa, 0x9c, 0xeb, 0x89, 0x60, 0xeb, 0x85, 0xa7, 0x1c, 0xf0, 0xa9, 0xbe, 0x5d, + 0x83, 0x53, 0x01, 0xab, 0x17, 0xe5, 0x00, 0x2a, 0x5b, 0x9b, 0xb5, 0x6a, 0xad, 0xbe, 0xb1, 0x59, + 0x97, 0x9f, 0x9a, 0x5c, 0x5b, 0x57, 0xb7, 0x37, 0x2b, 0x5b, 0x4f, 0x9e, 0x54, 0xeb, 0xf5, 0x8d, + 0xf5, 0xbc, 0x82, 0xf2, 0x90, 0xa9, 0x6e, 0xfa, 0xea, 0x89, 0x2f, 0x4c, 0xde, 0xfe, 0x10, 0xd2, + 0xbe, 0xab, 0x87, 0x08, 0x41, 0xee, 0xe9, 0x76, 0xed, 0xa1, 0x5a, 0xaf, 0x3e, 0xd9, 0xa8, 0xd5, + 0xd7, 0x9e, 0x3c, 0xcd, 0x9f, 0xa0, 0x0d, 0x30, 0xda, 0x5a, 0x79, 0x0b, 0xd7, 0xf3, 0x4a, 0xaf, + 0x5c, 0xdf, 0xda, 0xae, 0x3c, 0xcc, 0xcf, 0xf4, 0xca, 0xef, 0x6f, 0x6f, 0xe0, 0x8f, 0xf3, 0x31, + 0x21, 0x58, 0x83, 0x85, 0xc0, 0x4c, 0x5c, 0x94, 0x86, 0xb9, 0x6d, 0x8b, 0xdd, 0x83, 0xcb, 0x9f, + 0x40, 0x59, 0x5f, 0x32, 0x6e, 0x5e, 0x41, 0x49, 0x9e, 0xf4, 0x99, 0x9f, 0x41, 0xb3, 0x30, 0x53, + 0x5b, 0xcd, 0xc7, 0xd0, 0x49, 0x48, 0xfb, 0x32, 0x5a, 0xf3, 0x71, 0x94, 0x12, 0x69, 0x8d, 0xf9, + 0xc4, 0xed, 0xcb, 0xe0, 0xcb, 0x23, 0x43, 0x00, 0xb3, 0x8f, 0x35, 0x8f, 0xb8, 0x5e, 0xfe, 0x04, + 0x9a, 0x83, 0xd8, 0x5a, 0xab, 0x95, 0x57, 0xee, 0x7e, 0x04, 0x49, 0xf9, 0x45, 0x12, 0xf4, 0x18, + 0x12, 0x1c, 0x4d, 0x15, 0xc3, 0x57, 0x04, 0x5b, 0x5b, 0x8b, 0x4b, 0x93, 0x96, 0x4c, 0xe9, 0x44, + 0xf9, 0xf2, 0x17, 0xff, 0x76, 0xe9, 0xc4, 0x17, 0x47, 0x97, 0x94, 0x2f, 0x8f, 0x2e, 0x29, 0xff, + 0x74, 0x74, 0x49, 0xf9, 0xd7, 0xa3, 0x4b, 0xca, 0x0f, 0xff, 0xfd, 0xd2, 0x89, 0x4f, 0xe6, 0x04, + 0xcb, 0xce, 0x2c, 0xfb, 0xa8, 0xeb, 0xea, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xaf, 0xe3, 0xf4, + 0x5b, 0xb5, 0x56, 0x00, 0x00, } diff --git a/pkg/roachpb/api.proto b/pkg/roachpb/api.proto index a430c64d7960..c92a5f20aa85 100644 --- a/pkg/roachpb/api.proto +++ b/pkg/roachpb/api.proto @@ -1063,6 +1063,7 @@ message ExportResponse { ResponseHeader header = 1 [(gogoproto.nullable) = false, (gogoproto.embed) = true]; repeated File files = 2 [(gogoproto.nullable) = false]; + util.hlc.Timestamp start_time = 3 [(gogoproto.nullable) = false]; } // ImportRequest is the argument to the Import() method, to bulk load key/value