diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b99ae72d..54c97c269 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,7 +43,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Improvements -* [#169](https://github.com/babylonlabs-io/babylon/pull/169) Change external events format +* [#169](https://github.com/babylonlabs-io/babylon/pull/169) Improve external events format and update events doc * [#148](https://github.com/babylonlabs-io/babylon/pull/148) Add block results query ### Misc Improvements diff --git a/proto/babylon/btcstaking/v1/events.proto b/proto/babylon/btcstaking/v1/events.proto index d359039c1..521d0940a 100644 --- a/proto/babylon/btcstaking/v1/events.proto +++ b/proto/babylon/btcstaking/v1/events.proto @@ -12,9 +12,9 @@ option go_package = "github.com/babylonlabs-io/babylon/x/btcstaking/types"; message EventFinalityProviderCreated { // btc_pk_hex is the hex string of Bitcoin secp256k1 PK of this finality provider string btc_pk_hex = 1; - // addr is the address to receive commission from delegations. + // addr is the babylon address to receive commission from delegations. string addr = 2; - // commission defines the commission rate of the finality provider. + // commission defines the commission rate of the finality provider in decimals. string commission = 3; // moniker defines a human-readable name for the finality provider. string moniker = 4; @@ -32,7 +32,7 @@ message EventFinalityProviderCreated { message EventFinalityProviderEdited { // btc_pk_hex is the hex string of Bitcoin secp256k1 PK of this finality provider string btc_pk_hex = 1; - // commission defines the commission rate of the finality provider. + // commission defines the commission rate of the finality provider in decimals. string commission = 2; // moniker defines a human-readable name for the finality provider. string moniker = 3; @@ -102,15 +102,6 @@ message EventPowerDistUpdate { } } -message EventFinalityProviderStatusChange { - // btc_pk is the BTC public key of the finality provider - string btc_pk = 1; - // new_status is the new status that the finality provider - // is transitioned to, following FinalityProviderStatus - string new_status = 2; -} - -// FinalityProviderStatus is the status of a finality provider. // A finality provider starts with status INACTIVE once registered. // Possible status transitions are when: // 1. it has accumulated sufficient delegations and has @@ -127,6 +118,15 @@ message EventFinalityProviderStatusChange { // ACTIVE -> INACTIVE. // Note that it is impossible for a SLASHED finality provider to // transition to other status +message EventFinalityProviderStatusChange { + // btc_pk is the BTC public key of the finality provider + string btc_pk = 1; + // new_status is the status that the finality provider + // is transitioned to, following FinalityProviderStatus + string new_status = 2; +} + +// FinalityProviderStatus is the status of a finality provider. enum FinalityProviderStatus { // FINALITY_PROVIDER_STATUS_INACTIVE defines a finality provider that does not have sufficient // delegations or does not have timestamped public randomness. @@ -164,8 +164,8 @@ message EventBTCDelegationCreated { string unbonding_time = 7; // unbonding_tx is hex encoded bytes of the unsigned unbonding tx string unbonding_tx = 8; - // state of the BTC delegation - string state = 9; + // new_status of the BTC delegation + string new_status = 9; } // EventCovenantSignatureReceived is the event emitted when a covenant committee @@ -188,8 +188,8 @@ message EventCovenantQuorumReached { // staking_tx_hash is the hash of the staking identifing the BTC delegation // that this covenant signature is for string staking_tx_hash = 1; - // state of the BTC delegation - string state = 2; + // new_status of the BTC delegation + string new_status = 2; } // EventBTCDelegationInclusionProofReceived is the event emitted when a BTC delegation @@ -204,8 +204,8 @@ message EventBTCDelegationInclusionProofReceived { // end_height is the end height of the BTC delegation // it is calculated by end_height = start_height + staking_time string end_height = 3; - // state of the BTC delegation - string state = 4; + // new_status of the BTC delegation + string new_status = 4; } // EventBTCDelgationUnbondedEarly is the event emitted when a BTC delegation @@ -214,8 +214,8 @@ message EventBTCDelgationUnbondedEarly { // staking_tx_hash is the hash of the staking tx. // It uniquely identifies a BTC delegation string staking_tx_hash = 1; - // state of the BTC delegation - string state = 2; + // new_status of the BTC delegation + string new_status = 2; } // EventBTCDelegationExpired is the event emitted when a BTC delegation @@ -224,6 +224,6 @@ message EventBTCDelegationExpired { // staking_tx_hash is the hash of the staking tx. // It uniquely identifies a BTC delegation string staking_tx_hash = 1; - // state of the BTC delegation - string state = 2; + // new_status of the BTC delegation + string new_status = 2; } diff --git a/x/btcstaking/README.md b/x/btcstaking/README.md index 0e515f95d..379356501 100644 --- a/x/btcstaking/README.md +++ b/x/btcstaking/README.md @@ -715,51 +715,165 @@ The logic is defined at [x/btcstaking/abci.go](./abci.go). ## Events -The BTC staking module emits a set of events as follows. The events are defined +The BTC staking module emits a set of events for external subscribers. The events are defined at `proto/babylon/btcstaking/v1/events.proto`. +### Finality provider events + ```protobuf -// EventNewFinalityProvider is the event emitted when a finality provider is created -message EventNewFinalityProvider { FinalityProvider fp = 1; } - -// EventBTCDelegationStateUpdate is the event emitted when a BTC delegation's state is -// updated. There are the following possible state transitions: -// - non-existing -> pending, which happens upon `MsgCreateBTCDelegation` -// - pending -> active, which happens upon `MsgAddCovenantSigs` -// - active -> unbonded, which happens upon `MsgBTCUndelegate` or upon staking tx timelock expires -message EventBTCDelegationStateUpdate { +// EventFinalityProviderCreated is the event emitted when a finality provider is created +message EventFinalityProviderCreated { + // btc_pk_hex is the hex string of Bitcoin secp256k1 PK of this finality provider + string btc_pk_hex = 1; + // addr is the babylon address to receive commission from delegations. + string addr = 2; + // commission defines the commission rate of the finality provider in decimals. + string commission = 3; + // moniker defines a human-readable name for the finality provider. + string moniker = 4; + // identity defines an optional identity signature (ex. UPort or Keybase). + string identity = 5; + // website defines an optional website link. + string website = 6; + // security_contact defines an optional email for security contact. + string security_contact = 7; + // details define other optional details. + string details = 8; +} + +// EventFinalityProviderEdited is the event emitted when a finality provider is edited +message EventFinalityProviderEdited { + // btc_pk_hex is the hex string of Bitcoin secp256k1 PK of this finality provider + string btc_pk_hex = 1; + // commission defines the commission rate of the finality provider in decimals. + string commission = 2; + // moniker defines a human-readable name for the finality provider. + string moniker = 3; + // identity defines an optional identity signature (ex. UPort or Keybase). + string identity = 4; + // website defines an optional website link. + string website = 5; + // security_contact defines an optional email for security contact. + string security_contact = 6; + // details define other optional details. + string details = 7; +} + +// A finality provider starts with status INACTIVE once registered. +// Possible status transitions are when: +// 1. it has accumulated sufficient delegations and has +// timestamped public randomness: +// INACTIVE -> ACTIVE +// 2. it is jailed due to downtime: +// ACTIVE -> JAILED +// 3. it is slashed due to double-sign: +// ACTIVE -> SLASHED +// 4. it is unjailed after a jailing period: +// JAILED -> INACTIVE/ACTIVE (depending on (1)) +// 5. it does not have sufficient delegations or does not +// have timestamped public randomness: +// ACTIVE -> INACTIVE. +// Note that it is impossible for a SLASHED finality provider to +// transition to other status +message EventFinalityProviderStatusChange { + // btc_pk is the BTC public key of the finality provider + string btc_pk = 1; + // new_status is the status that the finality provider + // is transitioned to, following FinalityProviderStatus + string new_status = 2; +} +``` + +### Delegation events + +```protobuf + +// EventBTCDelegationCreated is the event emitted when a BTC delegation is created +// on the Babylon chain +message EventBTCDelegationCreated { // staking_tx_hash is the hash of the staking tx. // It uniquely identifies a BTC delegation string staking_tx_hash = 1; - // new_state is the new state of this BTC delegation - BTCDelegationStatus new_state = 2; + // version of the params used to validate the delegation + string params_version = 2; + // finality_provider_btc_pks_hex is the list of hex str of Bitcoin secp256k1 PK of + // the finality providers that this BTC delegation delegates to + // the PK follows encoding in BIP-340 spec + repeated string finality_provider_btc_pks_hex = 3; + // staker_btc_pk_hex is the hex str of Bitcoin secp256k1 PK of the staker that + // creates this BTC delegation the PK follows encoding in BIP-340 spec + string staker_btc_pk_hex = 4; + // staking_time is the timelock of the staking tx specified in the BTC script + string staking_time = 5; + // staking_amount is the total amount of BTC stake in this delegation + // quantified in satoshi + string staking_amount = 6; + // unbonding_time is the time is timelock on unbonding tx chosen by the staker + string unbonding_time = 7; + // unbonding_tx is hex encoded bytes of the unsigned unbonding tx + string unbonding_tx = 8; + // new_status of the BTC delegation + string new_status = 9; +} + +// EventCovenantSignatureReceived is the event emitted when a covenant committee +// sends valid covenant signatures for a BTC delegation +message EventCovenantSignatureReceived{ + // staking_tx_hash is the hash of the staking identifing the BTC delegation + // that this covenant signature is for + string staking_tx_hash = 1; + // covenant_btc_pk_hex is the hex str of Bitcoin secp256k1 PK of the + // covnenat committee that send the signature + string covenant_btc_pk_hex = 2; + // covenant_unbonding_signature_hex is the hex str of the BIP340 Schnorr + // signature of the covenant committee on the unbonding tx + string covenant_unbonding_signature_hex = 3; +} + +// EventCovenantQuorumReached is the event emitted quorum of covenant committee +// is reached for a BTC delegation +message EventCovenantQuorumReached { + // staking_tx_hash is the hash of the staking identifing the BTC delegation + // that this covenant signature is for + string staking_tx_hash = 1; + // new_status of the BTC delegation + string new_status = 2; +} + +// EventBTCDelegationInclusionProofReceived is the event emitted when a BTC delegation +// inclusion proof is received +message EventBTCDelegationInclusionProofReceived { + // staking_tx_hash is the hash of the staking tx. + // It uniquely identifies a BTC delegation + string staking_tx_hash = 1; + // start_height is the start BTC height of the BTC delegation + // it is the start BTC height of the timelock + string start_height = 2; + // end_height is the end height of the BTC delegation + // it is calculated by end_height = start_height + staking_time + string end_height = 3; + // new_status of the BTC delegation + string new_status = 4; } -// EventSelectiveSlashing is the event emitted when an adversarial -// finality provider selectively slashes a BTC delegation. This will -// result in slashing of all BTC delegations under this finality provider. -message EventSelectiveSlashing { - // evidence is the evidence of selective slashing - SelectiveSlashingEvidence evidence = 1; +// EventBTCDelgationUnbondedEarly is the event emitted when a BTC delegation +// is unbonded by staker sending unbonding tx to BTC +message EventBTCDelgationUnbondedEarly { + // staking_tx_hash is the hash of the staking tx. + // It uniquely identifies a BTC delegation + string staking_tx_hash = 1; + // new_status of the BTC delegation + string new_status = 2; } -// EventPowerDistUpdate is an event that affects voting power distribution -// of BTC staking protocol -message EventPowerDistUpdate { - // EventSlashedFinalityProvider defines an event that a finality provider - // is slashed - // TODO: unify with existing slashing events - message EventSlashedFinalityProvider { - bytes pk = 1 [ (gogoproto.customtype) = "github.com/babylonlabs-io/babylon/types.BIP340PubKey" ]; - } - - // ev is the event that affects voting power distribution - oneof ev { - // slashed_fp means a finality provider is slashed - EventSlashedFinalityProvider slashed_fp = 1; - // btc_del_state_update means a BTC delegation's state is updated - EventBTCDelegationStateUpdate btc_del_state_update = 2; - } +// EventBTCDelegationExpired is the event emitted when a BTC delegation +// is unbonded by expiration of the staking tx timelock +message EventBTCDelegationExpired { + // staking_tx_hash is the hash of the staking tx. + // It uniquely identifies a BTC delegation + string staking_tx_hash = 1; + // new_status of the BTC delegation + string new_status = 2; } ``` diff --git a/x/btcstaking/types/events.go b/x/btcstaking/types/events.go index 162ebb2c3..14ddfae1b 100644 --- a/x/btcstaking/types/events.go +++ b/x/btcstaking/types/events.go @@ -80,7 +80,7 @@ func NewInclusionProofEvent( StakingTxHash: stakingTxHash, StartHeight: strconv.FormatUint(startHeight, 10), EndHeight: strconv.FormatUint(endHeight, 10), - State: state.String(), + NewStatus: state.String(), } } @@ -97,7 +97,7 @@ func NewBtcDelCreationEvent( StakingAmount: strconv.FormatUint(btcDel.TotalSat, 10), UnbondingTime: strconv.FormatUint(uint64(btcDel.UnbondingTime), 10), UnbondingTx: hex.EncodeToString(btcDel.BtcUndelegation.UnbondingTx), - State: BTCDelegationStatus_PENDING.String(), + NewStatus: BTCDelegationStatus_PENDING.String(), } } @@ -119,7 +119,7 @@ func NewCovenantQuorumReachedEvent( ) *EventCovenantQuorumReached { return &EventCovenantQuorumReached{ StakingTxHash: btcDel.MustGetStakingTxHash().String(), - State: state.String(), + NewStatus: state.String(), } } @@ -128,7 +128,7 @@ func NewDelegationUnbondedEarlyEvent( ) *EventBTCDelgationUnbondedEarly { return &EventBTCDelgationUnbondedEarly{ StakingTxHash: stakingTxHash, - State: BTCDelegationStatus_UNBONDED.String(), + NewStatus: BTCDelegationStatus_UNBONDED.String(), } } @@ -137,7 +137,7 @@ func NewExpiredDelegationEvent( ) *EventBTCDelegationExpired { return &EventBTCDelegationExpired{ StakingTxHash: stakingTxHash, - State: BTCDelegationStatus_UNBONDED.String(), + NewStatus: BTCDelegationStatus_UNBONDED.String(), } } diff --git a/x/btcstaking/types/events.pb.go b/x/btcstaking/types/events.pb.go index 1ad50ec37..d87541bd7 100644 --- a/x/btcstaking/types/events.pb.go +++ b/x/btcstaking/types/events.pb.go @@ -27,22 +27,6 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // FinalityProviderStatus is the status of a finality provider. -// A finality provider starts with status INACTIVE once registered. -// Possible status transitions are when: -// 1. it has accumulated sufficient delegations and has -// timestamped public randomness: -// INACTIVE -> ACTIVE -// 2. it is jailed due to downtime: -// ACTIVE -> JAILED -// 3. it is slashed due to double-sign: -// ACTIVE -> SLASHED -// 4. it is unjailed after a jailing period: -// JAILED -> INACTIVE/ACTIVE (depending on (1)) -// 5. it does not have sufficient delegations or does not -// have timestamped public randomness: -// ACTIVE -> INACTIVE. -// Note that it is impossible for a SLASHED finality provider to -// transition to other status type FinalityProviderStatus int32 const ( @@ -84,9 +68,9 @@ func (FinalityProviderStatus) EnumDescriptor() ([]byte, []int) { type EventFinalityProviderCreated struct { // btc_pk_hex is the hex string of Bitcoin secp256k1 PK of this finality provider BtcPkHex string `protobuf:"bytes,1,opt,name=btc_pk_hex,json=btcPkHex,proto3" json:"btc_pk_hex,omitempty"` - // addr is the address to receive commission from delegations. + // addr is the babylon address to receive commission from delegations. Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"` - // commission defines the commission rate of the finality provider. + // commission defines the commission rate of the finality provider in decimals. Commission string `protobuf:"bytes,3,opt,name=commission,proto3" json:"commission,omitempty"` // moniker defines a human-readable name for the finality provider. Moniker string `protobuf:"bytes,4,opt,name=moniker,proto3" json:"moniker,omitempty"` @@ -193,7 +177,7 @@ func (m *EventFinalityProviderCreated) GetDetails() string { type EventFinalityProviderEdited struct { // btc_pk_hex is the hex string of Bitcoin secp256k1 PK of this finality provider BtcPkHex string `protobuf:"bytes,1,opt,name=btc_pk_hex,json=btcPkHex,proto3" json:"btc_pk_hex,omitempty"` - // commission defines the commission rate of the finality provider. + // commission defines the commission rate of the finality provider in decimals. Commission string `protobuf:"bytes,2,opt,name=commission,proto3" json:"commission,omitempty"` // moniker defines a human-readable name for the finality provider. Moniker string `protobuf:"bytes,3,opt,name=moniker,proto3" json:"moniker,omitempty"` @@ -642,10 +626,26 @@ func (m *EventPowerDistUpdate_EventUnjailedFinalityProvider) XXX_DiscardUnknown( var xxx_messageInfo_EventPowerDistUpdate_EventUnjailedFinalityProvider proto.InternalMessageInfo +// A finality provider starts with status INACTIVE once registered. +// Possible status transitions are when: +// 1. it has accumulated sufficient delegations and has +// timestamped public randomness: +// INACTIVE -> ACTIVE +// 2. it is jailed due to downtime: +// ACTIVE -> JAILED +// 3. it is slashed due to double-sign: +// ACTIVE -> SLASHED +// 4. it is unjailed after a jailing period: +// JAILED -> INACTIVE/ACTIVE (depending on (1)) +// 5. it does not have sufficient delegations or does not +// have timestamped public randomness: +// ACTIVE -> INACTIVE. +// Note that it is impossible for a SLASHED finality provider to +// transition to other status type EventFinalityProviderStatusChange struct { // btc_pk is the BTC public key of the finality provider BtcPk string `protobuf:"bytes,1,opt,name=btc_pk,json=btcPk,proto3" json:"btc_pk,omitempty"` - // new_status is the new status that the finality provider + // new_status is the status that the finality provider // is transitioned to, following FinalityProviderStatus NewStatus string `protobuf:"bytes,2,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"` } @@ -721,8 +721,8 @@ type EventBTCDelegationCreated struct { UnbondingTime string `protobuf:"bytes,7,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"` // unbonding_tx is hex encoded bytes of the unsigned unbonding tx UnbondingTx string `protobuf:"bytes,8,opt,name=unbonding_tx,json=unbondingTx,proto3" json:"unbonding_tx,omitempty"` - // state of the BTC delegation - State string `protobuf:"bytes,9,opt,name=state,proto3" json:"state,omitempty"` + // new_status of the BTC delegation + NewStatus string `protobuf:"bytes,9,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"` } func (m *EventBTCDelegationCreated) Reset() { *m = EventBTCDelegationCreated{} } @@ -814,9 +814,9 @@ func (m *EventBTCDelegationCreated) GetUnbondingTx() string { return "" } -func (m *EventBTCDelegationCreated) GetState() string { +func (m *EventBTCDelegationCreated) GetNewStatus() string { if m != nil { - return m.State + return m.NewStatus } return "" } @@ -895,8 +895,8 @@ type EventCovenantQuorumReached struct { // staking_tx_hash is the hash of the staking identifing the BTC delegation // that this covenant signature is for StakingTxHash string `protobuf:"bytes,1,opt,name=staking_tx_hash,json=stakingTxHash,proto3" json:"staking_tx_hash,omitempty"` - // state of the BTC delegation - State string `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"` + // new_status of the BTC delegation + NewStatus string `protobuf:"bytes,2,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"` } func (m *EventCovenantQuorumReached) Reset() { *m = EventCovenantQuorumReached{} } @@ -939,9 +939,9 @@ func (m *EventCovenantQuorumReached) GetStakingTxHash() string { return "" } -func (m *EventCovenantQuorumReached) GetState() string { +func (m *EventCovenantQuorumReached) GetNewStatus() string { if m != nil { - return m.State + return m.NewStatus } return "" } @@ -958,8 +958,8 @@ type EventBTCDelegationInclusionProofReceived struct { // end_height is the end height of the BTC delegation // it is calculated by end_height = start_height + staking_time EndHeight string `protobuf:"bytes,3,opt,name=end_height,json=endHeight,proto3" json:"end_height,omitempty"` - // state of the BTC delegation - State string `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"` + // new_status of the BTC delegation + NewStatus string `protobuf:"bytes,4,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"` } func (m *EventBTCDelegationInclusionProofReceived) Reset() { @@ -1018,9 +1018,9 @@ func (m *EventBTCDelegationInclusionProofReceived) GetEndHeight() string { return "" } -func (m *EventBTCDelegationInclusionProofReceived) GetState() string { +func (m *EventBTCDelegationInclusionProofReceived) GetNewStatus() string { if m != nil { - return m.State + return m.NewStatus } return "" } @@ -1031,8 +1031,8 @@ type EventBTCDelgationUnbondedEarly struct { // staking_tx_hash is the hash of the staking tx. // It uniquely identifies a BTC delegation StakingTxHash string `protobuf:"bytes,1,opt,name=staking_tx_hash,json=stakingTxHash,proto3" json:"staking_tx_hash,omitempty"` - // state of the BTC delegation - State string `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"` + // new_status of the BTC delegation + NewStatus string `protobuf:"bytes,2,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"` } func (m *EventBTCDelgationUnbondedEarly) Reset() { *m = EventBTCDelgationUnbondedEarly{} } @@ -1075,9 +1075,9 @@ func (m *EventBTCDelgationUnbondedEarly) GetStakingTxHash() string { return "" } -func (m *EventBTCDelgationUnbondedEarly) GetState() string { +func (m *EventBTCDelgationUnbondedEarly) GetNewStatus() string { if m != nil { - return m.State + return m.NewStatus } return "" } @@ -1088,8 +1088,8 @@ type EventBTCDelegationExpired struct { // staking_tx_hash is the hash of the staking tx. // It uniquely identifies a BTC delegation StakingTxHash string `protobuf:"bytes,1,opt,name=staking_tx_hash,json=stakingTxHash,proto3" json:"staking_tx_hash,omitempty"` - // state of the BTC delegation - State string `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"` + // new_status of the BTC delegation + NewStatus string `protobuf:"bytes,2,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"` } func (m *EventBTCDelegationExpired) Reset() { *m = EventBTCDelegationExpired{} } @@ -1132,9 +1132,9 @@ func (m *EventBTCDelegationExpired) GetStakingTxHash() string { return "" } -func (m *EventBTCDelegationExpired) GetState() string { +func (m *EventBTCDelegationExpired) GetNewStatus() string { if m != nil { - return m.State + return m.NewStatus } return "" } @@ -1163,79 +1163,78 @@ func init() { } var fileDescriptor_74118427820fff75 = []byte{ - // 1142 bytes of a gzipped FileDescriptorProto + // 1132 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xcb, 0x72, 0x1a, 0x47, - 0x17, 0xe6, 0x22, 0xc9, 0xd0, 0xd8, 0xb2, 0x3c, 0xbf, 0xec, 0x42, 0xfc, 0x16, 0x96, 0x88, 0xed, - 0x92, 0x5d, 0x65, 0xb0, 0x64, 0x2d, 0xb2, 0x0c, 0x37, 0x09, 0x1c, 0x95, 0x42, 0x00, 0xa9, 0x4a, - 0x5e, 0x64, 0xaa, 0x67, 0xe6, 0x00, 0x1d, 0x86, 0x9e, 0xa9, 0xe9, 0x1e, 0x04, 0xcb, 0x54, 0x25, - 0x7b, 0x3f, 0x47, 0x36, 0x79, 0x85, 0x2c, 0xb3, 0xf4, 0x32, 0x95, 0x45, 0x2a, 0x25, 0xbd, 0x40, - 0x1e, 0x21, 0x35, 0xdd, 0x3d, 0x08, 0x59, 0x20, 0x59, 0x65, 0xef, 0xe8, 0xd3, 0xdf, 0x39, 0xdf, - 0xb9, 0xf5, 0x37, 0xa0, 0x9c, 0x81, 0x8d, 0xb1, 0xed, 0xd0, 0x82, 0xc1, 0x4d, 0xc6, 0x71, 0x9f, - 0xd0, 0x6e, 0x61, 0xb8, 0x5d, 0x80, 0x21, 0x50, 0xce, 0xf2, 0xae, 0xe7, 0x70, 0x47, 0x7b, 0xa8, - 0x30, 0xf9, 0x0b, 0x4c, 0x7e, 0xb8, 0x9d, 0x59, 0xed, 0x3a, 0x5d, 0x47, 0x20, 0x0a, 0xc1, 0x2f, - 0x09, 0xce, 0x3c, 0x35, 0x1d, 0x36, 0x70, 0x58, 0xe1, 0x22, 0x98, 0x01, 0x1c, 0x6f, 0x87, 0x67, - 0x85, 0x7a, 0x3e, 0x9b, 0x76, 0x8a, 0x40, 0xe2, 0xd6, 0x64, 0x34, 0x5d, 0xd2, 0xc8, 0x83, 0xbc, - 0xca, 0xfd, 0x12, 0x43, 0x8f, 0xab, 0x41, 0x9a, 0x7b, 0x84, 0x62, 0x9b, 0xf0, 0x71, 0xc3, 0x73, - 0x86, 0xc4, 0x02, 0xaf, 0xec, 0x01, 0xe6, 0x60, 0x69, 0x8f, 0x11, 0x32, 0xb8, 0xa9, 0xbb, 0x7d, - 0xbd, 0x07, 0xa3, 0x74, 0x74, 0x23, 0xba, 0x95, 0x6c, 0x26, 0x0c, 0x6e, 0x36, 0xfa, 0x35, 0x18, - 0x69, 0x1a, 0x5a, 0xc0, 0x96, 0xe5, 0xa5, 0x63, 0xc2, 0x2e, 0x7e, 0x6b, 0x59, 0x84, 0x4c, 0x67, - 0x30, 0x20, 0x8c, 0x11, 0x87, 0xa6, 0xe3, 0xe2, 0x66, 0xca, 0xa2, 0xa5, 0xd1, 0x9d, 0x81, 0x43, - 0x49, 0x1f, 0xbc, 0xf4, 0x82, 0xb8, 0x0c, 0x8f, 0x5a, 0x06, 0x25, 0x88, 0x05, 0x94, 0x13, 0x3e, - 0x4e, 0x2f, 0x4a, 0xa6, 0xf0, 0x1c, 0x78, 0x9d, 0x82, 0xc1, 0x08, 0x87, 0xf4, 0x92, 0xf4, 0x52, - 0x47, 0xed, 0x05, 0x5a, 0x61, 0x60, 0xfa, 0x1e, 0xe1, 0x63, 0xdd, 0x74, 0x28, 0xc7, 0x26, 0x4f, - 0xdf, 0x11, 0x90, 0xfb, 0xa1, 0xbd, 0x2c, 0xcd, 0x41, 0x10, 0x0b, 0x38, 0x26, 0x36, 0x4b, 0x27, - 0x64, 0x10, 0x75, 0xcc, 0xfd, 0x1b, 0x45, 0xff, 0x9f, 0xd9, 0x87, 0xaa, 0x45, 0x6e, 0x6e, 0xc3, - 0xe5, 0x92, 0x63, 0xd7, 0x95, 0x1c, 0x9f, 0x5f, 0xf2, 0xc2, 0xfc, 0x92, 0x17, 0x6f, 0x2e, 0x79, - 0xe9, 0xc6, 0x92, 0xef, 0x5c, 0x2e, 0xf9, 0x7d, 0x14, 0xad, 0x8b, 0x92, 0x4b, 0xed, 0x72, 0x05, - 0x6c, 0xe8, 0x62, 0x4e, 0x1c, 0xda, 0xe2, 0x98, 0xc3, 0x91, 0x6b, 0x61, 0x0e, 0xda, 0x73, 0x74, - 0x5f, 0x2d, 0x92, 0xce, 0x47, 0x7a, 0x0f, 0xb3, 0x9e, 0xaa, 0xfc, 0x9e, 0x32, 0xb7, 0x47, 0x35, - 0xcc, 0x7a, 0xda, 0x3e, 0x4a, 0x52, 0x38, 0xd5, 0x59, 0xe0, 0x2a, 0xaa, 0x5f, 0xde, 0x79, 0x99, - 0x9f, 0xb9, 0xee, 0xf9, 0x2b, 0x5c, 0x3e, 0x6b, 0x26, 0x28, 0x9c, 0x0a, 0xda, 0x5c, 0x07, 0x3d, - 0x12, 0x19, 0xb5, 0xc0, 0x06, 0x93, 0x93, 0x21, 0xb4, 0x6c, 0xcc, 0x7a, 0x84, 0x76, 0xb5, 0x03, - 0x94, 0x80, 0x60, 0x1e, 0xd4, 0x04, 0x91, 0x43, 0x6a, 0xe7, 0xf5, 0x1c, 0x86, 0x2b, 0xbe, 0x55, - 0xe5, 0xd7, 0x9c, 0x44, 0xc8, 0xfd, 0xbc, 0x84, 0x56, 0x05, 0x51, 0xc3, 0x39, 0x05, 0xaf, 0x42, - 0x18, 0x57, 0x15, 0x13, 0x84, 0x58, 0xe0, 0x06, 0x96, 0xde, 0x71, 0x15, 0x51, 0x6d, 0x0e, 0xd1, - 0xac, 0x00, 0xd2, 0xd8, 0x92, 0x21, 0x3e, 0x5e, 0xa5, 0x5a, 0xa4, 0x99, 0x54, 0xd1, 0xf7, 0x5c, - 0xad, 0x83, 0x92, 0x3f, 0x62, 0x62, 0x4b, 0xa6, 0x98, 0x60, 0xda, 0xbf, 0x35, 0xd3, 0x5b, 0x11, - 0x61, 0x06, 0x51, 0x42, 0xc6, 0xde, 0x73, 0x35, 0x1b, 0xa5, 0x7c, 0x7a, 0xc1, 0x14, 0x17, 0x4c, - 0xf5, 0x5b, 0x33, 0x1d, 0xa9, 0x18, 0x33, 0xb8, 0x50, 0x18, 0x7f, 0xcf, 0xd5, 0xba, 0x68, 0x35, - 0x78, 0x27, 0x16, 0xd8, 0x72, 0x1d, 0x74, 0x5f, 0xc4, 0x10, 0xbb, 0x9d, 0xda, 0xd9, 0xbd, 0x8e, - 0x76, 0xde, 0x1a, 0xd6, 0x22, 0xcd, 0x07, 0x06, 0x37, 0x2b, 0x60, 0x4f, 0x19, 0x33, 0x3d, 0xa5, - 0x5b, 0x73, 0x7a, 0xad, 0xd5, 0x50, 0xcc, 0xed, 0x8b, 0x09, 0xde, 0x2d, 0x7d, 0xfd, 0xd7, 0xdf, - 0x4f, 0x76, 0xbb, 0x84, 0xf7, 0x7c, 0x23, 0x6f, 0x3a, 0x83, 0x82, 0x4a, 0xc2, 0xc6, 0x06, 0x7b, - 0x45, 0x9c, 0xf0, 0x58, 0xe0, 0x63, 0x17, 0x58, 0xbe, 0x54, 0x6f, 0xbc, 0xd9, 0x7d, 0xdd, 0xf0, - 0x8d, 0x6f, 0x61, 0xdc, 0x8c, 0xb9, 0xfd, 0x4c, 0x57, 0x29, 0xc3, 0xec, 0x5e, 0x7f, 0x41, 0x22, - 0xa2, 0xde, 0xe3, 0xbc, 0x56, 0x7f, 0x39, 0xaa, 0xd2, 0x02, 0x8a, 0xc1, 0x30, 0x77, 0x82, 0x36, - 0x67, 0x6a, 0x9e, 0x7c, 0x97, 0xe5, 0x1e, 0xa6, 0x5d, 0xd0, 0x1e, 0xa2, 0x25, 0xa9, 0x7c, 0xea, - 0xed, 0x2f, 0x0a, 0xd5, 0xd3, 0xd6, 0x11, 0x0a, 0xdf, 0xbc, 0xcf, 0x94, 0xe4, 0x25, 0xd5, 0x43, - 0xf6, 0x59, 0xee, 0xa7, 0x38, 0x5a, 0xbb, 0x3a, 0xd5, 0xf0, 0xa3, 0xf2, 0xa9, 0xc2, 0xf2, 0x0c, - 0x2d, 0xbb, 0xd8, 0xc3, 0x03, 0xa6, 0x0f, 0xc1, 0x9b, 0xd2, 0xd6, 0x7b, 0xd2, 0x7a, 0x2c, 0x8d, - 0xda, 0x37, 0x68, 0xbd, 0xa3, 0x4a, 0x08, 0xbe, 0x71, 0xa2, 0x06, 0x5d, 0x26, 0xcd, 0x84, 0x5e, - 0xc7, 0x37, 0xe2, 0x5b, 0xc9, 0xe6, 0x5a, 0xe7, 0xa3, 0x3a, 0x4b, 0x41, 0x25, 0x2c, 0x10, 0xf0, - 0x17, 0xe8, 0x41, 0xc0, 0x3c, 0x71, 0x13, 0x5e, 0x52, 0x8f, 0x97, 0xe5, 0x45, 0x29, 0xd4, 0xfa, - 0x4d, 0x74, 0x77, 0x92, 0x3b, 0x19, 0x84, 0xd2, 0x9c, 0x0a, 0x13, 0x27, 0x03, 0x08, 0xd2, 0x0e, - 0x21, 0x78, 0xe0, 0xf8, 0x34, 0x14, 0xe7, 0xb0, 0xba, 0xa2, 0x30, 0x06, 0x30, 0x9f, 0x1a, 0x0e, - 0xb5, 0x26, 0xb1, 0xa4, 0x42, 0xdf, 0x9b, 0x58, 0x45, 0xb4, 0x4d, 0x74, 0x77, 0x0a, 0x36, 0x52, - 0x5f, 0xae, 0xd4, 0x05, 0x68, 0xa4, 0xad, 0xa2, 0x45, 0x29, 0xbe, 0x49, 0x39, 0x22, 0x71, 0xc8, - 0xfd, 0x1e, 0x45, 0x59, 0x31, 0x83, 0xb2, 0x33, 0x04, 0x8a, 0x29, 0x6f, 0x91, 0x2e, 0xc5, 0xdc, - 0xf7, 0xa0, 0x09, 0x26, 0x90, 0xe1, 0x2d, 0x06, 0xf1, 0x0a, 0xfd, 0xcf, 0x54, 0x41, 0xa6, 0x3b, - 0x24, 0xa7, 0xb1, 0x12, 0x5e, 0x4d, 0x7a, 0xb4, 0x8f, 0x36, 0x26, 0xf0, 0x8b, 0xdc, 0x59, 0x48, - 0xaf, 0x66, 0x12, 0xf8, 0xae, 0x87, 0xb8, 0xa3, 0x10, 0x36, 0x49, 0xb2, 0x06, 0xa3, 0xdc, 0x3b, - 0x94, 0xb9, 0x54, 0xc1, 0xf7, 0xbe, 0xe3, 0xf9, 0x83, 0x26, 0x60, 0xb3, 0x77, 0x8b, 0xec, 0x27, - 0xed, 0x89, 0x4d, 0xb7, 0xe7, 0xd7, 0x28, 0xda, 0xba, 0xba, 0xa2, 0x75, 0x6a, 0xda, 0x7e, 0xb0, - 0x55, 0x0d, 0xcf, 0x71, 0x3a, 0xb7, 0x6e, 0x94, 0xdc, 0x0e, 0x8f, 0xeb, 0x3d, 0x20, 0xdd, 0x1e, - 0x57, 0x8c, 0x29, 0x61, 0xab, 0x09, 0x53, 0xf0, 0x72, 0x80, 0x5a, 0x21, 0x40, 0xb6, 0x21, 0x09, - 0xd4, 0x52, 0xd7, 0x93, 0x64, 0x17, 0xa6, 0x93, 0xfd, 0x41, 0x8d, 0x52, 0xe6, 0x2a, 0x53, 0x95, - 0x2d, 0x03, 0xab, 0x8a, 0x3d, 0x7b, 0xfc, 0x99, 0xcd, 0x38, 0x99, 0xf5, 0x5c, 0xab, 0x23, 0x97, - 0x78, 0x9f, 0xdb, 0xe7, 0x97, 0xbf, 0x45, 0xd1, 0xa3, 0xd9, 0x0a, 0xa3, 0x3d, 0x43, 0x9b, 0x7b, - 0xf5, 0xc3, 0xe2, 0x41, 0xbd, 0x7d, 0xa2, 0x37, 0x9a, 0xdf, 0x1d, 0xd7, 0x2b, 0xd5, 0xa6, 0xde, - 0x6a, 0x17, 0xdb, 0x47, 0x2d, 0xbd, 0x7e, 0x58, 0x2c, 0xb7, 0xeb, 0xc7, 0xd5, 0x95, 0x88, 0xf6, - 0x15, 0x7a, 0x32, 0x17, 0xa6, 0x40, 0xd1, 0x6b, 0x41, 0x6f, 0x8b, 0xf5, 0x83, 0x6a, 0x65, 0x25, - 0xa6, 0x3d, 0x45, 0x1b, 0x73, 0x41, 0xad, 0x83, 0x62, 0xab, 0x56, 0xad, 0xac, 0xc4, 0x4b, 0x87, - 0x7f, 0x9c, 0x65, 0xa3, 0x1f, 0xce, 0xb2, 0xd1, 0x7f, 0xce, 0xb2, 0xd1, 0xf7, 0xe7, 0xd9, 0xc8, - 0x87, 0xf3, 0x6c, 0xe4, 0xcf, 0xf3, 0x6c, 0xe4, 0xdd, 0x27, 0x28, 0xee, 0x68, 0xfa, 0xdf, 0xb8, - 0x90, 0x5f, 0x63, 0x49, 0xfc, 0xd7, 0x7e, 0xf3, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x58, 0xf5, - 0x64, 0x5a, 0x27, 0x0c, 0x00, 0x00, + 0x17, 0xe6, 0xa2, 0x0b, 0x34, 0x92, 0x2c, 0xcf, 0x2f, 0xbb, 0x10, 0xbf, 0x85, 0x25, 0x62, 0xbb, + 0x64, 0x57, 0x19, 0x2c, 0x59, 0x8b, 0x2c, 0xc3, 0x4d, 0x02, 0x47, 0xa5, 0x10, 0x40, 0xaa, 0x72, + 0x36, 0x53, 0x3d, 0x33, 0xcd, 0xd0, 0x61, 0xe8, 0x9e, 0x9a, 0xee, 0x41, 0xb0, 0x4f, 0x36, 0x59, + 0xf9, 0x4d, 0xb2, 0xc8, 0x0b, 0x64, 0x99, 0xa5, 0x97, 0xa9, 0x2c, 0x52, 0x29, 0xe9, 0x05, 0xf2, + 0x08, 0xa9, 0xe9, 0xee, 0x01, 0x24, 0x81, 0x64, 0x55, 0x69, 0x47, 0x9f, 0xfe, 0xce, 0xf9, 0xce, + 0xad, 0xbf, 0x01, 0xe4, 0x0c, 0x68, 0x8c, 0x1c, 0x4a, 0x0a, 0x06, 0x37, 0x19, 0x87, 0x3d, 0x4c, + 0xec, 0xc2, 0x60, 0xaf, 0x80, 0x06, 0x88, 0x70, 0x96, 0x77, 0x3d, 0xca, 0xa9, 0xf6, 0x44, 0x61, + 0xf2, 0x13, 0x4c, 0x7e, 0xb0, 0x97, 0xd9, 0xb0, 0xa9, 0x4d, 0x05, 0xa2, 0x10, 0xfc, 0x92, 0xe0, + 0xcc, 0x0b, 0x93, 0xb2, 0x3e, 0x65, 0x85, 0x49, 0x30, 0x03, 0x71, 0xb8, 0x17, 0x9e, 0x15, 0xea, + 0xd5, 0x6c, 0xda, 0x29, 0x02, 0x89, 0xdb, 0x94, 0xd1, 0x74, 0x49, 0x23, 0x0f, 0xf2, 0x2a, 0xf7, + 0x73, 0x0c, 0x3c, 0xab, 0x06, 0x69, 0x1e, 0x62, 0x02, 0x1d, 0xcc, 0x47, 0x0d, 0x8f, 0x0e, 0xb0, + 0x85, 0xbc, 0xb2, 0x87, 0x20, 0x47, 0x96, 0xf6, 0x0c, 0x00, 0x83, 0x9b, 0xba, 0xdb, 0xd3, 0xbb, + 0x68, 0x98, 0x8e, 0x6e, 0x47, 0x77, 0x93, 0xcd, 0x84, 0xc1, 0xcd, 0x46, 0xaf, 0x86, 0x86, 0x9a, + 0x06, 0x16, 0xa0, 0x65, 0x79, 0xe9, 0x98, 0xb0, 0x8b, 0xdf, 0x5a, 0x16, 0x00, 0x93, 0xf6, 0xfb, + 0x98, 0x31, 0x4c, 0x49, 0x3a, 0x2e, 0x6e, 0xa6, 0x2c, 0x5a, 0x1a, 0x2c, 0xf7, 0x29, 0xc1, 0x3d, + 0xe4, 0xa5, 0x17, 0xc4, 0x65, 0x78, 0xd4, 0x32, 0x20, 0x81, 0x2d, 0x44, 0x38, 0xe6, 0xa3, 0xf4, + 0xa2, 0x64, 0x0a, 0xcf, 0x81, 0xd7, 0x39, 0x32, 0x18, 0xe6, 0x28, 0xbd, 0x24, 0xbd, 0xd4, 0x51, + 0x7b, 0x0d, 0xd6, 0x19, 0x32, 0x7d, 0x0f, 0xf3, 0x91, 0x6e, 0x52, 0xc2, 0xa1, 0xc9, 0xd3, 0xcb, + 0x02, 0xf2, 0x28, 0xb4, 0x97, 0xa5, 0x39, 0x08, 0x62, 0x21, 0x0e, 0xb1, 0xc3, 0xd2, 0x09, 0x19, + 0x44, 0x1d, 0x73, 0xff, 0x46, 0xc1, 0xff, 0x67, 0xf6, 0xa1, 0x6a, 0xe1, 0xbb, 0xdb, 0x70, 0xb5, + 0xe4, 0xd8, 0x6d, 0x25, 0xc7, 0xe7, 0x97, 0xbc, 0x30, 0xbf, 0xe4, 0xc5, 0xbb, 0x4b, 0x5e, 0xba, + 0xb3, 0xe4, 0xe5, 0xab, 0x25, 0x7f, 0x8a, 0x82, 0x2d, 0x51, 0x72, 0xa9, 0x5d, 0xae, 0x20, 0x07, + 0xd9, 0x90, 0x63, 0x4a, 0x5a, 0x1c, 0x72, 0x74, 0xea, 0x5a, 0x90, 0x23, 0xed, 0x15, 0x78, 0xa4, + 0x16, 0x49, 0xe7, 0x43, 0xbd, 0x0b, 0x59, 0x57, 0x55, 0xbe, 0xaa, 0xcc, 0xed, 0x61, 0x0d, 0xb2, + 0xae, 0x76, 0x04, 0x92, 0x04, 0x9d, 0xeb, 0x2c, 0x70, 0x15, 0xd5, 0xaf, 0xed, 0xbf, 0xc9, 0xcf, + 0x5c, 0xf7, 0xfc, 0x0d, 0x2e, 0x9f, 0x35, 0x13, 0x04, 0x9d, 0x0b, 0xda, 0x5c, 0x07, 0x3c, 0x15, + 0x19, 0xb5, 0x90, 0x83, 0x4c, 0x8e, 0x07, 0xa8, 0xe5, 0x40, 0xd6, 0xc5, 0xc4, 0xd6, 0x8e, 0x41, + 0x02, 0x05, 0xf3, 0x20, 0x26, 0x12, 0x39, 0xa4, 0xf6, 0xdf, 0xcd, 0x61, 0xb8, 0xe1, 0x5b, 0x55, + 0x7e, 0xcd, 0x71, 0x84, 0xdc, 0x4f, 0x4b, 0x60, 0x43, 0x10, 0x35, 0xe8, 0x39, 0xf2, 0x2a, 0x98, + 0x71, 0x55, 0x31, 0x06, 0x80, 0x05, 0x6e, 0xc8, 0xd2, 0x3b, 0xae, 0x22, 0xaa, 0xcd, 0x21, 0x9a, + 0x15, 0x40, 0x1a, 0x5b, 0x32, 0xc4, 0xf5, 0x55, 0xaa, 0x45, 0x9a, 0x49, 0x15, 0xfd, 0xd0, 0xd5, + 0x3a, 0x20, 0xf9, 0x23, 0xc4, 0x8e, 0x64, 0x8a, 0x09, 0xa6, 0xa3, 0x7b, 0x33, 0x7d, 0x10, 0x11, + 0x66, 0x10, 0x25, 0x64, 0xec, 0x43, 0x57, 0x73, 0x40, 0xca, 0x27, 0x13, 0xa6, 0xb8, 0x60, 0xaa, + 0xdf, 0x9b, 0xe9, 0x54, 0xc5, 0x98, 0xc1, 0x05, 0xc2, 0xf8, 0x87, 0xae, 0x66, 0x83, 0x8d, 0xe0, + 0x9d, 0x58, 0xc8, 0x91, 0xeb, 0xa0, 0xfb, 0x22, 0x86, 0xd8, 0xed, 0xd4, 0xfe, 0xc1, 0x6d, 0xb4, + 0xf3, 0xd6, 0xb0, 0x16, 0x69, 0x3e, 0x36, 0xb8, 0x59, 0x41, 0xce, 0x94, 0x31, 0xd3, 0x55, 0xba, + 0x35, 0xa7, 0xd7, 0x5a, 0x0d, 0xc4, 0xdc, 0x9e, 0x98, 0xe0, 0x4a, 0xe9, 0xeb, 0xbf, 0xfe, 0x7e, + 0x7e, 0x60, 0x63, 0xde, 0xf5, 0x8d, 0xbc, 0x49, 0xfb, 0x05, 0x95, 0x84, 0x03, 0x0d, 0xf6, 0x16, + 0xd3, 0xf0, 0x58, 0xe0, 0x23, 0x17, 0xb1, 0x7c, 0xa9, 0xde, 0x78, 0x7f, 0xf0, 0xae, 0xe1, 0x1b, + 0xdf, 0xa2, 0x51, 0x33, 0xe6, 0xf6, 0x32, 0xb6, 0x52, 0x86, 0xd9, 0xbd, 0x7e, 0x40, 0x22, 0xac, + 0xde, 0xe3, 0xbc, 0x56, 0x3f, 0x1c, 0x55, 0x69, 0x01, 0xc4, 0xd0, 0x20, 0xf7, 0x11, 0xec, 0xcc, + 0xd4, 0x3c, 0xf9, 0x2e, 0xcb, 0x5d, 0x48, 0x6c, 0xa4, 0x3d, 0x01, 0x4b, 0x52, 0xf9, 0xd4, 0xdb, + 0x5f, 0x14, 0xaa, 0xa7, 0x6d, 0x01, 0x10, 0xbe, 0x79, 0x9f, 0x29, 0xc9, 0x4b, 0xaa, 0x87, 0xec, + 0xb3, 0xdc, 0x2f, 0x71, 0xb0, 0x79, 0x73, 0xaa, 0xe1, 0x47, 0xe5, 0x4b, 0x85, 0xe5, 0x25, 0x58, + 0x73, 0xa1, 0x07, 0xfb, 0x4c, 0x1f, 0x20, 0x6f, 0x4a, 0x5b, 0x57, 0xa5, 0xf5, 0x4c, 0x1a, 0xb5, + 0x6f, 0xc0, 0x56, 0x47, 0x95, 0x10, 0x7c, 0xe3, 0x44, 0x0d, 0xba, 0x4c, 0x9a, 0x09, 0xbd, 0x8e, + 0x6f, 0xc7, 0x77, 0x93, 0xcd, 0xcd, 0xce, 0xb5, 0x3a, 0x4b, 0x41, 0x25, 0x2c, 0x10, 0xf0, 0xd7, + 0xe0, 0x71, 0xc0, 0x3c, 0x76, 0x13, 0x5e, 0x52, 0x8f, 0xd7, 0xe4, 0x45, 0x29, 0xd4, 0xfa, 0x1d, + 0xb0, 0x32, 0xce, 0x1d, 0xf7, 0x43, 0x69, 0x4e, 0x85, 0x89, 0xe3, 0x3e, 0x0a, 0xd2, 0x0e, 0x21, + 0xb0, 0x4f, 0x7d, 0x12, 0x8a, 0x73, 0x58, 0x5d, 0x51, 0x18, 0x03, 0x98, 0x4f, 0x0c, 0x4a, 0xac, + 0x71, 0x2c, 0xa9, 0xd0, 0xab, 0x63, 0xab, 0x88, 0xb6, 0x03, 0x56, 0xa6, 0x60, 0x43, 0xf5, 0xe5, + 0x4a, 0x4d, 0x40, 0xc3, 0x6b, 0xc3, 0x48, 0x5e, 0x1f, 0xc6, 0xef, 0x51, 0x90, 0x15, 0xc3, 0x28, + 0xd3, 0x01, 0x22, 0x90, 0xf0, 0x16, 0xb6, 0x09, 0xe4, 0xbe, 0x87, 0x9a, 0xc8, 0x44, 0x78, 0x70, + 0x8f, 0x89, 0xbc, 0x05, 0xff, 0x33, 0x55, 0x90, 0xe9, 0x56, 0xc9, 0xb1, 0xac, 0x87, 0x57, 0xe3, + 0x66, 0x1d, 0x81, 0xed, 0x31, 0x7c, 0x52, 0x04, 0x0b, 0xe9, 0xd5, 0x70, 0x02, 0xdf, 0xad, 0x10, + 0x77, 0x1a, 0xc2, 0xc6, 0x49, 0xd6, 0xd0, 0x30, 0x67, 0x82, 0xcc, 0x95, 0x0a, 0xbe, 0xf7, 0xa9, + 0xe7, 0xf7, 0x9b, 0x08, 0x9a, 0xdd, 0x7b, 0x64, 0x7f, 0xc7, 0xd2, 0xfe, 0x16, 0x05, 0xbb, 0x37, + 0x97, 0xb6, 0x4e, 0x4c, 0xc7, 0x0f, 0xf6, 0xac, 0xe1, 0x51, 0xda, 0xb9, 0x77, 0xc7, 0xe4, 0xbe, + 0x78, 0x5c, 0xef, 0x22, 0x6c, 0x77, 0xb9, 0x62, 0x4d, 0x09, 0x5b, 0x4d, 0x98, 0x82, 0xb4, 0x10, + 0xb1, 0x42, 0x80, 0xec, 0x47, 0x12, 0x11, 0x6b, 0x72, 0x3d, 0x95, 0xf5, 0xc2, 0xf5, 0xac, 0x6d, + 0x35, 0x5c, 0x99, 0xb4, 0xcc, 0x59, 0x36, 0x11, 0x59, 0x55, 0xe8, 0x39, 0xa3, 0x87, 0x6a, 0x8f, + 0x31, 0xeb, 0x49, 0x57, 0x87, 0x2e, 0xf6, 0x1e, 0x6c, 0x04, 0x6f, 0x7e, 0x8d, 0x82, 0xa7, 0xb3, + 0xe5, 0x48, 0x7b, 0x09, 0x76, 0x0e, 0xeb, 0x27, 0xc5, 0xe3, 0x7a, 0xfb, 0xa3, 0xde, 0x68, 0x7e, + 0x77, 0x56, 0xaf, 0x54, 0x9b, 0x7a, 0xab, 0x5d, 0x6c, 0x9f, 0xb6, 0xf4, 0xfa, 0x49, 0xb1, 0xdc, + 0xae, 0x9f, 0x55, 0xd7, 0x23, 0xda, 0x57, 0xe0, 0xf9, 0x5c, 0x98, 0x02, 0x45, 0x6f, 0x05, 0x7d, + 0x28, 0xd6, 0x8f, 0xab, 0x95, 0xf5, 0x98, 0xf6, 0x02, 0x6c, 0xcf, 0x05, 0xb5, 0x8e, 0x8b, 0xad, + 0x5a, 0xb5, 0xb2, 0x1e, 0x2f, 0x9d, 0xfc, 0x71, 0x91, 0x8d, 0x7e, 0xbe, 0xc8, 0x46, 0xff, 0xb9, + 0xc8, 0x46, 0x3f, 0x5d, 0x66, 0x23, 0x9f, 0x2f, 0xb3, 0x91, 0x3f, 0x2f, 0xb3, 0x91, 0x1f, 0xbe, + 0x40, 0x9e, 0x87, 0xd3, 0x7f, 0xdd, 0x85, 0x56, 0x1b, 0x4b, 0xe2, 0x8f, 0xf9, 0xfb, 0xff, 0x02, + 0x00, 0x00, 0xff, 0xff, 0x24, 0x56, 0x67, 0x0c, 0x54, 0x0c, 0x00, 0x00, } func (m *EventFinalityProviderCreated) Marshal() (dAtA []byte, err error) { @@ -1737,10 +1736,10 @@ func (m *EventBTCDelegationCreated) MarshalToSizedBuffer(dAtA []byte) (int, erro _ = i var l int _ = l - if len(m.State) > 0 { - i -= len(m.State) - copy(dAtA[i:], m.State) - i = encodeVarintEvents(dAtA, i, uint64(len(m.State))) + if len(m.NewStatus) > 0 { + i -= len(m.NewStatus) + copy(dAtA[i:], m.NewStatus) + i = encodeVarintEvents(dAtA, i, uint64(len(m.NewStatus))) i-- dAtA[i] = 0x4a } @@ -1869,10 +1868,10 @@ func (m *EventCovenantQuorumReached) MarshalToSizedBuffer(dAtA []byte) (int, err _ = i var l int _ = l - if len(m.State) > 0 { - i -= len(m.State) - copy(dAtA[i:], m.State) - i = encodeVarintEvents(dAtA, i, uint64(len(m.State))) + if len(m.NewStatus) > 0 { + i -= len(m.NewStatus) + copy(dAtA[i:], m.NewStatus) + i = encodeVarintEvents(dAtA, i, uint64(len(m.NewStatus))) i-- dAtA[i] = 0x12 } @@ -1906,10 +1905,10 @@ func (m *EventBTCDelegationInclusionProofReceived) MarshalToSizedBuffer(dAtA []b _ = i var l int _ = l - if len(m.State) > 0 { - i -= len(m.State) - copy(dAtA[i:], m.State) - i = encodeVarintEvents(dAtA, i, uint64(len(m.State))) + if len(m.NewStatus) > 0 { + i -= len(m.NewStatus) + copy(dAtA[i:], m.NewStatus) + i = encodeVarintEvents(dAtA, i, uint64(len(m.NewStatus))) i-- dAtA[i] = 0x22 } @@ -1957,10 +1956,10 @@ func (m *EventBTCDelgationUnbondedEarly) MarshalToSizedBuffer(dAtA []byte) (int, _ = i var l int _ = l - if len(m.State) > 0 { - i -= len(m.State) - copy(dAtA[i:], m.State) - i = encodeVarintEvents(dAtA, i, uint64(len(m.State))) + if len(m.NewStatus) > 0 { + i -= len(m.NewStatus) + copy(dAtA[i:], m.NewStatus) + i = encodeVarintEvents(dAtA, i, uint64(len(m.NewStatus))) i-- dAtA[i] = 0x12 } @@ -1994,10 +1993,10 @@ func (m *EventBTCDelegationExpired) MarshalToSizedBuffer(dAtA []byte) (int, erro _ = i var l int _ = l - if len(m.State) > 0 { - i -= len(m.State) - copy(dAtA[i:], m.State) - i = encodeVarintEvents(dAtA, i, uint64(len(m.State))) + if len(m.NewStatus) > 0 { + i -= len(m.NewStatus) + copy(dAtA[i:], m.NewStatus) + i = encodeVarintEvents(dAtA, i, uint64(len(m.NewStatus))) i-- dAtA[i] = 0x12 } @@ -2285,7 +2284,7 @@ func (m *EventBTCDelegationCreated) Size() (n int) { if l > 0 { n += 1 + l + sovEvents(uint64(l)) } - l = len(m.State) + l = len(m.NewStatus) if l > 0 { n += 1 + l + sovEvents(uint64(l)) } @@ -2323,7 +2322,7 @@ func (m *EventCovenantQuorumReached) Size() (n int) { if l > 0 { n += 1 + l + sovEvents(uint64(l)) } - l = len(m.State) + l = len(m.NewStatus) if l > 0 { n += 1 + l + sovEvents(uint64(l)) } @@ -2348,7 +2347,7 @@ func (m *EventBTCDelegationInclusionProofReceived) Size() (n int) { if l > 0 { n += 1 + l + sovEvents(uint64(l)) } - l = len(m.State) + l = len(m.NewStatus) if l > 0 { n += 1 + l + sovEvents(uint64(l)) } @@ -2365,7 +2364,7 @@ func (m *EventBTCDelgationUnbondedEarly) Size() (n int) { if l > 0 { n += 1 + l + sovEvents(uint64(l)) } - l = len(m.State) + l = len(m.NewStatus) if l > 0 { n += 1 + l + sovEvents(uint64(l)) } @@ -2382,7 +2381,7 @@ func (m *EventBTCDelegationExpired) Size() (n int) { if l > 0 { n += 1 + l + sovEvents(uint64(l)) } - l = len(m.State) + l = len(m.NewStatus) if l > 0 { n += 1 + l + sovEvents(uint64(l)) } @@ -4008,7 +4007,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 9: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field State", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NewStatus", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -4036,7 +4035,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.State = string(dAtA[iNdEx:postIndex]) + m.NewStatus = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -4268,7 +4267,7 @@ func (m *EventCovenantQuorumReached) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field State", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NewStatus", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -4296,7 +4295,7 @@ func (m *EventCovenantQuorumReached) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.State = string(dAtA[iNdEx:postIndex]) + m.NewStatus = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -4446,7 +4445,7 @@ func (m *EventBTCDelegationInclusionProofReceived) Unmarshal(dAtA []byte) error iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field State", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NewStatus", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -4474,7 +4473,7 @@ func (m *EventBTCDelegationInclusionProofReceived) Unmarshal(dAtA []byte) error if postIndex > l { return io.ErrUnexpectedEOF } - m.State = string(dAtA[iNdEx:postIndex]) + m.NewStatus = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -4560,7 +4559,7 @@ func (m *EventBTCDelgationUnbondedEarly) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field State", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NewStatus", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -4588,7 +4587,7 @@ func (m *EventBTCDelgationUnbondedEarly) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.State = string(dAtA[iNdEx:postIndex]) + m.NewStatus = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -4674,7 +4673,7 @@ func (m *EventBTCDelegationExpired) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field State", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NewStatus", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -4702,7 +4701,7 @@ func (m *EventBTCDelegationExpired) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.State = string(dAtA[iNdEx:postIndex]) + m.NewStatus = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex