Commit f4596d49 authored by pengjun's avatar pengjun

#627 update collateralize query

parent e7afa5bc
......@@ -100,10 +100,11 @@ func (c *Collateralize) deleteCollateralizeStatus(status int32, index int64) (kv
return kvs
}
func (c *Collateralize) addCollateralizeAddr(addr string, collateralizeId string, index int64) (kvs []*types.KeyValue) {
func (c *Collateralize) addCollateralizeAddr(addr string, collateralizeId string, status int32, index int64) (kvs []*types.KeyValue) {
key := calcCollateralizeAddrKey(addr, index)
record := &pty.CollateralizeRecord{
CollateralizeId:collateralizeId,
Status:status,
Index: index,
}
kv := &types.KeyValue{Key: key, Value: types.Encode(record)}
......
......@@ -1159,7 +1159,7 @@ func queryCollateralizeByStatus(localdb dbm.Lister, status int32, index int64) (
return ids, nil
}
func queryCollateralizeByAddr(localdb dbm.Lister, addr string, index int64) ([]string, error) {
func queryCollateralizeByAddr(localdb dbm.Lister, addr string, status int32, index int64) ([]string, error) {
var data [][]byte
var err error
if index != 0 {
......@@ -1180,7 +1180,9 @@ func queryCollateralizeByAddr(localdb dbm.Lister, addr string, index int64) ([]s
clog.Debug("queryCollateralizesByAddr", "decode", err)
return nil, err
}
ids = append(ids, coll.CollateralizeId)
if status ==0 || coll.Status == status {
ids = append(ids, coll.CollateralizeId)
}
}
return ids, nil
......
......@@ -34,35 +34,35 @@ func (c *Collateralize) execDelLocal(tx *types.Transaction, receiptData *types.R
set.KV = append(set.KV, c.addCollateralizeRecordStatus(collateralizeLog.PreStatus, collateralizeLog.CollateralizeId,
collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.deleteCollateralizeRecordStatus(collateralizeLog.Status, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.CollateralizeId,
collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.deleteCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.Index)...)
//set.KV = append(set.KV, c.addCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.CollateralizeId,
// collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
//set.KV = append(set.KV, c.deleteCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.Index)...)
}
break
case pty.TyLogCollateralizeRepay:
set.KV = append(set.KV, c.addCollateralizeRecordStatus(collateralizeLog.PreStatus, collateralizeLog.CollateralizeId,
collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.deleteCollateralizeRecordStatus(collateralizeLog.Status, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.CollateralizeId,
collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
//set.KV = append(set.KV, c.addCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.CollateralizeId,
// collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
break
case pty.TyLogCollateralizeFeed:
set.KV = append(set.KV, c.addCollateralizeRecordStatus(collateralizeLog.Status, collateralizeLog.CollateralizeId,
collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.deleteCollateralizeRecordStatus(collateralizeLog.Status, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.CollateralizeId,
collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
// 如果没有被清算,需要把地址索引更新
if collateralizeLog.Status == pty.CollateralizeUserStatusWarning || collateralizeLog.Status == pty.CollateralizeUserStatusExpire {
set.KV = append(set.KV, c.deleteCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.Index)...)
}
//set.KV = append(set.KV, c.addCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.CollateralizeId,
// collateralizeLog.RecordId, collateralizeLog.PreIndex)...)
//// 如果没有被清算,需要把地址索引更新
//if collateralizeLog.Status == pty.CollateralizeUserStatusWarning || collateralizeLog.Status == pty.CollateralizeUserStatusExpire {
// set.KV = append(set.KV, c.deleteCollateralizeRecordAddr(collateralizeLog.AccountAddr, collateralizeLog.Index)...)
//}
break
case pty.TyLogCollateralizeClose:
set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.Status, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeStatus(pty.CollateralizeStatusCreated, collateralizeLog.CollateralizeId,
collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId,
collateralizeLog.PreIndex)...)
//set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId,
// collateralizeLog.PreStatus, collateralizeLog.PreIndex)...)
break
}
}
......
......@@ -24,7 +24,7 @@ func (c *Collateralize) execLocal(tx *types.Transaction, receipt *types.ReceiptD
switch item.Ty {
case pty.TyLogCollateralizeCreate:
set.KV = append(set.KV, c.addCollateralizeStatus(collateralizeLog.Status, collateralizeLog.CollateralizeId, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId, collateralizeLog.Status, collateralizeLog.Index)...)
break
case pty.TyLogCollateralizeBorrow:
set.KV = append(set.KV, c.addCollateralizeRecordStatus(collateralizeLog.Status, collateralizeLog.CollateralizeId,
......
......@@ -70,7 +70,7 @@ func (c *Collateralize) Query_CollateralizeByStatus(req *pty.ReqCollateralizeByS
func (c *Collateralize) Query_CollateralizeByAddr(req *pty.ReqCollateralizeByAddr) (types.Message, error) {
ids := &pty.RepCollateralizeIDs{}
collIDRecords, err := queryCollateralizeByAddr(c.GetLocalDB(), req.Addr, req.Index)
collIDRecords, err := queryCollateralizeByAddr(c.GetLocalDB(), req.Addr, req.Status, req.Index)
if err != nil {
clog.Error("Query_CollateralizeByAddr", "get collateralize record error", err)
return nil, err
......
......@@ -127,7 +127,8 @@ message CollateralizeRecord {
string collateralizeId = 1;
string addr = 2;
string recordId = 3;
int64 index = 4;
int32 status = 4;
int64 index = 5;
}
// exec_local 放贷记录信息列表
......@@ -173,7 +174,8 @@ message ReqCollateralizeByStatus {
// 根据用户地址查询
message ReqCollateralizeByAddr {
string addr = 1;
int64 index = 2;
int32 status = 2;
int64 index = 3;
}
// 返回放贷ID列表
......
......@@ -1059,7 +1059,8 @@ type CollateralizeRecord struct {
CollateralizeId string `protobuf:"bytes,1,opt,name=collateralizeId,proto3" json:"collateralizeId,omitempty"`
Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
RecordId string `protobuf:"bytes,3,opt,name=recordId,proto3" json:"recordId,omitempty"`
Index int64 `protobuf:"varint,4,opt,name=index,proto3" json:"index,omitempty"`
Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
Index int64 `protobuf:"varint,5,opt,name=index,proto3" json:"index,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
......@@ -1111,6 +1112,13 @@ func (m *CollateralizeRecord) GetRecordId() string {
return ""
}
func (m *CollateralizeRecord) GetStatus() int32 {
if m != nil {
return m.Status
}
return 0
}
func (m *CollateralizeRecord) GetIndex() int64 {
if m != nil {
return m.Index
......@@ -1441,7 +1449,8 @@ func (m *ReqCollateralizeByStatus) GetIndex() int64 {
// 根据用户地址查询
type ReqCollateralizeByAddr struct {
Addr string `protobuf:"bytes,1,opt,name=addr,proto3" json:"addr,omitempty"`
Index int64 `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
Index int64 `protobuf:"varint,3,opt,name=index,proto3" json:"index,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
......@@ -1479,6 +1488,13 @@ func (m *ReqCollateralizeByAddr) GetAddr() string {
return ""
}
func (m *ReqCollateralizeByAddr) GetStatus() int32 {
if m != nil {
return m.Status
}
return 0
}
func (m *ReqCollateralizeByAddr) GetIndex() int64 {
if m != nil {
return m.Index
......@@ -1896,82 +1912,83 @@ func init() {
func init() { proto.RegisterFile("collateralize.proto", fileDescriptor_a988fb4a61381972) }
var fileDescriptor_a988fb4a61381972 = []byte{
// 1227 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0x5b, 0x6b, 0xdc, 0x46,
0x14, 0x8e, 0xa4, 0xbd, 0x78, 0xcf, 0xda, 0x8e, 0x33, 0x76, 0x5d, 0xd5, 0x35, 0x66, 0x11, 0x85,
0x2e, 0xbd, 0x18, 0xea, 0x84, 0xd2, 0x50, 0x28, 0xb5, 0x37, 0x09, 0x5e, 0x48, 0x21, 0xa8, 0x69,
0x29, 0x85, 0x16, 0xb4, 0xd2, 0xd8, 0x15, 0xc8, 0x92, 0x2c, 0xcd, 0xba, 0xde, 0xbe, 0x37, 0x0f,
0xfd, 0x0d, 0xf9, 0x71, 0xfd, 0x0f, 0x79, 0xe8, 0x6b, 0x99, 0x33, 0xa3, 0xcb, 0x8c, 0x24, 0x63,
0xb7, 0x79, 0xca, 0x8b, 0xd1, 0x9c, 0xf9, 0xce, 0xcc, 0x99, 0x73, 0xbe, 0x73, 0xf1, 0xc2, 0xb6,
0x9f, 0x44, 0x91, 0xc7, 0x68, 0xe6, 0x45, 0xe1, 0x1f, 0xf4, 0x30, 0xcd, 0x12, 0x96, 0x90, 0x3e,
0x5b, 0xa5, 0x34, 0x77, 0xde, 0xf4, 0x60, 0x63, 0x56, 0xdf, 0x26, 0x53, 0xb8, 0xaf, 0xe0, 0xe7,
0x81, 0x6d, 0x4c, 0x8c, 0xe9, 0xc8, 0xd5, 0xc5, 0xc4, 0x81, 0x75, 0x96, 0x30, 0x2f, 0x3a, 0xf1,
0x22, 0x2f, 0xf6, 0xa9, 0x6d, 0x4e, 0x8c, 0xa9, 0xe5, 0x2a, 0x32, 0x32, 0x81, 0x71, 0x40, 0x17,
0x6c, 0x46, 0xc3, 0x28, 0x8c, 0xcf, 0x6d, 0x0b, 0x21, 0x75, 0x11, 0xf9, 0x04, 0xb6, 0xa2, 0xf0,
0x72, 0x19, 0x06, 0x1e, 0x0b, 0x93, 0xd8, 0xe5, 0x7f, 0xed, 0xde, 0xc4, 0x98, 0x9a, 0x6e, 0x43,
0x4e, 0x3e, 0x83, 0x07, 0x39, 0xf3, 0x16, 0x61, 0x14, 0xb2, 0xd5, 0x33, 0x4a, 0x05, 0xb8, 0x8f,
0xe0, 0xe6, 0x06, 0x39, 0x00, 0xf0, 0x33, 0xea, 0x31, 0x7a, 0x1c, 0x04, 0x99, 0x3d, 0xc0, 0x47,
0xd4, 0x24, 0xc4, 0x86, 0xe1, 0x42, 0x9a, 0x3e, 0x44, 0xbb, 0x8a, 0x25, 0x79, 0x0c, 0x1b, 0x8b,
0x24, 0xcb, 0x92, 0xdf, 0x5d, 0xea, 0x27, 0x59, 0x90, 0xdb, 0x6b, 0x13, 0x6b, 0x3a, 0x3e, 0xda,
0x3e, 0x44, 0xa7, 0x1d, 0x9e, 0xd4, 0xf6, 0x5c, 0x15, 0x49, 0xbe, 0x86, 0xcd, 0x79, 0x7c, 0xe5,
0x45, 0x61, 0x50, 0xe8, 0x8e, 0xba, 0x75, 0x35, 0x28, 0xd9, 0x85, 0x41, 0xce, 0x3c, 0xb6, 0xcc,
0x6d, 0x98, 0x18, 0xd3, 0xbe, 0x2b, 0x57, 0xe4, 0x4b, 0xd8, 0xe5, 0x9e, 0xcf, 0xd9, 0xf3, 0xca,
0x23, 0x2f, 0xb2, 0xd0, 0xa7, 0xf6, 0x18, 0x1f, 0xdf, 0xb1, 0xcb, 0xcf, 0x4b, 0x69, 0x16, 0x26,
0x81, 0xbd, 0x8e, 0x0f, 0x94, 0x2b, 0xf4, 0x39, 0x6a, 0x3c, 0xbd, 0x4e, 0xc3, 0x8c, 0xbe, 0x0c,
0x2f, 0xa8, 0xbd, 0x81, 0x88, 0x86, 0x9c, 0xec, 0x40, 0x3f, 0x8c, 0x03, 0x7a, 0x6d, 0x6f, 0x22,
0x40, 0x2c, 0xc8, 0x1e, 0xac, 0xa5, 0x19, 0x9d, 0xe3, 0xc6, 0x7d, 0xdc, 0x28, 0xd7, 0x3c, 0xe6,
0x9c, 0x2a, 0x05, 0x2d, 0xb6, 0x44, 0xcc, 0x6b, 0x22, 0xe7, 0x6f, 0x0b, 0xd6, 0xeb, 0x8e, 0xe0,
0x2a, 0x9e, 0xef, 0x27, 0xcb, 0x98, 0x61, 0xac, 0x04, 0xe1, 0xea, 0x22, 0xb2, 0x0f, 0xa3, 0x9c,
0x79, 0x19, 0x43, 0x5b, 0x05, 0xd3, 0x2a, 0x81, 0x4a, 0xda, 0x1f, 0xbd, 0x68, 0x49, 0x25, 0xd5,
0x74, 0xb1, 0x8a, 0x14, 0x3e, 0x14, 0x6c, 0xd3, 0xc5, 0xfc, 0x46, 0xce, 0x53, 0x71, 0x5a, 0x5f,
0xdc, 0x58, 0x0a, 0x34, 0xda, 0x8a, 0x83, 0x06, 0x0d, 0xda, 0x96, 0x61, 0x90, 0x61, 0x1d, 0x2a,
0x61, 0xfd, 0x08, 0x36, 0x0a, 0xac, 0x88, 0xc1, 0x1a, 0xde, 0xa2, 0x0a, 0x39, 0x8d, 0x69, 0x15,
0xa6, 0x11, 0x42, 0x6a, 0x12, 0x6e, 0x67, 0x9a, 0xd1, 0xef, 0xeb, 0xbc, 0xa9, 0x04, 0x3c, 0x50,
0x19, 0xfa, 0x78, 0x1e, 0x20, 0x59, 0x46, 0x6e, 0xb9, 0x6e, 0x4b, 0xf5, 0xf5, 0xf6, 0x54, 0x2f,
0x49, 0xb0, 0xd1, 0x45, 0x82, 0x4d, 0x95, 0x04, 0xce, 0x2b, 0x03, 0xb6, 0x8e, 0xf3, 0x9c, 0x32,
0x74, 0x81, 0x0c, 0xf3, 0x01, 0x80, 0xb8, 0x1c, 0x9f, 0x62, 0x88, 0xa7, 0x54, 0x12, 0x7e, 0xe0,
0x82, 0xad, 0x84, 0x33, 0x4d, 0x74, 0x66, 0xb9, 0x16, 0x7b, 0xbe, 0xd8, 0xb3, 0x8a, 0x3d, 0xbf,
0xdc, 0xa3, 0xec, 0xb7, 0x7a, 0x34, 0xcb, 0xb5, 0xf3, 0xda, 0x82, 0x6d, 0xa5, 0xc2, 0x1d, 0xfb,
0x3c, 0x32, 0xe4, 0x11, 0x0c, 0x44, 0x2d, 0x40, 0x3b, 0xc6, 0x47, 0x7b, 0x32, 0x41, 0x15, 0xec,
0x0c, 0x11, 0xa7, 0xf7, 0x5c, 0x89, 0xe5, 0x5a, 0x22, 0xdf, 0xd1, 0xbe, 0x0e, 0x2d, 0x41, 0x6d,
0xae, 0x25, 0xb0, 0xe4, 0x0b, 0xe8, 0x67, 0x34, 0xf5, 0x56, 0x68, 0xf8, 0xf8, 0xe8, 0x83, 0x36,
0x25, 0x97, 0x03, 0x4e, 0xef, 0xb9, 0x02, 0xc9, 0x2f, 0xf2, 0xd2, 0x94, 0xc6, 0x01, 0x3e, 0xa8,
0xe3, 0xa2, 0x63, 0x44, 0xf0, 0x8b, 0x04, 0x96, 0x1c, 0x42, 0xef, 0x8c, 0xd2, 0x00, 0xe9, 0x3a,
0x3e, 0xb2, 0xdb, 0x74, 0x9e, 0x51, 0xca, 0x35, 0x10, 0xc7, 0x0d, 0xf3, 0xa3, 0x24, 0x17, 0xd4,
0xed, 0x30, 0x6c, 0xc6, 0x01, 0xdc, 0x30, 0x44, 0x72, 0xc3, 0x2e, 0xbc, 0xd8, 0x3b, 0x17, 0x45,
0xb3, 0xc3, 0xb0, 0xef, 0x10, 0xc1, 0x0d, 0x13, 0x58, 0xb2, 0x09, 0x26, 0x5b, 0x49, 0x76, 0x9a,
0x6c, 0x75, 0x32, 0x84, 0xfe, 0x15, 0xcf, 0x23, 0xe7, 0x1f, 0x43, 0x0b, 0x8f, 0x50, 0xd5, 0x1b,
0x87, 0x71, 0xbb, 0xc6, 0x61, 0xde, 0xa5, 0x71, 0x58, 0x5d, 0x8d, 0xa3, 0x2a, 0x9b, 0x3d, 0xbd,
0x6c, 0xf2, 0xc4, 0x78, 0x59, 0x6f, 0x7a, 0xa2, 0x30, 0x34, 0xe4, 0x58, 0x04, 0x97, 0x59, 0x46,
0x63, 0x51, 0xb1, 0x06, 0xb2, 0x08, 0x56, 0x22, 0xe7, 0x21, 0x3c, 0x50, 0x83, 0xc9, 0xcb, 0xdc,
0x01, 0x40, 0xbe, 0x4c, 0x69, 0xc6, 0x17, 0xb9, 0x6d, 0x4c, 0x2c, 0xde, 0xb3, 0x2a, 0x89, 0xf3,
0x58, 0xf3, 0x96, 0x20, 0x68, 0xa3, 0x15, 0x1b, 0xcd, 0x56, 0xec, 0xfc, 0xa0, 0xa9, 0x0a, 0x96,
0xde, 0xa1, 0xdf, 0xef, 0xc8, 0x98, 0xc9, 0xf2, 0x2b, 0x03, 0xf8, 0x33, 0x90, 0x26, 0x8f, 0xef,
0x70, 0x6a, 0xbd, 0x40, 0x99, 0x6a, 0x81, 0x72, 0xfe, 0xd4, 0xc9, 0x21, 0x08, 0xff, 0x76, 0x4e,
0xbf, 0x7d, 0xd3, 0x70, 0x7e, 0xd1, 0x42, 0xc5, 0x73, 0x88, 0x1f, 0x8d, 0x51, 0x5f, 0xa5, 0xc2,
0xdf, 0x7d, 0xb7, 0x5c, 0x73, 0x57, 0xa5, 0xb2, 0x8a, 0x59, 0x53, 0xd3, 0x15, 0x0b, 0xce, 0xab,
0xab, 0x24, 0x5a, 0x5e, 0xf0, 0x7b, 0x2c, 0xce, 0x2b, 0xb1, 0x72, 0xbe, 0xd1, 0x5c, 0x88, 0x19,
0x77, 0xfb, 0x47, 0x3a, 0xaf, 0x4c, 0xd8, 0x71, 0xa9, 0x4f, 0xc3, 0x94, 0xfd, 0xd7, 0x59, 0x4e,
0x9d, 0x95, 0xcc, 0xc6, 0xac, 0xa4, 0x35, 0x68, 0xab, 0xd9, 0xa0, 0xeb, 0x9e, 0xee, 0x69, 0x9e,
0xae, 0x1a, 0x60, 0x5f, 0x69, 0x80, 0xfb, 0x30, 0x7a, 0x51, 0xb6, 0xae, 0x81, 0x68, 0x5d, 0xa5,
0xa0, 0x6a, 0x3a, 0xc3, 0xae, 0xa6, 0xb3, 0xa6, 0x35, 0x9d, 0x06, 0x5f, 0x64, 0xdf, 0xb9, 0xbd,
0x1f, 0x08, 0xf4, 0xbc, 0xca, 0x03, 0xf8, 0xad, 0xbc, 0xcc, 0xd2, 0x5e, 0x56, 0xda, 0xd8, 0xab,
0xd9, 0xe8, 0x3c, 0x87, 0x9d, 0x16, 0x33, 0x72, 0xf2, 0x08, 0x86, 0x99, 0x9c, 0x0a, 0x0d, 0x9c,
0x0a, 0xf7, 0xda, 0x3b, 0x01, 0x0e, 0x87, 0x05, 0xd4, 0xf9, 0x96, 0x47, 0xf7, 0x52, 0x81, 0xcc,
0xe3, 0xb3, 0xe4, 0x0e, 0x04, 0x79, 0x63, 0xc2, 0x87, 0x2e, 0x4d, 0x55, 0x92, 0x89, 0x52, 0x84,
0x27, 0x55, 0xf1, 0x31, 0x94, 0xf8, 0xbc, 0xbb, 0x13, 0x7e, 0x55, 0xe2, 0xd7, 0x94, 0x12, 0xdf,
0xe2, 0xd3, 0x51, 0x3b, 0x53, 0xb4, 0x29, 0x17, 0x9a, 0x53, 0xee, 0x0c, 0xde, 0x6b, 0x8b, 0x5b,
0x5e, 0xf4, 0x91, 0xda, 0x69, 0x45, 0xa9, 0x6f, 0xc8, 0x9d, 0x9f, 0x60, 0xff, 0x86, 0xc8, 0xe5,
0xe4, 0x2b, 0x4e, 0xc0, 0xb3, 0xa4, 0x20, 0x94, 0x23, 0x09, 0x75, 0x83, 0x8e, 0x2b, 0x14, 0x9c,
0x53, 0xb0, 0x75, 0xf3, 0x4e, 0x56, 0x32, 0xf5, 0xba, 0x08, 0x51, 0xd2, 0xdd, 0xac, 0xd3, 0xfd,
0x04, 0x76, 0x9b, 0x27, 0x61, 0x00, 0x8a, 0x74, 0x32, 0x6a, 0xe9, 0xd4, 0x7e, 0xc6, 0xc7, 0xb0,
0xad, 0xdb, 0x3c, 0x7f, 0x92, 0x93, 0x2d, 0xb0, 0xe6, 0x4f, 0x0a, 0xef, 0xf0, 0x4f, 0xe7, 0x2f,
0x83, 0x7b, 0xe4, 0xb2, 0x25, 0x63, 0xe4, 0x9d, 0xff, 0x2f, 0xd9, 0xab, 0x97, 0x5b, 0xed, 0x2f,
0x57, 0x12, 0xfd, 0x1a, 0x0e, 0xba, 0x6c, 0x91, 0x9e, 0xbc, 0xbd, 0x35, 0xd5, 0xcd, 0x66, 0xfb,
0xcd, 0x56, 0xfd, 0xe6, 0x53, 0x78, 0x5f, 0xf7, 0x57, 0x51, 0x65, 0x3e, 0xd7, 0xab, 0x4c, 0xeb,
0xff, 0x9e, 0x65, 0x79, 0xf9, 0xb5, 0x19, 0xbd, 0x3b, 0x97, 0xcd, 0x9b, 0x9a, 0xf8, 0x53, 0x7e,
0x7e, 0x9b, 0xa5, 0xe4, 0x53, 0x18, 0x08, 0x94, 0x1c, 0xc1, 0x5b, 0xed, 0x94, 0x10, 0xe7, 0xb5,
0xd9, 0x3c, 0x67, 0x96, 0xc4, 0x67, 0xe1, 0xf9, 0x3b, 0x31, 0x2b, 0xd6, 0x4a, 0xc9, 0xa0, 0x51,
0x4a, 0xf4, 0x69, 0x72, 0xd8, 0x98, 0x26, 0x17, 0x03, 0xfc, 0x59, 0xe7, 0xe1, 0xbf, 0x01, 0x00,
0x00, 0xff, 0xff, 0x5c, 0x29, 0x62, 0x99, 0xed, 0x11, 0x00, 0x00,
// 1234 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0x5d, 0x6b, 0xdc, 0x46,
0x17, 0x8e, 0xa4, 0xd5, 0xae, 0xf7, 0xac, 0xed, 0x38, 0x63, 0xbf, 0x7e, 0x55, 0xd7, 0x98, 0x45,
0x14, 0xba, 0xf4, 0xc3, 0x50, 0x27, 0x94, 0x86, 0x42, 0xa9, 0xbd, 0x49, 0xf0, 0x42, 0x0a, 0x41,
0x4d, 0x4b, 0x09, 0xb4, 0xa0, 0x95, 0xc6, 0xae, 0x40, 0x96, 0x64, 0x69, 0xd6, 0xf5, 0xf6, 0xbe,
0xb9, 0xe8, 0x6f, 0x48, 0xff, 0x5b, 0xff, 0x43, 0x2e, 0x7a, 0x5b, 0xe6, 0xcc, 0xe8, 0x6b, 0x24,
0x99, 0xdd, 0xb6, 0x57, 0xb9, 0x09, 0x3b, 0x67, 0x9e, 0x73, 0x74, 0x3e, 0x9e, 0x39, 0xe7, 0xc4,
0xb0, 0xeb, 0xc5, 0x61, 0xe8, 0x32, 0x9a, 0xba, 0x61, 0xf0, 0x2b, 0x3d, 0x4e, 0xd2, 0x98, 0xc5,
0xc4, 0x64, 0xcb, 0x84, 0x66, 0xf6, 0xdb, 0x1e, 0x6c, 0x4d, 0xab, 0xd7, 0x64, 0x02, 0xf7, 0x6b,
0xf8, 0x99, 0x6f, 0x69, 0x63, 0x6d, 0x32, 0x74, 0x54, 0x31, 0xb1, 0x61, 0x93, 0xc5, 0xcc, 0x0d,
0xcf, 0xdc, 0xd0, 0x8d, 0x3c, 0x6a, 0xe9, 0x63, 0x6d, 0x62, 0x38, 0x35, 0x19, 0x19, 0xc3, 0xc8,
0xa7, 0x73, 0x36, 0xa5, 0x41, 0x18, 0x44, 0x97, 0x96, 0x81, 0x90, 0xaa, 0x88, 0x7c, 0x04, 0x3b,
0x61, 0x70, 0xbd, 0x08, 0x7c, 0x97, 0x05, 0x71, 0xe4, 0xf0, 0x7f, 0xad, 0xde, 0x58, 0x9b, 0xe8,
0x4e, 0x43, 0x4e, 0x3e, 0x81, 0x07, 0x19, 0x73, 0xe7, 0x41, 0x18, 0xb0, 0xe5, 0x33, 0x4a, 0x05,
0xd8, 0x44, 0x70, 0xf3, 0x82, 0x1c, 0x01, 0x78, 0x29, 0x75, 0x19, 0x3d, 0xf5, 0xfd, 0xd4, 0xea,
0x63, 0x10, 0x15, 0x09, 0xb1, 0x60, 0x30, 0x97, 0xae, 0x0f, 0xd0, 0xaf, 0xfc, 0x48, 0x1e, 0xc3,
0xd6, 0x3c, 0x4e, 0xd3, 0xf8, 0x17, 0x87, 0x7a, 0x71, 0xea, 0x67, 0xd6, 0xc6, 0xd8, 0x98, 0x8c,
0x4e, 0x76, 0x8f, 0x31, 0x69, 0xc7, 0x67, 0x95, 0x3b, 0xa7, 0x8e, 0x24, 0x5f, 0xc2, 0xf6, 0x2c,
0xba, 0x71, 0xc3, 0xc0, 0xcf, 0x75, 0x87, 0xdd, 0xba, 0x0a, 0x94, 0xec, 0x43, 0x3f, 0x63, 0x2e,
0x5b, 0x64, 0x16, 0x8c, 0xb5, 0x89, 0xe9, 0xc8, 0x13, 0xf9, 0x1c, 0xf6, 0x79, 0xe6, 0x33, 0xf6,
0xbc, 0xcc, 0xc8, 0x8b, 0x34, 0xf0, 0xa8, 0x35, 0xc2, 0xe0, 0x3b, 0x6e, 0xb9, 0xbd, 0x84, 0xa6,
0x41, 0xec, 0x5b, 0x9b, 0x18, 0xa0, 0x3c, 0x61, 0xce, 0x51, 0xe3, 0xe9, 0x6d, 0x12, 0xa4, 0xf4,
0x65, 0x70, 0x45, 0xad, 0x2d, 0x44, 0x34, 0xe4, 0x64, 0x0f, 0xcc, 0x20, 0xf2, 0xe9, 0xad, 0xb5,
0x8d, 0x00, 0x71, 0x20, 0x07, 0xb0, 0x91, 0xa4, 0x74, 0x86, 0x17, 0xf7, 0xf1, 0xa2, 0x38, 0xf3,
0x9a, 0x73, 0xaa, 0xe4, 0xb4, 0xd8, 0x11, 0x35, 0xaf, 0x88, 0xec, 0x3f, 0x0d, 0xd8, 0xac, 0x26,
0x82, 0xab, 0xb8, 0x9e, 0x17, 0x2f, 0x22, 0x86, 0xb5, 0x12, 0x84, 0xab, 0x8a, 0xc8, 0x21, 0x0c,
0x33, 0xe6, 0xa6, 0x0c, 0x7d, 0x15, 0x4c, 0x2b, 0x05, 0x75, 0xd2, 0x7e, 0xef, 0x86, 0x0b, 0x2a,
0xa9, 0xa6, 0x8a, 0xeb, 0x48, 0x91, 0x43, 0xc1, 0x36, 0x55, 0xcc, 0xbf, 0xc8, 0x79, 0x2a, 0xac,
0x99, 0xe2, 0x8b, 0x85, 0x40, 0xa1, 0xad, 0x30, 0xd4, 0x6f, 0xd0, 0xb6, 0x28, 0x83, 0x2c, 0xeb,
0xa0, 0x56, 0xd6, 0x0f, 0x60, 0x2b, 0xc7, 0x8a, 0x1a, 0x6c, 0xe0, 0x57, 0xea, 0x42, 0x4e, 0x63,
0x5a, 0x96, 0x69, 0x88, 0x90, 0x8a, 0x84, 0xfb, 0x99, 0xa4, 0xf4, 0xdb, 0x2a, 0x6f, 0x4a, 0x01,
0x2f, 0x54, 0x8a, 0x39, 0x9e, 0xf9, 0x48, 0x96, 0xa1, 0x53, 0x9c, 0xdb, 0x9e, 0xfa, 0x66, 0xfb,
0x53, 0x2f, 0x48, 0xb0, 0xd5, 0x45, 0x82, 0xed, 0x3a, 0x09, 0xec, 0xd7, 0x1a, 0xec, 0x9c, 0x66,
0x19, 0x65, 0x98, 0x02, 0x59, 0xe6, 0x23, 0x00, 0xf1, 0x71, 0x0c, 0x45, 0x13, 0xa1, 0x94, 0x12,
0x6e, 0x70, 0xce, 0x96, 0x22, 0x99, 0x3a, 0x26, 0xb3, 0x38, 0x8b, 0x3b, 0x4f, 0xdc, 0x19, 0xf9,
0x9d, 0x57, 0xdc, 0x51, 0xf6, 0x73, 0xb5, 0x9a, 0xc5, 0xd9, 0x7e, 0x63, 0xc0, 0x6e, 0xad, 0xc3,
0x9d, 0x7a, 0xbc, 0x32, 0xe4, 0x11, 0xf4, 0x45, 0x2f, 0x40, 0x3f, 0x46, 0x27, 0x07, 0xf2, 0x81,
0xd6, 0xb0, 0x53, 0x44, 0x9c, 0xdf, 0x73, 0x24, 0x96, 0x6b, 0x89, 0xf7, 0x8e, 0xfe, 0x75, 0x68,
0x09, 0x6a, 0x73, 0x2d, 0x81, 0x25, 0x9f, 0x81, 0x99, 0xd2, 0xc4, 0x5d, 0xa2, 0xe3, 0xa3, 0x93,
0xf7, 0xda, 0x94, 0x1c, 0x0e, 0x38, 0xbf, 0xe7, 0x08, 0x24, 0xff, 0x90, 0x9b, 0x24, 0x34, 0xf2,
0x31, 0xa0, 0x8e, 0x0f, 0x9d, 0x22, 0x82, 0x7f, 0x48, 0x60, 0xc9, 0x31, 0xf4, 0x2e, 0x28, 0xf5,
0x91, 0xae, 0xa3, 0x13, 0xab, 0x4d, 0xe7, 0x19, 0xa5, 0x5c, 0x03, 0x71, 0xdc, 0x31, 0x2f, 0x8c,
0x33, 0x41, 0xdd, 0x0e, 0xc7, 0xa6, 0x1c, 0xc0, 0x1d, 0x43, 0x24, 0x77, 0xec, 0xca, 0x8d, 0xdc,
0x4b, 0xd1, 0x34, 0x3b, 0x1c, 0xfb, 0x06, 0x11, 0xdc, 0x31, 0x81, 0x25, 0xdb, 0xa0, 0xb3, 0xa5,
0x64, 0xa7, 0xce, 0x96, 0x67, 0x03, 0x30, 0x6f, 0xf8, 0x3b, 0xb2, 0xff, 0xd2, 0x94, 0xf2, 0x08,
0x55, 0x75, 0x70, 0x68, 0xab, 0x0d, 0x0e, 0x7d, 0x9d, 0xc1, 0x61, 0x74, 0x0d, 0x8e, 0xb2, 0x6d,
0xf6, 0xd4, 0xb6, 0xc9, 0x1f, 0xc6, 0xcb, 0xea, 0xd0, 0x13, 0x8d, 0xa1, 0x21, 0xc7, 0x26, 0xb8,
0x48, 0x53, 0x1a, 0x89, 0x8e, 0xd5, 0x97, 0x4d, 0xb0, 0x14, 0xd9, 0x0f, 0xe1, 0x41, 0xbd, 0x98,
0xbc, 0xcd, 0x1d, 0x01, 0x64, 0x8b, 0x84, 0xa6, 0xfc, 0x90, 0x59, 0xda, 0xd8, 0xe0, 0x33, 0xab,
0x94, 0xd8, 0x8f, 0x95, 0x6c, 0x09, 0x82, 0x36, 0x46, 0xb1, 0xd6, 0x1c, 0xc5, 0xf6, 0x77, 0x8a,
0xaa, 0x60, 0xe9, 0x1a, 0xf3, 0x7e, 0x4f, 0xd6, 0x4c, 0xb6, 0x5f, 0x59, 0xc0, 0x57, 0x40, 0x9a,
0x3c, 0x5e, 0xc3, 0x6a, 0xb5, 0x41, 0xe9, 0xf5, 0x06, 0x65, 0xff, 0xa6, 0x92, 0x43, 0x10, 0xfe,
0xbf, 0xb1, 0xbe, 0xfa, 0xd0, 0xb0, 0x7f, 0x54, 0x4a, 0xc5, 0xdf, 0x10, 0x37, 0x8d, 0x55, 0x5f,
0x26, 0x22, 0xdf, 0xa6, 0x53, 0x9c, 0x79, 0xaa, 0x12, 0xd9, 0xc5, 0x8c, 0x89, 0xee, 0x88, 0x03,
0xe7, 0xd5, 0x4d, 0x1c, 0x2e, 0xae, 0xf8, 0x77, 0x0c, 0xce, 0x2b, 0x71, 0xb2, 0xbf, 0x52, 0x52,
0x88, 0x2f, 0x6e, 0xf5, 0x20, 0xed, 0xd7, 0x3a, 0xec, 0x39, 0xd4, 0xa3, 0x41, 0xc2, 0xfe, 0xe9,
0x2e, 0x57, 0xdf, 0x95, 0xf4, 0xc6, 0xae, 0xa4, 0x0c, 0x68, 0xa3, 0x39, 0xa0, 0xab, 0x99, 0xee,
0x29, 0x99, 0x2e, 0x07, 0xa0, 0x59, 0x1b, 0x80, 0x87, 0x30, 0x7c, 0x51, 0x8c, 0xae, 0xbe, 0x18,
0x5d, 0x85, 0xa0, 0x1c, 0x3a, 0x83, 0xae, 0xa1, 0xb3, 0xa1, 0x0c, 0x9d, 0x3f, 0x54, 0xbe, 0xc8,
0xb9, 0xb3, 0x7a, 0x1e, 0x08, 0xf4, 0xdc, 0x32, 0x03, 0xf8, 0xbb, 0x16, 0x99, 0xd1, 0x19, 0x59,
0xaf, 0x16, 0x59, 0xe1, 0xbb, 0x59, 0xf1, 0xdd, 0x7e, 0x0e, 0x7b, 0x2d, 0xee, 0x65, 0xe4, 0x11,
0x0c, 0x52, 0xb9, 0x2d, 0x6a, 0xb8, 0x2d, 0x1e, 0xb4, 0x4f, 0x08, 0x5c, 0x1a, 0x73, 0xa8, 0xfd,
0x35, 0xaf, 0xfa, 0x75, 0x0d, 0x32, 0x8b, 0x2e, 0xe2, 0x35, 0x88, 0xf3, 0x56, 0x87, 0xf7, 0x1d,
0x9a, 0xd4, 0xc9, 0x27, 0x5a, 0x14, 0x5a, 0x2a, 0xa3, 0xd3, 0x6a, 0xd1, 0xbd, 0xbb, 0x9b, 0x7f,
0xd9, 0xfa, 0x37, 0x6a, 0xad, 0xbf, 0x25, 0xa7, 0xc3, 0x76, 0x06, 0x29, 0xdb, 0x2f, 0x34, 0xb7,
0xdf, 0x29, 0xfc, 0xaf, 0xad, 0x6e, 0x59, 0x3e, 0x5f, 0x2a, 0xd6, 0xf2, 0x11, 0xd0, 0x90, 0xdb,
0x3f, 0xc0, 0xe1, 0x1d, 0x95, 0xcb, 0xc8, 0x17, 0x9c, 0x80, 0x17, 0x71, 0x4e, 0x28, 0x5b, 0x12,
0xea, 0x0e, 0x1d, 0x47, 0x28, 0xd8, 0xe7, 0x60, 0xa9, 0xee, 0x9d, 0x2d, 0xe5, 0x93, 0xec, 0x22,
0x44, 0x41, 0x77, 0xbd, 0x4a, 0xf7, 0x57, 0xb0, 0xdf, 0xb4, 0x84, 0x05, 0xc8, 0x9f, 0x99, 0x56,
0x79, 0x66, 0xa5, 0x6d, 0xbd, 0xdd, 0xb6, 0x51, 0xb5, 0xfd, 0x21, 0xec, 0xaa, 0xb1, 0xcc, 0x9e,
0x64, 0x64, 0x07, 0x8c, 0xd9, 0x93, 0x3c, 0x6b, 0xfc, 0xa7, 0xfd, 0xbb, 0xc6, 0x33, 0x75, 0xdd,
0xf2, 0x92, 0xa4, 0x2f, 0xff, 0xae, 0x39, 0x94, 0x5e, 0x1b, 0xed, 0x5e, 0xf7, 0xaa, 0x5e, 0xdf,
0xc2, 0x51, 0x97, 0x2f, 0x32, 0xc3, 0xab, 0x7b, 0xb3, 0x5e, 0xbe, 0xce, 0xe1, 0xff, 0x6a, 0xbe,
0xf2, 0xee, 0xf3, 0xa9, 0xda, 0x7d, 0x5a, 0xff, 0xaf, 0x5a, 0xb4, 0x9d, 0x9f, 0x9a, 0x55, 0x5d,
0xbb, 0xcd, 0xde, 0x35, 0xf4, 0x9f, 0x72, 0xfb, 0x6d, 0x9e, 0x92, 0x8f, 0xa1, 0x2f, 0x50, 0x72,
0x65, 0x6f, 0xf5, 0x53, 0x42, 0xec, 0x37, 0x7a, 0xd3, 0xce, 0x34, 0x8e, 0x2e, 0x82, 0xcb, 0x77,
0x62, 0xb7, 0xac, 0xb4, 0x98, 0x7e, 0xa3, 0xc5, 0xa8, 0xdb, 0xe7, 0xa0, 0xb1, 0x7d, 0xce, 0xfb,
0xf8, 0x67, 0xa0, 0x87, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x62, 0x8b, 0x02, 0x61, 0x1d, 0x12,
0x00, 0x00,
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment