From 6d2fc6551d5f3a19dc20fb12fc0f1ce999a75852 Mon Sep 17 00:00:00 2001 From: insumity Date: Tue, 12 Nov 2024 13:33:40 +0100 Subject: [PATCH 1/2] init commit --- .../ccv/provider/v1/query.proto | 3 + x/ccv/provider/client/cli/query.go | 22 +- x/ccv/provider/keeper/grpc_query.go | 7 +- x/ccv/provider/keeper/grpc_query_test.go | 4 + x/ccv/provider/types/query.pb.go | 362 ++++++++++-------- 5 files changed, 231 insertions(+), 167 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index e659b3cda6..0e312096ab 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -397,6 +397,9 @@ message QueryConsumerChainResponse { ConsumerMetadata metadata = 5 [ (gogoproto.nullable) = false ]; ConsumerInitializationParameters init_params = 6; PowerShapingParameters power_shaping_params = 7; + + // corresponds to the id of the client that is created during launch + string client_id = 8; } message QueryConsumerGenesisTimeRequest { diff --git a/x/ccv/provider/client/cli/query.go b/x/ccv/provider/client/cli/query.go index 75fbbaf7a7..2126f80093 100644 --- a/x/ccv/provider/client/cli/query.go +++ b/x/ccv/provider/client/cli/query.go @@ -10,7 +10,6 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/types/query" "github.com/cosmos/cosmos-sdk/version" "github.com/cosmos/interchain-security/v6/x/ccv/provider/types" @@ -76,12 +75,12 @@ func CmdConsumerGenesis() *cobra.Command { func CmdConsumerChains() *cobra.Command { cmd := &cobra.Command{ - Use: "list-consumer-chains [phase] [limit]", + Use: "list-consumer-chains [phase]", Short: "Query consumer chains for provider chain.", Long: `Query consumer chains for provider chain. An optional integer parameter can be passed for phase filtering of consumer chains, (Registered=1|Initialized=2|Launched=3|Stopped=4|Deleted=5).`, - Args: cobra.MaximumNArgs(2), + Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) (err error) { clientCtx, err := client.GetClientQueryContext(cmd) if err != nil { @@ -99,14 +98,14 @@ func CmdConsumerChains() *cobra.Command { req.Phase = types.ConsumerPhase(phase) } - if len(args) == 2 && args[1] != "" { - limit, err := strconv.ParseInt(args[1], 10, 32) - if err != nil { - return err - } - req.Pagination = &query.PageRequest{ - Limit: uint64(limit), - } + fs, err := client.FlagSetWithPageKeyDecoded(cmd.Flags()) + if err != nil { + return err + } + + req.Pagination, err = client.ReadPageRequest(fs) + if err != nil { + return err } res, err := queryClient.QueryConsumerChains(cmd.Context(), req) @@ -119,6 +118,7 @@ func CmdConsumerChains() *cobra.Command { } flags.AddQueryFlagsToCmd(cmd) + flags.AddPaginationFlagsToCmd(cmd, "consumer chains") return cmd } diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index d98f7e9b3e..9ee25bcaf7 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -618,6 +618,10 @@ func (k Keeper) QueryConsumerChain(goCtx context.Context, req *types.QueryConsum initParams, _ := k.GetConsumerInitializationParameters(ctx, consumerId) powerParams, _ := k.GetConsumerPowerShapingParameters(ctx, consumerId) + // The client id might not exist in case the consumer chain has not yet launched or in case the chain has been deleted. + // That's why we do not check if the client id is found. + clientId, _ := k.GetConsumerClientId(ctx, consumerId) + return &types.QueryConsumerChainResponse{ ChainId: chainId, ConsumerId: consumerId, @@ -626,10 +630,11 @@ func (k Keeper) QueryConsumerChain(goCtx context.Context, req *types.QueryConsum Metadata: metadata, InitParams: &initParams, PowerShapingParams: &powerParams, + ClientId: clientId, }, nil } -// QueryConsumerGenesisTime returns the genesis time +// QueryConsumerGenesisTime returns the genesis time // of the consumer chain associated with the provided consumer id func (k Keeper) QueryConsumerGenesisTime(goCtx context.Context, req *types.QueryConsumerGenesisTimeRequest) (*types.QueryConsumerGenesisTimeResponse, error) { if req == nil { diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index 73f1f94ffb..b6fdfab243 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -557,6 +557,7 @@ func TestQueryConsumerChain(t *testing.T) { consumerId := "0" chainId := "consumer" + clientId := "client-0" req := types.QueryConsumerChainRequest{ ConsumerId: consumerId, @@ -587,6 +588,8 @@ func TestQueryConsumerChain(t *testing.T) { err = providerKeeper.SetConsumerMetadata(ctx, consumerId, types.ConsumerMetadata{Name: chainId}) require.NoError(t, err) + providerKeeper.SetConsumerClientId(ctx, consumerId, clientId) + expRes := types.QueryConsumerChainResponse{ ChainId: chainId, ConsumerId: consumerId, @@ -595,6 +598,7 @@ func TestQueryConsumerChain(t *testing.T) { Phase: types.CONSUMER_PHASE_REGISTERED.String(), InitParams: &types.ConsumerInitializationParameters{}, PowerShapingParams: &types.PowerShapingParameters{}, + ClientId: clientId, } // expect no error when neither the consumer init and power shaping params are set diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index 1fd93e436c..41c9731adb 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -1744,6 +1744,8 @@ type QueryConsumerChainResponse struct { Metadata ConsumerMetadata `protobuf:"bytes,5,opt,name=metadata,proto3" json:"metadata"` InitParams *ConsumerInitializationParameters `protobuf:"bytes,6,opt,name=init_params,json=initParams,proto3" json:"init_params,omitempty"` PowerShapingParams *PowerShapingParameters `protobuf:"bytes,7,opt,name=power_shaping_params,json=powerShapingParams,proto3" json:"power_shaping_params,omitempty"` + // corresponds to the id of the client that is created during launch + ClientId string `protobuf:"bytes,8,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"` } func (m *QueryConsumerChainResponse) Reset() { *m = QueryConsumerChainResponse{} } @@ -1828,6 +1830,13 @@ func (m *QueryConsumerChainResponse) GetPowerShapingParams() *PowerShapingParame return nil } +func (m *QueryConsumerChainResponse) GetClientId() string { + if m != nil { + return m.ClientId + } + return "" +} + type QueryConsumerGenesisTimeRequest struct { ConsumerId string `protobuf:"bytes,1,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` } @@ -1959,166 +1968,166 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 2532 bytes of a gzipped FileDescriptorProto + // 2535 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x6f, 0xdc, 0xc6, 0x15, 0x17, 0x57, 0x1f, 0x5e, 0xcd, 0x5a, 0x72, 0x32, 0x96, 0xad, 0xf5, 0xca, 0xd1, 0xca, 0x74, 0xdc, 0x2a, 0x72, 0xbc, 0x2b, 0xa9, 0xc8, 0x97, 0x13, 0x7f, 0x68, 0x65, 0x49, 0x16, 0x1c, 0xdb, 0x0a, 0xa5, 0x38, 0x80, 0x53, 0x97, 0x1d, 0x91, 0x93, 0xd5, 0x54, 0x5c, 0x92, 0xe6, 0x8c, 0xd6, 0xde, 0x1a, 0xbe, 0xf4, 0x94, 0x43, 0x0b, 0x24, 0x08, 0x7a, 0x6e, 0xce, 0x3d, 0x14, 0x45, 0x11, - 0xf4, 0x1f, 0xe8, 0x25, 0xb7, 0xa6, 0xe9, 0xa5, 0x48, 0x51, 0xb7, 0xb0, 0x5b, 0xa0, 0x97, 0x1e, - 0x9a, 0x16, 0x3d, 0x17, 0x33, 0x1c, 0x72, 0x97, 0x34, 0x57, 0x4b, 0x6a, 0x75, 0x5b, 0xce, 0xbc, - 0xf7, 0x9b, 0xf7, 0xde, 0xbc, 0xf7, 0xe6, 0xbd, 0x27, 0x81, 0x2a, 0xb1, 0x19, 0xf6, 0x8c, 0x1d, - 0x44, 0x6c, 0x9d, 0x62, 0x63, 0xcf, 0x23, 0xac, 0x55, 0x35, 0x8c, 0x66, 0xd5, 0xf5, 0x9c, 0x26, - 0x31, 0xb1, 0x57, 0x6d, 0x2e, 0x54, 0xef, 0xef, 0x61, 0xaf, 0x55, 0x71, 0x3d, 0x87, 0x39, 0xf0, - 0x6c, 0x02, 0x43, 0xc5, 0x30, 0x9a, 0x95, 0x80, 0xa1, 0xd2, 0x5c, 0x28, 0x9d, 0xae, 0x3b, 0x4e, - 0xdd, 0xc2, 0x55, 0xe4, 0x92, 0x2a, 0xb2, 0x6d, 0x87, 0x21, 0x46, 0x1c, 0x9b, 0xfa, 0x10, 0xa5, - 0x89, 0xba, 0x53, 0x77, 0xc4, 0xcf, 0x2a, 0xff, 0x25, 0x57, 0xcb, 0x92, 0x47, 0x7c, 0x6d, 0xef, - 0x7d, 0x54, 0x65, 0xa4, 0x81, 0x29, 0x43, 0x0d, 0x57, 0x12, 0x2c, 0xa6, 0x11, 0x35, 0x94, 0xc2, - 0xe7, 0x99, 0xef, 0xc6, 0xd3, 0x5c, 0xa8, 0xd2, 0x1d, 0xe4, 0x61, 0x53, 0x37, 0x1c, 0x9b, 0xee, - 0x35, 0x42, 0x8e, 0x73, 0xfb, 0x70, 0x3c, 0x20, 0x1e, 0x96, 0x64, 0xa7, 0x19, 0xb6, 0x4d, 0xec, - 0x35, 0x88, 0xcd, 0xaa, 0x86, 0xd7, 0x72, 0x99, 0x53, 0xdd, 0xc5, 0xad, 0x40, 0xc3, 0x53, 0x86, - 0x43, 0x1b, 0x0e, 0xd5, 0x7d, 0x25, 0xfd, 0x0f, 0xb9, 0xf5, 0xb2, 0xff, 0x55, 0xa5, 0x0c, 0xed, - 0x12, 0xbb, 0x5e, 0x6d, 0x2e, 0x6c, 0x63, 0x86, 0x16, 0x82, 0x6f, 0x49, 0x35, 0x27, 0xa9, 0xb6, - 0x11, 0xc5, 0xbe, 0xf9, 0x43, 0x42, 0x17, 0xd5, 0x89, 0x2d, 0xec, 0xe9, 0xd3, 0xaa, 0x97, 0xc1, - 0xd4, 0x7b, 0x9c, 0x62, 0x59, 0x2a, 0xb2, 0x86, 0x6d, 0x4c, 0x09, 0xd5, 0xf0, 0xfd, 0x3d, 0x4c, - 0x19, 0x2c, 0x83, 0x42, 0xa0, 0xa2, 0x4e, 0xcc, 0xa2, 0x32, 0xa3, 0xcc, 0x8e, 0x6a, 0x20, 0x58, - 0x5a, 0x37, 0xd5, 0x47, 0xe0, 0x74, 0x32, 0x3f, 0x75, 0x1d, 0x9b, 0x62, 0xf8, 0x21, 0x18, 0xab, - 0xfb, 0x4b, 0x3a, 0x65, 0x88, 0x61, 0x01, 0x51, 0x58, 0x9c, 0xaf, 0x74, 0xf3, 0x84, 0xe6, 0x42, - 0x25, 0x86, 0xb5, 0xc9, 0xf9, 0x6a, 0x43, 0x5f, 0x3e, 0x29, 0x0f, 0x68, 0x47, 0xeb, 0x1d, 0x6b, - 0xea, 0xaf, 0x14, 0x50, 0x8a, 0x9c, 0xbe, 0xcc, 0xf1, 0x42, 0xe1, 0xaf, 0x83, 0x61, 0x77, 0x07, - 0x51, 0xff, 0xcc, 0xf1, 0xc5, 0xc5, 0x4a, 0x0a, 0xef, 0x0b, 0x0f, 0xdf, 0xe0, 0x9c, 0x9a, 0x0f, - 0x00, 0x57, 0x01, 0x68, 0x5b, 0xae, 0x98, 0x13, 0x2a, 0x7c, 0xa7, 0x22, 0xaf, 0x86, 0x9b, 0xb9, - 0xe2, 0x7b, 0xb9, 0x34, 0x73, 0x65, 0x03, 0xd5, 0xb1, 0x94, 0x42, 0xeb, 0xe0, 0x54, 0x7f, 0xa9, - 0xc4, 0xcc, 0x1d, 0x08, 0x2c, 0xad, 0x55, 0x03, 0x23, 0x42, 0x3c, 0x5a, 0x54, 0x66, 0x06, 0x67, - 0x0b, 0x8b, 0x73, 0xe9, 0x44, 0xe6, 0xdb, 0x9a, 0xe4, 0x84, 0x6b, 0x09, 0xb2, 0x7e, 0xb7, 0xa7, - 0xac, 0xbe, 0x00, 0x11, 0x61, 0x3f, 0x1b, 0x06, 0xc3, 0x02, 0x1a, 0x9e, 0x02, 0x79, 0x5f, 0x84, - 0xd0, 0x05, 0x8e, 0x88, 0xef, 0x75, 0x13, 0x4e, 0x81, 0x51, 0xc3, 0x22, 0xd8, 0x66, 0x7c, 0x2f, - 0x27, 0xf6, 0xf2, 0xfe, 0xc2, 0xba, 0x09, 0x8f, 0x83, 0x61, 0xe6, 0xb8, 0xfa, 0xad, 0xe2, 0xe0, - 0x8c, 0x32, 0x3b, 0xa6, 0x0d, 0x31, 0xc7, 0xbd, 0x05, 0xe7, 0x00, 0x6c, 0x10, 0x5b, 0x77, 0x9d, - 0x07, 0xdc, 0xa7, 0x6c, 0xdd, 0xa7, 0x18, 0x9a, 0x51, 0x66, 0x07, 0xb5, 0xf1, 0x06, 0xb1, 0x37, - 0xf8, 0xc6, 0xba, 0xbd, 0xc5, 0x69, 0xe7, 0xc1, 0x44, 0x13, 0x59, 0xc4, 0x44, 0xcc, 0xf1, 0xa8, - 0x64, 0x31, 0x90, 0x5b, 0x1c, 0x16, 0x78, 0xb0, 0xbd, 0x27, 0x98, 0x96, 0x91, 0x0b, 0xe7, 0xc0, - 0x8b, 0xe1, 0xaa, 0x4e, 0x31, 0x13, 0xe4, 0x23, 0x82, 0xfc, 0x58, 0xb8, 0xb1, 0x89, 0x19, 0xa7, - 0x3d, 0x0d, 0x46, 0x91, 0x65, 0x39, 0x0f, 0x2c, 0x42, 0x59, 0xf1, 0xc8, 0xcc, 0xe0, 0xec, 0xa8, - 0xd6, 0x5e, 0x80, 0x25, 0x90, 0x37, 0xb1, 0xdd, 0x12, 0x9b, 0x79, 0xb1, 0x19, 0x7e, 0xc3, 0x89, - 0xc0, 0xb3, 0x46, 0x85, 0xc6, 0xd2, 0x4b, 0x3e, 0x00, 0xf9, 0x06, 0x66, 0xc8, 0x44, 0x0c, 0x15, - 0x81, 0xb0, 0xfb, 0x6b, 0x99, 0x5c, 0xee, 0xa6, 0x64, 0x96, 0xbe, 0x1e, 0x82, 0x71, 0x23, 0x73, - 0x93, 0xf1, 0x28, 0xc7, 0xc5, 0xc2, 0x8c, 0x32, 0x3b, 0xa4, 0xe5, 0x1b, 0xc4, 0xde, 0xe4, 0xdf, - 0xb0, 0x02, 0x8e, 0x0b, 0xa1, 0x75, 0x62, 0x23, 0x83, 0x91, 0x26, 0xd6, 0x9b, 0xc8, 0xa2, 0xc5, - 0xa3, 0x33, 0xca, 0x6c, 0x5e, 0x7b, 0x51, 0x6c, 0xad, 0xcb, 0x9d, 0x3b, 0xc8, 0xa2, 0xf1, 0x90, - 0x1e, 0x8b, 0x87, 0x34, 0x7c, 0x08, 0x4e, 0x85, 0x56, 0xc0, 0xa6, 0xee, 0xe1, 0x07, 0xc8, 0x33, - 0x75, 0x13, 0xdb, 0x4e, 0x83, 0x16, 0xc7, 0x85, 0x5e, 0xef, 0xa4, 0xd2, 0x6b, 0xa9, 0x8d, 0xa2, - 0x09, 0x90, 0x6b, 0x02, 0x43, 0x9b, 0x44, 0xc9, 0x1b, 0x50, 0x05, 0x47, 0x5d, 0x8f, 0x38, 0x1c, - 0x4c, 0x98, 0xfd, 0x98, 0x30, 0x7b, 0x64, 0x4d, 0xfd, 0x99, 0x02, 0xce, 0x88, 0x10, 0xba, 0x13, - 0xdc, 0x66, 0x60, 0xbe, 0x25, 0xd3, 0xf4, 0x82, 0xd0, 0xbf, 0x04, 0x5e, 0x08, 0x24, 0xd1, 0x91, - 0x69, 0x7a, 0x98, 0x52, 0xdf, 0x73, 0x6b, 0xf0, 0xdb, 0x27, 0xe5, 0xf1, 0x16, 0x6a, 0x58, 0x17, - 0x55, 0xb9, 0xa1, 0x6a, 0xc7, 0x02, 0xda, 0x25, 0x7f, 0x25, 0x6e, 0xa3, 0x5c, 0xdc, 0x46, 0x17, - 0xf3, 0x1f, 0x7f, 0x5e, 0x1e, 0xf8, 0xe7, 0xe7, 0xe5, 0x01, 0xf5, 0x36, 0x50, 0xf7, 0x13, 0x47, - 0x06, 0xf6, 0x2b, 0xe0, 0x85, 0x10, 0x30, 0x22, 0x8f, 0x76, 0xcc, 0xe8, 0xa0, 0xe7, 0xd2, 0x3c, - 0xaf, 0xe0, 0x46, 0x87, 0x74, 0x1d, 0x0a, 0x26, 0x03, 0x26, 0x2b, 0x18, 0x3b, 0xa4, 0x2f, 0x05, - 0xa3, 0xe2, 0xb4, 0x15, 0x4c, 0x36, 0xf8, 0x73, 0xc6, 0x55, 0xa7, 0xc0, 0x29, 0x01, 0xb8, 0xb5, - 0xe3, 0x39, 0x8c, 0x59, 0x58, 0xe4, 0x72, 0xa9, 0x97, 0xfa, 0x87, 0x20, 0xa5, 0xc7, 0x76, 0xe5, - 0x31, 0x65, 0x50, 0xa0, 0x16, 0xa2, 0x3b, 0x7a, 0x03, 0x33, 0xec, 0x89, 0x13, 0x06, 0x35, 0x20, - 0x96, 0x6e, 0xf2, 0x15, 0xb8, 0x08, 0x4e, 0x74, 0x10, 0xe8, 0xc2, 0xd3, 0x90, 0x6d, 0x60, 0xa1, - 0xe2, 0xa0, 0x76, 0xbc, 0x4d, 0xba, 0x14, 0x6c, 0xc1, 0x1f, 0x80, 0xa2, 0x8d, 0x1f, 0x32, 0xdd, - 0xc3, 0xae, 0x85, 0x6d, 0x42, 0x77, 0x74, 0x03, 0xd9, 0x26, 0x57, 0x16, 0x8b, 0xcc, 0x55, 0x58, - 0x2c, 0x55, 0xfc, 0xfa, 0xa2, 0x12, 0xd4, 0x17, 0x95, 0xad, 0xa0, 0xbe, 0xa8, 0xe5, 0x79, 0xb0, - 0x7e, 0xf2, 0xd7, 0xb2, 0xa2, 0x9d, 0xe4, 0x28, 0x5a, 0x00, 0xb2, 0x1c, 0x60, 0xa8, 0xaf, 0x82, - 0x39, 0xa1, 0x92, 0x86, 0xeb, 0xdc, 0xe7, 0x3d, 0x6c, 0x06, 0x3e, 0x12, 0x09, 0x0b, 0x69, 0x81, - 0x15, 0x70, 0x3e, 0x15, 0xb5, 0xb4, 0xc8, 0x49, 0x30, 0x22, 0x43, 0x53, 0x11, 0xd1, 0x22, 0xbf, - 0xd4, 0x77, 0xc1, 0x2b, 0x02, 0x66, 0xc9, 0xb2, 0x36, 0x10, 0xf1, 0xe8, 0x1d, 0x64, 0x71, 0x1c, - 0x7e, 0x09, 0xb5, 0x56, 0x1b, 0x31, 0xe5, 0x33, 0xff, 0x0b, 0x45, 0xea, 0xd0, 0x03, 0x4e, 0x0a, - 0x75, 0x1f, 0xbc, 0xe8, 0x22, 0xe2, 0xf1, 0x4c, 0xc4, 0x4b, 0x24, 0xe1, 0x11, 0xf2, 0x49, 0x5b, - 0x4d, 0x95, 0x3a, 0xf8, 0x19, 0xfe, 0x11, 0xfc, 0x84, 0xd0, 0xe3, 0xec, 0xb6, 0x2d, 0xc6, 0xdd, - 0x08, 0x89, 0xfa, 0x5f, 0x05, 0x9c, 0xe9, 0xc9, 0x05, 0x57, 0xbb, 0xe6, 0x85, 0xa9, 0x6f, 0x9f, - 0x94, 0x27, 0xfd, 0xb0, 0x89, 0x53, 0x24, 0x24, 0x88, 0xd5, 0x84, 0xf0, 0xcb, 0xc5, 0x71, 0xe2, - 0x14, 0x09, 0x71, 0x78, 0x05, 0x1c, 0x0d, 0xa9, 0x76, 0x71, 0x4b, 0xba, 0xdb, 0xe9, 0x4a, 0xbb, - 0x40, 0xac, 0xf8, 0x05, 0x62, 0x65, 0x63, 0x6f, 0xdb, 0x22, 0xc6, 0x0d, 0xdc, 0xd2, 0xc2, 0xab, - 0xba, 0x81, 0x5b, 0xea, 0x04, 0x80, 0xe2, 0x5e, 0x36, 0x90, 0x87, 0xda, 0x3e, 0xf4, 0x43, 0x70, - 0x3c, 0xb2, 0x2a, 0xaf, 0x65, 0x1d, 0x8c, 0xb8, 0x62, 0x45, 0x56, 0x61, 0xe7, 0x53, 0xde, 0x05, - 0x67, 0x91, 0x8f, 0x92, 0x04, 0x50, 0x6f, 0x4a, 0x7f, 0x88, 0x14, 0x32, 0xb7, 0x5d, 0x86, 0xcd, - 0x75, 0x3b, 0xcc, 0x14, 0xe9, 0xcb, 0xc8, 0xfb, 0xd2, 0xe9, 0x7b, 0xc1, 0x85, 0x75, 0xd2, 0x4b, - 0x9d, 0x75, 0x41, 0xec, 0xbe, 0x70, 0x10, 0x0b, 0x53, 0x1d, 0x05, 0x42, 0xf4, 0x02, 0x31, 0x55, - 0x97, 0xc0, 0x74, 0xe4, 0xc8, 0x03, 0x48, 0xfd, 0xe9, 0x11, 0x30, 0xd3, 0x05, 0x23, 0xfc, 0xd5, - 0xef, 0x53, 0x14, 0xf7, 0x90, 0x5c, 0x46, 0x0f, 0x81, 0x45, 0x30, 0x2c, 0x0a, 0x27, 0xe1, 0x5b, - 0x83, 0xb5, 0x5c, 0x51, 0xd1, 0xfc, 0x05, 0xf8, 0x16, 0x18, 0xf2, 0x78, 0x8e, 0x1b, 0x12, 0xd2, - 0x9c, 0xe3, 0xf7, 0xfb, 0xcd, 0x93, 0xf2, 0x94, 0x5f, 0x2a, 0x52, 0x73, 0xb7, 0x42, 0x9c, 0x6a, - 0x03, 0xb1, 0x9d, 0xca, 0xbb, 0xb8, 0x8e, 0x8c, 0xd6, 0x35, 0x6c, 0x14, 0x15, 0x4d, 0xb0, 0xc0, - 0x73, 0x60, 0x3c, 0x94, 0xca, 0x47, 0x1f, 0x16, 0xf9, 0x75, 0x2c, 0x58, 0x15, 0x05, 0x19, 0xbc, - 0x07, 0x8a, 0x21, 0x99, 0xe1, 0x34, 0x1a, 0x84, 0x52, 0xe2, 0xd8, 0xba, 0x38, 0x75, 0x44, 0x9c, - 0x7a, 0x36, 0xc5, 0xa9, 0xda, 0xc9, 0x00, 0x64, 0x39, 0xc4, 0xd0, 0xb8, 0x14, 0xf7, 0x40, 0x31, - 0x34, 0x6d, 0x1c, 0xfe, 0x48, 0x06, 0xf8, 0x00, 0x24, 0x06, 0x7f, 0x03, 0x14, 0x4c, 0x4c, 0x0d, - 0x8f, 0xb8, 0xa2, 0x94, 0xce, 0x0b, 0xcb, 0x9f, 0x0d, 0x4a, 0xe9, 0xa0, 0xe7, 0x0a, 0xea, 0xe8, - 0x6b, 0x6d, 0x52, 0x19, 0x2b, 0x9d, 0xdc, 0xf0, 0x1e, 0x38, 0x15, 0xca, 0xea, 0xb8, 0xd8, 0x13, - 0x05, 0x6a, 0xe0, 0x0f, 0xa2, 0x8c, 0xac, 0x9d, 0xf9, 0xfa, 0x8b, 0x0b, 0x2f, 0x49, 0xf4, 0xd0, - 0x7f, 0xa4, 0x1f, 0x6c, 0x32, 0x8f, 0xd8, 0x75, 0x6d, 0x32, 0xc0, 0xb8, 0x2d, 0x21, 0x02, 0x37, - 0x39, 0x09, 0x46, 0x7e, 0x84, 0x88, 0x85, 0x4d, 0x51, 0x79, 0xe6, 0x35, 0xf9, 0x05, 0x2f, 0x82, - 0x11, 0xde, 0x77, 0xed, 0x51, 0x51, 0x37, 0x8e, 0x2f, 0xaa, 0xdd, 0xc4, 0xaf, 0x39, 0xb6, 0xb9, - 0x29, 0x28, 0x35, 0xc9, 0x01, 0xb7, 0x40, 0xe8, 0x8d, 0x3a, 0x73, 0x76, 0xb1, 0xed, 0x57, 0x95, - 0xa3, 0xb5, 0xf3, 0xd2, 0xaa, 0x27, 0x9e, 0xb7, 0xea, 0xba, 0xcd, 0xbe, 0xfe, 0xe2, 0x02, 0x90, - 0x87, 0xac, 0xdb, 0x4c, 0x1b, 0x0f, 0x30, 0xb6, 0x04, 0x04, 0x77, 0x9d, 0x10, 0xd5, 0x77, 0x9d, - 0x31, 0xdf, 0x75, 0x82, 0x55, 0xdf, 0x75, 0x5e, 0x07, 0x93, 0x32, 0x7a, 0x31, 0xd5, 0x8d, 0x3d, - 0xcf, 0xe3, 0x3d, 0x06, 0x76, 0x1d, 0x63, 0x47, 0xd4, 0xa0, 0x79, 0xed, 0x44, 0xb8, 0xbd, 0xec, - 0xef, 0xae, 0xf0, 0x4d, 0xf5, 0x63, 0x05, 0x94, 0xbb, 0xc6, 0xb5, 0x4c, 0x1f, 0x18, 0x80, 0x76, - 0x66, 0x90, 0xef, 0xd2, 0x4a, 0xaa, 0x5c, 0xd8, 0x2b, 0xda, 0xb5, 0x0e, 0x60, 0xf5, 0x3e, 0x98, - 0x4f, 0x68, 0xf6, 0x42, 0xda, 0xeb, 0x88, 0x6e, 0x39, 0xf2, 0x0b, 0x1f, 0x4e, 0xe1, 0xaa, 0xde, - 0x01, 0x0b, 0x19, 0x8e, 0x94, 0xe6, 0x38, 0xd3, 0x91, 0x62, 0x88, 0x19, 0x24, 0xcf, 0x42, 0x3b, - 0xd1, 0x89, 0xa2, 0xf4, 0x7c, 0x72, 0x99, 0x1b, 0x8d, 0x99, 0xb4, 0xa9, 0x33, 0x51, 0xcf, 0x5c, - 0x7a, 0x3d, 0xeb, 0xe0, 0xd5, 0x74, 0xe2, 0x48, 0x15, 0xdf, 0x90, 0xa9, 0x4e, 0x49, 0x9f, 0x15, - 0x04, 0x83, 0xaa, 0xca, 0x0c, 0x5f, 0xb3, 0x1c, 0x63, 0x97, 0xbe, 0x6f, 0x33, 0x62, 0xdd, 0xc2, - 0x0f, 0x7d, 0x5f, 0x0b, 0x5e, 0xdb, 0xbb, 0xb2, 0x60, 0x4f, 0xa6, 0x91, 0x12, 0xbc, 0x06, 0x26, - 0xb7, 0xc5, 0xbe, 0xbe, 0xc7, 0x09, 0x74, 0x51, 0x71, 0xfa, 0xfe, 0xac, 0x88, 0x8e, 0x6e, 0x62, - 0x3b, 0x81, 0x5d, 0x5d, 0x92, 0xd5, 0xf7, 0x72, 0x68, 0xba, 0x55, 0xcf, 0x69, 0x2c, 0xcb, 0x0e, - 0x3b, 0x30, 0x77, 0xa4, 0x0b, 0x57, 0xa2, 0x5d, 0xb8, 0xba, 0x0a, 0xce, 0xee, 0x0b, 0xd1, 0x2e, - 0xad, 0xf7, 0x7f, 0xed, 0xde, 0x91, 0x75, 0x7b, 0xc4, 0xb7, 0x52, 0xbf, 0x95, 0xbf, 0x1b, 0x4c, - 0x9a, 0xd5, 0xa4, 0x3e, 0x3d, 0x32, 0x83, 0xc8, 0x45, 0x67, 0x10, 0x67, 0xc1, 0x98, 0xf3, 0xc0, - 0xee, 0x70, 0xa4, 0x41, 0xb1, 0x7f, 0x54, 0x2c, 0x06, 0x09, 0x32, 0x6c, 0xd9, 0x87, 0xba, 0xb5, - 0xec, 0xc3, 0x87, 0xd9, 0xb2, 0x7f, 0x04, 0x0a, 0xc4, 0x26, 0x4c, 0x97, 0xf5, 0xd6, 0x88, 0xc0, - 0x5e, 0xc9, 0x84, 0xbd, 0x6e, 0x13, 0x46, 0x90, 0x45, 0x7e, 0x2c, 0xc6, 0x31, 0xa2, 0x0a, 0xe3, - 0x7d, 0x0b, 0xd5, 0x00, 0x47, 0xf6, 0xab, 0x32, 0xd8, 0x00, 0x13, 0xfe, 0x58, 0x84, 0xee, 0x20, - 0x97, 0xd8, 0xf5, 0xe0, 0xc0, 0x23, 0xe2, 0xc0, 0xb7, 0xd3, 0x15, 0x78, 0x1c, 0x60, 0xd3, 0xe7, - 0xef, 0x38, 0x06, 0xba, 0xf1, 0x75, 0xaa, 0xd6, 0x62, 0xc9, 0x55, 0x8e, 0xe8, 0x78, 0x37, 0x94, - 0xda, 0x13, 0x76, 0x63, 0x45, 0x53, 0x04, 0x43, 0xba, 0xc3, 0x1a, 0x08, 0x26, 0x7d, 0x3a, 0x23, - 0x8d, 0x60, 0x6a, 0x98, 0xae, 0x0d, 0x2b, 0xd4, 0xdb, 0x80, 0x8b, 0xdf, 0x94, 0xc1, 0xb0, 0x38, - 0x0d, 0xfe, 0x43, 0x01, 0x13, 0x49, 0xe7, 0xc2, 0xab, 0xd9, 0x33, 0x7f, 0x74, 0x4a, 0x5a, 0x5a, - 0xea, 0x03, 0xc1, 0x57, 0x58, 0xbd, 0xfe, 0x93, 0x3f, 0xfe, 0xfd, 0xb3, 0x5c, 0x0d, 0x5e, 0xed, - 0x3d, 0x53, 0x0f, 0xad, 0x2b, 0xf5, 0xac, 0x3e, 0xea, 0xb0, 0xf7, 0x63, 0xf8, 0x67, 0x45, 0x16, - 0xff, 0xd1, 0x37, 0x00, 0x5e, 0xc9, 0x2e, 0x64, 0x64, 0x9c, 0x5a, 0xba, 0x7a, 0x70, 0x00, 0xa9, - 0xe4, 0x92, 0x50, 0xf2, 0x6d, 0xf8, 0x56, 0x06, 0x25, 0xfd, 0xa9, 0x66, 0xf5, 0x91, 0x88, 0xd7, - 0xc7, 0xf0, 0xd3, 0x9c, 0x4c, 0x23, 0x89, 0xf3, 0x16, 0xb8, 0x9a, 0x5e, 0xc6, 0xfd, 0xe6, 0x47, - 0xa5, 0xb5, 0xbe, 0x71, 0xa4, 0xca, 0xdb, 0x42, 0xe5, 0xef, 0xc3, 0xbb, 0x29, 0xfe, 0x56, 0x12, - 0xce, 0x2d, 0x23, 0x8d, 0x63, 0xf4, 0x7a, 0xab, 0x8f, 0xe2, 0xcf, 0x66, 0x92, 0x4d, 0x3a, 0xbb, - 0x9d, 0x03, 0xd9, 0x24, 0x61, 0xe4, 0x74, 0x20, 0x9b, 0x24, 0xcd, 0x8a, 0x0e, 0x66, 0x93, 0x88, - 0xda, 0x71, 0x9b, 0xc4, 0x3b, 0xed, 0xc7, 0xf0, 0xf7, 0x8a, 0x6c, 0x8c, 0x23, 0x73, 0x24, 0x78, - 0x39, 0xbd, 0x0e, 0x49, 0xe3, 0xa9, 0xd2, 0x95, 0x03, 0xf3, 0x4b, 0xdd, 0xdf, 0x14, 0xba, 0x2f, - 0xc2, 0xf9, 0xde, 0xba, 0x33, 0x09, 0xe0, 0xff, 0xe1, 0x04, 0xfe, 0x3c, 0x27, 0xdf, 0xf1, 0xfd, - 0x07, 0x43, 0xf0, 0x76, 0x7a, 0x11, 0x53, 0x0d, 0xa4, 0x4a, 0x1b, 0x87, 0x07, 0x28, 0x8d, 0x70, - 0x43, 0x18, 0x61, 0x05, 0x2e, 0xf7, 0x36, 0x82, 0x17, 0x22, 0xb6, 0xa3, 0x22, 0x32, 0x91, 0x86, - 0x3f, 0xcd, 0xc9, 0x12, 0x69, 0xdf, 0xd1, 0x14, 0xbc, 0x95, 0x5e, 0x8b, 0x34, 0x23, 0xb3, 0xd2, - 0xed, 0x43, 0xc3, 0x93, 0x46, 0x59, 0x11, 0x46, 0xb9, 0x02, 0x2f, 0xf5, 0x36, 0x8a, 0xf4, 0x72, - 0xdd, 0xe5, 0xa8, 0xb1, 0xf4, 0xff, 0x1b, 0x05, 0x14, 0x3a, 0x66, 0x3f, 0xf0, 0x8d, 0xf4, 0x72, - 0x46, 0x66, 0x48, 0xa5, 0x37, 0xb3, 0x33, 0x4a, 0x4d, 0xe6, 0x85, 0x26, 0x73, 0x70, 0xb6, 0xb7, - 0x26, 0x7e, 0xb5, 0xd2, 0xf6, 0xed, 0xfd, 0xe7, 0x3f, 0x59, 0x7c, 0x3b, 0xd5, 0x60, 0x2a, 0x8b, - 0x6f, 0xa7, 0x1b, 0x4d, 0x65, 0xf1, 0x6d, 0x87, 0x83, 0xe8, 0xc4, 0xd6, 0xdb, 0x3d, 0x63, 0xec, - 0x32, 0x7f, 0x9b, 0x93, 0x53, 0xdc, 0x34, 0xfd, 0x1c, 0x7c, 0xff, 0xa0, 0x0f, 0xf4, 0xbe, 0x2d, - 0x69, 0xe9, 0xce, 0x61, 0xc3, 0x4a, 0x4b, 0xdd, 0x15, 0x96, 0xda, 0x82, 0x5a, 0xe6, 0x6a, 0x40, - 0x77, 0xb1, 0xd7, 0x36, 0x5a, 0xd2, 0x93, 0xf8, 0xeb, 0x1c, 0x78, 0x39, 0x4d, 0x83, 0x08, 0x37, - 0xfa, 0x78, 0xe8, 0x13, 0x5b, 0xdf, 0xd2, 0x7b, 0x87, 0x88, 0x28, 0x2d, 0x65, 0x08, 0x4b, 0xdd, - 0x83, 0x1f, 0x66, 0xb1, 0x54, 0x74, 0x1e, 0xd6, 0xbb, 0x8a, 0xf8, 0xb7, 0x02, 0x26, 0xbb, 0x8c, - 0x37, 0xe0, 0x72, 0x3f, 0xc3, 0x91, 0xc0, 0x30, 0xd7, 0xfa, 0x03, 0xc9, 0x1e, 0x5f, 0xa1, 0xc6, - 0x5d, 0xe3, 0xeb, 0x5f, 0x8a, 0xec, 0x69, 0x93, 0x5a, 0x77, 0x98, 0x61, 0x24, 0xb4, 0xcf, 0x78, - 0xa0, 0xb4, 0xda, 0x2f, 0x4c, 0xf6, 0xea, 0xb9, 0xcb, 0xa4, 0x01, 0xfe, 0x27, 0xfe, 0xff, 0x07, - 0xd1, 0x59, 0x00, 0x5c, 0xcb, 0x7e, 0x45, 0x89, 0x03, 0x89, 0xd2, 0xf5, 0xfe, 0x81, 0xfa, 0xe8, - 0x19, 0x88, 0x59, 0x7d, 0x14, 0xce, 0x43, 0x1e, 0xc3, 0xbf, 0x04, 0xb5, 0x60, 0x24, 0x3d, 0x65, - 0xa9, 0x05, 0x93, 0x46, 0x1e, 0xa5, 0x2b, 0x07, 0xe6, 0x97, 0xaa, 0xad, 0x0a, 0xd5, 0xae, 0xc2, - 0xcb, 0x59, 0x13, 0x60, 0xcc, 0x8b, 0xff, 0xa7, 0x80, 0x62, 0xb7, 0x8e, 0x1a, 0x5e, 0x3b, 0x70, - 0x6f, 0xda, 0xd1, 0xd4, 0x97, 0x56, 0xfa, 0x44, 0x91, 0x1a, 0xdf, 0x14, 0x1a, 0xaf, 0xc1, 0x95, - 0xec, 0x5d, 0xae, 0x98, 0x03, 0x44, 0x15, 0xaf, 0x7d, 0xf0, 0xe5, 0xd3, 0x69, 0xe5, 0xab, 0xa7, - 0xd3, 0xca, 0xdf, 0x9e, 0x4e, 0x2b, 0x9f, 0x3c, 0x9b, 0x1e, 0xf8, 0xea, 0xd9, 0xf4, 0xc0, 0x9f, - 0x9e, 0x4d, 0x0f, 0xdc, 0xbd, 0x54, 0x27, 0x6c, 0x67, 0x6f, 0xbb, 0x62, 0x38, 0x0d, 0xf9, 0x1f, - 0x54, 0x1d, 0x27, 0x5e, 0x08, 0x4f, 0x6c, 0xbe, 0x5e, 0x7d, 0x18, 0x2b, 0xba, 0x5b, 0x2e, 0xa6, - 0xdb, 0x23, 0x62, 0xc0, 0xf0, 0xbd, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x93, 0x7a, 0xb2, 0x53, - 0xe1, 0x26, 0x00, 0x00, + 0xf4, 0x6f, 0xc8, 0xad, 0x69, 0x7a, 0x29, 0x52, 0xd4, 0x0d, 0xec, 0x16, 0xe8, 0xa5, 0x87, 0xa6, + 0x45, 0xcf, 0xc5, 0x0c, 0x87, 0xdc, 0x25, 0xcd, 0xd5, 0x92, 0x5a, 0xdd, 0x96, 0x33, 0xef, 0xfd, + 0xe6, 0xbd, 0x37, 0xef, 0xbd, 0x79, 0xef, 0x49, 0xa0, 0x4a, 0x6c, 0x86, 0x3d, 0x63, 0x07, 0x11, + 0x5b, 0xa7, 0xd8, 0xd8, 0xf3, 0x08, 0x6b, 0x55, 0x0d, 0xa3, 0x59, 0x75, 0x3d, 0xa7, 0x49, 0x4c, + 0xec, 0x55, 0x9b, 0x0b, 0xd5, 0xfb, 0x7b, 0xd8, 0x6b, 0x55, 0x5c, 0xcf, 0x61, 0x0e, 0x3c, 0x9b, + 0xc0, 0x50, 0x31, 0x8c, 0x66, 0x25, 0x60, 0xa8, 0x34, 0x17, 0x4a, 0xa7, 0xeb, 0x8e, 0x53, 0xb7, + 0x70, 0x15, 0xb9, 0xa4, 0x8a, 0x6c, 0xdb, 0x61, 0x88, 0x11, 0xc7, 0xa6, 0x3e, 0x44, 0x69, 0xa2, + 0xee, 0xd4, 0x1d, 0xf1, 0xb3, 0xca, 0x7f, 0xc9, 0xd5, 0xb2, 0xe4, 0x11, 0x5f, 0xdb, 0x7b, 0x1f, + 0x55, 0x19, 0x69, 0x60, 0xca, 0x50, 0xc3, 0x95, 0x04, 0x8b, 0x69, 0x44, 0x0d, 0xa5, 0xf0, 0x79, + 0xe6, 0xbb, 0xf1, 0x34, 0x17, 0xaa, 0x74, 0x07, 0x79, 0xd8, 0xd4, 0x0d, 0xc7, 0xa6, 0x7b, 0x8d, + 0x90, 0xe3, 0xdc, 0x3e, 0x1c, 0x0f, 0x88, 0x87, 0x25, 0xd9, 0x69, 0x86, 0x6d, 0x13, 0x7b, 0x0d, + 0x62, 0xb3, 0xaa, 0xe1, 0xb5, 0x5c, 0xe6, 0x54, 0x77, 0x71, 0x2b, 0xd0, 0xf0, 0x94, 0xe1, 0xd0, + 0x86, 0x43, 0x75, 0x5f, 0x49, 0xff, 0x43, 0x6e, 0xbd, 0xec, 0x7f, 0x55, 0x29, 0x43, 0xbb, 0xc4, + 0xae, 0x57, 0x9b, 0x0b, 0xdb, 0x98, 0xa1, 0x85, 0xe0, 0x5b, 0x52, 0xcd, 0x49, 0xaa, 0x6d, 0x44, + 0xb1, 0x6f, 0xfe, 0x90, 0xd0, 0x45, 0x75, 0x62, 0x0b, 0x7b, 0xfa, 0xb4, 0xea, 0x65, 0x30, 0xf5, + 0x1e, 0xa7, 0x58, 0x96, 0x8a, 0xac, 0x61, 0x1b, 0x53, 0x42, 0x35, 0x7c, 0x7f, 0x0f, 0x53, 0x06, + 0xcb, 0xa0, 0x10, 0xa8, 0xa8, 0x13, 0xb3, 0xa8, 0xcc, 0x28, 0xb3, 0xa3, 0x1a, 0x08, 0x96, 0xd6, + 0x4d, 0xf5, 0x11, 0x38, 0x9d, 0xcc, 0x4f, 0x5d, 0xc7, 0xa6, 0x18, 0x7e, 0x08, 0xc6, 0xea, 0xfe, + 0x92, 0x4e, 0x19, 0x62, 0x58, 0x40, 0x14, 0x16, 0xe7, 0x2b, 0xdd, 0x3c, 0xa1, 0xb9, 0x50, 0x89, + 0x61, 0x6d, 0x72, 0xbe, 0xda, 0xd0, 0x97, 0x4f, 0xca, 0x03, 0xda, 0xd1, 0x7a, 0xc7, 0x9a, 0xfa, + 0x1b, 0x05, 0x94, 0x22, 0xa7, 0x2f, 0x73, 0xbc, 0x50, 0xf8, 0xeb, 0x60, 0xd8, 0xdd, 0x41, 0xd4, + 0x3f, 0x73, 0x7c, 0x71, 0xb1, 0x92, 0xc2, 0xfb, 0xc2, 0xc3, 0x37, 0x38, 0xa7, 0xe6, 0x03, 0xc0, + 0x55, 0x00, 0xda, 0x96, 0x2b, 0xe6, 0x84, 0x0a, 0xdf, 0xab, 0xc8, 0xab, 0xe1, 0x66, 0xae, 0xf8, + 0x5e, 0x2e, 0xcd, 0x5c, 0xd9, 0x40, 0x75, 0x2c, 0xa5, 0xd0, 0x3a, 0x38, 0xd5, 0x5f, 0x2b, 0x31, + 0x73, 0x07, 0x02, 0x4b, 0x6b, 0xd5, 0xc0, 0x88, 0x10, 0x8f, 0x16, 0x95, 0x99, 0xc1, 0xd9, 0xc2, + 0xe2, 0x5c, 0x3a, 0x91, 0xf9, 0xb6, 0x26, 0x39, 0xe1, 0x5a, 0x82, 0xac, 0xdf, 0xef, 0x29, 0xab, + 0x2f, 0x40, 0x44, 0xd8, 0xcf, 0x86, 0xc1, 0xb0, 0x80, 0x86, 0xa7, 0x40, 0xde, 0x17, 0x21, 0x74, + 0x81, 0x23, 0xe2, 0x7b, 0xdd, 0x84, 0x53, 0x60, 0xd4, 0xb0, 0x08, 0xb6, 0x19, 0xdf, 0xcb, 0x89, + 0xbd, 0xbc, 0xbf, 0xb0, 0x6e, 0xc2, 0xe3, 0x60, 0x98, 0x39, 0xae, 0x7e, 0xab, 0x38, 0x38, 0xa3, + 0xcc, 0x8e, 0x69, 0x43, 0xcc, 0x71, 0x6f, 0xc1, 0x39, 0x00, 0x1b, 0xc4, 0xd6, 0x5d, 0xe7, 0x01, + 0xf7, 0x29, 0x5b, 0xf7, 0x29, 0x86, 0x66, 0x94, 0xd9, 0x41, 0x6d, 0xbc, 0x41, 0xec, 0x0d, 0xbe, + 0xb1, 0x6e, 0x6f, 0x71, 0xda, 0x79, 0x30, 0xd1, 0x44, 0x16, 0x31, 0x11, 0x73, 0x3c, 0x2a, 0x59, + 0x0c, 0xe4, 0x16, 0x87, 0x05, 0x1e, 0x6c, 0xef, 0x09, 0xa6, 0x65, 0xe4, 0xc2, 0x39, 0xf0, 0x62, + 0xb8, 0xaa, 0x53, 0xcc, 0x04, 0xf9, 0x88, 0x20, 0x3f, 0x16, 0x6e, 0x6c, 0x62, 0xc6, 0x69, 0x4f, + 0x83, 0x51, 0x64, 0x59, 0xce, 0x03, 0x8b, 0x50, 0x56, 0x3c, 0x32, 0x33, 0x38, 0x3b, 0xaa, 0xb5, + 0x17, 0x60, 0x09, 0xe4, 0x4d, 0x6c, 0xb7, 0xc4, 0x66, 0x5e, 0x6c, 0x86, 0xdf, 0x70, 0x22, 0xf0, + 0xac, 0x51, 0xa1, 0xb1, 0xf4, 0x92, 0x0f, 0x40, 0xbe, 0x81, 0x19, 0x32, 0x11, 0x43, 0x45, 0x20, + 0xec, 0xfe, 0x5a, 0x26, 0x97, 0xbb, 0x29, 0x99, 0xa5, 0xaf, 0x87, 0x60, 0xdc, 0xc8, 0xdc, 0x64, + 0x3c, 0xca, 0x71, 0xb1, 0x30, 0xa3, 0xcc, 0x0e, 0x69, 0xf9, 0x06, 0xb1, 0x37, 0xf9, 0x37, 0xac, + 0x80, 0xe3, 0x42, 0x68, 0x9d, 0xd8, 0xc8, 0x60, 0xa4, 0x89, 0xf5, 0x26, 0xb2, 0x68, 0xf1, 0xe8, + 0x8c, 0x32, 0x9b, 0xd7, 0x5e, 0x14, 0x5b, 0xeb, 0x72, 0xe7, 0x0e, 0xb2, 0x68, 0x3c, 0xa4, 0xc7, + 0xe2, 0x21, 0x0d, 0x1f, 0x82, 0x53, 0xa1, 0x15, 0xb0, 0xa9, 0x7b, 0xf8, 0x01, 0xf2, 0x4c, 0xdd, + 0xc4, 0xb6, 0xd3, 0xa0, 0xc5, 0x71, 0xa1, 0xd7, 0x3b, 0xa9, 0xf4, 0x5a, 0x6a, 0xa3, 0x68, 0x02, + 0xe4, 0x9a, 0xc0, 0xd0, 0x26, 0x51, 0xf2, 0x06, 0x54, 0xc1, 0x51, 0xd7, 0x23, 0x0e, 0x07, 0x13, + 0x66, 0x3f, 0x26, 0xcc, 0x1e, 0x59, 0x53, 0x7f, 0xa1, 0x80, 0x33, 0x22, 0x84, 0xee, 0x04, 0xb7, + 0x19, 0x98, 0x6f, 0xc9, 0x34, 0xbd, 0x20, 0xf4, 0x2f, 0x81, 0x17, 0x02, 0x49, 0x74, 0x64, 0x9a, + 0x1e, 0xa6, 0xd4, 0xf7, 0xdc, 0x1a, 0xfc, 0xee, 0x49, 0x79, 0xbc, 0x85, 0x1a, 0xd6, 0x45, 0x55, + 0x6e, 0xa8, 0xda, 0xb1, 0x80, 0x76, 0xc9, 0x5f, 0x89, 0xdb, 0x28, 0x17, 0xb7, 0xd1, 0xc5, 0xfc, + 0xc7, 0x9f, 0x97, 0x07, 0xfe, 0xf9, 0x79, 0x79, 0x40, 0xbd, 0x0d, 0xd4, 0xfd, 0xc4, 0x91, 0x81, + 0xfd, 0x0a, 0x78, 0x21, 0x04, 0x8c, 0xc8, 0xa3, 0x1d, 0x33, 0x3a, 0xe8, 0xb9, 0x34, 0xcf, 0x2b, + 0xb8, 0xd1, 0x21, 0x5d, 0x87, 0x82, 0xc9, 0x80, 0xc9, 0x0a, 0xc6, 0x0e, 0xe9, 0x4b, 0xc1, 0xa8, + 0x38, 0x6d, 0x05, 0x93, 0x0d, 0xfe, 0x9c, 0x71, 0xd5, 0x29, 0x70, 0x4a, 0x00, 0x6e, 0xed, 0x78, + 0x0e, 0x63, 0x16, 0x16, 0xb9, 0x5c, 0xea, 0xa5, 0xfe, 0x31, 0x48, 0xe9, 0xb1, 0x5d, 0x79, 0x4c, + 0x19, 0x14, 0xa8, 0x85, 0xe8, 0x8e, 0xde, 0xc0, 0x0c, 0x7b, 0xe2, 0x84, 0x41, 0x0d, 0x88, 0xa5, + 0x9b, 0x7c, 0x05, 0x2e, 0x82, 0x13, 0x1d, 0x04, 0xba, 0xf0, 0x34, 0x64, 0x1b, 0x58, 0xa8, 0x38, + 0xa8, 0x1d, 0x6f, 0x93, 0x2e, 0x05, 0x5b, 0xf0, 0x47, 0xa0, 0x68, 0xe3, 0x87, 0x4c, 0xf7, 0xb0, + 0x6b, 0x61, 0x9b, 0xd0, 0x1d, 0xdd, 0x40, 0xb6, 0xc9, 0x95, 0xc5, 0x22, 0x73, 0x15, 0x16, 0x4b, + 0x15, 0xbf, 0xbe, 0xa8, 0x04, 0xf5, 0x45, 0x65, 0x2b, 0xa8, 0x2f, 0x6a, 0x79, 0x1e, 0xac, 0x9f, + 0xfc, 0xad, 0xac, 0x68, 0x27, 0x39, 0x8a, 0x16, 0x80, 0x2c, 0x07, 0x18, 0xea, 0xab, 0x60, 0x4e, + 0xa8, 0xa4, 0xe1, 0x3a, 0xf7, 0x79, 0x0f, 0x9b, 0x81, 0x8f, 0x44, 0xc2, 0x42, 0x5a, 0x60, 0x05, + 0x9c, 0x4f, 0x45, 0x2d, 0x2d, 0x72, 0x12, 0x8c, 0xc8, 0xd0, 0x54, 0x44, 0xb4, 0xc8, 0x2f, 0xf5, + 0x5d, 0xf0, 0x8a, 0x80, 0x59, 0xb2, 0xac, 0x0d, 0x44, 0x3c, 0x7a, 0x07, 0x59, 0x1c, 0x87, 0x5f, + 0x42, 0xad, 0xd5, 0x46, 0x4c, 0xf9, 0xcc, 0xff, 0x4a, 0x91, 0x3a, 0xf4, 0x80, 0x93, 0x42, 0xdd, + 0x07, 0x2f, 0xba, 0x88, 0x78, 0x3c, 0x13, 0xf1, 0x12, 0x49, 0x78, 0x84, 0x7c, 0xd2, 0x56, 0x53, + 0xa5, 0x0e, 0x7e, 0x86, 0x7f, 0x04, 0x3f, 0x21, 0xf4, 0x38, 0xbb, 0x6d, 0x8b, 0x71, 0x37, 0x42, + 0xa2, 0xfe, 0x57, 0x01, 0x67, 0x7a, 0x72, 0xc1, 0xd5, 0xae, 0x79, 0x61, 0xea, 0xbb, 0x27, 0xe5, + 0x49, 0x3f, 0x6c, 0xe2, 0x14, 0x09, 0x09, 0x62, 0x35, 0x21, 0xfc, 0x72, 0x71, 0x9c, 0x38, 0x45, + 0x42, 0x1c, 0x5e, 0x01, 0x47, 0x43, 0xaa, 0x5d, 0xdc, 0x92, 0xee, 0x76, 0xba, 0xd2, 0x2e, 0x10, + 0x2b, 0x7e, 0x81, 0x58, 0xd9, 0xd8, 0xdb, 0xb6, 0x88, 0x71, 0x03, 0xb7, 0xb4, 0xf0, 0xaa, 0x6e, + 0xe0, 0x96, 0x3a, 0x01, 0xa0, 0xb8, 0x97, 0x0d, 0xe4, 0xa1, 0xb6, 0x0f, 0xfd, 0x18, 0x1c, 0x8f, + 0xac, 0xca, 0x6b, 0x59, 0x07, 0x23, 0xae, 0x58, 0x91, 0x55, 0xd8, 0xf9, 0x94, 0x77, 0xc1, 0x59, + 0xe4, 0xa3, 0x24, 0x01, 0xd4, 0x9b, 0xd2, 0x1f, 0x22, 0x85, 0xcc, 0x6d, 0x97, 0x61, 0x73, 0xdd, + 0x0e, 0x33, 0x45, 0xfa, 0x32, 0xf2, 0xbe, 0x74, 0xfa, 0x5e, 0x70, 0x61, 0x9d, 0xf4, 0x52, 0x67, + 0x5d, 0x10, 0xbb, 0x2f, 0x1c, 0xc4, 0xc2, 0x54, 0x47, 0x81, 0x10, 0xbd, 0x40, 0x4c, 0xd5, 0x25, + 0x30, 0x1d, 0x39, 0xf2, 0x00, 0x52, 0x7f, 0x7a, 0x04, 0xcc, 0x74, 0xc1, 0x08, 0x7f, 0xf5, 0xfb, + 0x14, 0xc5, 0x3d, 0x24, 0x97, 0xd1, 0x43, 0x60, 0x11, 0x0c, 0x8b, 0xc2, 0x49, 0xf8, 0xd6, 0x60, + 0x2d, 0x57, 0x54, 0x34, 0x7f, 0x01, 0xbe, 0x05, 0x86, 0x3c, 0x9e, 0xe3, 0x86, 0x84, 0x34, 0xe7, + 0xf8, 0xfd, 0x7e, 0xf3, 0xa4, 0x3c, 0xe5, 0x97, 0x8a, 0xd4, 0xdc, 0xad, 0x10, 0xa7, 0xda, 0x40, + 0x6c, 0xa7, 0xf2, 0x2e, 0xae, 0x23, 0xa3, 0x75, 0x0d, 0x1b, 0x45, 0x45, 0x13, 0x2c, 0xf0, 0x1c, + 0x18, 0x0f, 0xa5, 0xf2, 0xd1, 0x87, 0x45, 0x7e, 0x1d, 0x0b, 0x56, 0x45, 0x41, 0x06, 0xef, 0x81, + 0x62, 0x48, 0x66, 0x38, 0x8d, 0x06, 0xa1, 0x94, 0x38, 0xb6, 0x2e, 0x4e, 0x1d, 0x11, 0xa7, 0x9e, + 0x4d, 0x71, 0xaa, 0x76, 0x32, 0x00, 0x59, 0x0e, 0x31, 0x34, 0x2e, 0xc5, 0x3d, 0x50, 0x0c, 0x4d, + 0x1b, 0x87, 0x3f, 0x92, 0x01, 0x3e, 0x00, 0x89, 0xc1, 0xdf, 0x00, 0x05, 0x13, 0x53, 0xc3, 0x23, + 0xae, 0x28, 0xa5, 0xf3, 0xc2, 0xf2, 0x67, 0x83, 0x52, 0x3a, 0xe8, 0xb9, 0x82, 0x3a, 0xfa, 0x5a, + 0x9b, 0x54, 0xc6, 0x4a, 0x27, 0x37, 0xbc, 0x07, 0x4e, 0x85, 0xb2, 0x3a, 0x2e, 0xf6, 0x44, 0x81, + 0x1a, 0xf8, 0x83, 0x28, 0x23, 0x6b, 0x67, 0xbe, 0xfe, 0xe2, 0xc2, 0x4b, 0x12, 0x3d, 0xf4, 0x1f, + 0xe9, 0x07, 0x9b, 0xcc, 0x23, 0x76, 0x5d, 0x9b, 0x0c, 0x30, 0x6e, 0x4b, 0x88, 0xc0, 0x4d, 0x4e, + 0x82, 0x91, 0x9f, 0x20, 0x62, 0x61, 0x53, 0x54, 0x9e, 0x79, 0x4d, 0x7e, 0xc1, 0x8b, 0x60, 0x84, + 0xf7, 0x5d, 0x7b, 0x54, 0xd4, 0x8d, 0xe3, 0x8b, 0x6a, 0x37, 0xf1, 0x6b, 0x8e, 0x6d, 0x6e, 0x0a, + 0x4a, 0x4d, 0x72, 0xc0, 0x2d, 0x10, 0x7a, 0xa3, 0xce, 0x9c, 0x5d, 0x6c, 0xfb, 0x55, 0xe5, 0x68, + 0xed, 0xbc, 0xb4, 0xea, 0x89, 0xe7, 0xad, 0xba, 0x6e, 0xb3, 0xaf, 0xbf, 0xb8, 0x00, 0xe4, 0x21, + 0xeb, 0x36, 0xd3, 0xc6, 0x03, 0x8c, 0x2d, 0x01, 0xc1, 0x5d, 0x27, 0x44, 0xf5, 0x5d, 0x67, 0xcc, + 0x77, 0x9d, 0x60, 0xd5, 0x77, 0x9d, 0xd7, 0xc1, 0xa4, 0x8c, 0x5e, 0x4c, 0x75, 0x63, 0xcf, 0xf3, + 0x78, 0x8f, 0x81, 0x5d, 0xc7, 0xd8, 0x11, 0x35, 0x68, 0x5e, 0x3b, 0x11, 0x6e, 0x2f, 0xfb, 0xbb, + 0x2b, 0x7c, 0x53, 0xfd, 0x58, 0x01, 0xe5, 0xae, 0x71, 0x2d, 0xd3, 0x07, 0x06, 0xa0, 0x9d, 0x19, + 0xe4, 0xbb, 0xb4, 0x92, 0x2a, 0x17, 0xf6, 0x8a, 0x76, 0xad, 0x03, 0x58, 0xbd, 0x0f, 0xe6, 0x13, + 0x9a, 0xbd, 0x90, 0xf6, 0x3a, 0xa2, 0x5b, 0x8e, 0xfc, 0xc2, 0x87, 0x53, 0xb8, 0xaa, 0x77, 0xc0, + 0x42, 0x86, 0x23, 0xa5, 0x39, 0xce, 0x74, 0xa4, 0x18, 0x62, 0x06, 0xc9, 0xb3, 0xd0, 0x4e, 0x74, + 0xa2, 0x28, 0x3d, 0x9f, 0x5c, 0xe6, 0x46, 0x63, 0x26, 0x6d, 0xea, 0x4c, 0xd4, 0x33, 0x97, 0x5e, + 0xcf, 0x3a, 0x78, 0x35, 0x9d, 0x38, 0x52, 0xc5, 0x37, 0x64, 0xaa, 0x53, 0xd2, 0x67, 0x05, 0xc1, + 0xa0, 0xaa, 0x32, 0xc3, 0xd7, 0x2c, 0xc7, 0xd8, 0xa5, 0xef, 0xdb, 0x8c, 0x58, 0xb7, 0xf0, 0x43, + 0xdf, 0xd7, 0x82, 0xd7, 0xf6, 0xae, 0x2c, 0xd8, 0x93, 0x69, 0xa4, 0x04, 0xaf, 0x81, 0xc9, 0x6d, + 0xb1, 0xaf, 0xef, 0x71, 0x02, 0x5d, 0x54, 0x9c, 0xbe, 0x3f, 0x2b, 0xa2, 0xa3, 0x9b, 0xd8, 0x4e, + 0x60, 0x57, 0x97, 0x64, 0xf5, 0xbd, 0x1c, 0x9a, 0x6e, 0xd5, 0x73, 0x1a, 0xcb, 0xb2, 0xc3, 0x0e, + 0xcc, 0x1d, 0xe9, 0xc2, 0x95, 0x68, 0x17, 0xae, 0xae, 0x82, 0xb3, 0xfb, 0x42, 0xb4, 0x4b, 0xeb, + 0xfd, 0x5f, 0xbb, 0x77, 0x64, 0xdd, 0x1e, 0xf1, 0xad, 0xd4, 0x6f, 0xe5, 0xb7, 0x83, 0x49, 0xb3, + 0x9a, 0xd4, 0xa7, 0x47, 0x66, 0x10, 0xb9, 0xe8, 0x0c, 0xe2, 0x2c, 0x18, 0x73, 0x1e, 0xd8, 0x1d, + 0x8e, 0x34, 0x28, 0xf6, 0x8f, 0x8a, 0xc5, 0x20, 0x41, 0x86, 0x2d, 0xfb, 0x50, 0xb7, 0x96, 0x7d, + 0xf8, 0x30, 0x5b, 0xf6, 0x8f, 0x40, 0x81, 0xd8, 0x84, 0xe9, 0xb2, 0xde, 0x1a, 0x11, 0xd8, 0x2b, + 0x99, 0xb0, 0xd7, 0x6d, 0xc2, 0x08, 0xb2, 0xc8, 0x4f, 0xc5, 0x38, 0x46, 0x54, 0x61, 0xbc, 0x6f, + 0xa1, 0x1a, 0xe0, 0xc8, 0x7e, 0x55, 0x06, 0x1b, 0x60, 0xc2, 0x1f, 0x8b, 0xd0, 0x1d, 0xe4, 0x12, + 0xbb, 0x1e, 0x1c, 0x78, 0x44, 0x1c, 0xf8, 0x76, 0xba, 0x02, 0x8f, 0x03, 0x6c, 0xfa, 0xfc, 0x1d, + 0xc7, 0x40, 0x37, 0xbe, 0x4e, 0xa3, 0x8e, 0x96, 0x8f, 0x39, 0x5a, 0x2d, 0x96, 0x79, 0xe5, 0xfc, + 0x8e, 0xb7, 0x4a, 0xa9, 0xdd, 0x64, 0x37, 0x56, 0x51, 0x45, 0x30, 0xa4, 0xaf, 0xac, 0x81, 0x60, + 0x0c, 0xa8, 0x33, 0xd2, 0x08, 0x46, 0x8a, 0xe9, 0x7a, 0xb4, 0x42, 0xbd, 0x0d, 0xb8, 0xf8, 0x4d, + 0x19, 0x0c, 0x8b, 0xd3, 0xe0, 0x3f, 0x14, 0x30, 0x91, 0x74, 0x2e, 0xbc, 0x9a, 0xfd, 0x59, 0x88, + 0x8e, 0x50, 0x4b, 0x4b, 0x7d, 0x20, 0xf8, 0x0a, 0xab, 0xd7, 0x7f, 0xf6, 0xa7, 0xbf, 0x7f, 0x96, + 0xab, 0xc1, 0xab, 0xbd, 0x07, 0xee, 0xa1, 0x75, 0xa5, 0x9e, 0xd5, 0x47, 0x1d, 0xf6, 0x7e, 0x0c, + 0xff, 0xa2, 0xc8, 0xce, 0x20, 0xfa, 0x40, 0xc0, 0x2b, 0xd9, 0x85, 0x8c, 0xcc, 0x5a, 0x4b, 0x57, + 0x0f, 0x0e, 0x20, 0x95, 0x5c, 0x12, 0x4a, 0xbe, 0x0d, 0xdf, 0xca, 0xa0, 0xa4, 0x3f, 0xf2, 0xac, + 0x3e, 0x12, 0xc1, 0xfc, 0x18, 0x7e, 0x9a, 0x93, 0x39, 0x26, 0x71, 0x18, 0x03, 0x57, 0xd3, 0xcb, + 0xb8, 0xdf, 0x70, 0xa9, 0xb4, 0xd6, 0x37, 0x8e, 0x54, 0x79, 0x5b, 0xa8, 0xfc, 0x43, 0x78, 0x37, + 0xc5, 0x1f, 0x52, 0xc2, 0xa1, 0x66, 0xa4, 0xab, 0x8c, 0x5e, 0x6f, 0xf5, 0x51, 0xfc, 0x4d, 0x4d, + 0xb2, 0x49, 0x67, 0x2b, 0x74, 0x20, 0x9b, 0x24, 0xcc, 0xa3, 0x0e, 0x64, 0x93, 0xa4, 0x41, 0xd2, + 0xc1, 0x6c, 0x12, 0x51, 0x3b, 0x6e, 0x93, 0x78, 0x1b, 0xfe, 0x18, 0xfe, 0x41, 0x91, 0x5d, 0x73, + 0x64, 0xc8, 0x04, 0x2f, 0xa7, 0xd7, 0x21, 0x69, 0x76, 0x55, 0xba, 0x72, 0x60, 0x7e, 0xa9, 0xfb, + 0x9b, 0x42, 0xf7, 0x45, 0x38, 0xdf, 0x5b, 0x77, 0x26, 0x01, 0xfc, 0xbf, 0xaa, 0xc0, 0x5f, 0xe6, + 0xe4, 0x23, 0xbf, 0xff, 0xd4, 0x08, 0xde, 0x4e, 0x2f, 0x62, 0xaa, 0x69, 0x55, 0x69, 0xe3, 0xf0, + 0x00, 0xa5, 0x11, 0x6e, 0x08, 0x23, 0xac, 0xc0, 0xe5, 0xde, 0x46, 0xf0, 0x42, 0xc4, 0x76, 0x54, + 0x44, 0xc6, 0xd5, 0xf0, 0xe7, 0x39, 0x59, 0x3f, 0xed, 0x3b, 0xb7, 0x82, 0xb7, 0xd2, 0x6b, 0x91, + 0x66, 0x9e, 0x56, 0xba, 0x7d, 0x68, 0x78, 0xd2, 0x28, 0x2b, 0xc2, 0x28, 0x57, 0xe0, 0xa5, 0xde, + 0x46, 0x91, 0x5e, 0xae, 0xbb, 0x1c, 0x35, 0x96, 0xfe, 0x7f, 0xa7, 0x80, 0x42, 0xc7, 0x60, 0x08, + 0xbe, 0x91, 0x5e, 0xce, 0xc8, 0x80, 0xa9, 0xf4, 0x66, 0x76, 0x46, 0xa9, 0xc9, 0xbc, 0xd0, 0x64, + 0x0e, 0xce, 0xf6, 0xd6, 0xc4, 0x2f, 0x65, 0xda, 0xbe, 0xbd, 0xff, 0x70, 0x28, 0x8b, 0x6f, 0xa7, + 0x9a, 0x5a, 0x65, 0xf1, 0xed, 0x74, 0x73, 0xab, 0x2c, 0xbe, 0xed, 0x70, 0x10, 0x9d, 0xd8, 0x7a, + 0xbb, 0xa1, 0x8c, 0x5d, 0xe6, 0xef, 0x73, 0x72, 0xc4, 0x9b, 0xa6, 0xd9, 0x83, 0xef, 0x1f, 0xf4, + 0x81, 0xde, 0xb7, 0x5f, 0x2d, 0xdd, 0x39, 0x6c, 0x58, 0x69, 0xa9, 0xbb, 0xc2, 0x52, 0x5b, 0x50, + 0xcb, 0x5c, 0x0d, 0xe8, 0x2e, 0xf6, 0xda, 0x46, 0x4b, 0x7a, 0x12, 0x7f, 0x9b, 0x03, 0x2f, 0xa7, + 0xe9, 0x1e, 0xe1, 0x46, 0x1f, 0x0f, 0x7d, 0x62, 0x5f, 0x5c, 0x7a, 0xef, 0x10, 0x11, 0xa5, 0xa5, + 0x0c, 0x61, 0xa9, 0x7b, 0xf0, 0xc3, 0x2c, 0x96, 0x8a, 0x0e, 0xcb, 0x7a, 0x57, 0x11, 0xff, 0x56, + 0xc0, 0x64, 0x97, 0xd9, 0x07, 0x5c, 0xee, 0x67, 0x72, 0x12, 0x18, 0xe6, 0x5a, 0x7f, 0x20, 0xd9, + 0xe3, 0x2b, 0xd4, 0xb8, 0x6b, 0x7c, 0xfd, 0x4b, 0x91, 0x0d, 0x6f, 0x52, 0x5f, 0x0f, 0x33, 0xcc, + 0x8b, 0xf6, 0x99, 0x1d, 0x94, 0x56, 0xfb, 0x85, 0xc9, 0x5e, 0x3d, 0x77, 0x19, 0x43, 0xc0, 0xff, + 0xc4, 0xff, 0x39, 0x21, 0x3a, 0x28, 0x80, 0x6b, 0xd9, 0xaf, 0x28, 0x71, 0x5a, 0x51, 0xba, 0xde, + 0x3f, 0x50, 0x1f, 0x3d, 0x03, 0x31, 0xab, 0x8f, 0xc2, 0x1e, 0xf6, 0x31, 0xfc, 0x6b, 0x50, 0x0b, + 0x46, 0xd2, 0x53, 0x96, 0x5a, 0x30, 0x69, 0x1e, 0x52, 0xba, 0x72, 0x60, 0x7e, 0xa9, 0xda, 0xaa, + 0x50, 0xed, 0x2a, 0xbc, 0x9c, 0x35, 0x01, 0xc6, 0xbc, 0xf8, 0x7f, 0x0a, 0x28, 0x76, 0xeb, 0xa8, + 0xe1, 0xb5, 0x03, 0xf7, 0xa6, 0x1d, 0x4d, 0x7d, 0x69, 0xa5, 0x4f, 0x14, 0xa9, 0xf1, 0x4d, 0xa1, + 0xf1, 0x1a, 0x5c, 0xc9, 0xde, 0xe5, 0x8a, 0x39, 0x40, 0x54, 0xf1, 0xda, 0x07, 0x5f, 0x3e, 0x9d, + 0x56, 0xbe, 0x7a, 0x3a, 0xad, 0x7c, 0xfb, 0x74, 0x5a, 0xf9, 0xe4, 0xd9, 0xf4, 0xc0, 0x57, 0xcf, + 0xa6, 0x07, 0xfe, 0xfc, 0x6c, 0x7a, 0xe0, 0xee, 0xa5, 0x3a, 0x61, 0x3b, 0x7b, 0xdb, 0x15, 0xc3, + 0x69, 0xc8, 0x7f, 0xaf, 0xea, 0x38, 0xf1, 0x42, 0x78, 0x62, 0xf3, 0xf5, 0xea, 0xc3, 0x58, 0xd1, + 0xdd, 0x72, 0x31, 0xdd, 0x1e, 0x11, 0x03, 0x86, 0x1f, 0xfc, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x42, + 0x06, 0x36, 0xb2, 0xfe, 0x26, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4078,6 +4087,13 @@ func (m *QueryConsumerChainResponse) MarshalToSizedBuffer(dAtA []byte) (int, err _ = i var l int _ = l + if len(m.ClientId) > 0 { + i -= len(m.ClientId) + copy(dAtA[i:], m.ClientId) + i = encodeVarintQuery(dAtA, i, uint64(len(m.ClientId))) + i-- + dAtA[i] = 0x42 + } if m.PowerShapingParams != nil { { size, err := m.PowerShapingParams.MarshalToSizedBuffer(dAtA[:i]) @@ -4773,6 +4789,10 @@ func (m *QueryConsumerChainResponse) Size() (n int) { l = m.PowerShapingParams.Size() n += 1 + l + sovQuery(uint64(l)) } + l = len(m.ClientId) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } return n } @@ -8552,6 +8572,38 @@ func (m *QueryConsumerChainResponse) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ClientId", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ClientId = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) From 9a44f4aa1e35df54f326a4f97128277547aaa8ff Mon Sep 17 00:00:00 2001 From: insumity Date: Thu, 14 Nov 2024 16:00:23 +0100 Subject: [PATCH 2/2] added changelog and changed docs --- .../2398-enable-pagination-in-listing-chain-query.md | 2 ++ docs/docs/build/modules/02-provider.md | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 .changelog/unreleased/bug-fixes/2398-enable-pagination-in-listing-chain-query.md diff --git a/.changelog/unreleased/bug-fixes/2398-enable-pagination-in-listing-chain-query.md b/.changelog/unreleased/bug-fixes/2398-enable-pagination-in-listing-chain-query.md new file mode 100644 index 0000000000..1e2b7a655c --- /dev/null +++ b/.changelog/unreleased/bug-fixes/2398-enable-pagination-in-listing-chain-query.md @@ -0,0 +1,2 @@ +- `[x/provider]` Fixed pagination bug in query for listing the consumer chains. + ([\#2398](https://github.com/cosmos/interchain-security/pull/2398)) diff --git a/docs/docs/build/modules/02-provider.md b/docs/docs/build/modules/02-provider.md index ef7d475193..33e143dfad 100644 --- a/docs/docs/build/modules/02-provider.md +++ b/docs/docs/build/modules/02-provider.md @@ -2336,7 +2336,7 @@ Output: #### List Consumer Chains -The `QueryConsumerChains` endpoint queries consumer chains supported by the provider chain. +The `QueryConsumerChains` endpoint queries consumer chains supported by the provider chain and supports pagination for managing a large number of chains. An optional integer parameter can be passed for phase filtering of consumer chains, (Registered=1|Initialized=2|Launched=3|Stopped=4|Deleted=5).` ```bash @@ -2873,7 +2873,8 @@ grpcurl -plaintext -d '{"consumer_id": "0"}' localhost:9090 interchain_security. "validatorSetCap": 50, "minStake": "1000", "allowInactiveVals": true - } + }, + "clientId": "07-tendermint-28" } ```