diff --git a/proto/observer/query.proto b/proto/observer/query.proto index 556b71da92..7d928d5af4 100644 --- a/proto/observer/query.proto +++ b/proto/observer/query.proto @@ -217,8 +217,8 @@ message QueryAllBlameRecordsResponse { } message QueryBlameByChainAndNonceRequest { - uint32 chain_id = 1; - uint64 nonce = 2; + int64 chain_id = 1; + int64 nonce = 2; } message QueryBlameByChainAndNonceResponse { diff --git a/x/observer/client/cli/query_blame.go b/x/observer/client/cli/query_blame.go index 210debef0f..9f8ef68a4b 100644 --- a/x/observer/client/cli/query_blame.go +++ b/x/observer/client/cli/query_blame.go @@ -1,11 +1,12 @@ package cli import ( + "strconv" + "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" "github.com/zeta-chain/zetacore/x/observer/types" - "strconv" ) func CmdBlameByIdentifier() *cobra.Command { @@ -87,16 +88,16 @@ func CmdGetBlameByChainAndNonce() *cobra.Command { queryClient := types.NewQueryClient(clientCtx) - chain, err := strconv.ParseUint(chainId, 10, 32) + chain, err := strconv.ParseInt(chainId, 10, 64) if err != nil { return err } - nonceInt, err := strconv.ParseUint(nonce, 10, 64) + nonceInt, err := strconv.ParseInt(nonce, 10, 64) if err != nil { return err } params := &types.QueryBlameByChainAndNonceRequest{ - ChainId: uint32(chain), + ChainId: chain, Nonce: nonceInt, } diff --git a/x/observer/keeper/blame.go b/x/observer/keeper/blame.go index 4cdd4c978f..109e0f04ca 100644 --- a/x/observer/keeper/blame.go +++ b/x/observer/keeper/blame.go @@ -3,6 +3,7 @@ package keeper import ( "context" "fmt" + "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/zeta-chain/zetacore/x/observer/types" @@ -40,7 +41,7 @@ func (k Keeper) GetAllBlame(ctx sdk.Context) (BlameRecords []*types.Blame, found return } -func (k Keeper) GetBlameByChainAndNonce(ctx sdk.Context, chainID uint32, nonce uint64) (BlameRecords []*types.Blame, found bool) { +func (k Keeper) GetBlameByChainAndNonce(ctx sdk.Context, chainID int64, nonce int64) (BlameRecords []*types.Blame, found bool) { store := prefix.NewStore(ctx.KVStore(k.storeKey), types.KeyPrefix(types.BlameKey)) blamePrefix := fmt.Sprintf("%d-%d", chainID, nonce) iterator := sdk.KVStorePrefixIterator(store, []byte(blamePrefix)) diff --git a/x/observer/keeper/blame_test.go b/x/observer/keeper/blame_test.go index 74bdb7b9a9..8c8e2cbfe9 100644 --- a/x/observer/keeper/blame_test.go +++ b/x/observer/keeper/blame_test.go @@ -2,10 +2,11 @@ package keeper import ( "fmt" + "testing" + "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/zeta-chain/zetacore/x/observer/types" - "testing" ) func TestKeeper_BlameByIdentifier(t *testing.T) { @@ -29,8 +30,8 @@ func TestKeeper_BlameByIdentifier(t *testing.T) { func TestKeeper_BlameByChainAndNonce(t *testing.T) { keeper, ctx := SetupKeeper(t) - var chainId uint32 = 97 - var nonce uint64 = 101 + var chainId int64 = 97 + var nonce int64 = 101 digest := "85f5e10431f69bc2a14046a13aabaefc660103b6de7a84f75c4b96181d03f0b5" index := fmt.Sprintf("%d-%d-%s-%d", chainId, nonce, digest, 123) diff --git a/x/observer/types/query.pb.go b/x/observer/types/query.pb.go index e5595ebbf4..f586015e57 100644 --- a/x/observer/types/query.pb.go +++ b/x/observer/types/query.pb.go @@ -1407,8 +1407,8 @@ func (m *QueryAllBlameRecordsResponse) GetBlameInfo() []*Blame { } type QueryBlameByChainAndNonceRequest struct { - ChainId uint32 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` - Nonce uint64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"` + ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` + Nonce int64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"` } func (m *QueryBlameByChainAndNonceRequest) Reset() { *m = QueryBlameByChainAndNonceRequest{} } @@ -1444,14 +1444,14 @@ func (m *QueryBlameByChainAndNonceRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryBlameByChainAndNonceRequest proto.InternalMessageInfo -func (m *QueryBlameByChainAndNonceRequest) GetChainId() uint32 { +func (m *QueryBlameByChainAndNonceRequest) GetChainId() int64 { if m != nil { return m.ChainId } return 0 } -func (m *QueryBlameByChainAndNonceRequest) GetNonce() uint64 { +func (m *QueryBlameByChainAndNonceRequest) GetNonce() int64 { if m != nil { return m.Nonce } @@ -1729,126 +1729,125 @@ func init() { func init() { proto.RegisterFile("observer/query.proto", fileDescriptor_dcb801e455adaee4) } var fileDescriptor_dcb801e455adaee4 = []byte{ - // 1889 bytes of a gzipped FileDescriptorProto + // 1885 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x59, 0xcf, 0x6f, 0x1b, 0xc7, - 0x15, 0xf6, 0x4a, 0x16, 0x2d, 0x3d, 0x4a, 0x96, 0x34, 0xa2, 0x63, 0x79, 0x25, 0x51, 0xec, 0xa8, + 0x15, 0xf6, 0x8a, 0x16, 0x6d, 0x3d, 0x4a, 0x96, 0x34, 0xa6, 0x63, 0x79, 0x25, 0x51, 0xec, 0xa8, 0x76, 0x68, 0xc9, 0xe1, 0x46, 0x34, 0x90, 0xd8, 0x51, 0xa4, 0x94, 0x14, 0x62, 0x59, 0xb1, 0xe3, 0xb8, 0x54, 0x9b, 0x16, 0x2d, 0x5a, 0x62, 0x49, 0x8e, 0x28, 0x26, 0xab, 0x1d, 0x66, 0x77, 0xa5, 0x88, 0x15, 0x04, 0x14, 0x3d, 0xf7, 0x10, 0xa0, 0x40, 0xcf, 0x3d, 0xf5, 0xd6, 0x1e, 0x72, 0xe9, 0xa1, 0xe8, 0xa5, 0x97, 0xe6, 0x54, 0xa4, 0x28, 0x50, 0xb4, 0x87, 0xfe, 0x80, 0xdd, 0x7b, 0xff, 0x85, 0x62, 0x7e, 0xec, 0x72, 0xb8, 0xdc, 0x25, 0x97, 0x82, 0x4f, 0xe2, 0xce, 0xcc, 0x7b, 0xf3, - 0x7d, 0x6f, 0x66, 0xde, 0x7b, 0x1f, 0x04, 0x19, 0x5a, 0x73, 0x89, 0x73, 0x4a, 0x1c, 0xe3, 0xb3, - 0x13, 0xe2, 0x74, 0x0a, 0x6d, 0x87, 0x7a, 0x14, 0x2d, 0xfd, 0x84, 0x78, 0x66, 0xfd, 0xc8, 0x6c, - 0xd9, 0x05, 0xfe, 0x8b, 0x3a, 0xa4, 0xe0, 0x2f, 0xd4, 0x17, 0xea, 0xf4, 0xf8, 0x98, 0xda, 0x86, - 0xf8, 0x23, 0x2c, 0xf4, 0xf5, 0x3a, 0x75, 0x8f, 0xa9, 0x6b, 0xd4, 0x4c, 0x97, 0x08, 0x57, 0xc6, - 0xe9, 0x66, 0x8d, 0x78, 0xe6, 0xa6, 0xd1, 0x36, 0x9b, 0x2d, 0xdb, 0xf4, 0x5a, 0xc1, 0xda, 0x4c, - 0x93, 0x36, 0x29, 0xff, 0x69, 0xb0, 0x5f, 0x72, 0x74, 0xb9, 0x49, 0x69, 0xd3, 0x22, 0x86, 0xd9, - 0x6e, 0x19, 0xa6, 0x6d, 0x53, 0x8f, 0x9b, 0xb8, 0x72, 0xf6, 0x46, 0x80, 0xb3, 0x66, 0x5a, 0x16, - 0xf5, 0x7c, 0x57, 0xdd, 0x61, 0xcb, 0x3c, 0x26, 0x72, 0x74, 0x35, 0x18, 0xad, 0x3b, 0xd4, 0x75, - 0x39, 0x91, 0xea, 0xa1, 0x65, 0x36, 0xfb, 0xbd, 0x7d, 0x4a, 0x3a, 0x4d, 0xe2, 0x03, 0x5b, 0x0a, - 0x86, 0x6d, 0xda, 0x20, 0x55, 0xb3, 0x5e, 0xa7, 0x27, 0xb6, 0xbf, 0xd5, 0xcd, 0x60, 0xd2, 0xff, - 0xd1, 0xe7, 0xac, 0x6d, 0x3a, 0xe6, 0xb1, 0xdc, 0x03, 0xff, 0x5a, 0x83, 0xf9, 0x6f, 0xb3, 0x40, - 0x3c, 0x77, 0xe8, 0x29, 0xa9, 0x90, 0xcf, 0x4e, 0x88, 0xeb, 0xa1, 0x5b, 0x30, 0x29, 0xe0, 0xb4, - 0x1a, 0x8b, 0x5a, 0x4e, 0xcb, 0x5f, 0xad, 0x5c, 0xe3, 0xdf, 0xfb, 0x0d, 0x74, 0x13, 0xae, 0x79, - 0x67, 0xd5, 0x23, 0xd3, 0x3d, 0x5a, 0x1c, 0xcb, 0x69, 0xf9, 0xa9, 0x4a, 0xca, 0x3b, 0x7b, 0x6c, - 0xba, 0x47, 0x68, 0x0d, 0x26, 0xda, 0x0e, 0xa5, 0x87, 0x8b, 0xe3, 0x39, 0x2d, 0x9f, 0x2e, 0xce, - 0x14, 0x64, 0xe4, 0x9f, 0xb3, 0xc1, 0x8a, 0x98, 0x43, 0x2b, 0x00, 0x35, 0x8b, 0xd6, 0x3f, 0x15, - 0x0e, 0xae, 0x72, 0x07, 0x53, 0x7c, 0x84, 0xfb, 0xb8, 0x05, 0x93, 0xde, 0x59, 0xb5, 0x65, 0x37, - 0xc8, 0xd9, 0xe2, 0x44, 0x4e, 0xcb, 0x8f, 0x57, 0xae, 0x79, 0x67, 0xfb, 0xec, 0x13, 0xaf, 0x03, - 0x52, 0x71, 0xba, 0x6d, 0x6a, 0xbb, 0x04, 0x65, 0x60, 0xe2, 0xd4, 0xb4, 0x24, 0xca, 0xc9, 0x8a, - 0xf8, 0xc0, 0x19, 0x7f, 0x2d, 0x67, 0x2a, 0x49, 0xe1, 0xef, 0xc3, 0x42, 0xcf, 0xa8, 0x74, 0x51, - 0x82, 0x94, 0x88, 0x08, 0xf7, 0x91, 0x2e, 0xae, 0x15, 0x06, 0x5c, 0xab, 0x82, 0x30, 0x2e, 0x5f, - 0xfd, 0xea, 0x5f, 0xab, 0x57, 0x2a, 0xd2, 0x10, 0x7f, 0x08, 0x59, 0xee, 0xb9, 0xcc, 0x0f, 0xbd, - 0xdc, 0xd9, 0x6f, 0x10, 0xdb, 0x6b, 0x1d, 0xb6, 0x88, 0xe3, 0x07, 0x74, 0x03, 0xe6, 0xc5, 0x8d, - 0xa8, 0xb6, 0x82, 0x39, 0xbe, 0xdf, 0x54, 0x65, 0x4e, 0x4c, 0x74, 0x6d, 0xb0, 0x07, 0x53, 0x1f, - 0x53, 0x8f, 0x38, 0x4f, 0x5b, 0xae, 0x87, 0xd6, 0x60, 0xe6, 0x94, 0x7d, 0x54, 0xcd, 0x46, 0xc3, - 0x21, 0xae, 0x2b, 0xad, 0xa6, 0xf9, 0x60, 0x49, 0x8c, 0xa1, 0x32, 0x4c, 0xb1, 0xef, 0xaa, 0xd7, - 0x69, 0x13, 0x7e, 0x2c, 0xd7, 0x8b, 0xb7, 0x07, 0xd2, 0x60, 0xfe, 0xbf, 0xd3, 0x69, 0x93, 0xca, - 0xe4, 0xa9, 0xfc, 0x85, 0x7f, 0x37, 0x06, 0xab, 0xb1, 0x2c, 0x64, 0xac, 0x46, 0xa1, 0x81, 0x76, - 0x20, 0xc5, 0x41, 0xba, 0x8b, 0x63, 0xb9, 0xf1, 0x7c, 0xba, 0x78, 0x67, 0x28, 0x22, 0xce, 0xb8, - 0x22, 0xad, 0xd0, 0xf7, 0x60, 0x4e, 0xcc, 0xf2, 0x27, 0x26, 0xb8, 0x8d, 0x73, 0x6e, 0xf7, 0x06, - 0x7a, 0xfa, 0xa8, 0x6b, 0xc4, 0x29, 0xce, 0xd2, 0xde, 0x01, 0xf4, 0x0c, 0x66, 0x24, 0x0b, 0xd7, - 0x33, 0xbd, 0x13, 0x97, 0xdf, 0xc3, 0xeb, 0xc5, 0xbb, 0x03, 0xbd, 0x8a, 0xa8, 0x1c, 0x70, 0x83, - 0xca, 0x74, 0x4d, 0xf9, 0xc2, 0x4f, 0x60, 0x99, 0x07, 0xee, 0x23, 0xb9, 0xd6, 0x2d, 0x77, 0x76, - 0x99, 0x17, 0xe5, 0xf0, 0x55, 0x22, 0x7c, 0x07, 0x3f, 0x6a, 0xca, 0x04, 0xb7, 0xc1, 0xdb, 0xb0, - 0x12, 0xe3, 0x4c, 0x9e, 0xc1, 0x32, 0x4c, 0xf9, 0xa0, 0xd8, 0x65, 0x18, 0x67, 0x2f, 0x28, 0x18, - 0xc0, 0x39, 0x79, 0x15, 0x4b, 0x96, 0xe5, 0x7b, 0xf8, 0xd0, 0x6c, 0xb7, 0x89, 0x13, 0x3c, 0x83, - 0x8e, 0x3c, 0xe6, 0xa8, 0x15, 0x72, 0x8b, 0x8f, 0xfd, 0xc8, 0x13, 0xa7, 0x7a, 0x2c, 0xe6, 0xf8, - 0x4e, 0xe9, 0xe2, 0x46, 0x82, 0xc8, 0xfb, 0xfe, 0xfc, 0xc0, 0x07, 0xfe, 0xf1, 0x6b, 0x90, 0xe1, - 0x5b, 0x1f, 0x9c, 0xb4, 0xdb, 0xd4, 0xf1, 0x48, 0x83, 0x33, 0x73, 0xf1, 0xfb, 0x32, 0x80, 0xa1, - 0xf1, 0x00, 0xcf, 0x6d, 0x48, 0xf1, 0x2d, 0x7d, 0x14, 0x41, 0x6e, 0x11, 0x91, 0x91, 0x93, 0x78, - 0x07, 0xbe, 0xc1, 0xdd, 0xec, 0x11, 0x6f, 0x97, 0x3a, 0x44, 0x3c, 0xd5, 0x47, 0xd4, 0xe9, 0x39, - 0x8c, 0x70, 0x6a, 0x1b, 0x0f, 0x52, 0x1b, 0xb6, 0x01, 0x0f, 0xb2, 0x97, 0x60, 0x1e, 0x43, 0x9a, - 0xb1, 0xae, 0xf6, 0x24, 0x8d, 0xd7, 0x07, 0xc6, 0xa5, 0xeb, 0xad, 0x02, 0xf5, 0xe0, 0x37, 0x5e, - 0x82, 0x5b, 0xfd, 0xfb, 0xf9, 0xc7, 0xf4, 0x09, 0xe8, 0x51, 0x93, 0x12, 0xc4, 0xd3, 0x28, 0x10, - 0x1b, 0x09, 0x41, 0xf0, 0x57, 0xa6, 0x02, 0x29, 0x76, 0xf7, 0x7a, 0x46, 0x1b, 0xa4, 0x24, 0x2a, - 0x8a, 0x1f, 0xb1, 0x0c, 0x4c, 0x88, 0x8c, 0x2c, 0xae, 0xac, 0xf8, 0xc0, 0x9f, 0xc0, 0x52, 0xa4, - 0x8d, 0x04, 0xf8, 0x04, 0xa6, 0xd5, 0xea, 0x24, 0x11, 0xe6, 0x07, 0x22, 0x54, 0xfd, 0xa4, 0xed, - 0xee, 0x07, 0x6e, 0x48, 0x7c, 0x25, 0xcb, 0x8a, 0xc0, 0xf7, 0x08, 0xa0, 0x5b, 0xbc, 0xe5, 0x46, - 0x77, 0x0a, 0xa2, 0xd2, 0x17, 0x58, 0xa5, 0x2f, 0x88, 0xa6, 0x41, 0x56, 0xfa, 0xc2, 0x73, 0xb3, - 0xe9, 0x17, 0xba, 0x8a, 0x62, 0x89, 0xbf, 0xd4, 0x24, 0xa5, 0xf0, 0x36, 0x92, 0xd2, 0x07, 0x90, - 0x56, 0x86, 0xe5, 0x55, 0x1c, 0x81, 0x91, 0xf2, 0x81, 0xf6, 0x7a, 0x30, 0x8f, 0xc9, 0x3b, 0x34, - 0x0c, 0xb3, 0x00, 0xd2, 0x03, 0xda, 0x7f, 0xef, 0xec, 0x9a, 0x04, 0x5d, 0xc4, 0x23, 0xd6, 0x44, + 0x7d, 0x6f, 0x66, 0xde, 0x7b, 0x1f, 0x04, 0x59, 0x5a, 0x77, 0x89, 0x73, 0x42, 0x1c, 0xe3, 0xb3, + 0x63, 0xe2, 0x74, 0x8b, 0x1d, 0x87, 0x7a, 0x14, 0x2d, 0xfe, 0x84, 0x78, 0x66, 0xe3, 0xd0, 0x6c, + 0xdb, 0x45, 0xfe, 0x8b, 0x3a, 0xa4, 0xe8, 0x2f, 0xd4, 0xaf, 0x37, 0xe8, 0xd1, 0x11, 0xb5, 0x0d, + 0xf1, 0x47, 0x58, 0xe8, 0x6b, 0x0d, 0xea, 0x1e, 0x51, 0xd7, 0xa8, 0x9b, 0x2e, 0x11, 0xae, 0x8c, + 0x93, 0x8d, 0x3a, 0xf1, 0xcc, 0x0d, 0xa3, 0x63, 0xb6, 0xda, 0xb6, 0xe9, 0xb5, 0x83, 0xb5, 0xd9, + 0x16, 0x6d, 0x51, 0xfe, 0xd3, 0x60, 0xbf, 0xe4, 0xe8, 0x52, 0x8b, 0xd2, 0x96, 0x45, 0x0c, 0xb3, + 0xd3, 0x36, 0x4c, 0xdb, 0xa6, 0x1e, 0x37, 0x71, 0xe5, 0xec, 0x8d, 0x00, 0x67, 0xdd, 0xb4, 0x2c, + 0xea, 0xf9, 0xae, 0x7a, 0xc3, 0x96, 0x79, 0x44, 0xe4, 0xe8, 0x4a, 0x30, 0xda, 0x70, 0xa8, 0xeb, + 0x72, 0x22, 0xb5, 0x03, 0xcb, 0x6c, 0x0d, 0x7a, 0xfb, 0x94, 0x74, 0x5b, 0xc4, 0x07, 0xb6, 0x18, + 0x0c, 0xdb, 0xb4, 0x49, 0x6a, 0x66, 0xa3, 0x41, 0x8f, 0x6d, 0x7f, 0xab, 0x9b, 0xc1, 0xa4, 0xff, + 0x63, 0xc0, 0x59, 0xc7, 0x74, 0xcc, 0x23, 0xb9, 0x07, 0xfe, 0xb5, 0x06, 0xf3, 0xdf, 0x66, 0x81, + 0x78, 0xee, 0xd0, 0x13, 0x52, 0x25, 0x9f, 0x1d, 0x13, 0xd7, 0x43, 0xb7, 0xe0, 0xaa, 0x80, 0xd3, + 0x6e, 0x2e, 0x68, 0x79, 0xad, 0x70, 0xb9, 0x7a, 0x85, 0x7f, 0xef, 0x35, 0xd1, 0x4d, 0xb8, 0xe2, + 0x9d, 0xd6, 0x0e, 0x4d, 0xf7, 0x70, 0x61, 0x22, 0xaf, 0x15, 0xa6, 0xaa, 0x69, 0xef, 0xf4, 0xb1, + 0xe9, 0x1e, 0xa2, 0x55, 0x98, 0xec, 0x38, 0x94, 0x1e, 0x2c, 0xa4, 0xf2, 0x5a, 0x21, 0x53, 0x9a, + 0x29, 0xca, 0xc8, 0x3f, 0x67, 0x83, 0x55, 0x31, 0x87, 0x96, 0x01, 0xea, 0x16, 0x6d, 0x7c, 0x2a, + 0x1c, 0x5c, 0xe6, 0x0e, 0xa6, 0xf8, 0x08, 0xf7, 0x71, 0x0b, 0xae, 0x7a, 0xa7, 0xb5, 0xb6, 0xdd, + 0x24, 0xa7, 0x0b, 0x93, 0x79, 0xad, 0x90, 0xaa, 0x5e, 0xf1, 0x4e, 0xf7, 0xd8, 0x27, 0x5e, 0x03, + 0xa4, 0xe2, 0x74, 0x3b, 0xd4, 0x76, 0x09, 0xca, 0xc2, 0xe4, 0x89, 0x69, 0x49, 0x94, 0x57, 0xab, + 0xe2, 0x03, 0x67, 0xfd, 0xb5, 0x9c, 0xa9, 0x24, 0x85, 0xbf, 0x0f, 0xd7, 0xfb, 0x46, 0xa5, 0x8b, + 0x32, 0xa4, 0x45, 0x44, 0xb8, 0x8f, 0x4c, 0x69, 0xb5, 0x38, 0xe4, 0x5a, 0x15, 0x85, 0x71, 0xe5, + 0xf2, 0x57, 0xff, 0x5a, 0xb9, 0x54, 0x95, 0x86, 0xf8, 0x43, 0xc8, 0x71, 0xcf, 0x15, 0x7e, 0xe8, + 0x95, 0xee, 0x5e, 0x93, 0xd8, 0x5e, 0xfb, 0xa0, 0x4d, 0x1c, 0x3f, 0xa0, 0xeb, 0x30, 0x2f, 0x6e, + 0x44, 0xad, 0x1d, 0xcc, 0xf1, 0xfd, 0xa6, 0xaa, 0x73, 0x62, 0xa2, 0x67, 0x83, 0x3d, 0x98, 0xfa, + 0x98, 0x7a, 0xc4, 0x79, 0xda, 0x76, 0x3d, 0xb4, 0x0a, 0x33, 0x27, 0xec, 0xa3, 0x66, 0x36, 0x9b, + 0x0e, 0x71, 0x5d, 0x69, 0x35, 0xcd, 0x07, 0xcb, 0x62, 0x0c, 0x55, 0x60, 0x8a, 0x7d, 0xd7, 0xbc, + 0x6e, 0x87, 0xf0, 0x63, 0xb9, 0x56, 0xba, 0x3d, 0x94, 0x06, 0xf3, 0xff, 0x9d, 0x6e, 0x87, 0x54, + 0xaf, 0x9e, 0xc8, 0x5f, 0xf8, 0x77, 0x13, 0xb0, 0x12, 0xcb, 0x42, 0xc6, 0x6a, 0x1c, 0x1a, 0x68, + 0x1b, 0xd2, 0x1c, 0xa4, 0xbb, 0x30, 0x91, 0x4f, 0x15, 0x32, 0xa5, 0x3b, 0x23, 0x11, 0x71, 0xc6, + 0x55, 0x69, 0x85, 0xbe, 0x07, 0x73, 0x62, 0x96, 0x3f, 0x31, 0xc1, 0x2d, 0xc5, 0xb9, 0xdd, 0x1b, + 0xea, 0xe9, 0xa3, 0x9e, 0x11, 0xa7, 0x38, 0x4b, 0xfb, 0x07, 0xd0, 0x33, 0x98, 0x91, 0x2c, 0x5c, + 0xcf, 0xf4, 0x8e, 0x5d, 0x7e, 0x0f, 0xaf, 0x95, 0xee, 0x0e, 0xf5, 0x2a, 0xa2, 0xb2, 0xcf, 0x0d, + 0xaa, 0xd3, 0x75, 0xe5, 0x0b, 0x3f, 0x81, 0x25, 0x1e, 0xb8, 0x8f, 0xe4, 0x5a, 0xb7, 0xd2, 0xdd, + 0x61, 0x5e, 0x94, 0xc3, 0x57, 0x89, 0xf0, 0x1d, 0xfc, 0xa8, 0x29, 0x13, 0xdc, 0x06, 0x6f, 0xc1, + 0x72, 0x8c, 0x33, 0x79, 0x06, 0x4b, 0x30, 0xe5, 0x83, 0x62, 0x97, 0x21, 0xc5, 0x5e, 0x50, 0x30, + 0x80, 0xf3, 0xf2, 0x2a, 0x96, 0x2d, 0xcb, 0xf7, 0xf0, 0xa1, 0xd9, 0xe9, 0x10, 0x27, 0x78, 0x06, + 0x5d, 0x79, 0xcc, 0x51, 0x2b, 0xe4, 0x16, 0x1f, 0xfb, 0x91, 0x27, 0x4e, 0xed, 0x48, 0xcc, 0xf1, + 0x9d, 0x32, 0xa5, 0xf5, 0x04, 0x91, 0xf7, 0xfd, 0xf9, 0x81, 0x0f, 0xfc, 0xe3, 0xd7, 0x20, 0xcb, + 0xb7, 0xde, 0x3f, 0xee, 0x74, 0xa8, 0xe3, 0x91, 0x26, 0x67, 0xe6, 0xe2, 0xf7, 0x65, 0x00, 0x43, + 0xe3, 0x01, 0x9e, 0xdb, 0x90, 0xe6, 0x5b, 0xfa, 0x28, 0x82, 0xdc, 0x22, 0x22, 0x23, 0x27, 0xf1, + 0x36, 0x7c, 0x83, 0xbb, 0xd9, 0x25, 0xde, 0x0e, 0x75, 0x88, 0x78, 0xaa, 0x8f, 0xa8, 0xd3, 0x77, + 0x18, 0xe1, 0xd4, 0x96, 0x0a, 0x52, 0x1b, 0xb6, 0x01, 0x0f, 0xb3, 0x97, 0x60, 0x1e, 0x43, 0x86, + 0xb1, 0xae, 0xf5, 0x25, 0x8d, 0xd7, 0x87, 0xc6, 0xa5, 0xe7, 0xad, 0x0a, 0x8d, 0xe0, 0x37, 0x5e, + 0x84, 0x5b, 0x83, 0xfb, 0xf9, 0xc7, 0xf4, 0x09, 0xe8, 0x51, 0x93, 0x12, 0xc4, 0xd3, 0x28, 0x10, + 0xeb, 0x09, 0x41, 0xf0, 0x57, 0xa6, 0x02, 0x29, 0xf5, 0xf6, 0x7a, 0x46, 0x9b, 0xa4, 0x2c, 0x2a, + 0x8a, 0x1f, 0xb1, 0x2c, 0x4c, 0x8a, 0x8c, 0x2c, 0xae, 0xac, 0xf8, 0xc0, 0x9f, 0xc0, 0x62, 0xa4, + 0x8d, 0x04, 0xf8, 0x04, 0xa6, 0xd5, 0xea, 0x24, 0x11, 0x16, 0x86, 0x22, 0x54, 0xfd, 0x64, 0xec, + 0xde, 0x07, 0x6e, 0x4a, 0x7c, 0x65, 0xcb, 0x8a, 0xc0, 0xf7, 0x08, 0xa0, 0x57, 0xbc, 0xe5, 0x46, + 0x77, 0x8a, 0xa2, 0xd2, 0x17, 0x59, 0xa5, 0x2f, 0x8a, 0xa6, 0x41, 0x56, 0xfa, 0xe2, 0x73, 0xb3, + 0xe5, 0x17, 0xba, 0xaa, 0x62, 0x89, 0xbf, 0xd4, 0x24, 0xa5, 0xf0, 0x36, 0x92, 0xd2, 0x07, 0x90, + 0x51, 0x86, 0xe5, 0x55, 0x1c, 0x83, 0x91, 0xf2, 0x81, 0x76, 0xfb, 0x30, 0x4f, 0xc8, 0x3b, 0x34, + 0x0a, 0xb3, 0x00, 0xd2, 0x07, 0xda, 0x7f, 0xef, 0xec, 0x9a, 0x04, 0x5d, 0xc4, 0x23, 0xd6, 0x44, 0xf8, 0x17, 0xe9, 0xa7, 0x9a, 0x7c, 0xf0, 0x51, 0x4b, 0x24, 0xb5, 0x1f, 0xc1, 0x5c, 0xb8, 0x07, - 0x91, 0x81, 0x1c, 0x9c, 0x6a, 0x43, 0xfe, 0x64, 0x59, 0x9c, 0xad, 0xf7, 0x0e, 0xe3, 0x9b, 0x70, - 0xc3, 0x47, 0xf0, 0x84, 0x77, 0x32, 0x3e, 0xb6, 0xef, 0xc2, 0x6b, 0xe1, 0x09, 0x89, 0x68, 0x0b, - 0x52, 0xa2, 0xe9, 0x49, 0x54, 0x95, 0xa5, 0xb1, 0x34, 0xc1, 0xab, 0x32, 0x87, 0x1e, 0x1c, 0xd1, - 0xcf, 0xfd, 0x9c, 0xb4, 0xab, 0x5c, 0x19, 0x16, 0x93, 0x6c, 0xdc, 0x0a, 0x09, 0xe0, 0xc7, 0xb0, - 0x60, 0x99, 0xae, 0x57, 0x0d, 0x12, 0xa1, 0x7a, 0x8f, 0x0b, 0x03, 0xd1, 0x3c, 0x35, 0x5d, 0xaf, - 0xd7, 0xe9, 0xbc, 0x15, 0x1e, 0xc2, 0x1f, 0x48, 0x8c, 0x65, 0xd6, 0x11, 0x46, 0xb5, 0x0c, 0x77, - 0x61, 0x8e, 0x77, 0x8b, 0xfd, 0xa5, 0x76, 0x96, 0x8f, 0x2b, 0x0d, 0x43, 0xdd, 0xef, 0x3f, 0xfa, - 0x7d, 0x05, 0x4d, 0x0e, 0x48, 0x67, 0xf6, 0x21, 0x95, 0x24, 0xf0, 0xe0, 0x7a, 0xc7, 0x96, 0xb3, - 0xde, 0x8c, 0x6d, 0x65, 0x1f, 0x52, 0xbc, 0xd2, 0x7d, 0x1d, 0x62, 0x8e, 0xd4, 0xa9, 0xd3, 0x08, - 0xae, 0x99, 0x29, 0x73, 0x78, 0xdf, 0x74, 0x0c, 0x82, 0xf1, 0xd1, 0x11, 0x1c, 0x40, 0x4e, 0xa5, - 0xc9, 0xd3, 0x72, 0xc9, 0x6e, 0x3c, 0xa3, 0x76, 0x3d, 0xb6, 0x73, 0x9d, 0xe9, 0x76, 0xae, 0x19, - 0x98, 0xb0, 0xd9, 0x52, 0xfe, 0xdc, 0xae, 0x56, 0xc4, 0x07, 0x3e, 0x94, 0x45, 0x23, 0xda, 0xe9, - 0xab, 0x03, 0xaf, 0xe4, 0xb0, 0x32, 0xef, 0x77, 0x89, 0xd9, 0xe8, 0x1e, 0xf6, 0xab, 0xca, 0x61, - 0xbf, 0xd2, 0xd4, 0x53, 0x52, 0xb6, 0x91, 0x44, 0x1e, 0xc0, 0x8c, 0xec, 0xbf, 0xf9, 0xb8, 0x5f, - 0x50, 0x17, 0xfc, 0x82, 0xaa, 0xda, 0x4c, 0xd7, 0xba, 0x1f, 0xee, 0xab, 0xcb, 0x58, 0x25, 0x79, - 0x8a, 0x7b, 0xc4, 0x53, 0x76, 0x2b, 0x77, 0x98, 0x00, 0xf0, 0xc3, 0xd1, 0x2b, 0x13, 0x58, 0x38, - 0xa6, 0x15, 0x99, 0x80, 0x7f, 0xd8, 0x2d, 0xf4, 0x11, 0x2e, 0x24, 0xd5, 0xb7, 0x60, 0x5a, 0xa5, - 0x2a, 0x83, 0x1a, 0xc9, 0x34, 0xad, 0x30, 0x2d, 0xfe, 0x4f, 0x87, 0x09, 0xee, 0x1d, 0x7d, 0xa1, - 0x41, 0x4a, 0x54, 0x48, 0x64, 0x0c, 0x3c, 0xec, 0x7e, 0xb1, 0xa1, 0xbf, 0x99, 0xdc, 0x40, 0xe0, - 0xc5, 0x6b, 0x3f, 0xfb, 0xeb, 0x7f, 0x7f, 0x31, 0xb6, 0x82, 0x96, 0x0c, 0xb6, 0xfe, 0x0d, 0x6e, - 0x6a, 0x84, 0x44, 0x1b, 0xfa, 0x9b, 0x06, 0xa8, 0xbf, 0x3f, 0x47, 0x5b, 0xc3, 0x77, 0x8b, 0xd5, - 0x26, 0xfa, 0xbb, 0x97, 0x33, 0x96, 0xb0, 0xdf, 0xe7, 0xb0, 0xdf, 0x43, 0xdb, 0x91, 0xb0, 0x65, - 0x9f, 0x5d, 0xeb, 0x28, 0x59, 0xcc, 0x38, 0xef, 0xd3, 0x10, 0x17, 0xe8, 0xcf, 0x1a, 0xcc, 0x85, - 0x5b, 0x5e, 0xf4, 0x70, 0x38, 0xb2, 0x98, 0x9e, 0x5b, 0x7f, 0xe7, 0x32, 0xa6, 0x92, 0xd2, 0x2e, - 0xa7, 0xb4, 0x8d, 0xb6, 0x22, 0x29, 0x05, 0xbd, 0x36, 0x63, 0x25, 0xe6, 0xce, 0xfb, 0xda, 0xfb, - 0x0b, 0xf4, 0x47, 0x0d, 0x50, 0x7f, 0x8b, 0x9d, 0xe4, 0xa4, 0x62, 0x5b, 0xf7, 0x24, 0x27, 0x15, - 0xdf, 0xd5, 0xe3, 0x4d, 0x4e, 0x6b, 0x03, 0xdd, 0x8d, 0xa4, 0x65, 0x5a, 0x56, 0x35, 0xdc, 0xf4, - 0xa3, 0xdf, 0x68, 0x30, 0x1b, 0x6a, 0xca, 0xd1, 0xe6, 0x70, 0x10, 0x21, 0x13, 0xfd, 0xe1, 0xc8, - 0x26, 0x01, 0xe8, 0x7b, 0x1c, 0xf4, 0x1d, 0xf4, 0xcd, 0x48, 0xd0, 0x6e, 0x08, 0xdb, 0x3f, 0x35, - 0xb8, 0x11, 0xd9, 0xbd, 0xa3, 0x9d, 0xe1, 0x10, 0x06, 0xc9, 0x06, 0xfd, 0xbd, 0x4b, 0xdb, 0x27, - 0xba, 0x54, 0x4d, 0xe2, 0x55, 0xeb, 0x56, 0x8b, 0xd8, 0x9e, 0x6c, 0xe9, 0xab, 0x87, 0xd4, 0xf1, - 0x6f, 0x97, 0x5f, 0xd0, 0x2e, 0xd0, 0x6f, 0x35, 0x98, 0xe9, 0xd9, 0x06, 0xbd, 0x35, 0x22, 0x2e, - 0x9f, 0xcf, 0xdb, 0x23, 0xdb, 0x25, 0x3a, 0x10, 0xce, 0xa3, 0x2b, 0x4c, 0xd0, 0x97, 0x5a, 0x4f, - 0xd3, 0x8c, 0x92, 0x6d, 0xdb, 0xdf, 0xe4, 0xeb, 0x0f, 0x46, 0x37, 0x94, 0x80, 0xdf, 0xe4, 0x80, - 0xd7, 0x51, 0x3e, 0x12, 0xb0, 0x22, 0x33, 0x8c, 0x73, 0xae, 0x6c, 0x2e, 0xd8, 0xad, 0xbf, 0xae, - 0x78, 0x2a, 0x59, 0x56, 0x12, 0xdc, 0x91, 0xe2, 0x24, 0x09, 0xee, 0x68, 0xb9, 0x81, 0xf3, 0x1c, - 0x37, 0x46, 0xb9, 0x61, 0xb8, 0xd1, 0xef, 0x35, 0x98, 0x0d, 0x75, 0xe2, 0x49, 0xf2, 0x4c, 0xac, - 0x64, 0x48, 0x92, 0x67, 0xe2, 0xc5, 0x04, 0x7e, 0x83, 0x03, 0x7f, 0x1d, 0xdd, 0x8e, 0x04, 0x1e, - 0xd6, 0x19, 0xe8, 0x97, 0x1a, 0xa4, 0x44, 0xff, 0x8e, 0x8a, 0x89, 0xf6, 0xed, 0x91, 0x10, 0xfa, - 0xfd, 0x91, 0x6c, 0x12, 0xd5, 0x5a, 0xa1, 0x22, 0xd0, 0x9f, 0x34, 0x98, 0xef, 0xd3, 0x07, 0x28, - 0x41, 0x61, 0x89, 0x93, 0x1d, 0xfa, 0xd6, 0xa5, 0x6c, 0x25, 0xe6, 0x87, 0x1c, 0xf3, 0x7d, 0xb4, - 0xa9, 0x62, 0xf6, 0xbd, 0x28, 0x29, 0xf1, 0x88, 0x7e, 0x1e, 0x12, 0x2d, 0xe8, 0x2f, 0x1a, 0xcc, - 0xf7, 0x69, 0x83, 0x24, 0x4c, 0xe2, 0xc4, 0x49, 0x12, 0x26, 0xb1, 0x62, 0x64, 0x48, 0x2a, 0x14, - 0x8d, 0x76, 0xb8, 0x63, 0x08, 0x29, 0xa1, 0x0b, 0xf4, 0x07, 0x0d, 0xd0, 0x1e, 0xf1, 0x42, 0x72, - 0x03, 0x25, 0x7b, 0x6f, 0x11, 0x02, 0x26, 0x49, 0x91, 0x8a, 0xd1, 0x36, 0xb8, 0xc8, 0x09, 0xdd, - 0x43, 0xeb, 0xb1, 0x39, 0x91, 0x55, 0x57, 0xc1, 0xc1, 0x91, 0x40, 0xff, 0xad, 0x41, 0x26, 0x4a, - 0x73, 0xa0, 0xed, 0xc4, 0xa1, 0x8d, 0x12, 0x40, 0xfa, 0xce, 0x65, 0xcd, 0x25, 0x97, 0xc7, 0x9c, - 0x4b, 0x19, 0x7d, 0x6b, 0xf0, 0xe1, 0x88, 0x17, 0x6c, 0xda, 0x8d, 0x2a, 0x97, 0x51, 0x4a, 0x91, - 0x32, 0xce, 0xf9, 0xc8, 0x05, 0x4b, 0x4b, 0xc1, 0x09, 0x29, 0x42, 0xe2, 0xed, 0x84, 0x71, 0x0e, - 0x6b, 0x24, 0xfd, 0xc1, 0xe8, 0x86, 0x23, 0x9e, 0x8f, 0x22, 0x8c, 0xd0, 0x3f, 0x34, 0xc8, 0x44, - 0xe9, 0x8b, 0x24, 0xe7, 0x33, 0x40, 0xda, 0xe8, 0x3b, 0x97, 0x35, 0x97, 0x5c, 0xca, 0x9c, 0xcb, - 0xbb, 0xe8, 0x9d, 0x58, 0x2e, 0x2a, 0x0f, 0x76, 0x54, 0x4c, 0x43, 0xb1, 0x17, 0xe4, 0xeb, 0xa9, - 0x0b, 0xf4, 0x73, 0x0d, 0x26, 0xf8, 0xff, 0x51, 0x50, 0x21, 0x81, 0x4c, 0x51, 0xfe, 0x31, 0xa4, - 0x1b, 0x89, 0xd7, 0x4b, 0xb8, 0x98, 0xc3, 0x5d, 0x46, 0x7a, 0xb4, 0xaa, 0x61, 0x6b, 0xcb, 0xfb, - 0x5f, 0xbd, 0xc8, 0x6a, 0x5f, 0xbf, 0xc8, 0x6a, 0xff, 0x79, 0x91, 0xd5, 0xbe, 0x78, 0x99, 0xbd, - 0xf2, 0xf5, 0xcb, 0xec, 0x95, 0xbf, 0xbf, 0xcc, 0x5e, 0xf9, 0x81, 0xd1, 0x6c, 0x79, 0x47, 0x27, - 0x35, 0xa6, 0xd9, 0x22, 0xb3, 0xde, 0x59, 0xd7, 0x95, 0xd7, 0x69, 0x13, 0xb7, 0x96, 0xe2, 0xff, - 0xd5, 0xba, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0x7f, 0xf9, 0xe6, 0x31, 0x1c, 0x00, - 0x00, + 0x91, 0x81, 0x1c, 0x9e, 0x6a, 0x43, 0xfe, 0x64, 0x59, 0x9c, 0x6d, 0xf4, 0x0f, 0xe3, 0x9b, 0x70, + 0xc3, 0x47, 0xf0, 0x84, 0x77, 0x32, 0x3e, 0xb6, 0xef, 0xc2, 0x6b, 0xe1, 0x09, 0x89, 0x68, 0x13, + 0xd2, 0xa2, 0xe9, 0x49, 0x54, 0x95, 0xa5, 0xb1, 0x34, 0xc1, 0x2b, 0x32, 0x87, 0xee, 0x1f, 0xd2, + 0xcf, 0xfd, 0x9c, 0xb4, 0xa3, 0x5c, 0x19, 0x16, 0x93, 0x5c, 0xdc, 0x0a, 0x09, 0xe0, 0xc7, 0x70, + 0xdd, 0x32, 0x5d, 0xaf, 0x16, 0x24, 0x42, 0xf5, 0x1e, 0x17, 0x87, 0xa2, 0x79, 0x6a, 0xba, 0x5e, + 0xbf, 0xd3, 0x79, 0x2b, 0x3c, 0x84, 0x3f, 0x90, 0x18, 0x2b, 0xac, 0x23, 0x8c, 0x6a, 0x19, 0xee, + 0xc2, 0x1c, 0xef, 0x16, 0x07, 0x4b, 0xed, 0x2c, 0x1f, 0x57, 0x1a, 0x86, 0x86, 0xdf, 0x7f, 0x0c, + 0xfa, 0x0a, 0x9a, 0x1c, 0x90, 0xce, 0xec, 0x03, 0x2a, 0x49, 0xe0, 0xe1, 0xf5, 0x8e, 0x2d, 0x67, + 0xbd, 0x19, 0xdb, 0xca, 0x3e, 0xa0, 0x78, 0xb9, 0xf7, 0x3a, 0xc4, 0x1c, 0x69, 0x50, 0xa7, 0x19, + 0x5c, 0x33, 0x53, 0xe6, 0xf0, 0x81, 0xe9, 0x18, 0x04, 0xa9, 0xf1, 0x11, 0xec, 0x43, 0x5e, 0xa5, + 0xc9, 0xd3, 0x72, 0xd9, 0x6e, 0x3e, 0xa3, 0x76, 0x83, 0x8c, 0x4e, 0xef, 0x2c, 0x8f, 0xd9, 0x6c, + 0x29, 0x7f, 0x6e, 0xa9, 0xaa, 0xf8, 0xc0, 0x07, 0xb2, 0x68, 0x44, 0x3b, 0x7d, 0x75, 0xe0, 0x95, + 0x1c, 0x56, 0xe1, 0xfd, 0x2e, 0x31, 0x9b, 0xbd, 0xc3, 0x7e, 0x55, 0x39, 0xec, 0x57, 0x9a, 0x7a, + 0x4a, 0xca, 0x36, 0x92, 0xc8, 0x03, 0x98, 0x91, 0xfd, 0x37, 0x1f, 0xf7, 0x0b, 0xea, 0x75, 0xbf, + 0xa0, 0xaa, 0x36, 0xd3, 0xf5, 0xde, 0x87, 0xfb, 0xea, 0x32, 0x56, 0x59, 0x9e, 0xe2, 0x2e, 0xf1, + 0x94, 0xdd, 0x2a, 0x5d, 0x26, 0x00, 0xfc, 0x70, 0xf4, 0xcb, 0x04, 0x16, 0x8e, 0x69, 0x45, 0x26, + 0xe0, 0x1f, 0xf6, 0x0a, 0x7d, 0x84, 0x0b, 0x49, 0xf5, 0x2d, 0x98, 0x56, 0xa9, 0xca, 0xa0, 0x46, + 0x32, 0xcd, 0x28, 0x4c, 0x4b, 0xff, 0xd3, 0x61, 0x92, 0x7b, 0x47, 0x5f, 0x68, 0x90, 0x16, 0x15, + 0x12, 0x19, 0x43, 0x0f, 0x7b, 0x50, 0x6c, 0xe8, 0x6f, 0x26, 0x37, 0x10, 0x78, 0xf1, 0xea, 0xcf, + 0xfe, 0xfa, 0xdf, 0x5f, 0x4c, 0x2c, 0xa3, 0x45, 0x83, 0xad, 0x7f, 0x83, 0x9b, 0x1a, 0x21, 0xd1, + 0x86, 0xfe, 0xa6, 0x01, 0x1a, 0xec, 0xcf, 0xd1, 0xe6, 0xe8, 0xdd, 0x62, 0xb5, 0x89, 0xfe, 0xee, + 0xc5, 0x8c, 0x25, 0xec, 0xf7, 0x39, 0xec, 0xf7, 0xd0, 0x56, 0x24, 0x6c, 0xd9, 0x67, 0xd7, 0xbb, + 0x4a, 0x16, 0x33, 0xce, 0x06, 0x34, 0xc4, 0x39, 0xfa, 0xb3, 0x06, 0x73, 0xe1, 0x96, 0x17, 0x3d, + 0x1c, 0x8d, 0x2c, 0xa6, 0xe7, 0xd6, 0xdf, 0xb9, 0x88, 0xa9, 0xa4, 0xb4, 0xc3, 0x29, 0x6d, 0xa1, + 0xcd, 0x48, 0x4a, 0x41, 0xaf, 0xcd, 0x58, 0x89, 0xb9, 0xb3, 0x81, 0xf6, 0xfe, 0x1c, 0xfd, 0x51, + 0x03, 0x34, 0xd8, 0x62, 0x27, 0x39, 0xa9, 0xd8, 0xd6, 0x3d, 0xc9, 0x49, 0xc5, 0x77, 0xf5, 0x78, + 0x83, 0xd3, 0x5a, 0x47, 0x77, 0x23, 0x69, 0x99, 0x96, 0x55, 0x0b, 0x37, 0xfd, 0xe8, 0x37, 0x1a, + 0xcc, 0x86, 0x9a, 0x72, 0xb4, 0x31, 0x1a, 0x44, 0xc8, 0x44, 0x7f, 0x38, 0xb6, 0x49, 0x00, 0xfa, + 0x1e, 0x07, 0x7d, 0x07, 0x7d, 0x33, 0x12, 0xb4, 0x1b, 0xc2, 0xf6, 0x4f, 0x0d, 0x6e, 0x44, 0x76, + 0xef, 0x68, 0x7b, 0x34, 0x84, 0x61, 0xb2, 0x41, 0x7f, 0xef, 0xc2, 0xf6, 0x89, 0x2e, 0x55, 0x8b, + 0x78, 0xb5, 0x86, 0xd5, 0x26, 0xb6, 0x27, 0x5b, 0xfa, 0xda, 0x01, 0x75, 0xfc, 0xdb, 0xe5, 0x17, + 0xb4, 0x73, 0xf4, 0x5b, 0x0d, 0x66, 0xfa, 0xb6, 0x41, 0x6f, 0x8d, 0x89, 0xcb, 0xe7, 0xf3, 0xf6, + 0xd8, 0x76, 0x89, 0x0e, 0x84, 0xf3, 0xe8, 0x09, 0x13, 0xf4, 0xa5, 0xd6, 0xd7, 0x34, 0xa3, 0x64, + 0xdb, 0x0e, 0x36, 0xf9, 0xfa, 0x83, 0xf1, 0x0d, 0x25, 0xe0, 0x37, 0x39, 0xe0, 0x35, 0x54, 0x88, + 0x04, 0xac, 0xc8, 0x0c, 0xe3, 0x8c, 0x2b, 0x9b, 0x73, 0x76, 0xeb, 0xaf, 0x29, 0x9e, 0xca, 0x96, + 0x95, 0x04, 0x77, 0xa4, 0x38, 0x49, 0x82, 0x3b, 0x5a, 0x6e, 0xe0, 0x02, 0xc7, 0x8d, 0x51, 0x7e, + 0x14, 0x6e, 0xf4, 0x7b, 0x0d, 0x66, 0x43, 0x9d, 0x78, 0x92, 0x3c, 0x13, 0x2b, 0x19, 0x92, 0xe4, + 0x99, 0x78, 0x31, 0x81, 0xdf, 0xe0, 0xc0, 0x5f, 0x47, 0xb7, 0x23, 0x81, 0x87, 0x75, 0x06, 0xfa, + 0xa5, 0x06, 0x69, 0xd1, 0xbf, 0xa3, 0x52, 0xa2, 0x7d, 0xfb, 0x24, 0x84, 0x7e, 0x7f, 0x2c, 0x9b, + 0x44, 0xb5, 0x56, 0xa8, 0x08, 0xf4, 0x27, 0x0d, 0xe6, 0x07, 0xf4, 0x01, 0x4a, 0x50, 0x58, 0xe2, + 0x64, 0x87, 0xbe, 0x79, 0x21, 0x5b, 0x89, 0xf9, 0x21, 0xc7, 0x7c, 0x1f, 0x6d, 0xa8, 0x98, 0x7d, + 0x2f, 0x4a, 0x4a, 0x3c, 0xa4, 0x9f, 0x87, 0x44, 0x0b, 0xfa, 0x8b, 0x06, 0xf3, 0x03, 0xda, 0x20, + 0x09, 0x93, 0x38, 0x71, 0x92, 0x84, 0x49, 0xac, 0x18, 0x19, 0x91, 0x0a, 0x45, 0xa3, 0x1d, 0xee, + 0x18, 0x42, 0x4a, 0xe8, 0x1c, 0xfd, 0x41, 0x03, 0xb4, 0x4b, 0xbc, 0x90, 0xdc, 0x40, 0xc9, 0xde, + 0x5b, 0x84, 0x80, 0x49, 0x52, 0xa4, 0x62, 0xb4, 0x0d, 0x2e, 0x71, 0x42, 0xf7, 0xd0, 0x5a, 0x6c, + 0x4e, 0x64, 0xd5, 0x55, 0x70, 0x70, 0x24, 0xd0, 0x7f, 0x6b, 0x90, 0x8d, 0xd2, 0x1c, 0x68, 0x2b, + 0x71, 0x68, 0xa3, 0x04, 0x90, 0xbe, 0x7d, 0x51, 0x73, 0xc9, 0xe5, 0x31, 0xe7, 0x52, 0x41, 0xdf, + 0x1a, 0x7e, 0x38, 0xe2, 0x05, 0x9b, 0x76, 0xb3, 0xc6, 0x65, 0x94, 0x52, 0xa4, 0x8c, 0x33, 0x3e, + 0x72, 0xce, 0xd2, 0x52, 0x70, 0x42, 0x8a, 0x90, 0x78, 0x3b, 0x61, 0x9c, 0xc3, 0x1a, 0x49, 0x7f, + 0x30, 0xbe, 0xe1, 0x98, 0xe7, 0xa3, 0x08, 0x23, 0xf4, 0x0f, 0x0d, 0xb2, 0x51, 0xfa, 0x22, 0xc9, + 0xf9, 0x0c, 0x91, 0x36, 0xfa, 0xf6, 0x45, 0xcd, 0x25, 0x97, 0x0a, 0xe7, 0xf2, 0x2e, 0x7a, 0x27, + 0x96, 0x8b, 0xca, 0x83, 0x1d, 0x15, 0xd3, 0x50, 0xec, 0x05, 0xf9, 0x7a, 0xea, 0x1c, 0xfd, 0x5c, + 0x83, 0x49, 0xfe, 0x7f, 0x14, 0x54, 0x4c, 0x20, 0x53, 0x94, 0x7f, 0x0c, 0xe9, 0x46, 0xe2, 0xf5, + 0x12, 0x2e, 0xe6, 0x70, 0x97, 0x90, 0x1e, 0xad, 0x6a, 0xd8, 0xda, 0xca, 0xde, 0x57, 0x2f, 0x72, + 0xda, 0xd7, 0x2f, 0x72, 0xda, 0x7f, 0x5e, 0xe4, 0xb4, 0x2f, 0x5e, 0xe6, 0x2e, 0x7d, 0xfd, 0x32, + 0x77, 0xe9, 0xef, 0x2f, 0x73, 0x97, 0x7e, 0x60, 0xb4, 0xda, 0xde, 0xe1, 0x71, 0x9d, 0x69, 0xb6, + 0xc8, 0xac, 0x77, 0xda, 0x73, 0xe5, 0x75, 0x3b, 0xc4, 0xad, 0xa7, 0xf9, 0x7f, 0xb5, 0xee, 0xff, + 0x3f, 0x00, 0x00, 0xff, 0xff, 0x73, 0x42, 0x0d, 0x33, 0x31, 0x1c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -6892,7 +6891,7 @@ func (m *QueryBlameByChainAndNonceRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ChainId |= uint32(b&0x7F) << shift + m.ChainId |= int64(b&0x7F) << shift if b < 0x80 { break } @@ -6911,7 +6910,7 @@ func (m *QueryBlameByChainAndNonceRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Nonce |= uint64(b&0x7F) << shift + m.Nonce |= int64(b&0x7F) << shift if b < 0x80 { break } diff --git a/x/observer/types/query.pb.gw.go b/x/observer/types/query.pb.gw.go index 5e9eaaea38..c9d348a114 100644 --- a/x/observer/types/query.pb.gw.go +++ b/x/observer/types/query.pb.gw.go @@ -499,7 +499,7 @@ func request_Query_BlameByChainAndNonce_0(ctx context.Context, marshaler runtime return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "chain_id") } - protoReq.ChainId, err = runtime.Uint32(val) + protoReq.ChainId, err = runtime.Int64(val) if err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "chain_id", err) @@ -510,7 +510,7 @@ func request_Query_BlameByChainAndNonce_0(ctx context.Context, marshaler runtime return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "nonce") } - protoReq.Nonce, err = runtime.Uint64(val) + protoReq.Nonce, err = runtime.Int64(val) if err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "nonce", err) @@ -537,7 +537,7 @@ func local_request_Query_BlameByChainAndNonce_0(ctx context.Context, marshaler r return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "chain_id") } - protoReq.ChainId, err = runtime.Uint32(val) + protoReq.ChainId, err = runtime.Int64(val) if err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "chain_id", err) @@ -548,7 +548,7 @@ func local_request_Query_BlameByChainAndNonce_0(ctx context.Context, marshaler r return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "nonce") } - protoReq.Nonce, err = runtime.Uint64(val) + protoReq.Nonce, err = runtime.Int64(val) if err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "nonce", err)