Commit 71f5a595 authored by jixing wei's avatar jixing wei Committed by vipwzw

add query

parent 4631df82
......@@ -199,7 +199,7 @@ func (lott *Lottery) updateLotteryBuy(lotterylog *pty.ReceiptLottery, isAdd bool
func (lott *Lottery) saveLotteryDraw(lotterylog *pty.ReceiptLottery) (kvs []*types.KeyValue) {
key := calcLotteryDrawKey(lotterylog.LotteryId, lotterylog.Round)
record := &pty.LotteryDrawRecord{Number: lotterylog.LuckyNumber, Round: lotterylog.Round, Time: lotterylog.Time, TxHash: lotterylog.TxHash, TotalAddrNum: lotterylog.TotalAddrNum, BuyAmount: lotterylog.BuyAmount}
record := &pty.LotteryDrawRecord{Number: lotterylog.LuckyNumber, Round: lotterylog.Round, Time: lotterylog.Time, TxHash: lotterylog.TxHash, TotalAddrNum: lotterylog.TotalAddrNum, BuyAmount: lotterylog.BuyAmount, LuckyAddrNum: lotterylog.LuckyAddrNum, TotalFund: lotterylog.TotalFund, Factor: lotterylog.Factor}
kv := &types.KeyValue{Key: key, Value: types.Encode(record)}
kvs = append(kvs, kv)
return kvs
......
......@@ -176,7 +176,8 @@ func (action *Action) GetBuyReceiptLog(lottery *pty.Lottery, preStatus int32, ro
}
// GetDrawReceiptLog generate logs for lottery draw action
func (action *Action) GetDrawReceiptLog(lottery *pty.Lottery, preStatus int32, round int64, luckyNum int64, updateInfo *pty.LotteryUpdateBuyInfo, addrNumThisRound int64, buyAmountThisRound int64, gainInfos *pty.LotteryGainInfos) *types.ReceiptLog {
func (action *Action) GetDrawReceiptLog(lottery *pty.Lottery, preStatus int32, round int64, luckyNum int64, updateInfo *pty.LotteryUpdateBuyInfo, addrNumThisRound int64, buyAmountThisRound int64, gainInfos *pty.LotteryGainInfos,
luckyAddrNum int64, totalFund int64, factor float64) *types.ReceiptLog {
log := &types.ReceiptLog{}
log.Ty = pty.TyLogLotteryDraw
......@@ -188,6 +189,9 @@ func (action *Action) GetDrawReceiptLog(lottery *pty.Lottery, preStatus int32, r
l.TxHash = common.ToHex(action.txhash)
l.TotalAddrNum = addrNumThisRound
l.BuyAmount = buyAmountThisRound
l.LuckyAddrNum = luckyAddrNum
l.TotalFund = totalFund
l.Factor = float32(factor)
if len(updateInfo.BuyInfo) > 0 {
l.UpdateInfo = updateInfo
}
......@@ -444,7 +448,7 @@ func (action *Action) LotteryDraw(draw *pty.LotteryDraw) (*types.Receipt, error)
addrNumThisRound := lott.TotalAddrNum
buyAmountThisRound := lott.BuyAmount
rec, updateInfo, gainInfos, err := action.checkDraw(lott)
rec, updateInfo, gainInfos, luckyAddrNum, totalFund, factor, err := action.checkDraw(lott)
if err != nil {
return nil, err
}
......@@ -454,7 +458,7 @@ func (action *Action) LotteryDraw(draw *pty.LotteryDraw) (*types.Receipt, error)
lott.Save(action.db)
kv = append(kv, lott.GetKVSet()...)
receiptLog := action.GetDrawReceiptLog(&lott.Lottery, preStatus, lott.Round, lott.LuckyNumber, updateInfo, addrNumThisRound, buyAmountThisRound, gainInfos)
receiptLog := action.GetDrawReceiptLog(&lott.Lottery, preStatus, lott.Round, lott.LuckyNumber, updateInfo, addrNumThisRound, buyAmountThisRound, gainInfos, luckyAddrNum, totalFund, factor)
logs = append(logs, receiptLog)
receipt = &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}
......@@ -574,10 +578,10 @@ func checkFundAmount(luckynum int64, guessnum int64, way int64) (int64, int64) {
}
}
func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUpdateBuyInfo, *pty.LotteryGainInfos, error) {
func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUpdateBuyInfo, *pty.LotteryGainInfos, int64, int64, float64, error) {
luckynum, err := action.findLuckyNum(false, lott)
if luckynum < 0 || luckynum >= luckyNumMol {
return nil, nil, nil, err
return nil, nil, nil, 0, 0, 0, err
}
llog.Debug("checkDraw", "luckynum", luckynum)
......@@ -588,6 +592,7 @@ func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUp
var gainInfos pty.LotteryGainInfos
var tempFund int64
var totalFund int64
var luckyAddrNum int64
updateInfo.BuyInfo = make(map[string]*pty.LotteryUpdateRecs)
......@@ -611,7 +616,7 @@ func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUp
}
llog.Debug("checkDraw", "lenofupdate", len(updateInfo.BuyInfo), "update", updateInfo.BuyInfo)
var factor float64
var factor = 1.0
if totalFund > 0 {
if totalFund > lott.GetFund()/2 {
llog.Debug("checkDraw ajust fund", "lott.Fund", lott.Fund, "totalFund", totalFund)
......@@ -627,11 +632,11 @@ func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUp
//protection for rollback
if factor == 1.0 {
if !action.CheckExecAccount(lott.CreateAddr, totalFund, true) {
return nil, nil, nil, pty.ErrLotteryFundNotEnough
return nil, nil, nil, 0, 0, 0, pty.ErrLotteryFundNotEnough
}
} else {
if !action.CheckExecAccount(lott.CreateAddr, decimal*lott.Fund/2+1, true) {
return nil, nil, nil, pty.ErrLotteryFundNotEnough
return nil, nil, nil, 0, 0, 0, pty.ErrLotteryFundNotEnough
}
}
......@@ -643,8 +648,9 @@ func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUp
gainInfos.Gains = append(gainInfos.Gains, gain)
receipt, err := action.coinsAccount.ExecTransferFrozen(lott.CreateAddr, recs.Addr, action.execaddr, fund)
if err != nil {
return nil, nil, nil, err
return nil, nil, nil, 0, 0, 0, err
}
luckyAddrNum++
kv = append(kv, receipt.KV...)
logs = append(logs, receipt.Logs...)
} else {
......@@ -657,7 +663,7 @@ func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUp
fundOp := int64(factor*decimal) * totalFund * lott.OpRewardRatio / rewardBase
receipt, err := action.coinsAccount.ExecTransferFrozen(lott.CreateAddr, opRewardAddr, action.execaddr, fundOp)
if err != nil {
return nil, nil, nil, err
return nil, nil, nil, 0, 0, 0, err
}
kv = append(kv, receipt.KV...)
logs = append(logs, receipt.Logs...)
......@@ -665,7 +671,7 @@ func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUp
fundDev := int64(factor*decimal) * totalFund * lott.DevRewardRatio / rewardBase
receipt, err = action.coinsAccount.ExecTransferFrozen(lott.CreateAddr, devRewardAddr, action.execaddr, fundDev)
if err != nil {
return nil, nil, nil, err
return nil, nil, nil, 0, 0, 0, err
}
kv = append(kv, receipt.KV...)
logs = append(logs, receipt.Logs...)
......@@ -693,7 +699,7 @@ func (action *Action) checkDraw(lott *LotteryDB) (*types.Receipt, *pty.LotteryUp
if types.IsPara() {
lott.LastTransToDrawStateOnMain = action.lottery.GetMainHeight()
}
return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, &updateInfo, &gainInfos, nil
return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, &updateInfo, &gainInfos, luckyAddrNum, totalFund, factor, nil
}
func (action *Action) recordMissing(lott *LotteryDB) {
temp := int32(lott.LuckyNumber)
......
......@@ -94,6 +94,9 @@ message ReceiptLottery {
int64 totalAddrNum = 14;
int64 buyAmount = 15;
LotteryGainInfos gainInfos = 16;
int64 luckyAddrNum = 17;
int64 totalFund = 18;
float factor = 19;
}
message ReqLotteryInfo {
......@@ -189,6 +192,9 @@ message LotteryDrawRecord {
string txHash = 4;
int64 totalAddrNum = 5;
int64 buyAmount = 6;
int64 luckyAddrNum = 7;
int64 totalFund = 8;
float factor = 9;
}
message LotteryDrawRecords {
......
......@@ -827,6 +827,9 @@ type ReceiptLottery struct {
TotalAddrNum int64 `protobuf:"varint,14,opt,name=totalAddrNum,proto3" json:"totalAddrNum,omitempty"`
BuyAmount int64 `protobuf:"varint,15,opt,name=buyAmount,proto3" json:"buyAmount,omitempty"`
GainInfos *LotteryGainInfos `protobuf:"bytes,16,opt,name=gainInfos,proto3" json:"gainInfos,omitempty"`
LuckyAddrNum int64 `protobuf:"varint,17,opt,name=luckyAddrNum,proto3" json:"luckyAddrNum,omitempty"`
TotalFund int64 `protobuf:"varint,18,opt,name=totalFund,proto3" json:"totalFund,omitempty"`
Factor float32 `protobuf:"fixed32,19,opt,name=factor,proto3" json:"factor,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
......@@ -969,6 +972,27 @@ func (m *ReceiptLottery) GetGainInfos() *LotteryGainInfos {
return nil
}
func (m *ReceiptLottery) GetLuckyAddrNum() int64 {
if m != nil {
return m.LuckyAddrNum
}
return 0
}
func (m *ReceiptLottery) GetTotalFund() int64 {
if m != nil {
return m.TotalFund
}
return 0
}
func (m *ReceiptLottery) GetFactor() float32 {
if m != nil {
return m.Factor
}
return 0
}
type ReqLotteryInfo struct {
LotteryId string `protobuf:"bytes,1,opt,name=lotteryId,proto3" json:"lotteryId,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
......@@ -1741,6 +1765,9 @@ type LotteryDrawRecord struct {
TxHash string `protobuf:"bytes,4,opt,name=txHash,proto3" json:"txHash,omitempty"`
TotalAddrNum int64 `protobuf:"varint,5,opt,name=totalAddrNum,proto3" json:"totalAddrNum,omitempty"`
BuyAmount int64 `protobuf:"varint,6,opt,name=buyAmount,proto3" json:"buyAmount,omitempty"`
LuckyAddrNum int64 `protobuf:"varint,7,opt,name=luckyAddrNum,proto3" json:"luckyAddrNum,omitempty"`
TotalFund int64 `protobuf:"varint,8,opt,name=totalFund,proto3" json:"totalFund,omitempty"`
Factor float32 `protobuf:"fixed32,9,opt,name=factor,proto3" json:"factor,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
......@@ -1813,6 +1840,27 @@ func (m *LotteryDrawRecord) GetBuyAmount() int64 {
return 0
}
func (m *LotteryDrawRecord) GetLuckyAddrNum() int64 {
if m != nil {
return m.LuckyAddrNum
}
return 0
}
func (m *LotteryDrawRecord) GetTotalFund() int64 {
if m != nil {
return m.TotalFund
}
return 0
}
func (m *LotteryDrawRecord) GetFactor() float32 {
if m != nil {
return m.Factor
}
return 0
}
type LotteryDrawRecords struct {
Records []*LotteryDrawRecord `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
......@@ -2379,97 +2427,100 @@ func init() {
func init() { proto.RegisterFile("lottery.proto", fileDescriptor_2cce7afd61783b10) }
var fileDescriptor_2cce7afd61783b10 = []byte{
// 1462 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xdd, 0x6e, 0xdc, 0x44,
0x14, 0x8e, 0xff, 0x76, 0xb3, 0x67, 0xb3, 0x9b, 0x66, 0x92, 0xa6, 0xa6, 0xa0, 0x28, 0xb2, 0x28,
0x8a, 0xd4, 0xb2, 0x82, 0xe5, 0x47, 0x08, 0x2a, 0x44, 0x53, 0x0a, 0x1b, 0xa9, 0x7f, 0x9a, 0x06,
0x71, 0x01, 0x37, 0xce, 0x7a, 0xda, 0x58, 0xdd, 0xd8, 0x8b, 0x3d, 0x6e, 0x62, 0x71, 0xc3, 0x3b,
0x20, 0xf1, 0x02, 0xdc, 0x70, 0x07, 0x8f, 0xc0, 0x4b, 0x80, 0xc4, 0x3b, 0x70, 0xc1, 0x23, 0xa0,
0xf9, 0xb1, 0x67, 0xec, 0xf5, 0xc6, 0x09, 0xed, 0x05, 0x57, 0xf1, 0x9c, 0x39, 0x33, 0x73, 0x7e,
0xbe, 0x73, 0xce, 0xb7, 0x81, 0xc1, 0x2c, 0xa6, 0x94, 0x24, 0xf9, 0x68, 0x9e, 0xc4, 0x34, 0x46,
0x0e, 0xcd, 0xe7, 0x24, 0xf5, 0x8e, 0x61, 0xf8, 0x38, 0x4b, 0xa6, 0xc7, 0x7e, 0x4a, 0x30, 0x99,
0xc6, 0x49, 0x80, 0xb6, 0xa1, 0xe3, 0x9f, 0xc4, 0x59, 0x44, 0x5d, 0x63, 0xd7, 0xd8, 0xb3, 0xb0,
0x5c, 0x31, 0x79, 0x94, 0x9d, 0x1c, 0x91, 0xc4, 0x35, 0x85, 0x5c, 0xac, 0xd0, 0x16, 0x38, 0x61,
0x14, 0x90, 0x33, 0xd7, 0xe2, 0x62, 0xb1, 0x40, 0x57, 0xc0, 0x3a, 0xf5, 0x73, 0xd7, 0xe6, 0x32,
0xf6, 0xe9, 0xfd, 0x64, 0xc0, 0x7a, 0xf5, 0xa9, 0x14, 0xbd, 0x0d, 0x9d, 0x84, 0x7f, 0xba, 0xc6,
0xae, 0xb5, 0xd7, 0x1f, 0x5f, 0x1d, 0x71, 0xab, 0x46, 0x55, 0x3d, 0x2c, 0x95, 0x90, 0x0b, 0xdd,
0xa7, 0x59, 0x14, 0x7c, 0x1d, 0x46, 0xd2, 0x86, 0x62, 0x89, 0xde, 0x82, 0xa1, 0x30, 0xf3, 0x51,
0x44, 0x70, 0x9c, 0x45, 0x81, 0xb4, 0xa6, 0x26, 0x45, 0x08, 0x6c, 0x3f, 0x08, 0x12, 0x6e, 0x57,
0x0f, 0xf3, 0x6f, 0xef, 0x8f, 0x0e, 0x74, 0xef, 0x8b, 0xd8, 0xa0, 0x37, 0xa0, 0x27, 0xc3, 0x74,
0x10, 0x70, 0xff, 0x7b, 0x58, 0x09, 0x58, 0x08, 0x52, 0xea, 0xd3, 0x2c, 0xe5, 0xcf, 0x3b, 0x58,
0xae, 0x90, 0x07, 0x6b, 0xd3, 0x84, 0xf8, 0x94, 0x4c, 0x48, 0xf8, 0xec, 0x98, 0xca, 0xb7, 0x2b,
0x32, 0xf6, 0x32, 0x33, 0x56, 0x46, 0x84, 0x7f, 0xa3, 0x5d, 0xe8, 0xcf, 0xb3, 0x64, 0x7f, 0x16,
0x4f, 0x9f, 0x3f, 0xcc, 0x4e, 0x5c, 0x87, 0x6f, 0xe9, 0x22, 0x76, 0x73, 0x90, 0xf8, 0xa7, 0xa5,
0x4a, 0x47, 0xdc, 0xac, 0xcb, 0xd0, 0x3b, 0xb0, 0x39, 0xf3, 0x53, 0x7a, 0x98, 0xf8, 0x51, 0x7a,
0x18, 0x3f, 0xce, 0x92, 0x27, 0xd4, 0xa7, 0xc4, 0xed, 0x72, 0xd5, 0xa6, 0x2d, 0x34, 0x86, 0x2d,
0x4d, 0xfc, 0x79, 0xe2, 0x9f, 0x8a, 0x23, 0xab, 0xfc, 0x48, 0xe3, 0x1e, 0x7b, 0x85, 0xc6, 0xd4,
0x9f, 0x15, 0xa9, 0x09, 0x0e, 0xcf, 0x98, 0x41, 0x20, 0x5e, 0x69, 0xd8, 0x42, 0x3b, 0x00, 0x22,
0x02, 0x77, 0x58, 0xc4, 0xfb, 0x3c, 0x98, 0x9a, 0x84, 0x01, 0x27, 0xe1, 0xa9, 0x5a, 0x13, 0xc0,
0xe1, 0x0b, 0x16, 0x93, 0x59, 0x36, 0x7d, 0x9e, 0x3f, 0x14, 0x58, 0x1b, 0x88, 0x98, 0x68, 0x22,
0x15, 0xed, 0x47, 0xd1, 0x03, 0x3f, 0x8c, 0xdc, 0xa1, 0x1e, 0x6d, 0x21, 0x43, 0xb7, 0xe1, 0xb5,
0x06, 0xc7, 0xe5, 0x81, 0x75, 0x7e, 0x60, 0xb9, 0x02, 0xfa, 0x14, 0xae, 0x37, 0xc5, 0x40, 0x1e,
0xbf, 0xc2, 0x8f, 0x9f, 0xa3, 0x81, 0x6e, 0xc3, 0xf0, 0x24, 0x4c, 0xd3, 0x30, 0x7a, 0x26, 0x81,
0xee, 0x6e, 0x70, 0x78, 0x6f, 0x49, 0x78, 0x3f, 0xd0, 0x37, 0x71, 0x4d, 0x17, 0xbd, 0x09, 0x83,
0x78, 0x8e, 0xc9, 0xa9, 0x9f, 0x04, 0xd8, 0xa7, 0x61, 0xec, 0x22, 0xfe, 0x60, 0x55, 0xc8, 0x10,
0x1f, 0x90, 0x17, 0xba, 0xda, 0xa6, 0x40, 0x7c, 0x55, 0x8a, 0x3e, 0x04, 0x98, 0x67, 0x49, 0x61,
0xc7, 0x16, 0xb7, 0x63, 0xbb, 0xb1, 0xcc, 0x52, 0xac, 0x69, 0xb2, 0x28, 0xf3, 0xa4, 0xb2, 0x54,
0xb1, 0x44, 0x5f, 0x15, 0x51, 0xd6, 0x65, 0xac, 0x5a, 0x8e, 0xb2, 0xfc, 0x8e, 0xe8, 0x16, 0xdb,
0x5c, 0x41, 0x09, 0xbc, 0x1b, 0x30, 0xa8, 0x38, 0xca, 0x12, 0x4e, 0xc3, 0x13, 0x92, 0xf2, 0x62,
0x77, 0xb0, 0x58, 0x78, 0x7f, 0x1a, 0x30, 0x90, 0xe5, 0x77, 0x67, 0x4a, 0xc3, 0x38, 0x42, 0x23,
0xe8, 0x88, 0x64, 0xf2, 0x0a, 0x54, 0x61, 0x93, 0x5a, 0x77, 0x45, 0x59, 0xad, 0x60, 0xa9, 0x85,
0x6e, 0x80, 0x75, 0x94, 0xe5, 0xbc, 0x26, 0xfb, 0xe3, 0x8d, 0xaa, 0xf2, 0x7e, 0x96, 0x4f, 0x56,
0x30, 0xdb, 0x47, 0x7b, 0x60, 0xb3, 0xba, 0xe1, 0xd5, 0xd9, 0x1f, 0xa3, 0xaa, 0x1e, 0x4b, 0xe1,
0x64, 0x05, 0x73, 0x0d, 0x74, 0x13, 0x9c, 0xe9, 0x2c, 0x4e, 0x09, 0x2f, 0xd6, 0xfe, 0x78, 0xb3,
0xf6, 0x3e, 0xdb, 0x9a, 0xac, 0x60, 0xa1, 0x83, 0x86, 0x60, 0xd2, 0x9c, 0xd7, 0x81, 0x83, 0x4d,
0x9a, 0xef, 0x77, 0xc1, 0x79, 0xe1, 0xcf, 0x32, 0xe2, 0xfd, 0xac, 0x1c, 0x13, 0x26, 0xd7, 0xeb,
0xdd, 0x68, 0xaf, 0x77, 0xb3, 0xa1, 0xde, 0x17, 0xf0, 0x61, 0x5d, 0x0c, 0x1f, 0x76, 0x13, 0x3e,
0xbc, 0x19, 0x80, 0x0a, 0x55, 0x7b, 0xff, 0x93, 0xa3, 0xc1, 0x5c, 0x32, 0x1a, 0xac, 0xca, 0x68,
0x58, 0x1c, 0x02, 0x37, 0xa1, 0xaf, 0x05, 0xfc, 0xfc, 0xe7, 0xbc, 0x5b, 0xb0, 0xa6, 0x87, 0xbc,
0x45, 0xfb, 0x6f, 0x0b, 0x86, 0x98, 0x4c, 0x49, 0x38, 0xa7, 0x2f, 0xd7, 0xcd, 0x77, 0x00, 0xe6,
0x09, 0x79, 0xf1, 0x44, 0xec, 0x59, 0x7c, 0x4f, 0x93, 0x34, 0xcd, 0x10, 0xd5, 0xcb, 0x1c, 0xbd,
0x97, 0xa9, 0xb8, 0x74, 0x2a, 0x71, 0x51, 0x71, 0xec, 0x56, 0xe2, 0x58, 0xeb, 0x7d, 0xab, 0x8b,
0xbd, 0x0f, 0x81, 0xcd, 0xaa, 0xc6, 0xed, 0x89, 0x29, 0xc2, 0xbe, 0xd9, 0x6d, 0xf4, 0x6c, 0xe2,
0xa7, 0xc7, 0x1c, 0x84, 0x3d, 0x2c, 0x57, 0xe8, 0x13, 0x80, 0x6c, 0x1e, 0xf8, 0x94, 0x1c, 0x44,
0x4f, 0x63, 0xde, 0x7f, 0xfb, 0xe3, 0xd7, 0xab, 0x50, 0xfe, 0x8a, 0xef, 0xef, 0x67, 0x39, 0x53,
0xc1, 0x9a, 0x7a, 0x91, 0xba, 0xb5, 0x32, 0x75, 0x6a, 0xce, 0x0f, 0xf4, 0x39, 0x5f, 0x6f, 0x13,
0xc3, 0xb6, 0x36, 0xb1, 0x5e, 0x6b, 0x13, 0xe8, 0x03, 0xe8, 0x3d, 0xf3, 0xc3, 0x88, 0xbd, 0x9a,
0xf2, 0xde, 0xda, 0x1f, 0x5f, 0xab, 0x5a, 0xf9, 0x65, 0xb1, 0x8d, 0x95, 0xa6, 0x37, 0x62, 0xd9,
0xfe, 0x4e, 0x6a, 0x70, 0x93, 0xcf, 0x87, 0xc7, 0x37, 0xb0, 0xa1, 0xf4, 0xa5, 0xc7, 0x2d, 0x00,
0x29, 0x12, 0x6d, 0x36, 0x25, 0xda, 0xd2, 0x12, 0xed, 0xfd, 0x62, 0xc0, 0x56, 0xe5, 0xf6, 0x49,
0x98, 0xd2, 0xb8, 0x15, 0x81, 0x17, 0x7e, 0x80, 0x49, 0xa7, 0x3c, 0x7c, 0x36, 0x87, 0xa3, 0x58,
0xb0, 0xdb, 0x83, 0x30, 0x21, 0xbc, 0x6b, 0x72, 0xe4, 0x39, 0x58, 0x09, 0x54, 0xc2, 0x3a, 0x5a,
0xc2, 0xbc, 0x03, 0xd8, 0x54, 0x96, 0xde, 0x67, 0xd0, 0xba, 0x40, 0x24, 0x4a, 0xa3, 0xcc, 0x5d,
0x4b, 0x79, 0xfd, 0x83, 0x01, 0xdb, 0xb5, 0xbb, 0x2e, 0xe6, 0xb7, 0x76, 0x5d, 0x93, 0x8f, 0xd6,
0x52, 0x1f, 0xed, 0x9a, 0x8f, 0xde, 0x3f, 0xdc, 0x84, 0xf9, 0x2c, 0x97, 0x46, 0x3c, 0x8c, 0x93,
0x13, 0x7f, 0xc6, 0x3d, 0xaa, 0x93, 0x32, 0xa3, 0x81, 0x94, 0xd5, 0x1a, 0xb2, 0xd9, 0xde, 0x90,
0xad, 0x86, 0x86, 0x5c, 0x25, 0x3a, 0xf6, 0x02, 0xd1, 0x59, 0x68, 0xd8, 0xce, 0xc5, 0x1a, 0x76,
0xa7, 0xb1, 0x61, 0xff, 0x65, 0xc3, 0x35, 0xdd, 0xe5, 0xbb, 0x59, 0x92, 0x90, 0x88, 0x72, 0x9f,
0x55, 0x4b, 0x33, 0x2a, 0x2d, 0xad, 0x20, 0x9f, 0xa6, 0x46, 0x3e, 0x97, 0xd0, 0x46, 0xeb, 0xf2,
0xb4, 0xd1, 0xbe, 0x3c, 0x6d, 0x74, 0x96, 0xd3, 0xc6, 0x12, 0x1c, 0x9d, 0x73, 0x68, 0x61, 0x77,
0xb1, 0x35, 0x9e, 0x4b, 0xf9, 0x56, 0x5f, 0x8e, 0xf2, 0xf5, 0x5a, 0x29, 0x5f, 0x0d, 0x49, 0xd0,
0x8e, 0xa4, 0x7e, 0x03, 0x92, 0x16, 0x89, 0xe3, 0xda, 0x25, 0x88, 0x63, 0xbd, 0x17, 0x0f, 0xda,
0x7a, 0xf1, 0xb0, 0x4e, 0xd9, 0xf6, 0x61, 0x47, 0x87, 0x96, 0xac, 0xe6, 0xfb, 0x5a, 0x94, 0x6b,
0x79, 0x30, 0x78, 0x3f, 0xd0, 0x45, 0xde, 0x01, 0x6b, 0x85, 0xea, 0x8e, 0x27, 0xc7, 0xf1, 0x29,
0xc7, 0xe6, 0xbb, 0xd0, 0x4d, 0xa4, 0x53, 0xe2, 0xc7, 0xde, 0xb5, 0x05, 0xa6, 0x26, 0xfd, 0x2a,
0xf4, 0xbc, 0x7b, 0xb0, 0x59, 0xd4, 0x35, 0xbf, 0x5b, 0xfd, 0x42, 0x8d, 0x8a, 0xe7, 0x9b, 0xc7,
0x6a, 0x85, 0x9e, 0x78, 0xbf, 0x1b, 0x70, 0xa5, 0xfe, 0xc8, 0x65, 0x2f, 0x59, 0xd2, 0x97, 0xd9,
0x3c, 0xce, 0xe7, 0x45, 0x09, 0xf0, 0xef, 0x62, 0x74, 0x3a, 0x0d, 0xa3, 0x53, 0xef, 0xc4, 0xe5,
0x2c, 0xef, 0x36, 0xce, 0xf2, 0x55, 0x7d, 0x96, 0x7b, 0x5f, 0xc0, 0x46, 0xdd, 0x83, 0xf4, 0xbf,
0x44, 0xf4, 0x57, 0xa3, 0xbc, 0x88, 0x21, 0xb8, 0x25, 0x16, 0xcd, 0x7d, 0xba, 0xb0, 0xdb, 0x6a,
0xb4, 0xdb, 0xae, 0x70, 0x90, 0x3a, 0x24, 0x9d, 0x36, 0x48, 0x76, 0xea, 0x90, 0x9c, 0x00, 0x5a,
0x30, 0x38, 0x45, 0xe3, 0xba, 0xeb, 0xee, 0x22, 0x9d, 0xaf, 0xfb, 0x7e, 0xbb, 0x44, 0x81, 0xa0,
0x3d, 0x98, 0x4c, 0x55, 0x66, 0x8c, 0x7a, 0x66, 0x58, 0x56, 0x4d, 0x95, 0x55, 0x2d, 0x03, 0xe5,
0xe9, 0xf6, 0x0c, 0x94, 0xaa, 0xca, 0x8a, 0xdf, 0x0c, 0xd8, 0x6a, 0x62, 0x5f, 0x68, 0x1f, 0xba,
0x47, 0xe2, 0x53, 0xde, 0xb5, 0x77, 0x0e, 0x57, 0x1b, 0xc9, 0xbf, 0xf7, 0x22, 0x9a, 0xe4, 0xb8,
0x38, 0x78, 0xfd, 0x10, 0xd6, 0xf4, 0x0d, 0x06, 0xc5, 0xe7, 0x24, 0x97, 0x03, 0x98, 0x7d, 0xa2,
0x91, 0xfc, 0x75, 0x22, 0x7f, 0x2d, 0xb9, 0x4b, 0xec, 0x4d, 0xb1, 0x50, 0xfb, 0xd8, 0xfc, 0xc8,
0xf0, 0xde, 0x07, 0x57, 0xaf, 0xe8, 0xa2, 0x5f, 0xf3, 0xd9, 0xe6, 0x42, 0x97, 0xd1, 0x16, 0x92,
0x8a, 0x08, 0xf4, 0x70, 0xb1, 0xf4, 0x3e, 0x2b, 0xc3, 0x5d, 0xf2, 0x37, 0x74, 0x0b, 0x1c, 0xc6,
0xe0, 0x8a, 0x68, 0x6d, 0x37, 0xf3, 0x3c, 0x2c, 0x94, 0xbc, 0x29, 0xac, 0xd7, 0x76, 0x4a, 0xc6,
0x64, 0x68, 0x8c, 0xa9, 0x82, 0x1f, 0xb3, 0x4e, 0x2f, 0x77, 0x00, 0xd8, 0xb8, 0x93, 0xdb, 0x0c,
0xb3, 0x26, 0xd6, 0x24, 0xde, 0xf7, 0x65, 0x5e, 0xd9, 0x23, 0xb2, 0x20, 0x5e, 0xf9, 0x33, 0xaa,
0x94, 0x6c, 0x9d, 0x37, 0x2a, 0x70, 0xab, 0xc7, 0xdb, 0xc1, 0xad, 0x74, 0x15, 0xac, 0x7e, 0x34,
0xe0, 0xaa, 0xe2, 0x62, 0x4c, 0xe3, 0x7f, 0x40, 0x41, 0xbd, 0x6f, 0x01, 0x55, 0x8d, 0x7a, 0x95,
0xac, 0xfb, 0xa8, 0xc3, 0xff, 0x93, 0xf9, 0xde, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x03, 0xf1,
0xae, 0x10, 0xda, 0x14, 0x00, 0x00,
// 1512 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6e, 0xdb, 0xc6,
0x13, 0x37, 0x49, 0x51, 0xb2, 0x46, 0x96, 0x1c, 0xaf, 0x1d, 0x87, 0xff, 0xfc, 0x0b, 0xc3, 0x20,
0x9a, 0xc2, 0x40, 0x52, 0xa1, 0x55, 0x3f, 0x50, 0xb4, 0x41, 0xd1, 0x38, 0x4d, 0x2a, 0x03, 0xf9,
0xc2, 0xc6, 0x45, 0x0f, 0xed, 0x85, 0x96, 0x98, 0x98, 0x88, 0x4c, 0xaa, 0xe4, 0x32, 0x36, 0xd1,
0x4b, 0xaf, 0x3d, 0x17, 0xe8, 0x0b, 0xf4, 0xd2, 0x63, 0x1f, 0xa1, 0xa7, 0xbe, 0x41, 0x0b, 0xf4,
0x2d, 0xfa, 0x08, 0xc5, 0xce, 0x2e, 0xb9, 0x4b, 0x8a, 0x32, 0xed, 0x26, 0x87, 0x9e, 0xcc, 0x9d,
0x9d, 0xdd, 0x99, 0x9d, 0xf9, 0xcd, 0xcc, 0x4f, 0x86, 0xfe, 0x2c, 0x62, 0xcc, 0x8f, 0xb3, 0xe1,
0x3c, 0x8e, 0x58, 0x44, 0x6c, 0x96, 0xcd, 0xfd, 0xc4, 0x3d, 0x86, 0xc1, 0x93, 0x34, 0x9e, 0x1c,
0x7b, 0x89, 0x4f, 0xfd, 0x49, 0x14, 0x4f, 0xc9, 0x36, 0xb4, 0xbd, 0x93, 0x28, 0x0d, 0x99, 0x63,
0xec, 0x1a, 0x7b, 0x16, 0x95, 0x2b, 0x2e, 0x0f, 0xd3, 0x93, 0x23, 0x3f, 0x76, 0x4c, 0x21, 0x17,
0x2b, 0xb2, 0x05, 0x76, 0x10, 0x4e, 0xfd, 0x33, 0xc7, 0x42, 0xb1, 0x58, 0x90, 0x2b, 0x60, 0x9d,
0x7a, 0x99, 0xd3, 0x42, 0x19, 0xff, 0x74, 0x7f, 0x32, 0x60, 0xbd, 0x6c, 0x2a, 0x21, 0x6f, 0x43,
0x3b, 0xc6, 0x4f, 0xc7, 0xd8, 0xb5, 0xf6, 0x7a, 0xa3, 0xab, 0x43, 0xf4, 0x6a, 0x58, 0xd6, 0xa3,
0x52, 0x89, 0x38, 0xd0, 0x79, 0x96, 0x86, 0xd3, 0xaf, 0x82, 0x50, 0xfa, 0x90, 0x2f, 0xc9, 0x5b,
0x30, 0x10, 0x6e, 0x3e, 0x0e, 0x7d, 0x1a, 0xa5, 0xe1, 0x54, 0x7a, 0x53, 0x91, 0x12, 0x02, 0x2d,
0x6f, 0x3a, 0x8d, 0xd1, 0xaf, 0x2e, 0xc5, 0x6f, 0xf7, 0x8f, 0x36, 0x74, 0x1e, 0x88, 0xd8, 0x90,
0x37, 0xa0, 0x2b, 0xc3, 0x74, 0x30, 0xc5, 0xf7, 0x77, 0xa9, 0x12, 0xf0, 0x10, 0x24, 0xcc, 0x63,
0x69, 0x82, 0xe6, 0x6d, 0x2a, 0x57, 0xc4, 0x85, 0xb5, 0x49, 0xec, 0x7b, 0xcc, 0x1f, 0xfb, 0xc1,
0xf3, 0x63, 0x26, 0x6d, 0x97, 0x64, 0xdc, 0x32, 0x77, 0x56, 0x46, 0x04, 0xbf, 0xc9, 0x2e, 0xf4,
0xe6, 0x69, 0xbc, 0x3f, 0x8b, 0x26, 0x2f, 0x1e, 0xa5, 0x27, 0x8e, 0x8d, 0x5b, 0xba, 0x88, 0xdf,
0x3c, 0x8d, 0xbd, 0xd3, 0x42, 0xa5, 0x2d, 0x6e, 0xd6, 0x65, 0xe4, 0x1d, 0xd8, 0x9c, 0x79, 0x09,
0x3b, 0x8c, 0xbd, 0x30, 0x39, 0x8c, 0x9e, 0xa4, 0xf1, 0x53, 0xe6, 0x31, 0xdf, 0xe9, 0xa0, 0x6a,
0xdd, 0x16, 0x19, 0xc1, 0x96, 0x26, 0xfe, 0x3c, 0xf6, 0x4e, 0xc5, 0x91, 0x55, 0x3c, 0x52, 0xbb,
0xc7, 0xad, 0xb0, 0x88, 0x79, 0xb3, 0x3c, 0x35, 0xd3, 0xc3, 0x33, 0xee, 0x10, 0x08, 0x2b, 0x35,
0x5b, 0x64, 0x07, 0x40, 0x44, 0xe0, 0x0e, 0x8f, 0x78, 0x0f, 0x83, 0xa9, 0x49, 0x38, 0x70, 0x62,
0x4c, 0xd5, 0x9a, 0x00, 0x0e, 0x2e, 0x78, 0x4c, 0x66, 0xe9, 0xe4, 0x45, 0xf6, 0x48, 0x60, 0xad,
0x2f, 0x62, 0xa2, 0x89, 0x54, 0xb4, 0x1f, 0x87, 0x0f, 0xbd, 0x20, 0x74, 0x06, 0x7a, 0xb4, 0x85,
0x8c, 0xdc, 0x86, 0xff, 0xd5, 0x3c, 0x5c, 0x1e, 0x58, 0xc7, 0x03, 0xcb, 0x15, 0xc8, 0xa7, 0x70,
0xbd, 0x2e, 0x06, 0xf2, 0xf8, 0x15, 0x3c, 0x7e, 0x8e, 0x06, 0xb9, 0x0d, 0x83, 0x93, 0x20, 0x49,
0x82, 0xf0, 0xb9, 0x04, 0xba, 0xb3, 0x81, 0xf0, 0xde, 0x92, 0xf0, 0x7e, 0xa8, 0x6f, 0xd2, 0x8a,
0x2e, 0x79, 0x13, 0xfa, 0xd1, 0x9c, 0xfa, 0xa7, 0x5e, 0x3c, 0xa5, 0x1e, 0x0b, 0x22, 0x87, 0xa0,
0xc1, 0xb2, 0x90, 0x23, 0x7e, 0xea, 0xbf, 0xd4, 0xd5, 0x36, 0x05, 0xe2, 0xcb, 0x52, 0xf2, 0x21,
0xc0, 0x3c, 0x8d, 0x73, 0x3f, 0xb6, 0xd0, 0x8f, 0xed, 0xda, 0x32, 0x4b, 0xa8, 0xa6, 0xc9, 0xa3,
0x8c, 0x49, 0xe5, 0xa9, 0xe2, 0x89, 0xbe, 0x2a, 0xa2, 0xac, 0xcb, 0x78, 0xb5, 0x1c, 0xa5, 0xd9,
0x1d, 0xd1, 0x2d, 0xb6, 0x51, 0x41, 0x09, 0xdc, 0x1b, 0xd0, 0x2f, 0x3d, 0x94, 0x27, 0x9c, 0x05,
0x27, 0x7e, 0x82, 0xc5, 0x6e, 0x53, 0xb1, 0x70, 0xff, 0x34, 0xa0, 0x2f, 0xcb, 0xef, 0xce, 0x84,
0x05, 0x51, 0x48, 0x86, 0xd0, 0x16, 0xc9, 0xc4, 0x0a, 0x54, 0x61, 0x93, 0x5a, 0x77, 0x45, 0x59,
0xad, 0x50, 0xa9, 0x45, 0x6e, 0x80, 0x75, 0x94, 0x66, 0x58, 0x93, 0xbd, 0xd1, 0x46, 0x59, 0x79,
0x3f, 0xcd, 0xc6, 0x2b, 0x94, 0xef, 0x93, 0x3d, 0x68, 0xf1, 0xba, 0xc1, 0xea, 0xec, 0x8d, 0x48,
0x59, 0x8f, 0xa7, 0x70, 0xbc, 0x42, 0x51, 0x83, 0xdc, 0x04, 0x7b, 0x32, 0x8b, 0x12, 0x1f, 0x8b,
0xb5, 0x37, 0xda, 0xac, 0xd8, 0xe7, 0x5b, 0xe3, 0x15, 0x2a, 0x74, 0xc8, 0x00, 0x4c, 0x96, 0x61,
0x1d, 0xd8, 0xd4, 0x64, 0xd9, 0x7e, 0x07, 0xec, 0x97, 0xde, 0x2c, 0xf5, 0xdd, 0x9f, 0xd5, 0xc3,
0x84, 0xcb, 0xd5, 0x7a, 0x37, 0x9a, 0xeb, 0xdd, 0xac, 0xa9, 0xf7, 0x05, 0x7c, 0x58, 0x17, 0xc3,
0x47, 0xab, 0x0e, 0x1f, 0xee, 0x0c, 0x40, 0x85, 0xaa, 0xb9, 0xff, 0xc9, 0xd1, 0x60, 0x2e, 0x19,
0x0d, 0x56, 0x69, 0x34, 0x2c, 0x0e, 0x81, 0x9b, 0xd0, 0xd3, 0x02, 0x7e, 0xbe, 0x39, 0xf7, 0x16,
0xac, 0xe9, 0x21, 0x6f, 0xd0, 0xfe, 0xbd, 0x05, 0x03, 0xea, 0x4f, 0xfc, 0x60, 0xce, 0x5e, 0xad,
0x9b, 0xef, 0x00, 0xcc, 0x63, 0xff, 0xe5, 0x53, 0xb1, 0x67, 0xe1, 0x9e, 0x26, 0xa9, 0x9b, 0x21,
0xaa, 0x97, 0xd9, 0x7a, 0x2f, 0x53, 0x71, 0x69, 0x97, 0xe2, 0xa2, 0xe2, 0xd8, 0x29, 0xc5, 0xb1,
0xd2, 0xfb, 0x56, 0x17, 0x7b, 0x1f, 0x81, 0x16, 0xaf, 0x1a, 0xa7, 0x2b, 0xa6, 0x08, 0xff, 0xe6,
0xb7, 0xb1, 0xb3, 0xb1, 0x97, 0x1c, 0x23, 0x08, 0xbb, 0x54, 0xae, 0xc8, 0x27, 0x00, 0xe9, 0x7c,
0xea, 0x31, 0xff, 0x20, 0x7c, 0x16, 0x61, 0xff, 0xed, 0x8d, 0xfe, 0x5f, 0x86, 0xf2, 0x97, 0xb8,
0xbf, 0x9f, 0x66, 0x5c, 0x85, 0x6a, 0xea, 0x79, 0xea, 0xd6, 0x8a, 0xd4, 0xa9, 0x39, 0xdf, 0xd7,
0xe7, 0x7c, 0xb5, 0x4d, 0x0c, 0x9a, 0xda, 0xc4, 0x7a, 0xa5, 0x4d, 0x90, 0x0f, 0xa0, 0xfb, 0xdc,
0x0b, 0x42, 0x6e, 0x35, 0xc1, 0xde, 0xda, 0x1b, 0x5d, 0x2b, 0x7b, 0xf9, 0x45, 0xbe, 0x4d, 0x95,
0x26, 0x37, 0x8c, 0x81, 0xc9, 0x0d, 0x6f, 0x08, 0xc3, 0xba, 0x8c, 0x1b, 0x46, 0x47, 0xee, 0xf3,
0xcc, 0x88, 0x2e, 0xaa, 0x04, 0x3c, 0x6e, 0xcf, 0xbc, 0x09, 0x8b, 0x62, 0xec, 0x9c, 0x26, 0x95,
0x2b, 0x77, 0xc8, 0x71, 0xf4, 0xad, 0xb4, 0x8d, 0xc1, 0x38, 0x1f, 0x78, 0x5f, 0xc3, 0x86, 0xd2,
0x97, 0xb1, 0x6c, 0x80, 0x5e, 0x0e, 0x21, 0xb3, 0x0e, 0x42, 0x96, 0x06, 0x21, 0xf7, 0x17, 0x03,
0xb6, 0x4a, 0xb7, 0x8f, 0x83, 0x84, 0x45, 0x8d, 0xd8, 0xbe, 0xb0, 0x01, 0x2e, 0x9d, 0x60, 0x62,
0x5a, 0x08, 0x74, 0xb1, 0xe0, 0xb7, 0x4f, 0x83, 0xd8, 0xc7, 0x7e, 0x8c, 0x98, 0xb6, 0xa9, 0x12,
0x28, 0x28, 0xb4, 0x35, 0x28, 0xb8, 0x07, 0xb0, 0xa9, 0x3c, 0x7d, 0xc0, 0xf3, 0x70, 0x81, 0x48,
0x14, 0x4e, 0x99, 0xbb, 0x96, 0x7a, 0xf5, 0xf7, 0x06, 0x6c, 0x57, 0xee, 0xba, 0xd8, 0xbb, 0xb5,
0xeb, 0xea, 0xde, 0x68, 0x2d, 0x7d, 0x63, 0xab, 0xf2, 0x46, 0xf7, 0x6f, 0x74, 0x61, 0x3e, 0xcb,
0xa4, 0x13, 0x8f, 0xa2, 0xf8, 0xc4, 0x9b, 0xe1, 0x8b, 0xaa, 0x74, 0xcf, 0xa8, 0xa1, 0x7b, 0x95,
0x56, 0x6f, 0x36, 0xb7, 0x7a, 0xab, 0xa6, 0xd5, 0x97, 0x29, 0x54, 0x6b, 0x81, 0x42, 0x2d, 0x8c,
0x02, 0xfb, 0x62, 0xa3, 0xa0, 0x5d, 0x3b, 0x0a, 0xfe, 0x6a, 0xc1, 0x35, 0xfd, 0xc9, 0x77, 0xd3,
0x38, 0xf6, 0x43, 0x86, 0x6f, 0x56, 0xcd, 0xd2, 0x28, 0x35, 0xcb, 0x9c, 0xd6, 0x9a, 0x1a, 0xad,
0x5d, 0x42, 0x48, 0xad, 0xcb, 0x13, 0xd2, 0xd6, 0xe5, 0x09, 0xa9, 0xbd, 0x9c, 0x90, 0x16, 0xe0,
0x68, 0x9f, 0x43, 0x38, 0x3b, 0x8b, 0x4d, 0xf7, 0x5c, 0x32, 0xb9, 0xfa, 0x6a, 0x64, 0xb2, 0xdb,
0x48, 0x26, 0x2b, 0x48, 0x82, 0x66, 0x24, 0xf5, 0x6a, 0x90, 0xb4, 0x48, 0x49, 0xd7, 0x2e, 0x41,
0x49, 0xab, 0x5d, 0xbe, 0xdf, 0xd4, 0xe5, 0x07, 0x55, 0x32, 0xb8, 0x0f, 0x3b, 0x3a, 0xb4, 0x64,
0x35, 0x3f, 0xd0, 0xa2, 0x5c, 0xc9, 0x83, 0x81, 0xfd, 0x40, 0x17, 0xb9, 0x07, 0xbc, 0x15, 0xaa,
0x3b, 0x9e, 0x1e, 0x47, 0xa7, 0x88, 0xcd, 0x77, 0xa1, 0x13, 0xcb, 0x47, 0x89, 0x9f, 0x91, 0xd7,
0x16, 0x38, 0xa0, 0x7c, 0x57, 0xae, 0xe7, 0xde, 0x83, 0xcd, 0xbc, 0xae, 0xf1, 0x6e, 0xf5, 0xdb,
0x37, 0xcc, 0xcd, 0xd7, 0x0f, 0xec, 0x12, 0xf1, 0x71, 0x7f, 0x33, 0xe0, 0x4a, 0xd5, 0xc8, 0x65,
0x2f, 0x59, 0xd2, 0x97, 0xf9, 0xa4, 0xcf, 0xe6, 0x79, 0x09, 0xe0, 0x77, 0x3e, 0x94, 0xed, 0x9a,
0xa1, 0xac, 0x77, 0xe2, 0x82, 0x25, 0x74, 0x6a, 0x59, 0xc2, 0xaa, 0xce, 0x12, 0xdc, 0xfb, 0xb0,
0x51, 0x7d, 0x41, 0xf2, 0x6f, 0x22, 0xfa, 0x83, 0x59, 0x5c, 0xc4, 0x11, 0xdc, 0x10, 0x8b, 0xfa,
0x3e, 0x9d, 0xfb, 0x6d, 0xd5, 0xfa, 0xdd, 0x2a, 0xb1, 0x9b, 0x2a, 0x24, 0xed, 0x26, 0x48, 0xb6,
0xab, 0xc4, 0xa3, 0xca, 0x20, 0x3a, 0x4d, 0x0c, 0x62, 0x75, 0x39, 0x83, 0xe8, 0x96, 0x18, 0xc4,
0x18, 0xc8, 0x42, 0x28, 0x12, 0x32, 0xaa, 0x06, 0xd5, 0x59, 0xfc, 0x09, 0x52, 0x8d, 0xea, 0xed,
0x02, 0x5f, 0x82, 0xaa, 0x51, 0x7f, 0xa2, 0x72, 0x6e, 0x54, 0x73, 0xce, 0xf1, 0x62, 0x2a, 0xbc,
0x68, 0xb9, 0x2d, 0x4e, 0x37, 0xe7, 0xb6, 0x50, 0x55, 0x5e, 0xfc, 0x6a, 0xc0, 0x56, 0x1d, 0x63,
0x24, 0xfb, 0xd0, 0x39, 0x12, 0x9f, 0xf2, 0xae, 0xbd, 0x73, 0xf8, 0xe5, 0x50, 0xfe, 0xbd, 0x17,
0xb2, 0x38, 0xa3, 0xf9, 0xc1, 0xeb, 0x87, 0xb0, 0xa6, 0x6f, 0x70, 0x90, 0xbf, 0xf0, 0x33, 0x39,
0xda, 0xf9, 0x27, 0x19, 0xca, 0x5f, 0x54, 0xf2, 0x17, 0x9e, 0xb3, 0xc4, 0xdf, 0x84, 0x0a, 0xb5,
0x8f, 0xcd, 0x8f, 0x0c, 0xf7, 0x7d, 0x70, 0xf4, 0x5e, 0x91, 0x4f, 0x02, 0x9c, 0x9a, 0x0e, 0x74,
0x38, 0x21, 0xf2, 0x13, 0x11, 0x81, 0x2e, 0xcd, 0x97, 0xee, 0x67, 0x45, 0xb8, 0x0b, 0xce, 0x49,
0x6e, 0x81, 0xcd, 0x59, 0x67, 0x1e, 0xad, 0xed, 0x7a, 0x6e, 0x4a, 0x85, 0x92, 0x3b, 0x81, 0xf5,
0xca, 0x4e, 0xc1, 0xc5, 0x0c, 0x8d, 0x8b, 0x95, 0x90, 0x69, 0x56, 0x91, 0xb9, 0x03, 0xc0, 0x07,
0xa9, 0xdc, 0xb6, 0x10, 0x5b, 0x9a, 0xc4, 0xfd, 0xae, 0xc8, 0x2b, 0x37, 0x22, 0x4b, 0xed, 0xb5,
0x9b, 0x51, 0x45, 0xda, 0xd2, 0x19, 0xa9, 0x02, 0xb7, 0x32, 0xde, 0x0c, 0x6e, 0xa5, 0xab, 0x60,
0xf5, 0xa3, 0x01, 0x57, 0x15, 0xcb, 0xe3, 0x1a, 0xff, 0x01, 0x72, 0xeb, 0x7e, 0x03, 0xa4, 0xec,
0xd4, 0xeb, 0xe4, 0xf3, 0x47, 0x6d, 0xfc, 0xef, 0xeb, 0x7b, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff,
0xee, 0xc1, 0x98, 0xcd, 0x8e, 0x15, 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