diff --git a/pkg/kv/kvclient/kvcoord/dist_sender.go b/pkg/kv/kvclient/kvcoord/dist_sender.go index 5f87ac4d6241..ebfab99fbb8d 100644 --- a/pkg/kv/kvclient/kvcoord/dist_sender.go +++ b/pkg/kv/kvclient/kvcoord/dist_sender.go @@ -2080,7 +2080,18 @@ func (ds *DistSender) sendToReplicas( ds.metrics.NotLeaseHolderErrCount.Inc(1) // If we got some lease information, we use it. If not, we loop around // and try the next replica. - if tErr.Lease != nil || tErr.LeaseHolder != nil { + + // We cannot trust the lease information in the error if it is coming + // from a replica that has a stale view of the range (compared to what + // we've got in the cache). + withStaleRangeDesc := tErr.DescriptorGeneration > 0 && tErr.DescriptorGeneration < routing.Desc().Generation + if withStaleRangeDesc { + log.VErrEventf( + ctx, 1, "NotLeaseHolderError originated from a replica with a "+ + "stale range descriptor generation; ignoring", + ) + } + if (tErr.Lease != nil || tErr.LeaseHolder != nil) && !withStaleRangeDesc { // Update the leaseholder in the range cache. Naively this would also // happen when the next RPC comes back, but we don't want to wait out // the additional RPC latency. diff --git a/pkg/kv/kvclient/kvcoord/dist_sender_test.go b/pkg/kv/kvclient/kvcoord/dist_sender_test.go index d21ff6c34857..02747d2aa155 100644 --- a/pkg/kv/kvclient/kvcoord/dist_sender_test.go +++ b/pkg/kv/kvclient/kvcoord/dist_sender_test.go @@ -962,6 +962,102 @@ func TestDistSenderMovesOnFromReplicaWithStaleLease(t *testing.T) { require.LessOrEqual(t, callsToNode2, 11) } +// TestDistSenderIgnodesNLHEBasedOnOldRangeGeneration tests that a +// NotLeaseHolderError received from a replica that has a stale range descriptor +// version is ignored, and the next replica is attempted. +func TestDistSenderIgnoresNLHEBasedOnOldRangeGeneration(t *testing.T) { + defer leaktest.AfterTest(t)() + defer log.Scope(t).Close(t) + tracer := tracing.NewTracer() + ctx, finishAndGetRecording := tracing.ContextWithRecordingSpan( + context.Background(), tracer, "test", + ) + stopper := stop.NewStopper() + defer stopper.Stop(ctx) + + clock := hlc.NewClock(hlc.UnixNano, time.Nanosecond) + rpcContext := rpc.NewInsecureTestingContext(clock, stopper) + g := makeGossip(t, stopper, rpcContext) + for _, n := range testUserRangeDescriptor3Replicas.Replicas().VoterDescriptors() { + require.NoError(t, g.AddInfoProto( + gossip.MakeNodeIDKey(n.NodeID), + newNodeDesc(n.NodeID), + gossip.NodeDescriptorTTL, + )) + } + + oldGeneration := roachpb.RangeGeneration(1) + newGeneration := roachpb.RangeGeneration(2) + desc := roachpb.RangeDescriptor{ + RangeID: 1, + Generation: newGeneration, + StartKey: roachpb.RKeyMin, + EndKey: roachpb.RKeyMax, + InternalReplicas: []roachpb.ReplicaDescriptor{ + {NodeID: 1, StoreID: 1, ReplicaID: 1}, + {NodeID: 2, StoreID: 2, ReplicaID: 2}, + {NodeID: 3, StoreID: 3, ReplicaID: 3}, + }, + } + // Ambiguous lease refers to a replica that is incompatible with the cached + // range descriptor. + ambiguousLease := roachpb.Lease{ + Replica: roachpb.ReplicaDescriptor{NodeID: 4, StoreID: 4, ReplicaID: 4}, + } + cachedLease := roachpb.Lease{ + Replica: desc.InternalReplicas[1], + } + + // The cache starts with a lease on node 2, so the first request will be + // routed there. That replica will reply with an NLHE with an old descriptor + // generation value, which should make the DistSender try the next replica. + var callsToNode2 int + sendFn := func(ctx context.Context, ba roachpb.BatchRequest) (*roachpb.BatchResponse, error) { + if ba.Replica.NodeID == 2 { + callsToNode2++ + reply := &roachpb.BatchResponse{} + err := &roachpb.NotLeaseHolderError{Lease: &ambiguousLease, DescriptorGeneration: oldGeneration} + reply.Error = roachpb.NewError(err) + return reply, nil + } + require.Equal(t, ba.Replica.NodeID, roachpb.NodeID(1)) + return ba.CreateReply(), nil + } + + cfg := DistSenderConfig{ + AmbientCtx: log.AmbientContext{Tracer: tracer}, + Clock: clock, + NodeDescs: g, + RPCContext: rpcContext, + TestingKnobs: ClientTestingKnobs{ + TransportFactory: adaptSimpleTransport(sendFn), + }, + RangeDescriptorDB: threeReplicaMockRangeDescriptorDB, + NodeDialer: nodedialer.New(rpcContext, gossip.AddressResolver(g)), + Settings: cluster.MakeTestingClusterSettings(), + } + ds := NewDistSender(cfg) + + ds.rangeCache.Insert(ctx, roachpb.RangeInfo{ + Desc: desc, + Lease: cachedLease, + }) + + get := roachpb.NewGet(roachpb.Key("a"), false /* forUpdate */) + _, pErr := kv.SendWrapped(ctx, ds, get) + require.Nil(t, pErr) + + require.Equal(t, ds.Metrics().RangeLookups.Count(), int64(0)) + require.Equal(t, ds.Metrics().NextReplicaErrCount.Count(), int64(1)) + require.Equal(t, ds.Metrics().NotLeaseHolderErrCount.Count(), int64(1)) + require.Equal(t, callsToNode2, 1) + require.Regexp( + t, + "originated from a replica with a stale range descriptor generation", + finishAndGetRecording().String(), + ) +} + func TestDistSenderRetryOnTransportErrors(t *testing.T) { defer leaktest.AfterTest(t)() defer log.Scope(t).Close(t) diff --git a/pkg/kv/kvserver/replica_range_lease.go b/pkg/kv/kvserver/replica_range_lease.go index 05370033ffaa..9df4cd08b7ef 100644 --- a/pkg/kv/kvserver/replica_range_lease.go +++ b/pkg/kv/kvserver/replica_range_lease.go @@ -903,8 +903,9 @@ func newNotLeaseHolderError( l roachpb.Lease, proposerStoreID roachpb.StoreID, rangeDesc *roachpb.RangeDescriptor, msg string, ) *roachpb.NotLeaseHolderError { err := &roachpb.NotLeaseHolderError{ - RangeID: rangeDesc.RangeID, - CustomMsg: msg, + RangeID: rangeDesc.RangeID, + CustomMsg: msg, + DescriptorGeneration: rangeDesc.Generation, } if proposerStoreID != 0 { err.Replica, _ = rangeDesc.GetReplicaDescriptor(proposerStoreID) diff --git a/pkg/roachpb/errors.pb.go b/pkg/roachpb/errors.pb.go index 842d23cf449e..dac8441ef594 100644 --- a/pkg/roachpb/errors.pb.go +++ b/pkg/roachpb/errors.pb.go @@ -436,6 +436,10 @@ type NotLeaseHolderError struct { // set. Lease *Lease `protobuf:"bytes,4,opt,name=lease" json:"lease,omitempty"` RangeID RangeID `protobuf:"varint,3,opt,name=range_id,json=rangeId,casttype=RangeID" json:"range_id"` + // The range descriptor generation of the replica the error originated from. + // Used to determine whether the error was returned because the replica had a + // stale understanding of who the leaseholder is. + DescriptorGeneration RangeGeneration `protobuf:"varint,6,opt,name=descriptor_generation,json=descriptorGeneration,casttype=RangeGeneration" json:"descriptor_generation"` // If set, the Error() method will return this instead of composing its // regular spiel. Useful because we reuse this error when rejecting a command // because the lease under which its application was attempted is different @@ -2309,211 +2313,214 @@ func init() { func init() { proto.RegisterFile("roachpb/errors.proto", fileDescriptor_123941c6716fd549) } var fileDescriptor_123941c6716fd549 = []byte{ - // 3258 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0xcd, 0x6f, 0xdb, 0xd8, - 0xb5, 0xd7, 0x97, 0x6d, 0xf9, 0xf8, 0x23, 0xf4, 0xf5, 0x17, 0xed, 0x24, 0xb2, 0xa3, 0x24, 0x33, - 0x49, 0x06, 0x23, 0x3f, 0x64, 0xde, 0xbc, 0xf7, 0x26, 0x2f, 0x6f, 0x21, 0x4b, 0xb4, 0x45, 0x59, - 0x5f, 0x43, 0xc9, 0x71, 0x32, 0xc1, 0xe0, 0x3e, 0x5a, 0xba, 0x96, 0xf9, 0x42, 0x91, 0x1a, 0x92, - 0x72, 0x6c, 0xe0, 0x2d, 0xda, 0xce, 0x66, 0xd0, 0x6e, 0xba, 0x29, 0xd0, 0x65, 0x81, 0x41, 0x17, - 0x05, 0x8a, 0xa2, 0x7f, 0x41, 0x57, 0x2d, 0x30, 0xab, 0x62, 0xd0, 0xd5, 0xa0, 0x8b, 0xb4, 0x4d, - 0xfa, 0x57, 0xcc, 0xaa, 0xb8, 0x1f, 0x94, 0x28, 0x89, 0x72, 0x9c, 0xd9, 0x91, 0xe7, 0xeb, 0x9e, - 0x7b, 0xee, 0xe1, 0x39, 0xbf, 0x73, 0x09, 0x2b, 0x8e, 0xad, 0x37, 0x4f, 0xbb, 0xc7, 0x3b, 0xc4, - 0x71, 0x6c, 0xc7, 0xcd, 0x74, 0x1d, 0xdb, 0xb3, 0xd1, 0x52, 0xd3, 0x6e, 0xbe, 0x60, 0x9c, 0xcc, - 0x8b, 0xb3, 0xcc, 0x8b, 0xb3, 0xee, 0xf1, 0xe6, 0x2a, 0x17, 0x18, 0x91, 0xdc, 0x44, 0xbe, 0x7e, - 0x4b, 0xf7, 0x74, 0x41, 0x5b, 0xf3, 0x69, 0x1d, 0xe2, 0xe9, 0x01, 0xba, 0xdc, 0xf3, 0x0c, 0x73, - 0xe7, 0xd4, 0x6c, 0xee, 0x78, 0x46, 0x87, 0xb8, 0x9e, 0xde, 0xe9, 0x0a, 0xce, 0x4a, 0xdb, 0x6e, - 0xdb, 0xec, 0x71, 0x87, 0x3e, 0x71, 0x6a, 0xfa, 0xf7, 0x31, 0x58, 0xae, 0xd8, 0x5e, 0x89, 0xe8, - 0x2e, 0x29, 0xd8, 0x66, 0x8b, 0x38, 0x0a, 0x5d, 0x1a, 0xe5, 0x61, 0xc6, 0x21, 0x5d, 0xd3, 0x68, - 0xea, 0x72, 0x74, 0x3b, 0x7a, 0x6f, 0xee, 0xe1, 0x9d, 0xcc, 0xc0, 0x5f, 0xb1, 0x76, 0x46, 0xe3, - 0x12, 0x79, 0xe2, 0x36, 0x1d, 0xa3, 0xeb, 0xd9, 0xce, 0x6e, 0xe2, 0x9b, 0x57, 0x5b, 0x11, 0xcd, - 0x57, 0x45, 0xfb, 0x30, 0x6f, 0x52, 0xcb, 0xf8, 0x94, 0x99, 0x96, 0x63, 0x57, 0x37, 0xa5, 0xcd, - 0x99, 0x03, 0x9f, 0x50, 0x06, 0xa6, 0xd8, 0xab, 0x9c, 0x60, 0x16, 0xe4, 0x10, 0x0b, 0x6c, 0x0b, - 0x1a, 0x17, 0x43, 0x1f, 0x43, 0xd2, 0xd1, 0xad, 0x36, 0xc1, 0x46, 0x4b, 0x8e, 0x6f, 0x47, 0xef, - 0xc5, 0x77, 0x37, 0xa9, 0x67, 0xaf, 0x5f, 0x6d, 0xcd, 0x68, 0x94, 0xae, 0xe6, 0xbf, 0x1f, 0x3c, - 0x6a, 0x33, 0x4c, 0x56, 0x6d, 0xa1, 0xdb, 0x00, 0xcd, 0x9e, 0xeb, 0xd9, 0x1d, 0xdc, 0x71, 0xdb, - 0xf2, 0xd4, 0x76, 0xf4, 0xde, 0xac, 0xd8, 0xd2, 0x2c, 0xa7, 0x97, 0xdd, 0x76, 0x7a, 0x0d, 0x56, - 0x2a, 0x76, 0x8b, 0x1c, 0x5a, 0xfa, 0x99, 0x6e, 0x98, 0xfa, 0xb1, 0x49, 0x58, 0xc8, 0xd2, 0x1b, - 0xb0, 0x7e, 0x68, 0xb9, 0xbd, 0x6e, 0xd7, 0x76, 0x3c, 0xd2, 0xd2, 0xc8, 0x17, 0x3d, 0xe2, 0x7a, - 0x9c, 0xf5, 0x93, 0x28, 0x20, 0xb6, 0x58, 0xc5, 0xf6, 0xf6, 0xec, 0x9e, 0xd5, 0xe2, 0x41, 0x0e, - 0x7a, 0x19, 0xbd, 0xba, 0x97, 0x1f, 0x43, 0xd2, 0xf5, 0x6c, 0x87, 0xa9, 0xc5, 0x86, 0xd5, 0xea, - 0x94, 0xce, 0xd5, 0xc4, 0xa3, 0x36, 0xc3, 0x64, 0xd5, 0x56, 0xfa, 0x4f, 0x51, 0x58, 0x65, 0xb6, - 0x0e, 0xc8, 0x45, 0xd9, 0x70, 0x3b, 0xba, 0xd7, 0x3c, 0xe5, 0x7e, 0x7c, 0x04, 0x4b, 0x0e, 0x77, - 0x17, 0xbb, 0x9e, 0xee, 0x78, 0xf8, 0x05, 0xb9, 0x60, 0x0e, 0xcd, 0xef, 0xce, 0x7c, 0xff, 0x6a, - 0x2b, 0x7e, 0x40, 0x2e, 0xb4, 0x6b, 0x42, 0xa2, 0x4e, 0x05, 0x0e, 0xc8, 0x05, 0xda, 0x01, 0x9f, - 0x84, 0x89, 0xd5, 0x62, 0x2a, 0xb1, 0x61, 0x95, 0x05, 0xc1, 0x57, 0xac, 0x16, 0x55, 0x78, 0x04, - 0xd3, 0x6c, 0x07, 0xae, 0x3c, 0xb5, 0x1d, 0xbf, 0x37, 0xf7, 0xf0, 0x46, 0x58, 0x1a, 0xb0, 0x2d, - 0x5a, 0x27, 0xb6, 0x08, 0xbb, 0xd0, 0x28, 0x26, 0x92, 0x71, 0x29, 0x51, 0x4c, 0x24, 0x13, 0xd2, - 0x54, 0xfa, 0x4d, 0x1c, 0xd2, 0x1a, 0xd1, 0x5b, 0x47, 0x86, 0x77, 0x6a, 0x58, 0x87, 0x56, 0x93, - 0x38, 0x9e, 0x6e, 0x58, 0xde, 0x85, 0x6a, 0x79, 0xc4, 0x39, 0xd3, 0x4d, 0xbe, 0xa9, 0x22, 0x2c, - 0x3a, 0x44, 0x6f, 0xe1, 0xfe, 0x77, 0x20, 0x12, 0xf9, 0x66, 0x60, 0x59, 0xfa, 0xb1, 0x64, 0x4e, - 0xcd, 0x66, 0xa6, 0xe1, 0x0b, 0x89, 0x75, 0x17, 0xa8, 0x6a, 0x9f, 0x88, 0x34, 0x40, 0xe4, 0xdc, - 0x70, 0x3d, 0xc3, 0x6a, 0x07, 0xec, 0xc5, 0xae, 0x6e, 0x6f, 0xc9, 0x57, 0x1f, 0xd8, 0x7c, 0x0e, - 0xeb, 0xa6, 0xdd, 0xd4, 0x4d, 0xdc, 0x1b, 0xec, 0x00, 0x9b, 0x46, 0xc7, 0xf0, 0x58, 0xe2, 0x5d, - 0xd1, 0xf0, 0x2a, 0xb3, 0x11, 0x08, 0x42, 0x89, 0x5a, 0x40, 0x9f, 0x83, 0xdc, 0x36, 0xed, 0xe3, - 0x50, 0xeb, 0xf1, 0xab, 0x5b, 0x5f, 0xe3, 0x46, 0xc6, 0xcc, 0x3f, 0x87, 0x65, 0xfb, 0xd8, 0x25, - 0xce, 0x19, 0x09, 0xc4, 0xd7, 0x95, 0x13, 0xec, 0x5c, 0xc3, 0x3e, 0xef, 0xaa, 0x90, 0x1e, 0x5d, - 0x00, 0xd9, 0xa3, 0x0c, 0xf7, 0x51, 0xe2, 0x97, 0xbf, 0xda, 0x8a, 0xa4, 0x5b, 0xb0, 0xde, 0x70, - 0x74, 0xcb, 0xd5, 0x9b, 0x9e, 0x61, 0x5b, 0xd9, 0x63, 0xf6, 0x51, 0xf1, 0x93, 0x55, 0x61, 0xda, - 0x21, 0xba, 0x6b, 0x5b, 0xec, 0x44, 0x17, 0x1f, 0x7e, 0x90, 0x19, 0x2b, 0xa5, 0x99, 0x71, 0x5d, - 0x8d, 0xa9, 0xf4, 0xf3, 0x8a, 0xbd, 0xa5, 0x9f, 0xc3, 0x4a, 0x40, 0xb2, 0xd6, 0x73, 0xc5, 0x17, - 0x91, 0x03, 0xe8, 0xf6, 0xdc, 0x53, 0x42, 0xb0, 0x77, 0x6e, 0x89, 0xc4, 0x49, 0x85, 0xec, 0x2b, - 0xa0, 0xec, 0x17, 0x0a, 0xae, 0xd7, 0x38, 0xb7, 0xd2, 0x5f, 0x46, 0x61, 0x35, 0x20, 0xa0, 0x11, - 0xcf, 0xb9, 0xe0, 0xe6, 0xf7, 0x47, 0x76, 0x70, 0xff, 0xf2, 0x1d, 0x30, 0xcd, 0x30, 0xff, 0xd1, - 0x2d, 0x98, 0x25, 0xe7, 0x9e, 0xa3, 0xb3, 0x7a, 0x15, 0x0b, 0xd4, 0xab, 0x24, 0x23, 0xd3, 0x72, - 0xf5, 0x87, 0x28, 0xac, 0x05, 0x6c, 0xd5, 0x3d, 0xdd, 0xeb, 0xb9, 0xdc, 0x8d, 0x35, 0x88, 0x53, - 0xbd, 0x68, 0x40, 0x8f, 0x12, 0x50, 0xa5, 0xef, 0x5e, 0x8c, 0xb9, 0xf7, 0x6f, 0x97, 0xbb, 0x17, - 0x30, 0x99, 0x09, 0x8d, 0xf2, 0x63, 0x98, 0xe6, 0x74, 0x84, 0x60, 0x51, 0x53, 0xb2, 0xf5, 0x6a, - 0x05, 0x1f, 0x56, 0x0e, 0x2a, 0xd5, 0xa3, 0x8a, 0x14, 0x41, 0x32, 0xac, 0x08, 0x5a, 0xe3, 0x69, - 0x05, 0xe7, 0xaa, 0xe5, 0xb2, 0xda, 0x68, 0x28, 0x79, 0x29, 0x96, 0x4e, 0x24, 0xa3, 0x52, 0x34, - 0xfd, 0xb7, 0x18, 0x48, 0x47, 0x8e, 0xe1, 0x11, 0xfa, 0x7d, 0x5b, 0xbc, 0xa2, 0xa2, 0x4f, 0x60, - 0xc6, 0x60, 0xaf, 0xae, 0x1c, 0x65, 0x59, 0xb7, 0x11, 0x72, 0x3a, 0x5c, 0xc1, 0x6f, 0x4a, 0x42, - 0x1e, 0x3d, 0x86, 0x45, 0xde, 0x94, 0x5c, 0x5a, 0x9e, 0xac, 0x26, 0x11, 0x1d, 0x62, 0x95, 0x8a, - 0x7d, 0xff, 0x6a, 0x6b, 0x81, 0x75, 0x92, 0xba, 0x60, 0x6a, 0x0b, 0x66, 0xf0, 0x15, 0x15, 0xfa, - 0xb1, 0x49, 0xb0, 0xd8, 0x3c, 0x08, 0x89, 0xcd, 0xa8, 0xb7, 0xe1, 0x51, 0xf9, 0x71, 0xb4, 0x1f, - 0x96, 0x35, 0x40, 0xfd, 0xb0, 0xd4, 0x6b, 0x4a, 0x4e, 0xdd, 0x53, 0x95, 0xbc, 0x14, 0x09, 0xd0, - 0x8f, 0xb2, 0x6a, 0x03, 0xd7, 0xaa, 0x25, 0x35, 0xf7, 0x4c, 0x8a, 0xa2, 0x75, 0x58, 0x16, 0xf4, - 0x52, 0x35, 0x77, 0x80, 0x1b, 0x6a, 0x59, 0xa9, 0x1e, 0x36, 0xa4, 0x18, 0xca, 0xc0, 0x83, 0x20, - 0x83, 0x69, 0x7d, 0x7a, 0xa8, 0x1c, 0x2a, 0xb8, 0x9c, 0x7d, 0x8a, 0x4b, 0x4a, 0x65, 0xbf, 0x51, - 0xc0, 0xca, 0xd3, 0x9c, 0xa2, 0xe4, 0x95, 0xbc, 0x14, 0x2f, 0x26, 0x92, 0x31, 0x29, 0x9e, 0xfe, - 0x75, 0x54, 0x44, 0xb8, 0x61, 0xdb, 0x55, 0x53, 0x7c, 0x65, 0x59, 0x98, 0xfd, 0x41, 0xa5, 0x73, - 0xa0, 0x85, 0x2a, 0x20, 0xe9, 0x4d, 0xaf, 0xa7, 0x9b, 0x3f, 0xac, 0x68, 0x5e, 0xe3, 0xca, 0x7d, - 0x72, 0x7a, 0x05, 0x50, 0xb5, 0x4b, 0x1b, 0xab, 0xe1, 0x10, 0xb7, 0x71, 0x6e, 0xf1, 0xe6, 0x5a, - 0x87, 0x95, 0x9c, 0x6d, 0xb5, 0x0c, 0x9a, 0x8a, 0x7b, 0xba, 0x61, 0xfa, 0x65, 0xe2, 0xbf, 0x61, - 0x5e, 0xac, 0x7e, 0xa6, 0x9b, 0x3d, 0x22, 0xf6, 0x10, 0x06, 0x1d, 0x9e, 0x50, 0xbe, 0x36, 0xc7, - 0xa5, 0xd9, 0x4b, 0xfa, 0x77, 0x51, 0x40, 0x1c, 0x51, 0x90, 0xff, 0x23, 0xcd, 0x7e, 0xe9, 0x49, - 0xc1, 0x4c, 0x87, 0xb8, 0xae, 0xde, 0x26, 0x43, 0x5f, 0x8d, 0x4f, 0x44, 0x8f, 0x61, 0x56, 0x34, - 0x3d, 0xd2, 0x12, 0x5b, 0x9d, 0x88, 0x55, 0xfc, 0x78, 0xf5, 0x15, 0xd0, 0x23, 0x48, 0xfa, 0x7d, - 0x42, 0x54, 0xe9, 0xb7, 0x29, 0xf7, 0xe5, 0xd3, 0x5f, 0xc0, 0x4a, 0xb6, 0x73, 0x6c, 0xb4, 0x7b, - 0x76, 0xcf, 0xd5, 0x88, 0xdb, 0x33, 0xbd, 0xab, 0x79, 0xfc, 0x09, 0xcc, 0xbd, 0x74, 0xf4, 0x6e, - 0x97, 0xb4, 0x30, 0x71, 0x9c, 0x10, 0x9f, 0xfd, 0xa4, 0x66, 0xe6, 0x34, 0x10, 0xc2, 0x8a, 0xe3, - 0xa4, 0xd7, 0x29, 0x9e, 0x38, 0xf1, 0xf6, 0x1d, 0xbb, 0xd7, 0xcd, 0x13, 0x93, 0xf8, 0x51, 0x4a, - 0x63, 0x58, 0x13, 0x78, 0x2e, 0x67, 0x3b, 0x4e, 0xaf, 0x4b, 0x4f, 0x86, 0x7b, 0x43, 0xeb, 0x15, - 0x7d, 0xc0, 0xa3, 0x75, 0x27, 0xc9, 0xc8, 0x65, 0xb7, 0x8d, 0xd2, 0x30, 0xdb, 0x75, 0xec, 0x26, - 0x71, 0x5d, 0x11, 0xc2, 0x64, 0xbf, 0xb2, 0xfa, 0xe4, 0x74, 0x1d, 0x90, 0x58, 0x20, 0x98, 0xb1, - 0xff, 0x03, 0x20, 0x80, 0xa7, 0x0f, 0xa8, 0xa6, 0x76, 0x53, 0x02, 0x19, 0xcd, 0x0a, 0x79, 0x86, - 0x8d, 0x06, 0x2f, 0x34, 0xfa, 0xfc, 0xb1, 0x95, 0x3e, 0x00, 0xc4, 0x30, 0xd3, 0x18, 0x46, 0xeb, - 0x83, 0xad, 0xe8, 0xd5, 0xc1, 0x56, 0x9d, 0x82, 0xc1, 0x53, 0xdd, 0x6a, 0x99, 0xb4, 0xf3, 0x78, - 0xce, 0x45, 0x1f, 0x27, 0xa2, 0x87, 0x90, 0xe8, 0x2a, 0x8e, 0x13, 0x92, 0x8f, 0x43, 0xa1, 0x16, - 0xbb, 0x66, 0xb2, 0xa2, 0x27, 0xfe, 0x33, 0x0a, 0x77, 0x47, 0xdb, 0x02, 0x45, 0x41, 0x35, 0x0a, - 0xe5, 0x35, 0x72, 0xe2, 0x10, 0xbf, 0x7f, 0x4d, 0xaa, 0xec, 0xcf, 0x61, 0xda, 0x3b, 0xb7, 0x7c, - 0xe0, 0x38, 0xbf, 0x9b, 0xa7, 0xac, 0xbf, 0xbe, 0xda, 0xfa, 0xa8, 0x6d, 0x78, 0xa7, 0xbd, 0xe3, - 0x4c, 0xd3, 0xee, 0xec, 0xf4, 0xfd, 0x69, 0x1d, 0x0f, 0x9e, 0x77, 0xba, 0x2f, 0xda, 0x3b, 0x6c, - 0xb6, 0xe8, 0xf5, 0x8c, 0x56, 0xe6, 0xf0, 0x50, 0xcd, 0xbf, 0x7e, 0xb5, 0x35, 0xd5, 0x38, 0xb7, - 0xd4, 0xbc, 0x36, 0xe5, 0x9d, 0x5b, 0x6a, 0x0b, 0xed, 0xc1, 0x9c, 0x37, 0xf0, 0x4e, 0x64, 0xf0, - 0xd5, 0xba, 0x66, 0x50, 0x31, 0xbd, 0x07, 0x5b, 0x8d, 0x73, 0x2b, 0x6b, 0x52, 0x0c, 0x76, 0xa1, - 0x58, 0x4d, 0xbb, 0x47, 0x81, 0x9d, 0x48, 0x2e, 0xbe, 0xbf, 0xdb, 0x00, 0x5d, 0x87, 0x9c, 0x61, - 0x96, 0x35, 0x43, 0xdb, 0x9c, 0xa5, 0x74, 0x9e, 0x86, 0x3f, 0x8b, 0xc2, 0x0a, 0xad, 0xc2, 0x6d, - 0xe2, 0x54, 0xcf, 0x88, 0x73, 0x62, 0xda, 0x2f, 0xb9, 0xf6, 0x06, 0xc4, 0x43, 0x10, 0x2e, 0xa5, - 0xa1, 0xfb, 0xb0, 0xd0, 0xec, 0x39, 0x0e, 0xb1, 0x3c, 0x51, 0x35, 0x38, 0xc0, 0xe6, 0xb6, 0xe7, - 0x05, 0x8b, 0x95, 0x08, 0xf4, 0x21, 0x5c, 0x33, 0xac, 0xa6, 0x43, 0x3a, 0x03, 0xe1, 0x78, 0x40, - 0x78, 0xb1, 0xcf, 0xe4, 0x15, 0xe5, 0xeb, 0x28, 0x5c, 0xdf, 0xa5, 0x98, 0x7b, 0x50, 0xe6, 0xc8, - 0x89, 0xed, 0x90, 0xfd, 0x5c, 0xbf, 0xde, 0x36, 0x7e, 0x50, 0xbd, 0x1d, 0x40, 0x4a, 0x6a, 0xe2, - 0x94, 0x26, 0x81, 0x6d, 0xb6, 0xde, 0xa5, 0xd0, 0x0e, 0xb4, 0xd2, 0x1d, 0x40, 0xbc, 0x71, 0x95, - 0x0d, 0xd7, 0x35, 0xac, 0x36, 0xf7, 0xed, 0x31, 0xcc, 0xbf, 0x74, 0x6c, 0xab, 0x8d, 0x79, 0x0f, - 0x15, 0xee, 0x4d, 0x6e, 0xb9, 0xda, 0x1c, 0x13, 0xe7, 0x2f, 0x7e, 0xb8, 0x63, 0xe3, 0xe1, 0xa6, - 0xb3, 0x54, 0x99, 0x38, 0x14, 0xf2, 0xd7, 0x1c, 0xbb, 0xed, 0x10, 0x97, 0xc3, 0x88, 0xf4, 0x6f, - 0x62, 0xb0, 0xcc, 0x66, 0x81, 0x3d, 0x22, 0xbe, 0x1f, 0xee, 0xc8, 0xc1, 0x08, 0x70, 0xfa, 0x30, - 0xe4, 0xeb, 0x09, 0xd1, 0x0b, 0x6f, 0xc0, 0x7f, 0x1c, 0x34, 0xe0, 0x4d, 0x58, 0x13, 0x7d, 0x53, - 0x53, 0x6a, 0x25, 0x35, 0x97, 0xc5, 0x9a, 0x52, 0xae, 0x3e, 0x19, 0x69, 0xc2, 0x5a, 0xb6, 0xb2, - 0xaf, 0xe0, 0x7a, 0xad, 0xa4, 0x36, 0x86, 0x9a, 0x30, 0xa7, 0x97, 0x15, 0x6d, 0x9f, 0xc2, 0x96, - 0x00, 0xa0, 0xd1, 0xb2, 0x7b, 0x0d, 0x5c, 0xaf, 0x64, 0x6b, 0xf5, 0x42, 0xb5, 0x21, 0xc5, 0x51, - 0x0a, 0x36, 0xfb, 0xed, 0x79, 0x5f, 0xcd, 0x65, 0x4b, 0xb8, 0x5a, 0xab, 0xe3, 0xb2, 0x5a, 0xaf, - 0xab, 0x95, 0x7d, 0x29, 0x11, 0xd0, 0xac, 0x97, 0xaa, 0x47, 0x38, 0x57, 0xad, 0xd4, 0x0f, 0xcb, - 0x8a, 0x26, 0x4d, 0xa1, 0x0d, 0x58, 0x15, 0x9c, 0x4a, 0x15, 0x97, 0x94, 0x6c, 0x5d, 0x29, 0x54, - 0x4b, 0x79, 0x45, 0x93, 0xa6, 0xd3, 0x3a, 0xc8, 0xaa, 0xd5, 0x22, 0x1e, 0x71, 0x3a, 0x86, 0xa5, - 0x7b, 0x24, 0x67, 0x77, 0x3a, 0x86, 0xa8, 0xfe, 0x0a, 0xcc, 0xb9, 0x9e, 0xde, 0x66, 0x73, 0xcb, - 0x3b, 0x02, 0x59, 0x10, 0x8a, 0x14, 0xc9, 0x2e, 0xc3, 0x92, 0x6a, 0x9d, 0xe9, 0xa6, 0xd1, 0x62, - 0xcd, 0x87, 0x9f, 0x51, 0x0a, 0x6e, 0x54, 0xbb, 0x9e, 0xd1, 0xa1, 0x0d, 0xa8, 0xa9, 0x9c, 0xe9, - 0x66, 0xce, 0xb6, 0x4e, 0x4c, 0xa3, 0xe9, 0x89, 0x33, 0xfc, 0x73, 0x14, 0x6e, 0x97, 0x0d, 0x6b, - 0x90, 0x6c, 0xb4, 0xa8, 0x1e, 0x5a, 0xae, 0xee, 0x19, 0xee, 0x89, 0x31, 0xa8, 0x87, 0x75, 0x58, - 0xee, 0x18, 0xd6, 0x00, 0x22, 0xe0, 0x63, 0x2a, 0xf8, 0x2e, 0x9f, 0xc0, 0x52, 0x67, 0x74, 0x19, - 0x3a, 0xb1, 0x39, 0xc4, 0xb5, 0xcd, 0xa1, 0x09, 0xe5, 0x9d, 0x26, 0x36, 0x5f, 0x7d, 0x00, 0x3f, - 0x7e, 0xb1, 0x0e, 0x73, 0xcc, 0xe5, 0x3c, 0xf1, 0x74, 0xc3, 0x44, 0x1a, 0x48, 0x96, 0xed, 0xe1, - 0xa1, 0x1b, 0x0e, 0xee, 0xf5, 0x7b, 0x21, 0x69, 0x19, 0x72, 0xcb, 0x52, 0x88, 0x68, 0x8b, 0xd6, - 0x10, 0x19, 0x55, 0xe1, 0x1a, 0xbf, 0x12, 0xa0, 0x96, 0x4f, 0x58, 0x20, 0xb8, 0xd3, 0x77, 0x27, - 0x65, 0xfa, 0x50, 0xbb, 0x2a, 0xd0, 0xd1, 0x35, 0x48, 0x45, 0x4f, 0x01, 0x71, 0x83, 0x2f, 0xc8, - 0x05, 0xee, 0x88, 0xb1, 0x5f, 0xd4, 0xe6, 0x7b, 0x93, 0x6c, 0x8e, 0xde, 0x10, 0x14, 0x22, 0x9a, - 0xe4, 0x8c, 0x30, 0xd0, 0x8f, 0xa2, 0xb0, 0xcd, 0x26, 0xec, 0x97, 0x6c, 0x10, 0x1f, 0x9a, 0x34, - 0x0d, 0x31, 0x8a, 0x8b, 0xfb, 0x9a, 0x8f, 0xc3, 0x16, 0x7a, 0xeb, 0x08, 0x5f, 0x88, 0x68, 0x37, - 0x9d, 0xcb, 0xa4, 0xd0, 0xe7, 0xb0, 0x1c, 0x68, 0x1c, 0x58, 0xe7, 0x93, 0x9e, 0x98, 0x9f, 0x1f, - 0x5c, 0x69, 0x2c, 0xf4, 0x57, 0x42, 0xde, 0x18, 0x0b, 0x35, 0x40, 0x0a, 0x9a, 0xa7, 0x93, 0x9d, - 0x3c, 0xcd, 0x6c, 0xbf, 0x7f, 0xb9, 0xed, 0xfe, 0x20, 0x59, 0x88, 0x68, 0xd7, 0xbc, 0x61, 0x3a, - 0x3a, 0x82, 0xa5, 0xa0, 0x55, 0x87, 0x56, 0x29, 0x79, 0x66, 0xe2, 0x81, 0x84, 0x4e, 0x90, 0xf4, - 0x40, 0xbc, 0x11, 0x06, 0xfa, 0x0c, 0x82, 0x9b, 0xc0, 0x2e, 0x1b, 0xcb, 0xe4, 0x24, 0xb3, 0x7c, - 0xff, 0xca, 0x23, 0x5c, 0x21, 0xa2, 0x05, 0xfd, 0xe3, 0x1c, 0x54, 0xa0, 0x1d, 0xc0, 0xf0, 0x88, - 0xdf, 0x01, 0x66, 0x99, 0xd5, 0xdb, 0x57, 0x18, 0x7e, 0x0a, 0x11, 0xda, 0x0d, 0xfa, 0x34, 0xa4, - 0xc2, 0x02, 0xb7, 0xe4, 0xd9, 0x36, 0xa6, 0x8d, 0x0a, 0x2e, 0x37, 0x15, 0x40, 0x78, 0x7d, 0x53, - 0x9c, 0x46, 0x3f, 0x16, 0xbb, 0x8b, 0x1d, 0x31, 0x10, 0xb0, 0x0a, 0x37, 0x37, 0xf1, 0x63, 0x19, - 0x9f, 0x1c, 0xe8, 0xc7, 0x62, 0x07, 0xa9, 0xf4, 0xc0, 0x9b, 0xfe, 0x28, 0x81, 0x4f, 0xd8, 0x2c, - 0x21, 0xcf, 0x4f, 0x3c, 0xf0, 0xb0, 0xa9, 0x83, 0x1e, 0x78, 0x73, 0x98, 0x8e, 0x2a, 0xfe, 0xc0, - 0xe9, 0x88, 0x59, 0x42, 0x5e, 0x98, 0xe8, 0xe5, 0xf8, 0xcc, 0x41, 0xbd, 0x34, 0x83, 0x54, 0xea, - 0xa5, 0x65, 0xb7, 0x08, 0xee, 0x0d, 0x6e, 0x20, 0xe5, 0xc5, 0x89, 0x5e, 0x86, 0xdd, 0x55, 0x52, - 0x2f, 0xad, 0x61, 0x3a, 0x2f, 0x14, 0x27, 0x1e, 0x6e, 0x53, 0x38, 0x8f, 0x5b, 0x1c, 0xcf, 0xcb, - 0xd2, 0x25, 0x85, 0x22, 0x04, 0xfa, 0xf3, 0x42, 0x31, 0xcc, 0xa0, 0x79, 0xe9, 0xe3, 0xf2, 0x66, - 0x7f, 0x1e, 0x90, 0x97, 0x26, 0xe6, 0x65, 0xf8, 0xec, 0x50, 0x60, 0x35, 0x79, 0x84, 0xc3, 0xea, - 0xa5, 0xb0, 0xed, 0xe7, 0x13, 0x9a, 0x5c, 0x2f, 0xc7, 0x66, 0x06, 0x56, 0x2f, 0x83, 0x54, 0x1a, - 0x5c, 0xdd, 0x9f, 0xa3, 0xb0, 0xc3, 0x06, 0x29, 0x79, 0x73, 0x62, 0x70, 0xc3, 0x46, 0x2e, 0x1a, - 0x5c, 0x7d, 0x98, 0x4e, 0xdd, 0xe4, 0x53, 0xc4, 0xa0, 0xac, 0x5f, 0x9f, 0xe8, 0xe6, 0xf8, 0x14, - 0x42, 0xdd, 0x74, 0x83, 0x54, 0xf4, 0xd3, 0x28, 0xdc, 0x19, 0xab, 0x22, 0xac, 0x12, 0x63, 0x76, - 0xb1, 0x8f, 0x1d, 0x3e, 0x0e, 0xc8, 0x37, 0xd8, 0x32, 0xff, 0x75, 0x85, 0xc2, 0x12, 0x3a, 0x49, - 0x14, 0x22, 0xda, 0xb6, 0xf7, 0x16, 0x41, 0x1a, 0x33, 0x83, 0xe3, 0x6c, 0x6c, 0x0b, 0xa0, 0x2d, - 0x6f, 0x4d, 0x8c, 0x59, 0x18, 0x24, 0xa7, 0x31, 0x33, 0x86, 0xe9, 0xb4, 0xb8, 0xf7, 0x06, 0xf7, - 0xe9, 0x58, 0x8c, 0xc9, 0xf2, 0xf6, 0xc4, 0xe2, 0x3e, 0xe1, 0xf6, 0x9d, 0x16, 0xf7, 0xde, 0x18, - 0x0b, 0x3d, 0x07, 0x29, 0x00, 0x39, 0x18, 0x14, 0x97, 0xd3, 0xcc, 0x76, 0x26, 0xc4, 0xf6, 0x25, - 0xc8, 0x9d, 0xd5, 0xf8, 0x61, 0x0e, 0x7a, 0x09, 0x37, 0xe9, 0x9c, 0xa5, 0xf3, 0x19, 0x06, 0x93, - 0xc1, 0x10, 0x23, 0x46, 0x96, 0xdb, 0x6c, 0xa5, 0x87, 0x61, 0xc7, 0x72, 0xf9, 0xe8, 0x53, 0x88, - 0x68, 0x9b, 0xde, 0x44, 0x11, 0x5a, 0x6b, 0x78, 0x85, 0xa6, 0xbd, 0x9e, 0x02, 0x78, 0xf9, 0xce, - 0xc4, 0x3c, 0x1b, 0x07, 0xfa, 0x34, 0xcf, 0x8c, 0x20, 0x15, 0x1d, 0xc2, 0x52, 0x87, 0x02, 0x74, - 0x6c, 0x58, 0x34, 0xb1, 0x18, 0x44, 0x97, 0xef, 0x4e, 0x3c, 0xdb, 0x30, 0x30, 0x4f, 0xe3, 0xd3, - 0x19, 0xa6, 0xa3, 0x4f, 0x05, 0xcc, 0x39, 0x21, 0xec, 0x64, 0x69, 0x07, 0x7c, 0x6f, 0x22, 0x72, - 0x0a, 0x01, 0xf4, 0x14, 0x39, 0xf5, 0x0d, 0xf0, 0xee, 0xf7, 0xbf, 0xb0, 0x62, 0x04, 0x61, 0x30, - 0x6e, 0x32, 0x1c, 0x2c, 0xbf, 0xcf, 0xec, 0x7e, 0x10, 0xba, 0xff, 0x70, 0xd4, 0x5c, 0x88, 0x68, - 0xcb, 0xc6, 0x38, 0x0f, 0x3d, 0x81, 0x65, 0x83, 0xa3, 0x60, 0x81, 0xf9, 0xf8, 0x51, 0xde, 0x1b, - 0xfb, 0xa9, 0x35, 0x58, 0x60, 0x04, 0x33, 0xd3, 0x1a, 0x66, 0x8c, 0x12, 0x51, 0x07, 0x36, 0xec, - 0x3e, 0x90, 0xc6, 0xe4, 0x4c, 0x37, 0x71, 0xd3, 0x87, 0xd2, 0xf2, 0x7d, 0x66, 0x7d, 0x27, 0xb4, - 0xa1, 0x4d, 0x06, 0xdf, 0x85, 0x88, 0xb6, 0x6e, 0x87, 0xf3, 0xd1, 0x97, 0x51, 0xb8, 0x15, 0x02, - 0xb8, 0x71, 0x2f, 0x08, 0xcd, 0xe5, 0x07, 0x6c, 0xdd, 0xff, 0x08, 0x3b, 0xe3, 0xb7, 0x63, 0xfa, - 0x42, 0x44, 0x4b, 0x75, 0x2e, 0x15, 0xdb, 0x9d, 0x81, 0x29, 0x36, 0x33, 0x17, 0x13, 0xc9, 0x6b, - 0x92, 0x54, 0x4c, 0x24, 0x97, 0xa5, 0x95, 0x62, 0x22, 0xb9, 0x22, 0xad, 0x16, 0x13, 0xc9, 0x55, - 0x69, 0xad, 0x98, 0x48, 0xae, 0x49, 0xeb, 0xc5, 0x44, 0x72, 0x5d, 0x92, 0x8b, 0x89, 0xa4, 0x2c, - 0x6d, 0x14, 0x13, 0xc9, 0x0d, 0x69, 0xb3, 0x98, 0x48, 0xde, 0x94, 0x52, 0xc5, 0x44, 0x32, 0x25, - 0x6d, 0x15, 0x13, 0xc9, 0x5b, 0x52, 0x3a, 0x7d, 0x9f, 0xc1, 0xf2, 0x9a, 0xed, 0xb2, 0xa6, 0x8b, - 0x36, 0x61, 0x8a, 0x9e, 0xde, 0xb9, 0xb8, 0x01, 0xe2, 0x70, 0x9e, 0x93, 0xd2, 0x5f, 0x4d, 0xc1, - 0x94, 0xff, 0xcf, 0x6b, 0xe4, 0x5e, 0x6c, 0x43, 0x5c, 0xeb, 0x2c, 0xb5, 0x48, 0xd7, 0x21, 0x4d, - 0xdd, 0x23, 0xad, 0x32, 0x17, 0x18, 0x5c, 0x96, 0xfd, 0xff, 0x30, 0xde, 0x74, 0x08, 0xfb, 0x5d, - 0xc6, 0xd0, 0xf4, 0x62, 0xe8, 0x27, 0x36, 0x54, 0x63, 0x99, 0xf0, 0xee, 0x1d, 0xb1, 0xce, 0x8d, - 0xc1, 0x3a, 0xe3, 0x52, 0x43, 0x70, 0x54, 0xd0, 0x50, 0x0e, 0x16, 0x7a, 0x16, 0x39, 0xef, 0xda, - 0x2e, 0x1d, 0x6a, 0xce, 0x2d, 0x01, 0xae, 0xdf, 0x32, 0xce, 0x69, 0xf3, 0x7d, 0x25, 0x0a, 0x71, - 0x76, 0x60, 0xce, 0x76, 0x8c, 0xb6, 0x61, 0x61, 0x0a, 0x00, 0x18, 0x54, 0x9e, 0xda, 0x5d, 0x14, - 0x57, 0xdf, 0xd3, 0x14, 0x2c, 0xa8, 0x79, 0x0d, 0xb8, 0x08, 0x7d, 0x43, 0x35, 0x98, 0x6e, 0xb1, - 0x79, 0x47, 0x40, 0xdf, 0xd4, 0xa4, 0x0b, 0x2b, 0x3e, 0x15, 0xed, 0xca, 0x62, 0x7f, 0xd2, 0x60, - 0x7f, 0x9c, 0xa3, 0x09, 0x3b, 0xe8, 0x00, 0x16, 0x68, 0x41, 0x6c, 0xf5, 0x8b, 0x21, 0x07, 0x93, - 0xdb, 0x01, 0xc3, 0xfe, 0x8f, 0xf0, 0x8c, 0xc2, 0x05, 0x83, 0x37, 0x62, 0xf3, 0x24, 0x40, 0x43, - 0xff, 0xee, 0x9f, 0xf6, 0xcc, 0x65, 0xde, 0xf9, 0xc9, 0x21, 0xf2, 0x00, 0xf5, 0x20, 0x6e, 0xd9, - 0x2f, 0x05, 0x36, 0x7e, 0xcb, 0x3c, 0x98, 0x17, 0xc1, 0x79, 0x7c, 0xf5, 0x3b, 0x32, 0x6a, 0x20, - 0x67, 0xda, 0xcd, 0x17, 0x7d, 0x2b, 0x1a, 0x5d, 0x8f, 0x5f, 0xe3, 0xf1, 0x4b, 0xf7, 0x07, 0x7f, - 0x89, 0x81, 0x3c, 0xe9, 0x2f, 0x15, 0x92, 0x61, 0x25, 0xbb, 0x5b, 0xd5, 0x1a, 0x78, 0xec, 0x6f, - 0xc9, 0x5d, 0xb8, 0x35, 0xc4, 0x61, 0x2f, 0x4a, 0x1e, 0x6b, 0x4a, 0xae, 0xaa, 0xe5, 0xf1, 0x5e, - 0xf5, 0xb0, 0x92, 0x97, 0xa2, 0x28, 0x05, 0x9b, 0x43, 0x62, 0xb9, 0x92, 0xaa, 0x54, 0xe8, 0x5b, - 0x51, 0xc9, 0x35, 0xa4, 0x38, 0xda, 0x82, 0xeb, 0x43, 0xfc, 0xda, 0x61, 0xbd, 0xa0, 0x68, 0xbe, - 0x35, 0x29, 0x81, 0xae, 0xc3, 0xfa, 0xf8, 0x3a, 0xb8, 0x5e, 0xcb, 0x56, 0xa4, 0x29, 0xf4, 0x9f, - 0xf0, 0xd1, 0x10, 0x53, 0x2c, 0x9e, 0x2d, 0x69, 0x4a, 0x36, 0xff, 0x0c, 0x1f, 0x69, 0x6a, 0xa3, - 0xa1, 0x54, 0x70, 0xad, 0x5a, 0xaf, 0xab, 0xbb, 0x25, 0x85, 0x5d, 0xaa, 0x64, 0x9f, 0x49, 0xd3, - 0xe8, 0x7d, 0xb8, 0x3d, 0xa4, 0x58, 0x51, 0x8e, 0xf8, 0x6d, 0x06, 0xae, 0x69, 0xca, 0x13, 0xa5, - 0xd2, 0xa8, 0xe3, 0xc6, 0xd3, 0x8a, 0x94, 0x44, 0xf7, 0xe1, 0xee, 0x90, 0x60, 0x43, 0x2d, 0x2b, - 0xf5, 0x46, 0xb6, 0x5c, 0xc3, 0xb9, 0x6c, 0xae, 0xa0, 0x88, 0x8d, 0x28, 0x79, 0x69, 0x66, 0x33, - 0xf1, 0xd5, 0xd7, 0xa9, 0x48, 0x9a, 0x06, 0x35, 0xf6, 0xe0, 0xb7, 0xc3, 0x3f, 0xbb, 0x02, 0x3f, - 0xce, 0xf8, 0xdd, 0x4a, 0x43, 0x7b, 0x36, 0x1e, 0x52, 0x76, 0x91, 0x43, 0x39, 0xd4, 0x6f, 0x05, - 0x37, 0xaa, 0x55, 0x5c, 0x2d, 0xd1, 0x20, 0xb2, 0x9b, 0x1f, 0xca, 0xa8, 0x2b, 0x9a, 0x9a, 0x2d, - 0xa9, 0x9f, 0x65, 0x77, 0x4b, 0x8a, 0x14, 0x47, 0x37, 0x61, 0x83, 0xd3, 0xb3, 0xf5, 0x67, 0x95, - 0x9c, 0x50, 0xdb, 0xcb, 0xaa, 0xa5, 0x43, 0x4d, 0x91, 0xa6, 0x50, 0x1a, 0x52, 0x9c, 0xcd, 0xff, - 0x65, 0xe1, 0xbc, 0x92, 0xcd, 0x97, 0xd4, 0x8a, 0x32, 0xf8, 0xf1, 0x32, 0xcd, 0x9d, 0x7e, 0xf0, - 0x08, 0xd0, 0xf8, 0xb7, 0x8f, 0x92, 0x90, 0xa8, 0x54, 0x2b, 0x8a, 0x14, 0x41, 0x73, 0x30, 0xb3, - 0x9b, 0xcd, 0x1d, 0x54, 0xf7, 0xf6, 0xa4, 0x28, 0x5a, 0x80, 0x59, 0xb5, 0x5c, 0x56, 0xf2, 0x6a, - 0xb6, 0xa1, 0x48, 0xb1, 0xdd, 0xfb, 0xdf, 0xfc, 0x23, 0x15, 0xf9, 0xe6, 0x75, 0x2a, 0xfa, 0xed, - 0xeb, 0x54, 0xf4, 0xbb, 0xd7, 0xa9, 0xe8, 0xdf, 0x5f, 0xa7, 0xa2, 0x3f, 0x7f, 0x93, 0x8a, 0x7c, - 0xfb, 0x26, 0x15, 0xf9, 0xee, 0x4d, 0x2a, 0xf2, 0xd9, 0x8c, 0xa8, 0x06, 0xff, 0x0a, 0x00, 0x00, - 0xff, 0xff, 0x58, 0x87, 0xd7, 0x3e, 0x81, 0x22, 0x00, 0x00, + // 3297 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0xcb, 0x6f, 0xdb, 0x58, + 0x77, 0x97, 0x2c, 0xd9, 0x96, 0x8f, 0x1f, 0xa1, 0xaf, 0x5f, 0xb4, 0x93, 0xc8, 0x8e, 0x92, 0xcc, + 0x24, 0x19, 0x8c, 0x5c, 0x64, 0x3a, 0x6d, 0x27, 0x4d, 0x17, 0xb2, 0x44, 0x5b, 0x94, 0xf5, 0x1a, + 0x4a, 0x8e, 0x93, 0x09, 0x06, 0xb7, 0xb4, 0x78, 0x2d, 0xb3, 0xa1, 0x48, 0x0d, 0x49, 0x39, 0x36, + 0xd0, 0x45, 0xdb, 0xd9, 0x0c, 0xda, 0x4d, 0x37, 0x2d, 0xba, 0x2c, 0x30, 0xe8, 0xa2, 0x40, 0xd1, + 0x3f, 0xa1, 0xab, 0x16, 0x98, 0x55, 0x31, 0xe8, 0x6a, 0xd0, 0x45, 0xbe, 0xef, 0x4b, 0xbe, 0xbf, + 0x22, 0xab, 0x0f, 0xf7, 0x41, 0x89, 0x92, 0x28, 0xc7, 0x99, 0x1d, 0x79, 0x5e, 0xf7, 0xdc, 0x73, + 0xef, 0x3d, 0xe7, 0x77, 0xee, 0x85, 0x55, 0xd7, 0xd1, 0x5b, 0x67, 0xdd, 0x93, 0x5d, 0xe2, 0xba, + 0x8e, 0xeb, 0x65, 0xbb, 0xae, 0xe3, 0x3b, 0x68, 0xb9, 0xe5, 0xb4, 0x5e, 0x31, 0x4e, 0xf6, 0xd5, + 0x79, 0xf6, 0xd5, 0x79, 0xf7, 0x64, 0x6b, 0x8d, 0x0b, 0x8c, 0x48, 0x6e, 0xa1, 0x40, 0xdf, 0xd0, + 0x7d, 0x5d, 0xd0, 0xd6, 0x03, 0x5a, 0x87, 0xf8, 0x7a, 0x88, 0x2e, 0xf7, 0x7c, 0xd3, 0xda, 0x3d, + 0xb3, 0x5a, 0xbb, 0xbe, 0xd9, 0x21, 0x9e, 0xaf, 0x77, 0xba, 0x82, 0xb3, 0xda, 0x76, 0xda, 0x0e, + 0xfb, 0xdc, 0xa5, 0x5f, 0x9c, 0x9a, 0xf9, 0xe7, 0x04, 0xac, 0x54, 0x1d, 0xbf, 0x4c, 0x74, 0x8f, + 0x14, 0x1d, 0xcb, 0x20, 0xae, 0x42, 0x87, 0x46, 0x05, 0x98, 0x75, 0x49, 0xd7, 0x32, 0x5b, 0xba, + 0x1c, 0xdf, 0x89, 0x3f, 0x98, 0x7f, 0x7c, 0x2f, 0x3b, 0xf0, 0x57, 0x8c, 0x9d, 0xd5, 0xb8, 0x44, + 0x81, 0x78, 0x2d, 0xd7, 0xec, 0xfa, 0x8e, 0xbb, 0x97, 0xfc, 0xe9, 0xcd, 0x76, 0x4c, 0x0b, 0x54, + 0xd1, 0x01, 0x2c, 0x58, 0xd4, 0x32, 0x3e, 0x63, 0xa6, 0xe5, 0xa9, 0xeb, 0x9b, 0xd2, 0xe6, 0xad, + 0x81, 0x4f, 0x28, 0x0b, 0xd3, 0xec, 0x57, 0x4e, 0x32, 0x0b, 0x72, 0x84, 0x05, 0x36, 0x05, 0x8d, + 0x8b, 0xa1, 0x2f, 0x21, 0xe5, 0xea, 0x76, 0x9b, 0x60, 0xd3, 0x90, 0x13, 0x3b, 0xf1, 0x07, 0x89, + 0xbd, 0x2d, 0xea, 0xd9, 0xdb, 0x37, 0xdb, 0xb3, 0x1a, 0xa5, 0xab, 0x85, 0xf7, 0x83, 0x4f, 0x6d, + 0x96, 0xc9, 0xaa, 0x06, 0x32, 0x60, 0xcd, 0xe8, 0x7b, 0x80, 0xdb, 0xc4, 0x26, 0xae, 0xee, 0x9b, + 0x8e, 0x2d, 0xcf, 0x30, 0x1b, 0xbb, 0xc2, 0xc6, 0xea, 0xc0, 0xcd, 0x83, 0xbe, 0xcc, 0xfb, 0x37, + 0xdb, 0x37, 0x98, 0xc1, 0x01, 0x49, 0x5b, 0x35, 0x22, 0x04, 0xd1, 0x5d, 0x80, 0x56, 0xcf, 0xf3, + 0x9d, 0x0e, 0xee, 0x78, 0x6d, 0x79, 0x7a, 0x27, 0xfe, 0x60, 0x4e, 0x04, 0x6e, 0x8e, 0xd3, 0x2b, + 0x5e, 0x3b, 0xb3, 0x0e, 0xab, 0x55, 0xc7, 0x20, 0x47, 0xb6, 0x7e, 0xae, 0x9b, 0x96, 0x7e, 0x62, + 0x11, 0xb6, 0x30, 0x99, 0x4d, 0xd8, 0x38, 0xb2, 0xbd, 0x5e, 0xb7, 0xeb, 0xb8, 0x3e, 0x31, 0x34, + 0xf2, 0x5d, 0x8f, 0x78, 0x3e, 0x67, 0xfd, 0x5d, 0x1c, 0x10, 0xf3, 0xa0, 0xea, 0xf8, 0xfb, 0x4e, + 0xcf, 0x36, 0xf8, 0x52, 0x86, 0x63, 0x11, 0xbf, 0x7e, 0x2c, 0xbe, 0x84, 0x94, 0xe7, 0x3b, 0x2e, + 0x53, 0x9b, 0x1a, 0x56, 0x6b, 0x50, 0x3a, 0x57, 0x13, 0x9f, 0xda, 0x2c, 0x93, 0x55, 0x8d, 0xcc, + 0xff, 0xc4, 0x61, 0x8d, 0xd9, 0x3a, 0x24, 0x97, 0x15, 0xd3, 0xeb, 0xe8, 0x7e, 0xeb, 0x8c, 0xfb, + 0xf1, 0x05, 0x2c, 0xbb, 0xdc, 0x5d, 0xec, 0xf9, 0xba, 0xeb, 0xe3, 0x57, 0xe4, 0x92, 0x39, 0xb4, + 0xb0, 0x37, 0xfb, 0xfe, 0xcd, 0x76, 0xe2, 0x90, 0x5c, 0x6a, 0x37, 0x84, 0x44, 0x83, 0x0a, 0x1c, + 0x92, 0x4b, 0xb4, 0x0b, 0x01, 0x09, 0x13, 0xdb, 0x60, 0x2a, 0x53, 0xc3, 0x2a, 0x8b, 0x82, 0xaf, + 0xd8, 0x06, 0x55, 0x78, 0x02, 0x33, 0x6c, 0x06, 0x9e, 0x3c, 0xbd, 0x93, 0x78, 0x30, 0xff, 0xf8, + 0x56, 0xd4, 0x66, 0x63, 0x53, 0xb4, 0x4f, 0x1d, 0x11, 0x76, 0xa1, 0x51, 0x4a, 0xa6, 0x12, 0x52, + 0xb2, 0x94, 0x4c, 0x25, 0xa5, 0xe9, 0xcc, 0xbb, 0x04, 0x64, 0x34, 0xa2, 0x1b, 0xc7, 0xa6, 0x7f, + 0x66, 0xda, 0x47, 0x76, 0x8b, 0xb8, 0xbe, 0x6e, 0xda, 0xfe, 0xa5, 0x6a, 0xfb, 0xc4, 0x3d, 0xd7, + 0x2d, 0x3e, 0xa9, 0x12, 0x2c, 0xb9, 0x44, 0x37, 0x70, 0xff, 0xb4, 0x89, 0xe3, 0x72, 0x3b, 0x34, + 0x2c, 0x3d, 0x92, 0xd9, 0x33, 0xab, 0x95, 0x6d, 0x06, 0x42, 0x62, 0xdc, 0x45, 0xaa, 0xda, 0x27, + 0x22, 0x0d, 0x10, 0xb9, 0x30, 0x3d, 0xdf, 0xb4, 0xdb, 0x21, 0x7b, 0x53, 0xd7, 0xb7, 0xb7, 0x1c, + 0xa8, 0x0f, 0x6c, 0xbe, 0x84, 0x0d, 0xcb, 0x69, 0xe9, 0x16, 0xee, 0x0d, 0x66, 0x80, 0x2d, 0xb3, + 0x63, 0xfa, 0x6c, 0xe3, 0x5d, 0xd3, 0xf0, 0x1a, 0xb3, 0x11, 0x0a, 0x42, 0x99, 0x5a, 0x40, 0xdf, + 0x82, 0xdc, 0xb6, 0x9c, 0x93, 0x48, 0xeb, 0x89, 0xeb, 0x5b, 0x5f, 0xe7, 0x46, 0xc6, 0xcc, 0xbf, + 0x84, 0x15, 0xe7, 0xc4, 0x23, 0xee, 0x39, 0x09, 0xc5, 0xd7, 0x93, 0x93, 0x6c, 0x5d, 0xa3, 0x92, + 0x48, 0x4d, 0x48, 0x8f, 0x0e, 0x80, 0x9c, 0x51, 0x86, 0xf7, 0x24, 0xf9, 0x2f, 0xff, 0xba, 0x1d, + 0xcb, 0x18, 0xb0, 0xd1, 0x74, 0x75, 0xdb, 0xd3, 0x5b, 0xf4, 0x64, 0xe6, 0x4e, 0xd8, 0xa1, 0xe2, + 0x2b, 0xab, 0xc2, 0x8c, 0x4b, 0x74, 0xcf, 0xb1, 0xd9, 0x8a, 0x2e, 0x3d, 0xfe, 0x2c, 0x3b, 0x96, + 0xb0, 0xb3, 0xe3, 0xba, 0x1a, 0x53, 0xe9, 0xef, 0x2b, 0xf6, 0x97, 0x79, 0x09, 0xab, 0x21, 0xc9, + 0x7a, 0xcf, 0x13, 0x27, 0x22, 0x0f, 0xd0, 0xed, 0x79, 0x67, 0x84, 0x60, 0xff, 0xc2, 0x16, 0x1b, + 0x27, 0x1d, 0x31, 0xaf, 0x90, 0x72, 0x90, 0x28, 0xb8, 0x5e, 0xf3, 0xc2, 0xce, 0x7c, 0x1f, 0x87, + 0xb5, 0x90, 0x80, 0x46, 0x7c, 0xf7, 0x92, 0x9b, 0x3f, 0x18, 0x99, 0xc1, 0xc3, 0xab, 0x67, 0xc0, + 0x34, 0xa3, 0xfc, 0x47, 0x77, 0x60, 0x8e, 0x5c, 0xf8, 0xae, 0xce, 0xf2, 0xd5, 0x54, 0x28, 0x5f, + 0xa5, 0x18, 0x99, 0xa6, 0xab, 0xff, 0x8a, 0xc3, 0x7a, 0xc8, 0x56, 0xc3, 0xd7, 0xfd, 0x9e, 0xc7, + 0xdd, 0x58, 0x87, 0x04, 0xd5, 0x8b, 0x87, 0xf4, 0x28, 0x01, 0x55, 0xfb, 0xee, 0x4d, 0x31, 0xf7, + 0xfe, 0xe8, 0x6a, 0xf7, 0x42, 0x26, 0xb3, 0x91, 0x51, 0x7e, 0x0a, 0x33, 0x9c, 0x8e, 0x10, 0x2c, + 0x69, 0x4a, 0xae, 0x51, 0xab, 0xe2, 0xa3, 0xea, 0x61, 0xb5, 0x76, 0x5c, 0x95, 0x62, 0x48, 0x86, + 0x55, 0x41, 0x6b, 0x3e, 0xaf, 0xe2, 0x7c, 0xad, 0x52, 0x51, 0x9b, 0x4d, 0xa5, 0x20, 0x4d, 0x65, + 0x92, 0xa9, 0xb8, 0x14, 0xcf, 0xfc, 0x66, 0x0a, 0xa4, 0x63, 0xd7, 0xf4, 0x09, 0x3d, 0xdf, 0x36, + 0xcf, 0xa8, 0xe8, 0x2b, 0x98, 0x35, 0xd9, 0xaf, 0x27, 0xc7, 0xd9, 0xae, 0xdb, 0x8c, 0x58, 0x1d, + 0xae, 0x10, 0x94, 0x3e, 0x21, 0x8f, 0x9e, 0xc2, 0x12, 0x2f, 0x7d, 0x1e, 0x4d, 0x4f, 0x76, 0x8b, + 0x88, 0x3a, 0xb4, 0x46, 0xc5, 0xde, 0xbf, 0xd9, 0x5e, 0x64, 0xf5, 0xaa, 0x21, 0x98, 0xda, 0xa2, + 0x15, 0xfe, 0x45, 0xc5, 0x7e, 0x6c, 0x92, 0x2c, 0x36, 0x8f, 0x22, 0x62, 0x33, 0xea, 0x6d, 0x74, + 0x54, 0xfe, 0x36, 0xde, 0x0f, 0xcb, 0x3a, 0xa0, 0x7e, 0x58, 0x1a, 0x75, 0x25, 0xaf, 0xee, 0xab, + 0x4a, 0x41, 0x8a, 0x85, 0xe8, 0xc7, 0x39, 0xb5, 0x89, 0xeb, 0xb5, 0xb2, 0x9a, 0x7f, 0x21, 0xc5, + 0xd1, 0x06, 0xac, 0x08, 0x7a, 0xb9, 0x96, 0x3f, 0xc4, 0x4d, 0xb5, 0xa2, 0xd4, 0x8e, 0x9a, 0xd2, + 0x14, 0xca, 0xc2, 0xa3, 0x30, 0x83, 0x69, 0x7d, 0x7d, 0xa4, 0x1c, 0x29, 0xb8, 0x92, 0x7b, 0x8e, + 0xcb, 0x4a, 0xf5, 0xa0, 0x59, 0xc4, 0xca, 0xf3, 0xbc, 0xa2, 0x14, 0x94, 0x82, 0x94, 0x28, 0x25, + 0x53, 0x53, 0x52, 0x22, 0xf3, 0x6f, 0x71, 0x11, 0xe1, 0xa6, 0xe3, 0xd4, 0x2c, 0x71, 0xca, 0x72, + 0x30, 0xf7, 0xab, 0x52, 0xe7, 0x40, 0x0b, 0x55, 0x41, 0xd2, 0x5b, 0x7e, 0x4f, 0xb7, 0x7e, 0x5d, + 0xd2, 0xbc, 0xc1, 0x95, 0xfb, 0xe4, 0xcc, 0x2a, 0xa0, 0x5a, 0x97, 0x16, 0x56, 0xd3, 0x25, 0x5e, + 0xf3, 0xc2, 0xe6, 0xc5, 0xb5, 0x01, 0xab, 0x79, 0xc7, 0x36, 0x4c, 0xba, 0x15, 0xf7, 0x75, 0xd3, + 0x0a, 0xd2, 0xc4, 0x9f, 0xc3, 0x82, 0x18, 0xfd, 0x5c, 0xb7, 0x7a, 0x44, 0xcc, 0x21, 0x0a, 0xa0, + 0x3c, 0xa3, 0x7c, 0x6d, 0x9e, 0x4b, 0xb3, 0x9f, 0xcc, 0x7f, 0xc6, 0x01, 0x71, 0xdc, 0x42, 0xfe, + 0x8a, 0xb4, 0xfa, 0xa9, 0x27, 0x0d, 0xb3, 0x1d, 0xe2, 0x79, 0x7a, 0x9b, 0x0c, 0x9d, 0x9a, 0x80, + 0x88, 0x9e, 0xc2, 0x9c, 0x28, 0x7a, 0xc4, 0x10, 0x53, 0x9d, 0x88, 0x88, 0x82, 0x78, 0xf5, 0x15, + 0xd0, 0x13, 0x48, 0x05, 0x75, 0x42, 0x64, 0xe9, 0x0f, 0x29, 0xf7, 0xe5, 0x33, 0xdf, 0xc1, 0x6a, + 0xae, 0x73, 0x62, 0xb6, 0x7b, 0x4e, 0xcf, 0xd3, 0x88, 0xd7, 0xb3, 0xfc, 0xeb, 0x79, 0xfc, 0x15, + 0xcc, 0xbf, 0x76, 0xf5, 0x6e, 0x97, 0x18, 0x98, 0xb8, 0x6e, 0x84, 0xcf, 0xc1, 0xa6, 0x66, 0xe6, + 0x34, 0x10, 0xc2, 0x8a, 0xeb, 0x66, 0x36, 0x28, 0x9e, 0x38, 0xf5, 0x0f, 0x5c, 0xa7, 0xd7, 0x2d, + 0x10, 0x8b, 0x04, 0x51, 0xca, 0x60, 0x58, 0x17, 0xa8, 0x31, 0xef, 0xb8, 0x6e, 0xaf, 0x4b, 0x57, + 0x86, 0x7b, 0x43, 0xf3, 0x15, 0xfd, 0xc0, 0xa3, 0x79, 0x27, 0xc5, 0xc8, 0x15, 0xaf, 0x8d, 0x32, + 0x30, 0xd7, 0x75, 0x9d, 0x16, 0xf1, 0x3c, 0x11, 0xc2, 0x54, 0x3f, 0xb3, 0x06, 0xe4, 0x4c, 0x03, + 0x90, 0x18, 0x20, 0xbc, 0x63, 0xff, 0x02, 0x40, 0xc0, 0xdb, 0x00, 0x50, 0x4d, 0xef, 0xa5, 0x05, + 0x32, 0x9a, 0x13, 0xf2, 0x0c, 0x1b, 0x0d, 0x7e, 0x68, 0xf4, 0xf9, 0xa7, 0x91, 0x39, 0x04, 0xc4, + 0x30, 0xd3, 0x18, 0x46, 0xeb, 0x83, 0xad, 0xf8, 0xf5, 0xc1, 0x56, 0x83, 0x82, 0xc1, 0x33, 0xdd, + 0x36, 0x2c, 0x5a, 0x79, 0x7c, 0xf7, 0xb2, 0x8f, 0x13, 0xd1, 0x63, 0x48, 0x76, 0x15, 0xd7, 0x8d, + 0xd8, 0x8f, 0x43, 0xa1, 0x16, 0xb3, 0x66, 0xb2, 0xa2, 0x26, 0xfe, 0x3e, 0x0e, 0xf7, 0x47, 0xcb, + 0x02, 0x45, 0x41, 0x75, 0xda, 0x30, 0x68, 0xe4, 0xd4, 0x25, 0x41, 0xfd, 0x9a, 0x94, 0xd9, 0x5f, + 0xc2, 0x8c, 0x7f, 0x61, 0x07, 0xc0, 0x71, 0x61, 0xaf, 0x40, 0x59, 0xff, 0xff, 0x66, 0xfb, 0x8b, + 0xb6, 0xe9, 0x9f, 0xf5, 0x4e, 0xb2, 0x2d, 0xa7, 0xb3, 0xdb, 0xf7, 0xc7, 0x38, 0x19, 0x7c, 0xef, + 0x76, 0x5f, 0xb5, 0x77, 0x59, 0x07, 0xd3, 0xeb, 0x99, 0x46, 0xf6, 0xe8, 0x48, 0x2d, 0xbc, 0x7d, + 0xb3, 0x3d, 0xdd, 0xbc, 0xb0, 0xd5, 0x82, 0x36, 0xed, 0x5f, 0xd8, 0xaa, 0x81, 0xf6, 0x61, 0xde, + 0x1f, 0x78, 0x27, 0x76, 0xf0, 0xf5, 0xaa, 0x66, 0x58, 0x31, 0xb3, 0x0f, 0xdb, 0xcd, 0x0b, 0x3b, + 0x67, 0x51, 0x0c, 0x76, 0xa9, 0xd8, 0x2d, 0xa7, 0x47, 0x81, 0x9d, 0xd8, 0x5c, 0x7c, 0x7e, 0x77, + 0x01, 0xba, 0x2e, 0x39, 0xc7, 0x6c, 0xd7, 0x0c, 0x4d, 0x73, 0x8e, 0xd2, 0xf9, 0x36, 0xfc, 0x87, + 0x38, 0xac, 0xd2, 0x2c, 0xdc, 0x26, 0x6e, 0xed, 0x9c, 0xb8, 0xa7, 0x96, 0xf3, 0x9a, 0x6b, 0x6f, + 0x42, 0x22, 0x02, 0xe1, 0x52, 0x1a, 0x7a, 0x08, 0x8b, 0xad, 0x9e, 0xeb, 0x12, 0xdb, 0x17, 0x59, + 0x83, 0x03, 0x6c, 0x6e, 0x7b, 0x41, 0xb0, 0x58, 0x8a, 0x40, 0x9f, 0xc3, 0x0d, 0xd3, 0x6e, 0xb9, + 0xa4, 0x33, 0x10, 0x4e, 0x84, 0x84, 0x97, 0xfa, 0x4c, 0x9e, 0x51, 0x7e, 0x8c, 0xc3, 0xcd, 0x3d, + 0x8a, 0xb9, 0x07, 0x69, 0x8e, 0x9c, 0x3a, 0x2e, 0x39, 0xc8, 0xf7, 0xf3, 0x6d, 0xf3, 0x57, 0xe5, + 0xdb, 0x01, 0xa4, 0xa4, 0x26, 0xce, 0xe8, 0x26, 0x70, 0x2c, 0xe3, 0x63, 0x12, 0xed, 0x40, 0x2b, + 0xd3, 0x01, 0xc4, 0x0b, 0x57, 0xc5, 0xf4, 0x3c, 0xd3, 0x6e, 0x73, 0xdf, 0x9e, 0xc2, 0xc2, 0x6b, + 0xd7, 0xb1, 0xdb, 0x98, 0xd7, 0x50, 0xe1, 0xde, 0xe4, 0x92, 0xab, 0xcd, 0x33, 0x71, 0xfe, 0x13, + 0x84, 0x7b, 0x6a, 0x3c, 0xdc, 0xb4, 0x97, 0xaa, 0x10, 0x97, 0x42, 0xfe, 0xba, 0xeb, 0xb4, 0x5d, + 0xe2, 0x71, 0x18, 0x91, 0xf9, 0xf7, 0x29, 0x58, 0x61, 0xbd, 0xc0, 0x3e, 0x11, 0xe7, 0x87, 0x3b, + 0x72, 0x38, 0x02, 0x9c, 0x3e, 0x8f, 0x38, 0x3d, 0x11, 0x7a, 0xd1, 0x05, 0xf8, 0xbf, 0x07, 0x05, + 0x78, 0x0b, 0xd6, 0x45, 0xdd, 0xd4, 0x94, 0x7a, 0x59, 0xcd, 0xe7, 0xb0, 0xa6, 0x54, 0x6a, 0xcf, + 0x46, 0x8a, 0xb0, 0x96, 0xab, 0x1e, 0x28, 0xb8, 0x51, 0x2f, 0xab, 0xcd, 0xa1, 0x22, 0xcc, 0xe9, + 0x15, 0x45, 0x3b, 0xa0, 0xb0, 0x25, 0x04, 0x68, 0xb4, 0xdc, 0x7e, 0x13, 0x37, 0xaa, 0xb9, 0x7a, + 0xa3, 0x58, 0x6b, 0x4a, 0x09, 0x94, 0x86, 0xad, 0x7e, 0x79, 0x3e, 0x50, 0xf3, 0xb9, 0x32, 0xae, + 0xd5, 0x1b, 0xb8, 0xa2, 0x36, 0x1a, 0x6a, 0xf5, 0x40, 0x4a, 0x86, 0x34, 0x1b, 0xe5, 0xda, 0x31, + 0xce, 0xd7, 0xaa, 0x8d, 0xa3, 0x8a, 0xa2, 0x49, 0xd3, 0x68, 0x13, 0xd6, 0x04, 0xa7, 0x5a, 0xc3, + 0x65, 0x25, 0xd7, 0x50, 0x8a, 0xb5, 0x72, 0x41, 0xd1, 0xa4, 0x99, 0x8c, 0x0e, 0xb2, 0x6a, 0x1b, + 0xc4, 0x27, 0x6e, 0xc7, 0xb4, 0x75, 0x9f, 0xe4, 0x9d, 0x4e, 0xc7, 0x14, 0xd9, 0x5f, 0x81, 0x79, + 0xcf, 0xd7, 0xdb, 0xac, 0x6f, 0xf9, 0x48, 0x20, 0x0b, 0x42, 0x91, 0x22, 0xd9, 0x15, 0x58, 0x56, + 0xed, 0x73, 0xdd, 0x32, 0x0d, 0x56, 0x7c, 0xf8, 0x1a, 0xa5, 0xe1, 0x56, 0xad, 0xeb, 0x9b, 0x1d, + 0x5a, 0x80, 0x5a, 0xca, 0xb9, 0x6e, 0xe5, 0x1d, 0xfb, 0xd4, 0x32, 0x5b, 0xbe, 0x58, 0xc3, 0xff, + 0x8d, 0xc3, 0xdd, 0x8a, 0x69, 0x0f, 0x36, 0x1b, 0x4d, 0xaa, 0x47, 0xb6, 0xa7, 0xfb, 0xa6, 0x77, + 0x6a, 0x0e, 0xf2, 0x61, 0x03, 0x56, 0x3a, 0xa6, 0x3d, 0x80, 0x08, 0xf8, 0x84, 0x0a, 0x7e, 0xcc, + 0x11, 0x58, 0xee, 0x8c, 0x0e, 0x43, 0x3b, 0x36, 0x97, 0x78, 0x8e, 0x35, 0xd4, 0xa1, 0x7c, 0x54, + 0xc7, 0x16, 0xa8, 0x0f, 0xe0, 0xc7, 0x3f, 0x6d, 0xc0, 0x3c, 0x73, 0xb9, 0x40, 0x7c, 0xdd, 0xb4, + 0x90, 0x06, 0x92, 0xed, 0xf8, 0x78, 0xe8, 0x1e, 0x85, 0x7b, 0xfd, 0x49, 0xc4, 0xb6, 0x8c, 0xb8, + 0xcb, 0x29, 0xc6, 0xb4, 0x25, 0x7b, 0x88, 0x8c, 0x6a, 0x70, 0x83, 0x5f, 0x09, 0x50, 0xcb, 0xa7, + 0x2c, 0x10, 0xdc, 0xe9, 0xfb, 0x93, 0x76, 0xfa, 0x50, 0xb9, 0x2a, 0xd2, 0xd6, 0x35, 0x4c, 0x45, + 0xcf, 0x01, 0x71, 0x83, 0xaf, 0xc8, 0x25, 0xee, 0x88, 0xb6, 0x5f, 0xe4, 0xe6, 0x07, 0x93, 0x6c, + 0x8e, 0xde, 0x10, 0x14, 0x63, 0x9a, 0xe4, 0x8e, 0x30, 0xd0, 0xdf, 0xc4, 0x61, 0x87, 0x75, 0xd8, + 0xaf, 0x59, 0x23, 0x3e, 0xd4, 0x69, 0x9a, 0xa2, 0x15, 0x17, 0xb7, 0x42, 0x5f, 0x46, 0x0d, 0xf4, + 0xc1, 0x16, 0xbe, 0x18, 0xd3, 0x6e, 0xbb, 0x57, 0x49, 0xa1, 0x6f, 0x61, 0x25, 0x54, 0x38, 0xb0, + 0xce, 0x3b, 0x3d, 0xd1, 0x3f, 0x3f, 0xba, 0x56, 0x5b, 0x18, 0x8c, 0x84, 0xfc, 0x31, 0x16, 0x6a, + 0x82, 0x14, 0x36, 0x4f, 0x3b, 0x3b, 0x76, 0xdf, 0x34, 0xff, 0xf8, 0xd3, 0xab, 0x6d, 0xf7, 0x1b, + 0xc9, 0x62, 0x4c, 0xbb, 0xe1, 0x0f, 0xd3, 0xd1, 0x31, 0x2c, 0x87, 0xad, 0xba, 0x34, 0x4b, 0xc9, + 0xb3, 0x13, 0x17, 0x24, 0xb2, 0x83, 0xa4, 0x0b, 0xe2, 0x8f, 0x30, 0xd0, 0x37, 0x10, 0x9e, 0x04, + 0xf6, 0x58, 0x5b, 0x26, 0xa7, 0x98, 0xe5, 0x87, 0xd7, 0x6e, 0xe1, 0x8a, 0x31, 0x2d, 0xec, 0x1f, + 0xe7, 0xa0, 0x22, 0xad, 0x00, 0xa6, 0x4f, 0x82, 0x0a, 0x30, 0xc7, 0xac, 0xde, 0xbd, 0x46, 0xf3, + 0x53, 0x8c, 0xd1, 0x6a, 0xd0, 0xa7, 0x21, 0x15, 0x16, 0xb9, 0x25, 0xdf, 0x71, 0x30, 0x2d, 0x54, + 0x70, 0xb5, 0xa9, 0x10, 0xc2, 0xeb, 0x9b, 0xe2, 0x34, 0x7a, 0x58, 0x9c, 0x2e, 0x76, 0x45, 0x43, + 0xc0, 0x32, 0xdc, 0xfc, 0xc4, 0xc3, 0x32, 0xde, 0x39, 0xd0, 0xc3, 0xe2, 0x84, 0xa9, 0x74, 0xc1, + 0x5b, 0x41, 0x2b, 0x81, 0x4f, 0x59, 0x2f, 0x21, 0x2f, 0x4c, 0x5c, 0xf0, 0xa8, 0xae, 0x83, 0x2e, + 0x78, 0x6b, 0x98, 0x8e, 0xaa, 0x41, 0xc3, 0xe9, 0x8a, 0x5e, 0x42, 0x5e, 0x9c, 0xe8, 0xe5, 0x78, + 0xcf, 0x41, 0xbd, 0xb4, 0xc2, 0x54, 0xea, 0xa5, 0xed, 0x18, 0x04, 0xf7, 0x06, 0x37, 0x90, 0xf2, + 0xd2, 0x44, 0x2f, 0xa3, 0xee, 0x2a, 0xa9, 0x97, 0xf6, 0x30, 0x9d, 0x27, 0x8a, 0x53, 0x1f, 0xb7, + 0x29, 0x9c, 0xc7, 0x06, 0xc7, 0xf3, 0xb2, 0x74, 0x45, 0xa2, 0x88, 0x80, 0xfe, 0x3c, 0x51, 0x0c, + 0x33, 0xe8, 0xbe, 0x0c, 0x70, 0x79, 0xab, 0xdf, 0x0f, 0xc8, 0xcb, 0x13, 0xf7, 0x65, 0x74, 0xef, + 0x50, 0x64, 0x39, 0x79, 0x84, 0xc3, 0xf2, 0xa5, 0xb0, 0x1d, 0xec, 0x27, 0x34, 0x39, 0x5f, 0x8e, + 0xf5, 0x0c, 0x2c, 0x5f, 0x86, 0xa9, 0x34, 0xb8, 0x7a, 0xd0, 0x47, 0x61, 0x97, 0x35, 0x52, 0xf2, + 0xd6, 0xc4, 0xe0, 0x46, 0xb5, 0x5c, 0x34, 0xb8, 0xfa, 0x30, 0x9d, 0xba, 0xc9, 0xbb, 0x88, 0x41, + 0x5a, 0xbf, 0x39, 0xd1, 0xcd, 0xf1, 0x2e, 0x84, 0xba, 0xe9, 0x85, 0xa9, 0xe8, 0xef, 0xe3, 0x70, + 0x6f, 0x2c, 0x8b, 0xb0, 0x4c, 0x8c, 0xd9, 0xf3, 0x01, 0x76, 0x79, 0x3b, 0x20, 0xdf, 0x62, 0xc3, + 0xfc, 0xd9, 0x35, 0x12, 0x4b, 0x64, 0x27, 0x51, 0x8c, 0x69, 0x3b, 0xfe, 0x07, 0x04, 0x69, 0xcc, + 0x4c, 0x8e, 0xb3, 0xb1, 0x23, 0x80, 0xb6, 0xbc, 0x3d, 0x31, 0x66, 0x51, 0x90, 0x9c, 0xc6, 0xcc, + 0x1c, 0xa6, 0xd3, 0xe4, 0xde, 0x1b, 0xdc, 0xa7, 0x63, 0xd1, 0x26, 0xcb, 0x3b, 0x13, 0x93, 0xfb, + 0x84, 0xdb, 0x77, 0x9a, 0xdc, 0x7b, 0x63, 0x2c, 0xf4, 0x12, 0xa4, 0x10, 0xe4, 0x60, 0x50, 0x5c, + 0xce, 0x30, 0xdb, 0xd9, 0x08, 0xdb, 0x57, 0x20, 0x77, 0x96, 0xe3, 0x87, 0x39, 0xe8, 0x35, 0xdc, + 0xa6, 0x7d, 0x96, 0xce, 0x7b, 0x18, 0x4c, 0x06, 0x4d, 0x8c, 0x68, 0x59, 0xee, 0xb2, 0x91, 0x1e, + 0x47, 0x2d, 0xcb, 0xd5, 0xad, 0x4f, 0x31, 0xa6, 0x6d, 0xf9, 0x13, 0x45, 0x68, 0xae, 0xe1, 0x19, + 0x9a, 0xd6, 0x7a, 0x0a, 0xe0, 0xe5, 0x7b, 0x13, 0xf7, 0xd9, 0x38, 0xd0, 0xa7, 0xfb, 0xcc, 0x0c, + 0x53, 0xd1, 0x11, 0x2c, 0x77, 0x28, 0x40, 0xc7, 0xa6, 0x4d, 0x37, 0x16, 0x83, 0xe8, 0xf2, 0xfd, + 0x89, 0x6b, 0x1b, 0x05, 0xe6, 0x69, 0x7c, 0x3a, 0xc3, 0x74, 0xf4, 0xb5, 0x80, 0x39, 0xa7, 0x84, + 0xad, 0x2c, 0xad, 0x80, 0x9f, 0x4c, 0x44, 0x4e, 0x11, 0x80, 0x9e, 0x22, 0xa7, 0xbe, 0x01, 0x5e, + 0xfd, 0xfe, 0x12, 0x56, 0xcd, 0x30, 0x0c, 0xc6, 0x2d, 0x86, 0x83, 0xe5, 0x4f, 0x99, 0xdd, 0xcf, + 0x22, 0xe7, 0x1f, 0x8d, 0x9a, 0x8b, 0x31, 0x6d, 0xc5, 0x1c, 0xe7, 0xa1, 0x67, 0xb0, 0x62, 0x72, + 0x14, 0x2c, 0x30, 0x1f, 0x5f, 0xca, 0x07, 0x63, 0x4f, 0x67, 0x83, 0x01, 0x46, 0x30, 0x33, 0xcd, + 0x61, 0xe6, 0x28, 0x11, 0x75, 0x60, 0xd3, 0xe9, 0x03, 0x69, 0x4c, 0xce, 0x75, 0x0b, 0xb7, 0x02, + 0x28, 0x2d, 0x3f, 0x64, 0xd6, 0x77, 0x23, 0x0b, 0xda, 0x64, 0xf0, 0x5d, 0x8c, 0x69, 0x1b, 0x4e, + 0x34, 0x1f, 0x7d, 0x1f, 0x87, 0x3b, 0x11, 0x80, 0x1b, 0xf7, 0xc2, 0xd0, 0x5c, 0x7e, 0xc4, 0xc6, + 0xfd, 0x93, 0xa8, 0x35, 0xfe, 0x30, 0xa6, 0x2f, 0xc6, 0xb4, 0x74, 0xe7, 0x4a, 0xb1, 0xbd, 0x59, + 0x98, 0x66, 0x3d, 0x73, 0x29, 0x99, 0xba, 0x21, 0x49, 0xa5, 0x64, 0x6a, 0x45, 0x5a, 0x2d, 0x25, + 0x53, 0xab, 0xd2, 0x5a, 0x29, 0x99, 0x5a, 0x93, 0xd6, 0x4b, 0xc9, 0xd4, 0xba, 0xb4, 0x51, 0x4a, + 0xa6, 0x36, 0x24, 0xb9, 0x94, 0x4c, 0xc9, 0xd2, 0x66, 0x29, 0x99, 0xda, 0x94, 0xb6, 0x4a, 0xc9, + 0xd4, 0x6d, 0x29, 0x5d, 0x4a, 0xa6, 0xd2, 0xd2, 0x76, 0x29, 0x99, 0xba, 0x23, 0x65, 0x32, 0x0f, + 0x19, 0x2c, 0xaf, 0x3b, 0x1e, 0x2b, 0xba, 0x68, 0x0b, 0xa6, 0xe9, 0xea, 0x5d, 0x88, 0x1b, 0x20, + 0x0e, 0xe7, 0x39, 0x29, 0xf3, 0xc3, 0x34, 0x4c, 0x07, 0x6f, 0x5e, 0x23, 0xf7, 0x62, 0x9b, 0xe2, + 0x5a, 0x67, 0xd9, 0x20, 0x5d, 0x97, 0xb4, 0x74, 0x9f, 0x18, 0x15, 0x2e, 0x30, 0xb8, 0x2c, 0xfb, + 0xeb, 0x61, 0xbc, 0xe9, 0x12, 0xf6, 0x5c, 0xc6, 0xd0, 0xf4, 0x52, 0xe4, 0x11, 0x1b, 0xca, 0xb1, + 0x4c, 0x78, 0xef, 0x9e, 0x18, 0xe7, 0xd6, 0x60, 0x9c, 0x71, 0xa9, 0x21, 0x38, 0x2a, 0x68, 0x28, + 0x0f, 0x8b, 0x3d, 0x9b, 0x5c, 0x74, 0x1d, 0x8f, 0x36, 0x35, 0x17, 0xb6, 0x00, 0xd7, 0x1f, 0x68, + 0xe7, 0xb4, 0x85, 0xbe, 0x12, 0x85, 0x38, 0xbb, 0x30, 0xef, 0xb8, 0x66, 0xdb, 0xb4, 0x31, 0x05, + 0x00, 0x0c, 0x2a, 0x4f, 0xef, 0x2d, 0x89, 0xab, 0xef, 0x19, 0x0a, 0x16, 0xd4, 0x82, 0x06, 0x5c, + 0x84, 0xfe, 0xa1, 0x3a, 0xcc, 0x18, 0xac, 0xdf, 0x11, 0xd0, 0x37, 0x3d, 0xe9, 0xc2, 0x8a, 0x77, + 0x45, 0x7b, 0xb2, 0x98, 0x9f, 0x34, 0x98, 0x1f, 0xe7, 0x68, 0xc2, 0x0e, 0x3a, 0x84, 0x45, 0x9a, + 0x10, 0x8d, 0x7e, 0x32, 0xe4, 0x60, 0x72, 0x27, 0x64, 0x38, 0x78, 0x6e, 0xcf, 0x2a, 0x5c, 0x30, + 0x7c, 0x23, 0xb6, 0x40, 0x42, 0x34, 0xf4, 0xc7, 0xc1, 0x6a, 0xcf, 0x5e, 0xe5, 0x5d, 0xb0, 0x39, + 0xc4, 0x3e, 0x40, 0x3d, 0x48, 0xd8, 0xce, 0x6b, 0x81, 0x8d, 0x3f, 0xd0, 0x0f, 0x16, 0x44, 0x70, + 0x9e, 0x5e, 0xff, 0x8e, 0x8c, 0x1a, 0xc8, 0x5b, 0x4e, 0xeb, 0x55, 0xdf, 0x8a, 0x46, 0xc7, 0xe3, + 0xd7, 0x78, 0xfc, 0xd2, 0xfd, 0xd1, 0xff, 0x4d, 0x81, 0x3c, 0xe9, 0x95, 0x0a, 0xc9, 0xb0, 0x9a, + 0xdb, 0xab, 0x69, 0x4d, 0x3c, 0xf6, 0x5a, 0x72, 0x1f, 0xee, 0x0c, 0x71, 0xd8, 0x8f, 0x52, 0xc0, + 0x9a, 0x92, 0xaf, 0x69, 0x05, 0xbc, 0x5f, 0x3b, 0xaa, 0x16, 0xa4, 0x38, 0x4a, 0xc3, 0xd6, 0x90, + 0x58, 0xbe, 0xac, 0x2a, 0x55, 0xfa, 0x57, 0x52, 0xf2, 0x4d, 0x29, 0x81, 0xb6, 0xe1, 0xe6, 0x10, + 0xbf, 0x7e, 0xd4, 0x28, 0x2a, 0x5a, 0x60, 0x4d, 0x4a, 0xa2, 0x9b, 0xb0, 0x31, 0x3e, 0x0e, 0x6e, + 0xd4, 0x73, 0x55, 0x69, 0x1a, 0xfd, 0x29, 0x7c, 0x31, 0xc4, 0x14, 0x83, 0xe7, 0xca, 0x9a, 0x92, + 0x2b, 0xbc, 0xc0, 0xc7, 0x9a, 0xda, 0x6c, 0x2a, 0x55, 0x5c, 0xaf, 0x35, 0x1a, 0xea, 0x5e, 0x59, + 0x61, 0x97, 0x2a, 0xb9, 0x17, 0xd2, 0x0c, 0xfa, 0x14, 0xee, 0x0e, 0x29, 0x56, 0x95, 0x63, 0x7e, + 0x9b, 0x81, 0xeb, 0x9a, 0xf2, 0x4c, 0xa9, 0x36, 0x1b, 0xb8, 0xf9, 0xbc, 0x2a, 0xa5, 0xd0, 0x43, + 0xb8, 0x3f, 0x24, 0xd8, 0x54, 0x2b, 0x4a, 0xa3, 0x99, 0xab, 0xd4, 0x71, 0x3e, 0x97, 0x2f, 0x2a, + 0x62, 0x22, 0x4a, 0x41, 0x9a, 0xdd, 0x4a, 0xfe, 0xf0, 0x63, 0x3a, 0x96, 0xa1, 0x41, 0x9d, 0x7a, + 0xf4, 0x1f, 0xc3, 0x8f, 0x5d, 0xa1, 0x87, 0x33, 0x7e, 0xb7, 0xd2, 0xd4, 0x5e, 0x8c, 0x87, 0x94, + 0x5d, 0xe4, 0x50, 0x0e, 0xf5, 0x5b, 0xc1, 0xcd, 0x5a, 0x0d, 0xd7, 0xca, 0x34, 0x88, 0xec, 0xe6, + 0x87, 0x32, 0x1a, 0x8a, 0xa6, 0xe6, 0xca, 0xea, 0x37, 0xb9, 0xbd, 0xb2, 0x22, 0x25, 0xd0, 0x6d, + 0xd8, 0xe4, 0xf4, 0x5c, 0xe3, 0x45, 0x35, 0x2f, 0xd4, 0xf6, 0x73, 0x6a, 0xf9, 0x48, 0x53, 0xa4, + 0x69, 0x94, 0x81, 0x34, 0x67, 0xf3, 0xb7, 0x2c, 0x5c, 0x50, 0x72, 0x85, 0xb2, 0x5a, 0x55, 0x06, + 0x0f, 0x2f, 0x33, 0xdc, 0xe9, 0x47, 0x4f, 0x00, 0x8d, 0x9f, 0x7d, 0x94, 0x82, 0x64, 0xb5, 0x56, + 0x55, 0xa4, 0x18, 0x9a, 0x87, 0xd9, 0xbd, 0x5c, 0xfe, 0xb0, 0xb6, 0xbf, 0x2f, 0xc5, 0xd1, 0x22, + 0xcc, 0xa9, 0x95, 0x8a, 0x52, 0x50, 0x73, 0x4d, 0x45, 0x9a, 0xda, 0x7b, 0xf8, 0xd3, 0xef, 0xd2, + 0xb1, 0x9f, 0xde, 0xa6, 0xe3, 0x3f, 0xbf, 0x4d, 0xc7, 0x7f, 0x79, 0x9b, 0x8e, 0xff, 0xf6, 0x6d, + 0x3a, 0xfe, 0x8f, 0xef, 0xd2, 0xb1, 0x9f, 0xdf, 0xa5, 0x63, 0xbf, 0xbc, 0x4b, 0xc7, 0xbe, 0x99, + 0x15, 0xd9, 0xe0, 0x0f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x40, 0x91, 0x46, 0x3f, 0xe7, 0x22, 0x00, + 0x00, } func (m *NotLeaseHolderError) Marshal() (dAtA []byte, err error) { @@ -2536,6 +2543,9 @@ func (m *NotLeaseHolderError) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + i = encodeVarintErrors(dAtA, i, uint64(m.DescriptorGeneration)) + i-- + dAtA[i] = 0x30 i -= len(m.CustomMsg) copy(dAtA[i:], m.CustomMsg) i = encodeVarintErrors(dAtA, i, uint64(len(m.CustomMsg))) @@ -4510,6 +4520,7 @@ func (m *NotLeaseHolderError) Size() (n int) { } l = len(m.CustomMsg) n += 1 + l + sovErrors(uint64(l)) + n += 1 + sovErrors(uint64(m.DescriptorGeneration)) return n } @@ -5511,6 +5522,25 @@ func (m *NotLeaseHolderError) Unmarshal(dAtA []byte) error { } m.CustomMsg = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DescriptorGeneration", wireType) + } + m.DescriptorGeneration = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowErrors + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DescriptorGeneration |= RangeGeneration(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipErrors(dAtA[iNdEx:]) diff --git a/pkg/roachpb/errors.proto b/pkg/roachpb/errors.proto index cb4e10969591..029637ff4aad 100644 --- a/pkg/roachpb/errors.proto +++ b/pkg/roachpb/errors.proto @@ -56,6 +56,11 @@ message NotLeaseHolderError { optional roachpb.Lease lease = 4; optional int64 range_id = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "RangeID", (gogoproto.casttype) = "RangeID"]; + // The range descriptor generation of the replica the error originated from. + // Used to determine whether the error was returned because the replica had a + // stale understanding of who the leaseholder is. + optional int64 descriptor_generation = 6 [(gogoproto.nullable) = false, + (gogoproto.customname) = "DescriptorGeneration", (gogoproto.casttype) = "RangeGeneration"]; // If set, the Error() method will return this instead of composing its // regular spiel. Useful because we reuse this error when rejecting a command // because the lease under which its application was attempted is different