Commit c6625029 authored by vipwzw's avatar vipwzw

auto ci

parent aa8a0c88
...@@ -273,7 +273,6 @@ func (a *action) nodeJoin(config *pt.ParaNodeAddrConfig) (*types.Receipt, error) ...@@ -273,7 +273,6 @@ func (a *action) nodeJoin(config *pt.ParaNodeAddrConfig) (*types.Receipt, error)
return receipt, nil return receipt, nil
} }
if addrStat.Status == pt.ParacrossNodeQuited { if addrStat.Status == pt.ParacrossNodeQuited {
stat := &pt.ParaNodeIdStatus{ stat := &pt.ParaNodeIdStatus{
Id: calcParaNodeIDKey(config.Title, common.ToHex(a.txhash)), Id: calcParaNodeIDKey(config.Title, common.ToHex(a.txhash)),
......
...@@ -484,7 +484,11 @@ func (m *ParaNodeVoteDetail) GetVotes() []string { ...@@ -484,7 +484,11 @@ func (m *ParaNodeVoteDetail) GetVotes() []string {
} }
type ParaNodeAddrIdStatus struct { type ParaNodeAddrIdStatus struct {
ProposalId string `protobuf:"bytes,1,opt,name=proposalId,proto3" json:"proposalId,omitempty"` Addr string `protobuf:"bytes,1,opt,name=addr,proto3" json:"addr,omitempty"`
ProposalId string `protobuf:"bytes,2,opt,name=proposalId,proto3" json:"proposalId,omitempty"`
QuitId string `protobuf:"bytes,3,opt,name=quitId,proto3" json:"quitId,omitempty"`
Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"` XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"` XXX_sizecache int32 `json:"-"`
...@@ -515,6 +519,13 @@ func (m *ParaNodeAddrIdStatus) XXX_DiscardUnknown() { ...@@ -515,6 +519,13 @@ func (m *ParaNodeAddrIdStatus) XXX_DiscardUnknown() {
var xxx_messageInfo_ParaNodeAddrIdStatus proto.InternalMessageInfo var xxx_messageInfo_ParaNodeAddrIdStatus proto.InternalMessageInfo
func (m *ParaNodeAddrIdStatus) GetAddr() string {
if m != nil {
return m.Addr
}
return ""
}
func (m *ParaNodeAddrIdStatus) GetProposalId() string { func (m *ParaNodeAddrIdStatus) GetProposalId() string {
if m != nil { if m != nil {
return m.ProposalId return m.ProposalId
...@@ -522,6 +533,27 @@ func (m *ParaNodeAddrIdStatus) GetProposalId() string { ...@@ -522,6 +533,27 @@ func (m *ParaNodeAddrIdStatus) GetProposalId() string {
return "" return ""
} }
func (m *ParaNodeAddrIdStatus) GetQuitId() string {
if m != nil {
return m.QuitId
}
return ""
}
func (m *ParaNodeAddrIdStatus) GetStatus() int32 {
if m != nil {
return m.Status
}
return 0
}
func (m *ParaNodeAddrIdStatus) GetTitle() string {
if m != nil {
return m.Title
}
return ""
}
type ParaNodeIdStatus struct { type ParaNodeIdStatus struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"` Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
...@@ -680,6 +712,61 @@ func (m *ReceiptParaNodeConfig) GetCurrent() *ParaNodeIdStatus { ...@@ -680,6 +712,61 @@ func (m *ReceiptParaNodeConfig) GetCurrent() *ParaNodeIdStatus {
return nil return nil
} }
type ReceiptParaNodeAddrStatUpdate struct {
FromAddr string `protobuf:"bytes,1,opt,name=fromAddr,proto3" json:"fromAddr,omitempty"`
Prev *ParaNodeAddrIdStatus `protobuf:"bytes,2,opt,name=prev,proto3" json:"prev,omitempty"`
Current *ParaNodeAddrIdStatus `protobuf:"bytes,3,opt,name=current,proto3" json:"current,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReceiptParaNodeAddrStatUpdate) Reset() { *m = ReceiptParaNodeAddrStatUpdate{} }
func (m *ReceiptParaNodeAddrStatUpdate) String() string { return proto.CompactTextString(m) }
func (*ReceiptParaNodeAddrStatUpdate) ProtoMessage() {}
func (*ReceiptParaNodeAddrStatUpdate) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{10}
}
func (m *ReceiptParaNodeAddrStatUpdate) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReceiptParaNodeAddrStatUpdate.Unmarshal(m, b)
}
func (m *ReceiptParaNodeAddrStatUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReceiptParaNodeAddrStatUpdate.Marshal(b, m, deterministic)
}
func (m *ReceiptParaNodeAddrStatUpdate) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReceiptParaNodeAddrStatUpdate.Merge(m, src)
}
func (m *ReceiptParaNodeAddrStatUpdate) XXX_Size() int {
return xxx_messageInfo_ReceiptParaNodeAddrStatUpdate.Size(m)
}
func (m *ReceiptParaNodeAddrStatUpdate) XXX_DiscardUnknown() {
xxx_messageInfo_ReceiptParaNodeAddrStatUpdate.DiscardUnknown(m)
}
var xxx_messageInfo_ReceiptParaNodeAddrStatUpdate proto.InternalMessageInfo
func (m *ReceiptParaNodeAddrStatUpdate) GetFromAddr() string {
if m != nil {
return m.FromAddr
}
return ""
}
func (m *ReceiptParaNodeAddrStatUpdate) GetPrev() *ParaNodeAddrIdStatus {
if m != nil {
return m.Prev
}
return nil
}
func (m *ReceiptParaNodeAddrStatUpdate) GetCurrent() *ParaNodeAddrIdStatus {
if m != nil {
return m.Current
}
return nil
}
type ReceiptParaNodeVoteDone struct { type ReceiptParaNodeVoteDone struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"` Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
...@@ -698,7 +785,7 @@ func (m *ReceiptParaNodeVoteDone) Reset() { *m = ReceiptParaNodeVoteDone ...@@ -698,7 +785,7 @@ func (m *ReceiptParaNodeVoteDone) Reset() { *m = ReceiptParaNodeVoteDone
func (m *ReceiptParaNodeVoteDone) String() string { return proto.CompactTextString(m) } func (m *ReceiptParaNodeVoteDone) String() string { return proto.CompactTextString(m) }
func (*ReceiptParaNodeVoteDone) ProtoMessage() {} func (*ReceiptParaNodeVoteDone) ProtoMessage() {}
func (*ReceiptParaNodeVoteDone) Descriptor() ([]byte, []int) { func (*ReceiptParaNodeVoteDone) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{10} return fileDescriptor_6a397e38c9ea6747, []int{11}
} }
func (m *ReceiptParaNodeVoteDone) XXX_Unmarshal(b []byte) error { func (m *ReceiptParaNodeVoteDone) XXX_Unmarshal(b []byte) error {
...@@ -791,7 +878,7 @@ func (m *ParaNodeGroupConfig) Reset() { *m = ParaNodeGroupConfig{} } ...@@ -791,7 +878,7 @@ func (m *ParaNodeGroupConfig) Reset() { *m = ParaNodeGroupConfig{} }
func (m *ParaNodeGroupConfig) String() string { return proto.CompactTextString(m) } func (m *ParaNodeGroupConfig) String() string { return proto.CompactTextString(m) }
func (*ParaNodeGroupConfig) ProtoMessage() {} func (*ParaNodeGroupConfig) ProtoMessage() {}
func (*ParaNodeGroupConfig) Descriptor() ([]byte, []int) { func (*ParaNodeGroupConfig) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{11} return fileDescriptor_6a397e38c9ea6747, []int{12}
} }
func (m *ParaNodeGroupConfig) XXX_Unmarshal(b []byte) error { func (m *ParaNodeGroupConfig) XXX_Unmarshal(b []byte) error {
...@@ -873,7 +960,7 @@ func (m *ParaNodeGroupStatus) Reset() { *m = ParaNodeGroupStatus{} } ...@@ -873,7 +960,7 @@ func (m *ParaNodeGroupStatus) Reset() { *m = ParaNodeGroupStatus{} }
func (m *ParaNodeGroupStatus) String() string { return proto.CompactTextString(m) } func (m *ParaNodeGroupStatus) String() string { return proto.CompactTextString(m) }
func (*ParaNodeGroupStatus) ProtoMessage() {} func (*ParaNodeGroupStatus) ProtoMessage() {}
func (*ParaNodeGroupStatus) Descriptor() ([]byte, []int) { func (*ParaNodeGroupStatus) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{12} return fileDescriptor_6a397e38c9ea6747, []int{13}
} }
func (m *ParaNodeGroupStatus) XXX_Unmarshal(b []byte) error { func (m *ParaNodeGroupStatus) XXX_Unmarshal(b []byte) error {
...@@ -971,7 +1058,7 @@ func (m *ReceiptParaNodeGroupConfig) Reset() { *m = ReceiptParaNodeGroup ...@@ -971,7 +1058,7 @@ func (m *ReceiptParaNodeGroupConfig) Reset() { *m = ReceiptParaNodeGroup
func (m *ReceiptParaNodeGroupConfig) String() string { return proto.CompactTextString(m) } func (m *ReceiptParaNodeGroupConfig) String() string { return proto.CompactTextString(m) }
func (*ReceiptParaNodeGroupConfig) ProtoMessage() {} func (*ReceiptParaNodeGroupConfig) ProtoMessage() {}
func (*ReceiptParaNodeGroupConfig) Descriptor() ([]byte, []int) { func (*ReceiptParaNodeGroupConfig) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{13} return fileDescriptor_6a397e38c9ea6747, []int{14}
} }
func (m *ReceiptParaNodeGroupConfig) XXX_Unmarshal(b []byte) error { func (m *ReceiptParaNodeGroupConfig) XXX_Unmarshal(b []byte) error {
...@@ -1035,7 +1122,7 @@ func (m *ReqParacrossNodeInfo) Reset() { *m = ReqParacrossNodeInfo{} } ...@@ -1035,7 +1122,7 @@ func (m *ReqParacrossNodeInfo) Reset() { *m = ReqParacrossNodeInfo{} }
func (m *ReqParacrossNodeInfo) String() string { return proto.CompactTextString(m) } func (m *ReqParacrossNodeInfo) String() string { return proto.CompactTextString(m) }
func (*ReqParacrossNodeInfo) ProtoMessage() {} func (*ReqParacrossNodeInfo) ProtoMessage() {}
func (*ReqParacrossNodeInfo) Descriptor() ([]byte, []int) { func (*ReqParacrossNodeInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{14} return fileDescriptor_6a397e38c9ea6747, []int{15}
} }
func (m *ReqParacrossNodeInfo) XXX_Unmarshal(b []byte) error { func (m *ReqParacrossNodeInfo) XXX_Unmarshal(b []byte) error {
...@@ -1095,7 +1182,7 @@ func (m *RespParacrossNodeAddrs) Reset() { *m = RespParacrossNodeAddrs{} ...@@ -1095,7 +1182,7 @@ func (m *RespParacrossNodeAddrs) Reset() { *m = RespParacrossNodeAddrs{}
func (m *RespParacrossNodeAddrs) String() string { return proto.CompactTextString(m) } func (m *RespParacrossNodeAddrs) String() string { return proto.CompactTextString(m) }
func (*RespParacrossNodeAddrs) ProtoMessage() {} func (*RespParacrossNodeAddrs) ProtoMessage() {}
func (*RespParacrossNodeAddrs) Descriptor() ([]byte, []int) { func (*RespParacrossNodeAddrs) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{15} return fileDescriptor_6a397e38c9ea6747, []int{16}
} }
func (m *RespParacrossNodeAddrs) XXX_Unmarshal(b []byte) error { func (m *RespParacrossNodeAddrs) XXX_Unmarshal(b []byte) error {
...@@ -1134,7 +1221,7 @@ func (m *RespParacrossNodeGroups) Reset() { *m = RespParacrossNodeGroups ...@@ -1134,7 +1221,7 @@ func (m *RespParacrossNodeGroups) Reset() { *m = RespParacrossNodeGroups
func (m *RespParacrossNodeGroups) String() string { return proto.CompactTextString(m) } func (m *RespParacrossNodeGroups) String() string { return proto.CompactTextString(m) }
func (*RespParacrossNodeGroups) ProtoMessage() {} func (*RespParacrossNodeGroups) ProtoMessage() {}
func (*RespParacrossNodeGroups) Descriptor() ([]byte, []int) { func (*RespParacrossNodeGroups) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{16} return fileDescriptor_6a397e38c9ea6747, []int{17}
} }
func (m *RespParacrossNodeGroups) XXX_Unmarshal(b []byte) error { func (m *RespParacrossNodeGroups) XXX_Unmarshal(b []byte) error {
...@@ -1176,7 +1263,7 @@ func (m *ParaBlock2MainMap) Reset() { *m = ParaBlock2MainMap{} } ...@@ -1176,7 +1263,7 @@ func (m *ParaBlock2MainMap) Reset() { *m = ParaBlock2MainMap{} }
func (m *ParaBlock2MainMap) String() string { return proto.CompactTextString(m) } func (m *ParaBlock2MainMap) String() string { return proto.CompactTextString(m) }
func (*ParaBlock2MainMap) ProtoMessage() {} func (*ParaBlock2MainMap) ProtoMessage() {}
func (*ParaBlock2MainMap) Descriptor() ([]byte, []int) { func (*ParaBlock2MainMap) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{17} return fileDescriptor_6a397e38c9ea6747, []int{18}
} }
func (m *ParaBlock2MainMap) XXX_Unmarshal(b []byte) error { func (m *ParaBlock2MainMap) XXX_Unmarshal(b []byte) error {
...@@ -1236,7 +1323,7 @@ func (m *ParaBlock2MainInfo) Reset() { *m = ParaBlock2MainInfo{} } ...@@ -1236,7 +1323,7 @@ func (m *ParaBlock2MainInfo) Reset() { *m = ParaBlock2MainInfo{} }
func (m *ParaBlock2MainInfo) String() string { return proto.CompactTextString(m) } func (m *ParaBlock2MainInfo) String() string { return proto.CompactTextString(m) }
func (*ParaBlock2MainInfo) ProtoMessage() {} func (*ParaBlock2MainInfo) ProtoMessage() {}
func (*ParaBlock2MainInfo) Descriptor() ([]byte, []int) { func (*ParaBlock2MainInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{18} return fileDescriptor_6a397e38c9ea6747, []int{19}
} }
func (m *ParaBlock2MainInfo) XXX_Unmarshal(b []byte) error { func (m *ParaBlock2MainInfo) XXX_Unmarshal(b []byte) error {
...@@ -1289,7 +1376,7 @@ func (m *ParacrossNodeStatus) Reset() { *m = ParacrossNodeStatus{} } ...@@ -1289,7 +1376,7 @@ func (m *ParacrossNodeStatus) Reset() { *m = ParacrossNodeStatus{} }
func (m *ParacrossNodeStatus) String() string { return proto.CompactTextString(m) } func (m *ParacrossNodeStatus) String() string { return proto.CompactTextString(m) }
func (*ParacrossNodeStatus) ProtoMessage() {} func (*ParacrossNodeStatus) ProtoMessage() {}
func (*ParacrossNodeStatus) Descriptor() ([]byte, []int) { func (*ParacrossNodeStatus) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{19} return fileDescriptor_6a397e38c9ea6747, []int{20}
} }
func (m *ParacrossNodeStatus) XXX_Unmarshal(b []byte) error { func (m *ParacrossNodeStatus) XXX_Unmarshal(b []byte) error {
...@@ -1419,7 +1506,7 @@ func (m *ParacrossCommitAction) Reset() { *m = ParacrossCommitAction{} } ...@@ -1419,7 +1506,7 @@ func (m *ParacrossCommitAction) Reset() { *m = ParacrossCommitAction{} }
func (m *ParacrossCommitAction) String() string { return proto.CompactTextString(m) } func (m *ParacrossCommitAction) String() string { return proto.CompactTextString(m) }
func (*ParacrossCommitAction) ProtoMessage() {} func (*ParacrossCommitAction) ProtoMessage() {}
func (*ParacrossCommitAction) Descriptor() ([]byte, []int) { func (*ParacrossCommitAction) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{20} return fileDescriptor_6a397e38c9ea6747, []int{21}
} }
func (m *ParacrossCommitAction) XXX_Unmarshal(b []byte) error { func (m *ParacrossCommitAction) XXX_Unmarshal(b []byte) error {
...@@ -1459,7 +1546,7 @@ func (m *ParacrossMinerAction) Reset() { *m = ParacrossMinerAction{} } ...@@ -1459,7 +1546,7 @@ func (m *ParacrossMinerAction) Reset() { *m = ParacrossMinerAction{} }
func (m *ParacrossMinerAction) String() string { return proto.CompactTextString(m) } func (m *ParacrossMinerAction) String() string { return proto.CompactTextString(m) }
func (*ParacrossMinerAction) ProtoMessage() {} func (*ParacrossMinerAction) ProtoMessage() {}
func (*ParacrossMinerAction) Descriptor() ([]byte, []int) { func (*ParacrossMinerAction) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{21} return fileDescriptor_6a397e38c9ea6747, []int{22}
} }
func (m *ParacrossMinerAction) XXX_Unmarshal(b []byte) error { func (m *ParacrossMinerAction) XXX_Unmarshal(b []byte) error {
...@@ -1516,7 +1603,7 @@ func (m *ParacrossAction) Reset() { *m = ParacrossAction{} } ...@@ -1516,7 +1603,7 @@ func (m *ParacrossAction) Reset() { *m = ParacrossAction{} }
func (m *ParacrossAction) String() string { return proto.CompactTextString(m) } func (m *ParacrossAction) String() string { return proto.CompactTextString(m) }
func (*ParacrossAction) ProtoMessage() {} func (*ParacrossAction) ProtoMessage() {}
func (*ParacrossAction) Descriptor() ([]byte, []int) { func (*ParacrossAction) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{22} return fileDescriptor_6a397e38c9ea6747, []int{23}
} }
func (m *ParacrossAction) XXX_Unmarshal(b []byte) error { func (m *ParacrossAction) XXX_Unmarshal(b []byte) error {
...@@ -1894,7 +1981,7 @@ func (m *ReceiptParacrossCommit) Reset() { *m = ReceiptParacrossCommit{} ...@@ -1894,7 +1981,7 @@ func (m *ReceiptParacrossCommit) Reset() { *m = ReceiptParacrossCommit{}
func (m *ReceiptParacrossCommit) String() string { return proto.CompactTextString(m) } func (m *ReceiptParacrossCommit) String() string { return proto.CompactTextString(m) }
func (*ReceiptParacrossCommit) ProtoMessage() {} func (*ReceiptParacrossCommit) ProtoMessage() {}
func (*ReceiptParacrossCommit) Descriptor() ([]byte, []int) { func (*ReceiptParacrossCommit) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{23} return fileDescriptor_6a397e38c9ea6747, []int{24}
} }
func (m *ReceiptParacrossCommit) XXX_Unmarshal(b []byte) error { func (m *ReceiptParacrossCommit) XXX_Unmarshal(b []byte) error {
...@@ -1954,7 +2041,7 @@ func (m *ReceiptParacrossMiner) Reset() { *m = ReceiptParacrossMiner{} } ...@@ -1954,7 +2041,7 @@ func (m *ReceiptParacrossMiner) Reset() { *m = ReceiptParacrossMiner{} }
func (m *ReceiptParacrossMiner) String() string { return proto.CompactTextString(m) } func (m *ReceiptParacrossMiner) String() string { return proto.CompactTextString(m) }
func (*ReceiptParacrossMiner) ProtoMessage() {} func (*ReceiptParacrossMiner) ProtoMessage() {}
func (*ReceiptParacrossMiner) Descriptor() ([]byte, []int) { func (*ReceiptParacrossMiner) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{24} return fileDescriptor_6a397e38c9ea6747, []int{25}
} }
func (m *ReceiptParacrossMiner) XXX_Unmarshal(b []byte) error { func (m *ReceiptParacrossMiner) XXX_Unmarshal(b []byte) error {
...@@ -2000,7 +2087,7 @@ func (m *ReceiptParacrossDone) Reset() { *m = ReceiptParacrossDone{} } ...@@ -2000,7 +2087,7 @@ func (m *ReceiptParacrossDone) Reset() { *m = ReceiptParacrossDone{} }
func (m *ReceiptParacrossDone) String() string { return proto.CompactTextString(m) } func (m *ReceiptParacrossDone) String() string { return proto.CompactTextString(m) }
func (*ReceiptParacrossDone) ProtoMessage() {} func (*ReceiptParacrossDone) ProtoMessage() {}
func (*ReceiptParacrossDone) Descriptor() ([]byte, []int) { func (*ReceiptParacrossDone) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{25} return fileDescriptor_6a397e38c9ea6747, []int{26}
} }
func (m *ReceiptParacrossDone) XXX_Unmarshal(b []byte) error { func (m *ReceiptParacrossDone) XXX_Unmarshal(b []byte) error {
...@@ -2089,7 +2176,7 @@ func (m *ReceiptParacrossRecord) Reset() { *m = ReceiptParacrossRecord{} ...@@ -2089,7 +2176,7 @@ func (m *ReceiptParacrossRecord) Reset() { *m = ReceiptParacrossRecord{}
func (m *ReceiptParacrossRecord) String() string { return proto.CompactTextString(m) } func (m *ReceiptParacrossRecord) String() string { return proto.CompactTextString(m) }
func (*ReceiptParacrossRecord) ProtoMessage() {} func (*ReceiptParacrossRecord) ProtoMessage() {}
func (*ReceiptParacrossRecord) Descriptor() ([]byte, []int) { func (*ReceiptParacrossRecord) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{26} return fileDescriptor_6a397e38c9ea6747, []int{27}
} }
func (m *ReceiptParacrossRecord) XXX_Unmarshal(b []byte) error { func (m *ReceiptParacrossRecord) XXX_Unmarshal(b []byte) error {
...@@ -2137,7 +2224,7 @@ func (m *ParacrossTx) Reset() { *m = ParacrossTx{} } ...@@ -2137,7 +2224,7 @@ func (m *ParacrossTx) Reset() { *m = ParacrossTx{} }
func (m *ParacrossTx) String() string { return proto.CompactTextString(m) } func (m *ParacrossTx) String() string { return proto.CompactTextString(m) }
func (*ParacrossTx) ProtoMessage() {} func (*ParacrossTx) ProtoMessage() {}
func (*ParacrossTx) Descriptor() ([]byte, []int) { func (*ParacrossTx) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{27} return fileDescriptor_6a397e38c9ea6747, []int{28}
} }
func (m *ParacrossTx) XXX_Unmarshal(b []byte) error { func (m *ParacrossTx) XXX_Unmarshal(b []byte) error {
...@@ -2178,7 +2265,7 @@ func (m *ReqParacrossTitleHeight) Reset() { *m = ReqParacrossTitleHeight ...@@ -2178,7 +2265,7 @@ func (m *ReqParacrossTitleHeight) Reset() { *m = ReqParacrossTitleHeight
func (m *ReqParacrossTitleHeight) String() string { return proto.CompactTextString(m) } func (m *ReqParacrossTitleHeight) String() string { return proto.CompactTextString(m) }
func (*ReqParacrossTitleHeight) ProtoMessage() {} func (*ReqParacrossTitleHeight) ProtoMessage() {}
func (*ReqParacrossTitleHeight) Descriptor() ([]byte, []int) { func (*ReqParacrossTitleHeight) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{28} return fileDescriptor_6a397e38c9ea6747, []int{29}
} }
func (m *ReqParacrossTitleHeight) XXX_Unmarshal(b []byte) error { func (m *ReqParacrossTitleHeight) XXX_Unmarshal(b []byte) error {
...@@ -2231,7 +2318,7 @@ func (m *RespParacrossDone) Reset() { *m = RespParacrossDone{} } ...@@ -2231,7 +2318,7 @@ func (m *RespParacrossDone) Reset() { *m = RespParacrossDone{} }
func (m *RespParacrossDone) String() string { return proto.CompactTextString(m) } func (m *RespParacrossDone) String() string { return proto.CompactTextString(m) }
func (*RespParacrossDone) ProtoMessage() {} func (*RespParacrossDone) ProtoMessage() {}
func (*RespParacrossDone) Descriptor() ([]byte, []int) { func (*RespParacrossDone) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{29} return fileDescriptor_6a397e38c9ea6747, []int{30}
} }
func (m *RespParacrossDone) XXX_Unmarshal(b []byte) error { func (m *RespParacrossDone) XXX_Unmarshal(b []byte) error {
...@@ -2319,7 +2406,7 @@ func (m *RespParacrossTitles) Reset() { *m = RespParacrossTitles{} } ...@@ -2319,7 +2406,7 @@ func (m *RespParacrossTitles) Reset() { *m = RespParacrossTitles{} }
func (m *RespParacrossTitles) String() string { return proto.CompactTextString(m) } func (m *RespParacrossTitles) String() string { return proto.CompactTextString(m) }
func (*RespParacrossTitles) ProtoMessage() {} func (*RespParacrossTitles) ProtoMessage() {}
func (*RespParacrossTitles) Descriptor() ([]byte, []int) { func (*RespParacrossTitles) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{30} return fileDescriptor_6a397e38c9ea6747, []int{31}
} }
func (m *RespParacrossTitles) XXX_Unmarshal(b []byte) error { func (m *RespParacrossTitles) XXX_Unmarshal(b []byte) error {
...@@ -2359,7 +2446,7 @@ func (m *ReqParacrossTitleHash) Reset() { *m = ReqParacrossTitleHash{} } ...@@ -2359,7 +2446,7 @@ func (m *ReqParacrossTitleHash) Reset() { *m = ReqParacrossTitleHash{} }
func (m *ReqParacrossTitleHash) String() string { return proto.CompactTextString(m) } func (m *ReqParacrossTitleHash) String() string { return proto.CompactTextString(m) }
func (*ReqParacrossTitleHash) ProtoMessage() {} func (*ReqParacrossTitleHash) ProtoMessage() {}
func (*ReqParacrossTitleHash) Descriptor() ([]byte, []int) { func (*ReqParacrossTitleHash) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{31} return fileDescriptor_6a397e38c9ea6747, []int{32}
} }
func (m *ReqParacrossTitleHash) XXX_Unmarshal(b []byte) error { func (m *ReqParacrossTitleHash) XXX_Unmarshal(b []byte) error {
...@@ -2419,7 +2506,7 @@ func (m *ParacrossAsset) Reset() { *m = ParacrossAsset{} } ...@@ -2419,7 +2506,7 @@ func (m *ParacrossAsset) Reset() { *m = ParacrossAsset{} }
func (m *ParacrossAsset) String() string { return proto.CompactTextString(m) } func (m *ParacrossAsset) String() string { return proto.CompactTextString(m) }
func (*ParacrossAsset) ProtoMessage() {} func (*ParacrossAsset) ProtoMessage() {}
func (*ParacrossAsset) Descriptor() ([]byte, []int) { func (*ParacrossAsset) Descriptor() ([]byte, []int) {
return fileDescriptor_6a397e38c9ea6747, []int{32} return fileDescriptor_6a397e38c9ea6747, []int{33}
} }
func (m *ParacrossAsset) XXX_Unmarshal(b []byte) error { func (m *ParacrossAsset) XXX_Unmarshal(b []byte) error {
...@@ -2528,6 +2615,7 @@ func init() { ...@@ -2528,6 +2615,7 @@ func init() {
proto.RegisterType((*ParaNodeAddrIdStatus)(nil), "types.ParaNodeAddrIdStatus") proto.RegisterType((*ParaNodeAddrIdStatus)(nil), "types.ParaNodeAddrIdStatus")
proto.RegisterType((*ParaNodeIdStatus)(nil), "types.ParaNodeIdStatus") proto.RegisterType((*ParaNodeIdStatus)(nil), "types.ParaNodeIdStatus")
proto.RegisterType((*ReceiptParaNodeConfig)(nil), "types.ReceiptParaNodeConfig") proto.RegisterType((*ReceiptParaNodeConfig)(nil), "types.ReceiptParaNodeConfig")
proto.RegisterType((*ReceiptParaNodeAddrStatUpdate)(nil), "types.ReceiptParaNodeAddrStatUpdate")
proto.RegisterType((*ReceiptParaNodeVoteDone)(nil), "types.ReceiptParaNodeVoteDone") proto.RegisterType((*ReceiptParaNodeVoteDone)(nil), "types.ReceiptParaNodeVoteDone")
proto.RegisterType((*ParaNodeGroupConfig)(nil), "types.ParaNodeGroupConfig") proto.RegisterType((*ParaNodeGroupConfig)(nil), "types.ParaNodeGroupConfig")
proto.RegisterType((*ParaNodeGroupStatus)(nil), "types.ParaNodeGroupStatus") proto.RegisterType((*ParaNodeGroupStatus)(nil), "types.ParaNodeGroupStatus")
...@@ -2556,119 +2644,123 @@ func init() { ...@@ -2556,119 +2644,123 @@ func init() {
func init() { proto.RegisterFile("paracross.proto", fileDescriptor_6a397e38c9ea6747) } func init() { proto.RegisterFile("paracross.proto", fileDescriptor_6a397e38c9ea6747) }
var fileDescriptor_6a397e38c9ea6747 = []byte{ var fileDescriptor_6a397e38c9ea6747 = []byte{
// 1788 bytes of a gzipped FileDescriptorProto // 1846 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0xcd, 0x6f, 0x23, 0x4b, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x19, 0x4d, 0x6f, 0x24, 0x47,
0x11, 0xf7, 0xf8, 0xdb, 0x95, 0xd8, 0x49, 0xfa, 0x6d, 0xb2, 0xc6, 0x3c, 0xf2, 0xac, 0xd1, 0x03, 0x75, 0x7a, 0xbe, 0xfd, 0xbc, 0xe3, 0xb5, 0x2b, 0x6b, 0xef, 0x30, 0x24, 0x9b, 0x51, 0x2b, 0x20,
0x05, 0x58, 0x05, 0x5e, 0x16, 0x2d, 0x42, 0x4f, 0x08, 0xf6, 0xe5, 0xed, 0xc6, 0xd1, 0x7e, 0x68, 0x03, 0x2b, 0x87, 0x78, 0x21, 0x08, 0x45, 0x08, 0x36, 0x4e, 0xe2, 0xb1, 0x92, 0x8d, 0xa2, 0xb6,
0xd5, 0x09, 0x70, 0x42, 0x62, 0xd6, 0xee, 0xc4, 0x23, 0xec, 0x99, 0xd9, 0xe9, 0xf6, 0x6e, 0xc2, 0x03, 0x27, 0x24, 0x7a, 0x67, 0xca, 0x76, 0x8b, 0x99, 0xee, 0xde, 0xae, 0x9a, 0x8d, 0xcd, 0x0d,
0x0d, 0x09, 0xfe, 0x05, 0x24, 0xc4, 0x95, 0x33, 0x17, 0xee, 0xfc, 0x01, 0x70, 0xe3, 0x3f, 0xe0, 0x09, 0xee, 0x9c, 0x90, 0x10, 0x47, 0x38, 0x73, 0xe1, 0xce, 0x0f, 0x80, 0x1b, 0xff, 0x80, 0x1b,
0xc6, 0x9d, 0x03, 0x57, 0x54, 0xd5, 0x3d, 0x33, 0xdd, 0xe3, 0x0f, 0x56, 0x4b, 0x2e, 0xdc, 0x5c, 0x77, 0x0e, 0x5c, 0xd1, 0x7b, 0x55, 0xd5, 0x5d, 0x55, 0xd3, 0x33, 0x59, 0x2d, 0x7b, 0xc9, 0x6d,
0xd5, 0xd5, 0x55, 0x5d, 0xbf, 0xfa, 0x1c, 0xc3, 0x4e, 0x12, 0xa4, 0xc1, 0x38, 0x8d, 0xa5, 0x3c, 0xde, 0xab, 0x57, 0xef, 0xfb, 0xab, 0x7a, 0xe0, 0x6e, 0x1e, 0x17, 0xf1, 0xb4, 0xc8, 0x84, 0x38,
0x4e, 0xd2, 0x58, 0xc5, 0xac, 0xa1, 0x6e, 0x13, 0x21, 0x07, 0x7b, 0x2a, 0x0d, 0x22, 0x19, 0x8c, 0xca, 0x8b, 0x4c, 0x66, 0xac, 0x23, 0x6f, 0x73, 0x2e, 0x46, 0x7b, 0xb2, 0x88, 0x53, 0x11, 0x4f,
0x55, 0x18, 0x47, 0xfa, 0x64, 0xb0, 0x3d, 0x8e, 0xe7, 0xf3, 0x9c, 0xda, 0x7d, 0x3d, 0x8b, 0xc7, 0x65, 0x92, 0xa5, 0xea, 0x64, 0x74, 0x67, 0x9a, 0x2d, 0x16, 0x25, 0xb4, 0xfb, 0x74, 0x9e, 0x4d,
0xbf, 0x1c, 0x4f, 0x83, 0x30, 0xe3, 0xf4, 0xc4, 0x8d, 0x18, 0x2f, 0x54, 0x9c, 0x6a, 0xda, 0x7f, 0x7f, 0x39, 0xbd, 0x8e, 0x13, 0x83, 0xd9, 0xe1, 0x37, 0x7c, 0xba, 0x94, 0x59, 0xa1, 0xe0, 0xf0,
0x0e, 0x07, 0xaf, 0x32, 0xe5, 0x17, 0x2a, 0x50, 0x0b, 0xf9, 0xa5, 0x50, 0x41, 0x38, 0x93, 0xec, 0x13, 0x38, 0xf8, 0xcc, 0x30, 0x3f, 0x97, 0xb1, 0x5c, 0x8a, 0x0f, 0xb8, 0x8c, 0x93, 0xb9, 0x60,
0x1e, 0x34, 0x82, 0xc9, 0x24, 0x95, 0x7d, 0x6f, 0x58, 0x3b, 0xea, 0x70, 0x4d, 0xb0, 0x8f, 0xa1, 0xf7, 0xa0, 0x13, 0xcf, 0x66, 0x85, 0x18, 0x06, 0xe3, 0xd6, 0xe1, 0x56, 0xa4, 0x00, 0xf6, 0x3a,
0x43, 0x3a, 0x47, 0x81, 0x9c, 0xf6, 0xab, 0xc3, 0xda, 0xd1, 0x36, 0x2f, 0x18, 0xfe, 0xdf, 0x3d, 0x6c, 0x11, 0xcf, 0x49, 0x2c, 0xae, 0x87, 0xcd, 0x71, 0xeb, 0xf0, 0x4e, 0x54, 0x21, 0xc2, 0x7f,
0xd8, 0xcf, 0xd5, 0x8d, 0x44, 0x78, 0x3d, 0x55, 0x5a, 0x29, 0x3b, 0x80, 0xa6, 0xa4, 0x5f, 0x7d, 0x06, 0xb0, 0x5f, 0xb2, 0x9b, 0xf0, 0xe4, 0xea, 0x5a, 0x2a, 0xa6, 0xec, 0x00, 0xba, 0x82, 0x7e,
0x6f, 0xe8, 0x1d, 0x35, 0xb8, 0xa1, 0xd0, 0x8a, 0x0a, 0xd5, 0x4c, 0xf4, 0xab, 0x43, 0x0f, 0xad, 0x0d, 0x83, 0x71, 0x70, 0xd8, 0x89, 0x34, 0x84, 0x52, 0x64, 0x22, 0xe7, 0x7c, 0xd8, 0x1c, 0x07,
0x10, 0x81, 0xd2, 0x53, 0xba, 0xdd, 0xaf, 0x0d, 0xbd, 0xa3, 0x1a, 0x37, 0x14, 0xfb, 0x3e, 0xb4, 0x28, 0x85, 0x00, 0xa4, 0xbe, 0xa6, 0xdb, 0xc3, 0xd6, 0x38, 0x38, 0x6c, 0x45, 0x1a, 0x62, 0x3f,
0x26, 0xfa, 0x79, 0xfd, 0xfa, 0xd0, 0x3b, 0xda, 0x3a, 0xf9, 0xda, 0x31, 0x21, 0x71, 0xbc, 0xda, 0x80, 0xde, 0x4c, 0xa9, 0x37, 0x6c, 0x8f, 0x83, 0xc3, 0xed, 0xe3, 0x37, 0x8e, 0xc8, 0x13, 0x47,
0x07, 0x9e, 0x49, 0xb3, 0x43, 0x80, 0x79, 0x10, 0x46, 0xfa, 0x49, 0xfd, 0x06, 0x29, 0xb5, 0x38, 0xf5, 0x36, 0x44, 0x86, 0x9a, 0x3d, 0x00, 0x58, 0xc4, 0x49, 0xaa, 0x54, 0x1a, 0x76, 0x88, 0xa9,
0x6c, 0x00, 0x6d, 0xa2, 0xd0, 0xab, 0xe6, 0xd0, 0x3b, 0xda, 0xe6, 0x39, 0xed, 0xff, 0xd3, 0x83, 0x85, 0x61, 0x23, 0xe8, 0x13, 0x84, 0x56, 0x75, 0xc7, 0xc1, 0xe1, 0x9d, 0xa8, 0x84, 0xc3, 0x7f,
0xfe, 0x4a, 0xa7, 0xb8, 0x4c, 0xee, 0xc8, 0x2f, 0xf7, 0x79, 0xf5, 0x8d, 0xcf, 0x6b, 0x90, 0xc2, 0x07, 0x30, 0xac, 0x35, 0x2a, 0x12, 0xf9, 0x2b, 0xb2, 0xcb, 0x55, 0xaf, 0xbd, 0x51, 0xbd, 0x0e,
0x9c, 0x66, 0x43, 0xd8, 0xc2, 0x98, 0x87, 0xea, 0x31, 0x45, 0xab, 0x49, 0xd1, 0xb2, 0x59, 0xec, 0x31, 0x2c, 0x61, 0x36, 0x86, 0x6d, 0x8c, 0x79, 0x22, 0x1f, 0x53, 0xb4, 0xba, 0x14, 0x2d, 0x1b,
0x08, 0x76, 0x34, 0xf9, 0x45, 0x1e, 0xb9, 0x16, 0x49, 0x95, 0xd9, 0xfe, 0xcf, 0x61, 0xa7, 0x84, 0xc5, 0x0e, 0xe1, 0xae, 0x02, 0xdf, 0x2f, 0x23, 0xd7, 0x23, 0x2a, 0x1f, 0x1d, 0xfe, 0x1c, 0xee,
0x64, 0xe1, 0x88, 0xb7, 0xda, 0x91, 0xaa, 0xe3, 0x88, 0x93, 0x1e, 0x35, 0x02, 0xd2, 0x4a, 0x8f, 0x7a, 0x9e, 0xac, 0x0c, 0x09, 0xea, 0x0d, 0x69, 0x3a, 0x86, 0x38, 0xe9, 0xd1, 0x22, 0x47, 0x5a,
0x3f, 0xda, 0x48, 0x9e, 0xc6, 0x91, 0x14, 0x91, 0x5c, 0x6c, 0x36, 0x84, 0xde, 0x4d, 0x0b, 0x68, 0xe9, 0xf1, 0x67, 0xdb, 0x93, 0x27, 0x59, 0x2a, 0x78, 0x2a, 0x96, 0x9b, 0x05, 0xa1, 0x75, 0xd7,
0xb4, 0x35, 0x9b, 0xc5, 0x3e, 0x85, 0xee, 0x58, 0xab, 0x1a, 0xd9, 0xd0, 0xba, 0x4c, 0xf6, 0x2d, 0x95, 0x6b, 0x94, 0x34, 0x1b, 0xc5, 0xde, 0x82, 0xc1, 0x54, 0xb1, 0x9a, 0xd8, 0xae, 0x75, 0x91,
0xd8, 0x35, 0x8c, 0x02, 0x84, 0x3a, 0x19, 0x5a, 0xe2, 0xfb, 0xbf, 0xf3, 0x80, 0xe1, 0x33, 0x5f, 0xec, 0xdb, 0xb0, 0xab, 0x11, 0x95, 0x13, 0xda, 0x24, 0x68, 0x05, 0x1f, 0xfe, 0x3e, 0x00, 0x86,
0xc6, 0x13, 0x81, 0x08, 0x9e, 0xc6, 0xd1, 0x55, 0x78, 0xbd, 0xe6, 0x81, 0x3d, 0xa8, 0xc6, 0x09, 0x6a, 0x7e, 0x9a, 0xcd, 0x38, 0x7a, 0xf0, 0x24, 0x4b, 0x2f, 0x93, 0xab, 0x35, 0x0a, 0xee, 0x40,
0xbd, 0xab, 0xcb, 0xab, 0x71, 0x82, 0x74, 0x38, 0xa1, 0x37, 0x74, 0x78, 0x35, 0x9c, 0x30, 0x06, 0x33, 0xcb, 0x49, 0xaf, 0x41, 0xd4, 0xcc, 0x72, 0x84, 0x93, 0x19, 0xe9, 0xb0, 0x15, 0x35, 0x93,
0x75, 0xac, 0x1c, 0x63, 0x8c, 0x7e, 0xa3, 0xa6, 0xb7, 0xc1, 0x6c, 0x21, 0x28, 0x96, 0x5d, 0xae, 0x19, 0x63, 0xd0, 0xc6, 0xca, 0xd1, 0xc2, 0xe8, 0x37, 0x72, 0x7a, 0x1e, 0xcf, 0x97, 0x9c, 0x62,
0x09, 0x1d, 0xc8, 0x30, 0x92, 0x4f, 0xd3, 0xf8, 0x57, 0x22, 0xa2, 0x34, 0x44, 0x57, 0x0b, 0x96, 0x39, 0x88, 0x14, 0xa0, 0x02, 0x99, 0xa4, 0xe2, 0xa3, 0x22, 0xfb, 0x15, 0x4f, 0x29, 0x0d, 0xd1,
0xff, 0xe3, 0xe2, 0x5d, 0x3f, 0x8d, 0x95, 0xd0, 0x59, 0xbe, 0xa6, 0x50, 0xd1, 0x46, 0xac, 0x84, 0xd4, 0x0a, 0x15, 0xfe, 0xa4, 0xd2, 0xeb, 0xa7, 0x99, 0xe4, 0x2a, 0xcb, 0xd7, 0x14, 0x2a, 0xca,
0xa4, 0x22, 0xed, 0x70, 0x4d, 0xf8, 0x8f, 0xe0, 0x9e, 0xed, 0xd9, 0xf9, 0xc4, 0x80, 0x7f, 0x08, 0xc8, 0x24, 0x17, 0x54, 0xa4, 0x5b, 0x91, 0x02, 0xc2, 0xdf, 0x05, 0x70, 0xcf, 0x36, 0xed, 0x6c,
0x90, 0xa4, 0x71, 0x12, 0xcb, 0x60, 0x76, 0x3e, 0x31, 0x0e, 0x5a, 0x1c, 0xff, 0xdf, 0x1e, 0xec, 0xa6, 0xbd, 0x6f, 0xd4, 0x0c, 0x2c, 0x35, 0x1f, 0x00, 0xe4, 0x45, 0x96, 0x67, 0x22, 0x9e, 0x9f,
0x66, 0x17, 0xf3, 0x4b, 0xda, 0x55, 0x2f, 0x77, 0xb5, 0xa8, 0x85, 0xea, 0xea, 0x5a, 0xa8, 0xd9, 0xcd, 0x74, 0x22, 0x5b, 0x18, 0x4c, 0x82, 0x67, 0xcb, 0x44, 0x9e, 0x19, 0x73, 0x35, 0x64, 0xd5,
0xc0, 0x1d, 0x02, 0xa8, 0x20, 0xbd, 0x16, 0x94, 0xa4, 0x06, 0x1e, 0x8b, 0x53, 0x86, 0xa3, 0xb1, 0x44, 0xbb, 0xbe, 0x26, 0x3a, 0x96, 0x03, 0xc3, 0xff, 0x06, 0xb0, 0x6b, 0x54, 0x2a, 0xd5, 0x51,
0x04, 0x07, 0xfb, 0x4e, 0xe6, 0x62, 0x93, 0x7a, 0xc1, 0x57, 0xac, 0x5e, 0xe0, 0x42, 0x64, 0xbc, 0x5e, 0x0c, 0x4a, 0x2f, 0x56, 0x2c, 0x9b, 0xf5, 0x2c, 0x5b, 0x76, 0x4c, 0x1e, 0x00, 0xc8, 0xb8,
0xc7, 0x32, 0xba, 0x4a, 0xe3, 0x39, 0x19, 0x6c, 0xe9, 0x32, 0xca, 0x68, 0x2b, 0xa3, 0xdb, 0x76, 0xb8, 0xe2, 0x94, 0xff, 0xda, 0xf3, 0x16, 0xc6, 0xf7, 0x74, 0x67, 0xc5, 0xd3, 0xec, 0x6d, 0xe3,
0x46, 0xfb, 0x7f, 0xf1, 0x60, 0x9f, 0x8b, 0xb1, 0x08, 0x13, 0x95, 0x29, 0x36, 0xf9, 0x90, 0x45, 0xbd, 0x2e, 0xb5, 0x99, 0xaf, 0x59, 0x6d, 0xc6, 0xf5, 0xbe, 0x76, 0x2c, 0x56, 0xe8, 0x65, 0x91,
0xd6, 0xb3, 0x22, 0xfb, 0x19, 0x34, 0xc7, 0x74, 0x4a, 0x10, 0x2c, 0xbf, 0xa9, 0x48, 0x27, 0x6e, 0x2d, 0x48, 0x60, 0x4f, 0x55, 0xa8, 0x81, 0xad, 0x62, 0xe9, 0xdb, 0xc5, 0x12, 0xfe, 0x2d, 0x80,
0x04, 0xd9, 0xb7, 0xa1, 0x9e, 0xa4, 0xe2, 0x2d, 0x81, 0xb3, 0x75, 0x72, 0xbf, 0x74, 0x21, 0x03, 0xfd, 0x88, 0x4f, 0x79, 0x92, 0x4b, 0xc3, 0x58, 0xa7, 0x5a, 0x5d, 0x34, 0xde, 0x81, 0xee, 0x94,
0x9b, 0x93, 0x10, 0xfb, 0x0c, 0x5a, 0xe3, 0x45, 0x9a, 0x8a, 0x48, 0x99, 0x06, 0xb8, 0x56, 0x3e, 0x4e, 0xc9, 0x05, 0xab, 0x3a, 0x55, 0x99, 0x1a, 0x69, 0x42, 0xf6, 0x1d, 0x68, 0xe7, 0x05, 0x7f,
0x93, 0xf3, 0xff, 0xe5, 0xc1, 0xfd, 0x92, 0x03, 0x84, 0x4c, 0x1c, 0x89, 0xa5, 0x08, 0xae, 0xee, 0x4e, 0xce, 0xd9, 0x3e, 0xbe, 0xef, 0x5d, 0x30, 0xce, 0x8e, 0x88, 0x88, 0xbd, 0x03, 0xbd, 0xe9,
0x5a, 0x6e, 0xa4, 0x6a, 0x4b, 0x91, 0xc2, 0xf3, 0x58, 0x05, 0x33, 0x54, 0xad, 0x1b, 0x73, 0x83, 0xb2, 0x28, 0x78, 0x2a, 0x75, 0x6f, 0x5d, 0x4b, 0x6f, 0xe8, 0xc2, 0x3f, 0x05, 0xf0, 0x86, 0x67,
0x5b, 0x1c, 0x6c, 0x0a, 0x44, 0xa1, 0x59, 0x8a, 0x63, 0x83, 0x17, 0x0c, 0xea, 0x6d, 0xb1, 0x54, 0x00, 0x6a, 0x81, 0x64, 0x9f, 0xe7, 0xb3, 0x58, 0x72, 0xc7, 0x2d, 0x81, 0xe7, 0x96, 0xb7, 0xb5,
0x74, 0xd8, 0xa4, 0xc3, 0x9c, 0x66, 0x7d, 0x68, 0x61, 0xe4, 0xb8, 0x54, 0x26, 0x5e, 0x19, 0x89, 0x76, 0xca, 0x9c, 0xaf, 0xd7, 0x98, 0xe3, 0x69, 0xf8, 0xfd, 0x4a, 0xc3, 0xd6, 0x97, 0xdf, 0x29,
0x36, 0x27, 0x71, 0x24, 0xb4, 0xb3, 0x14, 0xb2, 0x06, 0xb7, 0x38, 0xfe, 0x9f, 0x3d, 0xf8, 0x28, 0xb5, 0xfc, 0x4f, 0x00, 0xf7, 0x3d, 0x2d, 0x29, 0x7e, 0x59, 0xca, 0x57, 0xf2, 0xac, 0xbe, 0x6d,
0x73, 0xf7, 0x2c, 0x8d, 0x17, 0xc9, 0xff, 0x54, 0xc4, 0x79, 0x89, 0xe9, 0x34, 0x35, 0x25, 0xf6, 0xbb, 0xf9, 0xd4, 0x5a, 0xc9, 0x27, 0x3c, 0xcf, 0x64, 0x3c, 0x47, 0xd6, 0x26, 0xe9, 0x2d, 0x0c,
0xdf, 0x33, 0xf4, 0x18, 0x98, 0x98, 0x27, 0xea, 0x96, 0x7a, 0xcb, 0x79, 0xa4, 0x44, 0xfa, 0x36, 0x76, 0x45, 0x82, 0x50, 0x2c, 0x65, 0x5b, 0x27, 0xaa, 0x10, 0xd4, 0xdc, 0x33, 0x21, 0xe9, 0xb0,
0x98, 0x91, 0x97, 0x5d, 0xbe, 0xe2, 0xc4, 0xff, 0x43, 0xb5, 0xf4, 0xea, 0x3b, 0xa9, 0xb4, 0x21, 0x4b, 0x87, 0x25, 0xcc, 0x86, 0xd0, 0xc3, 0xfc, 0x8a, 0x84, 0xd4, 0x59, 0x65, 0x40, 0x94, 0x39,
0x6c, 0x15, 0xd1, 0xca, 0x7c, 0xb0, 0x59, 0x77, 0xef, 0x49, 0x69, 0xa2, 0xb5, 0x56, 0x4d, 0xb4, 0xcb, 0x52, 0xae, 0x8c, 0xa5, 0xc4, 0xea, 0x44, 0x16, 0x26, 0xfc, 0x6b, 0x00, 0xaf, 0x19, 0x73,
0xbc, 0x14, 0xdb, 0x6b, 0x4b, 0xb1, 0xe3, 0x94, 0xe2, 0x5f, 0x3d, 0x18, 0x94, 0x32, 0xd9, 0x0e, 0x4f, 0x8b, 0x6c, 0x99, 0xff, 0x5f, 0x5d, 0xac, 0xec, 0x31, 0xaa, 0x98, 0x74, 0x8f, 0xf9, 0xf2,
0xed, 0xaa, 0x7a, 0x3c, 0x29, 0xd5, 0xe3, 0xa0, 0x54, 0x2e, 0xd6, 0xfd, 0xbc, 0x20, 0x8f, 0x9d, 0x3a, 0x3a, 0x02, 0xc6, 0x17, 0xb9, 0xbc, 0xa5, 0xe6, 0x7a, 0x96, 0x4a, 0x5e, 0x3c, 0x8f, 0xe7,
0x82, 0x5c, 0x79, 0xc3, 0xa9, 0xc9, 0xef, 0x95, 0x6b, 0x72, 0xd3, 0x95, 0xbc, 0x2c, 0xa7, 0x70, 0x64, 0xe5, 0x20, 0xaa, 0x39, 0x09, 0xff, 0xd8, 0xf4, 0xb4, 0x7e, 0x25, 0xfd, 0x60, 0x0c, 0xdb,
0x8f, 0x8b, 0x37, 0xf9, 0x34, 0xa4, 0xda, 0x8d, 0xae, 0xe2, 0xf5, 0x09, 0x1a, 0x4e, 0x4c, 0x55, 0x55, 0xb4, 0x8c, 0x0d, 0x36, 0xea, 0xd5, 0x5b, 0xe2, 0x8d, 0xf4, 0x5e, 0xdd, 0x48, 0x2f, 0x2b,
0xda, 0x53, 0xa5, 0x66, 0xf9, 0x5a, 0x24, 0x45, 0xdd, 0x4e, 0x0a, 0xff, 0x14, 0x0e, 0xb8, 0x90, 0xa3, 0xbf, 0xb6, 0x61, 0x6c, 0x39, 0x0d, 0xe3, 0xef, 0x01, 0x8c, 0xbc, 0x4c, 0xb6, 0x43, 0x5b,
0x89, 0x63, 0x4a, 0x87, 0xfd, 0x9b, 0x50, 0x0b, 0x27, 0x7a, 0x6e, 0x6c, 0xe8, 0x24, 0x28, 0xe3, 0xd7, 0x35, 0x8e, 0xbd, 0xae, 0x31, 0xf2, 0x4a, 0xc6, 0xba, 0x5f, 0xb6, 0x8d, 0x23, 0xa7, 0x6d,
0x9f, 0x61, 0x13, 0x29, 0x29, 0x21, 0xbf, 0x24, 0x7b, 0x60, 0x6b, 0xd9, 0xe4, 0x3b, 0x29, 0xfa, 0xd4, 0xde, 0x70, 0xea, 0xf2, 0x7b, 0x7e, 0xe7, 0xd8, 0x74, 0xa5, 0x2c, 0xcb, 0x6b, 0xb8, 0x17,
0xad, 0x07, 0x7b, 0x78, 0x48, 0xe9, 0x72, 0xf2, 0x22, 0x08, 0xa3, 0x17, 0x41, 0x62, 0x85, 0xdc, 0xf1, 0x67, 0xe5, 0x3a, 0x40, 0x1d, 0x26, 0xbd, 0xcc, 0xd6, 0x27, 0x68, 0x62, 0x66, 0x90, 0x3d,
0x5b, 0xbf, 0x4f, 0x68, 0xf7, 0x0b, 0x46, 0x29, 0xc9, 0x6a, 0x1b, 0xd7, 0xa6, 0xba, 0xbb, 0x36, 0x56, 0x5b, 0x96, 0xad, 0x6b, 0xe6, 0x4e, 0x78, 0x02, 0x07, 0x11, 0x17, 0xb9, 0x23, 0x4a, 0x85,
0xf9, 0x5f, 0xea, 0x59, 0x5a, 0x3c, 0x83, 0xd0, 0x3f, 0x86, 0x46, 0xa8, 0xc4, 0x3c, 0xf3, 0xa6, 0xfd, 0x5b, 0xd0, 0x4a, 0x66, 0x6a, 0x70, 0x6e, 0xe8, 0x77, 0x48, 0x13, 0x9e, 0x62, 0x13, 0xf1,
0x6f, 0x79, 0xe3, 0x3c, 0x98, 0x6b, 0x31, 0xff, 0x1f, 0x35, 0x5d, 0xb0, 0x39, 0x26, 0xa6, 0x60, 0x98, 0x90, 0x5d, 0x82, 0x3d, 0xb4, 0xb9, 0x6c, 0xb2, 0x9d, 0x18, 0xfd, 0x36, 0x80, 0x3d, 0x3c,
0x3f, 0x85, 0x2e, 0x5a, 0x2a, 0x76, 0x0d, 0x8f, 0x76, 0x21, 0x97, 0x89, 0x8b, 0x59, 0xc1, 0xb0, 0xa4, 0x74, 0x39, 0x7e, 0x12, 0x27, 0xe9, 0x93, 0x38, 0xb7, 0x42, 0x1e, 0xac, 0x5f, 0xa8, 0x94,
0x17, 0x9c, 0x32, 0x7b, 0x4d, 0x61, 0x17, 0xa8, 0xd5, 0x1d, 0xd4, 0x7c, 0xd8, 0x4e, 0x52, 0x51, 0xf9, 0x15, 0xc2, 0x4b, 0xb2, 0xd6, 0xc6, 0xbd, 0xb1, 0xed, 0xee, 0x8d, 0xe1, 0x07, 0x6a, 0x99,
0x18, 0x6f, 0x90, 0x71, 0x87, 0xe7, 0x22, 0xdb, 0x2c, 0x6d, 0x6a, 0x46, 0x03, 0x3a, 0x23, 0xcc, 0xa8, 0xd4, 0x20, 0xef, 0x1f, 0x41, 0x27, 0x91, 0x7c, 0x61, 0xac, 0x19, 0x5a, 0xd6, 0x38, 0x0a,
0xbe, 0x98, 0x69, 0xc8, 0x79, 0xa8, 0x41, 0xe6, 0x02, 0x6d, 0xad, 0x21, 0x67, 0x20, 0xf6, 0xea, 0x47, 0x8a, 0x2c, 0xfc, 0x57, 0x4b, 0x15, 0x6c, 0xe9, 0x13, 0x5d, 0xb0, 0x6f, 0xc1, 0x00, 0x25,
0xe6, 0x34, 0x5e, 0x44, 0x4a, 0x52, 0x19, 0x77, 0x79, 0x4e, 0xeb, 0x33, 0x2e, 0xe4, 0x62, 0xa6, 0x55, 0xcb, 0x56, 0x40, 0xcb, 0xa0, 0x8b, 0xc4, 0xcd, 0xb4, 0x42, 0xd8, 0x1b, 0x9e, 0x8f, 0x5e,
0xfa, 0xa0, 0xb7, 0xed, 0x8c, 0xc6, 0x96, 0xaf, 0x6e, 0x50, 0x83, 0xec, 0x6f, 0xd1, 0xe7, 0x45, 0x53, 0xd8, 0x95, 0xd7, 0xda, 0x8e, 0xd7, 0x42, 0xb8, 0x93, 0x17, 0xbc, 0x12, 0xde, 0x21, 0xe1,
0x46, 0xd2, 0xa2, 0x87, 0x30, 0x5f, 0x66, 0x57, 0xb7, 0x35, 0xa6, 0x0e, 0x13, 0x5f, 0x6e, 0x18, 0x0e, 0xce, 0xf5, 0x6c, 0xd7, 0x5b, 0x55, 0x35, 0x07, 0x34, 0x86, 0xeb, 0x85, 0xd9, 0x70, 0x28,
0x5a, 0x49, 0x97, 0x94, 0x38, 0x3c, 0xf6, 0x00, 0xf6, 0xa2, 0x38, 0x3a, 0xa5, 0xe5, 0xf7, 0x32, 0x71, 0xc8, 0x41, 0x94, 0x04, 0x7d, 0xc5, 0xa1, 0x44, 0xa0, 0xef, 0xe5, 0xcd, 0x49, 0xb6, 0x4c,
0x7b, 0x64, 0x8f, 0x1e, 0xb9, 0x7c, 0xe0, 0x3f, 0xb3, 0xbe, 0x69, 0xf4, 0xd1, 0x63, 0xfa, 0xe2, 0xa5, 0xa0, 0x32, 0x1e, 0x44, 0x25, 0xac, 0xce, 0x22, 0x2e, 0x96, 0x73, 0x39, 0x04, 0xf5, 0xdc,
0xc2, 0xe6, 0x62, 0xed, 0xfe, 0x6e, 0xee, 0x97, 0x12, 0x22, 0x2f, 0x46, 0xa5, 0x17, 0x30, 0x3a, 0x30, 0x30, 0xb6, 0x7c, 0x79, 0x83, 0x1c, 0xc4, 0x70, 0x9b, 0xde, 0x57, 0x06, 0xa4, 0x4d, 0x17,
0x7e, 0x11, 0x46, 0x22, 0xfd, 0x70, 0x5d, 0x98, 0x3e, 0xa1, 0xbc, 0x10, 0xb3, 0xab, 0x7c, 0x95, 0xdd, 0x7c, 0x61, 0xae, 0xde, 0x51, 0x3e, 0x75, 0x90, 0xa8, 0xb9, 0x46, 0x28, 0x26, 0x03, 0x62,
0xa6, 0xf4, 0x69, 0xf3, 0x32, 0xdb, 0xff, 0x5b, 0xdd, 0x5a, 0xec, 0x8d, 0xc5, 0x47, 0xd8, 0x1a, 0xe2, 0xe0, 0xd8, 0x43, 0xd8, 0x4b, 0xb3, 0xf4, 0x84, 0xb6, 0xff, 0x0b, 0xa3, 0xe4, 0x0e, 0x29,
0xd1, 0x1b, 0x63, 0xf1, 0xe3, 0xb2, 0x45, 0xdb, 0xd7, 0x51, 0x85, 0x1b, 0x69, 0xf6, 0x10, 0x1a, 0xb9, 0x7a, 0x10, 0x7e, 0x6c, 0x3d, 0xea, 0xd4, 0xd1, 0x63, 0x7a, 0x72, 0x62, 0x73, 0xb1, 0x1e,
0x73, 0x7c, 0xb8, 0xe9, 0x8f, 0x5f, 0x2d, 0x5f, 0xb3, 0xbc, 0x1a, 0x55, 0xb8, 0x96, 0x65, 0x3f, 0x3f, 0x6e, 0xee, 0x7b, 0x09, 0x51, 0x16, 0xa3, 0x54, 0x0b, 0x28, 0x1d, 0x3f, 0x49, 0x52, 0x5e,
0x84, 0x6e, 0x20, 0xa5, 0x50, 0x97, 0xf8, 0xc1, 0x7a, 0x25, 0x52, 0xd3, 0x29, 0xf7, 0xcd, 0xe5, 0xbc, 0x3c, 0x2f, 0x4c, 0x9f, 0x44, 0x9c, 0xf3, 0xf9, 0x65, 0xf9, 0x96, 0xa0, 0xf4, 0xe9, 0x47,
0xc7, 0x78, 0x26, 0xb3, 0xc3, 0x51, 0x85, 0xbb, 0xd2, 0xf9, 0xf5, 0x9f, 0x85, 0x6a, 0x3a, 0x49, 0x3e, 0x3a, 0xfc, 0x47, 0xdb, 0x7a, 0xd9, 0x68, 0x89, 0xef, 0x62, 0x6b, 0x44, 0x6b, 0xb4, 0xc4,
0x83, 0x77, 0x94, 0xd1, 0xe5, 0xeb, 0xd9, 0x61, 0x7e, 0x3d, 0x63, 0xb0, 0x87, 0xd0, 0x56, 0x99, 0xd7, 0x7d, 0x89, 0xb6, 0xad, 0x93, 0x46, 0xa4, 0xa9, 0xd9, 0x23, 0xe8, 0x2c, 0x50, 0xf1, 0x9a,
0xe1, 0xe6, 0x66, 0xc3, 0xb9, 0x20, 0x5e, 0x7a, 0x97, 0x99, 0x6b, 0x6d, 0x36, 0x97, 0x0b, 0xb2, 0x25, 0xc4, 0xb7, 0x6a, 0xd2, 0x88, 0x14, 0x2d, 0xfb, 0x11, 0x0c, 0x62, 0x21, 0xb8, 0xbc, 0xc0,
0x27, 0xd0, 0xcb, 0x14, 0x5c, 0xc6, 0x4f, 0x6e, 0xc4, 0x98, 0x0a, 0xa3, 0x40, 0xc9, 0xb5, 0xa7, 0x17, 0xfb, 0x25, 0x2f, 0x74, 0xa7, 0xdc, 0xd7, 0x97, 0x1f, 0xe3, 0x99, 0x30, 0x87, 0x93, 0x46,
0x45, 0x46, 0x15, 0x5e, 0xba, 0xc4, 0x3e, 0x07, 0x88, 0xf2, 0x45, 0x93, 0xca, 0x67, 0xd3, 0x2a, 0xe4, 0x52, 0x97, 0xd7, 0x7f, 0x96, 0xc8, 0xeb, 0x59, 0x11, 0x7f, 0x41, 0x19, 0xed, 0x5f, 0x37,
0x39, 0xaa, 0x70, 0x4b, 0x9c, 0x3d, 0x85, 0x9d, 0xc8, 0x1d, 0x6d, 0x54, 0x64, 0x1b, 0x87, 0xdf, 0x87, 0xe5, 0x75, 0x83, 0x60, 0x8f, 0xa0, 0x2f, 0x8d, 0xe0, 0xee, 0x66, 0xc1, 0x25, 0x21, 0x5e,
0xa8, 0xc2, 0xcb, 0x97, 0x70, 0xe6, 0xa8, 0x5b, 0xb3, 0x60, 0x54, 0xd5, 0xed, 0x17, 0x2d, 0xf3, 0xfa, 0xc2, 0x88, 0xeb, 0x6d, 0x16, 0x57, 0x12, 0xb2, 0x0f, 0x61, 0xc7, 0x30, 0xb8, 0xc8, 0x3e,
0xd5, 0x82, 0x73, 0xf8, 0xc0, 0x9a, 0xc3, 0x56, 0xb2, 0xac, 0x9b, 0xc1, 0xd6, 0xb2, 0xf2, 0x7e, 0xbc, 0xe1, 0x53, 0x2a, 0x8c, 0xca, 0x4b, 0xae, 0x3c, 0x45, 0x32, 0x69, 0x44, 0xde, 0x25, 0xf6,
0xa9, 0xfd, 0x5d, 0x67, 0x06, 0x2f, 0xa5, 0xa6, 0xf3, 0x15, 0xae, 0xa7, 0xf0, 0xa3, 0xf2, 0x14, 0x1e, 0x40, 0x5a, 0xae, 0xc3, 0x54, 0x3e, 0x9b, 0x16, 0xde, 0x49, 0x23, 0xb2, 0xc8, 0xd9, 0x47,
0xde, 0x7c, 0x29, 0x9f, 0xc3, 0xcf, 0x9c, 0xf5, 0xbe, 0xc8, 0xe0, 0x0f, 0xaa, 0xee, 0xdf, 0x54, 0x70, 0x37, 0x75, 0x47, 0x1b, 0x15, 0xd9, 0xc6, 0xe1, 0x37, 0x69, 0x44, 0xfe, 0x25, 0x9c, 0x39,
0x71, 0xaa, 0xbb, 0xda, 0x68, 0xd1, 0x76, 0x57, 0x64, 0x6f, 0x69, 0x45, 0xc6, 0x15, 0x0d, 0x29, 0xf2, 0x56, 0x2f, 0x18, 0x4d, 0x79, 0xfb, 0x7e, 0x4f, 0x3f, 0xdb, 0x70, 0x0e, 0x1f, 0x58, 0x73,
0x0d, 0xa3, 0x01, 0xdd, 0x66, 0xb1, 0x6f, 0x40, 0x0f, 0xd7, 0xe2, 0x8b, 0x60, 0x2e, 0x8c, 0x50, 0xd8, 0x4a, 0x96, 0x75, 0x33, 0xd8, 0x5a, 0x56, 0x5e, 0x2c, 0xb5, 0xbf, 0xeb, 0xcc, 0xe0, 0x95,
0x8d, 0x84, 0x4a, 0xdc, 0x62, 0x52, 0xd4, 0x57, 0x4f, 0x8a, 0x46, 0x79, 0xbe, 0x16, 0x3d, 0xbc, 0xd4, 0x74, 0x3e, 0x43, 0xa8, 0x29, 0xfc, 0xae, 0x3f, 0x85, 0x37, 0x5f, 0x2a, 0xe7, 0xf0, 0xc7,
0xb9, 0xa9, 0x87, 0xb7, 0x36, 0xf4, 0xf0, 0xb6, 0xdb, 0xc3, 0xfd, 0x5f, 0x2c, 0xe7, 0x07, 0x17, 0xce, 0x23, 0xa4, 0xca, 0xe0, 0x97, 0xaa, 0xee, 0xdf, 0x34, 0x71, 0xaa, 0xbb, 0xdc, 0x68, 0xd1,
0xe3, 0x38, 0x9d, 0xdc, 0x55, 0x7e, 0xf8, 0x5f, 0x87, 0xad, 0xfc, 0xf8, 0xf2, 0x06, 0xdd, 0xd3, 0x76, 0x57, 0xe4, 0x60, 0x65, 0x45, 0xc6, 0x15, 0x0d, 0x21, 0xe5, 0x46, 0xed, 0x74, 0x1b, 0xc5,
0x53, 0xc2, 0x28, 0x36, 0x94, 0xde, 0x5a, 0x8a, 0x25, 0xeb, 0x12, 0xb1, 0x28, 0x4f, 0xd4, 0xf7, 0xbe, 0x09, 0x3b, 0xb8, 0x16, 0x9f, 0xc7, 0x0b, 0xae, 0x89, 0x5a, 0x44, 0xe4, 0x61, 0xab, 0x49,
0xf9, 0x5f, 0xc3, 0xff, 0x75, 0x15, 0xf6, 0x9c, 0xfd, 0xe7, 0xff, 0x2b, 0xaa, 0x9d, 0x0f, 0x8d, 0xd1, 0xae, 0x9f, 0x14, 0x1d, 0x7f, 0xbe, 0x56, 0x3d, 0xbc, 0xbb, 0xa9, 0x87, 0xf7, 0x36, 0xf4,
0x6a, 0xc7, 0x8a, 0xea, 0x19, 0x7c, 0xe4, 0x40, 0x40, 0x68, 0x62, 0xa9, 0x36, 0xe9, 0x35, 0xe5, 0xf0, 0xbe, 0xdb, 0xc3, 0xc3, 0x5f, 0xac, 0xe6, 0x47, 0xc4, 0xa7, 0x59, 0x31, 0x7b, 0x55, 0xf9,
0x9d, 0x69, 0x09, 0x2e, 0x6e, 0xe4, 0x74, 0xc9, 0x95, 0xa3, 0x82, 0x2f, 0x5b, 0x1d, 0x93, 0xa5, 0x11, 0x7e, 0x03, 0xb6, 0xcb, 0xe3, 0x8b, 0x1b, 0x34, 0x4f, 0x4d, 0x09, 0xcd, 0x58, 0x43, 0x6a,
0x1d, 0xd0, 0xf9, 0x4f, 0xe9, 0x4f, 0x55, 0xe8, 0x15, 0xa3, 0x0d, 0xdb, 0x2b, 0x26, 0x19, 0x7e, 0x6b, 0xa9, 0x96, 0xac, 0x0b, 0xf4, 0x85, 0x3f, 0x51, 0x5f, 0xe4, 0xc3, 0x4e, 0xf8, 0xeb, 0x26,
0x4b, 0x64, 0x49, 0x86, 0xbf, 0xa9, 0x99, 0xc5, 0xd9, 0x02, 0xad, 0x62, 0x0c, 0x5d, 0x98, 0xb7, 0xec, 0x39, 0xfb, 0xcf, 0x57, 0x2b, 0xaa, 0x5b, 0x2f, 0x1b, 0xd5, 0x2d, 0x2b, 0xaa, 0xa7, 0xf0,
0x70, 0x02, 0xbd, 0xcd, 0x2d, 0x8e, 0x95, 0x51, 0x75, 0xb2, 0x68, 0x28, 0xe4, 0x07, 0x73, 0xc4, 0x9a, 0xe3, 0x02, 0xf2, 0x26, 0x96, 0x6a, 0x97, 0xb4, 0xf1, 0x77, 0xa6, 0x15, 0x77, 0x45, 0x9a,
0x2a, 0x83, 0x5c, 0x53, 0x68, 0x53, 0x60, 0xbb, 0xd7, 0x68, 0xd3, 0x6f, 0x5a, 0xc8, 0x6f, 0xe7, 0x4e, 0x95, 0x9c, 0x1f, 0x15, 0xd4, 0xac, 0x3e, 0x26, 0x2b, 0x3b, 0xa0, 0xf3, 0x51, 0xed, 0x2f,
0xaf, 0xe3, 0x99, 0xf9, 0x78, 0x35, 0x94, 0x15, 0x36, 0x70, 0xc2, 0x46, 0xff, 0x51, 0x61, 0xb8, 0x4d, 0xd8, 0xa9, 0x46, 0x1b, 0xb6, 0x57, 0x4c, 0x32, 0x7c, 0x4b, 0x98, 0x24, 0xc3, 0xdf, 0xd4,
0x11, 0x2d, 0xb3, 0x0f, 0xee, 0x93, 0xc4, 0x12, 0x9f, 0xfe, 0xb0, 0x09, 0xd2, 0xc0, 0x48, 0x1d, 0xcc, 0x32, 0xb3, 0x40, 0xcb, 0x0c, 0x43, 0x97, 0x94, 0x2d, 0x9c, 0x9c, 0xde, 0x8f, 0x2c, 0x8c,
0xe8, 0xd5, 0xb7, 0xe0, 0xe0, 0x1a, 0x25, 0x17, 0xe3, 0xb1, 0x90, 0xb2, 0x7f, 0x9f, 0x9c, 0xcb, 0x95, 0x51, 0x6d, 0x92, 0xa8, 0x21, 0xc4, 0xc7, 0x0b, 0xf4, 0x95, 0x71, 0xb9, 0x82, 0x50, 0x26,
0xc8, 0x93, 0xdf, 0xd7, 0xa0, 0x93, 0xff, 0x9f, 0xcc, 0x7e, 0x04, 0xed, 0x33, 0xa1, 0x28, 0x04, 0xc7, 0x76, 0xaf, 0xbc, 0x4d, 0xbf, 0x69, 0x21, 0xbf, 0x5d, 0x3c, 0xcd, 0xe6, 0xfa, 0xf1, 0xaa,
0x6c, 0x37, 0x8f, 0xdc, 0x9b, 0x0b, 0x95, 0x86, 0xd1, 0xf5, 0xe0, 0x93, 0xe5, 0x9d, 0xc0, 0xf9, 0x21, 0x2b, 0x6c, 0xe0, 0x84, 0x8d, 0x3e, 0xd2, 0x61, 0xb8, 0xd1, 0x5b, 0x7a, 0x1f, 0xdc, 0x27,
0xd3, 0xce, 0xaf, 0xb0, 0x1f, 0x00, 0x3c, 0x0f, 0xa5, 0x32, 0xc9, 0xd0, 0x2d, 0x54, 0xbc, 0x0c, 0x8a, 0x15, 0x3c, 0x7d, 0x9c, 0x8a, 0x8b, 0x58, 0x53, 0x1d, 0xa8, 0xd5, 0xb7, 0xc2, 0xe0, 0x1a,
0x67, 0x83, 0xc1, 0xaa, 0x5c, 0xd0, 0xa2, 0x7e, 0x85, 0xbd, 0x02, 0x76, 0x26, 0xc8, 0x29, 0xbb, 0x25, 0x96, 0xd3, 0x29, 0x17, 0x62, 0x78, 0x9f, 0x8c, 0x33, 0xe0, 0xf1, 0x1f, 0x5a, 0xb0, 0x55,
0x30, 0x0f, 0x0b, 0x15, 0xab, 0x0a, 0x77, 0xb0, 0x36, 0xbf, 0xfc, 0x0a, 0xbb, 0x80, 0x5e, 0xe6, 0x7e, 0x50, 0x67, 0x3f, 0x86, 0xfe, 0x29, 0x97, 0x14, 0x02, 0xb6, 0x5b, 0x46, 0xee, 0xd9, 0xb9,
0xcd, 0x7b, 0x6a, 0xfb, 0x64, 0xe3, 0x94, 0x90, 0x89, 0x5f, 0x61, 0x9f, 0xc3, 0xee, 0x99, 0x50, 0x2c, 0x92, 0xf4, 0x6a, 0xf4, 0xe6, 0xea, 0x4e, 0xe0, 0x7c, 0xb5, 0x0c, 0x1b, 0xec, 0x87, 0x00,
0x94, 0x5a, 0xf9, 0x96, 0xd9, 0x2b, 0xd4, 0x62, 0x5a, 0x0c, 0xf6, 0xcb, 0x6a, 0x48, 0xdc, 0xaf, 0x9f, 0x24, 0x42, 0xea, 0x64, 0x18, 0x54, 0x2c, 0x3e, 0x4d, 0xe6, 0xa3, 0x51, 0x5d, 0x2e, 0x28,
0xb0, 0x07, 0xd0, 0x3c, 0x97, 0x17, 0xb7, 0xd1, 0xb8, 0x0c, 0xcd, 0x9e, 0x21, 0xcf, 0xe5, 0x69, 0xd2, 0xb0, 0xc1, 0x3e, 0x03, 0x76, 0xca, 0xc9, 0x28, 0xbb, 0x30, 0x1f, 0x54, 0x2c, 0xea, 0x0a,
0xb0, 0xb8, 0x9e, 0xaa, 0x9f, 0x24, 0x7e, 0xe5, 0x75, 0x93, 0xfe, 0x94, 0x7f, 0xf8, 0x9f, 0x00, 0x77, 0xb4, 0x36, 0xbf, 0xc2, 0x06, 0x3b, 0x87, 0x1d, 0x63, 0xcd, 0x0b, 0x72, 0x7b, 0x73, 0xe3,
0x00, 0x00, 0xff, 0xff, 0xd3, 0xee, 0x12, 0x0b, 0xf1, 0x17, 0x00, 0x00, 0x94, 0x10, 0x79, 0xd8, 0x60, 0xef, 0xc1, 0xee, 0x29, 0x97, 0x94, 0x5a, 0xe5, 0x96, 0xb9, 0x53,
0xb1, 0xc5, 0xb4, 0x18, 0xed, 0xfb, 0x6c, 0x88, 0x3c, 0x6c, 0xb0, 0x87, 0xd0, 0x3d, 0x13, 0xe7,
0xb7, 0xe9, 0xd4, 0x77, 0xcd, 0x9e, 0x06, 0xcf, 0xc4, 0x49, 0xbc, 0xbc, 0xba, 0x96, 0x9f, 0xe7,
0x61, 0xe3, 0x69, 0x97, 0xfe, 0x95, 0x78, 0xf4, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6a, 0x16,
0xdc, 0x4c, 0xf2, 0x18, 0x00, 0x00,
} }
// Reference imports to suppress errors if they are not otherwise used. // Reference imports to suppress errors if they are not otherwise used.
......
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