diff --git a/functional/agent/handler.go b/functional/agent/handler.go index c38faa3b7..c5ee89f61 100644 --- a/functional/agent/handler.go +++ b/functional/agent/handler.go @@ -511,8 +511,9 @@ func (srv *Server) handle_FETCH_SNAPSHOT() (*rpcpb.Response, error) { return nil, err } return &rpcpb.Response{ - Success: true, - Status: "downloaded snapshot", + Success: true, + Status: "downloaded snapshot", + SnapshotInfo: srv.Member.SnapshotInfo, }, nil } diff --git a/functional/rpcpb/member.go b/functional/rpcpb/member.go index a2bfb68f0..72b28fb7e 100644 --- a/functional/rpcpb/member.go +++ b/functional/rpcpb/member.go @@ -265,15 +265,28 @@ func (m *Member) FetchSnapshot(lg *zap.Logger) (err error) { return err } + m.SnapshotInfo = &SnapshotInfo{ + MemberName: m.Etcd.Name, + MemberClientURLs: m.Etcd.AdvertiseClientURLs, + SnapshotPath: m.SnapshotPath, + SnapshotFileSize: humanize.Bytes(uint64(fi.Size())), + SnapshotTotalSize: humanize.Bytes(uint64(st.TotalSize)), + SnapshotTotalKey: int64(st.TotalKey), + SnapshotHash: int64(st.Hash), + SnapshotRevision: st.Revision, + Took: fmt.Sprintf("%v", took), + } lg.Info( "snapshot saved", + zap.String("member-name", m.SnapshotInfo.MemberName), + zap.Strings("member-client-urls", m.SnapshotInfo.MemberClientURLs), zap.String("snapshot-path", m.SnapshotPath), - zap.String("snapshot-file-size", humanize.Bytes(uint64(fi.Size()))), - zap.String("snapshot-total-size", humanize.Bytes(uint64(st.TotalSize))), - zap.Int("snapshot-total-key", st.TotalKey), - zap.Uint32("snapshot-hash", st.Hash), - zap.Int64("snapshot-revision", st.Revision), - zap.Duration("took", took), + zap.String("snapshot-file-size", m.SnapshotInfo.SnapshotFileSize), + zap.String("snapshot-total-size", m.SnapshotInfo.SnapshotTotalSize), + zap.Int64("snapshot-total-key", m.SnapshotInfo.SnapshotTotalKey), + zap.Int64("snapshot-hash", m.SnapshotInfo.SnapshotHash), + zap.Int64("snapshot-revision", m.SnapshotInfo.SnapshotRevision), + zap.String("took", m.SnapshotInfo.Took), ) return nil } diff --git a/functional/rpcpb/rpc.pb.go b/functional/rpcpb/rpc.pb.go index 500cb9b1c..62ac8422f 100644 --- a/functional/rpcpb/rpc.pb.go +++ b/functional/rpcpb/rpc.pb.go @@ -9,6 +9,7 @@ It has these top-level messages: Request + SnapshotInfo Response Member Tester @@ -541,17 +542,37 @@ func (m *Request) String() string { return proto.CompactTextString(m) func (*Request) ProtoMessage() {} func (*Request) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{0} } +// SnapshotInfo contains FETCH_SNAPSHOT request results. +type SnapshotInfo struct { + MemberName string `protobuf:"bytes,1,opt,name=MemberName,proto3" json:"MemberName,omitempty"` + MemberClientURLs []string `protobuf:"bytes,2,rep,name=MemberClientURLs" json:"MemberClientURLs,omitempty"` + SnapshotPath string `protobuf:"bytes,3,opt,name=SnapshotPath,proto3" json:"SnapshotPath,omitempty"` + SnapshotFileSize string `protobuf:"bytes,4,opt,name=SnapshotFileSize,proto3" json:"SnapshotFileSize,omitempty"` + SnapshotTotalSize string `protobuf:"bytes,5,opt,name=SnapshotTotalSize,proto3" json:"SnapshotTotalSize,omitempty"` + SnapshotTotalKey int64 `protobuf:"varint,6,opt,name=SnapshotTotalKey,proto3" json:"SnapshotTotalKey,omitempty"` + SnapshotHash int64 `protobuf:"varint,7,opt,name=SnapshotHash,proto3" json:"SnapshotHash,omitempty"` + SnapshotRevision int64 `protobuf:"varint,8,opt,name=SnapshotRevision,proto3" json:"SnapshotRevision,omitempty"` + Took string `protobuf:"bytes,9,opt,name=Took,proto3" json:"Took,omitempty"` +} + +func (m *SnapshotInfo) Reset() { *m = SnapshotInfo{} } +func (m *SnapshotInfo) String() string { return proto.CompactTextString(m) } +func (*SnapshotInfo) ProtoMessage() {} +func (*SnapshotInfo) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{1} } + type Response struct { Success bool `protobuf:"varint,1,opt,name=Success,proto3" json:"Success,omitempty"` Status string `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"` // Member contains the same Member object from tester request. Member *Member `protobuf:"bytes,3,opt,name=Member" json:"Member,omitempty"` + // SnapshotInfo contains FETCH_SNAPSHOT request results. + SnapshotInfo *SnapshotInfo `protobuf:"bytes,4,opt,name=SnapshotInfo" json:"SnapshotInfo,omitempty"` } func (m *Response) Reset() { *m = Response{} } func (m *Response) String() string { return proto.CompactTextString(m) } func (*Response) ProtoMessage() {} -func (*Response) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{1} } +func (*Response) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{2} } type Member struct { // EtcdExecPath is the executable etcd binary path in agent server. @@ -594,12 +615,14 @@ type Member struct { PeerTrustedCAPath string `protobuf:"bytes,506,opt,name=PeerTrustedCAPath,proto3" json:"PeerTrustedCAPath,omitempty" yaml:"peer-trusted-ca-path"` // SnapshotPath is the snapshot file path to store or restore from. SnapshotPath string `protobuf:"bytes,601,opt,name=SnapshotPath,proto3" json:"SnapshotPath,omitempty" yaml:"snapshot-path"` + // SnapshotInfo contains last FETCH_SNAPSHOT request results. + SnapshotInfo *SnapshotInfo `protobuf:"bytes,602,opt,name=SnapshotInfo" json:"SnapshotInfo,omitempty"` } func (m *Member) Reset() { *m = Member{} } func (m *Member) String() string { return proto.CompactTextString(m) } func (*Member) ProtoMessage() {} -func (*Member) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{2} } +func (*Member) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{3} } type Tester struct { DataDir string `protobuf:"bytes,1,opt,name=DataDir,proto3" json:"DataDir,omitempty" yaml:"data-dir"` @@ -661,7 +684,7 @@ type Tester struct { func (m *Tester) Reset() { *m = Tester{} } func (m *Tester) String() string { return proto.CompactTextString(m) } func (*Tester) ProtoMessage() {} -func (*Tester) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{3} } +func (*Tester) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{4} } type Etcd struct { Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty" yaml:"name"` @@ -699,10 +722,11 @@ type Etcd struct { func (m *Etcd) Reset() { *m = Etcd{} } func (m *Etcd) String() string { return proto.CompactTextString(m) } func (*Etcd) ProtoMessage() {} -func (*Etcd) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{4} } +func (*Etcd) Descriptor() ([]byte, []int) { return fileDescriptorRpc, []int{5} } func init() { proto.RegisterType((*Request)(nil), "rpcpb.Request") + proto.RegisterType((*SnapshotInfo)(nil), "rpcpb.SnapshotInfo") proto.RegisterType((*Response)(nil), "rpcpb.Response") proto.RegisterType((*Member)(nil), "rpcpb.Member") proto.RegisterType((*Tester)(nil), "rpcpb.Tester") @@ -859,6 +883,84 @@ func (m *Request) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *SnapshotInfo) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SnapshotInfo) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.MemberName) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintRpc(dAtA, i, uint64(len(m.MemberName))) + i += copy(dAtA[i:], m.MemberName) + } + if len(m.MemberClientURLs) > 0 { + for _, s := range m.MemberClientURLs { + dAtA[i] = 0x12 + i++ + l = len(s) + for l >= 1<<7 { + dAtA[i] = uint8(uint64(l)&0x7f | 0x80) + l >>= 7 + i++ + } + dAtA[i] = uint8(l) + i++ + i += copy(dAtA[i:], s) + } + } + if len(m.SnapshotPath) > 0 { + dAtA[i] = 0x1a + i++ + i = encodeVarintRpc(dAtA, i, uint64(len(m.SnapshotPath))) + i += copy(dAtA[i:], m.SnapshotPath) + } + if len(m.SnapshotFileSize) > 0 { + dAtA[i] = 0x22 + i++ + i = encodeVarintRpc(dAtA, i, uint64(len(m.SnapshotFileSize))) + i += copy(dAtA[i:], m.SnapshotFileSize) + } + if len(m.SnapshotTotalSize) > 0 { + dAtA[i] = 0x2a + i++ + i = encodeVarintRpc(dAtA, i, uint64(len(m.SnapshotTotalSize))) + i += copy(dAtA[i:], m.SnapshotTotalSize) + } + if m.SnapshotTotalKey != 0 { + dAtA[i] = 0x30 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.SnapshotTotalKey)) + } + if m.SnapshotHash != 0 { + dAtA[i] = 0x38 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.SnapshotHash)) + } + if m.SnapshotRevision != 0 { + dAtA[i] = 0x40 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.SnapshotRevision)) + } + if len(m.Took) > 0 { + dAtA[i] = 0x4a + i++ + i = encodeVarintRpc(dAtA, i, uint64(len(m.Took))) + i += copy(dAtA[i:], m.Took) + } + return i, nil +} + func (m *Response) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -900,6 +1002,16 @@ func (m *Response) MarshalTo(dAtA []byte) (int, error) { } i += n3 } + if m.SnapshotInfo != nil { + dAtA[i] = 0x22 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.SnapshotInfo.Size())) + n4, err := m.SnapshotInfo.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n4 + } return i, nil } @@ -990,11 +1102,11 @@ func (m *Member) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintRpc(dAtA, i, uint64(m.Etcd.Size())) - n4, err := m.Etcd.MarshalTo(dAtA[i:]) + n5, err := m.Etcd.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n4 + i += n5 } if len(m.ClientCertData) > 0 { dAtA[i] = 0x8a @@ -1100,6 +1212,18 @@ func (m *Member) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintRpc(dAtA, i, uint64(len(m.SnapshotPath))) i += copy(dAtA[i:], m.SnapshotPath) } + if m.SnapshotInfo != nil { + dAtA[i] = 0xd2 + i++ + dAtA[i] = 0x25 + i++ + i = encodeVarintRpc(dAtA, i, uint64(m.SnapshotInfo.Size())) + n6, err := m.SnapshotInfo.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n6 + } return i, nil } @@ -1630,6 +1754,47 @@ func (m *Request) Size() (n int) { return n } +func (m *SnapshotInfo) Size() (n int) { + var l int + _ = l + l = len(m.MemberName) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + if len(m.MemberClientURLs) > 0 { + for _, s := range m.MemberClientURLs { + l = len(s) + n += 1 + l + sovRpc(uint64(l)) + } + } + l = len(m.SnapshotPath) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + l = len(m.SnapshotFileSize) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + l = len(m.SnapshotTotalSize) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + if m.SnapshotTotalKey != 0 { + n += 1 + sovRpc(uint64(m.SnapshotTotalKey)) + } + if m.SnapshotHash != 0 { + n += 1 + sovRpc(uint64(m.SnapshotHash)) + } + if m.SnapshotRevision != 0 { + n += 1 + sovRpc(uint64(m.SnapshotRevision)) + } + l = len(m.Took) + if l > 0 { + n += 1 + l + sovRpc(uint64(l)) + } + return n +} + func (m *Response) Size() (n int) { var l int _ = l @@ -1644,6 +1809,10 @@ func (m *Response) Size() (n int) { l = m.Member.Size() n += 1 + l + sovRpc(uint64(l)) } + if m.SnapshotInfo != nil { + l = m.SnapshotInfo.Size() + n += 1 + l + sovRpc(uint64(l)) + } return n } @@ -1736,6 +1905,10 @@ func (m *Member) Size() (n int) { if l > 0 { n += 2 + l + sovRpc(uint64(l)) } + if m.SnapshotInfo != nil { + l = m.SnapshotInfo.Size() + n += 2 + l + sovRpc(uint64(l)) + } return n } @@ -2087,6 +2260,287 @@ func (m *Request) Unmarshal(dAtA []byte) error { } return nil } +func (m *SnapshotInfo) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SnapshotInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SnapshotInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MemberName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.MemberName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MemberClientURLs", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.MemberClientURLs = append(m.MemberClientURLs, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotPath", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SnapshotPath = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotFileSize", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SnapshotFileSize = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotTotalSize", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SnapshotTotalSize = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotTotalKey", wireType) + } + m.SnapshotTotalKey = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.SnapshotTotalKey |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotHash", wireType) + } + m.SnapshotHash = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.SnapshotHash |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotRevision", wireType) + } + m.SnapshotRevision = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.SnapshotRevision |= (int64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Took", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Took = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRpc(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRpc + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *Response) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -2198,6 +2652,39 @@ func (m *Response) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.SnapshotInfo == nil { + m.SnapshotInfo = &SnapshotInfo{} + } + if err := m.SnapshotInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(dAtA[iNdEx:]) @@ -2872,6 +3359,39 @@ func (m *Member) Unmarshal(dAtA []byte) error { } m.SnapshotPath = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 602: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SnapshotInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRpc + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRpc + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.SnapshotInfo == nil { + m.SnapshotInfo = &SnapshotInfo{} + } + if err := m.SnapshotInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipRpc(dAtA[iNdEx:]) @@ -4301,166 +4821,176 @@ var ( func init() { proto.RegisterFile("rpcpb/rpc.proto", fileDescriptorRpc) } var fileDescriptorRpc = []byte{ - // 2569 bytes of a gzipped FileDescriptorProto + // 2722 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x59, 0x5b, 0x77, 0xdb, 0xc6, - 0x11, 0x36, 0x44, 0xcb, 0x8e, 0x56, 0x37, 0x6a, 0x65, 0xd9, 0xf0, 0x4d, 0x90, 0xe1, 0x38, 0xb5, - 0x9d, 0xc2, 0x4e, 0xed, 0x9c, 0xb4, 0x71, 0x2e, 0x0e, 0x48, 0x41, 0x16, 0x2b, 0x88, 0xa4, 0x97, - 0x90, 0x9d, 0x3c, 0xa1, 0x10, 0xb9, 0x92, 0x50, 0x53, 0x00, 0x03, 0x2c, 0x1d, 0x29, 0x7f, 0xa0, - 0xaf, 0xbd, 0x9f, 0xfe, 0x88, 0xa6, 0xbf, 0xc3, 0x49, 0x6f, 0x69, 0xfb, 0xd4, 0x73, 0x5a, 0x9e, - 0xd6, 0xf9, 0x07, 0x3c, 0x4d, 0xdb, 0xf4, 0xa9, 0x67, 0x2f, 0x20, 0x17, 0x00, 0x29, 0xe9, 0x4d, - 0x98, 0xf9, 0xbe, 0x0f, 0xb3, 0x33, 0xbb, 0x3b, 0x03, 0x11, 0xcc, 0x47, 0x9d, 0x66, 0x67, 0xfb, - 0x6e, 0xd4, 0x69, 0xde, 0xe9, 0x44, 0x21, 0x09, 0xe1, 0x24, 0x33, 0x5c, 0x32, 0x76, 0x7d, 0xb2, - 0xd7, 0xdd, 0xbe, 0xd3, 0x0c, 0xf7, 0xef, 0xee, 0x86, 0xbb, 0xe1, 0x5d, 0xe6, 0xdd, 0xee, 0xee, - 0xb0, 0x27, 0xf6, 0xc0, 0xfe, 0xe2, 0x2c, 0xfd, 0x47, 0x0a, 0x38, 0x8b, 0xf0, 0xc7, 0x5d, 0x1c, - 0x13, 0x78, 0x07, 0x4c, 0xd5, 0x3a, 0x38, 0xf2, 0x88, 0x1f, 0x06, 0xaa, 0xb2, 0xa2, 0xdc, 0x9c, - 0xbb, 0x57, 0xbc, 0xc3, 0x54, 0xef, 0x0c, 0xec, 0x68, 0x08, 0x81, 0x37, 0xc0, 0x99, 0x4d, 0xbc, - 0xbf, 0x8d, 0x23, 0x75, 0x62, 0x45, 0xb9, 0x39, 0x7d, 0x6f, 0x56, 0x80, 0xb9, 0x11, 0x09, 0x27, - 0x85, 0x39, 0x38, 0x26, 0x38, 0x52, 0x0b, 0x29, 0x18, 0x37, 0x22, 0xe1, 0xd4, 0x9b, 0xe0, 0x15, - 0x84, 0xe3, 0x4e, 0x18, 0xc4, 0x18, 0xaa, 0xe0, 0x6c, 0xa3, 0xdb, 0x6c, 0xe2, 0x38, 0x66, 0x71, - 0xbc, 0x82, 0x92, 0x47, 0x78, 0x1e, 0x9c, 0x69, 0x10, 0x8f, 0x74, 0x63, 0xf6, 0xce, 0x29, 0x24, - 0x9e, 0xa4, 0x58, 0x0a, 0x47, 0xc4, 0xa2, 0xff, 0x7d, 0x3a, 0xc1, 0xc1, 0xf7, 0xc0, 0x8c, 0x45, - 0x9a, 0x2d, 0xeb, 0x00, 0x37, 0xeb, 0x1e, 0xd9, 0x63, 0x2f, 0x9a, 0x2a, 0x5d, 0xec, 0xf7, 0xb4, - 0xa5, 0x43, 0x6f, 0xbf, 0xfd, 0x40, 0xc7, 0xa4, 0xd9, 0x32, 0xf0, 0x01, 0x6e, 0x1a, 0x1d, 0x8f, - 0xec, 0xe9, 0x28, 0x05, 0x87, 0xf7, 0xc1, 0x94, 0xb9, 0x8b, 0x03, 0x62, 0xb6, 0x5a, 0x91, 0x3a, - 0xcd, 0xb8, 0x4b, 0xfd, 0x9e, 0xb6, 0xc0, 0xb9, 0x1e, 0x75, 0x19, 0x5e, 0xab, 0x15, 0xe9, 0x68, - 0x88, 0x83, 0x36, 0x58, 0x58, 0xf3, 0xfc, 0x76, 0x27, 0xf4, 0x03, 0xb2, 0xee, 0x38, 0x75, 0x46, - 0x9e, 0x61, 0xe4, 0xe5, 0x7e, 0x4f, 0xbb, 0xc4, 0xc9, 0x3b, 0x09, 0xc4, 0xd8, 0x23, 0xa4, 0x23, - 0x54, 0xf2, 0x44, 0x68, 0x80, 0xb3, 0x25, 0x2f, 0xc6, 0xab, 0x7e, 0xa4, 0x62, 0xa6, 0xb1, 0xd8, - 0xef, 0x69, 0xf3, 0x5c, 0x63, 0xdb, 0x8b, 0xb1, 0xd1, 0xf2, 0x23, 0x1d, 0x25, 0x18, 0xf8, 0x00, - 0x4c, 0xd3, 0x15, 0xd8, 0xe1, 0x2e, 0x5b, 0xef, 0x0e, 0xa3, 0xa8, 0xfd, 0x9e, 0x76, 0x4e, 0x5a, - 0x6f, 0x3b, 0xdc, 0x15, 0xcb, 0x95, 0xc1, 0xf0, 0x11, 0x98, 0xa7, 0x8f, 0xe5, 0xb6, 0x8f, 0x03, - 0x52, 0x8f, 0xc2, 0x83, 0x43, 0xf5, 0x73, 0x56, 0x99, 0xd2, 0x95, 0x7e, 0x4f, 0x53, 0x25, 0x81, - 0x26, 0x83, 0x18, 0x1d, 0x8a, 0xd1, 0x51, 0x96, 0x05, 0x4d, 0x30, 0x4b, 0x4d, 0x75, 0x8c, 0x23, - 0x2e, 0xf3, 0x05, 0x97, 0xb9, 0xd4, 0xef, 0x69, 0xe7, 0x25, 0x99, 0x0e, 0xc6, 0x51, 0x22, 0x92, - 0x66, 0xc0, 0x3a, 0x80, 0x43, 0x55, 0x2b, 0x68, 0xb1, 0xa4, 0xa8, 0x9f, 0xb1, 0xfd, 0x50, 0xd2, - 0xfa, 0x3d, 0xed, 0x72, 0x3e, 0x1c, 0x2c, 0x60, 0x3a, 0x1a, 0xc1, 0x85, 0xdf, 0x01, 0xa7, 0xa9, - 0x55, 0xfd, 0x0d, 0xdf, 0xc7, 0xd3, 0x62, 0xef, 0x50, 0x5b, 0x69, 0xbe, 0xdf, 0xd3, 0xa6, 0x87, - 0x82, 0x3a, 0x62, 0x50, 0xb8, 0x0a, 0xe6, 0xb8, 0x48, 0x19, 0x47, 0x64, 0xd5, 0x23, 0x9e, 0xfa, - 0x93, 0x02, 0x0b, 0xe0, 0x72, 0xbf, 0xa7, 0x5d, 0xe0, 0x78, 0xf1, 0xee, 0x26, 0x8e, 0x88, 0xd1, - 0xf2, 0x88, 0xa7, 0xa3, 0x0c, 0x27, 0xad, 0xc2, 0xaa, 0xf2, 0xd3, 0x23, 0x55, 0x78, 0x65, 0x32, - 0x1c, 0x9a, 0x53, 0x6e, 0xd9, 0xc0, 0x87, 0x2c, 0x94, 0x9f, 0x71, 0x11, 0x29, 0xa7, 0x42, 0xe4, - 0x19, 0x3e, 0x14, 0x91, 0xa4, 0x19, 0x29, 0x09, 0x16, 0xc7, 0xcf, 0x8f, 0x92, 0xe0, 0x61, 0xa4, - 0x19, 0xd0, 0x01, 0x8b, 0xdc, 0xe0, 0x44, 0xdd, 0x98, 0xe0, 0x56, 0xd9, 0x64, 0xb1, 0xfc, 0x82, - 0x0b, 0x5d, 0xeb, 0xf7, 0xb4, 0xab, 0x29, 0x21, 0xc2, 0x61, 0x46, 0xd3, 0x13, 0x21, 0x8d, 0xa2, - 0x8f, 0x50, 0x65, 0xe1, 0xfd, 0xf2, 0x04, 0xaa, 0x3c, 0xca, 0x51, 0x74, 0xf8, 0x3e, 0x98, 0xa1, - 0xfb, 0x69, 0x50, 0xbb, 0xaf, 0x0b, 0xd9, 0xc3, 0xcf, 0xf6, 0x9f, 0x54, 0xb9, 0x14, 0x5e, 0xe6, - 0xb3, 0x70, 0xfe, 0x7d, 0x04, 0x5f, 0x5c, 0x1e, 0x32, 0x1e, 0xbe, 0x03, 0xa6, 0xe9, 0x73, 0x52, - 0xaf, 0xff, 0x14, 0xb2, 0x67, 0x91, 0xd1, 0x87, 0xd5, 0x92, 0xd1, 0x12, 0x99, 0xbd, 0xfb, 0xbf, - 0xe3, 0xc9, 0xe2, 0x20, 0x4b, 0x68, 0x58, 0x05, 0x0b, 0xf4, 0x31, 0x5d, 0xa3, 0x6f, 0x0a, 0xd9, - 0xb3, 0xc3, 0x24, 0x72, 0x15, 0xca, 0x53, 0x73, 0x7a, 0x2c, 0xa4, 0xff, 0x1d, 0xab, 0xc7, 0x23, - 0xcb, 0x53, 0xe9, 0xad, 0xdc, 0x08, 0xbc, 0x4e, 0xbc, 0x17, 0xf2, 0xcc, 0xfe, 0xf5, 0x74, 0x76, - 0x75, 0xb1, 0x70, 0x27, 0x89, 0x95, 0xe1, 0xfa, 0x57, 0x33, 0x49, 0xb3, 0xa1, 0xb7, 0x23, 0x8d, - 0x90, 0xde, 0x8e, 0x4a, 0xf6, 0x76, 0xa4, 0xcb, 0x11, 0xb7, 0xa3, 0xc0, 0xc0, 0x6f, 0x83, 0xb3, - 0x55, 0x4c, 0x3e, 0x09, 0xa3, 0x67, 0xbc, 0xb3, 0x94, 0x60, 0xbf, 0xa7, 0xcd, 0x71, 0x78, 0xc0, - 0x1d, 0x3a, 0x4a, 0x20, 0xf0, 0x3a, 0x38, 0xcd, 0xee, 0x6e, 0xbe, 0x50, 0xe9, 0x8e, 0xe0, 0x97, - 0x35, 0x73, 0xc2, 0x32, 0x98, 0x5b, 0xc5, 0x6d, 0xef, 0xd0, 0xf6, 0x08, 0x0e, 0x9a, 0x87, 0x9b, - 0x31, 0xeb, 0x13, 0xb3, 0xf2, 0xe1, 0x6e, 0x51, 0xbf, 0xd1, 0xe6, 0x00, 0x63, 0x3f, 0xd6, 0x51, - 0x86, 0x02, 0xbf, 0x0f, 0x8a, 0x69, 0x0b, 0x7a, 0xce, 0x3a, 0xc6, 0xac, 0xdc, 0x31, 0xb2, 0x32, - 0x46, 0xf4, 0x5c, 0x47, 0x39, 0x1e, 0xfc, 0x08, 0x2c, 0x6d, 0x75, 0x5a, 0x1e, 0xc1, 0xad, 0x4c, - 0x5c, 0xb3, 0x4c, 0xf0, 0x7a, 0xbf, 0xa7, 0x69, 0x5c, 0xb0, 0xcb, 0x61, 0x46, 0x3e, 0xbe, 0xd1, - 0x0a, 0xf0, 0x2d, 0x00, 0x50, 0xd8, 0x0d, 0x5a, 0xb6, 0xbf, 0xef, 0x13, 0x75, 0x69, 0x45, 0xb9, - 0x39, 0x59, 0x3a, 0xdf, 0xef, 0x69, 0x90, 0xeb, 0x45, 0xd4, 0x67, 0xb4, 0xa9, 0x53, 0x47, 0x12, - 0x12, 0x7e, 0x00, 0x66, 0xad, 0x03, 0x9f, 0xd4, 0x02, 0xda, 0xde, 0xba, 0x11, 0x56, 0xcf, 0xe7, - 0xda, 0xc1, 0x81, 0x4f, 0x8c, 0x30, 0x30, 0x76, 0x38, 0x80, 0xb6, 0x03, 0x99, 0x00, 0xd7, 0x41, - 0xb1, 0x1c, 0x06, 0xb1, 0x1f, 0xb3, 0x50, 0xca, 0x7b, 0xb8, 0xf9, 0x4c, 0xbd, 0x90, 0x6d, 0x4d, - 0xcd, 0x21, 0xc2, 0x68, 0x52, 0x88, 0x8e, 0x72, 0x2c, 0xf8, 0x36, 0x98, 0xb6, 0x02, 0x6f, 0xbb, - 0x8d, 0xeb, 0x9d, 0x28, 0xdc, 0x51, 0x55, 0x26, 0x72, 0xa1, 0xdf, 0xd3, 0x16, 0x45, 0x24, 0xcc, - 0x69, 0x74, 0xa8, 0x97, 0xf6, 0xc7, 0x21, 0x96, 0x96, 0x5a, 0xc4, 0xc3, 0xf2, 0xb2, 0x19, 0xab, - 0x5a, 0xb6, 0xd4, 0x22, 0x7e, 0x91, 0x52, 0x56, 0xea, 0x34, 0x05, 0x96, 0x06, 0x22, 0x8d, 0xbd, - 0xee, 0xce, 0x4e, 0x1b, 0xab, 0x2b, 0xd9, 0x64, 0x24, 0x22, 0x31, 0x07, 0x0c, 0x35, 0x04, 0x03, - 0xbe, 0x0b, 0x66, 0x84, 0xa5, 0xec, 0xc5, 0x38, 0x56, 0xaf, 0xad, 0x14, 0xd2, 0xc7, 0x27, 0x51, - 0x68, 0x52, 0xb7, 0x8e, 0x52, 0x68, 0xb8, 0x21, 0xcd, 0x27, 0xe5, 0x70, 0x7f, 0xdf, 0x0b, 0x5a, - 0xb1, 0xaa, 0x33, 0x89, 0xab, 0xfd, 0x9e, 0x76, 0x31, 0x3b, 0x9f, 0x34, 0x05, 0x46, 0x1e, 0x4f, - 0x12, 0x1e, 0xcd, 0x09, 0xea, 0x06, 0x01, 0x8e, 0x06, 0x23, 0xd6, 0xad, 0x6c, 0x6f, 0x8b, 0x98, - 0x5f, 0x1e, 0xb2, 0x32, 0x14, 0x58, 0x01, 0x45, 0xeb, 0x80, 0xe0, 0x28, 0xf0, 0xda, 0x03, 0x99, - 0xdb, 0x4c, 0x46, 0x0a, 0x08, 0x0b, 0x84, 0x2c, 0x94, 0xa3, 0xd1, 0xf2, 0x36, 0x48, 0x84, 0xe3, - 0xd8, 0x39, 0xec, 0xe0, 0x58, 0xc5, 0x6c, 0x59, 0x52, 0x79, 0x63, 0xe6, 0x34, 0x08, 0xf5, 0xea, - 0x48, 0xc6, 0xd2, 0x5d, 0xca, 0x1f, 0x37, 0xf0, 0x61, 0xc3, 0xff, 0x14, 0xb3, 0xe1, 0x69, 0x52, - 0x2e, 0x8c, 0x20, 0xd3, 0x5b, 0x37, 0xf6, 0x3f, 0xa5, 0xbb, 0x34, 0x45, 0xa0, 0x43, 0x4b, 0xca, - 0x60, 0x7b, 0xd1, 0x2e, 0x56, 0x77, 0x99, 0xcc, 0x4a, 0xbf, 0xa7, 0x5d, 0x19, 0x29, 0x63, 0xb4, - 0x29, 0x4c, 0x47, 0x23, 0xb8, 0xf0, 0x09, 0x38, 0x37, 0xb4, 0x76, 0x77, 0x76, 0xfc, 0x03, 0xe4, - 0x05, 0xbb, 0x58, 0xdd, 0x63, 0x9a, 0x7a, 0xbf, 0xa7, 0x2d, 0xe7, 0x35, 0x19, 0xce, 0x88, 0x28, - 0x50, 0x47, 0x23, 0xf9, 0xf0, 0x07, 0xe0, 0xc2, 0x28, 0xbb, 0x73, 0x10, 0xa8, 0x3e, 0x93, 0x7e, - 0xad, 0xdf, 0xd3, 0xf4, 0x23, 0xa5, 0x0d, 0x72, 0x10, 0xe8, 0x68, 0x9c, 0x0c, 0x1d, 0x26, 0x07, - 0x2e, 0xe7, 0x20, 0xa8, 0x75, 0x62, 0xf5, 0x87, 0x4c, 0x59, 0x2a, 0xa9, 0xa4, 0x4c, 0x0e, 0x02, - 0x23, 0xec, 0xc4, 0x3a, 0xca, 0xb2, 0x86, 0x65, 0xe1, 0x3d, 0x3e, 0xe6, 0x33, 0xe9, 0xa4, 0xdc, - 0x87, 0x85, 0x0e, 0x9f, 0x0e, 0xe2, 0x41, 0x59, 0x04, 0x01, 0xbe, 0x09, 0xa6, 0xb8, 0xe1, 0x71, - 0xbd, 0xc1, 0x47, 0xd1, 0x49, 0x79, 0x8c, 0x17, 0xec, 0x8f, 0xe9, 0xdb, 0x87, 0x40, 0xfd, 0x9b, - 0x59, 0x3e, 0x30, 0xd2, 0x36, 0x50, 0xf5, 0xf6, 0xb1, 0x68, 0x30, 0x52, 0x1b, 0x08, 0xbc, 0x7d, - 0xac, 0x23, 0xe6, 0x94, 0x1b, 0xd1, 0xc4, 0x09, 0x1a, 0xd1, 0x6d, 0x70, 0xe6, 0xa9, 0x69, 0x53, - 0x74, 0x21, 0xdb, 0x87, 0x3e, 0xf1, 0xda, 0x1c, 0x2c, 0x10, 0xb0, 0x06, 0x16, 0xd7, 0xb1, 0x17, - 0x91, 0x6d, 0xec, 0x91, 0x4a, 0x40, 0x70, 0xf4, 0xdc, 0x6b, 0x8b, 0x36, 0x53, 0x90, 0xb3, 0xb9, - 0x97, 0x80, 0x0c, 0x5f, 0xa0, 0x74, 0x34, 0x8a, 0x09, 0x2b, 0x60, 0xc1, 0x6a, 0xe3, 0x26, 0xfd, - 0xbc, 0x73, 0xfc, 0x7d, 0x1c, 0x76, 0xc9, 0x66, 0xcc, 0xda, 0x4d, 0x41, 0x3e, 0xb6, 0x58, 0x40, - 0x0c, 0xc2, 0x31, 0x3a, 0xca, 0xb3, 0xe8, 0xc9, 0xb5, 0xd9, 0xf5, 0xca, 0x73, 0xbd, 0x85, 0xec, - 0x58, 0x5d, 0xca, 0x5e, 0x25, 0x6d, 0x86, 0x48, 0xa6, 0xf4, 0x6e, 0xd4, 0x8e, 0x75, 0x94, 0xa3, - 0x41, 0x04, 0x16, 0xcd, 0xd6, 0x73, 0x1c, 0x11, 0x3f, 0xc6, 0x92, 0xda, 0x79, 0xa6, 0x26, 0x9d, - 0x1e, 0x2f, 0x01, 0xa5, 0x05, 0x47, 0x91, 0xe1, 0xdb, 0xc9, 0xc4, 0x6b, 0x76, 0x49, 0xe8, 0xd8, - 0x0d, 0xd1, 0x33, 0xa4, 0xda, 0x78, 0x5d, 0x12, 0x1a, 0x84, 0x0a, 0xa4, 0x91, 0xf4, 0x62, 0x1b, - 0x4e, 0xe0, 0x66, 0x97, 0xec, 0x89, 0x56, 0x31, 0x66, 0x68, 0xf7, 0xba, 0x99, 0xa1, 0x9d, 0x52, - 0xe0, 0xbb, 0xb2, 0xc8, 0x9a, 0xdf, 0xc6, 0xea, 0x45, 0x56, 0xee, 0x73, 0xfd, 0x9e, 0x56, 0x14, - 0x22, 0x94, 0xbd, 0xe3, 0xb3, 0x6b, 0x3e, 0x8d, 0x1d, 0x46, 0xbf, 0x81, 0x0f, 0x19, 0xf9, 0x52, - 0x76, 0x67, 0xd1, 0x93, 0xc3, 0xb9, 0x69, 0x24, 0xb4, 0x73, 0x13, 0x35, 0x13, 0xb8, 0x9c, 0x9d, - 0xf7, 0xa5, 0x69, 0x8d, 0xeb, 0x8c, 0xa2, 0xd1, 0x5c, 0xf0, 0x72, 0xd1, 0x51, 0x8e, 0x55, 0x45, - 0x63, 0x55, 0x91, 0x72, 0x21, 0x6a, 0xcc, 0x46, 0x40, 0x5e, 0x90, 0x0c, 0x05, 0x3a, 0x60, 0x61, - 0x50, 0xa2, 0x81, 0xce, 0x0a, 0xd3, 0x91, 0x2e, 0x1b, 0x3f, 0xf0, 0x89, 0xef, 0xb5, 0x8d, 0x61, - 0x95, 0x25, 0xc9, 0xbc, 0x00, 0xfd, 0xde, 0xa5, 0x7f, 0x27, 0xf5, 0xbd, 0xc6, 0x6a, 0x94, 0x1d, - 0x93, 0x87, 0x45, 0x96, 0xc1, 0xf4, 0xba, 0x66, 0x03, 0x7b, 0xba, 0xcc, 0x3a, 0x93, 0x90, 0x36, - 0x1c, 0x9f, 0xf2, 0x73, 0xb5, 0x1e, 0xc1, 0xa5, 0x83, 0x6d, 0xf2, 0x09, 0xc0, 0xf2, 0x7d, 0x7d, - 0xfc, 0x17, 0x03, 0x4f, 0x77, 0x0a, 0x9e, 0x2c, 0x26, 0x29, 0xf7, 0xab, 0x63, 0x67, 0x7e, 0x4e, - 0x96, 0xc1, 0x70, 0x33, 0x33, 0xa3, 0x33, 0x85, 0x1b, 0xc7, 0x8d, 0xe8, 0x5c, 0x28, 0xcf, 0xa4, - 0x63, 0x4a, 0x85, 0x97, 0xa2, 0xdc, 0xee, 0xb2, 0xff, 0xeb, 0xdc, 0xca, 0xee, 0x9d, 0xa4, 0x54, - 0x4d, 0x0e, 0xd0, 0x51, 0x86, 0x41, 0x4f, 0x74, 0xda, 0xd2, 0x20, 0x1e, 0xc1, 0xa2, 0xb3, 0x4b, - 0x09, 0xce, 0x08, 0x19, 0x31, 0x85, 0xe9, 0x68, 0x14, 0x39, 0xaf, 0xe9, 0x84, 0xcf, 0x70, 0xa0, - 0xbe, 0x7e, 0x9c, 0x26, 0xa1, 0xb0, 0x9c, 0x26, 0x23, 0xc3, 0x87, 0x60, 0x36, 0xf9, 0xbe, 0x28, - 0x87, 0xdd, 0x80, 0xa8, 0xf7, 0xd9, 0x5d, 0x28, 0x37, 0x98, 0xe4, 0x73, 0xa4, 0x49, 0xfd, 0xb4, - 0xc1, 0xc8, 0x78, 0x68, 0x83, 0x85, 0xc7, 0xdd, 0x90, 0x78, 0x25, 0xaf, 0xf9, 0x0c, 0x07, 0xad, - 0xd2, 0x21, 0xc1, 0xb1, 0xfa, 0x26, 0x13, 0x91, 0xe6, 0xf7, 0x8f, 0x29, 0xc4, 0xd8, 0xe6, 0x18, - 0x63, 0x9b, 0x82, 0x74, 0x94, 0x27, 0xd2, 0x56, 0x52, 0x8f, 0xf0, 0x93, 0x90, 0x60, 0xf5, 0x61, - 0xf6, 0xba, 0xea, 0x44, 0xd8, 0x78, 0x1e, 0xd2, 0xec, 0x24, 0x18, 0x39, 0x23, 0x61, 0x14, 0x75, - 0x3b, 0x84, 0x4f, 0xc7, 0x1f, 0x64, 0xb7, 0xf1, 0x20, 0x23, 0x1c, 0x95, 0x4c, 0xc8, 0xa3, 0xc8, - 0xb7, 0xff, 0x36, 0x21, 0xfd, 0x97, 0x10, 0xce, 0x83, 0xe9, 0x6a, 0xcd, 0x71, 0x1b, 0x8e, 0x89, - 0x1c, 0x6b, 0xb5, 0x78, 0x0a, 0x9e, 0x07, 0xb0, 0x52, 0xad, 0x38, 0x15, 0xd3, 0xe6, 0x46, 0xd7, - 0x72, 0xca, 0xab, 0x45, 0x00, 0x8b, 0x60, 0x06, 0x59, 0x92, 0x65, 0x9a, 0x5a, 0x1a, 0x95, 0x47, - 0x8e, 0x85, 0x36, 0xb9, 0xe5, 0x1c, 0x5c, 0x01, 0x57, 0x1a, 0x95, 0x47, 0x8f, 0xb7, 0x2a, 0x1c, - 0xe3, 0x9a, 0xd5, 0x55, 0x17, 0x59, 0x9b, 0xb5, 0x27, 0x96, 0xbb, 0x6a, 0x3a, 0x66, 0x71, 0x09, - 0x42, 0x30, 0xb7, 0x66, 0x39, 0xe5, 0x75, 0xb7, 0x51, 0x35, 0xeb, 0x8d, 0xf5, 0x9a, 0x53, 0x5c, - 0x86, 0xd7, 0xc0, 0xd5, 0x1c, 0xcb, 0x44, 0xe5, 0xf5, 0x4a, 0x42, 0xbb, 0x09, 0xef, 0x82, 0xd7, - 0x8f, 0x12, 0x66, 0xcf, 0x0d, 0xa7, 0x56, 0x77, 0xcd, 0x47, 0x56, 0xd5, 0x29, 0xde, 0x82, 0x57, - 0xc1, 0xc5, 0x92, 0x6d, 0x96, 0x37, 0xd6, 0x6b, 0xb6, 0xe5, 0xd6, 0x2d, 0x0b, 0xb9, 0xf5, 0x1a, - 0x72, 0x5c, 0xe7, 0x43, 0x17, 0x7d, 0x58, 0x6c, 0x41, 0x0d, 0x5c, 0xde, 0xaa, 0x8e, 0x07, 0x60, - 0x78, 0x09, 0x2c, 0xad, 0x5a, 0xb6, 0xf9, 0x51, 0xce, 0xf5, 0x42, 0x81, 0x57, 0xc0, 0x85, 0xad, - 0xea, 0x68, 0xef, 0xe7, 0xca, 0xed, 0xaf, 0x01, 0x98, 0x96, 0x46, 0x72, 0xa8, 0x82, 0x73, 0x49, - 0x96, 0x6a, 0x55, 0xcb, 0x5d, 0xab, 0xd9, 0x76, 0xed, 0xa9, 0x85, 0x8a, 0xa7, 0xc4, 0xa2, 0x72, - 0x1e, 0x77, 0xab, 0xea, 0x54, 0x6c, 0xd7, 0x41, 0x95, 0x47, 0x8f, 0x2c, 0x34, 0x4c, 0x94, 0x42, - 0x93, 0x97, 0x10, 0x6c, 0xcb, 0x5c, 0xb5, 0x50, 0x71, 0x02, 0xde, 0x02, 0x37, 0xd2, 0xb6, 0x71, - 0xf4, 0x82, 0x4c, 0x7f, 0xbc, 0x55, 0x43, 0x5b, 0x9b, 0xc5, 0xd3, 0xb4, 0xfc, 0x89, 0xcd, 0xb4, - 0xed, 0xe2, 0x24, 0xbc, 0x0e, 0xb4, 0x24, 0xd3, 0x52, 0x92, 0x53, 0x91, 0x03, 0xf8, 0x00, 0xbc, - 0x75, 0x0c, 0x68, 0x5c, 0x14, 0xd3, 0xb4, 0x32, 0x23, 0xb8, 0x62, 0x3d, 0x33, 0xf0, 0x4d, 0xf0, - 0xc6, 0x58, 0xf7, 0x38, 0xd1, 0x59, 0xb8, 0x06, 0x4a, 0x23, 0x58, 0x7c, 0x95, 0xc2, 0xd2, 0x70, - 0x6a, 0x68, 0x20, 0x94, 0x50, 0xdd, 0x35, 0x54, 0xdb, 0x74, 0x1b, 0x65, 0x64, 0x3a, 0xe5, 0xf5, - 0xe2, 0x1c, 0xbc, 0x0d, 0x5e, 0x1b, 0xbb, 0x2b, 0xd2, 0x49, 0x68, 0x41, 0x13, 0xbc, 0x77, 0x32, - 0xec, 0xb8, 0xb0, 0x31, 0x7c, 0x15, 0xac, 0x8c, 0x97, 0x10, 0x29, 0xd9, 0x81, 0xef, 0x80, 0xef, - 0x1e, 0x87, 0x1a, 0xf7, 0x8a, 0xdd, 0xa3, 0x5f, 0x21, 0xb6, 0xc1, 0x1e, 0x3d, 0x82, 0xe3, 0x51, - 0x74, 0x63, 0xf8, 0xf0, 0x5b, 0x40, 0x1f, 0xb9, 0xe7, 0xd3, 0x69, 0x79, 0xa1, 0xc0, 0x3b, 0xe0, - 0x16, 0x32, 0xab, 0xab, 0xb5, 0x4d, 0xf7, 0x04, 0xf8, 0xcf, 0x15, 0xf8, 0x3e, 0x78, 0xfb, 0x78, - 0xe0, 0xb8, 0x05, 0x7e, 0xa1, 0x40, 0x0b, 0x7c, 0x70, 0xe2, 0xf7, 0x8d, 0x93, 0xf9, 0xad, 0x02, - 0xaf, 0x81, 0x2b, 0xa3, 0xf9, 0xa2, 0x0e, 0xbf, 0x53, 0xe0, 0x4d, 0x70, 0xfd, 0xc8, 0x37, 0x09, - 0xe4, 0xef, 0x15, 0xf8, 0x3d, 0x70, 0xff, 0x28, 0xc8, 0xb8, 0x30, 0xfe, 0xa0, 0xc0, 0x87, 0xe0, - 0xc1, 0x09, 0xde, 0x31, 0x4e, 0xe0, 0x8f, 0x47, 0xac, 0x43, 0x14, 0xfb, 0xcb, 0xe3, 0xd7, 0x21, - 0x90, 0x7f, 0x52, 0xe0, 0x32, 0xb8, 0x38, 0x1a, 0x42, 0xf7, 0xc4, 0x9f, 0x15, 0x78, 0x03, 0xac, - 0x1c, 0xa9, 0x44, 0x61, 0x7f, 0x51, 0xa0, 0x0a, 0x16, 0xab, 0x35, 0x77, 0xcd, 0xac, 0xd8, 0xee, - 0xd3, 0x8a, 0xb3, 0xee, 0x36, 0x1c, 0x64, 0x35, 0x1a, 0xc5, 0x5f, 0x4f, 0xd0, 0x50, 0x52, 0x9e, - 0x6a, 0x4d, 0x38, 0xdd, 0xb5, 0x1a, 0x72, 0xed, 0xca, 0x13, 0xab, 0x4a, 0x91, 0x9f, 0x4d, 0xc0, - 0x79, 0x00, 0x28, 0xac, 0x5e, 0xab, 0x54, 0x9d, 0x46, 0xf1, 0xc7, 0x05, 0x38, 0x0b, 0x5e, 0xb1, - 0x3e, 0x74, 0x2c, 0x54, 0x35, 0xed, 0xe2, 0xbf, 0x0a, 0xb7, 0x43, 0x00, 0x86, 0x1f, 0xfc, 0xf0, - 0x0c, 0x98, 0xd8, 0x78, 0x52, 0x3c, 0x05, 0xa7, 0xc0, 0xa4, 0x6d, 0x99, 0x0d, 0xab, 0xa8, 0xc0, - 0x45, 0x30, 0x6f, 0xd9, 0x56, 0xd9, 0xa9, 0xd4, 0xaa, 0x2e, 0xda, 0xaa, 0x56, 0xd9, 0xf5, 0x59, - 0x04, 0x33, 0x4f, 0xe9, 0xd9, 0x4f, 0x2c, 0x05, 0xb8, 0x04, 0x16, 0xec, 0x5a, 0x79, 0xc3, 0x45, - 0x66, 0xd9, 0x42, 0x89, 0xf9, 0x34, 0x05, 0x32, 0xa1, 0xc4, 0x32, 0x79, 0xef, 0x21, 0x98, 0x72, - 0x22, 0x2f, 0x88, 0x3b, 0x61, 0x44, 0xe0, 0x3d, 0xf9, 0x61, 0x4e, 0xfc, 0xfc, 0x20, 0x7e, 0x96, - 0xbb, 0x34, 0x3f, 0x78, 0xe6, 0xbf, 0x8e, 0xe9, 0xa7, 0x6e, 0x2a, 0x6f, 0x28, 0xa5, 0x73, 0x2f, - 0xfe, 0xb9, 0x7c, 0xea, 0xc5, 0xcb, 0x65, 0xe5, 0xcb, 0x97, 0xcb, 0xca, 0x3f, 0x5e, 0x2e, 0x2b, - 0xbf, 0xfa, 0x6a, 0xf9, 0xd4, 0xf6, 0x19, 0xf6, 0xb3, 0xde, 0xfd, 0xff, 0x07, 0x00, 0x00, 0xff, - 0xff, 0x96, 0xe4, 0x0d, 0x92, 0x1f, 0x1c, 0x00, 0x00, + 0xb5, 0x36, 0x44, 0xc9, 0xb6, 0x46, 0x37, 0x6a, 0x64, 0xd9, 0xf0, 0x4d, 0x90, 0xe1, 0x38, 0x47, + 0x56, 0x02, 0x3b, 0xc7, 0xce, 0xca, 0xc5, 0xb9, 0x38, 0x20, 0x05, 0x59, 0x3c, 0x82, 0x48, 0x7a, + 0x08, 0xd9, 0xc9, 0x13, 0x0f, 0x44, 0x0e, 0x25, 0xd4, 0x14, 0xc0, 0x00, 0x43, 0x47, 0xca, 0x1f, + 0xe8, 0x6b, 0xef, 0xed, 0x43, 0x7f, 0x42, 0xd3, 0xdf, 0xe1, 0xa4, 0xb7, 0xb4, 0x7d, 0x6a, 0x57, + 0x17, 0x57, 0x9b, 0xbc, 0xf4, 0x99, 0xab, 0x69, 0x9b, 0x3e, 0x75, 0xcd, 0x05, 0xe2, 0x00, 0x20, + 0x25, 0xbd, 0x09, 0x7b, 0x7f, 0xdf, 0x87, 0x3d, 0x7b, 0x0f, 0x66, 0xef, 0x11, 0xc1, 0x5c, 0xd8, + 0x69, 0x74, 0x76, 0xee, 0x86, 0x9d, 0xc6, 0x9d, 0x4e, 0x18, 0x90, 0x00, 0x4e, 0x30, 0xc3, 0x15, + 0x63, 0xd7, 0x23, 0x7b, 0xdd, 0x9d, 0x3b, 0x8d, 0x60, 0xff, 0xee, 0x6e, 0xb0, 0x1b, 0xdc, 0x65, + 0xde, 0x9d, 0x6e, 0x8b, 0x3d, 0xb1, 0x07, 0xf6, 0x17, 0x67, 0xe9, 0xdf, 0x55, 0xc0, 0x39, 0x84, + 0x3f, 0xee, 0xe2, 0x88, 0xc0, 0x3b, 0x60, 0xb2, 0xd2, 0xc1, 0xa1, 0x4b, 0xbc, 0xc0, 0x57, 0x95, + 0x65, 0x65, 0x65, 0xf6, 0x5e, 0xfe, 0x0e, 0x53, 0xbd, 0x73, 0x64, 0x47, 0x03, 0x08, 0xbc, 0x05, + 0xce, 0x6e, 0xe1, 0xfd, 0x1d, 0x1c, 0xaa, 0x63, 0xcb, 0xca, 0xca, 0xd4, 0xbd, 0x19, 0x01, 0xe6, + 0x46, 0x24, 0x9c, 0x14, 0xe6, 0xe0, 0x88, 0xe0, 0x50, 0xcd, 0x25, 0x60, 0xdc, 0x88, 0x84, 0x53, + 0xff, 0xfb, 0x18, 0x98, 0xae, 0xf9, 0x6e, 0x27, 0xda, 0x0b, 0x48, 0xc9, 0x6f, 0x05, 0x70, 0x09, + 0x00, 0xae, 0x50, 0x76, 0xf7, 0x31, 0x8b, 0x67, 0x12, 0x49, 0x16, 0xb8, 0x0a, 0xf2, 0xfc, 0xa9, + 0xd8, 0xf6, 0xb0, 0x4f, 0xb6, 0x91, 0x1d, 0xa9, 0x63, 0xcb, 0xb9, 0x95, 0x49, 0x94, 0xb1, 0x43, + 0x7d, 0xa0, 0x5d, 0x75, 0xc9, 0x1e, 0x8b, 0x64, 0x12, 0x25, 0x6c, 0x54, 0x2f, 0x7e, 0x5e, 0xf7, + 0xda, 0xb8, 0xe6, 0x7d, 0x8a, 0xd5, 0x71, 0x86, 0xcb, 0xd8, 0xe1, 0xab, 0x60, 0x3e, 0xb6, 0x39, + 0x01, 0x71, 0xdb, 0x0c, 0x3c, 0xc1, 0xc0, 0x59, 0x87, 0xac, 0xcc, 0x8c, 0x9b, 0xf8, 0x50, 0x3d, + 0xbb, 0xac, 0xac, 0xe4, 0x50, 0xc6, 0x2e, 0x47, 0xba, 0xe1, 0x46, 0x7b, 0xea, 0x39, 0x86, 0x4b, + 0xd8, 0x64, 0x3d, 0x84, 0x9f, 0x7b, 0x11, 0xad, 0xd7, 0xf9, 0xa4, 0x5e, 0x6c, 0x87, 0x10, 0x8c, + 0x3b, 0x41, 0xf0, 0x4c, 0x9d, 0x64, 0xc1, 0xb1, 0xbf, 0xf5, 0x9f, 0x2b, 0xe0, 0x3c, 0xc2, 0x51, + 0x27, 0xf0, 0x23, 0x0c, 0x55, 0x70, 0xae, 0xd6, 0x6d, 0x34, 0x70, 0x14, 0xb1, 0x1c, 0x9f, 0x47, + 0xf1, 0x23, 0xbc, 0x08, 0xce, 0xd6, 0x88, 0x4b, 0xba, 0x11, 0xab, 0xef, 0x24, 0x12, 0x4f, 0x52, + 0xdd, 0x73, 0xc7, 0xd5, 0xfd, 0xcd, 0x64, 0x3d, 0x59, 0x2e, 0xa7, 0xee, 0x2d, 0x08, 0xb0, 0xec, + 0x42, 0x09, 0xa0, 0xfe, 0xd3, 0xe9, 0xf8, 0x05, 0xf0, 0x3d, 0x30, 0x6d, 0x91, 0x46, 0xd3, 0x3a, + 0xc0, 0x0d, 0x56, 0x37, 0xb6, 0x0b, 0x0a, 0x97, 0xfb, 0x3d, 0x6d, 0xf1, 0xd0, 0xdd, 0x6f, 0x3f, + 0xd0, 0x31, 0x69, 0x34, 0x0d, 0x7c, 0x80, 0x1b, 0x46, 0xc7, 0x25, 0x7b, 0x3a, 0x4a, 0xc0, 0xe1, + 0x7d, 0x30, 0x69, 0xee, 0x62, 0x9f, 0x98, 0xcd, 0x66, 0xa8, 0x4e, 0x31, 0xee, 0x62, 0xbf, 0xa7, + 0xcd, 0x73, 0xae, 0x4b, 0x5d, 0x86, 0xdb, 0x6c, 0x86, 0x3a, 0x1a, 0xe0, 0xa0, 0x0d, 0xe6, 0xd7, + 0x5d, 0xaf, 0xdd, 0x09, 0x3c, 0x9f, 0x6c, 0x38, 0x4e, 0x95, 0x91, 0xa7, 0x19, 0x79, 0xa9, 0xdf, + 0xd3, 0xae, 0x70, 0x72, 0x2b, 0x86, 0x18, 0x7b, 0x84, 0x74, 0x84, 0x4a, 0x96, 0x08, 0x0d, 0x70, + 0xae, 0xe0, 0x46, 0x78, 0xcd, 0x0b, 0x55, 0xcc, 0x34, 0x16, 0xfa, 0x3d, 0x6d, 0x8e, 0x6b, 0xec, + 0xb8, 0x11, 0x36, 0x9a, 0x5e, 0xa8, 0xa3, 0x18, 0x03, 0x1f, 0x80, 0x29, 0xba, 0x02, 0x3b, 0xd8, + 0x65, 0xeb, 0x6d, 0x31, 0x8a, 0xda, 0xef, 0x69, 0x17, 0xa4, 0xf5, 0xb6, 0x83, 0x5d, 0xb1, 0x5c, + 0x19, 0x0c, 0x1f, 0x81, 0x39, 0xfa, 0xc8, 0xb7, 0x7d, 0x35, 0x0c, 0x0e, 0x0e, 0xd5, 0xcf, 0x59, + 0x49, 0x0b, 0xd7, 0xfa, 0x3d, 0x4d, 0x95, 0x04, 0x1a, 0x0c, 0x62, 0x74, 0x28, 0x46, 0x47, 0x69, + 0x16, 0x34, 0xc1, 0x0c, 0x35, 0x55, 0x31, 0x0e, 0xb9, 0xcc, 0x17, 0x5c, 0xe6, 0x4a, 0xbf, 0xa7, + 0x5d, 0x94, 0x64, 0x3a, 0x18, 0x87, 0xb1, 0x48, 0x92, 0x01, 0xab, 0x00, 0x0e, 0x54, 0x2d, 0xbf, + 0xc9, 0x92, 0xa2, 0x7e, 0xc6, 0x36, 0x52, 0x41, 0xeb, 0xf7, 0xb4, 0xab, 0xd9, 0x70, 0xb0, 0x80, + 0xe9, 0x68, 0x08, 0x17, 0xfe, 0x2f, 0x18, 0xa7, 0x56, 0xf5, 0x97, 0xfc, 0xb0, 0x99, 0x12, 0xfb, + 0x88, 0xda, 0x0a, 0x73, 0xfd, 0x9e, 0x36, 0x35, 0x10, 0xd4, 0x11, 0x83, 0xc2, 0x35, 0x30, 0xcb, + 0x45, 0x8a, 0x38, 0x24, 0x6b, 0x2e, 0x71, 0xd5, 0xef, 0xb3, 0x0f, 0xbf, 0x70, 0xb5, 0xdf, 0xd3, + 0x2e, 0x71, 0xbc, 0x78, 0x77, 0x03, 0x87, 0xc4, 0x68, 0xba, 0xc4, 0xd5, 0x51, 0x8a, 0x93, 0x54, + 0x61, 0x55, 0xf9, 0xc1, 0xb1, 0x2a, 0xbc, 0x32, 0x29, 0x0e, 0xcd, 0x29, 0xb7, 0x6c, 0xe2, 0x43, + 0x16, 0xca, 0x0f, 0xb9, 0x88, 0x94, 0x53, 0x21, 0xf2, 0x0c, 0x1f, 0x8a, 0x48, 0x92, 0x8c, 0x84, + 0x04, 0x8b, 0xe3, 0x47, 0xc7, 0x49, 0xf0, 0x30, 0x92, 0x0c, 0xe8, 0x80, 0x05, 0x6e, 0x70, 0xc2, + 0x6e, 0x44, 0x70, 0xb3, 0x68, 0xb2, 0x58, 0x7e, 0xcc, 0x85, 0x6e, 0xf4, 0x7b, 0xda, 0xf5, 0x84, + 0x10, 0xe1, 0x30, 0xa3, 0xe1, 0x8a, 0x90, 0x86, 0xd1, 0x87, 0xa8, 0xb2, 0xf0, 0x7e, 0x72, 0x0a, + 0x55, 0x1e, 0xe5, 0x30, 0x3a, 0x7c, 0x1f, 0x4c, 0xd3, 0xfd, 0x74, 0x54, 0xbb, 0x6f, 0x72, 0xe9, + 0x8f, 0x9f, 0xed, 0x3f, 0xa9, 0x72, 0x09, 0xbc, 0xcc, 0x67, 0xe1, 0xfc, 0xf3, 0x18, 0xbe, 0x38, + 0x3c, 0x64, 0x3c, 0x7c, 0x07, 0x4c, 0xd1, 0xe7, 0xb8, 0x5e, 0xff, 0xca, 0xa5, 0xbf, 0x45, 0x46, + 0x1f, 0x54, 0x4b, 0x46, 0x4b, 0x64, 0xf6, 0xee, 0x7f, 0x8f, 0x26, 0x8b, 0x0f, 0x59, 0x42, 0xc3, + 0x32, 0x98, 0xa7, 0x8f, 0xc9, 0x1a, 0x7d, 0x9b, 0x4b, 0x7f, 0x3b, 0x4c, 0x22, 0x53, 0xa1, 0x2c, + 0x35, 0xa3, 0xc7, 0x42, 0xfa, 0xcf, 0x89, 0x7a, 0x3c, 0xb2, 0x2c, 0x95, 0x9e, 0xca, 0x89, 0x6e, + 0xfa, 0xa7, 0xf1, 0xf4, 0xea, 0x22, 0xe1, 0x8e, 0x13, 0x9b, 0x68, 0xb4, 0x6f, 0xa5, 0x1a, 0xc3, + 0x9f, 0x4f, 0xdd, 0x19, 0xbe, 0x9e, 0x8e, 0x67, 0x09, 0x7a, 0xae, 0xd2, 0xb5, 0xd1, 0x73, 0x55, + 0x49, 0x9f, 0xab, 0x34, 0x11, 0xe2, 0x5c, 0x15, 0x18, 0xf8, 0x2a, 0x38, 0x57, 0xc6, 0xe4, 0x93, + 0x20, 0x7c, 0xc6, 0x9b, 0x59, 0x01, 0xf6, 0x7b, 0xda, 0x2c, 0x87, 0xfb, 0xdc, 0xa1, 0xa3, 0x18, + 0x02, 0x6f, 0x82, 0x71, 0x76, 0xea, 0xf3, 0x14, 0x49, 0xa7, 0x0b, 0x3f, 0xe6, 0x99, 0x13, 0x16, + 0xc1, 0xec, 0x1a, 0x6e, 0xbb, 0x87, 0xb6, 0x4b, 0xb0, 0xdf, 0x38, 0xdc, 0x8a, 0x58, 0x87, 0x99, + 0x91, 0x8f, 0x85, 0x26, 0xf5, 0x1b, 0x6d, 0x0e, 0x30, 0xf6, 0x23, 0x1d, 0xa5, 0x28, 0xf0, 0xff, + 0x40, 0x3e, 0x69, 0x41, 0xcf, 0x59, 0xaf, 0x99, 0x91, 0x7b, 0x4d, 0x5a, 0xc6, 0x08, 0x9f, 0xeb, + 0x28, 0xc3, 0x83, 0x1f, 0x81, 0xc5, 0xed, 0x4e, 0xd3, 0x25, 0xb8, 0x99, 0x8a, 0x6b, 0x86, 0x09, + 0xde, 0xec, 0xf7, 0x34, 0x8d, 0x0b, 0x76, 0x39, 0xcc, 0xc8, 0xc6, 0x37, 0x5c, 0x01, 0xbe, 0x01, + 0x00, 0x0a, 0xba, 0x7e, 0xd3, 0xf6, 0xf6, 0x3d, 0xa2, 0x2e, 0x2e, 0x2b, 0x2b, 0x13, 0x85, 0x8b, + 0xfd, 0x9e, 0x06, 0xb9, 0x5e, 0x48, 0x7d, 0x46, 0x9b, 0x3a, 0x75, 0x24, 0x21, 0xe1, 0x07, 0x60, + 0xc6, 0x3a, 0xf0, 0x48, 0xc5, 0xa7, 0x8d, 0xb1, 0x1b, 0x62, 0xf5, 0x62, 0xa6, 0x91, 0x1c, 0x78, + 0xc4, 0x08, 0x7c, 0xa3, 0xc5, 0x01, 0xb4, 0x91, 0xc8, 0x04, 0xb8, 0x01, 0xf2, 0xc5, 0xc0, 0x8f, + 0xbc, 0x88, 0x85, 0x52, 0xdc, 0xc3, 0x8d, 0x67, 0xea, 0xa5, 0x74, 0x53, 0x6b, 0x0c, 0x10, 0x46, + 0x83, 0x42, 0x74, 0x94, 0x61, 0xc1, 0xb7, 0xc1, 0x94, 0xe5, 0xbb, 0x3b, 0x6d, 0x5c, 0xed, 0x84, + 0x41, 0x4b, 0x55, 0x99, 0xc8, 0xa5, 0x7e, 0x4f, 0x5b, 0x10, 0x91, 0x30, 0xa7, 0xd1, 0xa1, 0x5e, + 0xda, 0x59, 0x07, 0x58, 0x5a, 0x6a, 0x11, 0x0f, 0xcb, 0xcb, 0x56, 0xa4, 0x6a, 0xe9, 0x52, 0x8b, + 0xf8, 0x45, 0x4a, 0x59, 0xa9, 0x93, 0x14, 0x58, 0x38, 0x12, 0xa9, 0xed, 0x75, 0x5b, 0xad, 0x36, + 0x56, 0x97, 0xd3, 0xc9, 0x88, 0x45, 0x22, 0x0e, 0x18, 0x68, 0x08, 0x06, 0x7c, 0x17, 0x4c, 0x0b, + 0x4b, 0xd1, 0x8d, 0x70, 0xa4, 0xde, 0xa0, 0xf3, 0xae, 0xfc, 0xe1, 0xc5, 0x0a, 0x0d, 0xea, 0xd6, + 0x51, 0x02, 0x0d, 0x37, 0xa5, 0xc9, 0xa6, 0x18, 0xec, 0xef, 0xbb, 0x7e, 0x33, 0x52, 0x75, 0x26, + 0x71, 0xbd, 0xdf, 0xd3, 0x2e, 0xa7, 0x27, 0x9b, 0x86, 0xc0, 0xc8, 0x83, 0x4d, 0xcc, 0xa3, 0x39, + 0x41, 0x5d, 0xdf, 0xc7, 0xe1, 0xd1, 0x70, 0x76, 0x3b, 0xdd, 0x15, 0x43, 0xe6, 0x97, 0xc7, 0xb3, + 0x14, 0x05, 0x96, 0x40, 0xde, 0x3a, 0x20, 0x38, 0xf4, 0xdd, 0xf6, 0x91, 0xcc, 0x2a, 0x93, 0x91, + 0x02, 0xc2, 0x02, 0x21, 0x0b, 0x65, 0x68, 0xb4, 0xbc, 0x35, 0x12, 0xe2, 0x28, 0x72, 0x0e, 0x3b, + 0x38, 0x52, 0x31, 0x5b, 0x96, 0x54, 0xde, 0x88, 0x39, 0x0d, 0x42, 0xbd, 0x3a, 0x92, 0xb1, 0x74, + 0x97, 0xf2, 0xc7, 0x4d, 0x7c, 0xc8, 0x26, 0xf9, 0x16, 0xdb, 0xe0, 0x52, 0x61, 0x04, 0x99, 0x9e, + 0xd7, 0x91, 0xf7, 0x29, 0xdd, 0xa5, 0x09, 0x02, 0x1d, 0x77, 0x12, 0x06, 0xdb, 0x0d, 0x77, 0xb1, + 0xba, 0xcb, 0x64, 0x96, 0xfb, 0x3d, 0xed, 0xda, 0x50, 0x19, 0xa3, 0x4d, 0x61, 0x3a, 0x1a, 0xc2, + 0x85, 0x4f, 0xc0, 0x85, 0x81, 0xb5, 0xdb, 0x6a, 0x79, 0x07, 0xc8, 0xf5, 0x77, 0xb1, 0xba, 0xc7, + 0x34, 0xf5, 0x7e, 0x4f, 0x5b, 0xca, 0x6a, 0x32, 0x9c, 0x11, 0x52, 0xa0, 0x8e, 0x86, 0xf2, 0xe1, + 0xff, 0x83, 0x4b, 0xc3, 0xec, 0xce, 0x81, 0xaf, 0x7a, 0x4c, 0xfa, 0xe5, 0x7e, 0x4f, 0xd3, 0x8f, + 0x95, 0x36, 0xc8, 0x81, 0xaf, 0xa3, 0x51, 0x32, 0x74, 0x0c, 0x3d, 0x72, 0x39, 0x07, 0x7e, 0xa5, + 0x13, 0xa9, 0xdf, 0x61, 0xca, 0x52, 0x49, 0x25, 0x65, 0x72, 0xe0, 0x1b, 0x41, 0x27, 0xd2, 0x51, + 0x9a, 0x35, 0x28, 0x0b, 0x9f, 0x0e, 0x22, 0x3e, 0xcd, 0x4e, 0xc8, 0x1d, 0x5c, 0xe8, 0xf0, 0xb9, + 0x22, 0x3a, 0x2a, 0x8b, 0x20, 0xc0, 0xd7, 0xc1, 0x24, 0x37, 0x3c, 0xae, 0xd6, 0xf8, 0x10, 0x3b, + 0x21, 0x5f, 0x00, 0x04, 0xfb, 0x63, 0xfa, 0xf6, 0x01, 0x50, 0xff, 0x76, 0x86, 0x8f, 0x9a, 0xb4, + 0x0d, 0x0c, 0xee, 0x9e, 0x72, 0x1b, 0xf0, 0xdd, 0x7d, 0xac, 0x23, 0xe6, 0x94, 0x1b, 0xd1, 0xd8, + 0x29, 0x1a, 0xd1, 0x2a, 0x38, 0xfb, 0xd4, 0xb4, 0x29, 0x3a, 0x97, 0xee, 0x43, 0x9f, 0xb8, 0x6d, + 0x0e, 0x16, 0x08, 0x58, 0x01, 0x0b, 0x1b, 0xd8, 0x0d, 0xc9, 0x0e, 0x76, 0x49, 0xc9, 0x27, 0x38, + 0x7c, 0xee, 0xb6, 0x45, 0x9b, 0xc9, 0xc9, 0xd9, 0xdc, 0x8b, 0x41, 0x86, 0x27, 0x50, 0x3a, 0x1a, + 0xc6, 0x84, 0x25, 0x30, 0x6f, 0xb5, 0x71, 0x83, 0xde, 0xde, 0x1d, 0x6f, 0x1f, 0x07, 0x5d, 0xb2, + 0x15, 0xb1, 0x76, 0x93, 0x93, 0x3f, 0x5b, 0x2c, 0x20, 0x06, 0xe1, 0x18, 0x1d, 0x65, 0x59, 0xf4, + 0xcb, 0xb5, 0xd9, 0xf1, 0x2a, 0xdd, 0xbe, 0x17, 0xd3, 0x47, 0x49, 0x9b, 0x21, 0xe2, 0xf9, 0xbe, + 0x1b, 0xb6, 0x23, 0x1d, 0x65, 0x68, 0x10, 0x81, 0x05, 0xb3, 0xf9, 0x1c, 0x87, 0xc4, 0x8b, 0xb0, + 0xa4, 0x76, 0x91, 0xa9, 0x49, 0x5f, 0x8f, 0x1b, 0x83, 0x92, 0x82, 0xc3, 0xc8, 0xf0, 0xed, 0x78, + 0x56, 0x36, 0xbb, 0x24, 0x70, 0xec, 0x9a, 0xe8, 0x19, 0x52, 0x6d, 0xdc, 0x2e, 0x09, 0x0c, 0x42, + 0x05, 0x92, 0x48, 0x7a, 0xb0, 0x0d, 0x66, 0x77, 0xb3, 0x4b, 0xf6, 0x44, 0xab, 0x18, 0x31, 0xee, + 0xbb, 0xdd, 0xd4, 0xb8, 0x4f, 0x29, 0xf0, 0x5d, 0x59, 0x64, 0xdd, 0x6b, 0x63, 0xf5, 0x32, 0x2b, + 0xf7, 0x85, 0x7e, 0x4f, 0xcb, 0x0b, 0x11, 0xca, 0x6e, 0x79, 0xec, 0x98, 0x4f, 0x62, 0x07, 0xd1, + 0x6f, 0xe2, 0x43, 0x46, 0xbe, 0x92, 0xde, 0x59, 0xf4, 0xcb, 0xe1, 0xdc, 0x24, 0x12, 0xda, 0x99, + 0x59, 0x9c, 0x09, 0x5c, 0x4d, 0xdf, 0x14, 0xa4, 0x39, 0x8f, 0xeb, 0x0c, 0xa3, 0xd1, 0x5c, 0xf0, + 0x72, 0xd1, 0x21, 0x90, 0x55, 0x45, 0x63, 0x55, 0x91, 0x72, 0x21, 0x6a, 0xcc, 0x86, 0x47, 0x5e, + 0x90, 0x14, 0x05, 0x3a, 0x60, 0xfe, 0xa8, 0x44, 0x47, 0x3a, 0xcb, 0x4c, 0x47, 0x3a, 0x6c, 0x3c, + 0xdf, 0x23, 0x9e, 0xdb, 0x36, 0x06, 0x55, 0x96, 0x24, 0xb3, 0x02, 0xf4, 0xa6, 0x4c, 0xff, 0x8e, + 0xeb, 0x7b, 0x83, 0xd5, 0x28, 0x3d, 0x60, 0x0f, 0x8a, 0x2c, 0x83, 0xe9, 0x71, 0xcd, 0x46, 0xfd, + 0x64, 0x99, 0x75, 0x26, 0x21, 0x6d, 0x38, 0x7e, 0x3f, 0xc8, 0xd4, 0x7a, 0x08, 0x97, 0x8e, 0xc4, + 0xf1, 0xe5, 0x81, 0xe5, 0xfb, 0xe6, 0xe8, 0xbb, 0x06, 0x4f, 0x77, 0x02, 0x1e, 0x2f, 0x26, 0x2e, + 0xf7, 0x4b, 0x23, 0x6f, 0x0b, 0x9c, 0x2c, 0x83, 0xe1, 0x56, 0x6a, 0xba, 0x67, 0x0a, 0xb7, 0x4e, + 0x1a, 0xee, 0xb9, 0x50, 0x96, 0x49, 0xc7, 0x94, 0x12, 0x2f, 0x45, 0xb1, 0xdd, 0x65, 0xff, 0xb6, + 0xbb, 0x9d, 0xde, 0x3b, 0x71, 0xa9, 0x1a, 0x1c, 0xa0, 0xa3, 0x14, 0x83, 0x7e, 0xd1, 0x49, 0x4b, + 0x8d, 0xb8, 0x04, 0x8b, 0xce, 0x2e, 0x25, 0x38, 0x25, 0x64, 0x44, 0x14, 0xa6, 0xa3, 0x61, 0xe4, + 0xac, 0xa6, 0x13, 0x3c, 0xc3, 0xbe, 0xfa, 0xca, 0x49, 0x9a, 0x84, 0xc2, 0x32, 0x9a, 0x8c, 0x0c, + 0x1f, 0x82, 0x99, 0xf8, 0x7e, 0x51, 0x0c, 0xba, 0x3e, 0x51, 0xef, 0xb3, 0xb3, 0x50, 0x6e, 0x30, + 0xf1, 0x45, 0xa6, 0x41, 0xfd, 0xb4, 0xc1, 0xc8, 0x78, 0x68, 0x83, 0xf9, 0xc7, 0xdd, 0x80, 0xb8, + 0x05, 0xb7, 0xf1, 0x0c, 0xfb, 0xcd, 0xc2, 0x21, 0xc1, 0x91, 0xfa, 0x3a, 0x13, 0x91, 0xe6, 0xf7, + 0x8f, 0x29, 0xc4, 0xd8, 0xe1, 0x18, 0x63, 0x87, 0x82, 0x74, 0x94, 0x25, 0xd2, 0x56, 0x52, 0x0d, + 0xf1, 0x93, 0x80, 0x60, 0xf5, 0x61, 0xfa, 0xb8, 0xea, 0x84, 0xd8, 0x78, 0x1e, 0xd0, 0xec, 0xc4, + 0x18, 0x39, 0x23, 0x41, 0x18, 0x76, 0x3b, 0x84, 0x4f, 0xc7, 0x1f, 0xa4, 0xb7, 0xf1, 0x51, 0x46, + 0x38, 0x2a, 0x9e, 0x90, 0x87, 0x91, 0x57, 0xff, 0x32, 0x26, 0xfd, 0x13, 0x18, 0xce, 0x81, 0xa9, + 0x72, 0xc5, 0xa9, 0xd7, 0x1c, 0x13, 0x39, 0xd6, 0x5a, 0xfe, 0x0c, 0xbc, 0x08, 0x60, 0xa9, 0x5c, + 0x72, 0x4a, 0xa6, 0xcd, 0x8d, 0x75, 0xcb, 0x29, 0xae, 0xe5, 0x01, 0xcc, 0x83, 0x69, 0x64, 0x49, + 0x96, 0x29, 0x6a, 0xa9, 0x95, 0x1e, 0x39, 0x16, 0xda, 0xe2, 0x96, 0x0b, 0x70, 0x19, 0x5c, 0xab, + 0x95, 0x1e, 0x3d, 0xde, 0x2e, 0x71, 0x4c, 0xdd, 0x2c, 0xaf, 0xd5, 0x91, 0xb5, 0x55, 0x79, 0x62, + 0xd5, 0xd7, 0x4c, 0xc7, 0xcc, 0x2f, 0x42, 0x08, 0x66, 0xd7, 0x2d, 0xa7, 0xb8, 0x51, 0xaf, 0x95, + 0xcd, 0x6a, 0x6d, 0xa3, 0xe2, 0xe4, 0x97, 0xe0, 0x0d, 0x70, 0x3d, 0xc3, 0x32, 0x51, 0x71, 0xa3, + 0x14, 0xd3, 0x56, 0xe0, 0x5d, 0xf0, 0xca, 0x71, 0xc2, 0xec, 0xb9, 0xe6, 0x54, 0xaa, 0x75, 0xf3, + 0x91, 0x55, 0x76, 0xf2, 0xb7, 0xe1, 0x75, 0x70, 0xb9, 0x60, 0x9b, 0xc5, 0xcd, 0x8d, 0x8a, 0x6d, + 0xd5, 0xab, 0x96, 0x85, 0xea, 0xd5, 0x0a, 0x72, 0xea, 0xce, 0x87, 0x75, 0xf4, 0x61, 0xbe, 0x09, + 0x35, 0x70, 0x75, 0xbb, 0x3c, 0x1a, 0x80, 0xe1, 0x15, 0xb0, 0xb8, 0x66, 0xd9, 0xe6, 0x47, 0x19, + 0xd7, 0x0b, 0x05, 0x5e, 0x03, 0x97, 0xb6, 0xcb, 0xc3, 0xbd, 0x9f, 0x2b, 0xab, 0xdf, 0x00, 0x30, + 0x25, 0x8d, 0xe4, 0x50, 0x05, 0x17, 0xe2, 0x2c, 0x55, 0xca, 0x56, 0x7d, 0xbd, 0x62, 0xdb, 0x95, + 0xa7, 0x16, 0xca, 0x9f, 0x11, 0x8b, 0xca, 0x78, 0xea, 0xdb, 0x65, 0xa7, 0x64, 0xd7, 0x1d, 0x54, + 0x7a, 0xf4, 0xc8, 0x42, 0x83, 0x44, 0x29, 0x34, 0x79, 0x31, 0xc1, 0xb6, 0xcc, 0x35, 0x0b, 0xe5, + 0xc7, 0xe0, 0x6d, 0x70, 0x2b, 0x69, 0x1b, 0x45, 0xcf, 0xc9, 0xf4, 0xc7, 0xdb, 0x15, 0xb4, 0xbd, + 0x95, 0x1f, 0xa7, 0xe5, 0x8f, 0x6d, 0xa6, 0x6d, 0xe7, 0x27, 0xe0, 0x4d, 0xa0, 0xc5, 0x99, 0x96, + 0x92, 0x9c, 0x88, 0x1c, 0xc0, 0x07, 0xe0, 0x8d, 0x13, 0x40, 0xa3, 0xa2, 0x98, 0xa2, 0x95, 0x19, + 0xc2, 0x15, 0xeb, 0x99, 0x86, 0xaf, 0x83, 0xd7, 0x46, 0xba, 0x47, 0x89, 0xce, 0xc0, 0x75, 0x50, + 0x18, 0xc2, 0xe2, 0xab, 0x14, 0x96, 0x9a, 0x53, 0x41, 0x47, 0x42, 0x31, 0xb5, 0xbe, 0x8e, 0x2a, + 0x5b, 0xf5, 0x5a, 0x11, 0x99, 0x4e, 0x71, 0x23, 0x3f, 0x0b, 0x57, 0xc1, 0xcb, 0x23, 0x77, 0x45, + 0x32, 0x09, 0x4d, 0x68, 0x82, 0xf7, 0x4e, 0x87, 0x1d, 0x15, 0x36, 0x86, 0x2f, 0x81, 0xe5, 0xd1, + 0x12, 0x22, 0x25, 0x2d, 0xf8, 0x0e, 0x78, 0xf3, 0x24, 0xd4, 0xa8, 0x57, 0xec, 0x1e, 0xff, 0x0a, + 0xb1, 0x0d, 0xf6, 0xe8, 0x27, 0x38, 0x1a, 0x45, 0x37, 0x86, 0x07, 0xff, 0x07, 0xe8, 0x43, 0xf7, + 0x7c, 0x32, 0x2d, 0x2f, 0x14, 0x78, 0x07, 0xdc, 0x46, 0x66, 0x79, 0xad, 0xb2, 0x55, 0x3f, 0x05, + 0xfe, 0x73, 0x05, 0xbe, 0x0f, 0xde, 0x3e, 0x19, 0x38, 0x6a, 0x81, 0x5f, 0x28, 0xd0, 0x02, 0x1f, + 0x9c, 0xfa, 0x7d, 0xa3, 0x64, 0x7e, 0xa5, 0xc0, 0x1b, 0xe0, 0xda, 0x70, 0xbe, 0xa8, 0xc3, 0xaf, + 0x15, 0xb8, 0x02, 0x6e, 0x1e, 0xfb, 0x26, 0x81, 0xfc, 0x8d, 0x02, 0xdf, 0x02, 0xf7, 0x8f, 0x83, + 0x8c, 0x0a, 0xe3, 0xb7, 0x0a, 0x7c, 0x08, 0x1e, 0x9c, 0xe2, 0x1d, 0xa3, 0x04, 0x7e, 0x77, 0xcc, + 0x3a, 0x44, 0xb1, 0xbf, 0x3c, 0x79, 0x1d, 0x02, 0xf9, 0x7b, 0x05, 0x2e, 0x81, 0xcb, 0xc3, 0x21, + 0x74, 0x4f, 0xfc, 0x41, 0x81, 0xb7, 0xc0, 0xf2, 0xb1, 0x4a, 0x14, 0xf6, 0x47, 0x05, 0xaa, 0x60, + 0xa1, 0x5c, 0xa9, 0xaf, 0x9b, 0x25, 0xbb, 0xfe, 0xb4, 0xe4, 0x6c, 0xd4, 0x6b, 0x0e, 0xb2, 0x6a, + 0xb5, 0xfc, 0x2f, 0xc6, 0x68, 0x28, 0x09, 0x4f, 0xb9, 0x22, 0x9c, 0xf5, 0xf5, 0x0a, 0xaa, 0xdb, + 0xa5, 0x27, 0x56, 0x99, 0x22, 0x3f, 0x1b, 0x83, 0x73, 0x00, 0x50, 0x58, 0xb5, 0x52, 0x2a, 0x3b, + 0xb5, 0xfc, 0xf7, 0x72, 0x70, 0x06, 0x9c, 0xb7, 0x3e, 0x74, 0x2c, 0x54, 0x36, 0xed, 0xfc, 0x3f, + 0x72, 0xab, 0x01, 0x00, 0x83, 0x0b, 0x3f, 0x3c, 0x0b, 0xc6, 0x36, 0x9f, 0xe4, 0xcf, 0xc0, 0x49, + 0x30, 0x61, 0x5b, 0x66, 0xcd, 0xca, 0x2b, 0x70, 0x01, 0xcc, 0x59, 0xb6, 0x55, 0x74, 0x4a, 0x95, + 0x72, 0x1d, 0x6d, 0x97, 0xcb, 0xec, 0xf8, 0xcc, 0x83, 0xe9, 0xa7, 0xf4, 0xdb, 0x8f, 0x2d, 0x39, + 0xb8, 0x08, 0xe6, 0xed, 0x4a, 0x71, 0xb3, 0x8e, 0xcc, 0xa2, 0x85, 0x62, 0xf3, 0x38, 0x05, 0x32, + 0xa1, 0xd8, 0x32, 0x71, 0xef, 0x21, 0x98, 0x74, 0x42, 0xd7, 0x8f, 0x3a, 0x41, 0x48, 0xe0, 0x3d, + 0xf9, 0x61, 0x56, 0xfc, 0x9b, 0x53, 0xfc, 0xea, 0x7a, 0x65, 0xee, 0xe8, 0x99, 0xff, 0x20, 0xa7, + 0x9f, 0x59, 0x51, 0x5e, 0x53, 0x0a, 0x17, 0x5e, 0xfc, 0x6d, 0xe9, 0xcc, 0x8b, 0xaf, 0x96, 0x94, + 0x2f, 0xbf, 0x5a, 0x52, 0xfe, 0xfa, 0xd5, 0x92, 0xf2, 0xb3, 0xaf, 0x97, 0xce, 0xec, 0x9c, 0x65, + 0xbf, 0xda, 0xde, 0xff, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x20, 0xc3, 0x75, 0x0f, 0xfe, 0x1d, + 0x00, 0x00, } diff --git a/functional/rpcpb/rpc.proto b/functional/rpcpb/rpc.proto index 44e287bcc..e726273d8 100644 --- a/functional/rpcpb/rpc.proto +++ b/functional/rpcpb/rpc.proto @@ -16,11 +16,28 @@ message Request { Tester Tester = 3; } +// SnapshotInfo contains FETCH_SNAPSHOT request results. +message SnapshotInfo { + string MemberName = 1; + repeated string MemberClientURLs = 2; + string SnapshotPath = 3; + string SnapshotFileSize = 4; + string SnapshotTotalSize = 5; + int64 SnapshotTotalKey = 6; + int64 SnapshotHash = 7; + int64 SnapshotRevision = 8; + string Took = 9; +} + message Response { bool Success = 1; string Status = 2; + // Member contains the same Member object from tester request. Member Member = 3; + + // SnapshotInfo contains FETCH_SNAPSHOT request results. + SnapshotInfo SnapshotInfo = 4; } service Transport { @@ -76,6 +93,8 @@ message Member { // SnapshotPath is the snapshot file path to store or restore from. string SnapshotPath = 601 [(gogoproto.moretags) = "yaml:\"snapshot-path\""]; + // SnapshotInfo contains last FETCH_SNAPSHOT request results. + SnapshotInfo SnapshotInfo = 602; } message Tester {