From ff5695e0f833d9945582b00c4e3753d61dc038e3 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Sun, 25 Jun 2023 16:24:30 +0700 Subject: [PATCH 01/26] add msg UpdateArchiveState and proto scripts --- .lfsconfig | 2 + Makefile | 18 +++++++++ proto/buf.gen.gogo.yaml | 8 ++++ proto/buf.yml | 24 ++++++++++++ proto/gitopia/tx.proto | 8 ++++ scripts/protocgen.sh | 29 +++++++++++++++ x/gitopia/keeper/msg_server_repository.go | 45 +++++++++++++++++++++++ 7 files changed, 134 insertions(+) create mode 100644 .lfsconfig create mode 100644 proto/buf.gen.gogo.yaml create mode 100644 proto/buf.yml create mode 100644 scripts/protocgen.sh diff --git a/.lfsconfig b/.lfsconfig new file mode 100644 index 00000000..010fe8af --- /dev/null +++ b/.lfsconfig @@ -0,0 +1,2 @@ +[lfs] + url = https://server.gitopia.com/59102.git diff --git a/Makefile b/Makefile index 06f7d062..d3720923 100644 --- a/Makefile +++ b/Makefile @@ -151,3 +151,21 @@ mocks: go install github.com/vektra/mockery/v2@latest mockery --name MsgClient --inpackage --case snake --dir ./x/gitopia/types mockery --name QueryClient --inpackage --case snake --dir ./x/gitopia/types + +############################################################################### +### Proto ### +############################################################################### + +protoVer=0.11.6 +protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer) +containerProtoGen=proto-gen-$(protoVer) +containerProtoFmt=proto-fmt-$(protoVer) + +proto-all: proto-gen + +proto-gen: + @echo "Generating Protobuf files" + @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoGen}$$"; then docker start -a $(containerProtoGen); else docker run --name $(containerProtoGen) -v $(CURDIR):/workspace --workdir /workspace $(protoImageName) \ + sh ./scripts/protocgen.sh; fi + +.PHONY: proto-all proto-gen \ No newline at end of file diff --git a/proto/buf.gen.gogo.yaml b/proto/buf.gen.gogo.yaml new file mode 100644 index 00000000..855ea251 --- /dev/null +++ b/proto/buf.gen.gogo.yaml @@ -0,0 +1,8 @@ +version: v1 +plugins: + - name: gocosmos + out: .. + opt: plugins=grpc,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types + - name: grpc-gateway + out: .. + opt: logtostderr=true,allow_colon_final_segments=true \ No newline at end of file diff --git a/proto/buf.yml b/proto/buf.yml new file mode 100644 index 00000000..a5cdb63f --- /dev/null +++ b/proto/buf.yml @@ -0,0 +1,24 @@ +version: v1 +name: buf.build/gitopia +deps: + - buf.build/cosmos/cosmos-proto + - buf.build/cosmos/gogo-proto + - buf.build/googleapis/googleapis + - buf.build/cosmos/cosmos-sdk + +breaking: + use: + - FILE +lint: + use: + - DEFAULT + - COMMENTS + - FILE_LOWER_SNAKE_CASE + except: + - UNARY_RPC + - COMMENT_FIELD + - SERVICE_SUFFIX + - PACKAGE_VERSION_SUFFIX + - RPC_REQUEST_STANDARD_NAME + ignore: + - tendermint \ No newline at end of file diff --git a/proto/gitopia/tx.proto b/proto/gitopia/tx.proto index cef05798..04f05c49 100644 --- a/proto/gitopia/tx.proto +++ b/proto/gitopia/tx.proto @@ -89,6 +89,7 @@ service Msg { rpc ForkRepositorySuccess(MsgForkRepositorySuccess) returns (MsgForkRepositorySuccessResponse); rpc RenameRepository(MsgRenameRepository) returns (MsgRenameRepositoryResponse); rpc UpdateRepositoryDescription(MsgUpdateRepositoryDescription) returns (MsgUpdateRepositoryDescriptionResponse); + rpc UpdateArchiveState(MsgUpdateArchiveState) returns (MsgUpdateArchiveStateResponse); rpc ChangeOwner(MsgChangeOwner) returns (MsgChangeOwnerResponse); rpc UpdateRepositoryCollaborator(MsgUpdateRepositoryCollaborator) returns (MsgUpdateRepositoryCollaboratorResponse); rpc RemoveRepositoryCollaborator(MsgRemoveRepositoryCollaborator) returns (MsgRemoveRepositoryCollaboratorResponse); @@ -778,6 +779,13 @@ message MsgUpdateRepositoryDescription { message MsgUpdateRepositoryDescriptionResponse { } +message MsgUpdateArchiveState { + string creator = 1; + RepositoryId repositoryId = 2 [(gogoproto.nullable) = false]; + string archived = 3; +} + +message MsgUpdateArchiveStateResponse { } message MsgChangeOwner { string creator = 1; diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh new file mode 100644 index 00000000..d0919848 --- /dev/null +++ b/scripts/protocgen.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash + +set -eo pipefail + +# get protoc executions +go get github.com/regen-network/cosmos-proto/protoc-gen-gocosmos 2>/dev/null + +# get cosmos sdk from github +# go get github.com/cosmos/cosmos-sdk 2>/dev/null + +echo "Generating gogo proto code" +cd proto +proto_dirs=$(find ./gitopia -path -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq) +for dir in $proto_dirs; do + for file in $(find "${dir}" -maxdepth 1 -name '*.proto'); do + if grep go_package $file &>/dev/null; then + buf generate --template buf.gen.gogo.yaml $file + fi + done +done + +cd .. + +# move proto files to the right places +# +# Note: Proto files are suffixed with the current binary version. +rm -rf github.com + +go mod tidy -compat=1.19 \ No newline at end of file diff --git a/x/gitopia/keeper/msg_server_repository.go b/x/gitopia/keeper/msg_server_repository.go index 8d4359bc..190680f4 100644 --- a/x/gitopia/keeper/msg_server_repository.go +++ b/x/gitopia/keeper/msg_server_repository.go @@ -493,6 +493,51 @@ func (k msgServer) UpdateRepositoryDescription(goCtx context.Context, msg *types return &types.MsgUpdateRepositoryDescriptionResponse{}, nil } +func (k msgServer) UpdateArchiveState(goCtx context.Context, msg *types.MsgUpdateArchiveState) (*types.MsgUpdateArchiveStateResponse, error) { + ctx := sdk.UnwrapSDKContext(goCtx) + + _, found := k.GetUser(ctx, msg.Creator) + if !found { + return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("creator (%v) doesn't exist", msg.Creator)) + } + + address, err := k.ResolveAddress(ctx, msg.RepositoryId.Id) + if err != nil { + return nil, err + } + + repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if !found { + return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) + } + + if msg.Archived == repository.Archived { + return nil, sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, fmt.Sprintf("archived state not modified")) + } + + if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryUpdateArchiveState) { + return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, fmt.Sprintf("user (%v) doesn't have permission to perform this operation", msg.Creator)) + } + + repository.Archived = msg.Archived + repository.UpdatedAt = ctx.BlockTime().Unix() + + k.SetRepository(ctx, repository) + + ctx.EventManager().EmitEvent( + sdk.NewEvent(sdk.EventTypeMessage, + sdk.NewAttribute(sdk.AttributeKeyModule, types.ModuleName), + sdk.NewAttribute(sdk.AttributeKeyAction, types.UpdateArchivedStateEventKey), + sdk.NewAttribute(types.EventAttributeCreatorKey, msg.Creator), + sdk.NewAttribute(types.EventAttributeRepoIdKey, strconv.FormatUint(repository.Id, 10)), + sdk.NewAttribute(types.EventAttributeRepoNameKey, repository.Name), + sdk.NewAttribute(types.EventAttributeUpdatedAtKey, strconv.FormatInt(repository.UpdatedAt, 10)), + ), + ) + + return &types.MsgUpdateArchiveStateResponse{}, nil +} + func (k msgServer) UpdateRepositoryCollaborator(goCtx context.Context, msg *types.MsgUpdateRepositoryCollaborator) (*types.MsgUpdateRepositoryCollaboratorResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) From 1c9e455c24d7e095003d7a17ccf892fe7ca4fe06 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Sun, 25 Jun 2023 17:28:37 +0700 Subject: [PATCH 02/26] refactor proto folder and make proto-gen --- go.mod | 1 + go.sum | 2 + proto/buf.lock | 19 + proto/{buf.yml => buf.yaml} | 2 +- proto/gitopia/{ => gitopia}/attachment.proto | 0 proto/gitopia/{ => gitopia}/bounty.proto | 0 proto/gitopia/{ => gitopia}/branch.proto | 0 proto/gitopia/{ => gitopia}/comment.proto | 4 +- proto/gitopia/{ => gitopia}/dao.proto | 0 .../{ => gitopia}/exercised_amount.proto | 0 proto/gitopia/{ => gitopia}/genesis.proto | 30 +- proto/gitopia/{ => gitopia}/issue.proto | 2 +- proto/gitopia/{ => gitopia}/member.proto | 0 proto/gitopia/{ => gitopia}/params.proto | 0 proto/gitopia/{ => gitopia}/pullRequest.proto | 2 +- proto/gitopia/{ => gitopia}/query.proto | 26 +- proto/gitopia/{ => gitopia}/reaction.proto | 0 proto/gitopia/{ => gitopia}/release.proto | 2 +- proto/gitopia/{ => gitopia}/repository.proto | 2 +- proto/gitopia/{ => gitopia}/tag.proto | 0 proto/gitopia/{ => gitopia}/task.proto | 0 proto/gitopia/{ => gitopia}/tx.proto | 28 +- proto/gitopia/{ => gitopia}/user.proto | 0 proto/gitopia/{ => gitopia}/whois.proto | 0 proto/{ => gitopia}/offchain/offchain.proto | 0 proto/{ => gitopia}/rewards/genesis.proto | 4 +- proto/{ => gitopia}/rewards/params.proto | 0 proto/{ => gitopia}/rewards/query.proto | 4 +- proto/{ => gitopia}/rewards/rewards.proto | 0 proto/{ => gitopia}/rewards/task.proto | 0 proto/{ => gitopia}/rewards/tx.proto | 2 +- scripts/protocgen.sh | 2 + x/gitopia/types/attachment.pb.go | 34 +- x/gitopia/types/bounty.pb.go | 88 +- x/gitopia/types/branch.pb.go | 42 +- x/gitopia/types/comment.pb.go | 144 +- x/gitopia/types/dao.pb.go | 56 +- x/gitopia/types/exercised_amount.pb.go | 46 +- x/gitopia/types/genesis.pb.go | 109 +- x/gitopia/types/issue.pb.go | 74 +- x/gitopia/types/member.pb.go | 40 +- x/gitopia/types/params.pb.go | 100 +- x/gitopia/types/pullRequest.pb.go | 94 +- x/gitopia/types/query.pb.go | 666 ++++---- x/gitopia/types/query.pb.gw.go | 96 +- x/gitopia/types/reaction.pb.go | 46 +- x/gitopia/types/release.pb.go | 58 +- x/gitopia/types/repository.pb.go | 142 +- x/gitopia/types/tag.pb.go | 38 +- x/gitopia/types/task.pb.go | 72 +- x/gitopia/types/tx.pb.go | 1346 +++++++++++------ x/gitopia/types/user.pb.go | 56 +- x/gitopia/types/whois.pb.go | 46 +- x/offchain/types/offchain.pb.go | 44 +- x/rewards/types/genesis.pb.go | 46 +- x/rewards/types/params.pb.go | 110 +- x/rewards/types/query.pb.go | 114 +- x/rewards/types/query.pb.gw.go | 8 +- x/rewards/types/rewards.pb.go | 54 +- x/rewards/types/task.pb.go | 60 +- x/rewards/types/tx.pb.go | 72 +- 61 files changed, 2246 insertions(+), 1787 deletions(-) create mode 100644 proto/buf.lock rename proto/{buf.yml => buf.yaml} (92%) rename proto/gitopia/{ => gitopia}/attachment.proto (100%) rename proto/gitopia/{ => gitopia}/bounty.proto (100%) rename proto/gitopia/{ => gitopia}/branch.proto (100%) rename proto/gitopia/{ => gitopia}/comment.proto (97%) rename proto/gitopia/{ => gitopia}/dao.proto (100%) rename proto/gitopia/{ => gitopia}/exercised_amount.proto (100%) rename proto/gitopia/{ => gitopia}/genesis.proto (77%) rename proto/gitopia/{ => gitopia}/issue.proto (93%) rename proto/gitopia/{ => gitopia}/member.proto (100%) rename proto/gitopia/{ => gitopia}/params.proto (100%) rename proto/gitopia/{ => gitopia}/pullRequest.proto (96%) rename proto/gitopia/{ => gitopia}/query.proto (97%) rename proto/gitopia/{ => gitopia}/reaction.proto (100%) rename proto/gitopia/{ => gitopia}/release.proto (92%) rename proto/gitopia/{ => gitopia}/repository.proto (97%) rename proto/gitopia/{ => gitopia}/tag.proto (100%) rename proto/gitopia/{ => gitopia}/task.proto (100%) rename proto/gitopia/{ => gitopia}/tx.proto (97%) rename proto/gitopia/{ => gitopia}/user.proto (100%) rename proto/gitopia/{ => gitopia}/whois.proto (100%) rename proto/{ => gitopia}/offchain/offchain.proto (100%) rename proto/{ => gitopia}/rewards/genesis.proto (87%) rename proto/{ => gitopia}/rewards/params.proto (100%) rename proto/{ => gitopia}/rewards/query.proto (96%) rename proto/{ => gitopia}/rewards/rewards.proto (100%) rename proto/{ => gitopia}/rewards/task.proto (100%) rename proto/{ => gitopia}/rewards/tx.proto (96%) diff --git a/go.mod b/go.mod index 37f2c1d1..1f11e776 100644 --- a/go.mod +++ b/go.mod @@ -146,6 +146,7 @@ require ( ) require ( + github.com/cosmos/gogoproto v1.4.10 github.com/ipfs/go-cid v0.3.2 golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0 google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc diff --git a/go.sum b/go.sum index 409b7198..3bc779e3 100644 --- a/go.sum +++ b/go.sum @@ -223,6 +223,8 @@ github.com/cosmos/cosmos-sdk v0.46.13/go.mod h1:EfY521ATNEla8eJ6oJuZBdgP5+p360s7 github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= +github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoKuI= +github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek= github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y= github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw= github.com/cosmos/iavl v0.19.6 h1:XY78yEeNPrEYyNCKlqr9chrwoeSDJ0bV2VjocTk//OU= diff --git a/proto/buf.lock b/proto/buf.lock new file mode 100644 index 00000000..32594c77 --- /dev/null +++ b/proto/buf.lock @@ -0,0 +1,19 @@ +# Generated by buf. DO NOT EDIT. +version: v1 +deps: + - remote: buf.build + owner: cosmos + repository: cosmos-proto + commit: 1935555c206d4afb9e94615dfd0fad31 + - remote: buf.build + owner: cosmos + repository: cosmos-sdk + commit: 8dc523b705c34317bfd4a961fba89e72 + - remote: buf.build + owner: cosmos + repository: gogo-proto + commit: 34d970b699f84aa382f3c29773a60836 + - remote: buf.build + owner: googleapis + repository: googleapis + commit: 5ae7f88519b04fe1965da0f8a375a088 \ No newline at end of file diff --git a/proto/buf.yml b/proto/buf.yaml similarity index 92% rename from proto/buf.yml rename to proto/buf.yaml index a5cdb63f..4a161970 100644 --- a/proto/buf.yml +++ b/proto/buf.yaml @@ -1,5 +1,5 @@ version: v1 -name: buf.build/gitopia +name: buf.build/gitopia/gitopia deps: - buf.build/cosmos/cosmos-proto - buf.build/cosmos/gogo-proto diff --git a/proto/gitopia/attachment.proto b/proto/gitopia/gitopia/attachment.proto similarity index 100% rename from proto/gitopia/attachment.proto rename to proto/gitopia/gitopia/attachment.proto diff --git a/proto/gitopia/bounty.proto b/proto/gitopia/gitopia/bounty.proto similarity index 100% rename from proto/gitopia/bounty.proto rename to proto/gitopia/gitopia/bounty.proto diff --git a/proto/gitopia/branch.proto b/proto/gitopia/gitopia/branch.proto similarity index 100% rename from proto/gitopia/branch.proto rename to proto/gitopia/gitopia/branch.proto diff --git a/proto/gitopia/comment.proto b/proto/gitopia/gitopia/comment.proto similarity index 97% rename from proto/gitopia/comment.proto rename to proto/gitopia/gitopia/comment.proto index 94b7eb57..c3a6763b 100644 --- a/proto/gitopia/comment.proto +++ b/proto/gitopia/gitopia/comment.proto @@ -4,8 +4,8 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/reaction.proto"; -import "gitopia/attachment.proto"; +import "gitopia/gitopia/reaction.proto"; +import "gitopia/gitopia/attachment.proto"; enum CommentType { option (gogoproto.goproto_enum_prefix) = false; diff --git a/proto/gitopia/dao.proto b/proto/gitopia/gitopia/dao.proto similarity index 100% rename from proto/gitopia/dao.proto rename to proto/gitopia/gitopia/dao.proto diff --git a/proto/gitopia/exercised_amount.proto b/proto/gitopia/gitopia/exercised_amount.proto similarity index 100% rename from proto/gitopia/exercised_amount.proto rename to proto/gitopia/gitopia/exercised_amount.proto diff --git a/proto/gitopia/genesis.proto b/proto/gitopia/gitopia/genesis.proto similarity index 77% rename from proto/gitopia/genesis.proto rename to proto/gitopia/gitopia/genesis.proto index e634f627..89f67e9c 100644 --- a/proto/gitopia/genesis.proto +++ b/proto/gitopia/gitopia/genesis.proto @@ -1,23 +1,23 @@ syntax = "proto3"; package gitopia.gitopia.gitopia; -import "gitopia/task.proto"; -import "gitopia/branch.proto"; -import "gitopia/tag.proto"; -import "gitopia/member.proto"; -import "gitopia/bounty.proto"; +import "gitopia/gitopia/task.proto"; +import "gitopia/gitopia/branch.proto"; +import "gitopia/gitopia/tag.proto"; +import "gitopia/gitopia/member.proto"; +import "gitopia/gitopia/bounty.proto"; // this line is used by starport scaffolding # genesis/proto/import import "gogoproto/gogo.proto"; -import "gitopia/release.proto"; -import "gitopia/pullRequest.proto"; -import "gitopia/dao.proto"; -import "gitopia/comment.proto"; -import "gitopia/issue.proto"; -import "gitopia/repository.proto"; -import "gitopia/user.proto"; -import "gitopia/whois.proto"; -import "gitopia/params.proto"; -import "gitopia/exercised_amount.proto"; +import "gitopia/gitopia/release.proto"; +import "gitopia/gitopia/pullRequest.proto"; +import "gitopia/gitopia/dao.proto"; +import "gitopia/gitopia/comment.proto"; +import "gitopia/gitopia/issue.proto"; +import "gitopia/gitopia/repository.proto"; +import "gitopia/gitopia/user.proto"; +import "gitopia/gitopia/whois.proto"; +import "gitopia/gitopia/params.proto"; +import "gitopia/gitopia/exercised_amount.proto"; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; diff --git a/proto/gitopia/issue.proto b/proto/gitopia/gitopia/issue.proto similarity index 93% rename from proto/gitopia/issue.proto rename to proto/gitopia/gitopia/issue.proto index a16f422d..47542269 100644 --- a/proto/gitopia/issue.proto +++ b/proto/gitopia/gitopia/issue.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/repository.proto"; +import "gitopia/gitopia/repository.proto"; message Issue { string creator = 1; diff --git a/proto/gitopia/member.proto b/proto/gitopia/gitopia/member.proto similarity index 100% rename from proto/gitopia/member.proto rename to proto/gitopia/gitopia/member.proto diff --git a/proto/gitopia/params.proto b/proto/gitopia/gitopia/params.proto similarity index 100% rename from proto/gitopia/params.proto rename to proto/gitopia/gitopia/params.proto diff --git a/proto/gitopia/pullRequest.proto b/proto/gitopia/gitopia/pullRequest.proto similarity index 96% rename from proto/gitopia/pullRequest.proto rename to proto/gitopia/gitopia/pullRequest.proto index b2b598cc..9ce087df 100644 --- a/proto/gitopia/pullRequest.proto +++ b/proto/gitopia/gitopia/pullRequest.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/repository.proto"; +import "gitopia/gitopia/repository.proto"; message PullRequest { string creator = 1; diff --git a/proto/gitopia/query.proto b/proto/gitopia/gitopia/query.proto similarity index 97% rename from proto/gitopia/query.proto rename to proto/gitopia/gitopia/query.proto index ca53fae2..84e70009 100644 --- a/proto/gitopia/query.proto +++ b/proto/gitopia/gitopia/query.proto @@ -3,21 +3,21 @@ package gitopia.gitopia.gitopia; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "gitopia/task.proto"; -import "gitopia/branch.proto"; -import "gitopia/tag.proto"; -import "gitopia/member.proto"; -import "gitopia/bounty.proto"; +import "gitopia/gitopia/task.proto"; +import "gitopia/gitopia/branch.proto"; +import "gitopia/gitopia/tag.proto"; +import "gitopia/gitopia/member.proto"; +import "gitopia/gitopia/bounty.proto"; // this line is used by starport scaffolding # 1 import "gogoproto/gogo.proto"; -import "gitopia/release.proto"; -import "gitopia/pullRequest.proto"; -import "gitopia/dao.proto"; -import "gitopia/comment.proto"; -import "gitopia/issue.proto"; -import "gitopia/repository.proto"; -import "gitopia/user.proto"; -import "gitopia/whois.proto"; +import "gitopia/gitopia/release.proto"; +import "gitopia/gitopia/pullRequest.proto"; +import "gitopia/gitopia/dao.proto"; +import "gitopia/gitopia/comment.proto"; +import "gitopia/gitopia/issue.proto"; +import "gitopia/gitopia/repository.proto"; +import "gitopia/gitopia/user.proto"; +import "gitopia/gitopia/whois.proto"; import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; diff --git a/proto/gitopia/reaction.proto b/proto/gitopia/gitopia/reaction.proto similarity index 100% rename from proto/gitopia/reaction.proto rename to proto/gitopia/gitopia/reaction.proto diff --git a/proto/gitopia/release.proto b/proto/gitopia/gitopia/release.proto similarity index 92% rename from proto/gitopia/release.proto rename to proto/gitopia/gitopia/release.proto index 3b0c86b4..d5e8c9d7 100644 --- a/proto/gitopia/release.proto +++ b/proto/gitopia/gitopia/release.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/attachment.proto"; +import "gitopia/gitopia/attachment.proto"; message Release { string creator = 1; diff --git a/proto/gitopia/repository.proto b/proto/gitopia/gitopia/repository.proto similarity index 97% rename from proto/gitopia/repository.proto rename to proto/gitopia/gitopia/repository.proto index d75e7b66..ad8bb900 100644 --- a/proto/gitopia/repository.proto +++ b/proto/gitopia/gitopia/repository.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/whois.proto"; +import "gitopia/gitopia/whois.proto"; message Repository { string creator = 1; diff --git a/proto/gitopia/tag.proto b/proto/gitopia/gitopia/tag.proto similarity index 100% rename from proto/gitopia/tag.proto rename to proto/gitopia/gitopia/tag.proto diff --git a/proto/gitopia/task.proto b/proto/gitopia/gitopia/task.proto similarity index 100% rename from proto/gitopia/task.proto rename to proto/gitopia/gitopia/task.proto diff --git a/proto/gitopia/tx.proto b/proto/gitopia/gitopia/tx.proto similarity index 97% rename from proto/gitopia/tx.proto rename to proto/gitopia/gitopia/tx.proto index 04f05c49..55ccac07 100644 --- a/proto/gitopia/tx.proto +++ b/proto/gitopia/gitopia/tx.proto @@ -2,22 +2,22 @@ syntax = "proto3"; package gitopia.gitopia.gitopia; import "gogoproto/gogo.proto"; -import "gitopia/task.proto"; -import "gitopia/branch.proto"; -import "gitopia/tag.proto"; -import "gitopia/member.proto"; -import "gitopia/bounty.proto"; +import "gitopia/gitopia/task.proto"; +import "gitopia/gitopia/branch.proto"; +import "gitopia/gitopia/tag.proto"; +import "gitopia/gitopia/member.proto"; +import "gitopia/gitopia/bounty.proto"; // this line is used by starport scaffolding # proto/tx/import -import "gitopia/release.proto"; -import "gitopia/pullRequest.proto"; -import "gitopia/dao.proto"; -import "gitopia/comment.proto"; -import "gitopia/issue.proto"; -import "gitopia/repository.proto"; -import "gitopia/whois.proto"; +import "gitopia/gitopia/release.proto"; +import "gitopia/gitopia/pullRequest.proto"; +import "gitopia/gitopia/dao.proto"; +import "gitopia/gitopia/comment.proto"; +import "gitopia/gitopia/issue.proto"; +import "gitopia/gitopia/repository.proto"; +import "gitopia/gitopia/whois.proto"; import "cosmos/base/v1beta1/coin.proto"; -import "gitopia/attachment.proto"; -import "gitopia/reaction.proto"; +import "gitopia/gitopia/attachment.proto"; +import "gitopia/gitopia/reaction.proto"; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; diff --git a/proto/gitopia/user.proto b/proto/gitopia/gitopia/user.proto similarity index 100% rename from proto/gitopia/user.proto rename to proto/gitopia/gitopia/user.proto diff --git a/proto/gitopia/whois.proto b/proto/gitopia/gitopia/whois.proto similarity index 100% rename from proto/gitopia/whois.proto rename to proto/gitopia/gitopia/whois.proto diff --git a/proto/offchain/offchain.proto b/proto/gitopia/offchain/offchain.proto similarity index 100% rename from proto/offchain/offchain.proto rename to proto/gitopia/offchain/offchain.proto diff --git a/proto/rewards/genesis.proto b/proto/gitopia/rewards/genesis.proto similarity index 87% rename from proto/rewards/genesis.proto rename to proto/gitopia/rewards/genesis.proto index de744deb..1aa23deb 100644 --- a/proto/rewards/genesis.proto +++ b/proto/gitopia/rewards/genesis.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package gitopia.gitopia.rewards; import "gogoproto/gogo.proto"; -import "rewards/params.proto"; -import "rewards/rewards.proto"; +import "gitopia/rewards/params.proto"; +import "gitopia/rewards/rewards.proto"; import "cosmos/base/v1beta1/coin.proto"; // this line is used by starport scaffolding # genesis/proto/import diff --git a/proto/rewards/params.proto b/proto/gitopia/rewards/params.proto similarity index 100% rename from proto/rewards/params.proto rename to proto/gitopia/rewards/params.proto diff --git a/proto/rewards/query.proto b/proto/gitopia/rewards/query.proto similarity index 96% rename from proto/rewards/query.proto rename to proto/gitopia/rewards/query.proto index 6de699b7..d6bf2766 100644 --- a/proto/rewards/query.proto +++ b/proto/gitopia/rewards/query.proto @@ -4,8 +4,8 @@ package gitopia.gitopia.rewards; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "rewards/task.proto"; -import "rewards/rewards.proto"; +import "gitopia/rewards/task.proto"; +import "gitopia/rewards/rewards.proto"; import "cosmos/base/v1beta1/coin.proto"; // this line is used by starport scaffolding # 1 diff --git a/proto/rewards/rewards.proto b/proto/gitopia/rewards/rewards.proto similarity index 100% rename from proto/rewards/rewards.proto rename to proto/gitopia/rewards/rewards.proto diff --git a/proto/rewards/task.proto b/proto/gitopia/rewards/task.proto similarity index 100% rename from proto/rewards/task.proto rename to proto/gitopia/rewards/task.proto diff --git a/proto/rewards/tx.proto b/proto/gitopia/rewards/tx.proto similarity index 96% rename from proto/rewards/tx.proto rename to proto/gitopia/rewards/tx.proto index 0902b224..3f93fff1 100644 --- a/proto/rewards/tx.proto +++ b/proto/gitopia/rewards/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package gitopia.gitopia.rewards; import "gogoproto/gogo.proto"; -import "rewards/rewards.proto"; +import "gitopia/rewards/rewards.proto"; import "cosmos/base/v1beta1/coin.proto"; // this line is used by starport scaffolding # proto/tx/import diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index d0919848..8d750717 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -23,6 +23,8 @@ cd .. # move proto files to the right places # +cp -r github.com/gitopia/gitopia/* ./ + # Note: Proto files are suffixed with the current binary version. rm -rf github.com diff --git a/x/gitopia/types/attachment.pb.go b/x/gitopia/types/attachment.pb.go index 9baa4ac0..1690effd 100644 --- a/x/gitopia/types/attachment.pb.go +++ b/x/gitopia/types/attachment.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/attachment.proto +// source: gitopia/gitopia/attachment.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ func (m *Attachment) Reset() { *m = Attachment{} } func (m *Attachment) String() string { return proto.CompactTextString(m) } func (*Attachment) ProtoMessage() {} func (*Attachment) Descriptor() ([]byte, []int) { - return fileDescriptor_8035b0c82cbdbc3b, []int{0} + return fileDescriptor_606c5d5397332767, []int{0} } func (m *Attachment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,22 +94,22 @@ func init() { proto.RegisterType((*Attachment)(nil), "gitopia.gitopia.gitopia.Attachment") } -func init() { proto.RegisterFile("gitopia/attachment.proto", fileDescriptor_8035b0c82cbdbc3b) } +func init() { proto.RegisterFile("gitopia/gitopia/attachment.proto", fileDescriptor_606c5d5397332767) } -var fileDescriptor_8035b0c82cbdbc3b = []byte{ +var fileDescriptor_606c5d5397332767 = []byte{ // 183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x4f, 0x2c, 0x29, 0x49, 0x4c, 0xce, 0xc8, 0x4d, 0xcd, 0x2b, 0xd1, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xca, 0xe8, 0xa1, 0xd1, 0x4a, 0x49, 0x5c, 0x5c, 0x8e, - 0x70, 0xc5, 0x42, 0x42, 0x5c, 0x2c, 0x79, 0x89, 0xb9, 0xa9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, - 0x41, 0x60, 0x36, 0x48, 0xac, 0x38, 0xb3, 0x2a, 0x55, 0x82, 0x49, 0x81, 0x51, 0x83, 0x25, 0x08, - 0xcc, 0x16, 0x12, 0xe0, 0x62, 0x2e, 0xce, 0x48, 0x94, 0x60, 0x06, 0x2b, 0x03, 0x31, 0x85, 0xa4, - 0xb8, 0x38, 0x4a, 0x0b, 0x72, 0xf2, 0x13, 0x53, 0x52, 0x8b, 0x24, 0x58, 0xc0, 0xc2, 0x70, 0xbe, - 0x93, 0xcb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, - 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa5, 0x67, 0x96, - 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xc3, 0xdc, 0x0e, 0xa3, 0x2b, 0xe0, 0xac, 0x92, - 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x4f, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x18, - 0xd7, 0xbc, 0x88, 0xe5, 0x00, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0x89, 0x25, 0x25, 0x89, 0xc9, 0x19, 0xb9, 0xa9, 0x79, 0x25, + 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0xe2, 0x50, 0x19, 0x3d, 0x34, 0x5a, 0x29, 0x89, 0x8b, + 0xcb, 0x11, 0xae, 0x58, 0x48, 0x88, 0x8b, 0x25, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x51, 0x81, 0x51, + 0x83, 0x33, 0x08, 0xcc, 0x06, 0x89, 0x15, 0x67, 0x56, 0xa5, 0x4a, 0x30, 0x29, 0x30, 0x6a, 0xb0, + 0x04, 0x81, 0xd9, 0x42, 0x02, 0x5c, 0xcc, 0xc5, 0x19, 0x89, 0x12, 0xcc, 0x60, 0x65, 0x20, 0xa6, + 0x90, 0x14, 0x17, 0x47, 0x69, 0x41, 0x4e, 0x7e, 0x62, 0x4a, 0x6a, 0x91, 0x04, 0x0b, 0x58, 0x18, + 0xce, 0x77, 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, + 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xad, 0xf4, + 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x74, 0x3f, 0x54, 0xc0, 0x59, 0x25, + 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x9f, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb5, + 0x97, 0xc1, 0xec, 0xed, 0x00, 0x00, 0x00, } func (m *Attachment) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/bounty.pb.go b/x/gitopia/types/bounty.pb.go index 6e9aef3c..986b223f 100644 --- a/x/gitopia/types/bounty.pb.go +++ b/x/gitopia/types/bounty.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/bounty.proto +// source: gitopia/gitopia/bounty.proto package types @@ -7,8 +7,8 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -50,7 +50,7 @@ func (x BountyState) String() string { } func (BountyState) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_67a698d5c16076fb, []int{0} + return fileDescriptor_b40b67d80582e8a3, []int{0} } type BountyParent int32 @@ -72,7 +72,7 @@ func (x BountyParent) String() string { } func (BountyParent) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_67a698d5c16076fb, []int{1} + return fileDescriptor_b40b67d80582e8a3, []int{1} } type Bounty struct { @@ -93,7 +93,7 @@ func (m *Bounty) Reset() { *m = Bounty{} } func (m *Bounty) String() string { return proto.CompactTextString(m) } func (*Bounty) ProtoMessage() {} func (*Bounty) Descriptor() ([]byte, []int) { - return fileDescriptor_67a698d5c16076fb, []int{0} + return fileDescriptor_b40b67d80582e8a3, []int{0} } func (m *Bounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -205,44 +205,44 @@ func init() { proto.RegisterType((*Bounty)(nil), "gitopia.gitopia.gitopia.Bounty") } -func init() { proto.RegisterFile("gitopia/bounty.proto", fileDescriptor_67a698d5c16076fb) } - -var fileDescriptor_67a698d5c16076fb = []byte{ - // 534 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0xcf, 0x6e, 0xd3, 0x30, - 0x18, 0x4f, 0xda, 0xae, 0x5b, 0xdd, 0x69, 0x2a, 0x66, 0x30, 0x2f, 0xa0, 0x2c, 0x9a, 0x40, 0x8a, - 0x2a, 0x91, 0xb0, 0x71, 0x41, 0x93, 0x38, 0x34, 0x4d, 0x0e, 0x11, 0xd2, 0x98, 0x9c, 0x0c, 0x09, - 0x2e, 0x55, 0xda, 0x58, 0x25, 0x42, 0xad, 0xa3, 0xd8, 0x85, 0xf5, 0x0d, 0x50, 0x4f, 0xbc, 0x40, - 0x4f, 0xdc, 0x78, 0x0f, 0xa4, 0x1d, 0x38, 0xec, 0xc8, 0x09, 0x50, 0xfb, 0x22, 0x28, 0x4e, 0xda, - 0x79, 0x4c, 0x88, 0xd3, 0x97, 0xef, 0xf7, 0xef, 0xfb, 0x62, 0xd9, 0x60, 0x77, 0x98, 0x70, 0x9a, - 0x26, 0x91, 0xdd, 0xa7, 0x93, 0x31, 0x9f, 0x5a, 0x69, 0x46, 0x39, 0x85, 0x7b, 0x25, 0x6a, 0xfd, - 0x55, 0xb5, 0xdd, 0x21, 0x1d, 0x52, 0xa1, 0xb1, 0xf3, 0xaf, 0x42, 0xae, 0xe9, 0x03, 0xca, 0x46, - 0x94, 0xd9, 0xfd, 0x88, 0x11, 0xfb, 0xc3, 0x51, 0x9f, 0xf0, 0xe8, 0xc8, 0x1e, 0xd0, 0x64, 0x5c, - 0xf0, 0x87, 0xdf, 0xab, 0xa0, 0xee, 0x88, 0x7c, 0xb8, 0x03, 0x2a, 0x49, 0x8c, 0x54, 0x43, 0x35, - 0x6b, 0xb8, 0x92, 0xc4, 0x70, 0x00, 0xea, 0xd1, 0x28, 0xa7, 0x50, 0xc5, 0xa8, 0x9a, 0xcd, 0xe3, - 0x7d, 0xab, 0xc8, 0xb2, 0xf2, 0x2c, 0xab, 0xcc, 0xb2, 0xba, 0x34, 0x19, 0x3b, 0x4f, 0x2f, 0x7f, - 0x1e, 0x28, 0x5f, 0x7f, 0x1d, 0x98, 0xc3, 0x84, 0xbf, 0x9b, 0xf4, 0xad, 0x01, 0x1d, 0xd9, 0xe5, - 0xe0, 0xa2, 0x3c, 0x61, 0xf1, 0x7b, 0x9b, 0x4f, 0x53, 0xc2, 0x84, 0x81, 0xe1, 0x32, 0x1a, 0x9e, - 0x80, 0x0d, 0xc6, 0x23, 0x4e, 0x50, 0xd5, 0x50, 0xcd, 0x9d, 0xe3, 0x47, 0xd6, 0x3f, 0x7e, 0xcf, - 0x2a, 0x96, 0x0c, 0x72, 0x2d, 0x2e, 0x2c, 0xf0, 0x10, 0x6c, 0x67, 0x24, 0xa5, 0x2c, 0xe1, 0x34, - 0x9b, 0xfa, 0x31, 0xaa, 0x89, 0xd5, 0x6f, 0x60, 0xf0, 0x21, 0x68, 0xa4, 0x51, 0x46, 0xc6, 0xdc, - 0x4f, 0x62, 0xb4, 0x21, 0x04, 0xd7, 0x00, 0x7c, 0x01, 0xea, 0x45, 0x83, 0xea, 0x62, 0xfc, 0xe3, - 0xff, 0x8c, 0x3f, 0x13, 0x62, 0x5c, 0x9a, 0xa0, 0x06, 0xb6, 0xc8, 0x45, 0x9a, 0x64, 0xa4, 0xc3, - 0xd1, 0xa6, 0xa1, 0x9a, 0x55, 0xbc, 0xee, 0xa1, 0x0e, 0x40, 0x46, 0x3e, 0x46, 0x59, 0x4c, 0xe2, - 0x90, 0xa2, 0x2d, 0x43, 0x35, 0x1b, 0x58, 0x42, 0xf2, 0xc5, 0x06, 0x19, 0x89, 0x38, 0x89, 0x3b, - 0x1c, 0x35, 0x84, 0xf9, 0x1a, 0xc8, 0xd9, 0x49, 0x1a, 0x97, 0x2c, 0x28, 0xd8, 0x35, 0x00, 0x11, - 0xd8, 0x14, 0x52, 0x9a, 0xa1, 0xa6, 0x08, 0x5e, 0xb5, 0xed, 0x6f, 0x2a, 0x68, 0x4a, 0x27, 0x05, - 0x9f, 0x03, 0xe4, 0xbc, 0x3a, 0x3f, 0x0d, 0xdf, 0xf4, 0x82, 0xb0, 0x13, 0x7a, 0xbd, 0x00, 0x77, - 0x5d, 0xcf, 0xf1, 0xc3, 0xd0, 0x73, 0x5b, 0x8a, 0xa6, 0xcd, 0xe6, 0xc6, 0x7d, 0x49, 0x2e, 0xb1, - 0xf0, 0x04, 0xec, 0xdf, 0x70, 0xba, 0x5e, 0x10, 0x76, 0xb1, 0xe7, 0xfa, 0xb9, 0x55, 0xd5, 0x1e, - 0xcc, 0xe6, 0xc6, 0x9e, 0x64, 0x95, 0xe9, 0x5b, 0x5e, 0xec, 0xbd, 0xf6, 0x70, 0xe8, 0xb9, 0x4e, - 0xa7, 0xfb, 0xb2, 0x55, 0xb9, 0xe5, 0x95, 0x69, 0xad, 0xf6, 0xe9, 0x8b, 0xae, 0xb4, 0x5d, 0xb0, - 0x2d, 0x9f, 0x38, 0xb4, 0xc0, 0xdd, 0x32, 0xf1, 0xac, 0x83, 0xbd, 0xd3, 0xb0, 0xe7, 0x07, 0xc1, - 0xb9, 0xd7, 0x52, 0xb4, 0x7b, 0xb3, 0xb9, 0x71, 0x47, 0x96, 0xfa, 0x8c, 0x4d, 0x48, 0x91, 0xe2, - 0xb8, 0x97, 0x0b, 0x5d, 0xbd, 0x5a, 0xe8, 0xea, 0xef, 0x85, 0xae, 0x7e, 0x5e, 0xea, 0xca, 0xd5, - 0x52, 0x57, 0x7e, 0x2c, 0x75, 0xe5, 0x6d, 0x5b, 0xba, 0xa8, 0xab, 0x67, 0xb6, 0xaa, 0x17, 0xeb, - 0x2f, 0x71, 0x61, 0xfb, 0x75, 0xf1, 0x52, 0x9e, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x45, 0x50, - 0x25, 0xba, 0x90, 0x03, 0x00, 0x00, +func init() { proto.RegisterFile("gitopia/gitopia/bounty.proto", fileDescriptor_b40b67d80582e8a3) } + +var fileDescriptor_b40b67d80582e8a3 = []byte{ + // 535 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0xcf, 0x6a, 0xdb, 0x30, + 0x18, 0xb7, 0x93, 0x34, 0x6d, 0x94, 0x52, 0x32, 0xed, 0x4f, 0x55, 0xaf, 0xb8, 0xa6, 0x6c, 0x60, + 0x02, 0xb3, 0xd7, 0xee, 0x32, 0x0a, 0x3b, 0xc4, 0xb1, 0x0f, 0x66, 0xd0, 0x15, 0xd9, 0x1d, 0x6c, + 0x97, 0xe0, 0xc4, 0x22, 0x33, 0x23, 0x91, 0xb1, 0x94, 0xad, 0x79, 0x83, 0x91, 0xd3, 0x5e, 0x20, + 0xa7, 0xdd, 0xf6, 0x1e, 0x83, 0x1e, 0x76, 0xe8, 0x71, 0xa7, 0x6d, 0x24, 0x2f, 0x32, 0x2c, 0xbb, + 0xa9, 0xda, 0x32, 0x7a, 0xfa, 0xfc, 0xfd, 0xfe, 0x7d, 0x9f, 0x85, 0x04, 0x76, 0x87, 0x09, 0xa7, + 0x69, 0x12, 0xd9, 0x97, 0xb5, 0x4f, 0x27, 0x63, 0x3e, 0xb5, 0xd2, 0x8c, 0x72, 0x0a, 0xb7, 0x4b, + 0xd4, 0xba, 0x51, 0xb5, 0x07, 0x43, 0x3a, 0xa4, 0x42, 0x63, 0xe7, 0x5f, 0x85, 0x5c, 0xd3, 0x07, + 0x94, 0x8d, 0x28, 0xb3, 0xfb, 0x11, 0x23, 0xf6, 0xa7, 0x83, 0x3e, 0xe1, 0xd1, 0x81, 0x3d, 0xa0, + 0xc9, 0xb8, 0xe0, 0xf7, 0x7f, 0x56, 0x41, 0xdd, 0x11, 0xf9, 0x70, 0x0b, 0x54, 0x92, 0x18, 0xa9, + 0x86, 0x6a, 0xd6, 0x70, 0x25, 0x89, 0xe1, 0x00, 0xd4, 0xa3, 0x51, 0x4e, 0xa1, 0x8a, 0x51, 0x35, + 0x9b, 0x87, 0x3b, 0x56, 0x91, 0x65, 0xe5, 0x59, 0x56, 0x99, 0x65, 0x75, 0x69, 0x32, 0x76, 0x9e, + 0x9f, 0xff, 0xde, 0x53, 0xbe, 0xff, 0xd9, 0x33, 0x87, 0x09, 0xff, 0x30, 0xe9, 0x5b, 0x03, 0x3a, + 0xb2, 0xcb, 0xc1, 0x45, 0x79, 0xc6, 0xe2, 0x8f, 0x36, 0x9f, 0xa6, 0x84, 0x09, 0x03, 0xc3, 0x65, + 0x34, 0x3c, 0x02, 0x6b, 0x8c, 0x47, 0x9c, 0xa0, 0xaa, 0xa1, 0x9a, 0x5b, 0x87, 0x4f, 0xac, 0xff, + 0xfc, 0x9e, 0x55, 0x2c, 0x19, 0xe4, 0x5a, 0x5c, 0x58, 0xe0, 0x3e, 0xd8, 0xcc, 0x48, 0x4a, 0x59, + 0xc2, 0x69, 0x36, 0xf5, 0x63, 0x54, 0x13, 0xab, 0x5f, 0xc3, 0xe0, 0x2e, 0x68, 0xa4, 0x51, 0x46, + 0xc6, 0xdc, 0x4f, 0x62, 0xb4, 0x26, 0x04, 0x57, 0x00, 0x7c, 0x05, 0xea, 0x45, 0x83, 0xea, 0x62, + 0xfc, 0xd3, 0x3b, 0xc6, 0x9f, 0x08, 0x31, 0x2e, 0x4d, 0x50, 0x03, 0x1b, 0xe4, 0x2c, 0x4d, 0x32, + 0xd2, 0xe1, 0x68, 0xdd, 0x50, 0xcd, 0x2a, 0x5e, 0xf5, 0x50, 0x07, 0x20, 0x23, 0x9f, 0xa3, 0x2c, + 0x26, 0x71, 0x48, 0xd1, 0x86, 0xa1, 0x9a, 0x0d, 0x2c, 0x21, 0xf9, 0x62, 0x83, 0x8c, 0x44, 0x9c, + 0xc4, 0x1d, 0x8e, 0x1a, 0xc2, 0x7c, 0x05, 0xe4, 0xec, 0x24, 0x8d, 0x4b, 0x16, 0x14, 0xec, 0x0a, + 0x80, 0x08, 0xac, 0x0b, 0x29, 0xcd, 0x50, 0x53, 0x04, 0x5f, 0xb6, 0xed, 0x1f, 0x2a, 0x68, 0x4a, + 0x27, 0x05, 0x5f, 0x02, 0xe4, 0xbc, 0x39, 0x3d, 0x0e, 0xdf, 0xf5, 0x82, 0xb0, 0x13, 0x7a, 0xbd, + 0x00, 0x77, 0x5d, 0xcf, 0xf1, 0xc3, 0xd0, 0x73, 0x5b, 0x8a, 0xa6, 0xcd, 0xe6, 0xc6, 0x23, 0x49, + 0x2e, 0xb1, 0xf0, 0x08, 0xec, 0x5c, 0x73, 0xba, 0x5e, 0x10, 0x76, 0xb1, 0xe7, 0xfa, 0xb9, 0x55, + 0xd5, 0x1e, 0xcf, 0xe6, 0xc6, 0xb6, 0x64, 0x95, 0xe9, 0x5b, 0x5e, 0xec, 0xbd, 0xf5, 0x70, 0xe8, + 0xb9, 0x4e, 0xa7, 0xfb, 0xba, 0x55, 0xb9, 0xe5, 0x95, 0x69, 0xad, 0xf6, 0xe5, 0x9b, 0xae, 0xb4, + 0x5d, 0xb0, 0x29, 0x9f, 0x38, 0xb4, 0xc0, 0xfd, 0x32, 0xf1, 0xa4, 0x83, 0xbd, 0xe3, 0xb0, 0xe7, + 0x07, 0xc1, 0xa9, 0xd7, 0x52, 0xb4, 0x87, 0xb3, 0xb9, 0x71, 0x4f, 0x96, 0xfa, 0x8c, 0x4d, 0x48, + 0x91, 0xe2, 0xb8, 0xe7, 0x0b, 0x5d, 0xbd, 0x58, 0xe8, 0xea, 0xdf, 0x85, 0xae, 0x7e, 0x5d, 0xea, + 0xca, 0xc5, 0x52, 0x57, 0x7e, 0x2d, 0x75, 0xe5, 0x7d, 0x5b, 0xba, 0xa8, 0x37, 0x9f, 0xdb, 0xd9, + 0xea, 0x4b, 0x5c, 0xd8, 0x7e, 0x5d, 0xbc, 0x94, 0x17, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x81, + 0x44, 0x2a, 0xca, 0x98, 0x03, 0x00, 0x00, } func (m *Bounty) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/branch.pb.go b/x/gitopia/types/branch.pb.go index b0f221ca..b2025feb 100644 --- a/x/gitopia/types/branch.pb.go +++ b/x/gitopia/types/branch.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/branch.proto +// source: gitopia/gitopia/branch.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *Branch) Reset() { *m = Branch{} } func (m *Branch) String() string { return proto.CompactTextString(m) } func (*Branch) ProtoMessage() {} func (*Branch) Descriptor() ([]byte, []int) { - return fileDescriptor_e76348169b9d2db0, []int{0} + return fileDescriptor_e572d9d24936cc5d, []int{0} } func (m *Branch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,26 +118,26 @@ func init() { proto.RegisterType((*Branch)(nil), "gitopia.gitopia.gitopia.Branch") } -func init() { proto.RegisterFile("gitopia/branch.proto", fileDescriptor_e76348169b9d2db0) } +func init() { proto.RegisterFile("gitopia/gitopia/branch.proto", fileDescriptor_e572d9d24936cc5d) } -var fileDescriptor_e76348169b9d2db0 = []byte{ +var fileDescriptor_e572d9d24936cc5d = []byte{ // 246 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x4f, 0x2a, 0x4a, 0xcc, 0x4b, 0xce, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x87, 0x8a, 0xea, 0xa1, 0xd1, 0x4a, 0xc7, 0x18, 0xb9, 0xd8, 0x9c, 0xc0, 0x2a, 0x85, - 0xf8, 0xb8, 0x98, 0x32, 0x53, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x82, 0x98, 0x32, 0x53, 0x84, - 0x94, 0xb8, 0x78, 0x8a, 0x52, 0x0b, 0xf2, 0x8b, 0x33, 0x4b, 0xf2, 0x8b, 0x2a, 0x3d, 0x53, 0x24, - 0x98, 0xc0, 0x32, 0x28, 0x62, 0x42, 0x42, 0x5c, 0x2c, 0x79, 0x89, 0xb9, 0xa9, 0x12, 0xcc, 0x0a, - 0x8c, 0x1a, 0x9c, 0x41, 0x60, 0xb6, 0x90, 0x00, 0x17, 0x73, 0x71, 0x46, 0xa2, 0x04, 0x0b, 0x58, - 0x08, 0xc4, 0x14, 0x52, 0xe3, 0xe2, 0x4b, 0xcc, 0xc9, 0xc9, 0x2f, 0x77, 0xcb, 0x2f, 0x4a, 0x4e, - 0x0d, 0x28, 0x2d, 0xce, 0x90, 0x60, 0x55, 0x60, 0xd4, 0xe0, 0x08, 0x42, 0x13, 0x15, 0x92, 0xe1, - 0xe2, 0x4c, 0x2e, 0x4a, 0x4d, 0x2c, 0x49, 0x4d, 0x71, 0x2c, 0x91, 0x60, 0x53, 0x60, 0xd4, 0x60, - 0x0e, 0x42, 0x08, 0x80, 0x64, 0x4b, 0x0b, 0x52, 0xa0, 0xb2, 0xec, 0x10, 0x59, 0xb8, 0x80, 0x93, - 0xcb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, - 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa5, 0x67, 0x96, 0x64, - 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xc3, 0x02, 0x07, 0x46, 0x57, 0xc0, 0x59, 0x25, 0x95, - 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0xe0, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xa3, 0x38, - 0xba, 0xd7, 0x46, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0x49, 0x45, 0x89, 0x79, 0xc9, 0x19, 0x7a, 0x05, 0x45, 0xf9, + 0x25, 0xf9, 0x42, 0xe2, 0x50, 0x51, 0x3d, 0x34, 0x5a, 0xe9, 0x18, 0x23, 0x17, 0x9b, 0x13, 0x58, + 0xa5, 0x10, 0x1f, 0x17, 0x53, 0x66, 0x8a, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x4b, 0x10, 0x53, 0x66, + 0x8a, 0x90, 0x12, 0x17, 0x4f, 0x51, 0x6a, 0x41, 0x7e, 0x71, 0x66, 0x49, 0x7e, 0x51, 0xa5, 0x67, + 0x8a, 0x04, 0x13, 0x58, 0x06, 0x45, 0x4c, 0x48, 0x88, 0x8b, 0x25, 0x2f, 0x31, 0x37, 0x55, 0x82, + 0x59, 0x81, 0x51, 0x83, 0x33, 0x08, 0xcc, 0x16, 0x12, 0xe0, 0x62, 0x2e, 0xce, 0x48, 0x94, 0x60, + 0x01, 0x0b, 0x81, 0x98, 0x42, 0x6a, 0x5c, 0x7c, 0x89, 0x39, 0x39, 0xf9, 0xe5, 0x6e, 0xf9, 0x45, + 0xc9, 0xa9, 0x01, 0xa5, 0xc5, 0x19, 0x12, 0xac, 0x0a, 0x8c, 0x1a, 0x1c, 0x41, 0x68, 0xa2, 0x42, + 0x32, 0x5c, 0x9c, 0xc9, 0x45, 0xa9, 0x89, 0x25, 0xa9, 0x29, 0x8e, 0x25, 0x12, 0x6c, 0x0a, 0x8c, + 0x1a, 0xcc, 0x41, 0x08, 0x01, 0x90, 0x6c, 0x69, 0x41, 0x0a, 0x54, 0x96, 0x1d, 0x22, 0x0b, 0x17, + 0x70, 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, + 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xad, 0xf4, 0xcc, + 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xf4, 0x40, 0xaa, 0x80, 0xb3, 0x4a, 0x2a, + 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xc1, 0x65, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xb0, 0x19, + 0xf1, 0x62, 0x4e, 0x01, 0x00, 0x00, } func (m *Branch) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/comment.pb.go b/x/gitopia/types/comment.pb.go index ac78e332..2333b034 100644 --- a/x/gitopia/types/comment.pb.go +++ b/x/gitopia/types/comment.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/comment.proto +// source: gitopia/gitopia/comment.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -96,7 +96,7 @@ func (x CommentType) String() string { } func (CommentType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_61a8a10ae7d09fb4, []int{0} + return fileDescriptor_87c2e1cdf0cacb50, []int{0} } type CommentParent int32 @@ -124,7 +124,7 @@ func (x CommentParent) String() string { } func (CommentParent) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_61a8a10ae7d09fb4, []int{1} + return fileDescriptor_87c2e1cdf0cacb50, []int{1} } type Comment struct { @@ -154,7 +154,7 @@ func (m *Comment) Reset() { *m = Comment{} } func (m *Comment) String() string { return proto.CompactTextString(m) } func (*Comment) ProtoMessage() {} func (*Comment) Descriptor() ([]byte, []int) { - return fileDescriptor_61a8a10ae7d09fb4, []int{0} + return fileDescriptor_87c2e1cdf0cacb50, []int{0} } func (m *Comment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -329,73 +329,73 @@ func init() { proto.RegisterType((*Comment)(nil), "gitopia.gitopia.gitopia.Comment") } -func init() { proto.RegisterFile("gitopia/comment.proto", fileDescriptor_61a8a10ae7d09fb4) } +func init() { proto.RegisterFile("gitopia/gitopia/comment.proto", fileDescriptor_87c2e1cdf0cacb50) } -var fileDescriptor_61a8a10ae7d09fb4 = []byte{ - // 996 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdb, 0x6e, 0xe3, 0x44, - 0x18, 0xae, 0xdb, 0xf4, 0x90, 0x49, 0x0f, 0xee, 0xb4, 0xdb, 0xce, 0x7a, 0xbb, 0xd1, 0x6c, 0x41, - 0x28, 0xaa, 0x56, 0x29, 0x5a, 0xc4, 0x05, 0x42, 0xb0, 0x72, 0x9b, 0xe9, 0x62, 0x29, 0x27, 0xec, - 0x74, 0x51, 0xb9, 0x89, 0xdc, 0xcc, 0x34, 0xb5, 0x48, 0x3d, 0xc6, 0x76, 0x0a, 0x79, 0x03, 0xe4, - 0x2b, 0x5e, 0xc0, 0xdc, 0xf0, 0x0e, 0x3c, 0x03, 0x97, 0x7b, 0x83, 0xc4, 0x25, 0x6a, 0x5f, 0x04, - 0x79, 0x6c, 0x27, 0x76, 0xeb, 0x14, 0xae, 0xec, 0xff, 0x9f, 0xff, 0xfb, 0xbe, 0xff, 0x34, 0x89, - 0xc1, 0xb3, 0xa1, 0xe5, 0x73, 0xc7, 0x32, 0x8f, 0x07, 0xfc, 0xe6, 0x86, 0xd9, 0x7e, 0xdd, 0x71, - 0xb9, 0xcf, 0xe1, 0x7e, 0xe2, 0xae, 0x3f, 0x78, 0x2a, 0xbb, 0x43, 0x3e, 0xe4, 0x22, 0xe6, 0x38, - 0x7a, 0x8b, 0xc3, 0x95, 0xbd, 0x94, 0xc5, 0x65, 0xe6, 0xc0, 0xb7, 0xb8, 0x9d, 0xf8, 0x51, 0xea, - 0x37, 0x7d, 0xdf, 0x1c, 0x5c, 0xcf, 0x04, 0x0e, 0xff, 0x5a, 0x06, 0xab, 0xa7, 0xb1, 0x24, 0x44, - 0x60, 0x75, 0xe0, 0x32, 0xd3, 0xe7, 0x2e, 0x92, 0xb0, 0x54, 0x2b, 0xeb, 0xa9, 0x09, 0x37, 0xc1, - 0xa2, 0x45, 0xd1, 0x22, 0x96, 0x6a, 0x25, 0x7d, 0xd1, 0xa2, 0xf0, 0x10, 0xac, 0xbb, 0xcc, 0xe1, - 0x9e, 0xe5, 0x73, 0x77, 0xa2, 0x51, 0xb4, 0x24, 0x4e, 0x72, 0x3e, 0x78, 0x00, 0xca, 0x8e, 0xe9, - 0x32, 0xdb, 0xd7, 0x2c, 0x8a, 0x4a, 0x22, 0x60, 0xe6, 0x80, 0x5f, 0x83, 0x95, 0xd8, 0x40, 0xcb, - 0x58, 0xaa, 0x6d, 0xbe, 0xf9, 0xa4, 0x3e, 0xa7, 0xd2, 0x7a, 0x92, 0x5d, 0x57, 0x44, 0xeb, 0x09, - 0x0a, 0x56, 0x01, 0x48, 0x3a, 0x15, 0xd1, 0xaf, 0x08, 0xfa, 0x8c, 0x07, 0x42, 0x50, 0xba, 0xe4, - 0x74, 0x82, 0x56, 0x45, 0x21, 0xe2, 0x1d, 0x12, 0x50, 0x99, 0xd5, 0xef, 0xa1, 0x35, 0xbc, 0x54, - 0xab, 0xbc, 0xf9, 0x68, 0xae, 0xb0, 0x3a, 0x8d, 0xd5, 0xb3, 0x38, 0xa8, 0x80, 0x35, 0x6a, 0x5d, - 0x5d, 0x7d, 0x33, 0xb6, 0x7f, 0x40, 0x65, 0x41, 0x3f, 0xb5, 0x23, 0x59, 0xc7, 0xf4, 0xaf, 0x11, - 0x88, 0x65, 0xa3, 0xf7, 0x28, 0x5e, 0xb4, 0xc5, 0xe2, 0x36, 0xaa, 0x88, 0x44, 0xa7, 0x36, 0xdc, - 0x03, 0x2b, 0xde, 0xc4, 0xf3, 0xd9, 0x0d, 0x5a, 0xc7, 0x52, 0x6d, 0x4d, 0x4f, 0x2c, 0xf8, 0x1a, - 0x6c, 0x9b, 0x63, 0xff, 0x9a, 0xbb, 0xaa, 0xe7, 0xf1, 0x81, 0x65, 0x0a, 0xf0, 0x86, 0x20, 0x7d, - 0x7c, 0x10, 0xb5, 0x5a, 0x4c, 0x8a, 0x51, 0xd5, 0x47, 0x9b, 0x58, 0xaa, 0x2d, 0xe9, 0x33, 0x47, - 0x74, 0x3a, 0x76, 0x68, 0x72, 0xba, 0x15, 0x9f, 0x4e, 0x1d, 0xf0, 0x0c, 0x54, 0x92, 0xb6, 0xf5, - 0x26, 0x0e, 0x43, 0xb2, 0x98, 0xc6, 0xc7, 0xff, 0x35, 0x8d, 0x28, 0x56, 0xcf, 0x02, 0xa3, 0x2a, - 0x5d, 0xe6, 0xf1, 0xd1, 0x2d, 0xa3, 0x68, 0x5b, 0xd4, 0x32, 0xb5, 0xa3, 0xc5, 0x72, 0x99, 0x33, - 0xb2, 0x98, 0x87, 0x20, 0x5e, 0xaa, 0x95, 0xf4, 0xd4, 0x84, 0x6f, 0x41, 0x39, 0x5d, 0x55, 0x0f, - 0xed, 0x88, 0x81, 0xbc, 0x9a, 0xab, 0xad, 0x27, 0x91, 0xfa, 0x0c, 0x13, 0x35, 0xf0, 0xda, 0xa2, - 0x94, 0xd9, 0x68, 0x37, 0x6e, 0x60, 0x6c, 0x1d, 0xfd, 0x56, 0x06, 0x95, 0x4c, 0xae, 0xf0, 0x08, - 0x6c, 0x9f, 0x76, 0x5a, 0x2d, 0xd2, 0xee, 0xf5, 0x7b, 0x17, 0x5d, 0xd2, 0x6f, 0x77, 0xda, 0x44, - 0x5e, 0x50, 0x76, 0x82, 0x10, 0x6f, 0x65, 0xe2, 0xda, 0xdc, 0x66, 0xf0, 0x35, 0x80, 0xb9, 0x58, - 0x9d, 0x74, 0x9b, 0x17, 0xb2, 0xa4, 0xec, 0x06, 0x21, 0x96, 0xb3, 0x0d, 0x60, 0xce, 0x68, 0x02, - 0x3f, 0x07, 0xfb, 0xb9, 0x68, 0xb5, 0xd1, 0xe8, 0x37, 0xd5, 0x13, 0xd2, 0x34, 0xe4, 0x45, 0x05, - 0x05, 0x21, 0xde, 0xcd, 0x40, 0x54, 0x4a, 0x9b, 0xe6, 0x25, 0x1b, 0x79, 0xf0, 0x4b, 0xa0, 0x3c, - 0x10, 0x69, 0x75, 0xde, 0x93, 0x14, 0xb9, 0xa4, 0xbc, 0x08, 0x42, 0xbc, 0x9f, 0x13, 0xbb, 0xe1, - 0xb7, 0x6c, 0x0e, 0x38, 0xd2, 0x54, 0x0d, 0x43, 0x7b, 0xd7, 0x26, 0xc4, 0x90, 0x4b, 0x8f, 0xc0, - 0x2a, 0xa5, 0xaa, 0xe7, 0x59, 0x43, 0x9b, 0x31, 0x0f, 0xaa, 0xe0, 0x65, 0x91, 0xf2, 0x0c, 0xbf, - 0xac, 0x54, 0x83, 0x10, 0x2b, 0x8f, 0xc4, 0x67, 0x14, 0x45, 0xfa, 0x3a, 0x79, 0xaf, 0x91, 0xef, - 0x88, 0x6e, 0xc8, 0x2b, 0x45, 0xfa, 0x3a, 0xbb, 0xb5, 0xd8, 0x4f, 0xcc, 0x9d, 0xab, 0x3f, 0xc3, - 0xaf, 0xce, 0xd1, 0x9f, 0x51, 0x7c, 0x05, 0x5e, 0xe4, 0x28, 0x5a, 0x9d, 0x86, 0x76, 0xa6, 0x91, - 0x46, 0xbf, 0xa7, 0xf5, 0x9a, 0x44, 0x5e, 0x53, 0x0e, 0x82, 0x10, 0xa3, 0x0c, 0x41, 0x8b, 0x53, - 0xeb, 0xca, 0x62, 0xb4, 0x67, 0xf9, 0x23, 0x06, 0x35, 0xf0, 0xaa, 0x18, 0xde, 0x20, 0xc6, 0xa9, - 0xae, 0x75, 0x7b, 0x5a, 0xa7, 0x2d, 0x97, 0x95, 0xc3, 0x20, 0xc4, 0xd5, 0x02, 0x92, 0x06, 0xf3, - 0x06, 0xae, 0xe5, 0x88, 0xab, 0xf7, 0x05, 0x78, 0x9e, 0xa3, 0xd2, 0x0c, 0xe3, 0x9c, 0xf4, 0x4f, - 0x9b, 0x1d, 0x83, 0x34, 0x64, 0xa0, 0x28, 0x41, 0x88, 0xf7, 0x32, 0x14, 0x9a, 0xe7, 0x8d, 0xd9, - 0xe9, 0x88, 0x7b, 0x8c, 0xce, 0x81, 0x76, 0xba, 0xa4, 0x4d, 0x1a, 0x72, 0xa5, 0x18, 0xda, 0x71, - 0x98, 0xcd, 0x28, 0x3c, 0x03, 0x38, 0x07, 0xed, 0x9e, 0x37, 0x9b, 0x7d, 0x9d, 0x7c, 0x7b, 0x4e, - 0x8c, 0x5e, 0x2a, 0xbe, 0xae, 0xe0, 0x20, 0xc4, 0x07, 0x19, 0x86, 0xee, 0x78, 0x34, 0xd2, 0xd9, - 0x8f, 0x63, 0xe6, 0xf9, 0x49, 0x0a, 0x4f, 0xf2, 0x24, 0x99, 0x6c, 0x3c, 0xc5, 0xf3, 0x7f, 0xf2, - 0x69, 0x11, 0xfd, 0x1d, 0x69, 0xc8, 0x9b, 0x4f, 0xf1, 0xb4, 0x98, 0x3b, 0x64, 0x14, 0xd6, 0xc1, - 0xce, 0x83, 0xd5, 0x88, 0x76, 0x42, 0xde, 0x52, 0x9e, 0x05, 0x21, 0xde, 0xce, 0x2d, 0x44, 0xb4, - 0x0a, 0x85, 0x77, 0xef, 0xa4, 0x73, 0xde, 0xee, 0x5d, 0xc8, 0x72, 0xd1, 0xdd, 0x3b, 0xe1, 0x63, - 0xdb, 0x9f, 0xc0, 0xb7, 0xe0, 0xa0, 0x78, 0xfe, 0x09, 0x76, 0x5b, 0x79, 0x19, 0x84, 0xf8, 0x79, - 0xc1, 0xe8, 0x13, 0x82, 0x87, 0xfb, 0x1f, 0xb7, 0x3c, 0x85, 0xc3, 0x47, 0xfb, 0x1f, 0xb7, 0x3b, - 0x06, 0x2b, 0xa5, 0x5f, 0x7e, 0xaf, 0x2e, 0x1c, 0xfd, 0x21, 0x81, 0x8d, 0xdc, 0x5f, 0x5b, 0xb6, - 0xf8, 0xae, 0xaa, 0x47, 0x8f, 0xe4, 0x47, 0x2a, 0x5b, 0x7c, 0x1c, 0x2b, 0x7e, 0xa6, 0x3e, 0x05, - 0xbb, 0x0f, 0xe2, 0xc5, 0x06, 0xc9, 0x92, 0xb2, 0x17, 0x84, 0x18, 0xe6, 0x00, 0x62, 0x79, 0xb2, - 0xd7, 0x26, 0x41, 0x64, 0x07, 0x25, 0x2f, 0xe6, 0xae, 0x4d, 0x0c, 0xcc, 0xcc, 0x28, 0x4e, 0xfc, - 0xa4, 0xf1, 0xe7, 0x5d, 0x55, 0xfa, 0x70, 0x57, 0x95, 0xfe, 0xb9, 0xab, 0x4a, 0xbf, 0xde, 0x57, - 0x17, 0x3e, 0xdc, 0x57, 0x17, 0xfe, 0xbe, 0xaf, 0x2e, 0x7c, 0x7f, 0x34, 0xb4, 0xfc, 0xeb, 0xf1, - 0x65, 0x7d, 0xc0, 0x6f, 0x8e, 0xd3, 0x0f, 0x8e, 0xf4, 0xf9, 0xf3, 0xf4, 0xcd, 0x9f, 0x38, 0xcc, - 0xbb, 0x5c, 0x11, 0x9f, 0x1f, 0x9f, 0xfd, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x90, 0x2b, 0x3e, 0xf8, - 0xf8, 0x08, 0x00, 0x00, +var fileDescriptor_87c2e1cdf0cacb50 = []byte{ + // 998 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x6e, 0xe3, 0x44, + 0x1b, 0xae, 0xdb, 0xf4, 0x27, 0x93, 0xfe, 0xb8, 0xd3, 0x7e, 0xed, 0xac, 0xb7, 0xb5, 0x66, 0xfb, + 0x21, 0x14, 0x55, 0xab, 0x14, 0x2d, 0xe2, 0x00, 0x21, 0x58, 0xb9, 0xcd, 0x74, 0xb1, 0x94, 0x3f, + 0x9c, 0x74, 0x51, 0x39, 0x89, 0xdc, 0xcc, 0x34, 0xb5, 0x48, 0x3c, 0xc6, 0x76, 0x0a, 0xb9, 0x03, + 0xe4, 0x23, 0x6e, 0xc0, 0x9c, 0x70, 0x0f, 0x5c, 0x03, 0x87, 0x7b, 0x82, 0xc4, 0x21, 0x6a, 0x6f, + 0x04, 0x79, 0xec, 0x24, 0x76, 0xea, 0x14, 0x8e, 0xec, 0x77, 0xde, 0xf7, 0x79, 0x9e, 0xf7, 0x6f, + 0x12, 0x83, 0xe3, 0xbe, 0xe5, 0x73, 0xc7, 0x32, 0xcf, 0x26, 0xcf, 0x1e, 0x1f, 0x0e, 0x99, 0xed, + 0x57, 0x1c, 0x97, 0xfb, 0x1c, 0x1e, 0x26, 0xc7, 0x95, 0xb9, 0xa7, 0xb2, 0xdf, 0xe7, 0x7d, 0x2e, + 0x62, 0xce, 0xa2, 0xb7, 0x38, 0x5c, 0x51, 0xe7, 0xd9, 0x5c, 0x66, 0xf6, 0x7c, 0x8b, 0xdb, 0x89, + 0x1f, 0xcf, 0xfb, 0x4d, 0xdf, 0x37, 0x7b, 0x77, 0x33, 0xc1, 0x93, 0x3f, 0x57, 0xc1, 0xfa, 0x45, + 0x9c, 0x02, 0x44, 0x60, 0xbd, 0xe7, 0x32, 0xd3, 0xe7, 0x2e, 0x92, 0xb0, 0x54, 0x2e, 0x1a, 0x13, + 0x13, 0x6e, 0x83, 0x65, 0x8b, 0xa2, 0x65, 0x2c, 0x95, 0x0b, 0xc6, 0xb2, 0x45, 0xe1, 0x09, 0xd8, + 0x74, 0x99, 0xc3, 0x3d, 0xcb, 0xe7, 0xee, 0x58, 0xa7, 0x68, 0x45, 0x78, 0x32, 0x67, 0xf0, 0x08, + 0x14, 0x1d, 0xd3, 0x65, 0xb6, 0xaf, 0x5b, 0x14, 0x15, 0x44, 0xc0, 0xec, 0x00, 0x7e, 0x05, 0xd6, + 0x62, 0x03, 0xad, 0x62, 0xa9, 0xbc, 0xfd, 0xe6, 0xe3, 0xca, 0x82, 0xca, 0x2b, 0x49, 0x76, 0x2d, + 0x11, 0x6d, 0x24, 0x28, 0xa8, 0x02, 0x90, 0x74, 0x2e, 0xa2, 0x5f, 0x13, 0xf4, 0xa9, 0x13, 0x08, + 0x41, 0xe1, 0x86, 0xd3, 0x31, 0x5a, 0x17, 0x85, 0x88, 0x77, 0x48, 0x40, 0x69, 0x56, 0xbf, 0x87, + 0x36, 0xf0, 0x4a, 0xb9, 0xf4, 0xe6, 0xff, 0x0b, 0x85, 0xb5, 0x69, 0xac, 0x91, 0xc6, 0x41, 0x05, + 0x6c, 0x50, 0xeb, 0xf6, 0xf6, 0xeb, 0x91, 0xfd, 0x3d, 0x2a, 0x0a, 0xfa, 0xa9, 0x1d, 0xc9, 0x3a, + 0xa6, 0x7f, 0x87, 0x40, 0x2c, 0x1b, 0xbd, 0x47, 0xf1, 0xa2, 0x2d, 0x16, 0xb7, 0x51, 0x49, 0x24, + 0x3a, 0xb5, 0xe1, 0x01, 0x58, 0xf3, 0xc6, 0x9e, 0xcf, 0x86, 0x68, 0x13, 0x4b, 0xe5, 0x0d, 0x23, + 0xb1, 0xe0, 0x6b, 0xb0, 0x6b, 0x8e, 0xfc, 0x3b, 0xee, 0x6a, 0x9e, 0xc7, 0x7b, 0x96, 0x29, 0xc0, + 0x5b, 0x82, 0xf4, 0xa9, 0x23, 0x6a, 0xb5, 0x98, 0x14, 0xa3, 0x9a, 0x8f, 0xb6, 0xb1, 0x54, 0x5e, + 0x31, 0x66, 0x07, 0x91, 0x77, 0xe4, 0xd0, 0xc4, 0xbb, 0x13, 0x7b, 0xa7, 0x07, 0xf0, 0x12, 0x94, + 0x92, 0xb6, 0x75, 0xc6, 0x0e, 0x43, 0xb2, 0x98, 0xc6, 0x47, 0xff, 0x36, 0x8d, 0x28, 0xd6, 0x48, + 0x03, 0xa3, 0x2a, 0x5d, 0xe6, 0xf1, 0xc1, 0x3d, 0xa3, 0x68, 0x57, 0xd4, 0x32, 0xb5, 0xa3, 0xc5, + 0x72, 0x99, 0x33, 0xb0, 0x98, 0x87, 0x20, 0x5e, 0x29, 0x17, 0x8c, 0x89, 0x09, 0xdf, 0x82, 0xe2, + 0x64, 0x65, 0x3d, 0xb4, 0x27, 0x06, 0xf2, 0x6a, 0xa1, 0xb6, 0x91, 0x44, 0x1a, 0x33, 0x4c, 0xd4, + 0xc0, 0x3b, 0x8b, 0x52, 0x66, 0xa3, 0xfd, 0xb8, 0x81, 0xb1, 0x75, 0xfa, 0x6b, 0x11, 0x94, 0x52, + 0xb9, 0xc2, 0x53, 0xb0, 0x7b, 0xd1, 0xac, 0xd7, 0x49, 0xa3, 0xd3, 0xed, 0x5c, 0xb7, 0x48, 0xb7, + 0xd1, 0x6c, 0x10, 0x79, 0x49, 0xd9, 0x0b, 0x42, 0xbc, 0x93, 0x8a, 0x6b, 0x70, 0x9b, 0xc1, 0xd7, + 0x00, 0x66, 0x62, 0x0d, 0xd2, 0xaa, 0x5d, 0xcb, 0x92, 0xb2, 0x1f, 0x84, 0x58, 0x4e, 0x37, 0x80, + 0x39, 0x83, 0x31, 0xfc, 0x0c, 0x1c, 0x66, 0xa2, 0xb5, 0x6a, 0xb5, 0x5b, 0xd3, 0xce, 0x49, 0xad, + 0x2d, 0x2f, 0x2b, 0x28, 0x08, 0xf1, 0x7e, 0x0a, 0xa2, 0x51, 0x5a, 0x33, 0x6f, 0xd8, 0xc0, 0x83, + 0x5f, 0x00, 0x65, 0x4e, 0xa4, 0xde, 0x7c, 0x4f, 0x26, 0xc8, 0x15, 0xe5, 0x65, 0x10, 0xe2, 0xc3, + 0x8c, 0xd8, 0x90, 0xdf, 0xb3, 0x05, 0xe0, 0x48, 0x53, 0x6b, 0xb7, 0xf5, 0x77, 0x0d, 0x42, 0xda, + 0x72, 0xe1, 0x09, 0x58, 0xa3, 0x54, 0xf3, 0x3c, 0xab, 0x6f, 0x33, 0xe6, 0x41, 0x0d, 0x1c, 0xe7, + 0x29, 0xcf, 0xf0, 0xab, 0x8a, 0x1a, 0x84, 0x58, 0x79, 0x22, 0x3e, 0xa3, 0xc8, 0xd3, 0x37, 0xc8, + 0x7b, 0x9d, 0x7c, 0x4b, 0x8c, 0xb6, 0xbc, 0x96, 0xa7, 0x6f, 0xb0, 0x7b, 0x8b, 0xfd, 0xc8, 0xdc, + 0x85, 0xfa, 0x33, 0xfc, 0xfa, 0x02, 0xfd, 0x19, 0xc5, 0x97, 0xe0, 0x65, 0x86, 0xa2, 0xde, 0xac, + 0xea, 0x97, 0x3a, 0xa9, 0x76, 0x3b, 0x7a, 0xa7, 0x46, 0xe4, 0x0d, 0xe5, 0x28, 0x08, 0x31, 0x4a, + 0x11, 0xd4, 0x39, 0xb5, 0x6e, 0x2d, 0x46, 0x3b, 0x96, 0x3f, 0x60, 0x50, 0x07, 0xaf, 0xf2, 0xe1, + 0x55, 0xd2, 0xbe, 0x30, 0xf4, 0x56, 0x47, 0x6f, 0x36, 0xe4, 0xa2, 0x72, 0x12, 0x84, 0x58, 0xcd, + 0x21, 0xa9, 0x32, 0xaf, 0xe7, 0x5a, 0x8e, 0xb8, 0x7a, 0x9f, 0x83, 0x17, 0x19, 0x2a, 0xbd, 0xdd, + 0xbe, 0x22, 0xdd, 0x8b, 0x5a, 0xb3, 0x4d, 0xaa, 0x32, 0x50, 0x94, 0x20, 0xc4, 0x07, 0x29, 0x0a, + 0xdd, 0xf3, 0x46, 0xec, 0x62, 0xc0, 0x3d, 0x46, 0x17, 0x40, 0x9b, 0x2d, 0xd2, 0x20, 0x55, 0xb9, + 0x94, 0x0f, 0x6d, 0x3a, 0xcc, 0x66, 0x14, 0x5e, 0x02, 0x9c, 0x81, 0xb6, 0xae, 0x6a, 0xb5, 0xae, + 0x41, 0xbe, 0xb9, 0x22, 0xed, 0xce, 0x44, 0x7c, 0x53, 0xc1, 0x41, 0x88, 0x8f, 0x52, 0x0c, 0xad, + 0xd1, 0x60, 0x60, 0xb0, 0x1f, 0x46, 0xcc, 0xf3, 0x93, 0x14, 0x9e, 0xe5, 0x49, 0x32, 0xd9, 0x7a, + 0x8e, 0xe7, 0xbf, 0xe4, 0x53, 0x27, 0xc6, 0x3b, 0x52, 0x95, 0xb7, 0x9f, 0xe3, 0xa9, 0x33, 0xb7, + 0xcf, 0x28, 0xac, 0x80, 0xbd, 0xb9, 0xd5, 0x88, 0x76, 0x42, 0xde, 0x51, 0xfe, 0x17, 0x84, 0x78, + 0x37, 0xb3, 0x10, 0xd1, 0x2a, 0xe4, 0xde, 0xbd, 0xf3, 0xe6, 0x55, 0xa3, 0x73, 0x2d, 0xcb, 0x79, + 0x77, 0xef, 0x9c, 0x8f, 0x6c, 0x7f, 0x0c, 0xdf, 0x82, 0xa3, 0xfc, 0xf9, 0x27, 0xd8, 0x5d, 0xe5, + 0x38, 0x08, 0xf1, 0x8b, 0x9c, 0xd1, 0x27, 0x04, 0xf3, 0xfb, 0x1f, 0xb7, 0x7c, 0x02, 0x87, 0x4f, + 0xf6, 0x3f, 0x6e, 0x77, 0x0c, 0x56, 0x0a, 0x3f, 0xff, 0xa6, 0x2e, 0x9d, 0xfe, 0x2e, 0x81, 0xad, + 0xcc, 0x5f, 0x5b, 0xba, 0xf8, 0x96, 0x66, 0x44, 0x8f, 0xe4, 0x47, 0x2a, 0x5d, 0x7c, 0x1c, 0x2b, + 0x7e, 0xa6, 0x3e, 0x01, 0xfb, 0x73, 0xf1, 0x62, 0x83, 0x64, 0x49, 0x39, 0x08, 0x42, 0x0c, 0x33, + 0x00, 0xb1, 0x3c, 0xe9, 0x6b, 0x93, 0x20, 0xd2, 0x83, 0x92, 0x97, 0x33, 0xd7, 0x26, 0x06, 0xa6, + 0x66, 0x14, 0x27, 0x7e, 0x5e, 0xfd, 0xe3, 0x41, 0x95, 0x3e, 0x3c, 0xa8, 0xd2, 0xdf, 0x0f, 0xaa, + 0xf4, 0xcb, 0xa3, 0xba, 0xf4, 0xe1, 0x51, 0x5d, 0xfa, 0xeb, 0x51, 0x5d, 0xfa, 0xee, 0xb4, 0x6f, + 0xf9, 0x77, 0xa3, 0x9b, 0x4a, 0x8f, 0x0f, 0xcf, 0xe6, 0x3f, 0x3c, 0x7e, 0x9a, 0xbe, 0xf9, 0x63, + 0x87, 0x79, 0x37, 0x6b, 0xe2, 0xf3, 0xe3, 0xd3, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x11, 0x37, + 0x9e, 0x2e, 0x10, 0x09, 0x00, 0x00, } func (m *Comment) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/dao.pb.go b/x/gitopia/types/dao.pb.go index 2fc205c8..cfd04413 100644 --- a/x/gitopia/types/dao.pb.go +++ b/x/gitopia/types/dao.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/dao.proto +// source: gitopia/gitopia/dao.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -44,7 +44,7 @@ func (m *Dao) Reset() { *m = Dao{} } func (m *Dao) String() string { return proto.CompactTextString(m) } func (*Dao) ProtoMessage() {} func (*Dao) Descriptor() ([]byte, []int) { - return fileDescriptor_bbacb5867cc9ed90, []int{0} + return fileDescriptor_379922b0fc6d5d17, []int{0} } func (m *Dao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -175,31 +175,31 @@ func init() { proto.RegisterType((*Dao)(nil), "gitopia.gitopia.gitopia.Dao") } -func init() { proto.RegisterFile("gitopia/dao.proto", fileDescriptor_bbacb5867cc9ed90) } +func init() { proto.RegisterFile("gitopia/gitopia/dao.proto", fileDescriptor_379922b0fc6d5d17) } -var fileDescriptor_bbacb5867cc9ed90 = []byte{ - // 335 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0x4d, 0x6a, 0xc3, 0x30, - 0x10, 0x85, 0x23, 0xdb, 0xf9, 0x53, 0xda, 0x40, 0x45, 0xa0, 0x22, 0x14, 0x23, 0xba, 0x32, 0x5d, - 0x24, 0x8b, 0x9e, 0xa0, 0x25, 0x27, 0x30, 0x74, 0xd3, 0x9d, 0x62, 0x29, 0xae, 0xc0, 0xf1, 0x18, - 0x49, 0x49, 0xda, 0x5b, 0xf4, 0x58, 0x5d, 0x66, 0xd9, 0x65, 0x49, 0xce, 0x51, 0x28, 0x92, 0x1d, - 0x27, 0x74, 0x35, 0xf3, 0xde, 0xf7, 0xc6, 0x1e, 0x34, 0xf8, 0x26, 0x57, 0x16, 0x2a, 0xc5, 0xe7, - 0x82, 0xc3, 0xac, 0xd2, 0x60, 0x81, 0xdc, 0x36, 0xd6, 0xec, 0x5f, 0x9d, 0x4e, 0x72, 0xc8, 0xc1, - 0x67, 0xe6, 0xae, 0xab, 0xe3, 0xf7, 0xbf, 0x01, 0x0e, 0x17, 0x1c, 0x08, 0xc5, 0xfd, 0x4c, 0x4b, - 0x6e, 0x41, 0x53, 0xc4, 0x50, 0x32, 0x4c, 0x4f, 0x92, 0x8c, 0x71, 0xa0, 0x04, 0x0d, 0x18, 0x4a, - 0xa2, 0x34, 0x50, 0xc2, 0x25, 0xb9, 0x10, 0x5a, 0x1a, 0x43, 0xc3, 0x3a, 0xd9, 0x48, 0x42, 0x70, - 0x54, 0xf2, 0xb5, 0xa4, 0x91, 0xb7, 0x7d, 0x4f, 0xee, 0xf0, 0x90, 0x6f, 0xb9, 0xe5, 0xfa, 0x45, - 0x17, 0xb4, 0xeb, 0xc1, 0xd9, 0x70, 0x74, 0x05, 0x45, 0x01, 0x3b, 0xa9, 0x0d, 0xed, 0xb1, 0xd0, - 0xd1, 0xd6, 0x38, 0x53, 0x55, 0xe6, 0xb4, 0x7f, 0x49, 0x55, 0x99, 0x93, 0x09, 0xee, 0x5a, 0xc9, - 0xd7, 0x86, 0x0e, 0x58, 0x98, 0x44, 0x69, 0x2d, 0xc8, 0x14, 0x0f, 0x0a, 0xc8, 0xb8, 0x55, 0x50, - 0xd2, 0xa1, 0xff, 0x5d, 0xab, 0xdd, 0xe6, 0x3b, 0xb9, 0x34, 0xca, 0x4a, 0x8a, 0xeb, 0xcd, 0x1b, - 0xe9, 0xa6, 0xb6, 0x52, 0xab, 0x95, 0x92, 0x82, 0x8e, 0x18, 0x4a, 0x06, 0x69, 0xab, 0x09, 0xc3, - 0x23, 0x21, 0x4d, 0xa6, 0x55, 0xe5, 0x3f, 0x7a, 0xe5, 0x27, 0x2f, 0x2d, 0xb7, 0xa7, 0x7f, 0x2c, - 0x29, 0x9e, 0x2c, 0xbd, 0x66, 0x28, 0x09, 0xd3, 0xb3, 0xe1, 0xe8, 0xa6, 0x12, 0x0d, 0x1d, 0xd7, - 0xb4, 0x35, 0x9e, 0x17, 0x5f, 0x87, 0x18, 0xed, 0x0f, 0x31, 0xfa, 0x39, 0xc4, 0xe8, 0xf3, 0x18, - 0x77, 0xf6, 0xc7, 0xb8, 0xf3, 0x7d, 0x8c, 0x3b, 0xaf, 0x0f, 0xb9, 0xb2, 0x6f, 0x9b, 0xe5, 0x2c, - 0x83, 0xf5, 0xfc, 0x74, 0xe6, 0x53, 0x7d, 0x6f, 0x3b, 0xfb, 0x51, 0x49, 0xb3, 0xec, 0xf9, 0x63, - 0x3e, 0xfe, 0x05, 0x00, 0x00, 0xff, 0xff, 0x40, 0x3b, 0x47, 0xeb, 0x10, 0x02, 0x00, 0x00, +var fileDescriptor_379922b0fc6d5d17 = []byte{ + // 336 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0x4f, 0x6e, 0xf2, 0x30, + 0x10, 0xc5, 0x71, 0x12, 0xfe, 0x99, 0xef, 0x63, 0x61, 0x21, 0xd5, 0x45, 0x55, 0x64, 0x75, 0x15, + 0x75, 0x01, 0x8b, 0x9e, 0xa0, 0x15, 0x27, 0x88, 0xd4, 0x4d, 0x77, 0x26, 0x36, 0xa9, 0xa5, 0x90, + 0x89, 0x6c, 0x03, 0xed, 0x2d, 0x7a, 0xac, 0x2e, 0x59, 0x76, 0x59, 0xc1, 0x39, 0x2a, 0x55, 0x76, + 0x42, 0x40, 0xac, 0x66, 0xde, 0xfb, 0xbd, 0x49, 0x46, 0x1e, 0x7c, 0x9b, 0x2b, 0x0b, 0x95, 0xe2, + 0xf3, 0x53, 0x15, 0x1c, 0x66, 0x95, 0x06, 0x0b, 0xe4, 0xa6, 0xb1, 0x66, 0x57, 0x75, 0x3a, 0xc9, + 0x21, 0x07, 0x9f, 0x99, 0xbb, 0xae, 0x8e, 0xdf, 0xff, 0x06, 0x38, 0x5c, 0x70, 0x20, 0x14, 0xf7, + 0x33, 0x2d, 0xb9, 0x05, 0x4d, 0x11, 0x43, 0xc9, 0x30, 0x3d, 0x49, 0x32, 0xc6, 0x81, 0x12, 0x34, + 0x60, 0x28, 0x89, 0xd2, 0x40, 0x09, 0x97, 0xe4, 0x42, 0x68, 0x69, 0x0c, 0x0d, 0xeb, 0x64, 0x23, + 0x09, 0xc1, 0x51, 0xc9, 0xd7, 0x92, 0x46, 0xde, 0xf6, 0x3d, 0xb9, 0xc3, 0x43, 0xbe, 0xe5, 0x96, + 0xeb, 0x17, 0x5d, 0xd0, 0xae, 0x07, 0x67, 0xc3, 0xd1, 0x15, 0x14, 0x05, 0xec, 0xa4, 0x36, 0xb4, + 0xc7, 0x42, 0x47, 0x5b, 0xe3, 0x4c, 0x55, 0x99, 0xd3, 0xfe, 0x25, 0x55, 0x65, 0x4e, 0x26, 0xb8, + 0x6b, 0x25, 0x5f, 0x1b, 0x3a, 0x60, 0x61, 0x12, 0xa5, 0xb5, 0x20, 0x53, 0x3c, 0x28, 0x20, 0xe3, + 0x56, 0x41, 0x49, 0x87, 0xfe, 0x77, 0xad, 0x76, 0x9b, 0xef, 0xe4, 0xd2, 0x28, 0x2b, 0x29, 0xae, + 0x37, 0x6f, 0xa4, 0x9b, 0xda, 0x4a, 0xad, 0x56, 0x4a, 0x0a, 0x3a, 0x62, 0x28, 0x19, 0xa4, 0xad, + 0x26, 0x0c, 0x8f, 0x84, 0x34, 0x99, 0x56, 0x95, 0xff, 0xe8, 0x3f, 0x3f, 0x79, 0x69, 0xb9, 0x3d, + 0xfd, 0x63, 0x49, 0xf1, 0x64, 0xe9, 0x7f, 0x86, 0x92, 0x30, 0x3d, 0x1b, 0x8e, 0x6e, 0x2a, 0xd1, + 0xd0, 0x71, 0x4d, 0x5b, 0xe3, 0x79, 0xf1, 0x75, 0x88, 0xd1, 0xfe, 0x10, 0xa3, 0x9f, 0x43, 0x8c, + 0x3e, 0x8f, 0x71, 0x67, 0x7f, 0x8c, 0x3b, 0xdf, 0xc7, 0xb8, 0xf3, 0xfa, 0x90, 0x2b, 0xfb, 0xb6, + 0x59, 0xce, 0x32, 0x58, 0xcf, 0xaf, 0xcf, 0xfd, 0xde, 0x76, 0xf6, 0xa3, 0x92, 0x66, 0xd9, 0xf3, + 0xc7, 0x7c, 0xfc, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x63, 0x29, 0x77, 0x21, 0x18, 0x02, 0x00, 0x00, } func (m *Dao) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/exercised_amount.pb.go b/x/gitopia/types/exercised_amount.pb.go index fa3251f3..d461de9c 100644 --- a/x/gitopia/types/exercised_amount.pb.go +++ b/x/gitopia/types/exercised_amount.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/exercised_amount.proto +// source: gitopia/gitopia/exercised_amount.proto package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ func (m *ExercisedAmount) Reset() { *m = ExercisedAmount{} } func (m *ExercisedAmount) String() string { return proto.CompactTextString(m) } func (*ExercisedAmount) ProtoMessage() {} func (*ExercisedAmount) Descriptor() ([]byte, []int) { - return fileDescriptor_e2f495f5b056fe64, []int{0} + return fileDescriptor_ffa3487fa892d0e7, []int{0} } func (m *ExercisedAmount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,26 +80,28 @@ func init() { proto.RegisterType((*ExercisedAmount)(nil), "gitopia.gitopia.gitopia.ExercisedAmount") } -func init() { proto.RegisterFile("gitopia/exercised_amount.proto", fileDescriptor_e2f495f5b056fe64) } +func init() { + proto.RegisterFile("gitopia/gitopia/exercised_amount.proto", fileDescriptor_ffa3487fa892d0e7) +} -var fileDescriptor_e2f495f5b056fe64 = []byte{ +var fileDescriptor_ffa3487fa892d0e7 = []byte{ // 249 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x4f, 0xad, 0x48, 0x2d, 0x4a, 0xce, 0x2c, 0x4e, 0x4d, 0x89, 0x4f, 0xcc, - 0xcd, 0x2f, 0xcd, 0x2b, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xca, 0xeb, 0xa1, - 0xd1, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x35, 0xfa, 0x20, 0x16, 0x44, 0xb9, 0x94, 0x5c, - 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0xb1, 0x7e, 0x52, 0x62, 0x71, 0xaa, 0x7e, 0x99, 0x61, 0x52, 0x6a, - 0x49, 0xa2, 0xa1, 0x7e, 0x72, 0x7e, 0x66, 0x1e, 0x44, 0x5e, 0xa9, 0x9f, 0x91, 0x8b, 0xdf, 0x15, - 0x66, 0x93, 0x23, 0xd8, 0x22, 0x21, 0x09, 0x2e, 0xf6, 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0x62, - 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x18, 0x57, 0x28, 0x89, 0x8b, 0x0d, 0xe2, 0x18, 0x09, - 0x26, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x49, 0x3d, 0x88, 0xf1, 0x7a, 0x20, 0xe3, 0xf5, 0xa0, 0xc6, - 0xeb, 0x39, 0xe7, 0x67, 0xe6, 0x39, 0xe9, 0x9f, 0xb8, 0x27, 0xcf, 0xd0, 0x74, 0x5f, 0x5e, 0x3d, - 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0xea, 0x16, 0x08, 0xa5, 0x5b, - 0x9c, 0x92, 0xad, 0x5f, 0x52, 0x59, 0x90, 0x5a, 0x0c, 0xd6, 0x10, 0x04, 0x35, 0xd9, 0xc9, 0xe5, - 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, - 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xb4, 0x90, 0x8c, 0x82, 0x85, 0x12, - 0x8c, 0xae, 0x80, 0xb3, 0xc0, 0x46, 0x26, 0xb1, 0x81, 0xbd, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, - 0xff, 0x20, 0xbe, 0x43, 0xb6, 0x4f, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4b, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0xa9, 0x15, 0xa9, 0x45, 0xc9, 0x99, 0xc5, 0xa9, 0x29, 0xf1, + 0x89, 0xb9, 0xf9, 0xa5, 0x79, 0x25, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0xe2, 0x50, 0x79, + 0x3d, 0x34, 0x5a, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0xac, 0x46, 0x1f, 0xc4, 0x82, 0x28, 0x97, + 0x92, 0x4b, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, + 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0xce, 0xcf, 0xcc, 0x83, 0xc8, 0x2b, 0xf5, 0x33, 0x72, 0xf1, + 0xbb, 0xc2, 0x6c, 0x72, 0x04, 0x5b, 0x24, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, + 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x0a, 0x25, 0x71, 0xb1, 0x41, 0x1c, + 0x23, 0xc1, 0xa4, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xa9, 0x07, 0x31, 0x5e, 0x0f, 0x64, 0xbc, 0x1e, + 0xd4, 0x78, 0x3d, 0xe7, 0xfc, 0xcc, 0x3c, 0x27, 0xfd, 0x13, 0xf7, 0xe4, 0x19, 0x9a, 0xee, 0xcb, + 0xab, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0xdd, 0x02, 0xa1, + 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0xc1, 0x1a, 0x82, 0xa0, 0x26, 0x3b, + 0xb9, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, + 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x16, 0x92, 0x51, 0xe8, + 0xa1, 0x55, 0x01, 0x67, 0x81, 0x8d, 0x4c, 0x62, 0x03, 0x7b, 0xcf, 0x18, 0x10, 0x00, 0x00, 0xff, + 0xff, 0x9e, 0xd7, 0x00, 0x34, 0x57, 0x01, 0x00, 0x00, } func (m *ExercisedAmount) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/genesis.pb.go b/x/gitopia/types/genesis.pb.go index b057009b..6241ef04 100644 --- a/x/gitopia/types/genesis.pb.go +++ b/x/gitopia/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/genesis.proto +// source: gitopia/gitopia/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -64,7 +64,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_fe28ed7a80acf9ab, []int{0} + return fileDescriptor_bf4bc08c97d29141, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -314,58 +314,59 @@ func init() { proto.RegisterType((*GenesisState)(nil), "gitopia.gitopia.gitopia.GenesisState") } -func init() { proto.RegisterFile("gitopia/genesis.proto", fileDescriptor_fe28ed7a80acf9ab) } +func init() { proto.RegisterFile("gitopia/gitopia/genesis.proto", fileDescriptor_bf4bc08c97d29141) } -var fileDescriptor_fe28ed7a80acf9ab = []byte{ - // 762 bytes of a gzipped FileDescriptorProto +var fileDescriptor_bf4bc08c97d29141 = []byte{ + // 771 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x96, 0xdd, 0x4e, 0x13, 0x41, - 0x14, 0xc7, 0x5b, 0x41, 0x3e, 0xa6, 0x7c, 0x0e, 0x20, 0xa5, 0xc2, 0xd2, 0xa0, 0x17, 0x0d, 0x17, - 0x25, 0xc1, 0x5b, 0x8d, 0xb1, 0x40, 0xd4, 0xa8, 0x89, 0x56, 0x8c, 0x89, 0x37, 0x3a, 0x6d, 0xc7, - 0x65, 0x03, 0xdb, 0xa9, 0x3b, 0xb3, 0x11, 0xde, 0xc2, 0xc7, 0xe2, 0x92, 0x4b, 0xaf, 0x8c, 0x81, - 0xf8, 0x1e, 0x66, 0xce, 0x99, 0x8f, 0x65, 0x61, 0xd9, 0x1b, 0x3a, 0xf3, 0xdf, 0x73, 0xce, 0x6f, - 0xe6, 0x3f, 0x67, 0x67, 0x21, 0x2b, 0x61, 0xa4, 0xc4, 0x28, 0x62, 0x3b, 0x21, 0x1f, 0x72, 0x19, - 0xc9, 0xf6, 0x28, 0x11, 0x4a, 0xd0, 0x55, 0x23, 0xb7, 0x73, 0xbf, 0x0d, 0x6a, 0xe3, 0x15, 0x93, - 0xc7, 0x18, 0xdc, 0x58, 0xb6, 0x5a, 0x2f, 0x61, 0xc3, 0xfe, 0x91, 0x51, 0x17, 0x7d, 0x64, 0x98, - 0x0f, 0x8c, 0x79, 0xdc, 0xe3, 0xc9, 0x8d, 0x74, 0x91, 0x0e, 0xd5, 0x99, 0x53, 0x45, 0x28, 0x60, - 0xb8, 0xa3, 0x47, 0x46, 0x75, 0xcb, 0x4d, 0xf8, 0x09, 0x67, 0x92, 0x1b, 0x79, 0xcd, 0xca, 0xa3, - 0xf4, 0xe4, 0xa4, 0xcb, 0x7f, 0xa4, 0x5c, 0xaa, 0xfc, 0x32, 0x06, 0xec, 0x46, 0x91, 0xbe, 0x88, - 0x63, 0x3e, 0xb4, 0x91, 0x4b, 0x56, 0x8e, 0xa4, 0x4c, 0x6d, 0xe5, 0xba, 0x07, 0x8e, 0x84, 0x8c, - 0x94, 0x48, 0xec, 0x02, 0x9d, 0x13, 0xa9, 0x74, 0x5b, 0x71, 0x25, 0x7e, 0x1e, 0x09, 0xeb, 0xa5, - 0xdf, 0xdf, 0x88, 0x25, 0x2c, 0xb6, 0x6a, 0x60, 0x55, 0x7e, 0xca, 0x93, 0x7e, 0x24, 0xf9, 0xe0, - 0x2b, 0x8b, 0xb5, 0x01, 0xf8, 0x7c, 0xeb, 0xdf, 0x2c, 0x99, 0x79, 0x89, 0x67, 0xf2, 0x51, 0x31, - 0xc5, 0xe9, 0x37, 0xb2, 0xe4, 0x42, 0x5f, 0x40, 0xe4, 0xdb, 0x48, 0xaa, 0x7a, 0xd0, 0x1c, 0x6b, - 0xd5, 0x76, 0x5b, 0xed, 0x82, 0x03, 0x6b, 0x1f, 0x5c, 0xcf, 0xe9, 0x8c, 0x9f, 0xff, 0xd9, 0xac, - 0x74, 0x6f, 0x2b, 0x45, 0x77, 0xc9, 0x72, 0x4e, 0xde, 0xd3, 0x7f, 0xea, 0x9b, 0xcd, 0x6a, 0x6b, - 0xbc, 0x7b, 0xeb, 0x33, 0xfa, 0x8c, 0x4c, 0xe0, 0xb6, 0xea, 0x1b, 0xcd, 0x6a, 0xab, 0xb6, 0xbb, - 0x59, 0xb8, 0x90, 0xf7, 0x10, 0x66, 0xf8, 0x26, 0x89, 0x1e, 0x10, 0x82, 0xa7, 0x0e, 0x7b, 0x79, - 0x08, 0x7b, 0x29, 0x2e, 0xd1, 0x81, 0x50, 0x53, 0x22, 0x93, 0x48, 0x9b, 0xa4, 0x86, 0x33, 0x5c, - 0xf0, 0x3a, 0x2c, 0x38, 0x2b, 0xd1, 0x57, 0xa4, 0xa6, 0xcf, 0x69, 0x9f, 0x09, 0x20, 0xad, 0x01, - 0xa9, 0x59, 0x48, 0xfa, 0x84, 0xb1, 0x06, 0x95, 0x4d, 0xa5, 0xdf, 0xc9, 0x4a, 0x8f, 0x49, 0xde, - 0x75, 0xfd, 0xf0, 0x86, 0xe3, 0xea, 0x1b, 0x50, 0x73, 0xbb, 0x78, 0xf5, 0xf9, 0x2c, 0x53, 0xfd, - 0xf6, 0x72, 0xda, 0x1a, 0x7c, 0x4d, 0xa0, 0xf8, 0x6a, 0x89, 0x35, 0xef, 0x20, 0xd4, 0x5a, 0xe3, - 0x13, 0xb5, 0x35, 0x38, 0x43, 0x6b, 0xea, 0x68, 0x4d, 0x46, 0xa2, 0x4f, 0xc9, 0xa4, 0x62, 0x21, - 0x50, 0x56, 0x80, 0xb2, 0x5e, 0x48, 0x39, 0x64, 0xa1, 0x41, 0xd8, 0x14, 0xda, 0x20, 0x53, 0x8a, - 0x85, 0x58, 0xfc, 0x01, 0x14, 0x77, 0x73, 0x38, 0x5d, 0xb8, 0x12, 0xa0, 0xf8, 0x52, 0xd9, 0xe9, - 0x42, 0xa8, 0x3b, 0x5d, 0x97, 0x08, 0xa7, 0x0b, 0x33, 0xa4, 0x2c, 0x9b, 0xd3, 0xf5, 0x12, 0x7d, - 0xae, 0x17, 0x21, 0x8f, 0x01, 0xb3, 0x08, 0x98, 0x8d, 0x3b, 0xf6, 0x20, 0x8f, 0x0d, 0xc4, 0x25, - 0xd1, 0x75, 0x32, 0xad, 0xc7, 0x08, 0xa0, 0x00, 0xf0, 0x82, 0x6e, 0x1e, 0x73, 0xdf, 0x00, 0x61, - 0xbe, 0xa4, 0x79, 0xba, 0x18, 0x6b, 0x9b, 0x27, 0x93, 0x4a, 0xb7, 0xc8, 0x8c, 0x99, 0x22, 0x6a, - 0x01, 0x50, 0xd7, 0x34, 0x7a, 0x48, 0xe6, 0x33, 0xd7, 0x18, 0x10, 0x67, 0x81, 0xf8, 0xb8, 0xf8, - 0xdd, 0xf2, 0xf1, 0x86, 0x9a, 0x2f, 0x41, 0xb7, 0xc9, 0x42, 0x46, 0x42, 0xfa, 0x1c, 0xd0, 0x6f, - 0xe8, 0xba, 0x23, 0x06, 0xe6, 0x45, 0xa9, 0x95, 0x74, 0x84, 0x7f, 0x49, 0x6c, 0x8a, 0xee, 0x88, - 0x01, 0x13, 0x48, 0x98, 0xc1, 0x8e, 0xb0, 0x73, 0xed, 0xa4, 0xb9, 0x74, 0xa1, 0xfa, 0x74, 0x89, - 0x93, 0x7b, 0x18, 0x6b, 0x9d, 0xcc, 0xa4, 0x6a, 0x27, 0xcd, 0x14, 0x49, 0x04, 0x9d, 0xcc, 0x6a, - 0xb4, 0x43, 0xa6, 0xe1, 0x2e, 0x07, 0xd6, 0x24, 0xb0, 0x82, 0x42, 0xd6, 0x6b, 0x1d, 0x69, 0x48, - 0x3e, 0x8d, 0x06, 0x84, 0xc0, 0x04, 0x29, 0x53, 0x40, 0xc9, 0x28, 0xf4, 0x03, 0x99, 0xf3, 0x9f, - 0x06, 0x00, 0xdd, 0x07, 0xd0, 0xa3, 0x3b, 0xda, 0xc3, 0x86, 0x1b, 0x5a, 0xae, 0x00, 0x6d, 0x91, - 0x79, 0xaf, 0x20, 0x77, 0x02, 0xb8, 0x79, 0x59, 0xf7, 0xbd, 0xbe, 0x9a, 0x00, 0x3b, 0x56, 0xd2, - 0xf7, 0xfa, 0x4a, 0xb3, 0x7d, 0x6f, 0x93, 0x74, 0xdf, 0xeb, 0x31, 0x42, 0xc6, 0xb1, 0xef, 0x9d, - 0xa0, 0xfd, 0x83, 0x0f, 0x19, 0xd4, 0xaf, 0x96, 0xf8, 0xf7, 0x59, 0x47, 0x5a, 0xff, 0x5c, 0x9a, - 0xf6, 0x0f, 0x26, 0x88, 0xb8, 0x87, 0xfe, 0x79, 0xa5, 0xb3, 0x7f, 0x7e, 0x19, 0x54, 0x2f, 0x2e, - 0x83, 0xea, 0xdf, 0xcb, 0xa0, 0xfa, 0xeb, 0x2a, 0xa8, 0x5c, 0x5c, 0x05, 0x95, 0xdf, 0x57, 0x41, - 0xe5, 0xcb, 0x76, 0x18, 0xa9, 0xa3, 0xb4, 0xd7, 0xee, 0x8b, 0x78, 0xc7, 0xfd, 0x97, 0x62, 0x7e, - 0x4f, 0xdd, 0x48, 0x9d, 0x8d, 0xb8, 0xec, 0x4d, 0xc0, 0x47, 0xf3, 0xc9, 0xff, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x72, 0x6e, 0xdb, 0x31, 0xcf, 0x08, 0x00, 0x00, + 0x14, 0xc7, 0x5b, 0x41, 0x3e, 0xa6, 0x7c, 0x39, 0x80, 0x94, 0x52, 0x96, 0x8a, 0xc6, 0x34, 0x5c, + 0x94, 0x04, 0x6f, 0x35, 0xc6, 0x02, 0x51, 0xa3, 0x26, 0x5a, 0x31, 0x26, 0xde, 0xe8, 0xb4, 0x1d, + 0x97, 0x0d, 0x6c, 0xa7, 0xee, 0x6c, 0x23, 0xbc, 0x85, 0x8f, 0xc5, 0x25, 0x97, 0x5e, 0x19, 0x03, + 0xf1, 0x3d, 0xcc, 0x9c, 0x33, 0xb3, 0xbb, 0xcc, 0x76, 0xd8, 0x1b, 0xba, 0x73, 0xe6, 0xfc, 0xcf, + 0x6f, 0xe6, 0x3f, 0x67, 0x67, 0x21, 0x9b, 0x7e, 0x10, 0x8b, 0x61, 0xc0, 0x76, 0x93, 0x5f, 0x3e, + 0xe0, 0x32, 0x90, 0xad, 0x61, 0x24, 0x62, 0x41, 0xd7, 0x74, 0xb8, 0x65, 0xfd, 0xd6, 0x6a, 0xb6, + 0x2e, 0x66, 0xf2, 0x04, 0x45, 0xb5, 0xba, 0x3d, 0xd7, 0x8d, 0xd8, 0xa0, 0x77, 0xac, 0x67, 0xd7, + 0xf3, 0x4a, 0xdf, 0x25, 0x0c, 0x79, 0xd8, 0xe5, 0x91, 0xb3, 0xac, 0x18, 0x0d, 0xe2, 0x73, 0x3d, + 0xbb, 0xe2, 0x0b, 0x5f, 0xc0, 0xe3, 0xae, 0x7a, 0xd2, 0xd1, 0xdc, 0xf6, 0x22, 0x7e, 0xca, 0x99, + 0xe4, 0x7a, 0xfa, 0x81, 0x3d, 0x3d, 0x1c, 0x9d, 0x9e, 0x76, 0xf8, 0x8f, 0x11, 0x97, 0xb1, 0x6b, + 0xb9, 0x7d, 0xe6, 0x2c, 0xde, 0x13, 0x61, 0xc8, 0x07, 0x46, 0xb9, 0x61, 0x4f, 0x07, 0x52, 0x8e, + 0x0c, 0xb9, 0x91, 0x5f, 0xd8, 0x50, 0xc8, 0x20, 0x16, 0x91, 0xd9, 0x50, 0xce, 0xe1, 0x91, 0x4c, + 0xac, 0xc8, 0x95, 0xfe, 0x79, 0x2c, 0xcc, 0x99, 0xe5, 0x7d, 0x1a, 0xb2, 0x88, 0x85, 0x66, 0xf6, + 0xb1, 0x3d, 0xcb, 0xcf, 0x78, 0xd4, 0x0b, 0x24, 0xef, 0x7f, 0x65, 0xa1, 0x32, 0x14, 0xf3, 0xb6, + 0xff, 0xcd, 0x93, 0xb9, 0x97, 0xd8, 0x0b, 0x1f, 0x63, 0x16, 0x73, 0xfa, 0x8d, 0x2c, 0x27, 0xa9, + 0x2f, 0x20, 0xf3, 0x6d, 0x20, 0xe3, 0xaa, 0xd7, 0x98, 0x68, 0x56, 0xf6, 0x9a, 0x2d, 0x47, 0xa3, + 0xb4, 0x0e, 0x6f, 0x6a, 0xda, 0x93, 0x17, 0x7f, 0xb6, 0x4a, 0x9d, 0x71, 0xa5, 0xe8, 0x1e, 0x59, + 0xb1, 0xc2, 0xfb, 0xea, 0x4f, 0x75, 0xab, 0x51, 0x6e, 0x4e, 0x76, 0xc6, 0xce, 0xd1, 0x67, 0x64, + 0x0a, 0xb7, 0x57, 0xdd, 0x6c, 0x94, 0x9b, 0x95, 0xbd, 0x2d, 0xe7, 0x42, 0xde, 0x43, 0x9a, 0xe6, + 0x6b, 0x11, 0x3d, 0x24, 0x04, 0xbb, 0x08, 0xf6, 0xb2, 0x01, 0x7b, 0x71, 0x97, 0x68, 0x43, 0xaa, + 0x2e, 0x91, 0x11, 0xd2, 0x06, 0xa9, 0xe0, 0x08, 0x17, 0x5c, 0x87, 0x05, 0x67, 0x43, 0xf4, 0x15, + 0xa9, 0xa8, 0xf3, 0x3b, 0x60, 0x02, 0x48, 0xeb, 0x40, 0x6a, 0x38, 0x49, 0x9f, 0x30, 0x57, 0xa3, + 0xb2, 0x52, 0xfa, 0x9d, 0xac, 0x76, 0x99, 0xe4, 0x9d, 0xa4, 0x5f, 0xde, 0x70, 0x5c, 0x7d, 0x0d, + 0x6a, 0xee, 0xb8, 0x57, 0x6f, 0xab, 0x74, 0xf5, 0xf1, 0xe5, 0x94, 0x35, 0xf8, 0xfa, 0x41, 0xf1, + 0xb5, 0x02, 0x6b, 0xde, 0x41, 0xaa, 0xb1, 0x26, 0x15, 0x2a, 0x6b, 0x70, 0x84, 0xd6, 0x54, 0xd1, + 0x9a, 0x4c, 0x88, 0x3e, 0x25, 0xd3, 0x31, 0xf3, 0x81, 0xb2, 0x0a, 0x94, 0xba, 0x93, 0x72, 0xc4, + 0x7c, 0x8d, 0x30, 0x12, 0x5a, 0x23, 0x33, 0x31, 0xf3, 0xb1, 0xf8, 0x7d, 0x28, 0x9e, 0x8c, 0xe1, + 0x74, 0xe1, 0xea, 0x81, 0xe2, 0xcb, 0x45, 0xa7, 0x0b, 0xa9, 0xc9, 0xe9, 0x26, 0x42, 0x38, 0x5d, + 0x18, 0x21, 0x65, 0x45, 0x9f, 0x6e, 0x1a, 0xa2, 0xcf, 0xd5, 0x22, 0xe4, 0x09, 0x60, 0xee, 0x01, + 0x66, 0xf3, 0x96, 0x3d, 0xc8, 0x13, 0x0d, 0x49, 0x44, 0xb4, 0x4e, 0x66, 0xd5, 0x33, 0x02, 0x28, + 0x00, 0xd2, 0x80, 0x6a, 0x1e, 0x7d, 0x6f, 0x01, 0x61, 0xb1, 0xa0, 0x79, 0x3a, 0x98, 0x6b, 0x9a, + 0x27, 0x23, 0xa5, 0xdb, 0x64, 0x4e, 0x0f, 0x11, 0xb5, 0x04, 0xa8, 0x1b, 0x31, 0x7a, 0x44, 0x16, + 0x33, 0xd7, 0x20, 0x10, 0xe7, 0x81, 0xf8, 0xc8, 0xfd, 0x6e, 0xa5, 0xf9, 0x9a, 0x6a, 0x97, 0xa0, + 0x3b, 0x64, 0x29, 0x13, 0x42, 0xfa, 0x02, 0xd0, 0x73, 0x71, 0xd5, 0x11, 0x7d, 0xfd, 0xa2, 0x54, + 0x0a, 0x3a, 0x22, 0x7d, 0x49, 0x8c, 0x44, 0x75, 0x44, 0x9f, 0x09, 0x24, 0xcc, 0x61, 0x47, 0x98, + 0xb1, 0x72, 0x52, 0x5f, 0xd2, 0x50, 0x7d, 0xb6, 0xc0, 0xc9, 0x7d, 0xcc, 0x35, 0x4e, 0x66, 0xa4, + 0xca, 0x49, 0x3d, 0x44, 0x12, 0x41, 0x27, 0xb3, 0x31, 0xda, 0x26, 0xb3, 0x70, 0xe7, 0x03, 0x6b, + 0x1a, 0x58, 0x9e, 0x93, 0xf5, 0x5a, 0x65, 0x6a, 0x52, 0x2a, 0xa3, 0x1e, 0x21, 0x30, 0x40, 0xca, + 0x0c, 0x50, 0x32, 0x11, 0xfa, 0x81, 0x2c, 0xa4, 0x9f, 0x0e, 0x00, 0xdd, 0x05, 0xd0, 0xc3, 0x5b, + 0xda, 0xc3, 0xa4, 0x6b, 0x9a, 0x55, 0x80, 0x36, 0xc9, 0x62, 0x1a, 0x41, 0xee, 0x14, 0x70, 0xed, + 0xb0, 0xea, 0x7b, 0x75, 0x35, 0x01, 0x76, 0xa2, 0xa0, 0xef, 0xd5, 0x95, 0x66, 0xfa, 0xde, 0x88, + 0x54, 0xdf, 0xab, 0x67, 0x84, 0x4c, 0x62, 0xdf, 0x27, 0x01, 0xe5, 0x1f, 0x7c, 0xd8, 0xa0, 0x7e, + 0xb9, 0xc0, 0xbf, 0xcf, 0x2a, 0xd3, 0xf8, 0x97, 0xc8, 0x94, 0x7f, 0x30, 0x40, 0xc4, 0x1d, 0xf4, + 0x2f, 0x8d, 0xb4, 0x0f, 0x2e, 0xae, 0xbc, 0xf2, 0xe5, 0x95, 0x57, 0xfe, 0x7b, 0xe5, 0x95, 0x7f, + 0x5d, 0x7b, 0xa5, 0xcb, 0x6b, 0xaf, 0xf4, 0xfb, 0xda, 0x2b, 0x7d, 0xd9, 0xf1, 0x83, 0xf8, 0x78, + 0xd4, 0x6d, 0xf5, 0x44, 0xb8, 0x6b, 0x7f, 0x34, 0xcf, 0xd2, 0xff, 0x5e, 0xce, 0x87, 0x5c, 0x76, + 0xa7, 0xe0, 0xa3, 0xf9, 0xe4, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd4, 0xaa, 0x58, 0x25, 0x4f, + 0x09, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/issue.pb.go b/x/gitopia/types/issue.pb.go index fb7f6aa5..927cf027 100644 --- a/x/gitopia/types/issue.pb.go +++ b/x/gitopia/types/issue.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/issue.proto +// source: gitopia/gitopia/issue.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -45,7 +45,7 @@ func (x Issue_State) String() string { } func (Issue_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_4cf64e56e9098bda, []int{0, 0} + return fileDescriptor_b1597db1c2e3956f, []int{0, 0} } type Issue struct { @@ -72,7 +72,7 @@ func (m *Issue) Reset() { *m = Issue{} } func (m *Issue) String() string { return proto.CompactTextString(m) } func (*Issue) ProtoMessage() {} func (*Issue) Descriptor() ([]byte, []int) { - return fileDescriptor_4cf64e56e9098bda, []int{0} + return fileDescriptor_b1597db1c2e3956f, []int{0} } func (m *Issue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -225,39 +225,39 @@ func init() { proto.RegisterType((*Issue)(nil), "gitopia.gitopia.gitopia.Issue") } -func init() { proto.RegisterFile("gitopia/issue.proto", fileDescriptor_4cf64e56e9098bda) } +func init() { proto.RegisterFile("gitopia/gitopia/issue.proto", fileDescriptor_b1597db1c2e3956f) } -var fileDescriptor_4cf64e56e9098bda = []byte{ - // 451 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x52, 0x4d, 0x6f, 0xd3, 0x40, - 0x10, 0xcd, 0xc6, 0x76, 0x9a, 0x4c, 0xd2, 0x10, 0x96, 0x0a, 0x46, 0x11, 0x58, 0x56, 0x54, 0x09, - 0x8b, 0x83, 0x23, 0x95, 0x1b, 0x37, 0xfa, 0x71, 0x88, 0x40, 0xb4, 0x72, 0x6f, 0xdc, 0x1c, 0x7b, - 0xe5, 0xae, 0xe4, 0x64, 0x8d, 0x77, 0x2d, 0xc8, 0xbf, 0xe0, 0x67, 0x21, 0x71, 0xe9, 0x91, 0x23, - 0x4a, 0xfe, 0x08, 0xda, 0x75, 0x6c, 0x93, 0x4a, 0x39, 0xed, 0xbc, 0xf7, 0xe6, 0x3d, 0x8f, 0x77, - 0x07, 0x5e, 0xa4, 0x5c, 0x89, 0x9c, 0x47, 0x73, 0x2e, 0x65, 0xc9, 0x82, 0xbc, 0x10, 0x4a, 0xd0, - 0x57, 0x7b, 0x32, 0x78, 0x72, 0x4e, 0xcf, 0x52, 0x91, 0x0a, 0xd3, 0x33, 0xd7, 0x55, 0xd5, 0x3e, - 0xc5, 0x3a, 0xa3, 0x60, 0xb9, 0x90, 0x5c, 0x89, 0x62, 0x53, 0x29, 0xb3, 0xdf, 0x36, 0x38, 0x0b, - 0x1d, 0x4c, 0x11, 0x4e, 0xe2, 0x82, 0x45, 0x4a, 0x14, 0x48, 0x3c, 0xe2, 0x0f, 0xc2, 0x1a, 0xd2, - 0x31, 0x74, 0x79, 0x82, 0x5d, 0x8f, 0xf8, 0x76, 0xd8, 0xe5, 0x09, 0x9d, 0x80, 0xc5, 0x79, 0x82, - 0x96, 0x21, 0x74, 0x49, 0xcf, 0xc0, 0x51, 0x5c, 0x65, 0x0c, 0x6d, 0xe3, 0xac, 0x00, 0xfd, 0x00, - 0x8e, 0x54, 0x91, 0x62, 0xe8, 0x78, 0xc4, 0x1f, 0x5f, 0x9c, 0x07, 0x47, 0x86, 0x0e, 0xcc, 0x00, - 0xc1, 0xbd, 0xee, 0x0d, 0x2b, 0x0b, 0xf5, 0x60, 0x98, 0x30, 0x19, 0x17, 0x3c, 0x57, 0x5c, 0xac, - 0xb1, 0x67, 0x72, 0xff, 0xa7, 0xe8, 0x39, 0x9c, 0xc6, 0x62, 0xb5, 0x62, 0x6b, 0x25, 0xaf, 0x44, - 0xb9, 0x56, 0x78, 0x62, 0xe6, 0x39, 0x24, 0xe9, 0x27, 0x18, 0xe5, 0x65, 0x96, 0x85, 0xec, 0x5b, - 0xc9, 0xa4, 0x92, 0xd8, 0xf7, 0x2c, 0x7f, 0x78, 0xf1, 0xf6, 0xe8, 0x28, 0x77, 0x6d, 0xf3, 0x82, - 0x27, 0xe1, 0x81, 0x99, 0xce, 0x60, 0xd4, 0x5e, 0xe0, 0x22, 0xc1, 0x81, 0xf9, 0xe2, 0x01, 0x47, - 0x5f, 0x42, 0x2f, 0x8b, 0x96, 0x2c, 0x93, 0x08, 0x9e, 0xe5, 0xdb, 0xe1, 0x1e, 0x69, 0xfe, 0x3b, - 0xe3, 0xe9, 0x83, 0xc2, 0xa1, 0x71, 0xed, 0x11, 0x7d, 0x0d, 0x83, 0x48, 0x4a, 0x9e, 0xae, 0x19, - 0x93, 0x38, 0xf2, 0x2c, 0x7f, 0x10, 0xb6, 0x04, 0x9d, 0x42, 0x7f, 0xa9, 0xff, 0x83, 0x33, 0x89, - 0xa7, 0x26, 0xaf, 0xc1, 0xda, 0x69, 0x5e, 0x88, 0x25, 0x1f, 0x15, 0x8e, 0x3d, 0xe2, 0x5b, 0x61, - 0x4b, 0x68, 0xb5, 0xcc, 0x93, 0xbd, 0xfa, 0xac, 0x52, 0x1b, 0x42, 0xe7, 0xc6, 0x99, 0x90, 0x46, - 0x9c, 0x18, 0xb1, 0xc1, 0xad, 0x76, 0xb9, 0xc1, 0xe7, 0xe6, 0xde, 0x1b, 0x3c, 0x7b, 0x03, 0x8e, - 0x79, 0x26, 0xda, 0x07, 0xfb, 0xf6, 0xee, 0xe6, 0xcb, 0xa4, 0x43, 0x01, 0x7a, 0x57, 0x9f, 0x6f, - 0xef, 0x6f, 0xae, 0x27, 0xe4, 0xf2, 0xfa, 0xd7, 0xd6, 0x25, 0x8f, 0x5b, 0x97, 0xfc, 0xdd, 0xba, - 0xe4, 0xe7, 0xce, 0xed, 0x3c, 0xee, 0xdc, 0xce, 0x9f, 0x9d, 0xdb, 0xf9, 0xfa, 0x2e, 0xe5, 0xea, - 0xa1, 0x5c, 0x06, 0xb1, 0x58, 0xcd, 0xeb, 0x65, 0xac, 0xcf, 0x1f, 0x4d, 0xa5, 0x36, 0x39, 0x93, - 0xcb, 0x9e, 0x59, 0xcd, 0xf7, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x93, 0x53, 0xb7, 0xfa, - 0x02, 0x00, 0x00, +var fileDescriptor_b1597db1c2e3956f = []byte{ + // 450 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x52, 0x4f, 0x6f, 0xd3, 0x30, + 0x14, 0xaf, 0x9b, 0xa4, 0x6b, 0x5f, 0xbb, 0x52, 0xac, 0x09, 0xac, 0x02, 0x91, 0x55, 0x4d, 0x22, + 0xe2, 0x90, 0x4a, 0xe3, 0xc6, 0x8d, 0xfd, 0x39, 0x54, 0x20, 0x36, 0x65, 0x37, 0x6e, 0x69, 0x6c, + 0x65, 0x96, 0xd2, 0x3a, 0xc4, 0x8e, 0xa0, 0xdf, 0x82, 0x8f, 0x85, 0xc4, 0x65, 0x47, 0x8e, 0xa8, + 0xfd, 0x22, 0xc8, 0x4e, 0x96, 0xd0, 0x4a, 0x3d, 0xf9, 0xfd, 0xfe, 0x3d, 0x3f, 0xff, 0x81, 0x57, + 0xa9, 0xd0, 0x32, 0x17, 0xf1, 0xfc, 0x69, 0x15, 0x4a, 0x95, 0x3c, 0xcc, 0x0b, 0xa9, 0x25, 0x7e, + 0x59, 0x93, 0xe1, 0xc1, 0x3a, 0x3d, 0x4b, 0x65, 0x2a, 0xad, 0x67, 0x6e, 0xaa, 0xca, 0x3e, 0xa5, + 0x87, 0xbd, 0x0a, 0x9e, 0x4b, 0x25, 0xb4, 0x2c, 0x36, 0x95, 0x63, 0xf6, 0xdb, 0x05, 0x6f, 0x61, + 0x36, 0xc0, 0x04, 0x4e, 0x92, 0x82, 0xc7, 0x5a, 0x16, 0x04, 0x51, 0x14, 0x0c, 0xa2, 0x27, 0x88, + 0xc7, 0xd0, 0x15, 0x8c, 0x74, 0x29, 0x0a, 0xdc, 0xa8, 0x2b, 0x18, 0x9e, 0x80, 0x23, 0x04, 0x23, + 0x8e, 0x25, 0x4c, 0x89, 0xcf, 0xc0, 0xd3, 0x42, 0x67, 0x9c, 0xb8, 0x36, 0x59, 0x01, 0xfc, 0x01, + 0x3c, 0xa5, 0x63, 0xcd, 0x89, 0x47, 0x51, 0x30, 0xbe, 0x38, 0x0f, 0x8f, 0x0c, 0x1f, 0xda, 0x01, + 0xc2, 0x7b, 0xe3, 0x8d, 0xaa, 0x08, 0xa6, 0x30, 0x64, 0x5c, 0x25, 0x85, 0xc8, 0xb5, 0x90, 0x6b, + 0xd2, 0xb3, 0x7d, 0xff, 0xa7, 0xf0, 0x39, 0x9c, 0x26, 0x72, 0xb5, 0xe2, 0x6b, 0xad, 0xae, 0x64, + 0xb9, 0xd6, 0xe4, 0xc4, 0xce, 0xb3, 0x4f, 0xe2, 0x4f, 0x30, 0xca, 0xcb, 0x2c, 0x8b, 0xf8, 0xb7, + 0x92, 0x2b, 0xad, 0x48, 0x9f, 0x3a, 0xc1, 0xf0, 0xe2, 0xed, 0xd1, 0x51, 0xee, 0x5a, 0xf3, 0x42, + 0xb0, 0x68, 0x2f, 0x8c, 0x67, 0x30, 0x6a, 0x2f, 0x70, 0xc1, 0xc8, 0xc0, 0xee, 0xb8, 0xc7, 0xe1, + 0x17, 0xd0, 0xcb, 0xe2, 0x25, 0xcf, 0x14, 0x01, 0xea, 0x04, 0x6e, 0x54, 0x23, 0xc3, 0x7f, 0xe7, + 0x22, 0x7d, 0xd0, 0x64, 0x68, 0x53, 0x35, 0xc2, 0xaf, 0x61, 0x10, 0x2b, 0x25, 0xd2, 0x35, 0xe7, + 0x8a, 0x8c, 0xa8, 0x13, 0x0c, 0xa2, 0x96, 0xc0, 0x53, 0xe8, 0x2f, 0xcd, 0x39, 0x04, 0x57, 0xe4, + 0xd4, 0xf6, 0x6b, 0xb0, 0x49, 0xda, 0x17, 0xe2, 0xec, 0xa3, 0x26, 0x63, 0x8a, 0x02, 0x27, 0x6a, + 0x09, 0xa3, 0x96, 0x39, 0xab, 0xd5, 0x67, 0x95, 0xda, 0x10, 0xa6, 0x6f, 0x92, 0x49, 0x65, 0xc5, + 0x89, 0x15, 0x1b, 0xdc, 0x6a, 0x97, 0x1b, 0xf2, 0xdc, 0xde, 0x7b, 0x83, 0x67, 0x6f, 0xc0, 0xb3, + 0xcf, 0x84, 0xfb, 0xe0, 0xde, 0xde, 0xdd, 0x7c, 0x99, 0x74, 0x30, 0x40, 0xef, 0xea, 0xf3, 0xed, + 0xfd, 0xcd, 0xf5, 0x04, 0x5d, 0x5e, 0xff, 0xda, 0xfa, 0xe8, 0x71, 0xeb, 0xa3, 0xbf, 0x5b, 0x1f, + 0xfd, 0xdc, 0xf9, 0x9d, 0xc7, 0x9d, 0xdf, 0xf9, 0xb3, 0xf3, 0x3b, 0x5f, 0xdf, 0xa5, 0x42, 0x3f, + 0x94, 0xcb, 0x30, 0x91, 0xab, 0xf9, 0xe1, 0xa7, 0xfc, 0xd1, 0x54, 0x7a, 0x93, 0x73, 0xb5, 0xec, + 0xd9, 0xaf, 0xf9, 0xfe, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3c, 0xf1, 0xbe, 0xe3, 0x0a, 0x03, + 0x00, 0x00, } func (m *Issue) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/member.pb.go b/x/gitopia/types/member.pb.go index 295a3b60..c80a7e91 100644 --- a/x/gitopia/types/member.pb.go +++ b/x/gitopia/types/member.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/member.proto +// source: gitopia/gitopia/member.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -44,7 +44,7 @@ func (x MemberRole) String() string { } func (MemberRole) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_eb50d9e34f0ece82, []int{0} + return fileDescriptor_38f2f3c327861373, []int{0} } type Member struct { @@ -58,7 +58,7 @@ func (m *Member) Reset() { *m = Member{} } func (m *Member) String() string { return proto.CompactTextString(m) } func (*Member) ProtoMessage() {} func (*Member) Descriptor() ([]byte, []int) { - return fileDescriptor_eb50d9e34f0ece82, []int{0} + return fileDescriptor_38f2f3c327861373, []int{0} } func (m *Member) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -120,24 +120,24 @@ func init() { proto.RegisterType((*Member)(nil), "gitopia.gitopia.gitopia.Member") } -func init() { proto.RegisterFile("gitopia/member.proto", fileDescriptor_eb50d9e34f0ece82) } +func init() { proto.RegisterFile("gitopia/gitopia/member.proto", fileDescriptor_38f2f3c327861373) } -var fileDescriptor_eb50d9e34f0ece82 = []byte{ +var fileDescriptor_38f2f3c327861373 = []byte{ // 227 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0xcf, 0x4d, 0xcd, 0x4d, 0x4a, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x87, 0x8a, 0xea, 0xa1, 0xd1, 0x4a, 0xdd, 0x8c, 0x5c, 0x6c, 0xbe, 0x60, 0x95, 0x42, - 0x7c, 0x5c, 0x4c, 0x99, 0x29, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x4c, 0x99, 0x29, 0x42, - 0x12, 0x5c, 0xec, 0x89, 0x29, 0x29, 0x45, 0xa9, 0xc5, 0xc5, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0x9c, - 0x41, 0x30, 0xae, 0x90, 0x1c, 0x17, 0x57, 0x4a, 0x62, 0xbe, 0x23, 0x54, 0x92, 0x19, 0x2c, 0x89, - 0x24, 0x22, 0x64, 0xce, 0xc5, 0x52, 0x94, 0x9f, 0x93, 0x2a, 0xc1, 0xa2, 0xc0, 0xa8, 0xc1, 0x67, - 0xa4, 0xac, 0x87, 0xc3, 0x72, 0x3d, 0x88, 0xc5, 0x41, 0xf9, 0x39, 0xa9, 0x41, 0x60, 0x0d, 0x5a, - 0xca, 0x5c, 0x5c, 0x08, 0x31, 0x21, 0x2e, 0x2e, 0x36, 0x5f, 0x57, 0x5f, 0x27, 0xd7, 0x20, 0x01, - 0x06, 0x21, 0x4e, 0x2e, 0x56, 0xff, 0x70, 0x3f, 0xd7, 0x20, 0x01, 0x46, 0x27, 0x97, 0x13, 0x8f, - 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, - 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4a, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, - 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x05, 0x03, 0x8c, 0xae, 0x80, 0xb3, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, - 0x93, 0xd8, 0xc0, 0x01, 0x63, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x6d, 0x78, 0x5d, 0x30, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0xb9, 0xa9, 0xb9, 0x49, 0xa9, 0x45, 0x7a, 0x05, 0x45, 0xf9, + 0x25, 0xf9, 0x42, 0xe2, 0x50, 0x51, 0x3d, 0x34, 0x5a, 0xa9, 0x9b, 0x91, 0x8b, 0xcd, 0x17, 0xac, + 0x52, 0x88, 0x8f, 0x8b, 0x29, 0x33, 0x45, 0x82, 0x51, 0x81, 0x51, 0x83, 0x25, 0x88, 0x29, 0x33, + 0x45, 0x48, 0x82, 0x8b, 0x3d, 0x31, 0x25, 0xa5, 0x28, 0xb5, 0xb8, 0x58, 0x82, 0x49, 0x81, 0x51, + 0x83, 0x33, 0x08, 0xc6, 0x15, 0x92, 0xe3, 0xe2, 0x4a, 0x49, 0xcc, 0x77, 0x84, 0x4a, 0x32, 0x83, + 0x25, 0x91, 0x44, 0x84, 0xcc, 0xb9, 0x58, 0x8a, 0xf2, 0x73, 0x52, 0x25, 0x58, 0x14, 0x18, 0x35, + 0xf8, 0x8c, 0x94, 0xf5, 0x70, 0x58, 0xae, 0x07, 0xb1, 0x38, 0x28, 0x3f, 0x27, 0x35, 0x08, 0xac, + 0x41, 0x4b, 0x99, 0x8b, 0x0b, 0x21, 0x26, 0xc4, 0xc5, 0xc5, 0xe6, 0xeb, 0xea, 0xeb, 0xe4, 0x1a, + 0x24, 0xc0, 0x20, 0xc4, 0xc9, 0xc5, 0xea, 0x1f, 0xee, 0xe7, 0x1a, 0x24, 0xc0, 0xe8, 0xe4, 0x72, + 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, + 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x5a, 0xe9, 0x99, 0x25, 0x19, 0xa5, + 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xe8, 0xc1, 0x51, 0x01, 0x67, 0x95, 0x54, 0x16, 0xa4, 0x16, + 0x27, 0xb1, 0x81, 0x03, 0xc6, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xa7, 0xec, 0x01, 0x2b, 0x38, 0x01, 0x00, 0x00, } diff --git a/x/gitopia/types/params.pb.go b/x/gitopia/types/params.pb.go index a58ef1b6..5a8b68e8 100644 --- a/x/gitopia/types/params.pb.go +++ b/x/gitopia/types/params.pb.go @@ -1,14 +1,14 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/params.proto +// source: gitopia/gitopia/params.proto package types import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -37,7 +37,7 @@ func (m *DistributionProportion) Reset() { *m = DistributionProportion{} func (m *DistributionProportion) String() string { return proto.CompactTextString(m) } func (*DistributionProportion) ProtoMessage() {} func (*DistributionProportion) Descriptor() ([]byte, []int) { - return fileDescriptor_cdae11692a018c3a, []int{0} + return fileDescriptor_6a6ecb9e82fafe65, []int{0} } func (m *DistributionProportion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -82,7 +82,7 @@ func (m *PoolProportions) Reset() { *m = PoolProportions{} } func (m *PoolProportions) String() string { return proto.CompactTextString(m) } func (*PoolProportions) ProtoMessage() {} func (*PoolProportions) Descriptor() ([]byte, []int) { - return fileDescriptor_cdae11692a018c3a, []int{1} + return fileDescriptor_6a6ecb9e82fafe65, []int{1} } func (m *PoolProportions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -138,7 +138,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_cdae11692a018c3a, []int{2} + return fileDescriptor_6a6ecb9e82fafe65, []int{2} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -215,45 +215,45 @@ func init() { proto.RegisterType((*Params)(nil), "gitopia.gitopia.gitopia.Params") } -func init() { proto.RegisterFile("gitopia/params.proto", fileDescriptor_cdae11692a018c3a) } +func init() { proto.RegisterFile("gitopia/gitopia/params.proto", fileDescriptor_6a6ecb9e82fafe65) } -var fileDescriptor_cdae11692a018c3a = []byte{ - // 548 bytes of a gzipped FileDescriptorProto +var fileDescriptor_6a6ecb9e82fafe65 = []byte{ + // 549 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x3d, 0x6f, 0xd3, 0x40, - 0x18, 0x8e, 0x69, 0x08, 0xca, 0x05, 0x91, 0xd4, 0x0d, 0x34, 0x0a, 0x92, 0xaf, 0xba, 0xa1, 0xaa, - 0x10, 0xd8, 0x12, 0x30, 0x75, 0x0c, 0x11, 0x12, 0x5b, 0x64, 0x3a, 0x31, 0x10, 0x39, 0xce, 0xf5, - 0x38, 0x11, 0xe7, 0xac, 0xbb, 0x4b, 0xd5, 0x88, 0x3f, 0xd1, 0x91, 0x91, 0x9d, 0x3f, 0xd2, 0x81, - 0xa1, 0x12, 0x0b, 0x62, 0x30, 0x28, 0xf9, 0x07, 0xfe, 0x05, 0xe8, 0x3e, 0x1c, 0x07, 0xab, 0x55, - 0xa5, 0x4e, 0x77, 0x7e, 0x3f, 0x9e, 0xe7, 0x7d, 0x9f, 0x27, 0x17, 0xd0, 0x25, 0x54, 0xb2, 0x94, - 0x46, 0x41, 0x1a, 0xf1, 0x28, 0x11, 0x7e, 0xca, 0x99, 0x64, 0xee, 0xbe, 0x8d, 0xfa, 0x95, 0xb3, - 0xdf, 0x25, 0x8c, 0x30, 0x5d, 0x13, 0xa8, 0x9b, 0x29, 0xef, 0x43, 0xc2, 0x18, 0x99, 0xe1, 0x40, - 0x7f, 0x4d, 0x16, 0xa7, 0x81, 0xa4, 0x09, 0x16, 0x32, 0x4a, 0x52, 0x53, 0x80, 0xbe, 0x3b, 0xe0, - 0xc9, 0x90, 0x0a, 0xc9, 0xe9, 0x64, 0x21, 0x29, 0x9b, 0x8f, 0x38, 0x4b, 0x19, 0x57, 0x37, 0x37, - 0x06, 0x20, 0xdd, 0x7c, 0xf5, 0x9c, 0x03, 0xe7, 0xa8, 0x39, 0x78, 0x73, 0x99, 0xc1, 0xda, 0xef, - 0x0c, 0x1e, 0x12, 0x2a, 0x3f, 0x2d, 0x26, 0x7e, 0xcc, 0x92, 0x20, 0x66, 0x22, 0x61, 0xc2, 0x1e, - 0x2f, 0xc4, 0xf4, 0x73, 0x20, 0x97, 0x29, 0x16, 0xfe, 0x10, 0xc7, 0x79, 0x06, 0x77, 0x97, 0x51, - 0x32, 0x3b, 0x46, 0x25, 0x12, 0x0a, 0xb7, 0x60, 0xdd, 0xe7, 0xe0, 0x41, 0x34, 0x9d, 0x72, 0x2c, - 0x44, 0xef, 0x9e, 0x66, 0x70, 0xf3, 0x0c, 0x3e, 0x32, 0x3d, 0x36, 0x81, 0xc2, 0xa2, 0x04, 0xfd, - 0x70, 0x40, 0x7b, 0xc4, 0xd8, 0xac, 0x9c, 0x52, 0xb8, 0x31, 0x68, 0xe2, 0x98, 0x89, 0xa5, 0x90, - 0x38, 0xd1, 0x53, 0xb6, 0x5e, 0x06, 0xfe, 0x0d, 0x2a, 0xf9, 0xd7, 0xaf, 0x3a, 0xe8, 0xe6, 0x19, - 0xec, 0x18, 0xd2, 0x0d, 0x16, 0x0a, 0x4b, 0x5c, 0xf7, 0x04, 0xd4, 0x25, 0x8e, 0x12, 0x3d, 0xe3, - 0x1d, 0xf0, 0xdb, 0x79, 0x06, 0x5b, 0x06, 0x5f, 0xc1, 0xa0, 0x50, 0xa3, 0xa1, 0x9f, 0x75, 0xd0, - 0x18, 0x69, 0x77, 0x5d, 0x0e, 0xf6, 0xe6, 0xf8, 0x5c, 0x8e, 0xe9, 0xfc, 0x74, 0x16, 0xa9, 0x9e, - 0xb1, 0x72, 0xca, 0xee, 0xd3, 0xf7, 0x8d, 0x8d, 0x7e, 0x61, 0xa3, 0x7f, 0x52, 0xd8, 0x38, 0x38, - 0x54, 0x8e, 0xe4, 0x19, 0xec, 0x1b, 0xf8, 0x6b, 0x40, 0xd0, 0xc5, 0x1f, 0xe8, 0x84, 0xbb, 0x2a, - 0xf3, 0xae, 0x48, 0xa8, 0x7e, 0x57, 0x82, 0x4e, 0xca, 0xd8, 0x6c, 0x5c, 0xda, 0x21, 0xec, 0x82, - 0x47, 0x37, 0x2e, 0x58, 0x51, 0x7f, 0x00, 0x2d, 0xfd, 0xbe, 0xb5, 0xb9, 0x82, 0x87, 0xc2, 0x76, - 0x5a, 0xf1, 0xeb, 0x0b, 0xe8, 0xa8, 0xe5, 0xff, 0x63, 0xdd, 0x39, 0xd8, 0xb9, 0x8b, 0xac, 0x15, - 0xf2, 0x2a, 0x2c, 0x0a, 0xdb, 0x2a, 0xb4, 0x4d, 0xfe, 0x11, 0x3c, 0x24, 0x78, 0x8e, 0x05, 0x15, - 0x46, 0xdf, 0xfa, 0xad, 0xfa, 0x16, 0x1c, 0x7b, 0x86, 0x63, 0xbb, 0xdb, 0x08, 0xdb, 0xb2, 0x21, - 0x2d, 0xe9, 0x6b, 0x00, 0x08, 0x95, 0x63, 0x81, 0xf9, 0x19, 0xe6, 0xbd, 0xfb, 0xfa, 0x17, 0xfd, - 0xb8, 0x7c, 0x05, 0x65, 0x0e, 0x85, 0x4d, 0x42, 0xe5, 0x7b, 0x7d, 0x77, 0xdf, 0x82, 0x8e, 0x90, - 0x8c, 0x47, 0x04, 0xab, 0xf1, 0xcf, 0xe8, 0x14, 0xf3, 0x5e, 0x43, 0xf7, 0x3e, 0x2d, 0xb7, 0xab, - 0x56, 0xa0, 0xb0, 0x6d, 0x43, 0x23, 0x1b, 0x39, 0xae, 0x7f, 0xfd, 0x06, 0x6b, 0x83, 0xe1, 0xe5, - 0xca, 0x73, 0xae, 0x56, 0x9e, 0xf3, 0x77, 0xe5, 0x39, 0x17, 0x6b, 0xaf, 0x76, 0xb5, 0xf6, 0x6a, - 0xbf, 0xd6, 0x5e, 0xed, 0xc3, 0xb3, 0xad, 0x57, 0x5b, 0xfc, 0xbb, 0x14, 0xe7, 0xf9, 0xe6, 0xa6, - 0x5f, 0xef, 0xa4, 0xa1, 0xb5, 0x78, 0xf5, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xce, 0x94, 0x19, 0x2c, - 0x87, 0x04, 0x00, 0x00, + 0x18, 0x8e, 0x69, 0x28, 0xca, 0x05, 0x91, 0xd4, 0x2d, 0x34, 0x0a, 0xc8, 0x57, 0xdd, 0x50, 0x55, + 0x08, 0x6c, 0x09, 0x98, 0x3a, 0x86, 0x08, 0x89, 0x2d, 0x32, 0x9d, 0x18, 0x88, 0x1c, 0xe7, 0x7a, + 0x9c, 0xb0, 0x73, 0xd6, 0xdd, 0xa5, 0x6a, 0xc4, 0x9f, 0xe8, 0xc8, 0xc8, 0xce, 0x1f, 0xe9, 0xc0, + 0x50, 0x89, 0x05, 0x31, 0x18, 0x94, 0xfc, 0x03, 0xff, 0x02, 0x74, 0x1f, 0x8e, 0x83, 0xd5, 0x0a, + 0xa9, 0xd3, 0x9d, 0xdf, 0x8f, 0xe7, 0x79, 0xdf, 0xe7, 0xc9, 0x05, 0x3c, 0x21, 0x54, 0xb2, 0x8c, + 0x46, 0x41, 0x79, 0x66, 0x11, 0x8f, 0x52, 0xe1, 0x67, 0x9c, 0x49, 0xe6, 0xee, 0xdb, 0xa8, 0x5f, + 0x3b, 0xfb, 0x7b, 0x84, 0x11, 0xa6, 0x6b, 0x02, 0x75, 0x33, 0xe5, 0x7d, 0x48, 0x18, 0x23, 0x09, + 0x0e, 0xf4, 0xd7, 0x64, 0x7e, 0x1a, 0x48, 0x9a, 0x62, 0x21, 0xa3, 0x34, 0x33, 0x05, 0xe8, 0x9b, + 0x03, 0x1e, 0x0d, 0xa9, 0x90, 0x9c, 0x4e, 0xe6, 0x92, 0xb2, 0xd9, 0x88, 0xb3, 0x8c, 0x71, 0x75, + 0x73, 0x63, 0x00, 0xb2, 0xf5, 0x57, 0xcf, 0x39, 0x70, 0x8e, 0x5a, 0x83, 0xd7, 0x97, 0x39, 0x6c, + 0xfc, 0xca, 0xe1, 0x21, 0xa1, 0xf2, 0xe3, 0x7c, 0xe2, 0xc7, 0x2c, 0x0d, 0x62, 0x26, 0x52, 0x26, + 0xec, 0xf1, 0x5c, 0x4c, 0x3f, 0x05, 0x72, 0x91, 0x61, 0xe1, 0x0f, 0x71, 0x5c, 0xe4, 0x70, 0x67, + 0x11, 0xa5, 0xc9, 0x31, 0xaa, 0x90, 0x50, 0xb8, 0x01, 0xeb, 0x3e, 0x03, 0xf7, 0xa2, 0xe9, 0x94, + 0x63, 0x21, 0x7a, 0x77, 0x34, 0x83, 0x5b, 0xe4, 0xf0, 0x81, 0xe9, 0xb1, 0x09, 0x14, 0x96, 0x25, + 0xe8, 0xbb, 0x03, 0x3a, 0x23, 0xc6, 0x92, 0x6a, 0x4a, 0xe1, 0xc6, 0xa0, 0x85, 0x63, 0x26, 0x16, + 0x42, 0xe2, 0x54, 0x4f, 0xd9, 0x7e, 0x11, 0xf8, 0x37, 0xa8, 0xe4, 0x5f, 0xbf, 0xea, 0x60, 0xaf, + 0xc8, 0x61, 0xd7, 0x90, 0xae, 0xb1, 0x50, 0x58, 0xe1, 0xba, 0x27, 0xa0, 0x29, 0x71, 0x94, 0xea, + 0x19, 0x6f, 0x81, 0xdf, 0x29, 0x72, 0xd8, 0x36, 0xf8, 0x0a, 0x06, 0x85, 0x1a, 0x0d, 0xfd, 0x68, + 0x82, 0xed, 0x91, 0x76, 0xd7, 0xe5, 0x60, 0x77, 0x86, 0xcf, 0xe5, 0x98, 0xce, 0x4e, 0x93, 0x48, + 0xf5, 0x8c, 0x95, 0x53, 0x76, 0x9f, 0xbe, 0x6f, 0x6c, 0xf4, 0x4b, 0x1b, 0xfd, 0x93, 0xd2, 0xc6, + 0xc1, 0xa1, 0x72, 0xa4, 0xc8, 0x61, 0xdf, 0xc0, 0x5f, 0x03, 0x82, 0x2e, 0x7e, 0x43, 0x27, 0xdc, + 0x51, 0x99, 0xb7, 0x65, 0x42, 0xf5, 0xbb, 0x12, 0x74, 0x33, 0xc6, 0x92, 0x71, 0x65, 0x87, 0xb0, + 0x0b, 0x1e, 0xdd, 0xb8, 0x60, 0x4d, 0xfd, 0x01, 0xb4, 0xf4, 0xfb, 0xd6, 0xe6, 0x1a, 0x1e, 0x0a, + 0x3b, 0x59, 0xcd, 0xaf, 0xcf, 0xa0, 0xab, 0x96, 0xff, 0x87, 0x75, 0xeb, 0x60, 0xeb, 0x36, 0xb2, + 0xd6, 0xc8, 0xeb, 0xb0, 0x28, 0xec, 0xa8, 0xd0, 0x26, 0xf9, 0x07, 0x70, 0x9f, 0xe0, 0x19, 0x16, + 0x54, 0x18, 0x7d, 0x9b, 0xff, 0xd5, 0xb7, 0xe4, 0xd8, 0x35, 0x1c, 0x9b, 0xdd, 0x46, 0xd8, 0xb6, + 0x0d, 0x69, 0x49, 0x5f, 0x01, 0x40, 0xa8, 0x1c, 0x0b, 0xcc, 0xcf, 0x30, 0xef, 0xdd, 0xd5, 0xbf, + 0xe8, 0x87, 0xd5, 0x2b, 0xa8, 0x72, 0x28, 0x6c, 0x11, 0x2a, 0xdf, 0xe9, 0xbb, 0xfb, 0x06, 0x74, + 0x85, 0x64, 0x3c, 0x22, 0x58, 0x8d, 0x7f, 0x46, 0xa7, 0x98, 0xf7, 0xb6, 0x75, 0xef, 0xe3, 0x6a, + 0xbb, 0x7a, 0x05, 0x0a, 0x3b, 0x36, 0x34, 0xb2, 0x91, 0xe3, 0xe6, 0x97, 0xaf, 0xb0, 0x31, 0x18, + 0x5e, 0x2e, 0x3d, 0xe7, 0x6a, 0xe9, 0x39, 0x7f, 0x96, 0x9e, 0x73, 0xb1, 0xf2, 0x1a, 0x57, 0x2b, + 0xaf, 0xf1, 0x73, 0xe5, 0x35, 0xde, 0x3f, 0xdd, 0x78, 0xb5, 0xf5, 0x7f, 0x99, 0xf3, 0xf5, 0x4d, + 0xbf, 0xde, 0xc9, 0xb6, 0xd6, 0xe2, 0xe5, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2d, 0xd1, 0xc0, + 0x0d, 0x8f, 0x04, 0x00, 0x00, } func (m *DistributionProportion) Marshal() (dAtA []byte, err error) { @@ -377,7 +377,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x2a } - n3, err3 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.GenesisTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.GenesisTime):]) + n3, err3 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.GenesisTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.GenesisTime):]) if err3 != nil { return 0, err3 } @@ -409,7 +409,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x12 - n5, err5 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.NextInflationTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.NextInflationTime):]) + n5, err5 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.NextInflationTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.NextInflationTime):]) if err5 != nil { return 0, err5 } @@ -469,7 +469,7 @@ func (m *Params) Size() (n int) { } var l int _ = l - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.NextInflationTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.NextInflationTime) n += 1 + l + sovParams(uint64(l)) l = m.PoolProportions.Size() n += 1 + l + sovParams(uint64(l)) @@ -479,7 +479,7 @@ func (m *Params) Size() (n int) { n += 1 + l + sovParams(uint64(l)) } } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.GenesisTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.GenesisTime) n += 1 + l + sovParams(uint64(l)) l = len(m.GitServer) if l > 0 { @@ -794,7 +794,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.NextInflationTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.NextInflationTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -894,7 +894,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.GenesisTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.GenesisTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/gitopia/types/pullRequest.pb.go b/x/gitopia/types/pullRequest.pb.go index af2f5c3a..e03c2a40 100644 --- a/x/gitopia/types/pullRequest.pb.go +++ b/x/gitopia/types/pullRequest.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/pullRequest.proto +// source: gitopia/gitopia/pullRequest.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -48,7 +48,7 @@ func (x PullRequest_State) String() string { } func (PullRequest_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_ee729f91ddeb1e95, []int{0, 0} + return fileDescriptor_7329f752498d765e, []int{0, 0} } type PullRequest struct { @@ -81,7 +81,7 @@ func (m *PullRequest) Reset() { *m = PullRequest{} } func (m *PullRequest) String() string { return proto.CompactTextString(m) } func (*PullRequest) ProtoMessage() {} func (*PullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ee729f91ddeb1e95, []int{0} + return fileDescriptor_7329f752498d765e, []int{0} } func (m *PullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -281,7 +281,7 @@ func (m *PullRequestHead) Reset() { *m = PullRequestHead{} } func (m *PullRequestHead) String() string { return proto.CompactTextString(m) } func (*PullRequestHead) ProtoMessage() {} func (*PullRequestHead) Descriptor() ([]byte, []int) { - return fileDescriptor_ee729f91ddeb1e95, []int{1} + return fileDescriptor_7329f752498d765e, []int{1} } func (m *PullRequestHead) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -341,7 +341,7 @@ func (m *PullRequestBase) Reset() { *m = PullRequestBase{} } func (m *PullRequestBase) String() string { return proto.CompactTextString(m) } func (*PullRequestBase) ProtoMessage() {} func (*PullRequestBase) Descriptor() ([]byte, []int) { - return fileDescriptor_ee729f91ddeb1e95, []int{2} + return fileDescriptor_7329f752498d765e, []int{2} } func (m *PullRequestBase) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -398,48 +398,48 @@ func init() { proto.RegisterType((*PullRequestBase)(nil), "gitopia.gitopia.gitopia.PullRequestBase") } -func init() { proto.RegisterFile("gitopia/pullRequest.proto", fileDescriptor_ee729f91ddeb1e95) } +func init() { proto.RegisterFile("gitopia/gitopia/pullRequest.proto", fileDescriptor_7329f752498d765e) } -var fileDescriptor_ee729f91ddeb1e95 = []byte{ +var fileDescriptor_7329f752498d765e = []byte{ // 608 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcd, 0x6e, 0x13, 0x3d, - 0x14, 0xcd, 0x64, 0x92, 0x34, 0x71, 0xda, 0x34, 0x9f, 0xdb, 0xaf, 0x35, 0x15, 0x8a, 0x86, 0x08, - 0xa1, 0xa1, 0x8b, 0x14, 0x95, 0x15, 0x12, 0x0b, 0x48, 0x1a, 0x41, 0x25, 0x4a, 0x2b, 0x77, 0xc7, - 0xce, 0x19, 0xdf, 0x26, 0x56, 0x33, 0xe3, 0xc1, 0x76, 0x80, 0xbc, 0x05, 0x8f, 0xc5, 0xb2, 0x12, - 0x1b, 0x96, 0xa8, 0x7d, 0x11, 0x64, 0x4f, 0x32, 0xd3, 0x46, 0x54, 0xea, 0x86, 0x95, 0xef, 0x39, - 0xe7, 0x1e, 0xfb, 0xfa, 0xe7, 0x1a, 0x3d, 0x1a, 0x0b, 0x23, 0x53, 0xc1, 0x0e, 0xd2, 0xd9, 0x74, - 0x4a, 0xe1, 0xf3, 0x0c, 0xb4, 0xe9, 0xa5, 0x4a, 0x1a, 0x89, 0x77, 0x17, 0x52, 0x6f, 0x65, 0xdc, - 0xdb, 0x1e, 0xcb, 0xb1, 0x74, 0x39, 0x07, 0x36, 0xca, 0xd2, 0xf7, 0xc8, 0x72, 0x26, 0x05, 0xa9, - 0xd4, 0xc2, 0x48, 0x35, 0xcf, 0x94, 0xee, 0xcf, 0x1a, 0x6a, 0x9e, 0x15, 0xd3, 0x63, 0x82, 0xd6, - 0x22, 0x05, 0xcc, 0x48, 0x45, 0xbc, 0xc0, 0x0b, 0x1b, 0x74, 0x09, 0x71, 0x0b, 0x95, 0x05, 0x27, - 0xe5, 0xc0, 0x0b, 0x2b, 0xb4, 0x2c, 0x38, 0x6e, 0x23, 0x5f, 0x08, 0x4e, 0x7c, 0x47, 0xd8, 0x10, - 0x6f, 0xa3, 0xaa, 0x11, 0x66, 0x0a, 0xa4, 0xe2, 0x9c, 0x19, 0xc0, 0x6f, 0x50, 0x55, 0x1b, 0x66, - 0x80, 0x54, 0x03, 0x2f, 0x6c, 0x1d, 0xee, 0xf7, 0xee, 0x29, 0xbd, 0x77, 0xab, 0x8c, 0xde, 0xb9, - 0x75, 0xd0, 0xcc, 0x88, 0x03, 0xd4, 0xe4, 0xa0, 0x23, 0x25, 0x52, 0x23, 0x64, 0x42, 0x6a, 0x6e, - 0xf6, 0xdb, 0x14, 0xde, 0x41, 0xb5, 0xa9, 0x8c, 0x2e, 0x81, 0x93, 0xb5, 0xc0, 0x0b, 0xeb, 0x74, - 0x81, 0xf0, 0x53, 0xb4, 0x11, 0xc9, 0x38, 0x86, 0xc4, 0xe8, 0x81, 0x9c, 0x25, 0x86, 0xd4, 0x5d, - 0xb5, 0x77, 0x49, 0xfc, 0x0a, 0xd5, 0x84, 0xd6, 0x33, 0xd0, 0xa4, 0x11, 0xf8, 0x61, 0xf3, 0xf0, - 0xc9, 0xbd, 0x25, 0x1e, 0xdb, 0xb4, 0x63, 0xc1, 0xe9, 0xc2, 0xe0, 0x16, 0x66, 0x23, 0x98, 0x6a, - 0x82, 0x02, 0x3f, 0xac, 0xd0, 0x05, 0xc2, 0x8f, 0x51, 0x83, 0x69, 0x2d, 0xc6, 0x09, 0x80, 0x26, - 0xcd, 0xc0, 0x0f, 0x1b, 0xb4, 0x20, 0xac, 0xaa, 0xe0, 0x8b, 0x80, 0xaf, 0xa0, 0x34, 0x59, 0xcf, - 0xd4, 0x9c, 0xb0, 0xc7, 0xc8, 0x15, 0xbb, 0x30, 0x64, 0xc3, 0xed, 0x25, 0x03, 0xd6, 0xe3, 0x6e, - 0x02, 0xf8, 0x5b, 0x43, 0x5a, 0x81, 0x17, 0xfa, 0xb4, 0x20, 0xac, 0x3a, 0x4b, 0xf9, 0x42, 0xdd, - 0xcc, 0xd4, 0x9c, 0xc0, 0x7b, 0xa8, 0x1e, 0x4d, 0xa5, 0x76, 0x62, 0xdb, 0x89, 0x39, 0x2e, 0xb4, - 0xfe, 0x9c, 0xfc, 0xe7, 0x4e, 0x36, 0xc7, 0x56, 0x8b, 0x41, 0x8d, 0x9d, 0x0f, 0x67, 0xbe, 0x25, - 0x2e, 0xb4, 0xfe, 0x9c, 0x6c, 0x65, 0xbe, 0x25, 0xc6, 0xcf, 0x50, 0xcb, 0xc5, 0x03, 0x19, 0xc7, - 0xc2, 0x9c, 0x4f, 0x18, 0xd9, 0x76, 0x19, 0x2b, 0x2c, 0x7e, 0x81, 0xb6, 0x62, 0x26, 0x12, 0xc3, - 0x44, 0x02, 0x6a, 0xc0, 0x92, 0x13, 0xc9, 0xc5, 0xc5, 0x9c, 0xfc, 0xef, 0xf6, 0xfd, 0x37, 0x09, - 0xbf, 0x46, 0x95, 0x09, 0x30, 0x4e, 0x76, 0x02, 0x2f, 0x6c, 0x1e, 0x86, 0x0f, 0x79, 0x4b, 0xef, - 0x81, 0x71, 0xea, 0x5c, 0xd6, 0x3d, 0x62, 0x1a, 0xc8, 0xee, 0xc3, 0xdd, 0x7d, 0xa6, 0x81, 0x3a, - 0x57, 0xf7, 0x39, 0xaa, 0xba, 0x67, 0x89, 0xeb, 0xa8, 0x72, 0x7a, 0x36, 0xfc, 0xd8, 0x2e, 0x61, - 0x84, 0x6a, 0x83, 0x0f, 0xa7, 0xe7, 0xc3, 0xa3, 0xb6, 0x67, 0xe3, 0x93, 0x21, 0x7d, 0x37, 0x3c, - 0x6a, 0x97, 0xbb, 0x97, 0x68, 0x73, 0xa5, 0x02, 0xdc, 0x45, 0xeb, 0x45, 0xf3, 0x1d, 0x73, 0xd7, - 0x5d, 0x15, 0x7a, 0x87, 0xb3, 0xaf, 0x69, 0xa4, 0x58, 0x12, 0x4d, 0x5c, 0x9b, 0x35, 0xe8, 0x02, - 0xb9, 0xbb, 0xcf, 0x8f, 0xd2, 0x77, 0x52, 0x41, 0xac, 0x2c, 0x66, 0x0b, 0xfe, 0x77, 0x8b, 0xf5, - 0x8f, 0x7e, 0x5c, 0x77, 0xbc, 0xab, 0xeb, 0x8e, 0xf7, 0xfb, 0xba, 0xe3, 0x7d, 0xbf, 0xe9, 0x94, - 0xae, 0x6e, 0x3a, 0xa5, 0x5f, 0x37, 0x9d, 0xd2, 0xa7, 0xfd, 0xb1, 0x30, 0x93, 0xd9, 0xa8, 0x17, - 0xc9, 0xf8, 0x60, 0xf9, 0xdd, 0x2c, 0xc7, 0x6f, 0x79, 0x64, 0xe6, 0x29, 0xe8, 0x51, 0xcd, 0x7d, - 0x3e, 0x2f, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x6f, 0xf7, 0x57, 0xa3, 0xe2, 0x04, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcd, 0x4e, 0x1b, 0x3d, + 0x14, 0xcd, 0x64, 0x92, 0x90, 0x38, 0x10, 0xf2, 0x19, 0x3e, 0xb0, 0x50, 0x15, 0x0d, 0x51, 0x55, + 0x4d, 0x59, 0x84, 0x8a, 0xae, 0x2a, 0x75, 0xd1, 0x26, 0x44, 0x2d, 0x52, 0x29, 0xc8, 0xec, 0xba, + 0x73, 0xc6, 0x97, 0xc4, 0x22, 0x33, 0x9e, 0xda, 0x4e, 0xdb, 0xbc, 0x45, 0x1f, 0xab, 0x4b, 0xa4, + 0x6e, 0xba, 0xac, 0xe0, 0x45, 0x2a, 0x7b, 0x92, 0x0c, 0x8c, 0x8a, 0xc4, 0xa6, 0x2b, 0xdf, 0x73, + 0xce, 0x3d, 0xbe, 0xd7, 0xbf, 0x68, 0x7f, 0x2c, 0x8c, 0x4c, 0x05, 0x3b, 0x5c, 0x8e, 0xe9, 0x6c, + 0x3a, 0xa5, 0xf0, 0x79, 0x06, 0xda, 0xf4, 0x52, 0x25, 0x8d, 0xc4, 0xbb, 0x0b, 0xa9, 0x57, 0x18, + 0xf7, 0xb6, 0xc7, 0x72, 0x2c, 0x5d, 0xce, 0xa1, 0x8d, 0xb2, 0xf4, 0xbd, 0xa0, 0x38, 0xa3, 0x82, + 0x54, 0x6a, 0x61, 0xa4, 0x9a, 0x67, 0x19, 0xdd, 0x9f, 0x35, 0xd4, 0x3c, 0xcf, 0xcb, 0x60, 0x82, + 0xd6, 0x22, 0x05, 0xcc, 0x48, 0x45, 0xbc, 0xc0, 0x0b, 0x1b, 0x74, 0x09, 0x71, 0x0b, 0x95, 0x05, + 0x27, 0xe5, 0xc0, 0x0b, 0x2b, 0xb4, 0x2c, 0x38, 0x6e, 0x23, 0x5f, 0x08, 0x4e, 0x7c, 0x47, 0xd8, + 0x10, 0x6f, 0xa3, 0xaa, 0x11, 0x66, 0x0a, 0xa4, 0xe2, 0x9c, 0x19, 0xc0, 0x6f, 0x50, 0x55, 0x1b, + 0x66, 0x80, 0x54, 0x03, 0x2f, 0x6c, 0x1d, 0x1d, 0xf4, 0x1e, 0x58, 0x42, 0xef, 0x4e, 0x1b, 0xbd, + 0x0b, 0xeb, 0xa0, 0x99, 0x11, 0x07, 0xa8, 0xc9, 0x41, 0x47, 0x4a, 0xa4, 0x46, 0xc8, 0x84, 0xd4, + 0xdc, 0xec, 0x77, 0x29, 0xbc, 0x83, 0x6a, 0x53, 0x19, 0x5d, 0x01, 0x27, 0x6b, 0x81, 0x17, 0xd6, + 0xe9, 0x02, 0xe1, 0xa7, 0x68, 0x23, 0x92, 0x71, 0x0c, 0x89, 0xd1, 0x03, 0x39, 0x4b, 0x0c, 0xa9, + 0xbb, 0x6e, 0xef, 0x93, 0xf8, 0x15, 0xaa, 0x09, 0xad, 0x67, 0xa0, 0x49, 0x23, 0xf0, 0xc3, 0xe6, + 0xd1, 0xfe, 0x83, 0x2d, 0x9e, 0xd8, 0xb4, 0x13, 0xc1, 0xe9, 0xc2, 0xe0, 0x0a, 0xb3, 0x11, 0x4c, + 0x35, 0x41, 0x81, 0x1f, 0x56, 0xe8, 0x02, 0xe1, 0x27, 0xa8, 0xc1, 0xb4, 0x16, 0xe3, 0x04, 0x40, + 0x93, 0x66, 0xe0, 0x87, 0x0d, 0x9a, 0x13, 0x56, 0x55, 0xf0, 0x45, 0xc0, 0x57, 0x50, 0x9a, 0xac, + 0x67, 0xea, 0x8a, 0xb0, 0xdb, 0xc8, 0x15, 0xbb, 0x34, 0x64, 0xc3, 0xad, 0x25, 0x03, 0xd6, 0xe3, + 0x4e, 0x02, 0xf8, 0x5b, 0x43, 0x5a, 0x81, 0x17, 0xfa, 0x34, 0x27, 0xac, 0x3a, 0x4b, 0xf9, 0x42, + 0xdd, 0xcc, 0xd4, 0x15, 0x81, 0xf7, 0x50, 0x3d, 0x9a, 0x4a, 0xed, 0xc4, 0xb6, 0x13, 0x57, 0x38, + 0xd7, 0xfa, 0x73, 0xf2, 0x9f, 0xdb, 0xd9, 0x15, 0xb6, 0x5a, 0x0c, 0x6a, 0xec, 0x7c, 0x38, 0xf3, + 0x2d, 0x71, 0xae, 0xf5, 0xe7, 0x64, 0x2b, 0xf3, 0x2d, 0x31, 0x7e, 0x86, 0x5a, 0x2e, 0x1e, 0xc8, + 0x38, 0x16, 0xe6, 0x62, 0xc2, 0xc8, 0xb6, 0xcb, 0x28, 0xb0, 0xf8, 0x05, 0xda, 0x8a, 0x99, 0x48, + 0x0c, 0x13, 0x09, 0xa8, 0x01, 0x4b, 0x4e, 0x25, 0x17, 0x97, 0x73, 0xf2, 0xbf, 0x5b, 0xf7, 0xdf, + 0x24, 0xfc, 0x1a, 0x55, 0x26, 0xc0, 0x38, 0xd9, 0x09, 0xbc, 0xb0, 0x79, 0x14, 0x3e, 0xe6, 0x2e, + 0xbd, 0x07, 0xc6, 0xa9, 0x73, 0x59, 0xf7, 0x88, 0x69, 0x20, 0xbb, 0x8f, 0x77, 0xf7, 0x99, 0x06, + 0xea, 0x5c, 0xdd, 0xe7, 0xa8, 0xea, 0xae, 0x25, 0xae, 0xa3, 0xca, 0xd9, 0xf9, 0xf0, 0x63, 0xbb, + 0x84, 0x11, 0xaa, 0x0d, 0x3e, 0x9c, 0x5d, 0x0c, 0x8f, 0xdb, 0x9e, 0x8d, 0x4f, 0x87, 0xf4, 0xdd, + 0xf0, 0xb8, 0x5d, 0xee, 0x5e, 0xa1, 0xcd, 0x42, 0x07, 0xb8, 0x8b, 0xd6, 0xf3, 0xc7, 0x77, 0xc2, + 0xdd, 0xeb, 0xaa, 0xd0, 0x7b, 0x9c, 0xbd, 0x4d, 0x23, 0xc5, 0x92, 0x68, 0xe2, 0x9e, 0x59, 0x83, + 0x2e, 0x90, 0x3b, 0xfb, 0xd5, 0x56, 0xfa, 0x4e, 0xca, 0x89, 0x42, 0x31, 0xdb, 0xf0, 0xbf, 0x2b, + 0xd6, 0x3f, 0xfe, 0x71, 0xd3, 0xf1, 0xae, 0x6f, 0x3a, 0xde, 0xef, 0x9b, 0x8e, 0xf7, 0xfd, 0xb6, + 0x53, 0xba, 0xbe, 0xed, 0x94, 0x7e, 0xdd, 0x76, 0x4a, 0x9f, 0x0e, 0xc6, 0xc2, 0x4c, 0x66, 0xa3, + 0x5e, 0x24, 0xe3, 0xc3, 0xe2, 0xb7, 0xf3, 0x6d, 0x15, 0x99, 0x79, 0x0a, 0x7a, 0x54, 0x73, 0x9f, + 0xcf, 0xcb, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x22, 0x37, 0xca, 0x9b, 0xf2, 0x04, 0x00, 0x00, } func (m *PullRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/query.pb.go b/x/gitopia/types/query.pb.go index 3e68527c..8836af59 100644 --- a/x/gitopia/types/query.pb.go +++ b/x/gitopia/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/query.proto +// source: gitopia/gitopia/query.proto package types @@ -8,9 +8,9 @@ import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -39,7 +39,7 @@ func (m *QueryVestedAmountRequest) Reset() { *m = QueryVestedAmountReque func (m *QueryVestedAmountRequest) String() string { return proto.CompactTextString(m) } func (*QueryVestedAmountRequest) ProtoMessage() {} func (*QueryVestedAmountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{0} + return fileDescriptor_a22a96ec9485ca24, []int{0} } func (m *QueryVestedAmountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *QueryVestedAmountResponse) Reset() { *m = QueryVestedAmountResp func (m *QueryVestedAmountResponse) String() string { return proto.CompactTextString(m) } func (*QueryVestedAmountResponse) ProtoMessage() {} func (*QueryVestedAmountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{1} + return fileDescriptor_a22a96ec9485ca24, []int{1} } func (m *QueryVestedAmountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -148,7 +148,7 @@ func (m *QueryCheckStorageProviderAuthorizationRequest) String() string { } func (*QueryCheckStorageProviderAuthorizationRequest) ProtoMessage() {} func (*QueryCheckStorageProviderAuthorizationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{2} + return fileDescriptor_a22a96ec9485ca24, []int{2} } func (m *QueryCheckStorageProviderAuthorizationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -203,7 +203,7 @@ func (m *QueryCheckStorageProviderAuthorizationResponse) String() string { } func (*QueryCheckStorageProviderAuthorizationResponse) ProtoMessage() {} func (*QueryCheckStorageProviderAuthorizationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{3} + return fileDescriptor_a22a96ec9485ca24, []int{3} } func (m *QueryCheckStorageProviderAuthorizationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -247,7 +247,7 @@ func (m *QueryGetTaskRequest) Reset() { *m = QueryGetTaskRequest{} } func (m *QueryGetTaskRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetTaskRequest) ProtoMessage() {} func (*QueryGetTaskRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{4} + return fileDescriptor_a22a96ec9485ca24, []int{4} } func (m *QueryGetTaskRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -291,7 +291,7 @@ func (m *QueryGetTaskResponse) Reset() { *m = QueryGetTaskResponse{} } func (m *QueryGetTaskResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetTaskResponse) ProtoMessage() {} func (*QueryGetTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{5} + return fileDescriptor_a22a96ec9485ca24, []int{5} } func (m *QueryGetTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,7 +335,7 @@ func (m *QueryAllTaskRequest) Reset() { *m = QueryAllTaskRequest{} } func (m *QueryAllTaskRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllTaskRequest) ProtoMessage() {} func (*QueryAllTaskRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{6} + return fileDescriptor_a22a96ec9485ca24, []int{6} } func (m *QueryAllTaskRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -380,7 +380,7 @@ func (m *QueryAllTaskResponse) Reset() { *m = QueryAllTaskResponse{} } func (m *QueryAllTaskResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllTaskResponse) ProtoMessage() {} func (*QueryAllTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{7} + return fileDescriptor_a22a96ec9485ca24, []int{7} } func (m *QueryAllTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -434,7 +434,7 @@ func (m *QueryCheckGitServerAuthorizationRequest) Reset() { func (m *QueryCheckGitServerAuthorizationRequest) String() string { return proto.CompactTextString(m) } func (*QueryCheckGitServerAuthorizationRequest) ProtoMessage() {} func (*QueryCheckGitServerAuthorizationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{8} + return fileDescriptor_a22a96ec9485ca24, []int{8} } func (m *QueryCheckGitServerAuthorizationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -487,7 +487,7 @@ func (m *QueryCheckGitServerAuthorizationResponse) Reset() { func (m *QueryCheckGitServerAuthorizationResponse) String() string { return proto.CompactTextString(m) } func (*QueryCheckGitServerAuthorizationResponse) ProtoMessage() {} func (*QueryCheckGitServerAuthorizationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{9} + return fileDescriptor_a22a96ec9485ca24, []int{9} } func (m *QueryCheckGitServerAuthorizationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -531,7 +531,7 @@ func (m *QueryAllBranchRequest) Reset() { *m = QueryAllBranchRequest{} } func (m *QueryAllBranchRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBranchRequest) ProtoMessage() {} func (*QueryAllBranchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{10} + return fileDescriptor_a22a96ec9485ca24, []int{10} } func (m *QueryAllBranchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -576,7 +576,7 @@ func (m *QueryAllBranchResponse) Reset() { *m = QueryAllBranchResponse{} func (m *QueryAllBranchResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBranchResponse) ProtoMessage() {} func (*QueryAllBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{11} + return fileDescriptor_a22a96ec9485ca24, []int{11} } func (m *QueryAllBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -629,7 +629,7 @@ func (m *QueryGetRepositoryBranchRequest) Reset() { *m = QueryGetReposit func (m *QueryGetRepositoryBranchRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchRequest) ProtoMessage() {} func (*QueryGetRepositoryBranchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{12} + return fileDescriptor_a22a96ec9485ca24, []int{12} } func (m *QueryGetRepositoryBranchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -687,7 +687,7 @@ func (m *QueryGetRepositoryBranchResponse) Reset() { *m = QueryGetReposi func (m *QueryGetRepositoryBranchResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchResponse) ProtoMessage() {} func (*QueryGetRepositoryBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{13} + return fileDescriptor_a22a96ec9485ca24, []int{13} } func (m *QueryGetRepositoryBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -733,7 +733,7 @@ func (m *QueryGetRepositoryBranchShaRequest) Reset() { *m = QueryGetRepo func (m *QueryGetRepositoryBranchShaRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchShaRequest) ProtoMessage() {} func (*QueryGetRepositoryBranchShaRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{14} + return fileDescriptor_a22a96ec9485ca24, []int{14} } func (m *QueryGetRepositoryBranchShaRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -791,7 +791,7 @@ func (m *QueryGetRepositoryBranchShaResponse) Reset() { *m = QueryGetRep func (m *QueryGetRepositoryBranchShaResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchShaResponse) ProtoMessage() {} func (*QueryGetRepositoryBranchShaResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{15} + return fileDescriptor_a22a96ec9485ca24, []int{15} } func (m *QueryGetRepositoryBranchShaResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -837,7 +837,7 @@ func (m *QueryAllRepositoryBranchRequest) Reset() { *m = QueryAllReposit func (m *QueryAllRepositoryBranchRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryBranchRequest) ProtoMessage() {} func (*QueryAllRepositoryBranchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{16} + return fileDescriptor_a22a96ec9485ca24, []int{16} } func (m *QueryAllRepositoryBranchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -896,7 +896,7 @@ func (m *QueryAllRepositoryBranchResponse) Reset() { *m = QueryAllReposi func (m *QueryAllRepositoryBranchResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryBranchResponse) ProtoMessage() {} func (*QueryAllRepositoryBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{17} + return fileDescriptor_a22a96ec9485ca24, []int{17} } func (m *QueryAllRepositoryBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -947,7 +947,7 @@ func (m *QueryAllTagRequest) Reset() { *m = QueryAllTagRequest{} } func (m *QueryAllTagRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllTagRequest) ProtoMessage() {} func (*QueryAllTagRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{18} + return fileDescriptor_a22a96ec9485ca24, []int{18} } func (m *QueryAllTagRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -992,7 +992,7 @@ func (m *QueryAllTagResponse) Reset() { *m = QueryAllTagResponse{} } func (m *QueryAllTagResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllTagResponse) ProtoMessage() {} func (*QueryAllTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{19} + return fileDescriptor_a22a96ec9485ca24, []int{19} } func (m *QueryAllTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1045,7 +1045,7 @@ func (m *QueryGetRepositoryTagRequest) Reset() { *m = QueryGetRepository func (m *QueryGetRepositoryTagRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagRequest) ProtoMessage() {} func (*QueryGetRepositoryTagRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{20} + return fileDescriptor_a22a96ec9485ca24, []int{20} } func (m *QueryGetRepositoryTagRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1103,7 +1103,7 @@ func (m *QueryGetRepositoryTagResponse) Reset() { *m = QueryGetRepositor func (m *QueryGetRepositoryTagResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagResponse) ProtoMessage() {} func (*QueryGetRepositoryTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{21} + return fileDescriptor_a22a96ec9485ca24, []int{21} } func (m *QueryGetRepositoryTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1149,7 +1149,7 @@ func (m *QueryGetRepositoryTagShaRequest) Reset() { *m = QueryGetReposit func (m *QueryGetRepositoryTagShaRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagShaRequest) ProtoMessage() {} func (*QueryGetRepositoryTagShaRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{22} + return fileDescriptor_a22a96ec9485ca24, []int{22} } func (m *QueryGetRepositoryTagShaRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1207,7 +1207,7 @@ func (m *QueryGetRepositoryTagShaResponse) Reset() { *m = QueryGetReposi func (m *QueryGetRepositoryTagShaResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagShaResponse) ProtoMessage() {} func (*QueryGetRepositoryTagShaResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{23} + return fileDescriptor_a22a96ec9485ca24, []int{23} } func (m *QueryGetRepositoryTagShaResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1253,7 +1253,7 @@ func (m *QueryAllRepositoryTagRequest) Reset() { *m = QueryAllRepository func (m *QueryAllRepositoryTagRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryTagRequest) ProtoMessage() {} func (*QueryAllRepositoryTagRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{24} + return fileDescriptor_a22a96ec9485ca24, []int{24} } func (m *QueryAllRepositoryTagRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1312,7 +1312,7 @@ func (m *QueryAllRepositoryTagResponse) Reset() { *m = QueryAllRepositor func (m *QueryAllRepositoryTagResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryTagResponse) ProtoMessage() {} func (*QueryAllRepositoryTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{25} + return fileDescriptor_a22a96ec9485ca24, []int{25} } func (m *QueryAllRepositoryTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1364,7 +1364,7 @@ func (m *QueryGetDaoMemberRequest) Reset() { *m = QueryGetDaoMemberReque func (m *QueryGetDaoMemberRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoMemberRequest) ProtoMessage() {} func (*QueryGetDaoMemberRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{26} + return fileDescriptor_a22a96ec9485ca24, []int{26} } func (m *QueryGetDaoMemberRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1415,7 +1415,7 @@ func (m *QueryGetDaoMemberResponse) Reset() { *m = QueryGetDaoMemberResp func (m *QueryGetDaoMemberResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoMemberResponse) ProtoMessage() {} func (*QueryGetDaoMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{27} + return fileDescriptor_a22a96ec9485ca24, []int{27} } func (m *QueryGetDaoMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1460,7 +1460,7 @@ func (m *QueryAllDaoMemberRequest) Reset() { *m = QueryAllDaoMemberReque func (m *QueryAllDaoMemberRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoMemberRequest) ProtoMessage() {} func (*QueryAllDaoMemberRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{28} + return fileDescriptor_a22a96ec9485ca24, []int{28} } func (m *QueryAllDaoMemberRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1512,7 +1512,7 @@ func (m *QueryAllDaoMemberResponse) Reset() { *m = QueryAllDaoMemberResp func (m *QueryAllDaoMemberResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoMemberResponse) ProtoMessage() {} func (*QueryAllDaoMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{29} + return fileDescriptor_a22a96ec9485ca24, []int{29} } func (m *QueryAllDaoMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1563,7 +1563,7 @@ func (m *QueryAllMemberRequest) Reset() { *m = QueryAllMemberRequest{} } func (m *QueryAllMemberRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllMemberRequest) ProtoMessage() {} func (*QueryAllMemberRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{30} + return fileDescriptor_a22a96ec9485ca24, []int{30} } func (m *QueryAllMemberRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1608,7 +1608,7 @@ func (m *QueryAllMemberResponse) Reset() { *m = QueryAllMemberResponse{} func (m *QueryAllMemberResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllMemberResponse) ProtoMessage() {} func (*QueryAllMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{31} + return fileDescriptor_a22a96ec9485ca24, []int{31} } func (m *QueryAllMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1659,7 +1659,7 @@ func (m *QueryGetBountyRequest) Reset() { *m = QueryGetBountyRequest{} } func (m *QueryGetBountyRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetBountyRequest) ProtoMessage() {} func (*QueryGetBountyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{32} + return fileDescriptor_a22a96ec9485ca24, []int{32} } func (m *QueryGetBountyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1703,7 +1703,7 @@ func (m *QueryGetBountyResponse) Reset() { *m = QueryGetBountyResponse{} func (m *QueryGetBountyResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetBountyResponse) ProtoMessage() {} func (*QueryGetBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{33} + return fileDescriptor_a22a96ec9485ca24, []int{33} } func (m *QueryGetBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1747,7 +1747,7 @@ func (m *QueryAllBountyRequest) Reset() { *m = QueryAllBountyRequest{} } func (m *QueryAllBountyRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBountyRequest) ProtoMessage() {} func (*QueryAllBountyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{34} + return fileDescriptor_a22a96ec9485ca24, []int{34} } func (m *QueryAllBountyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1792,7 +1792,7 @@ func (m *QueryAllBountyResponse) Reset() { *m = QueryAllBountyResponse{} func (m *QueryAllBountyResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBountyResponse) ProtoMessage() {} func (*QueryAllBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{35} + return fileDescriptor_a22a96ec9485ca24, []int{35} } func (m *QueryAllBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1850,7 +1850,7 @@ func (m *QueryGetPullRequestMergePermissionRequest) String() string { } func (*QueryGetPullRequestMergePermissionRequest) ProtoMessage() {} func (*QueryGetPullRequestMergePermissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{36} + return fileDescriptor_a22a96ec9485ca24, []int{36} } func (m *QueryGetPullRequestMergePermissionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1912,7 +1912,7 @@ func (m *QueryGetPullRequestMergePermissionResponse) String() string { } func (*QueryGetPullRequestMergePermissionResponse) ProtoMessage() {} func (*QueryGetPullRequestMergePermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{37} + return fileDescriptor_a22a96ec9485ca24, []int{37} } func (m *QueryGetPullRequestMergePermissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1957,7 +1957,7 @@ func (m *QueryGetReleaseRequest) Reset() { *m = QueryGetReleaseRequest{} func (m *QueryGetReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetReleaseRequest) ProtoMessage() {} func (*QueryGetReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{38} + return fileDescriptor_a22a96ec9485ca24, []int{38} } func (m *QueryGetReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2001,7 +2001,7 @@ func (m *QueryGetReleaseResponse) Reset() { *m = QueryGetReleaseResponse func (m *QueryGetReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetReleaseResponse) ProtoMessage() {} func (*QueryGetReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{39} + return fileDescriptor_a22a96ec9485ca24, []int{39} } func (m *QueryGetReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2045,7 +2045,7 @@ func (m *QueryAllReleaseRequest) Reset() { *m = QueryAllReleaseRequest{} func (m *QueryAllReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllReleaseRequest) ProtoMessage() {} func (*QueryAllReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{40} + return fileDescriptor_a22a96ec9485ca24, []int{40} } func (m *QueryAllReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2090,7 +2090,7 @@ func (m *QueryAllReleaseResponse) Reset() { *m = QueryAllReleaseResponse func (m *QueryAllReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllReleaseResponse) ProtoMessage() {} func (*QueryAllReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{41} + return fileDescriptor_a22a96ec9485ca24, []int{41} } func (m *QueryAllReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2141,7 +2141,7 @@ func (m *QueryGetPullRequestRequest) Reset() { *m = QueryGetPullRequestR func (m *QueryGetPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestRequest) ProtoMessage() {} func (*QueryGetPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{42} + return fileDescriptor_a22a96ec9485ca24, []int{42} } func (m *QueryGetPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2185,7 +2185,7 @@ func (m *QueryGetPullRequestResponse) Reset() { *m = QueryGetPullRequest func (m *QueryGetPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestResponse) ProtoMessage() {} func (*QueryGetPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{43} + return fileDescriptor_a22a96ec9485ca24, []int{43} } func (m *QueryGetPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2229,7 +2229,7 @@ func (m *QueryAllPullRequestRequest) Reset() { *m = QueryAllPullRequestR func (m *QueryAllPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestRequest) ProtoMessage() {} func (*QueryAllPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{44} + return fileDescriptor_a22a96ec9485ca24, []int{44} } func (m *QueryAllPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2274,7 +2274,7 @@ func (m *QueryAllPullRequestResponse) Reset() { *m = QueryAllPullRequest func (m *QueryAllPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestResponse) ProtoMessage() {} func (*QueryAllPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{45} + return fileDescriptor_a22a96ec9485ca24, []int{45} } func (m *QueryAllPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2325,7 +2325,7 @@ func (m *QueryGetDaoRequest) Reset() { *m = QueryGetDaoRequest{} } func (m *QueryGetDaoRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoRequest) ProtoMessage() {} func (*QueryGetDaoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{46} + return fileDescriptor_a22a96ec9485ca24, []int{46} } func (m *QueryGetDaoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2369,7 +2369,7 @@ func (m *QueryGetDaoResponse) Reset() { *m = QueryGetDaoResponse{} } func (m *QueryGetDaoResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoResponse) ProtoMessage() {} func (*QueryGetDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{47} + return fileDescriptor_a22a96ec9485ca24, []int{47} } func (m *QueryGetDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2413,7 +2413,7 @@ func (m *QueryAllDaoRequest) Reset() { *m = QueryAllDaoRequest{} } func (m *QueryAllDaoRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoRequest) ProtoMessage() {} func (*QueryAllDaoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{48} + return fileDescriptor_a22a96ec9485ca24, []int{48} } func (m *QueryAllDaoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2458,7 +2458,7 @@ func (m *QueryAllDaoResponse) Reset() { *m = QueryAllDaoResponse{} } func (m *QueryAllDaoResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoResponse) ProtoMessage() {} func (*QueryAllDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{49} + return fileDescriptor_a22a96ec9485ca24, []int{49} } func (m *QueryAllDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2511,7 +2511,7 @@ func (m *QueryGetIssueCommentRequest) Reset() { *m = QueryGetIssueCommen func (m *QueryGetIssueCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetIssueCommentRequest) ProtoMessage() {} func (*QueryGetIssueCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{50} + return fileDescriptor_a22a96ec9485ca24, []int{50} } func (m *QueryGetIssueCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2569,7 +2569,7 @@ func (m *QueryGetIssueCommentResponse) Reset() { *m = QueryGetIssueComme func (m *QueryGetIssueCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetIssueCommentResponse) ProtoMessage() {} func (*QueryGetIssueCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{51} + return fileDescriptor_a22a96ec9485ca24, []int{51} } func (m *QueryGetIssueCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2615,7 +2615,7 @@ func (m *QueryGetPullRequestCommentRequest) Reset() { *m = QueryGetPullR func (m *QueryGetPullRequestCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestCommentRequest) ProtoMessage() {} func (*QueryGetPullRequestCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{52} + return fileDescriptor_a22a96ec9485ca24, []int{52} } func (m *QueryGetPullRequestCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2673,7 +2673,7 @@ func (m *QueryGetPullRequestCommentResponse) Reset() { *m = QueryGetPull func (m *QueryGetPullRequestCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestCommentResponse) ProtoMessage() {} func (*QueryGetPullRequestCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{53} + return fileDescriptor_a22a96ec9485ca24, []int{53} } func (m *QueryGetPullRequestCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2717,7 +2717,7 @@ func (m *QueryAllCommentRequest) Reset() { *m = QueryAllCommentRequest{} func (m *QueryAllCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllCommentRequest) ProtoMessage() {} func (*QueryAllCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{54} + return fileDescriptor_a22a96ec9485ca24, []int{54} } func (m *QueryAllCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2762,7 +2762,7 @@ func (m *QueryAllCommentResponse) Reset() { *m = QueryAllCommentResponse func (m *QueryAllCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllCommentResponse) ProtoMessage() {} func (*QueryAllCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{55} + return fileDescriptor_a22a96ec9485ca24, []int{55} } func (m *QueryAllCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2815,7 +2815,7 @@ func (m *QueryAllIssueCommentRequest) Reset() { *m = QueryAllIssueCommen func (m *QueryAllIssueCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueCommentRequest) ProtoMessage() {} func (*QueryAllIssueCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{56} + return fileDescriptor_a22a96ec9485ca24, []int{56} } func (m *QueryAllIssueCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2874,7 +2874,7 @@ func (m *QueryAllIssueCommentResponse) Reset() { *m = QueryAllIssueComme func (m *QueryAllIssueCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueCommentResponse) ProtoMessage() {} func (*QueryAllIssueCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{57} + return fileDescriptor_a22a96ec9485ca24, []int{57} } func (m *QueryAllIssueCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2927,7 +2927,7 @@ func (m *QueryAllPullRequestCommentRequest) Reset() { *m = QueryAllPullR func (m *QueryAllPullRequestCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestCommentRequest) ProtoMessage() {} func (*QueryAllPullRequestCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{58} + return fileDescriptor_a22a96ec9485ca24, []int{58} } func (m *QueryAllPullRequestCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2986,7 +2986,7 @@ func (m *QueryAllPullRequestCommentResponse) Reset() { *m = QueryAllPull func (m *QueryAllPullRequestCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestCommentResponse) ProtoMessage() {} func (*QueryAllPullRequestCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{59} + return fileDescriptor_a22a96ec9485ca24, []int{59} } func (m *QueryAllPullRequestCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3037,7 +3037,7 @@ func (m *QueryAllIssueRequest) Reset() { *m = QueryAllIssueRequest{} } func (m *QueryAllIssueRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueRequest) ProtoMessage() {} func (*QueryAllIssueRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{60} + return fileDescriptor_a22a96ec9485ca24, []int{60} } func (m *QueryAllIssueRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3082,7 +3082,7 @@ func (m *QueryAllIssueResponse) Reset() { *m = QueryAllIssueResponse{} } func (m *QueryAllIssueResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueResponse) ProtoMessage() {} func (*QueryAllIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{61} + return fileDescriptor_a22a96ec9485ca24, []int{61} } func (m *QueryAllIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3136,7 +3136,7 @@ func (m *QueryGetLatestRepositoryReleaseRequest) Reset() { func (m *QueryGetLatestRepositoryReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestRepositoryReleaseRequest) ProtoMessage() {} func (*QueryGetLatestRepositoryReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{62} + return fileDescriptor_a22a96ec9485ca24, []int{62} } func (m *QueryGetLatestRepositoryReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3189,7 +3189,7 @@ func (m *QueryGetLatestRepositoryReleaseResponse) Reset() { func (m *QueryGetLatestRepositoryReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestRepositoryReleaseResponse) ProtoMessage() {} func (*QueryGetLatestRepositoryReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{63} + return fileDescriptor_a22a96ec9485ca24, []int{63} } func (m *QueryGetLatestRepositoryReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3235,7 +3235,7 @@ func (m *QueryGetRepositoryReleaseRequest) Reset() { *m = QueryGetReposi func (m *QueryGetRepositoryReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryReleaseRequest) ProtoMessage() {} func (*QueryGetRepositoryReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{64} + return fileDescriptor_a22a96ec9485ca24, []int{64} } func (m *QueryGetRepositoryReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3293,7 +3293,7 @@ func (m *QueryGetRepositoryReleaseResponse) Reset() { *m = QueryGetRepos func (m *QueryGetRepositoryReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryReleaseResponse) ProtoMessage() {} func (*QueryGetRepositoryReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{65} + return fileDescriptor_a22a96ec9485ca24, []int{65} } func (m *QueryGetRepositoryReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3339,7 +3339,7 @@ func (m *QueryAllRepositoryReleaseRequest) Reset() { *m = QueryAllReposi func (m *QueryAllRepositoryReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryReleaseRequest) ProtoMessage() {} func (*QueryAllRepositoryReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{66} + return fileDescriptor_a22a96ec9485ca24, []int{66} } func (m *QueryAllRepositoryReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3398,7 +3398,7 @@ func (m *QueryAllRepositoryReleaseResponse) Reset() { *m = QueryAllRepos func (m *QueryAllRepositoryReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryReleaseResponse) ProtoMessage() {} func (*QueryAllRepositoryReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{67} + return fileDescriptor_a22a96ec9485ca24, []int{67} } func (m *QueryAllRepositoryReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3451,7 +3451,7 @@ func (m *QueryGetRepositoryIssueRequest) Reset() { *m = QueryGetReposito func (m *QueryGetRepositoryIssueRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryIssueRequest) ProtoMessage() {} func (*QueryGetRepositoryIssueRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{68} + return fileDescriptor_a22a96ec9485ca24, []int{68} } func (m *QueryGetRepositoryIssueRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3509,7 +3509,7 @@ func (m *QueryGetRepositoryIssueResponse) Reset() { *m = QueryGetReposit func (m *QueryGetRepositoryIssueResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryIssueResponse) ProtoMessage() {} func (*QueryGetRepositoryIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{69} + return fileDescriptor_a22a96ec9485ca24, []int{69} } func (m *QueryGetRepositoryIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3555,7 +3555,7 @@ func (m *QueryGetRepositoryPullRequestRequest) Reset() { *m = QueryGetRe func (m *QueryGetRepositoryPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryPullRequestRequest) ProtoMessage() {} func (*QueryGetRepositoryPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{70} + return fileDescriptor_a22a96ec9485ca24, []int{70} } func (m *QueryGetRepositoryPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3613,7 +3613,7 @@ func (m *QueryGetRepositoryPullRequestResponse) Reset() { *m = QueryGetR func (m *QueryGetRepositoryPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryPullRequestResponse) ProtoMessage() {} func (*QueryGetRepositoryPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{71} + return fileDescriptor_a22a96ec9485ca24, []int{71} } func (m *QueryGetRepositoryPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3660,7 +3660,7 @@ func (m *QueryAllRepositoryIssueRequest) Reset() { *m = QueryAllReposito func (m *QueryAllRepositoryIssueRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryIssueRequest) ProtoMessage() {} func (*QueryAllRepositoryIssueRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{72} + return fileDescriptor_a22a96ec9485ca24, []int{72} } func (m *QueryAllRepositoryIssueRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3733,7 +3733,7 @@ func (m *IssueOptions) Reset() { *m = IssueOptions{} } func (m *IssueOptions) String() string { return proto.CompactTextString(m) } func (*IssueOptions) ProtoMessage() {} func (*IssueOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{73} + return fileDescriptor_a22a96ec9485ca24, []int{73} } func (m *IssueOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3834,7 +3834,7 @@ func (m *QueryAllRepositoryIssueResponse) Reset() { *m = QueryAllReposit func (m *QueryAllRepositoryIssueResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryIssueResponse) ProtoMessage() {} func (*QueryAllRepositoryIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{74} + return fileDescriptor_a22a96ec9485ca24, []int{74} } func (m *QueryAllRepositoryIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3888,7 +3888,7 @@ func (m *QueryAllRepositoryPullRequestRequest) Reset() { *m = QueryAllRe func (m *QueryAllRepositoryPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryPullRequestRequest) ProtoMessage() {} func (*QueryAllRepositoryPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{75} + return fileDescriptor_a22a96ec9485ca24, []int{75} } func (m *QueryAllRepositoryPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3962,7 +3962,7 @@ func (m *PullRequestOptions) Reset() { *m = PullRequestOptions{} } func (m *PullRequestOptions) String() string { return proto.CompactTextString(m) } func (*PullRequestOptions) ProtoMessage() {} func (*PullRequestOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{76} + return fileDescriptor_a22a96ec9485ca24, []int{76} } func (m *PullRequestOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4070,7 +4070,7 @@ func (m *QueryAllRepositoryPullRequestResponse) Reset() { *m = QueryAllR func (m *QueryAllRepositoryPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryPullRequestResponse) ProtoMessage() {} func (*QueryAllRepositoryPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{77} + return fileDescriptor_a22a96ec9485ca24, []int{77} } func (m *QueryAllRepositoryPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4121,7 +4121,7 @@ func (m *QueryGetRepositoryRequest) Reset() { *m = QueryGetRepositoryReq func (m *QueryGetRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryRequest) ProtoMessage() {} func (*QueryGetRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{78} + return fileDescriptor_a22a96ec9485ca24, []int{78} } func (m *QueryGetRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4165,7 +4165,7 @@ func (m *QueryGetRepositoryResponse) Reset() { *m = QueryGetRepositoryRe func (m *QueryGetRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryResponse) ProtoMessage() {} func (*QueryGetRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{79} + return fileDescriptor_a22a96ec9485ca24, []int{79} } func (m *QueryGetRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4217,7 +4217,7 @@ func (m *RepositoryFork) Reset() { *m = RepositoryFork{} } func (m *RepositoryFork) String() string { return proto.CompactTextString(m) } func (*RepositoryFork) ProtoMessage() {} func (*RepositoryFork) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{80} + return fileDescriptor_a22a96ec9485ca24, []int{80} } func (m *RepositoryFork) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4319,7 +4319,7 @@ func (m *QueryGetAllForkRequest) Reset() { *m = QueryGetAllForkRequest{} func (m *QueryGetAllForkRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAllForkRequest) ProtoMessage() {} func (*QueryGetAllForkRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{81} + return fileDescriptor_a22a96ec9485ca24, []int{81} } func (m *QueryGetAllForkRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4378,7 +4378,7 @@ func (m *QueryGetAllForkResponse) Reset() { *m = QueryGetAllForkResponse func (m *QueryGetAllForkResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAllForkResponse) ProtoMessage() {} func (*QueryGetAllForkResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{82} + return fileDescriptor_a22a96ec9485ca24, []int{82} } func (m *QueryGetAllForkResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4429,7 +4429,7 @@ func (m *QueryAllRepositoryRequest) Reset() { *m = QueryAllRepositoryReq func (m *QueryAllRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryRequest) ProtoMessage() {} func (*QueryAllRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{83} + return fileDescriptor_a22a96ec9485ca24, []int{83} } func (m *QueryAllRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4474,7 +4474,7 @@ func (m *QueryAllRepositoryResponse) Reset() { *m = QueryAllRepositoryRe func (m *QueryAllRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryResponse) ProtoMessage() {} func (*QueryAllRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{84} + return fileDescriptor_a22a96ec9485ca24, []int{84} } func (m *QueryAllRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4525,7 +4525,7 @@ func (m *QueryGetUserRequest) Reset() { *m = QueryGetUserRequest{} } func (m *QueryGetUserRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetUserRequest) ProtoMessage() {} func (*QueryGetUserRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{85} + return fileDescriptor_a22a96ec9485ca24, []int{85} } func (m *QueryGetUserRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4569,7 +4569,7 @@ func (m *QueryGetUserResponse) Reset() { *m = QueryGetUserResponse{} } func (m *QueryGetUserResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetUserResponse) ProtoMessage() {} func (*QueryGetUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{86} + return fileDescriptor_a22a96ec9485ca24, []int{86} } func (m *QueryGetUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4614,7 +4614,7 @@ func (m *QueryAllUserDaoRequest) Reset() { *m = QueryAllUserDaoRequest{} func (m *QueryAllUserDaoRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllUserDaoRequest) ProtoMessage() {} func (*QueryAllUserDaoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{87} + return fileDescriptor_a22a96ec9485ca24, []int{87} } func (m *QueryAllUserDaoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4666,7 +4666,7 @@ func (m *QueryAllUserDaoResponse) Reset() { *m = QueryAllUserDaoResponse func (m *QueryAllUserDaoResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllUserDaoResponse) ProtoMessage() {} func (*QueryAllUserDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{88} + return fileDescriptor_a22a96ec9485ca24, []int{88} } func (m *QueryAllUserDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4717,7 +4717,7 @@ func (m *QueryAllUserRequest) Reset() { *m = QueryAllUserRequest{} } func (m *QueryAllUserRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllUserRequest) ProtoMessage() {} func (*QueryAllUserRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{89} + return fileDescriptor_a22a96ec9485ca24, []int{89} } func (m *QueryAllUserRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4762,7 +4762,7 @@ func (m *QueryAllUserResponse) Reset() { *m = QueryAllUserResponse{} } func (m *QueryAllUserResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllUserResponse) ProtoMessage() {} func (*QueryAllUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{90} + return fileDescriptor_a22a96ec9485ca24, []int{90} } func (m *QueryAllUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4814,7 +4814,7 @@ func (m *QueryAllAnyRepositoryRequest) Reset() { *m = QueryAllAnyReposit func (m *QueryAllAnyRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllAnyRepositoryRequest) ProtoMessage() {} func (*QueryAllAnyRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{91} + return fileDescriptor_a22a96ec9485ca24, []int{91} } func (m *QueryAllAnyRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4866,7 +4866,7 @@ func (m *QueryAllAnyRepositoryResponse) Reset() { *m = QueryAllAnyReposi func (m *QueryAllAnyRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllAnyRepositoryResponse) ProtoMessage() {} func (*QueryAllAnyRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{92} + return fileDescriptor_a22a96ec9485ca24, []int{92} } func (m *QueryAllAnyRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4918,7 +4918,7 @@ func (m *QueryGetAnyRepositoryRequest) Reset() { *m = QueryGetAnyReposit func (m *QueryGetAnyRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAnyRepositoryRequest) ProtoMessage() {} func (*QueryGetAnyRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{93} + return fileDescriptor_a22a96ec9485ca24, []int{93} } func (m *QueryGetAnyRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4969,7 +4969,7 @@ func (m *QueryGetAnyRepositoryResponse) Reset() { *m = QueryGetAnyReposi func (m *QueryGetAnyRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAnyRepositoryResponse) ProtoMessage() {} func (*QueryGetAnyRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{94} + return fileDescriptor_a22a96ec9485ca24, []int{94} } func (m *QueryGetAnyRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5013,7 +5013,7 @@ func (m *QueryGetWhoisRequest) Reset() { *m = QueryGetWhoisRequest{} } func (m *QueryGetWhoisRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetWhoisRequest) ProtoMessage() {} func (*QueryGetWhoisRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{95} + return fileDescriptor_a22a96ec9485ca24, []int{95} } func (m *QueryGetWhoisRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5057,7 +5057,7 @@ func (m *QueryGetWhoisResponse) Reset() { *m = QueryGetWhoisResponse{} } func (m *QueryGetWhoisResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetWhoisResponse) ProtoMessage() {} func (*QueryGetWhoisResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{96} + return fileDescriptor_a22a96ec9485ca24, []int{96} } func (m *QueryGetWhoisResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5101,7 +5101,7 @@ func (m *QueryAllWhoisRequest) Reset() { *m = QueryAllWhoisRequest{} } func (m *QueryAllWhoisRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllWhoisRequest) ProtoMessage() {} func (*QueryAllWhoisRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{97} + return fileDescriptor_a22a96ec9485ca24, []int{97} } func (m *QueryAllWhoisRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5146,7 +5146,7 @@ func (m *QueryAllWhoisResponse) Reset() { *m = QueryAllWhoisResponse{} } func (m *QueryAllWhoisResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllWhoisResponse) ProtoMessage() {} func (*QueryAllWhoisResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_422ed845ee440bd1, []int{98} + return fileDescriptor_a22a96ec9485ca24, []int{98} } func (m *QueryAllWhoisResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5291,235 +5291,235 @@ func init() { proto.RegisterType((*QueryAllWhoisResponse)(nil), "gitopia.gitopia.gitopia.QueryAllWhoisResponse") } -func init() { proto.RegisterFile("gitopia/query.proto", fileDescriptor_422ed845ee440bd1) } - -var fileDescriptor_422ed845ee440bd1 = []byte{ - // 3592 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5c, 0xef, 0x6f, 0x1c, 0xc5, - 0xf9, 0xcf, 0xf8, 0xfc, 0x23, 0x9e, 0x84, 0x04, 0x86, 0x04, 0x8e, 0x23, 0x38, 0xce, 0xc6, 0xb1, - 0x8d, 0x63, 0xdf, 0x12, 0x27, 0x21, 0x7c, 0x03, 0x01, 0xce, 0x0e, 0x36, 0xfe, 0xf2, 0xcd, 0x37, - 0xe1, 0x92, 0x10, 0x88, 0x28, 0x64, 0xed, 0xdb, 0x9c, 0x4f, 0x3e, 0xdf, 0x1e, 0xbb, 0x7b, 0x26, - 0xee, 0xd5, 0x2f, 0xca, 0xab, 0x56, 0x88, 0xa6, 0xa5, 0x85, 0x52, 0x55, 0x42, 0x50, 0x84, 0x5a, - 0x22, 0x15, 0xf5, 0x4d, 0x55, 0xfe, 0x81, 0x56, 0xbc, 0xa9, 0x8a, 0x4a, 0x55, 0xb5, 0x52, 0x0b, - 0x15, 0xf0, 0x8e, 0x17, 0x55, 0x5f, 0x57, 0xaa, 0xaa, 0x99, 0x79, 0xf6, 0x66, 0x76, 0x6f, 0xf7, - 0x76, 0xf6, 0xb2, 0x06, 0xbf, 0xb2, 0x67, 0x6e, 0x7e, 0x7c, 0x3e, 0xcf, 0xf3, 0xcc, 0x33, 0x33, - 0xcf, 0x3c, 0x77, 0xf8, 0xf6, 0x72, 0xc5, 0xb5, 0xea, 0x15, 0x43, 0x7f, 0xa1, 0x61, 0xda, 0xeb, - 0xf9, 0xba, 0x6d, 0xb9, 0x16, 0xb9, 0x13, 0x2a, 0xf3, 0x81, 0xbf, 0xb9, 0x7d, 0x65, 0xcb, 0x2a, - 0x57, 0x4d, 0xdd, 0xa8, 0x57, 0x74, 0xa3, 0x56, 0xb3, 0x5c, 0xc3, 0xad, 0x58, 0x35, 0x87, 0x77, - 0xcb, 0x4d, 0x2c, 0x59, 0xce, 0xaa, 0xe5, 0xe8, 0x8b, 0x86, 0x63, 0xf2, 0xf1, 0xf4, 0xb5, 0x23, - 0x8b, 0xa6, 0x6b, 0x1c, 0xd1, 0xeb, 0x46, 0xb9, 0x52, 0x63, 0x8d, 0xa1, 0x2d, 0xf1, 0xe6, 0x75, - 0x0d, 0x67, 0x05, 0xea, 0xf6, 0x78, 0x75, 0x8b, 0xb6, 0x51, 0x5b, 0x5a, 0x86, 0xda, 0xdb, 0x44, - 0xcb, 0x72, 0xb0, 0xe1, 0xaa, 0xb9, 0xba, 0x68, 0xda, 0x6d, 0xdd, 0xad, 0x46, 0xcd, 0x5d, 0x6f, - 0xd5, 0x5a, 0x65, 0x8b, 0xfd, 0xab, 0xd3, 0xff, 0xa0, 0x76, 0xaf, 0xd7, 0xd6, 0x36, 0xab, 0xa6, - 0xe1, 0x98, 0x50, 0x7d, 0x97, 0x57, 0x5d, 0x6f, 0x54, 0xab, 0x45, 0xf3, 0x85, 0x86, 0xe9, 0xb8, - 0x41, 0x18, 0x25, 0xa3, 0x6d, 0x90, 0x25, 0x6b, 0x75, 0xd5, 0xac, 0x79, 0x2d, 0x5b, 0x22, 0xad, - 0x38, 0x4e, 0xc3, 0x1b, 0x39, 0x2b, 0x26, 0xac, 0x5b, 0x4e, 0xc5, 0xb5, 0x3c, 0x61, 0x0b, 0x49, - 0x34, 0x9c, 0x16, 0x95, 0xd6, 0x10, 0x2f, 0x2e, 0x5b, 0x15, 0x4f, 0xbc, 0x43, 0xb2, 0x78, 0x3d, - 0xc1, 0x2e, 0x59, 0x15, 0x10, 0xa9, 0x76, 0x0c, 0x67, 0x9f, 0xa4, 0x42, 0x7f, 0xca, 0x74, 0x5c, - 0xb3, 0x54, 0x58, 0xa5, 0x52, 0x00, 0x0e, 0x24, 0x8b, 0x07, 0x8c, 0x52, 0xc9, 0x36, 0x1d, 0x27, - 0x8b, 0x86, 0xd1, 0xf8, 0x60, 0xd1, 0x2b, 0x6a, 0xd7, 0x7b, 0xf0, 0x5d, 0x21, 0xdd, 0x9c, 0xba, - 0x55, 0x73, 0xcc, 0xe8, 0x7e, 0x64, 0x11, 0xf7, 0x1b, 0xac, 0x6d, 0xb6, 0x67, 0x18, 0x8d, 0xef, - 0x98, 0xbe, 0x2b, 0xcf, 0xe1, 0xe5, 0x29, 0xbc, 0x3c, 0xc0, 0xcb, 0xcf, 0x5a, 0x95, 0xda, 0x8c, - 0xfe, 0xe1, 0x27, 0xfb, 0xb7, 0xbd, 0xf4, 0xe9, 0xfe, 0xb1, 0x72, 0xc5, 0x5d, 0x6e, 0x2c, 0xe6, - 0x97, 0xac, 0x55, 0x1d, 0xb8, 0xf0, 0x3f, 0x53, 0x4e, 0x69, 0x45, 0x77, 0xd7, 0xeb, 0xa6, 0xc3, - 0x3a, 0x14, 0x61, 0x64, 0xe2, 0xe2, 0xdd, 0xe6, 0x35, 0xd3, 0x5e, 0xaa, 0x38, 0x1e, 0xb0, 0x6c, - 0x26, 0xf5, 0xc9, 0x82, 0x53, 0x68, 0x4d, 0x3c, 0xc5, 0x04, 0x32, 0xbb, 0x6c, 0x2e, 0xad, 0x9c, - 0x77, 0x2d, 0xdb, 0x28, 0x9b, 0xe7, 0x6c, 0x6b, 0xad, 0x52, 0x32, 0xed, 0x42, 0xc3, 0x5d, 0xb6, - 0xec, 0xca, 0x37, 0x99, 0x29, 0x7b, 0xc2, 0x1d, 0xc6, 0x3b, 0xa8, 0xee, 0x0a, 0x3e, 0x41, 0xc9, - 0x55, 0x64, 0x1c, 0xef, 0xae, 0x7b, 0x23, 0x40, 0xab, 0x1e, 0xd6, 0x2a, 0x58, 0xad, 0x3d, 0x87, - 0xf3, 0xaa, 0x93, 0x83, 0x8a, 0x26, 0xf1, 0x6d, 0xcb, 0xc6, 0x9a, 0xe9, 0xfb, 0x90, 0x61, 0xd8, - 0x5e, 0x6c, 0xff, 0x40, 0x3b, 0x84, 0x6f, 0x67, 0xe3, 0xcf, 0x9b, 0xee, 0x05, 0xc3, 0x59, 0xf1, - 0x28, 0xec, 0xc2, 0x3d, 0x95, 0x12, 0xeb, 0xd5, 0x5b, 0xec, 0xa9, 0x94, 0xb4, 0xb3, 0x78, 0x8f, - 0xbf, 0x19, 0x4c, 0x76, 0x02, 0xf7, 0xd2, 0x32, 0x6b, 0xb9, 0x63, 0xfa, 0x9e, 0x7c, 0x84, 0xa3, - 0xc8, 0xd3, 0x46, 0x33, 0xbd, 0x54, 0x15, 0x45, 0xd6, 0x41, 0xfb, 0x06, 0xcc, 0x5b, 0xa8, 0x56, - 0xe5, 0x79, 0xe7, 0x30, 0x16, 0xae, 0x01, 0x46, 0x1d, 0xf5, 0x29, 0x97, 0xfb, 0x25, 0x4f, 0xc5, - 0xe7, 0x8c, 0xb2, 0x09, 0x7d, 0x8b, 0x52, 0x4f, 0xed, 0x0d, 0x04, 0x80, 0x5b, 0xe3, 0xb7, 0x01, - 0xce, 0x24, 0x02, 0x4c, 0xe6, 0x7d, 0xc8, 0xb8, 0x8d, 0x8f, 0xc5, 0x22, 0xe3, 0xb3, 0xfa, 0xa0, - 0x35, 0xf0, 0x98, 0xd0, 0xe8, 0x7c, 0xc5, 0x3d, 0x6f, 0xda, 0x6b, 0x5f, 0x81, 0x21, 0x3d, 0x8d, - 0xc7, 0xe3, 0xa7, 0xed, 0xca, 0x84, 0x9e, 0xc7, 0x7b, 0x3d, 0x51, 0xcf, 0x30, 0x47, 0x9d, 0xb6, - 0x32, 0xdf, 0x42, 0xf8, 0x8e, 0xe0, 0x0c, 0x80, 0xf4, 0x14, 0xee, 0xe7, 0x35, 0xa0, 0xd0, 0xfd, - 0x91, 0x0a, 0xe5, 0xcd, 0x40, 0xa5, 0xd0, 0x29, 0x3d, 0xa5, 0xae, 0xe3, 0xfd, 0xde, 0xfa, 0x28, - 0xb6, 0x1c, 0xba, 0x5f, 0x1a, 0x62, 0x49, 0x0d, 0xd2, 0x25, 0x45, 0x46, 0xf1, 0x2e, 0xe1, 0xfb, - 0xff, 0xdf, 0x58, 0x35, 0x41, 0x73, 0x81, 0x5a, 0x32, 0x84, 0x31, 0xdf, 0xff, 0x58, 0x9b, 0x0c, - 0x6b, 0x23, 0xd5, 0x68, 0x06, 0x1e, 0x8e, 0x9e, 0x3a, 0x44, 0x4c, 0x28, 0xb1, 0x98, 0xb4, 0x6f, - 0x61, 0x2d, 0x6a, 0x8a, 0xf3, 0xcb, 0xc6, 0x66, 0x13, 0x3c, 0x81, 0x0f, 0x76, 0x9c, 0x1d, 0x38, - 0xde, 0x8a, 0x33, 0xce, 0xb2, 0x01, 0xf3, 0xd3, 0x7f, 0xb5, 0xb7, 0x11, 0x68, 0xa5, 0x40, 0x37, - 0xef, 0x74, 0xb5, 0xe2, 0xb7, 0xed, 0x4c, 0xd7, 0xb6, 0x7d, 0x03, 0x81, 0xfa, 0x42, 0x31, 0x6e, - 0x31, 0x2b, 0x7f, 0x16, 0x13, 0xe1, 0x54, 0xcb, 0x69, 0x2f, 0xf3, 0x1f, 0x21, 0x79, 0x4f, 0x28, - 0xb7, 0xd8, 0x1f, 0xc3, 0x99, 0x0b, 0x46, 0x19, 0xa8, 0xef, 0xeb, 0xe0, 0xb1, 0xcb, 0xc0, 0x9b, - 0x36, 0x4f, 0x8f, 0x74, 0x1d, 0xef, 0x6b, 0x37, 0x3f, 0x89, 0x7e, 0xb7, 0x16, 0x94, 0xc5, 0x03, - 0xae, 0x51, 0x96, 0x6c, 0xde, 0x2b, 0x6a, 0x17, 0xf1, 0x3d, 0x11, 0x33, 0x06, 0x25, 0x82, 0x12, - 0x48, 0x44, 0x73, 0xc2, 0x7c, 0xd4, 0x05, 0xa3, 0x9c, 0xc2, 0x12, 0x8e, 0xe6, 0x72, 0x2c, 0xcc, - 0x3b, 0x79, 0x93, 0x46, 0xae, 0xdc, 0x37, 0x11, 0x08, 0xdd, 0xb7, 0x2a, 0x52, 0x10, 0x7a, 0x5a, - 0xcb, 0xf6, 0x4d, 0x04, 0x3a, 0x6a, 0x07, 0xb8, 0x35, 0xac, 0xf6, 0x71, 0x38, 0xfc, 0xcf, 0x9b, - 0xee, 0x69, 0xc3, 0x3a, 0xc3, 0xee, 0x45, 0x9e, 0xf0, 0xf6, 0xe0, 0xbe, 0x92, 0x61, 0x2d, 0x78, - 0xf2, 0xe3, 0x05, 0x72, 0x07, 0xee, 0xa7, 0x27, 0x8b, 0x85, 0x12, 0x88, 0x0e, 0x4a, 0xda, 0x65, - 0xb8, 0x0f, 0xf8, 0x47, 0x12, 0x9e, 0x89, 0xd7, 0xc4, 0x6e, 0x2c, 0xbc, 0x99, 0xe7, 0x99, 0x78, - 0x49, 0xbb, 0x06, 0x28, 0x0b, 0xd5, 0xaa, 0x22, 0xca, 0xb9, 0x10, 0x01, 0x75, 0xa3, 0xc0, 0x77, - 0x10, 0xd0, 0xf2, 0x4f, 0x1d, 0x42, 0x2b, 0x93, 0x98, 0x56, 0x7a, 0x5a, 0x94, 0x8e, 0x56, 0x7e, - 0xe1, 0x6c, 0xc6, 0xd1, 0x6a, 0x8b, 0xca, 0x60, 0x0c, 0x64, 0x30, 0x6f, 0xba, 0x33, 0xec, 0x22, - 0x1f, 0x75, 0x47, 0xb9, 0x04, 0x54, 0xa4, 0x86, 0xd2, 0xfe, 0xc9, 0x6a, 0xe2, 0x8f, 0x3f, 0xac, - 0x59, 0x6b, 0xff, 0x64, 0x25, 0xdf, 0x01, 0xd7, 0x87, 0x60, 0x53, 0x0e, 0xb8, 0xd1, 0xd0, 0x33, - 0x89, 0xa1, 0xa7, 0xa7, 0x85, 0x6f, 0x23, 0x7c, 0xaf, 0x27, 0xdd, 0x73, 0x22, 0x18, 0x72, 0xc6, - 0xb4, 0xcb, 0xe6, 0x39, 0xd3, 0x5e, 0xad, 0x38, 0x8e, 0x74, 0x71, 0x11, 0xbe, 0x04, 0xc9, 0xbe, - 0x84, 0x68, 0x78, 0xa7, 0x70, 0xc8, 0xe0, 0x69, 0x7a, 0x8b, 0xbe, 0x3a, 0xba, 0x97, 0xd4, 0x1b, - 0xd5, 0xea, 0x42, 0xa5, 0xc4, 0xfc, 0x73, 0x6f, 0xd1, 0x2b, 0x6a, 0x17, 0xf0, 0x84, 0x0a, 0x04, - 0x90, 0xdc, 0x28, 0xde, 0x45, 0xef, 0x2a, 0xe2, 0x13, 0xb8, 0xc1, 0x04, 0x6a, 0xb5, 0x71, 0x61, - 0x36, 0x45, 0x1e, 0xfc, 0x89, 0x32, 0xb0, 0x8b, 0xf8, 0xce, 0xb6, 0x96, 0x30, 0xd9, 0x49, 0x3c, - 0x00, 0x55, 0x60, 0x06, 0xc3, 0x91, 0x7a, 0xf2, 0xba, 0x7a, 0x1d, 0xb4, 0x2b, 0x42, 0xf9, 0x01, - 0x00, 0x69, 0xd9, 0xd7, 0x9b, 0x08, 0x90, 0xcb, 0x53, 0x84, 0x21, 0xcf, 0x24, 0x42, 0x9e, 0x9e, - 0x75, 0x4d, 0xe2, 0x5c, 0x88, 0x66, 0xa3, 0xf4, 0x60, 0xe2, 0xbb, 0x43, 0x5b, 0x03, 0xa3, 0x39, - 0xbc, 0x43, 0xaa, 0x06, 0xb1, 0x8d, 0x44, 0xb2, 0x92, 0x87, 0x90, 0x3b, 0x6a, 0x25, 0x00, 0x55, - 0xa8, 0x56, 0x43, 0x40, 0xa5, 0xa5, 0x9b, 0xf7, 0x11, 0xb0, 0x09, 0x4e, 0x13, 0xc5, 0x26, 0xd3, - 0x15, 0x9b, 0xf4, 0x74, 0x35, 0x02, 0x97, 0x00, 0x7e, 0x1e, 0x88, 0x38, 0x90, 0x69, 0x8f, 0x89, - 0xb8, 0x12, 0x6b, 0x05, 0x6c, 0xf2, 0x38, 0x53, 0x32, 0xac, 0xd8, 0x93, 0x2b, 0xed, 0x42, 0x1b, - 0xca, 0x37, 0x0e, 0x69, 0xb2, 0xb4, 0x64, 0xff, 0x3d, 0xe9, 0xc6, 0x11, 0x8a, 0x32, 0xa3, 0x84, - 0x32, 0x3d, 0xd9, 0x6e, 0x08, 0xcb, 0x5e, 0x70, 0x9c, 0x86, 0x39, 0xcb, 0x03, 0xc9, 0x1e, 0xef, - 0xa0, 0xfb, 0x44, 0x21, 0xee, 0x33, 0x87, 0xb7, 0xb3, 0x38, 0x33, 0xf5, 0x9f, 0xdc, 0xbd, 0xb6, - 0xca, 0xf4, 0xa6, 0x0d, 0xa1, 0x69, 0xe1, 0x5d, 0xa5, 0x1a, 0xed, 0xb2, 0xb8, 0xea, 0xf8, 0xa7, - 0x17, 0xbe, 0x02, 0xaa, 0x62, 0xbd, 0x9c, 0xd7, 0xd5, 0xeb, 0xa0, 0x5d, 0x47, 0xf8, 0x40, 0xc8, - 0xaa, 0xed, 0x82, 0xe1, 0x28, 0xde, 0x25, 0x85, 0xe3, 0x05, 0xcf, 0x40, 0x6d, 0x2c, 0xdb, 0x2b, - 0x22, 0xaa, 0x11, 0x06, 0x28, 0x05, 0xce, 0x92, 0x67, 0x0f, 0xf0, 0xdc, 0x0c, 0xcf, 0xde, 0x11, - 0x79, 0x26, 0x11, 0xf2, 0xf4, 0x2c, 0xfa, 0x5d, 0xc9, 0xbd, 0x6d, 0x86, 0x49, 0xa7, 0x75, 0xa1, - 0x7b, 0x47, 0xba, 0x71, 0xc6, 0xdb, 0xfe, 0xd7, 0x25, 0xcd, 0xdf, 0x78, 0x8b, 0xc8, 0xbf, 0x59, - 0x6c, 0xe2, 0x22, 0x4a, 0x4b, 0xbe, 0xef, 0x21, 0x58, 0x6d, 0x11, 0xc8, 0xb7, 0x92, 0x94, 0x9f, - 0x13, 0x6f, 0x07, 0xcc, 0x14, 0xd2, 0x5e, 0xb4, 0xaf, 0x23, 0x71, 0xa1, 0x80, 0x09, 0x5a, 0x41, - 0x83, 0x3e, 0x56, 0x01, 0xe4, 0x87, 0x22, 0xc9, 0xf3, 0x6e, 0xbc, 0x71, 0x7a, 0xc4, 0xaf, 0xe0, - 0x51, 0xcf, 0x23, 0xfe, 0x9f, 0xe1, 0xb2, 0x53, 0x88, 0x67, 0x32, 0x91, 0x47, 0xe3, 0x44, 0xf1, - 0x17, 0xcd, 0x84, 0xc7, 0x8f, 0x4e, 0x33, 0xa4, 0x70, 0xa4, 0x76, 0xc3, 0xa2, 0x4e, 0xe9, 0x50, - 0xe8, 0x10, 0xeb, 0x7a, 0x5e, 0xec, 0x70, 0x9b, 0x43, 0xeb, 0x67, 0xa1, 0xc1, 0xe2, 0x94, 0x78, - 0xa5, 0xb5, 0xd2, 0x7f, 0x21, 0xf9, 0x28, 0x45, 0x31, 0x7c, 0x5d, 0xd7, 0x0e, 0x17, 0x0f, 0xb5, - 0x2b, 0xcc, 0xb7, 0xe4, 0xbb, 0x15, 0xa6, 0xbc, 0x65, 0x65, 0xfc, 0x5b, 0x96, 0x76, 0x29, 0x2c, - 0x0e, 0x1b, 0xe9, 0x07, 0x90, 0xb2, 0x1f, 0xd0, 0xae, 0xe1, 0x91, 0xf6, 0x81, 0x3b, 0xde, 0xa7, - 0x12, 0x5b, 0x7e, 0xc4, 0xcd, 0xdc, 0xc2, 0x87, 0x62, 0x66, 0x4e, 0xf9, 0x6e, 0xf6, 0x29, 0x02, - 0xd5, 0xf9, 0x8c, 0x2c, 0x15, 0xd5, 0x9d, 0xc2, 0xfd, 0x56, 0x5d, 0x5a, 0x03, 0x87, 0x3a, 0x0b, - 0xff, 0x2c, 0x6b, 0xeb, 0x14, 0xa1, 0x53, 0x60, 0x19, 0xf5, 0x76, 0xbd, 0x8c, 0xbe, 0xd3, 0x83, - 0x77, 0xca, 0x13, 0x90, 0x7d, 0x78, 0x70, 0xc9, 0x36, 0x0d, 0xd7, 0x2c, 0xcd, 0xac, 0x03, 0x2d, - 0x51, 0x41, 0xf6, 0xe0, 0x3e, 0xc7, 0x35, 0x5c, 0x8f, 0x14, 0x2f, 0x90, 0x3b, 0x70, 0x7f, 0xd5, - 0x58, 0x34, 0xab, 0x0e, 0xb8, 0x2a, 0x28, 0x51, 0xf3, 0x34, 0x1c, 0xa7, 0x52, 0xae, 0x99, 0x26, - 0x83, 0x38, 0x58, 0x6c, 0x95, 0xe9, 0x67, 0xac, 0xd5, 0x42, 0xc9, 0xc9, 0xf6, 0x0d, 0x67, 0xa8, - 0xe9, 0x7a, 0x65, 0x42, 0x70, 0xaf, 0x63, 0xd9, 0x6e, 0xb6, 0x9f, 0xf5, 0x61, 0xff, 0xd3, 0x39, - 0x1c, 0xd3, 0xb0, 0x97, 0x96, 0xb3, 0x03, 0x7c, 0x0e, 0x5e, 0xa2, 0xa7, 0x90, 0x46, 0xbd, 0x44, - 0xe1, 0x15, 0xae, 0xba, 0xa6, 0x9d, 0xdd, 0x3e, 0x8c, 0xc6, 0x33, 0x45, 0x5f, 0x1d, 0x19, 0xc1, - 0xb7, 0x40, 0x79, 0xc6, 0xbc, 0x6a, 0xd9, 0x66, 0x76, 0x90, 0x35, 0xf2, 0x57, 0x6a, 0x6f, 0x85, - 0xbe, 0xe3, 0x6d, 0xa9, 0x9d, 0xf3, 0x4b, 0x04, 0x6b, 0xcf, 0x07, 0x31, 0xc5, 0xb5, 0x37, 0x1b, - 0xb0, 0xca, 0xc3, 0x2a, 0x6b, 0x66, 0xb3, 0x6c, 0xf3, 0x46, 0x0f, 0x26, 0xed, 0xd3, 0x7c, 0x95, - 0x16, 0x6a, 0x9b, 0x6b, 0x15, 0xf3, 0x45, 0xd3, 0xce, 0xf6, 0xf1, 0xcf, 0xbc, 0xb2, 0xcf, 0x7a, - 0xfb, 0x23, 0xac, 0x77, 0x20, 0xd4, 0x7a, 0xb7, 0x77, 0xb4, 0xde, 0x41, 0x15, 0xeb, 0xc5, 0x61, - 0xd6, 0xfb, 0x01, 0x02, 0xe7, 0x18, 0x6d, 0x1a, 0x5b, 0x35, 0xd4, 0x73, 0x58, 0x3c, 0xfd, 0xc8, - 0x3b, 0x79, 0x78, 0x54, 0xce, 0x10, 0x31, 0x3c, 0xb9, 0x31, 0x70, 0x9b, 0xc5, 0x58, 0xd4, 0x82, - 0xdf, 0x3f, 0xd8, 0x61, 0xcb, 0x6f, 0x0d, 0x20, 0x75, 0xa3, 0x76, 0xb7, 0x4b, 0x14, 0xe7, 0x2c, - 0x7b, 0x85, 0xee, 0x49, 0xcc, 0xc4, 0x2c, 0xdb, 0x4b, 0x48, 0x83, 0x22, 0xe0, 0xeb, 0xf1, 0xf0, - 0x51, 0xed, 0xd7, 0xc4, 0xa1, 0x8d, 0xfd, 0x4f, 0x1e, 0xc6, 0x7d, 0xd6, 0x8b, 0x35, 0xd3, 0x86, - 0xb5, 0x30, 0xae, 0x00, 0xe8, 0x2c, 0x6d, 0x5f, 0xe4, 0xdd, 0xc8, 0x30, 0xde, 0x51, 0x32, 0x9d, - 0x25, 0xbb, 0xc2, 0x97, 0x26, 0x37, 0x46, 0xb9, 0x8a, 0xda, 0x57, 0xdd, 0xb0, 0xe9, 0x7d, 0xa6, - 0x9f, 0x21, 0x81, 0x12, 0x19, 0xc2, 0xf8, 0xaa, 0x65, 0xaf, 0x38, 0xb3, 0x2c, 0x8b, 0x6d, 0x80, - 0x07, 0x27, 0x44, 0x0d, 0x1d, 0x99, 0x1d, 0x18, 0xa0, 0xc1, 0x76, 0xd6, 0x40, 0xae, 0xa2, 0x23, - 0xd0, 0xed, 0x17, 0x1a, 0x0c, 0xf2, 0x11, 0x44, 0x8d, 0xf6, 0x06, 0x12, 0x81, 0xed, 0x42, 0xb5, - 0x4a, 0xa5, 0xb5, 0x55, 0x8e, 0x88, 0x6f, 0x23, 0x11, 0x49, 0x6f, 0x41, 0x6b, 0x3d, 0x78, 0xf4, - 0x31, 0x31, 0x80, 0xf9, 0x8f, 0x29, 0xa8, 0x84, 0xf5, 0xe7, 0xbd, 0xd2, 0xb3, 0xfd, 0x25, 0xf1, - 0x3e, 0xd8, 0x6e, 0xfb, 0x69, 0xdd, 0x04, 0x6f, 0x20, 0x11, 0x63, 0x56, 0x58, 0x34, 0x99, 0x2e, - 0x16, 0x4d, 0x7a, 0x12, 0x91, 0x52, 0x05, 0x2f, 0x3a, 0xe2, 0x29, 0x32, 0x18, 0xf9, 0x5d, 0x10, - 0xa9, 0x82, 0xbc, 0x19, 0x90, 0x39, 0x82, 0x7b, 0x69, 0x39, 0x36, 0x55, 0x90, 0x75, 0x62, 0x4d, - 0xb5, 0x6b, 0x22, 0x7e, 0x46, 0xcb, 0x52, 0x04, 0x38, 0xea, 0x81, 0x29, 0xad, 0xe7, 0xe1, 0x57, - 0xa5, 0xb8, 0x5a, 0x6b, 0xea, 0xaf, 0x3b, 0x3a, 0x2c, 0xe5, 0x4c, 0xca, 0x0a, 0x48, 0xcb, 0x18, - 0x5f, 0x95, 0x72, 0x26, 0x23, 0x34, 0x97, 0x51, 0xd4, 0x5c, 0x7a, 0x9c, 0xd7, 0x44, 0x58, 0xae, - 0x50, 0x5b, 0xef, 0xb4, 0x0b, 0x71, 0x57, 0x96, 0x96, 0x01, 0xfc, 0x52, 0x4a, 0xf0, 0x08, 0x4c, - 0xbc, 0x25, 0x17, 0xe7, 0x53, 0x22, 0x74, 0xaf, 0x24, 0x27, 0xd5, 0x80, 0x4d, 0x49, 0xe4, 0x22, - 0xa9, 0x89, 0xa1, 0xab, 0x8d, 0x7d, 0x42, 0xf8, 0x8c, 0x4b, 0xcb, 0x56, 0xc5, 0xf1, 0x50, 0x7b, - 0x7b, 0x36, 0x12, 0x7b, 0xb6, 0x76, 0x46, 0xe4, 0x03, 0x40, 0x5b, 0x71, 0x05, 0x60, 0x15, 0xb1, - 0x97, 0x66, 0xde, 0x8d, 0x37, 0x96, 0x83, 0x7d, 0xbe, 0xa9, 0x37, 0x23, 0xd8, 0x17, 0x89, 0x37, - 0xa3, 0x8c, 0x37, 0x35, 0x8b, 0x99, 0xfe, 0xe3, 0x63, 0xb8, 0x8f, 0x01, 0x23, 0xef, 0x23, 0xbc, - 0x53, 0xce, 0xf6, 0x27, 0x47, 0x22, 0xa1, 0x44, 0x7d, 0xa1, 0x20, 0x37, 0x9d, 0xa4, 0x0b, 0x47, - 0xa3, 0x9d, 0x78, 0xe9, 0xe3, 0x2f, 0x7e, 0xd8, 0x73, 0x84, 0xe8, 0xba, 0xf7, 0xf5, 0x86, 0xe0, - 0xdf, 0x35, 0xa9, 0x9b, 0xde, 0x84, 0xaf, 0x1a, 0x6c, 0x90, 0xeb, 0x88, 0x67, 0x71, 0x93, 0xc9, - 0xce, 0xb3, 0xfa, 0x93, 0xda, 0x73, 0x53, 0x8a, 0xad, 0x01, 0xde, 0x04, 0x83, 0x37, 0x42, 0xb4, - 0x48, 0x78, 0xae, 0xe1, 0xac, 0xe8, 0xcd, 0x4a, 0x69, 0x83, 0xbc, 0x82, 0xf0, 0x00, 0xed, 0x5c, - 0xa8, 0x56, 0xe3, 0x40, 0xf9, 0x33, 0xde, 0xe3, 0x40, 0x05, 0xf2, 0xd7, 0xb5, 0x43, 0x0c, 0xd4, - 0x7e, 0x72, 0x4f, 0x47, 0x50, 0xe4, 0x35, 0x84, 0x07, 0x79, 0xf6, 0x27, 0x45, 0x94, 0x8f, 0x9d, - 0xc3, 0x97, 0x14, 0x9b, 0xd3, 0x95, 0xdb, 0x03, 0xaa, 0x31, 0x86, 0xea, 0x00, 0xd9, 0x1f, 0x89, - 0x8a, 0xe7, 0xf3, 0x92, 0x4f, 0x10, 0xbe, 0x35, 0x98, 0xe6, 0x4a, 0x1e, 0x88, 0xd5, 0x4b, 0x44, - 0xf6, 0x6e, 0xee, 0x7f, 0xba, 0xe8, 0x09, 0x90, 0x2f, 0x32, 0xc8, 0x67, 0xc9, 0x99, 0x48, 0xc8, - 0x54, 0xb1, 0xd2, 0xd7, 0x73, 0xf4, 0xa6, 0xdf, 0x35, 0x6e, 0x00, 0x27, 0xbd, 0x29, 0x72, 0x95, - 0x37, 0xc8, 0x97, 0x08, 0xdf, 0x1e, 0x92, 0xa5, 0x4c, 0x1e, 0x4c, 0x8c, 0x54, 0xa4, 0x65, 0xe6, - 0x1e, 0xea, 0xae, 0x33, 0x30, 0x7d, 0x86, 0x31, 0x3d, 0x4f, 0x9e, 0x4c, 0x95, 0xa9, 0xee, 0x2c, - 0x1b, 0xe4, 0x4f, 0x21, 0x6c, 0xa9, 0xc1, 0x3d, 0x10, 0x6b, 0x40, 0x5d, 0x6a, 0xb4, 0x43, 0x96, - 0xb4, 0xf6, 0x38, 0xe3, 0x39, 0x43, 0x1e, 0xbd, 0x59, 0x9e, 0xe4, 0xbb, 0x08, 0xf7, 0x5f, 0x30, - 0xca, 0x94, 0xc9, 0x61, 0x85, 0xe5, 0xe9, 0x65, 0xa5, 0xe6, 0x26, 0xd5, 0x1a, 0x03, 0xde, 0x11, - 0x86, 0x77, 0x88, 0xec, 0xeb, 0xb0, 0x94, 0xcb, 0xe4, 0x0f, 0x08, 0xdf, 0xe2, 0xcb, 0x30, 0x25, - 0xc7, 0x13, 0x58, 0x83, 0x04, 0xee, 0xfe, 0xa4, 0xdd, 0x00, 0xe6, 0x59, 0x06, 0x73, 0x81, 0xcc, - 0x77, 0x2f, 0x56, 0xd7, 0x28, 0xeb, 0x4d, 0x78, 0x25, 0xd9, 0x20, 0x7f, 0xf3, 0xf9, 0x00, 0x9e, - 0x0b, 0x9c, 0xc8, 0x07, 0xf8, 0x72, 0x96, 0x13, 0xf9, 0x00, 0x7f, 0xe2, 0xb1, 0x76, 0x9e, 0x51, - 0x3b, 0x43, 0x9e, 0x48, 0x89, 0x1a, 0x5b, 0x13, 0x1f, 0x06, 0xe9, 0x51, 0x33, 0x3a, 0x9e, 0xc0, - 0xac, 0xd5, 0x75, 0x16, 0x95, 0x7c, 0xac, 0x3d, 0xc6, 0x88, 0x3d, 0x42, 0x4e, 0xdd, 0x14, 0x31, - 0xf2, 0x2b, 0x84, 0x07, 0x5b, 0xc9, 0xb1, 0x71, 0xa7, 0x82, 0x90, 0x4c, 0xe3, 0xb8, 0x53, 0x41, - 0x58, 0x4a, 0xb1, 0xf6, 0x10, 0xc3, 0x7e, 0x3f, 0x39, 0x16, 0x89, 0xbd, 0x64, 0x58, 0x7a, 0x93, - 0xa5, 0x03, 0x6f, 0xc0, 0x37, 0x3e, 0xf5, 0x26, 0xbf, 0xff, 0x6d, 0x90, 0x1b, 0x08, 0xef, 0x6c, - 0x8d, 0x49, 0x25, 0x7f, 0x24, 0x56, 0x84, 0x49, 0x51, 0x87, 0x65, 0x0c, 0x6b, 0x47, 0x19, 0xea, - 0x29, 0x72, 0x38, 0x01, 0x6a, 0xb6, 0x4b, 0x0b, 0xa4, 0xf1, 0xbb, 0xb4, 0x1f, 0xa6, 0xae, 0xdc, - 0x5e, 0x79, 0x97, 0x06, 0x5c, 0x3f, 0x46, 0x5e, 0xd6, 0x69, 0x1c, 0xa8, 0x60, 0x52, 0x6e, 0x1c, - 0xa8, 0xb6, 0xdc, 0x5c, 0x6d, 0x92, 0x81, 0x1a, 0x25, 0x23, 0xd1, 0x47, 0x07, 0xd6, 0x81, 0x9f, - 0xb3, 0xd8, 0xb9, 0x86, 0x95, 0x15, 0xcf, 0x35, 0x49, 0xc0, 0xb5, 0x65, 0xdf, 0xaa, 0x9c, 0x6b, - 0xb8, 0x98, 0x7e, 0x8a, 0x5a, 0xef, 0x99, 0x44, 0x57, 0x70, 0x48, 0xf2, 0x8b, 0x6d, 0xee, 0x3e, - 0xf5, 0x0e, 0x80, 0x6b, 0x8a, 0xe1, 0x1a, 0x23, 0x87, 0x22, 0x71, 0xc1, 0xf7, 0x98, 0xb9, 0xd4, - 0x7e, 0x82, 0xe8, 0x25, 0x8d, 0x55, 0x50, 0xb1, 0xe9, 0x0a, 0x5e, 0x25, 0x09, 0xc0, 0xf6, 0xac, - 0x52, 0x6d, 0x9c, 0x01, 0xd4, 0xc8, 0x70, 0x1c, 0x40, 0xf2, 0x1e, 0xc2, 0xbb, 0xa4, 0xe0, 0x35, - 0xc5, 0x77, 0x34, 0x76, 0xba, 0xf6, 0x87, 0x95, 0xdc, 0xb1, 0x64, 0x9d, 0x94, 0xad, 0x4f, 0xca, - 0x87, 0x21, 0x2f, 0x23, 0x9c, 0x39, 0x6d, 0x58, 0x71, 0x87, 0x02, 0x5f, 0x66, 0x64, 0x6e, 0x52, - 0xad, 0x31, 0x00, 0xba, 0x97, 0x01, 0x3a, 0x48, 0x0e, 0x74, 0xf6, 0x23, 0x54, 0xab, 0xf4, 0x94, - 0x72, 0xda, 0xb0, 0xd4, 0x4e, 0x29, 0xea, 0x80, 0xfc, 0xb9, 0x90, 0x0a, 0xa7, 0x94, 0x92, 0x61, - 0x91, 0xbf, 0x23, 0x78, 0xad, 0xf4, 0x92, 0x71, 0x8e, 0xc5, 0xb2, 0x0e, 0xc9, 0x06, 0xcb, 0x1d, - 0x4f, 0xd8, 0x0b, 0x30, 0x5e, 0x61, 0x18, 0x2f, 0x93, 0xa7, 0x3b, 0x58, 0x5b, 0xd8, 0x4e, 0x47, - 0x5d, 0x31, 0x0b, 0xa9, 0xeb, 0x4d, 0xef, 0x75, 0x7e, 0xc3, 0xfb, 0xf2, 0xbe, 0xde, 0x14, 0xa9, - 0x82, 0x1b, 0xe4, 0xdf, 0xc8, 0xf7, 0xe2, 0xe5, 0xb1, 0x3c, 0x19, 0x8b, 0x37, 0x32, 0x4b, 0x2b, - 0xf7, 0x60, 0x57, 0x7d, 0x81, 0x71, 0x95, 0x31, 0xbe, 0x4a, 0x4a, 0x5d, 0x30, 0xa6, 0x16, 0x6d, - 0xf3, 0x61, 0xf5, 0xa6, 0x3f, 0xdd, 0x2b, 0x82, 0x3d, 0xf5, 0x1f, 0x80, 0x40, 0xcd, 0x7f, 0x04, - 0xa8, 0xde, 0xa7, 0xde, 0x41, 0xd9, 0x7f, 0x00, 0x3e, 0xf2, 0x31, 0xc2, 0xbb, 0x65, 0xa3, 0xa0, - 0x00, 0xe3, 0x7d, 0x41, 0x17, 0xc6, 0x17, 0x91, 0x18, 0xa8, 0x70, 0x88, 0x4c, 0x6e, 0x7c, 0xe4, - 0x5f, 0x08, 0xef, 0x6d, 0x57, 0x3f, 0xe5, 0x76, 0x32, 0x89, 0x9f, 0x4b, 0x66, 0x72, 0x1d, 0x53, - 0xf3, 0xb4, 0xe7, 0x19, 0xcf, 0x67, 0xc8, 0xa5, 0x4d, 0x32, 0x39, 0xf2, 0x03, 0x84, 0xb7, 0x33, - 0x09, 0x53, 0x9a, 0x53, 0x6a, 0xca, 0xf0, 0x98, 0xe5, 0x55, 0x9b, 0x03, 0x99, 0x51, 0x46, 0x66, - 0x98, 0x0c, 0x45, 0x92, 0x61, 0x3a, 0x21, 0xff, 0x44, 0xf8, 0xce, 0xb6, 0x24, 0x26, 0x9e, 0xb9, - 0x46, 0x1e, 0x89, 0x5d, 0xc0, 0x9d, 0x93, 0xe8, 0x72, 0x8f, 0x76, 0x3f, 0x00, 0xd0, 0x78, 0x92, - 0xd1, 0x78, 0x82, 0x2c, 0x74, 0x7f, 0xce, 0x87, 0x7d, 0xd8, 0xd1, 0xab, 0x9c, 0xd5, 0x17, 0x08, - 0xdf, 0xd6, 0x36, 0x21, 0x49, 0x72, 0xc9, 0x0a, 0xb0, 0x3c, 0xd9, 0x4d, 0x57, 0xe0, 0xf7, 0x34, - 0xe3, 0x57, 0x24, 0xe7, 0x52, 0xe0, 0xe7, 0xbf, 0x84, 0xfe, 0x15, 0xe1, 0x3d, 0x6d, 0xf3, 0x52, - 0xc3, 0x4b, 0x12, 0x80, 0x48, 0xc6, 0xb4, 0x53, 0x3e, 0x9c, 0xf6, 0xbf, 0x8c, 0xe9, 0x69, 0x32, - 0x73, 0xf3, 0x4c, 0xc9, 0xef, 0x11, 0xde, 0x1d, 0xc8, 0x93, 0x21, 0x27, 0x12, 0x68, 0xc1, 0xb7, - 0xb2, 0x1e, 0x48, 0xde, 0x11, 0x28, 0xcd, 0x33, 0x4a, 0x05, 0xf2, 0x48, 0x67, 0x4a, 0x6d, 0x3c, - 0x82, 0x4e, 0x91, 0xfc, 0x16, 0x61, 0x12, 0x98, 0x84, 0x6a, 0xea, 0x44, 0x02, 0x71, 0x27, 0xa1, - 0x14, 0x9d, 0x65, 0xa4, 0x70, 0x37, 0xed, 0x40, 0x89, 0x1e, 0x92, 0xf6, 0x86, 0x66, 0x80, 0x90, - 0x53, 0x09, 0x84, 0x1c, 0x72, 0xf6, 0x7d, 0xb8, 0xdb, 0xee, 0xc9, 0xc2, 0x05, 0x6d, 0xb4, 0xa8, - 0x27, 0xe7, 0xfe, 0x9c, 0xe9, 0xe9, 0xcf, 0x08, 0x67, 0x43, 0x27, 0xa2, 0xda, 0x3a, 0x95, 0x40, - 0xe8, 0xc9, 0x29, 0xc6, 0xe5, 0xd6, 0x68, 0x0f, 0x32, 0x8a, 0xc7, 0xc9, 0xd1, 0x2e, 0x28, 0x92, - 0x9f, 0x23, 0xf9, 0x91, 0x8b, 0x4c, 0x27, 0xf2, 0x68, 0x1c, 0xff, 0xd1, 0x44, 0x7d, 0x00, 0xf4, - 0x7d, 0x0c, 0xf4, 0x04, 0x19, 0x57, 0xda, 0x72, 0xa9, 0x0a, 0xde, 0xf5, 0x45, 0x0b, 0xa9, 0xdc, - 0xa7, 0x13, 0x39, 0x25, 0x25, 0xb0, 0xa1, 0xc9, 0x0a, 0xda, 0x61, 0x06, 0xf6, 0x10, 0x39, 0xa8, - 0x00, 0x96, 0xfc, 0x1a, 0xe1, 0x81, 0x39, 0xcb, 0x5e, 0x51, 0x38, 0x4e, 0xb6, 0xa5, 0xaf, 0x28, - 0xdc, 0x97, 0x03, 0x49, 0x25, 0xaa, 0xae, 0xa8, 0x93, 0x77, 0xe5, 0xe9, 0x25, 0xd7, 0x11, 0x7f, - 0x0b, 0x57, 0x78, 0x79, 0x92, 0x9e, 0xe8, 0x15, 0x5e, 0x9e, 0xe4, 0x07, 0x77, 0x85, 0x97, 0xa7, - 0x86, 0x63, 0xda, 0x5c, 0xe3, 0xef, 0x20, 0x8c, 0x21, 0x43, 0x41, 0xed, 0x6c, 0xee, 0xcf, 0xa4, - 0x50, 0x38, 0x9b, 0x07, 0xf2, 0x1f, 0xb4, 0x69, 0x86, 0x6e, 0x92, 0x4c, 0xc4, 0xa0, 0x83, 0x90, - 0x1c, 0xbb, 0x1f, 0xbe, 0x82, 0xf0, 0x00, 0x1d, 0x47, 0xed, 0x7d, 0x2c, 0x81, 0xe8, 0x02, 0xb9, - 0x0a, 0x0a, 0xef, 0x63, 0x14, 0x16, 0xf9, 0x00, 0xe1, 0x5b, 0x7d, 0xef, 0xd9, 0x6a, 0x41, 0xda, - 0xb0, 0xa7, 0x75, 0x85, 0x20, 0x6d, 0xe8, 0xcb, 0xb9, 0x76, 0x9c, 0x41, 0xd5, 0xc9, 0x54, 0xbc, - 0x96, 0xe5, 0xa5, 0xf3, 0x3b, 0x84, 0x6f, 0xf1, 0x0d, 0xa8, 0xf0, 0x20, 0xd0, 0x0d, 0xee, 0xa8, - 0x17, 0x7f, 0x6d, 0x8e, 0xe1, 0x7e, 0x94, 0x3c, 0x9c, 0x08, 0x77, 0xdb, 0x8a, 0x22, 0xaf, 0x21, - 0x78, 0x00, 0x27, 0xf1, 0xcb, 0x43, 0x7e, 0x9a, 0xcf, 0xe5, 0x55, 0x9b, 0x2b, 0x47, 0xcb, 0xd8, - 0xcf, 0xea, 0xe9, 0xcd, 0x1a, 0xc3, 0x45, 0xef, 0x21, 0x6c, 0x00, 0xb5, 0x7b, 0x48, 0x12, 0x68, - 0xc1, 0x1c, 0x00, 0x85, 0x7b, 0x08, 0x83, 0x46, 0x5e, 0xee, 0xc1, 0xb9, 0xe8, 0xef, 0xbc, 0x93, - 0x99, 0x24, 0xb1, 0x84, 0xf0, 0xef, 0xec, 0xe7, 0x66, 0x6f, 0x6a, 0x0c, 0xe0, 0x53, 0x62, 0x7c, - 0x9e, 0x23, 0xcf, 0x46, 0xc7, 0xd3, 0x5a, 0x9d, 0x1c, 0xe1, 0x22, 0x3a, 0xdf, 0x1c, 0xc5, 0x11, - 0x43, 0x5f, 0xa5, 0xf3, 0x92, 0xff, 0x20, 0x7c, 0x77, 0x87, 0xdf, 0x31, 0x23, 0x31, 0x17, 0xab, - 0xf8, 0x5f, 0x5e, 0xcb, 0x15, 0x6e, 0x62, 0x04, 0x10, 0xc5, 0x65, 0x26, 0x8a, 0x0b, 0xa4, 0x18, - 0x29, 0x0a, 0x43, 0xee, 0xe7, 0xd0, 0xea, 0x29, 0x87, 0x0d, 0xc8, 0x05, 0x03, 0xbf, 0xdc, 0xb6, - 0xa1, 0x37, 0x03, 0xbf, 0xe5, 0xb6, 0x41, 0x5e, 0xef, 0xc1, 0x07, 0x62, 0x7f, 0x11, 0x90, 0xcc, - 0x29, 0x90, 0x50, 0xf8, 0x3d, 0xc3, 0xdc, 0xfc, 0x4d, 0x8f, 0xa3, 0x1c, 0xa7, 0x0b, 0x88, 0xc4, - 0xe1, 0xa3, 0x4e, 0x79, 0x02, 0x88, 0x13, 0xcc, 0xcc, 0xe9, 0x0f, 0x3f, 0x1b, 0x42, 0x1f, 0x7d, - 0x36, 0x84, 0xfe, 0xf1, 0xd9, 0x10, 0xfa, 0xfe, 0xe7, 0x43, 0xdb, 0x3e, 0xfa, 0x7c, 0x68, 0xdb, - 0x5f, 0x3e, 0x1f, 0xda, 0x76, 0x79, 0x42, 0xfa, 0xfd, 0xc7, 0xe0, 0xac, 0xd7, 0xc4, 0x8b, 0xeb, - 0x7a, 0xdd, 0x74, 0x16, 0xfb, 0xd9, 0x0f, 0x68, 0x1e, 0xfd, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, - 0xcc, 0x59, 0x8d, 0x06, 0x0d, 0x55, 0x00, 0x00, +func init() { proto.RegisterFile("gitopia/gitopia/query.proto", fileDescriptor_a22a96ec9485ca24) } + +var fileDescriptor_a22a96ec9485ca24 = []byte{ + // 3595 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5c, 0xdd, 0x6f, 0x5c, 0xc5, + 0x15, 0xcf, 0x78, 0xfd, 0x11, 0x4f, 0x42, 0x02, 0x43, 0x00, 0xb3, 0x24, 0x8e, 0x73, 0xe3, 0xd8, + 0xc6, 0xb1, 0xf7, 0x12, 0x27, 0x21, 0x34, 0x10, 0xc0, 0x76, 0xb0, 0x71, 0x69, 0x9a, 0xb0, 0x49, + 0x08, 0x44, 0x14, 0x72, 0xed, 0xbd, 0x59, 0xaf, 0xbc, 0xde, 0xbb, 0xdc, 0x7b, 0xd7, 0x24, 0xdd, + 0xfa, 0xa1, 0x3c, 0xb5, 0x42, 0x34, 0x2d, 0x2d, 0x94, 0xaa, 0x12, 0x82, 0x22, 0xd4, 0x12, 0xa9, + 0xa8, 0x2f, 0x55, 0xf9, 0x07, 0x5a, 0xf1, 0x52, 0x15, 0x95, 0xaa, 0x6a, 0xa5, 0x16, 0x2a, 0xe0, + 0x8d, 0x87, 0xaa, 0xcf, 0x95, 0xaa, 0x6a, 0x66, 0xce, 0xdd, 0x99, 0xfb, 0xb5, 0x77, 0xee, 0xe6, + 0x9a, 0xf8, 0xc9, 0x9e, 0xd9, 0x39, 0x33, 0xbf, 0xdf, 0x39, 0x67, 0xce, 0x7c, 0x9d, 0x5d, 0x7c, + 0x4f, 0xb9, 0xe2, 0x5a, 0xf5, 0x8a, 0xa1, 0x7b, 0x7f, 0x5f, 0x68, 0x98, 0xf6, 0xd5, 0x42, 0xdd, + 0xb6, 0x5c, 0x8b, 0xdc, 0x05, 0x95, 0x85, 0xc0, 0xdf, 0xfc, 0xee, 0xb2, 0x65, 0x95, 0xab, 0xa6, + 0x6e, 0xd4, 0x2b, 0xba, 0x51, 0xab, 0x59, 0xae, 0xe1, 0x56, 0xac, 0x9a, 0xc3, 0xc5, 0xf2, 0xe3, + 0x4b, 0x96, 0xb3, 0x6a, 0x39, 0xfa, 0xa2, 0xe1, 0x98, 0xbc, 0x3f, 0x7d, 0xed, 0xd0, 0xa2, 0xe9, + 0x1a, 0x87, 0xf4, 0xba, 0x51, 0xae, 0xd4, 0x58, 0x63, 0x68, 0x9b, 0x0f, 0x8e, 0xef, 0x1a, 0xce, + 0x0a, 0x7c, 0xb6, 0x3b, 0xf8, 0xd9, 0xa2, 0x6d, 0xd4, 0x96, 0x96, 0xe1, 0xd3, 0xbb, 0xc3, 0x92, + 0xe5, 0x38, 0xc1, 0x55, 0x73, 0x75, 0xd1, 0xb4, 0x63, 0xbb, 0xb5, 0x1a, 0x35, 0x17, 0x38, 0xe7, + 0x77, 0x95, 0xad, 0xb2, 0xc5, 0xfe, 0xd5, 0xe9, 0x7f, 0x50, 0xbb, 0x27, 0x28, 0x63, 0x9b, 0x55, + 0xd3, 0x70, 0x4c, 0xf8, 0x78, 0x5f, 0xf0, 0xe3, 0x7a, 0xa3, 0x5a, 0x2d, 0x9a, 0x2f, 0x34, 0x4c, + 0xc7, 0x8d, 0x83, 0x5b, 0x32, 0x62, 0x3b, 0x5f, 0xb2, 0x56, 0x57, 0xcd, 0x9a, 0x27, 0x19, 0x32, + 0x51, 0xc5, 0x71, 0x1a, 0xde, 0xc8, 0x43, 0x61, 0x60, 0x75, 0xcb, 0xa9, 0xb8, 0x96, 0x67, 0xc4, + 0xb0, 0x86, 0x1b, 0x4e, 0x4b, 0x15, 0xa1, 0xae, 0x5f, 0x5c, 0xb6, 0x2a, 0x9e, 0x19, 0x07, 0x65, + 0x33, 0x7a, 0x06, 0x5c, 0xb2, 0x2a, 0x60, 0x3a, 0xed, 0x08, 0x1e, 0x78, 0x92, 0x1a, 0xf7, 0x29, + 0xd3, 0x71, 0xcd, 0xd2, 0xf4, 0x2a, 0xd5, 0x22, 0x70, 0x26, 0x03, 0xb8, 0xcf, 0x28, 0x95, 0x6c, + 0xd3, 0x71, 0x06, 0xd0, 0x10, 0x1a, 0xeb, 0x2f, 0x7a, 0x45, 0xed, 0x5a, 0x17, 0xbe, 0x3b, 0x42, + 0xcc, 0xa9, 0x5b, 0x35, 0xc7, 0x8c, 0x97, 0x23, 0x8b, 0xb8, 0xd7, 0x60, 0x6d, 0x07, 0xba, 0x86, + 0xd0, 0xd8, 0xb6, 0xa9, 0xbb, 0x0b, 0x1c, 0x5e, 0x81, 0xc2, 0x2b, 0x00, 0xbc, 0xc2, 0xac, 0x55, + 0xa9, 0xcd, 0xe8, 0x1f, 0x7e, 0xb2, 0x77, 0xcb, 0x4b, 0x9f, 0xee, 0x1d, 0x2d, 0x57, 0xdc, 0xe5, + 0xc6, 0x62, 0x61, 0xc9, 0x5a, 0xd5, 0x81, 0x0b, 0xff, 0x33, 0xe9, 0x94, 0x56, 0x74, 0xf7, 0x6a, + 0xdd, 0x74, 0x98, 0x40, 0x11, 0x7a, 0x26, 0x2e, 0xde, 0x69, 0x5e, 0x31, 0xed, 0xa5, 0x8a, 0xe3, + 0x01, 0x1b, 0xc8, 0x65, 0x3e, 0x58, 0x70, 0x08, 0xad, 0x89, 0x27, 0x99, 0x42, 0x66, 0x97, 0xcd, + 0xa5, 0x95, 0xb3, 0xae, 0x65, 0x1b, 0x65, 0xf3, 0x8c, 0x6d, 0xad, 0x55, 0x4a, 0xa6, 0x3d, 0xdd, + 0x70, 0x97, 0x2d, 0xbb, 0xf2, 0x6d, 0x36, 0x65, 0x3c, 0xe5, 0x0e, 0xe1, 0x6d, 0xd4, 0x86, 0xd3, + 0x3e, 0x45, 0xc9, 0x55, 0x64, 0x0c, 0xef, 0xac, 0x7b, 0x3d, 0x40, 0xab, 0x2e, 0xd6, 0x2a, 0x58, + 0xad, 0x3d, 0x87, 0x0b, 0xaa, 0x83, 0x83, 0x89, 0x26, 0xf0, 0x6d, 0xcb, 0xc6, 0x9a, 0xe9, 0xfb, + 0x90, 0x61, 0xd8, 0x5a, 0x0c, 0x7f, 0xa0, 0x1d, 0xc0, 0xb7, 0xb3, 0xfe, 0xe7, 0x4d, 0xf7, 0x9c, + 0xe1, 0xac, 0x78, 0x14, 0x76, 0xe0, 0xae, 0x4a, 0x89, 0x49, 0x75, 0x17, 0xbb, 0x2a, 0x25, 0xed, + 0x34, 0xde, 0xe5, 0x6f, 0x06, 0x83, 0x1d, 0xc3, 0xdd, 0xb4, 0xcc, 0x5a, 0x6e, 0x9b, 0xda, 0x53, + 0x88, 0x09, 0x48, 0x05, 0xda, 0x68, 0xa6, 0x9b, 0x9a, 0xa2, 0xc8, 0x04, 0xb4, 0x6f, 0xc1, 0xb8, + 0xd3, 0xd5, 0xaa, 0x3c, 0xee, 0x1c, 0xc6, 0x22, 0x04, 0x41, 0xaf, 0x23, 0x3e, 0xe3, 0xf2, 0xf8, + 0xe7, 0x99, 0xf8, 0x8c, 0x51, 0x36, 0x41, 0xb6, 0x28, 0x49, 0x6a, 0x6f, 0x20, 0x00, 0xdc, 0xea, + 0x3f, 0x04, 0x38, 0x97, 0x0a, 0x30, 0x99, 0xf7, 0x21, 0xe3, 0x3e, 0x3e, 0x9a, 0x88, 0x8c, 0x8f, + 0xea, 0x83, 0xd6, 0xc0, 0xa3, 0xc2, 0xa2, 0xf3, 0x15, 0xf7, 0xac, 0x69, 0xaf, 0x7d, 0x05, 0x8e, + 0xf4, 0x34, 0x1e, 0x4b, 0x1e, 0xb6, 0x23, 0x17, 0x7a, 0x1e, 0xdf, 0xe1, 0xa9, 0x7a, 0x86, 0x2d, + 0x00, 0x59, 0x1b, 0xf3, 0x2d, 0x84, 0xef, 0x0c, 0x8e, 0x00, 0x48, 0x4f, 0xe0, 0x5e, 0x5e, 0x03, + 0x06, 0xdd, 0x1b, 0x6b, 0x50, 0xde, 0x0c, 0x4c, 0x0a, 0x42, 0xd9, 0x19, 0xf5, 0x2a, 0xde, 0xeb, + 0xcd, 0x8f, 0x62, 0x2b, 0xc0, 0xfb, 0xb5, 0x21, 0xa6, 0x54, 0x3f, 0x9d, 0x52, 0x64, 0x04, 0xef, + 0x10, 0x6b, 0xc1, 0x37, 0x8d, 0x55, 0x13, 0x2c, 0x17, 0xa8, 0x25, 0x83, 0x18, 0xf3, 0x75, 0x95, + 0xb5, 0xc9, 0xb1, 0x36, 0x52, 0x8d, 0x66, 0xe0, 0xa1, 0xf8, 0xa1, 0x23, 0xd4, 0x84, 0x52, 0xab, + 0x49, 0xfb, 0x0e, 0xd6, 0xe2, 0x86, 0x38, 0xbb, 0x6c, 0x6c, 0x34, 0xc1, 0x63, 0x78, 0x7f, 0xdb, + 0xd1, 0x81, 0xe3, 0xad, 0x38, 0xe7, 0x2c, 0x1b, 0x30, 0x3e, 0xfd, 0x57, 0x7b, 0x1b, 0x81, 0x55, + 0xa6, 0xe9, 0x62, 0x9f, 0xad, 0x55, 0xfc, 0xbe, 0x9d, 0xeb, 0xd8, 0xb7, 0xaf, 0x23, 0x30, 0x5f, + 0x24, 0xc6, 0x4d, 0xe6, 0xe5, 0xcf, 0x62, 0x22, 0x82, 0x6a, 0x39, 0xeb, 0x69, 0xfe, 0x13, 0x24, + 0xaf, 0x09, 0xe5, 0x16, 0xfb, 0x23, 0x38, 0x77, 0xce, 0x28, 0x03, 0xf5, 0xdd, 0x6d, 0x22, 0x76, + 0x19, 0x78, 0xd3, 0xe6, 0xd9, 0x91, 0xae, 0xe3, 0xdd, 0x61, 0xf7, 0x93, 0xe8, 0x77, 0xea, 0x41, + 0x03, 0xb8, 0xcf, 0x35, 0xca, 0x92, 0xcf, 0x7b, 0x45, 0xed, 0x3c, 0xde, 0x13, 0x33, 0x62, 0x50, + 0x23, 0x28, 0x85, 0x46, 0x34, 0x27, 0x2a, 0x46, 0x9d, 0x33, 0xca, 0x19, 0x4c, 0xe1, 0x78, 0x2e, + 0x47, 0xa2, 0xa2, 0x93, 0x37, 0x68, 0xec, 0xcc, 0x7d, 0x13, 0x81, 0xd2, 0x7d, 0xb3, 0x22, 0x03, + 0xa5, 0x67, 0x35, 0x6d, 0xdf, 0x44, 0x60, 0xa3, 0x30, 0xc0, 0xcd, 0xe1, 0xb5, 0x8f, 0xc3, 0xe6, + 0x7f, 0xde, 0x74, 0x4f, 0x1a, 0xd6, 0x29, 0x76, 0xbe, 0xf2, 0x94, 0xb7, 0x0b, 0xf7, 0x94, 0x0c, + 0x6b, 0xc1, 0xd3, 0x1f, 0x2f, 0x90, 0x3b, 0x71, 0x2f, 0xdd, 0x59, 0x2c, 0x94, 0x40, 0x75, 0x50, + 0xd2, 0x2e, 0xc2, 0x79, 0xc0, 0xdf, 0x93, 0x88, 0x4c, 0xbc, 0x26, 0x71, 0x61, 0xe1, 0xcd, 0xbc, + 0xc8, 0xc4, 0x4b, 0xda, 0x15, 0x40, 0x39, 0x5d, 0xad, 0x2a, 0xa2, 0x9c, 0x8b, 0x50, 0x50, 0x27, + 0x06, 0x7c, 0x07, 0x01, 0x2d, 0xff, 0xd0, 0x11, 0xb4, 0x72, 0xa9, 0x69, 0x65, 0x67, 0x45, 0x69, + 0x6b, 0xe5, 0x57, 0xce, 0x46, 0x6c, 0xad, 0x36, 0xa9, 0x0e, 0x46, 0x41, 0x07, 0xf3, 0xa6, 0x3b, + 0xc3, 0x2e, 0x02, 0xe2, 0xce, 0x28, 0x17, 0x80, 0x8a, 0xd4, 0x50, 0x5a, 0x3f, 0x59, 0x4d, 0xf2, + 0xf6, 0x87, 0x35, 0x6b, 0xad, 0x9f, 0xac, 0xe4, 0xdb, 0xe0, 0xfa, 0x10, 0x6c, 0xc8, 0x06, 0x37, + 0x1e, 0x7a, 0x2e, 0x35, 0xf4, 0xec, 0xac, 0xf0, 0x5d, 0x84, 0xef, 0xf5, 0xb4, 0x7b, 0x46, 0x5c, + 0x9e, 0x9c, 0x32, 0xed, 0xb2, 0x79, 0xc6, 0xb4, 0x57, 0x2b, 0x8e, 0x23, 0x1d, 0x5c, 0x44, 0x2c, + 0x41, 0x72, 0x2c, 0x21, 0x1a, 0xde, 0x2e, 0x02, 0x32, 0x44, 0x9a, 0xee, 0xa2, 0xaf, 0x8e, 0xae, + 0x25, 0xf5, 0x46, 0xb5, 0xba, 0x50, 0x29, 0xb1, 0xf8, 0xdc, 0x5d, 0xf4, 0x8a, 0xda, 0x39, 0x3c, + 0xae, 0x02, 0x01, 0x34, 0x37, 0x82, 0x77, 0xd0, 0xb3, 0x8a, 0xf8, 0x04, 0x4e, 0x30, 0x81, 0x5a, + 0x6d, 0x4c, 0xb8, 0x4d, 0x91, 0x5f, 0x1a, 0xc5, 0x39, 0xd8, 0x79, 0x7c, 0x57, 0xa8, 0x25, 0x0c, + 0x76, 0x1c, 0xf7, 0x41, 0x15, 0xb8, 0xc1, 0x50, 0xac, 0x9d, 0x3c, 0x51, 0x4f, 0x40, 0xbb, 0x24, + 0x8c, 0x1f, 0x00, 0x90, 0x95, 0x7f, 0xbd, 0x89, 0x00, 0xb9, 0x3c, 0x44, 0x14, 0xf2, 0x5c, 0x2a, + 0xe4, 0xd9, 0x79, 0xd7, 0x04, 0xce, 0x47, 0x58, 0x36, 0xce, 0x0e, 0x26, 0xbe, 0x27, 0xb2, 0x35, + 0x30, 0x9a, 0xc3, 0xdb, 0xa4, 0x6a, 0x50, 0xdb, 0x70, 0x2c, 0x2b, 0xb9, 0x0b, 0x59, 0x50, 0x2b, + 0x01, 0xa8, 0xe9, 0x6a, 0x35, 0x02, 0x54, 0x56, 0xb6, 0x79, 0x1f, 0x01, 0x9b, 0xe0, 0x30, 0x71, + 0x6c, 0x72, 0x1d, 0xb1, 0xc9, 0xce, 0x56, 0xc3, 0x70, 0x08, 0xe0, 0xfb, 0x81, 0x98, 0x0d, 0x99, + 0xf6, 0x98, 0xb8, 0x57, 0x62, 0xad, 0x80, 0x4d, 0x01, 0xe7, 0x4a, 0x86, 0x95, 0xb8, 0x73, 0xa5, + 0x22, 0xb4, 0xa1, 0x7c, 0xe2, 0x90, 0x06, 0xcb, 0x4a, 0xf7, 0x3f, 0x90, 0x4e, 0x1c, 0x91, 0x28, + 0x73, 0x4a, 0x28, 0xb3, 0xd3, 0xed, 0xba, 0xf0, 0xec, 0x05, 0xc7, 0x69, 0x98, 0xb3, 0xfc, 0xa2, + 0xd9, 0xe3, 0x1d, 0x0c, 0x9f, 0x28, 0x22, 0x7c, 0xe6, 0xf1, 0x56, 0x76, 0xff, 0x4c, 0xe3, 0x27, + 0x0f, 0xaf, 0xad, 0x32, 0x3d, 0x69, 0xc3, 0xd5, 0xb5, 0x88, 0xae, 0x52, 0x8d, 0x76, 0x51, 0x1c, + 0x75, 0xfc, 0xc3, 0x8b, 0x58, 0x01, 0x55, 0x89, 0x51, 0xce, 0x13, 0xf5, 0x04, 0xb4, 0x6b, 0x08, + 0xef, 0x8b, 0x98, 0xb5, 0x1d, 0x30, 0x1c, 0xc1, 0x3b, 0xa4, 0xeb, 0x7b, 0xc1, 0x33, 0x50, 0x9b, + 0xc8, 0xf6, 0x92, 0xb8, 0xd5, 0x88, 0x02, 0x94, 0x01, 0x67, 0x29, 0xb2, 0x07, 0x78, 0x6e, 0x44, + 0x64, 0x6f, 0x8b, 0x3c, 0x97, 0x0a, 0x79, 0x76, 0x1e, 0xfd, 0xae, 0x14, 0xde, 0x36, 0xc2, 0xa5, + 0xb3, 0x3a, 0xd0, 0xbd, 0x23, 0x9d, 0x38, 0x93, 0x7d, 0xff, 0x66, 0x69, 0xf3, 0x77, 0xde, 0x24, + 0xf2, 0x2f, 0x16, 0x1b, 0x38, 0x89, 0xb2, 0xd2, 0xef, 0x7b, 0x08, 0x66, 0x5b, 0x0c, 0xf2, 0xcd, + 0xa4, 0xe5, 0xe7, 0xc4, 0xdb, 0x01, 0x73, 0x85, 0xac, 0x27, 0xed, 0xeb, 0x48, 0x1c, 0x28, 0x60, + 0x80, 0xd6, 0xa5, 0x41, 0x0f, 0xab, 0x00, 0xf2, 0x83, 0xb1, 0xe4, 0xb9, 0x18, 0x6f, 0x9c, 0x1d, + 0xf1, 0x4b, 0x78, 0xc4, 0x8b, 0x88, 0xdf, 0x30, 0x5c, 0xb6, 0x0b, 0xf1, 0x5c, 0x26, 0x76, 0x6b, + 0x9c, 0xea, 0xfe, 0x45, 0x33, 0xe1, 0xf1, 0xa3, 0xdd, 0x08, 0x19, 0x6c, 0xa9, 0xdd, 0xa8, 0x5b, + 0xa7, 0x6c, 0x28, 0xb4, 0xb9, 0xeb, 0x7a, 0x5e, 0xac, 0x70, 0x1b, 0x43, 0xeb, 0x17, 0x91, 0x97, + 0xc5, 0x19, 0xf1, 0xca, 0x6a, 0xa6, 0xff, 0x4a, 0x8a, 0x51, 0x8a, 0x6a, 0xb8, 0x59, 0xc7, 0x0e, + 0x17, 0x0f, 0x86, 0x0d, 0xe6, 0x9b, 0xf2, 0x9d, 0x2a, 0x53, 0x5e, 0xb2, 0x72, 0xfe, 0x25, 0x4b, + 0xbb, 0x10, 0x75, 0x0f, 0x1b, 0x1b, 0x07, 0x90, 0x72, 0x1c, 0xd0, 0xae, 0xe0, 0xe1, 0x70, 0xc7, + 0x6d, 0xcf, 0x53, 0xa9, 0x3d, 0x3f, 0xe6, 0x64, 0x6e, 0xe1, 0x03, 0x09, 0x23, 0x67, 0x7c, 0x36, + 0xfb, 0x14, 0x81, 0xe9, 0x7c, 0x4e, 0x96, 0x89, 0xe9, 0x4e, 0xe0, 0x5e, 0xab, 0x2e, 0xcd, 0x81, + 0x03, 0xed, 0x95, 0x7f, 0x9a, 0xb5, 0x75, 0x8a, 0x20, 0x14, 0x98, 0x46, 0xdd, 0x1d, 0x4f, 0xa3, + 0xef, 0x75, 0xe1, 0xed, 0xf2, 0x00, 0x64, 0x37, 0xee, 0x5f, 0xb2, 0x4d, 0xc3, 0x35, 0x4b, 0x33, + 0x57, 0x81, 0x96, 0xa8, 0x20, 0xbb, 0x70, 0x8f, 0xe3, 0x1a, 0xae, 0x47, 0x8a, 0x17, 0xc8, 0x9d, + 0xb8, 0xb7, 0x6a, 0x2c, 0x9a, 0x55, 0x07, 0x42, 0x15, 0x94, 0xa8, 0x7b, 0x1a, 0x8e, 0x53, 0x29, + 0xd7, 0x4c, 0x93, 0x41, 0xec, 0x2f, 0xb6, 0xca, 0xf4, 0x33, 0xd6, 0x6a, 0xa1, 0xe4, 0x0c, 0xf4, + 0x0c, 0xe5, 0xa8, 0xeb, 0x7a, 0x65, 0x42, 0x70, 0xb7, 0x63, 0xd9, 0xee, 0x40, 0x2f, 0x93, 0x61, + 0xff, 0xd3, 0x31, 0x1c, 0xd3, 0xb0, 0x97, 0x96, 0x07, 0xfa, 0xf8, 0x18, 0xbc, 0x44, 0x77, 0x21, + 0x8d, 0x7a, 0x89, 0xc2, 0x9b, 0xbe, 0xec, 0x9a, 0xf6, 0xc0, 0xd6, 0x21, 0x34, 0x96, 0x2b, 0xfa, + 0xea, 0xc8, 0x30, 0xbe, 0x05, 0xca, 0x33, 0xe6, 0x65, 0xcb, 0x36, 0x07, 0xfa, 0x59, 0x23, 0x7f, + 0xa5, 0xf6, 0x56, 0xe4, 0x3b, 0xde, 0xa6, 0x5a, 0x39, 0xbf, 0x44, 0x30, 0xf7, 0x7c, 0x10, 0x33, + 0x9c, 0x7b, 0xb3, 0x01, 0xaf, 0x3c, 0xa8, 0x32, 0x67, 0x36, 0xca, 0x37, 0xaf, 0x77, 0x61, 0x12, + 0x1e, 0xe6, 0xab, 0xf4, 0x50, 0xdb, 0x5c, 0xab, 0x98, 0x2f, 0x9a, 0xf6, 0x40, 0x0f, 0xff, 0xcc, + 0x2b, 0xfb, 0xbc, 0xb7, 0x37, 0xc6, 0x7b, 0xfb, 0x22, 0xbd, 0x77, 0x6b, 0x5b, 0xef, 0xed, 0x57, + 0xf1, 0x5e, 0x1c, 0xe5, 0xbd, 0x1f, 0x20, 0x08, 0x8e, 0xf1, 0xae, 0xb1, 0x59, 0xaf, 0x7a, 0x0e, + 0x8a, 0xa7, 0x1f, 0x79, 0x25, 0x8f, 0xbe, 0x95, 0x33, 0xc4, 0x1d, 0x9e, 0xdc, 0x18, 0xb8, 0xcd, + 0x62, 0x2c, 0x6a, 0x21, 0xee, 0xef, 0x6f, 0xb3, 0xe4, 0xb7, 0x3a, 0x90, 0xc4, 0xa8, 0xdf, 0xed, + 0x10, 0xc5, 0x39, 0xcb, 0x5e, 0xa1, 0x6b, 0x12, 0x73, 0x31, 0xcb, 0xf6, 0x12, 0xd2, 0xa0, 0x08, + 0xf8, 0xba, 0x3c, 0x7c, 0xd4, 0xfa, 0x35, 0xb1, 0x69, 0x63, 0xff, 0x93, 0x87, 0x71, 0x8f, 0xf5, + 0x62, 0xcd, 0xb4, 0x61, 0x2e, 0x8c, 0x29, 0x00, 0x3a, 0x4d, 0xdb, 0x17, 0xb9, 0x18, 0x19, 0xc2, + 0xdb, 0x4a, 0xa6, 0xb3, 0x64, 0x57, 0xf8, 0xd4, 0xe4, 0xce, 0x28, 0x57, 0x51, 0xff, 0xaa, 0x1b, + 0x36, 0x3d, 0xcf, 0xf4, 0x32, 0x24, 0x50, 0x22, 0x83, 0x18, 0x5f, 0xb6, 0xec, 0x15, 0x67, 0x96, + 0x65, 0xb1, 0xf5, 0xf1, 0xcb, 0x09, 0x51, 0x43, 0x7b, 0x66, 0x1b, 0x06, 0x68, 0xb0, 0x95, 0x35, + 0x90, 0xab, 0x68, 0x0f, 0x74, 0xf9, 0x85, 0x06, 0xfd, 0xbc, 0x07, 0x51, 0xa3, 0xbd, 0x81, 0xc4, + 0xc5, 0xf6, 0x74, 0xb5, 0x4a, 0xb5, 0xb5, 0x59, 0xb6, 0x88, 0x6f, 0x23, 0x71, 0x93, 0xde, 0x82, + 0xd6, 0x7a, 0xf0, 0xe8, 0x61, 0x6a, 0x00, 0xf7, 0x1f, 0x55, 0x30, 0x09, 0x93, 0xe7, 0x52, 0xd9, + 0xf9, 0xfe, 0x92, 0x78, 0x1f, 0x0c, 0xfb, 0x7e, 0x56, 0x27, 0xc1, 0xeb, 0x48, 0xdc, 0x31, 0x2b, + 0x4c, 0x9a, 0x5c, 0x07, 0x93, 0x26, 0x3b, 0x8d, 0x48, 0xa9, 0x82, 0xe7, 0x1d, 0xf1, 0x14, 0x19, + 0xbc, 0xf9, 0x5d, 0x10, 0xa9, 0x82, 0xbc, 0x19, 0x90, 0x39, 0x84, 0xbb, 0x69, 0x39, 0x31, 0x55, + 0x90, 0x09, 0xb1, 0xa6, 0xda, 0x15, 0x71, 0x7f, 0x46, 0xcb, 0xd2, 0x0d, 0x70, 0xdc, 0x03, 0x53, + 0x56, 0xcf, 0xc3, 0xaf, 0x4a, 0xf7, 0x6a, 0xad, 0xa1, 0x6f, 0xf6, 0xed, 0xb0, 0x94, 0x33, 0x29, + 0x1b, 0x20, 0x2b, 0x67, 0x7c, 0x55, 0xca, 0x99, 0x8c, 0xb1, 0x5c, 0x4e, 0xd1, 0x72, 0xd9, 0x71, + 0x5e, 0x13, 0xd7, 0x72, 0xd3, 0xb5, 0xab, 0xed, 0x56, 0x21, 0x1e, 0xca, 0xb2, 0x72, 0x80, 0x5f, + 0x4b, 0x09, 0x1e, 0x81, 0x81, 0x37, 0xe5, 0xe4, 0x7c, 0x4a, 0x5c, 0xdd, 0x2b, 0xe9, 0x49, 0xf5, + 0xc2, 0xa6, 0x24, 0x72, 0x91, 0xd4, 0xd4, 0xd0, 0xd1, 0xc2, 0x3e, 0x2e, 0x62, 0xc6, 0x85, 0x65, + 0xab, 0xe2, 0x78, 0xa8, 0xbd, 0x35, 0x1b, 0x89, 0x35, 0x5b, 0x3b, 0x25, 0xf2, 0x01, 0xa0, 0xad, + 0x38, 0x02, 0xb0, 0x8a, 0xc4, 0x43, 0x33, 0x17, 0xe3, 0x8d, 0xe5, 0xcb, 0x3e, 0xdf, 0xd0, 0x1b, + 0x71, 0xd9, 0x17, 0x8b, 0x37, 0xa7, 0x8c, 0x37, 0x33, 0x8f, 0x99, 0xfa, 0xf3, 0x63, 0xb8, 0x87, + 0x01, 0x23, 0xef, 0x23, 0xbc, 0x5d, 0xce, 0xf6, 0x27, 0x87, 0x62, 0xa1, 0xc4, 0x7d, 0xa1, 0x20, + 0x3f, 0x95, 0x46, 0x84, 0xa3, 0xd1, 0x8e, 0xbd, 0xf4, 0xf1, 0x17, 0x3f, 0xee, 0x3a, 0x44, 0x74, + 0x3d, 0xf8, 0x35, 0x07, 0xef, 0xef, 0x9a, 0x24, 0xa6, 0x37, 0xe1, 0xab, 0x06, 0xeb, 0xe4, 0x1a, + 0xe2, 0x59, 0xdc, 0x64, 0xa2, 0xfd, 0xa8, 0xfe, 0xa4, 0xf6, 0xfc, 0xa4, 0x62, 0x6b, 0x80, 0x37, + 0xce, 0xe0, 0x0d, 0x13, 0x2d, 0x16, 0x9e, 0x6b, 0x38, 0x2b, 0x7a, 0xb3, 0x52, 0x5a, 0x27, 0xaf, + 0x20, 0xdc, 0x47, 0x85, 0xa7, 0xab, 0xd5, 0x24, 0x50, 0xfe, 0x8c, 0xf7, 0x24, 0x50, 0x81, 0xfc, + 0x75, 0xed, 0x00, 0x03, 0xb5, 0x97, 0xec, 0x69, 0x0b, 0x8a, 0xbc, 0x86, 0x70, 0x3f, 0xcf, 0xfe, + 0xa4, 0x88, 0x0a, 0x89, 0x63, 0xf8, 0x92, 0x62, 0xf3, 0xba, 0x72, 0x7b, 0x40, 0x35, 0xca, 0x50, + 0xed, 0x23, 0x7b, 0x63, 0x51, 0xf1, 0x7c, 0x5e, 0xf2, 0x09, 0xc2, 0xb7, 0x06, 0xd3, 0x5c, 0xc9, + 0x03, 0x89, 0x76, 0x89, 0xc9, 0xde, 0xcd, 0x7f, 0xad, 0x03, 0x49, 0x80, 0x7c, 0x9e, 0x41, 0x3e, + 0x4d, 0x4e, 0xc5, 0x42, 0xa6, 0x86, 0x95, 0xbe, 0xae, 0xa3, 0x37, 0xfd, 0xa1, 0x71, 0x1d, 0x38, + 0xe9, 0x4d, 0x91, 0xab, 0xbc, 0x4e, 0xbe, 0x44, 0xf8, 0xf6, 0x88, 0x2c, 0x65, 0xf2, 0x60, 0x6a, + 0xa4, 0x22, 0x2d, 0x33, 0xff, 0x50, 0x67, 0xc2, 0xc0, 0xf4, 0x19, 0xc6, 0xf4, 0x2c, 0x79, 0x32, + 0x53, 0xa6, 0xba, 0xb3, 0x6c, 0x90, 0xbf, 0x44, 0xb0, 0xa5, 0x0e, 0xf7, 0x40, 0xa2, 0x03, 0x75, + 0x68, 0xd1, 0x36, 0x59, 0xd2, 0xda, 0xe3, 0x8c, 0xe7, 0x0c, 0x79, 0xf4, 0x46, 0x79, 0x92, 0xef, + 0x23, 0xdc, 0x7b, 0xce, 0x28, 0x53, 0x26, 0x07, 0x15, 0xa6, 0xa7, 0x97, 0x95, 0x9a, 0x9f, 0x50, + 0x6b, 0x0c, 0x78, 0x87, 0x19, 0xde, 0x41, 0xb2, 0xbb, 0xcd, 0x54, 0x2e, 0x93, 0x3f, 0x21, 0x7c, + 0x8b, 0x2f, 0xc3, 0x94, 0x1c, 0x4d, 0xe1, 0x0d, 0x12, 0xb8, 0xfb, 0xd3, 0x8a, 0x01, 0xcc, 0xd3, + 0x0c, 0xe6, 0x02, 0x99, 0xef, 0x5c, 0xad, 0xae, 0x51, 0xd6, 0x9b, 0xf0, 0x4a, 0xb2, 0x4e, 0xfe, + 0xe1, 0x8b, 0x01, 0x3c, 0x17, 0x38, 0x55, 0x0c, 0xf0, 0xe5, 0x2c, 0xa7, 0x8a, 0x01, 0xfe, 0xc4, + 0x63, 0xed, 0x2c, 0xa3, 0x76, 0x8a, 0x3c, 0x91, 0x11, 0x35, 0x36, 0x27, 0x3e, 0x0c, 0xd2, 0xa3, + 0x6e, 0x74, 0x34, 0x85, 0x5b, 0xab, 0xdb, 0x2c, 0x2e, 0xf9, 0x58, 0x7b, 0x8c, 0x11, 0x7b, 0x84, + 0x9c, 0xb8, 0x21, 0x62, 0xe4, 0x37, 0x08, 0xf7, 0xb7, 0x92, 0x63, 0x93, 0x76, 0x05, 0x11, 0x99, + 0xc6, 0x49, 0xbb, 0x82, 0xa8, 0x94, 0x62, 0xed, 0x21, 0x86, 0xfd, 0x7e, 0x72, 0x24, 0x16, 0x7b, + 0xc9, 0xb0, 0xf4, 0x26, 0x4b, 0x07, 0x5e, 0x87, 0x6f, 0x8e, 0xea, 0x4d, 0x7e, 0xfe, 0x5b, 0x27, + 0xd7, 0x11, 0xde, 0xde, 0xea, 0x93, 0x6a, 0xfe, 0x50, 0xa2, 0x0a, 0xd3, 0xa2, 0x8e, 0xca, 0x18, + 0xd6, 0x0e, 0x33, 0xd4, 0x93, 0xe4, 0x60, 0x0a, 0xd4, 0x6c, 0x95, 0x16, 0x48, 0x93, 0x57, 0x69, + 0x3f, 0x4c, 0x5d, 0xb9, 0xbd, 0xf2, 0x2a, 0x0d, 0xb8, 0x7e, 0x8a, 0xbc, 0xac, 0xd3, 0x24, 0x50, + 0xc1, 0xa4, 0xdc, 0x24, 0x50, 0xa1, 0xdc, 0x5c, 0x6d, 0x82, 0x81, 0x1a, 0x21, 0xc3, 0xf1, 0x5b, + 0x07, 0x26, 0xc0, 0xf7, 0x59, 0x6c, 0x5f, 0xc3, 0xca, 0x8a, 0xfb, 0x9a, 0x34, 0xe0, 0x42, 0xd9, + 0xb7, 0x2a, 0xfb, 0x1a, 0xae, 0xa6, 0x9f, 0xa3, 0xd6, 0x7b, 0x26, 0xd1, 0x15, 0x02, 0x92, 0xfc, + 0x62, 0x9b, 0xbf, 0x4f, 0x5d, 0x00, 0x70, 0x4d, 0x32, 0x5c, 0xa3, 0xe4, 0x40, 0x2c, 0x2e, 0xf8, + 0xfe, 0x33, 0xd7, 0xda, 0xcf, 0x10, 0x3d, 0xa4, 0xb1, 0x0a, 0xaa, 0x36, 0x5d, 0x21, 0xaa, 0xa4, + 0x01, 0x18, 0xce, 0x2a, 0xd5, 0xc6, 0x18, 0x40, 0x8d, 0x0c, 0x25, 0x01, 0x24, 0xef, 0x21, 0xbc, + 0x43, 0xba, 0xbc, 0xa6, 0xf8, 0x0e, 0x27, 0x0e, 0x17, 0x7e, 0x58, 0xc9, 0x1f, 0x49, 0x27, 0xa4, + 0xec, 0x7d, 0x52, 0x3e, 0x0c, 0x79, 0x19, 0xe1, 0xdc, 0x49, 0xc3, 0x4a, 0xda, 0x14, 0xf8, 0x32, + 0x23, 0xf3, 0x13, 0x6a, 0x8d, 0x01, 0xd0, 0xbd, 0x0c, 0xd0, 0x7e, 0xb2, 0xaf, 0x7d, 0x1c, 0xa1, + 0x56, 0xa5, 0xbb, 0x94, 0x93, 0x86, 0xa5, 0xb6, 0x4b, 0x51, 0x07, 0xe4, 0xcf, 0x85, 0x54, 0xd8, + 0xa5, 0x94, 0x0c, 0x8b, 0xfc, 0x13, 0xc1, 0x6b, 0xa5, 0x97, 0x8c, 0x73, 0x24, 0x91, 0x75, 0x44, + 0x36, 0x58, 0xfe, 0x68, 0x4a, 0x29, 0xc0, 0x78, 0x89, 0x61, 0xbc, 0x48, 0x9e, 0x6e, 0xe3, 0x6d, + 0x51, 0x2b, 0x1d, 0x0d, 0xc5, 0xec, 0x4a, 0x5d, 0x6f, 0x7a, 0xaf, 0xf3, 0xeb, 0xde, 0x97, 0xfb, + 0xf5, 0xa6, 0x48, 0x15, 0x5c, 0x27, 0xff, 0x45, 0xbe, 0x17, 0x2f, 0x8f, 0xe5, 0xf1, 0x44, 0xbc, + 0xb1, 0x59, 0x5a, 0xf9, 0x07, 0x3b, 0x92, 0x05, 0xc6, 0x55, 0xc6, 0xf8, 0x32, 0x29, 0x75, 0xc0, + 0x98, 0x7a, 0xb4, 0xcd, 0xbb, 0xd5, 0x9b, 0xfe, 0x74, 0xaf, 0x18, 0xf6, 0x34, 0x7e, 0x00, 0x02, + 0xb5, 0xf8, 0x11, 0xa0, 0x7a, 0x9f, 0xba, 0x80, 0x72, 0xfc, 0x00, 0x7c, 0xe4, 0x63, 0x84, 0x77, + 0xca, 0x4e, 0x41, 0x01, 0x26, 0xc7, 0x82, 0x0e, 0x9c, 0x2f, 0x26, 0x31, 0x50, 0x61, 0x13, 0x99, + 0xde, 0xf9, 0xc8, 0x7f, 0x10, 0xbe, 0x23, 0x6c, 0x7e, 0xca, 0xed, 0x78, 0x9a, 0x38, 0x97, 0xce, + 0xe5, 0xda, 0xa6, 0xe6, 0x69, 0xcf, 0x33, 0x9e, 0xcf, 0x90, 0x0b, 0x1b, 0xe4, 0x72, 0xe4, 0x47, + 0x08, 0x6f, 0x65, 0x1a, 0xa6, 0x34, 0x27, 0xd5, 0x8c, 0xe1, 0x31, 0x2b, 0xa8, 0x36, 0x07, 0x32, + 0x23, 0x8c, 0xcc, 0x10, 0x19, 0x8c, 0x25, 0xc3, 0x6c, 0x42, 0xfe, 0x8d, 0xf0, 0x5d, 0xa1, 0x24, + 0x26, 0x9e, 0xb9, 0x46, 0x1e, 0x49, 0x9c, 0xc0, 0xed, 0x93, 0xe8, 0xf2, 0x8f, 0x76, 0xde, 0x01, + 0xd0, 0x78, 0x92, 0xd1, 0x78, 0x82, 0x2c, 0x74, 0xbe, 0xcf, 0x87, 0x75, 0xd8, 0xd1, 0xab, 0x9c, + 0xd5, 0x17, 0x08, 0xdf, 0x16, 0x1a, 0x90, 0xa4, 0x39, 0x64, 0x05, 0x58, 0x1e, 0xef, 0x44, 0x14, + 0xf8, 0x3d, 0xcd, 0xf8, 0x15, 0xc9, 0x99, 0x0c, 0xf8, 0xf9, 0x0f, 0xa1, 0x7f, 0x47, 0x78, 0x57, + 0x68, 0x5c, 0xea, 0x78, 0x69, 0x2e, 0x20, 0xd2, 0x31, 0x6d, 0x97, 0x0f, 0xa7, 0x7d, 0x9d, 0x31, + 0x3d, 0x49, 0x66, 0x6e, 0x9c, 0x29, 0xf9, 0x23, 0xc2, 0x3b, 0x03, 0x79, 0x32, 0xe4, 0x58, 0x0a, + 0x2b, 0xf8, 0x66, 0xd6, 0x03, 0xe9, 0x05, 0x81, 0xd2, 0x3c, 0xa3, 0x34, 0x4d, 0x1e, 0x69, 0x4f, + 0x29, 0xc4, 0x23, 0x18, 0x14, 0xc9, 0xef, 0x11, 0x26, 0x81, 0x41, 0xa8, 0xa5, 0x8e, 0xa5, 0x50, + 0x77, 0x1a, 0x4a, 0xf1, 0x59, 0x46, 0x0a, 0x67, 0xd3, 0x36, 0x94, 0xe8, 0x26, 0xe9, 0x8e, 0xc8, + 0x0c, 0x10, 0x72, 0x22, 0x85, 0x92, 0x23, 0xf6, 0xbe, 0x0f, 0x77, 0x2a, 0x9e, 0xee, 0xba, 0x20, + 0x44, 0x8b, 0x46, 0x72, 0x1e, 0xcf, 0x99, 0x9d, 0xfe, 0x8a, 0xf0, 0x40, 0xe4, 0x40, 0xd4, 0x5a, + 0x27, 0x52, 0x28, 0x3d, 0x3d, 0xc5, 0xa4, 0xdc, 0x1a, 0xed, 0x41, 0x46, 0xf1, 0x28, 0x39, 0xdc, + 0x01, 0x45, 0xf2, 0x4b, 0x24, 0x3f, 0x72, 0x91, 0xa9, 0x54, 0x11, 0x8d, 0xe3, 0x3f, 0x9c, 0x4a, + 0x06, 0x40, 0xdf, 0xc7, 0x40, 0x8f, 0x93, 0x31, 0xa5, 0x25, 0x97, 0x9a, 0xe0, 0x5d, 0xdf, 0x6d, + 0x21, 0xd5, 0xfb, 0x54, 0xaa, 0xa0, 0xa4, 0x04, 0x36, 0x32, 0x59, 0x41, 0x3b, 0xc8, 0xc0, 0x1e, + 0x20, 0xfb, 0x15, 0xc0, 0x92, 0xdf, 0x22, 0xdc, 0x37, 0x67, 0xd9, 0x2b, 0x0a, 0xdb, 0xc9, 0x50, + 0xfa, 0x8a, 0xc2, 0x79, 0x39, 0x90, 0x54, 0xa2, 0x1a, 0x8a, 0xda, 0x45, 0x57, 0x9e, 0x5e, 0x72, + 0x0d, 0xf1, 0xb7, 0x70, 0x85, 0x97, 0x27, 0xe9, 0x89, 0x5e, 0xe1, 0xe5, 0x49, 0x7e, 0x70, 0x57, + 0x78, 0x79, 0x6a, 0x38, 0xa6, 0xcd, 0x2d, 0xfe, 0x0e, 0xc2, 0x18, 0x32, 0x14, 0xd4, 0xf6, 0xe6, + 0xfe, 0x4c, 0x0a, 0x85, 0xbd, 0x79, 0x20, 0xff, 0x41, 0x9b, 0x62, 0xe8, 0x26, 0xc8, 0x78, 0x02, + 0x3a, 0xb8, 0x92, 0x63, 0xe7, 0xc3, 0x57, 0x10, 0xee, 0xa3, 0xfd, 0xa8, 0xbd, 0x8f, 0xa5, 0x50, + 0x5d, 0x20, 0x57, 0x41, 0xe1, 0x7d, 0x8c, 0xc2, 0x22, 0x1f, 0x20, 0x7c, 0xab, 0xef, 0x3d, 0x5b, + 0xed, 0x92, 0x36, 0xea, 0x69, 0x5d, 0xe1, 0x92, 0x36, 0xf2, 0xe5, 0x5c, 0x3b, 0xca, 0xa0, 0xea, + 0x64, 0x32, 0xd9, 0xca, 0xf2, 0xd4, 0xf9, 0x03, 0xc2, 0xb7, 0xf8, 0x3a, 0x54, 0x78, 0x10, 0xe8, + 0x04, 0x77, 0xdc, 0x8b, 0xbf, 0x36, 0xc7, 0x70, 0x3f, 0x4a, 0x1e, 0x4e, 0x85, 0x3b, 0x34, 0xa3, + 0xc8, 0x6b, 0x08, 0x1e, 0xc0, 0x49, 0xf2, 0xf4, 0x90, 0x9f, 0xe6, 0xf3, 0x05, 0xd5, 0xe6, 0xca, + 0xb7, 0x65, 0xec, 0x67, 0xf5, 0xf4, 0x66, 0x8d, 0xe1, 0xa2, 0xe7, 0x10, 0xd6, 0x81, 0xda, 0x39, + 0x24, 0x0d, 0xb4, 0x60, 0x0e, 0x80, 0xc2, 0x39, 0x84, 0x41, 0x23, 0x2f, 0x77, 0xe1, 0x7c, 0xfc, + 0x77, 0xde, 0xc9, 0x4c, 0x9a, 0xbb, 0x84, 0xe8, 0xef, 0xec, 0xe7, 0x67, 0x6f, 0xa8, 0x0f, 0xe0, + 0x53, 0x62, 0x7c, 0x9e, 0x23, 0xcf, 0xc6, 0xdf, 0xa7, 0xb5, 0x84, 0x1c, 0x11, 0x22, 0xda, 0x9f, + 0x1c, 0xc5, 0x16, 0x43, 0x5f, 0xa5, 0xe3, 0x92, 0xff, 0x21, 0x7c, 0x4f, 0x9b, 0xdf, 0x31, 0x23, + 0x09, 0x07, 0xab, 0xe4, 0x5f, 0x5e, 0xcb, 0x4f, 0xdf, 0x40, 0x0f, 0xa0, 0x8a, 0x8b, 0x4c, 0x15, + 0xe7, 0x48, 0x31, 0x56, 0x15, 0x86, 0x2c, 0xe7, 0xd0, 0xea, 0x49, 0x87, 0x75, 0xc8, 0x15, 0x03, + 0xbf, 0xdc, 0xb6, 0xae, 0x37, 0x03, 0xbf, 0xe5, 0xb6, 0x4e, 0x5e, 0xef, 0xc2, 0xfb, 0x12, 0x7f, + 0x11, 0x90, 0xcc, 0x29, 0x90, 0x50, 0xf8, 0x3d, 0xc3, 0xfc, 0xfc, 0x0d, 0xf7, 0xa3, 0x7c, 0x4f, + 0x17, 0x50, 0x89, 0xc3, 0x7b, 0x9d, 0xf4, 0x14, 0x90, 0xa4, 0x98, 0x99, 0x93, 0x1f, 0x7e, 0x36, + 0x88, 0x3e, 0xfa, 0x6c, 0x10, 0xfd, 0xeb, 0xb3, 0x41, 0xf4, 0xc3, 0xcf, 0x07, 0xb7, 0x7c, 0xf4, + 0xf9, 0xe0, 0x96, 0xbf, 0x7d, 0x3e, 0xb8, 0xe5, 0xe2, 0xb8, 0xf4, 0xfb, 0x8f, 0xc1, 0x51, 0xaf, + 0x88, 0x17, 0xd7, 0xab, 0x75, 0xd3, 0x59, 0xec, 0x65, 0x3f, 0xa0, 0x79, 0xf8, 0xff, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x04, 0x61, 0xfc, 0xa2, 0x7d, 0x55, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -7333,7 +7333,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "gitopia/query.proto", + Metadata: "gitopia/gitopia/query.proto", } func (m *QueryVestedAmountRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/query.pb.gw.go b/x/gitopia/types/query.pb.gw.go index 0c1ea847..4cd29d4c 100644 --- a/x/gitopia/types/query.pb.gw.go +++ b/x/gitopia/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: gitopia/query.proto +// source: gitopia/gitopia/query.proto /* Package types is a reverse proxy. @@ -5333,99 +5333,99 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_VestedAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "vestedAmount", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_VestedAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "vestedAmount", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Task_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "task", "id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Task_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "task", "id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_TaskAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "task"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_TaskAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "task"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_BranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "branch"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_BranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "branch"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryBranch_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryBranch_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryBranchSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName", "sha"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryBranchSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName", "sha"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryBranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "branch"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryBranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "branch"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_TagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "tag"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_TagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "tag"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryTag_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryTag_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryTagSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName", "sha"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryTagSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName", "sha"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryTagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "tag"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryTagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "tag"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DaoMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "dao", "daoId", "member", "userId"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_DaoMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "dao", "daoId", "member", "userId"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DaoMemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "dao", "daoId", "member"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_DaoMemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "dao", "daoId", "member"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_MemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "member"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "member"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Bounty_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "bounty", "id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Bounty_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "bounty", "id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_BountyAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "bounty"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_BountyAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "bounty"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Release_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "release", "id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Release_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "release", "id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "release"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "release"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_PullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "pullRequest"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_PullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "pullRequest"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Dao_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "dao", "id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Dao_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "dao", "id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "dao"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_DaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "dao"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_IssueComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_IssueComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_PullRequestComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_PullRequestComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_CommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "comment"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_CommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "comment"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_IssueCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_IssueCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_PullRequestCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_PullRequestCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_IssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "issue"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_IssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "issue"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryReleaseLatest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "latest"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryReleaseLatest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "latest"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryRelease_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryRelease_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "releases"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "releases"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryIssue_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "issue", "issueIid"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryIssue_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "issue", "issueIid"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryIssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "issue"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryIssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "issue"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryPullRequest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "pull", "pullIid"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryPullRequest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "pull", "pullIid"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryPullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "pull"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryPullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "pull"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Repository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "repository", "id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Repository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "repository", "id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "repository"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "repository"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ForkAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "forks"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ForkAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "forks"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_User_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "user", "id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_User_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "user", "id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_UserDaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "userId", "dao"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_UserDaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "userId", "dao"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_UserAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "user"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_UserAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "user"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AnyRepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "id", "repository"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AnyRepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "id", "repository"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AnyRepository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "user", "id", "repository", "repositoryName"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AnyRepository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "user", "id", "repository", "repositoryName"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Whois_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "whois", "name"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Whois_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "whois", "name"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_WhoisAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "whois"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_WhoisAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "whois"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_PullRequestMergePermission_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6, 2, 7}, []string{"gitopia", "permissions", "userId", "repository", "repositoryId", "pull", "pullIid", "merge"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_PullRequestMergePermission_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6, 2, 7}, []string{"gitopia", "permissions", "userId", "repository", "repositoryId", "pull", "pullIid", "merge"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_CheckGitServerAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "git-server", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_CheckGitServerAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "git-server", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_CheckStorageProviderAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "storage-provider", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_CheckStorageProviderAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "storage-provider", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/gitopia/types/reaction.pb.go b/x/gitopia/types/reaction.pb.go index dfa64420..5478ef36 100644 --- a/x/gitopia/types/reaction.pb.go +++ b/x/gitopia/types/reaction.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/reaction.proto +// source: gitopia/gitopia/reaction.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -45,7 +45,7 @@ func (x Emoji) String() string { } func (Emoji) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_6751c3791b2fecc0, []int{0} + return fileDescriptor_693bbc73a7a9ebea, []int{0} } type Reaction struct { @@ -57,7 +57,7 @@ func (m *Reaction) Reset() { *m = Reaction{} } func (m *Reaction) String() string { return proto.CompactTextString(m) } func (*Reaction) ProtoMessage() {} func (*Reaction) Descriptor() ([]byte, []int) { - return fileDescriptor_6751c3791b2fecc0, []int{0} + return fileDescriptor_693bbc73a7a9ebea, []int{0} } func (m *Reaction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -105,26 +105,26 @@ func init() { proto.RegisterType((*Reaction)(nil), "gitopia.gitopia.gitopia.Reaction") } -func init() { proto.RegisterFile("gitopia/reaction.proto", fileDescriptor_6751c3791b2fecc0) } +func init() { proto.RegisterFile("gitopia/gitopia/reaction.proto", fileDescriptor_693bbc73a7a9ebea) } -var fileDescriptor_6751c3791b2fecc0 = []byte{ +var fileDescriptor_693bbc73a7a9ebea = []byte{ // 254 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4b, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x2f, 0x4a, 0x4d, 0x4c, 0x2e, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, - 0x2f, 0xc9, 0x17, 0x12, 0x87, 0x8a, 0xeb, 0xa1, 0xd1, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, - 0x35, 0xfa, 0x20, 0x16, 0x44, 0xb9, 0x52, 0x0c, 0x17, 0x47, 0x10, 0xd4, 0x00, 0x21, 0x09, 0x2e, - 0xf6, 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0x62, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x18, - 0x57, 0xc8, 0x8c, 0x8b, 0x2d, 0x35, 0x37, 0x3f, 0x2b, 0xb3, 0x58, 0x82, 0x49, 0x81, 0x59, 0x83, - 0xcf, 0x48, 0x4e, 0x0f, 0x87, 0x2d, 0x7a, 0xae, 0x20, 0x65, 0x41, 0x50, 0xd5, 0x5a, 0x89, 0x5c, - 0xac, 0x60, 0x01, 0x21, 0x35, 0x2e, 0x7e, 0x57, 0x5f, 0x7f, 0x2f, 0xcf, 0xf8, 0x10, 0x8f, 0x50, - 0x5f, 0xa7, 0xe0, 0xf8, 0xd0, 0x00, 0x01, 0x06, 0x29, 0xc1, 0xae, 0xb9, 0x0a, 0xbc, 0x60, 0xf9, - 0x90, 0x8c, 0xd2, 0xdc, 0xa4, 0xe2, 0xd0, 0x02, 0x21, 0x2d, 0x2e, 0x41, 0x14, 0x75, 0x2e, 0xfe, - 0xe1, 0x7e, 0x02, 0x8c, 0x52, 0xc2, 0x5d, 0x73, 0x15, 0xf8, 0x91, 0x54, 0xba, 0xe4, 0x97, 0xe7, - 0x49, 0xb1, 0x74, 0x2c, 0x96, 0x63, 0x70, 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, - 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, - 0x39, 0x86, 0x28, 0xad, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x58, - 0x60, 0xc1, 0xe8, 0x0a, 0x38, 0xab, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x1a, 0xc6, - 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x96, 0x5c, 0xd6, 0x80, 0x56, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0x45, 0xa9, 0x89, 0xc9, 0x25, 0x99, 0xf9, 0x79, 0x7a, 0x05, + 0x45, 0xf9, 0x25, 0xf9, 0x42, 0xe2, 0x50, 0x71, 0x3d, 0x34, 0x5a, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, + 0x1f, 0xac, 0x46, 0x1f, 0xc4, 0x82, 0x28, 0x57, 0x8a, 0xe1, 0xe2, 0x08, 0x82, 0x1a, 0x20, 0x24, + 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, + 0x04, 0xe3, 0x0a, 0x99, 0x71, 0xb1, 0xa5, 0xe6, 0xe6, 0x67, 0x65, 0x16, 0x4b, 0x30, 0x29, 0x30, + 0x6b, 0xf0, 0x19, 0xc9, 0xe9, 0xe1, 0xb0, 0x45, 0xcf, 0x15, 0xa4, 0x2c, 0x08, 0xaa, 0x5a, 0x2b, + 0x91, 0x8b, 0x15, 0x2c, 0x20, 0xa4, 0xc6, 0xc5, 0xef, 0xea, 0xeb, 0xef, 0xe5, 0x19, 0x1f, 0xe2, + 0x11, 0xea, 0xeb, 0x14, 0x1c, 0x1f, 0x1a, 0x20, 0xc0, 0x20, 0x25, 0xd8, 0x35, 0x57, 0x81, 0x17, + 0x2c, 0x1f, 0x92, 0x51, 0x9a, 0x9b, 0x54, 0x1c, 0x5a, 0x20, 0xa4, 0xc5, 0x25, 0x88, 0xa2, 0xce, + 0xc5, 0x3f, 0xdc, 0x4f, 0x80, 0x51, 0x4a, 0xb8, 0x6b, 0xae, 0x02, 0x3f, 0x92, 0x4a, 0x97, 0xfc, + 0xf2, 0x3c, 0x29, 0x96, 0x8e, 0xc5, 0x72, 0x0c, 0x4e, 0x2e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, + 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, + 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x95, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, + 0x8f, 0x1e, 0x68, 0x15, 0x70, 0x56, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0x38, 0x34, 0x8c, + 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x69, 0xd6, 0x6c, 0x53, 0x5e, 0x01, 0x00, 0x00, } func (m *Reaction) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/release.pb.go b/x/gitopia/types/release.pb.go index 0fbc6622..b662e086 100644 --- a/x/gitopia/types/release.pb.go +++ b/x/gitopia/types/release.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/release.proto +// source: gitopia/gitopia/release.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -44,7 +44,7 @@ func (m *Release) Reset() { *m = Release{} } func (m *Release) String() string { return proto.CompactTextString(m) } func (*Release) ProtoMessage() {} func (*Release) Descriptor() ([]byte, []int) { - return fileDescriptor_5fd2e3bb1bcbe1fb, []int{0} + return fileDescriptor_b8eecbd9f280ec72, []int{0} } func (m *Release) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -175,33 +175,33 @@ func init() { proto.RegisterType((*Release)(nil), "gitopia.gitopia.gitopia.Release") } -func init() { proto.RegisterFile("gitopia/release.proto", fileDescriptor_5fd2e3bb1bcbe1fb) } +func init() { proto.RegisterFile("gitopia/gitopia/release.proto", fileDescriptor_b8eecbd9f280ec72) } -var fileDescriptor_5fd2e3bb1bcbe1fb = []byte{ +var fileDescriptor_b8eecbd9f280ec72 = []byte{ // 365 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xbf, 0x4e, 0xf3, 0x30, - 0x14, 0xc5, 0xeb, 0xa6, 0x7f, 0x6f, 0xfa, 0x75, 0xb0, 0xfa, 0x81, 0x55, 0xa1, 0x28, 0x2a, 0x4b, - 0xc4, 0x90, 0x4a, 0xf0, 0x04, 0x45, 0x30, 0xb0, 0x30, 0x44, 0x4c, 0x6c, 0x6e, 0x62, 0x52, 0x4b, - 0x6d, 0x6d, 0x39, 0xb7, 0x12, 0x7d, 0x0b, 0x1e, 0x85, 0xc7, 0x60, 0xec, 0xc8, 0x88, 0xda, 0x17, - 0x41, 0x71, 0x92, 0x36, 0x20, 0x31, 0xf9, 0x9e, 0xf3, 0xbb, 0xf7, 0x48, 0xbe, 0x17, 0xfe, 0xa7, - 0x12, 0x95, 0x96, 0x7c, 0x6a, 0xc4, 0x52, 0xf0, 0x4c, 0x84, 0xda, 0x28, 0x54, 0xf4, 0xbc, 0xb4, - 0xc3, 0x5f, 0xef, 0x78, 0x94, 0xaa, 0x54, 0xd9, 0x9e, 0x69, 0x5e, 0x15, 0xed, 0x63, 0x56, 0xa5, - 0x70, 0x44, 0x1e, 0x2f, 0x56, 0x62, 0x8d, 0x05, 0x99, 0xbc, 0x3b, 0xd0, 0x8d, 0x8a, 0x68, 0xca, - 0xa0, 0x1b, 0x1b, 0xc1, 0x51, 0x19, 0x46, 0x7c, 0x12, 0xf4, 0xa3, 0x4a, 0xd2, 0x21, 0x34, 0x65, - 0xc2, 0x9a, 0x3e, 0x09, 0x5a, 0x51, 0x53, 0x26, 0x74, 0x02, 0x03, 0x23, 0xb4, 0xca, 0x24, 0x2a, - 0xb3, 0x7d, 0x48, 0x98, 0x63, 0xc9, 0x0f, 0x2f, 0x4f, 0x43, 0x9e, 0x3e, 0xf2, 0x95, 0x60, 0xad, - 0x22, 0xad, 0x94, 0xf4, 0x0c, 0x3a, 0xc8, 0x4d, 0x2a, 0x90, 0xb5, 0x2d, 0x28, 0x15, 0xa5, 0xd0, - 0x5a, 0xe7, 0xed, 0x1d, 0xeb, 0xda, 0x9a, 0xfa, 0xe0, 0x26, 0x22, 0x8b, 0x8d, 0xd4, 0x28, 0xd5, - 0x9a, 0x75, 0x2d, 0xaa, 0x5b, 0xf4, 0x1e, 0xdc, 0xd3, 0xaf, 0x32, 0xd6, 0xf3, 0x9d, 0xc0, 0xbd, - 0xbe, 0x0c, 0xff, 0x58, 0x50, 0x38, 0x3b, 0xf6, 0x46, 0xf5, 0x39, 0x3a, 0x82, 0x76, 0x62, 0xf8, - 0x0b, 0xb2, 0xbe, 0x4f, 0x82, 0x5e, 0x54, 0x08, 0xea, 0x01, 0x68, 0x23, 0xca, 0x05, 0x31, 0xb0, - 0xa8, 0xe6, 0xe4, 0x53, 0x32, 0x7b, 0xe2, 0x29, 0x73, 0x8b, 0x29, 0x2b, 0xe8, 0x05, 0xf4, 0xed, - 0xe6, 0x44, 0x32, 0x43, 0x36, 0xf0, 0x49, 0xe0, 0x44, 0x27, 0x23, 0xa7, 0x1b, 0x9d, 0x94, 0xf4, - 0x5f, 0x41, 0x8f, 0x46, 0xfe, 0x61, 0xbd, 0x99, 0x2f, 0x65, 0xb6, 0xb0, 0x7c, 0x68, 0x79, 0xdd, - 0xba, 0xbd, 0xfb, 0xd8, 0x7b, 0x64, 0xb7, 0xf7, 0xc8, 0xd7, 0xde, 0x23, 0x6f, 0x07, 0xaf, 0xb1, - 0x3b, 0x78, 0x8d, 0xcf, 0x83, 0xd7, 0x78, 0xbe, 0x4a, 0x25, 0x2e, 0x36, 0xf3, 0x30, 0x56, 0xab, - 0x69, 0x75, 0xf1, 0xea, 0x7d, 0x3d, 0x56, 0xb8, 0xd5, 0x22, 0x9b, 0x77, 0xec, 0xfd, 0x6f, 0xbe, - 0x03, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x83, 0x42, 0x7d, 0x61, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xbf, 0x4e, 0xc3, 0x30, + 0x10, 0xc6, 0xeb, 0xa6, 0x7f, 0x2f, 0xa5, 0x83, 0x55, 0x81, 0x55, 0x41, 0x14, 0x95, 0x25, 0x62, + 0x48, 0x25, 0x78, 0x82, 0x22, 0x18, 0x58, 0x18, 0x22, 0x26, 0x36, 0x37, 0x31, 0xa9, 0xa5, 0xb6, + 0xb6, 0x9c, 0xab, 0x44, 0xdf, 0x82, 0x47, 0xe1, 0x31, 0x18, 0x3b, 0x32, 0xa2, 0xf6, 0x45, 0x50, + 0x9c, 0xb4, 0x0d, 0x95, 0x98, 0x7c, 0xdf, 0xf7, 0xfb, 0xee, 0x2c, 0x9f, 0xe1, 0x2a, 0x95, 0xa8, + 0xb4, 0xe4, 0xe3, 0xfd, 0x69, 0xc4, 0x5c, 0xf0, 0x4c, 0x84, 0xda, 0x28, 0x54, 0xf4, 0xa2, 0xb4, + 0xc3, 0x93, 0x73, 0x38, 0x48, 0x55, 0xaa, 0x6c, 0x66, 0x9c, 0x57, 0x45, 0x7c, 0xe8, 0x9f, 0x4e, + 0xe3, 0x88, 0x3c, 0x9e, 0x2d, 0xc4, 0x12, 0x8b, 0xc4, 0xe8, 0xd3, 0x81, 0x76, 0x54, 0x5c, 0x41, + 0x19, 0xb4, 0x63, 0x23, 0x38, 0x2a, 0xc3, 0x88, 0x4f, 0x82, 0x6e, 0xb4, 0x97, 0xb4, 0x0f, 0x75, + 0x99, 0xb0, 0xba, 0x4f, 0x82, 0x46, 0x54, 0x97, 0x09, 0x1d, 0x41, 0xcf, 0x08, 0xad, 0x32, 0x89, + 0xca, 0xac, 0x9f, 0x12, 0xe6, 0x58, 0xf2, 0xc7, 0xcb, 0xa7, 0x21, 0x4f, 0x9f, 0xf9, 0x42, 0xb0, + 0x46, 0x31, 0xad, 0x94, 0xf4, 0x1c, 0x5a, 0xc8, 0x4d, 0x2a, 0x90, 0x35, 0x2d, 0x28, 0x15, 0xa5, + 0xd0, 0x58, 0xe6, 0xf1, 0x96, 0x75, 0x6d, 0x4d, 0x7d, 0x70, 0x13, 0x91, 0xc5, 0x46, 0x6a, 0x94, + 0x6a, 0xc9, 0xda, 0x16, 0x55, 0x2d, 0xfa, 0x08, 0xee, 0xf1, 0x55, 0x19, 0xeb, 0xf8, 0x4e, 0xe0, + 0xde, 0x5e, 0x87, 0xff, 0x2c, 0x2a, 0x9c, 0x1c, 0xb2, 0x51, 0xb5, 0x8f, 0x0e, 0xa0, 0x99, 0x18, + 0xfe, 0x86, 0xac, 0xeb, 0x93, 0xa0, 0x13, 0x15, 0x82, 0x7a, 0x00, 0xda, 0x88, 0x72, 0x41, 0x0c, + 0x2c, 0xaa, 0x38, 0x79, 0x97, 0xcc, 0x5e, 0x78, 0xca, 0xdc, 0xa2, 0xcb, 0x0a, 0x7a, 0x09, 0x5d, + 0xbb, 0x39, 0x91, 0x4c, 0x90, 0xf5, 0x7c, 0x12, 0x38, 0xd1, 0xd1, 0xc8, 0xe9, 0x4a, 0x27, 0x25, + 0x3d, 0x2b, 0xe8, 0xc1, 0xc8, 0x1f, 0xac, 0x57, 0xd3, 0xb9, 0xcc, 0x66, 0x96, 0xf7, 0x2d, 0xaf, + 0x5a, 0xf7, 0x0f, 0x5f, 0x5b, 0x8f, 0x6c, 0xb6, 0x1e, 0xf9, 0xd9, 0x7a, 0xe4, 0x63, 0xe7, 0xd5, + 0x36, 0x3b, 0xaf, 0xf6, 0xbd, 0xf3, 0x6a, 0xaf, 0x37, 0xa9, 0xc4, 0xd9, 0x6a, 0x1a, 0xc6, 0x6a, + 0x31, 0x3e, 0xfd, 0xf9, 0xf7, 0x43, 0x85, 0x6b, 0x2d, 0xb2, 0x69, 0xcb, 0xfe, 0xff, 0xdd, 0x6f, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x29, 0xd9, 0x4d, 0x71, 0x02, 0x00, 0x00, } func (m *Release) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/repository.pb.go b/x/gitopia/types/repository.pb.go index 3eea0aee..1ce9ab39 100644 --- a/x/gitopia/types/repository.pb.go +++ b/x/gitopia/types/repository.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/repository.proto +// source: gitopia/gitopia/repository.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -54,7 +54,7 @@ func (x RepositoryCollaborator_Permission) String() string { } func (RepositoryCollaborator_Permission) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{6, 0} + return fileDescriptor_bbd9a19e6dde689c, []int{6, 0} } type RepositoryBackup_Store int32 @@ -79,7 +79,7 @@ func (x RepositoryBackup_Store) String() string { } func (RepositoryBackup_Store) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{9, 0} + return fileDescriptor_bbd9a19e6dde689c, []int{9, 0} } type Repository struct { @@ -115,7 +115,7 @@ func (m *Repository) Reset() { *m = Repository{} } func (m *Repository) String() string { return proto.CompactTextString(m) } func (*Repository) ProtoMessage() {} func (*Repository) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{0} + return fileDescriptor_bbd9a19e6dde689c, []int{0} } func (m *Repository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,7 +335,7 @@ func (m *RepositoryId) Reset() { *m = RepositoryId{} } func (m *RepositoryId) String() string { return proto.CompactTextString(m) } func (*RepositoryId) ProtoMessage() {} func (*RepositoryId) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{1} + return fileDescriptor_bbd9a19e6dde689c, []int{1} } func (m *RepositoryId) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -388,7 +388,7 @@ func (m *BaseRepositoryKey) Reset() { *m = BaseRepositoryKey{} } func (m *BaseRepositoryKey) String() string { return proto.CompactTextString(m) } func (*BaseRepositoryKey) ProtoMessage() {} func (*BaseRepositoryKey) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{2} + return fileDescriptor_bbd9a19e6dde689c, []int{2} } func (m *BaseRepositoryKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -447,7 +447,7 @@ func (m *RepositoryOwner) Reset() { *m = RepositoryOwner{} } func (m *RepositoryOwner) String() string { return proto.CompactTextString(m) } func (*RepositoryOwner) ProtoMessage() {} func (*RepositoryOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{3} + return fileDescriptor_bbd9a19e6dde689c, []int{3} } func (m *RepositoryOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -499,7 +499,7 @@ func (m *IssueIid) Reset() { *m = IssueIid{} } func (m *IssueIid) String() string { return proto.CompactTextString(m) } func (*IssueIid) ProtoMessage() {} func (*IssueIid) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{4} + return fileDescriptor_bbd9a19e6dde689c, []int{4} } func (m *IssueIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -551,7 +551,7 @@ func (m *PullRequestIid) Reset() { *m = PullRequestIid{} } func (m *PullRequestIid) String() string { return proto.CompactTextString(m) } func (*PullRequestIid) ProtoMessage() {} func (*PullRequestIid) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{5} + return fileDescriptor_bbd9a19e6dde689c, []int{5} } func (m *PullRequestIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -603,7 +603,7 @@ func (m *RepositoryCollaborator) Reset() { *m = RepositoryCollaborator{} func (m *RepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*RepositoryCollaborator) ProtoMessage() {} func (*RepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{6} + return fileDescriptor_bbd9a19e6dde689c, []int{6} } func (m *RepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -657,7 +657,7 @@ func (m *RepositoryLabel) Reset() { *m = RepositoryLabel{} } func (m *RepositoryLabel) String() string { return proto.CompactTextString(m) } func (*RepositoryLabel) ProtoMessage() {} func (*RepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{7} + return fileDescriptor_bbd9a19e6dde689c, []int{7} } func (m *RepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -723,7 +723,7 @@ func (m *RepositoryRelease) Reset() { *m = RepositoryRelease{} } func (m *RepositoryRelease) String() string { return proto.CompactTextString(m) } func (*RepositoryRelease) ProtoMessage() {} func (*RepositoryRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{8} + return fileDescriptor_bbd9a19e6dde689c, []int{8} } func (m *RepositoryRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -775,7 +775,7 @@ func (m *RepositoryBackup) Reset() { *m = RepositoryBackup{} } func (m *RepositoryBackup) String() string { return proto.CompactTextString(m) } func (*RepositoryBackup) ProtoMessage() {} func (*RepositoryBackup) Descriptor() ([]byte, []int) { - return fileDescriptor_771033d6361900fa, []int{9} + return fileDescriptor_bbd9a19e6dde689c, []int{9} } func (m *RepositoryBackup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -833,65 +833,65 @@ func init() { proto.RegisterType((*RepositoryBackup)(nil), "gitopia.gitopia.gitopia.RepositoryBackup") } -func init() { proto.RegisterFile("gitopia/repository.proto", fileDescriptor_771033d6361900fa) } +func init() { proto.RegisterFile("gitopia/gitopia/repository.proto", fileDescriptor_bbd9a19e6dde689c) } -var fileDescriptor_771033d6361900fa = []byte{ - // 877 bytes of a gzipped FileDescriptorProto +var fileDescriptor_bbd9a19e6dde689c = []byte{ + // 878 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x55, 0x4f, 0x6f, 0xe3, 0x44, - 0x14, 0x8f, 0xf3, 0xbf, 0xaf, 0x6d, 0xd6, 0x9d, 0x96, 0xee, 0x50, 0xa1, 0x28, 0xb2, 0x38, 0x84, + 0x14, 0x8f, 0xf3, 0xbf, 0xaf, 0x6d, 0xd6, 0x9d, 0x2d, 0xdd, 0xa1, 0xa0, 0xc8, 0xb2, 0x38, 0x84, 0x15, 0x4a, 0x51, 0x91, 0x38, 0x20, 0x81, 0x70, 0xdb, 0x14, 0x59, 0xb0, 0xa5, 0xcc, 0x16, 0x56, - 0xec, 0x6d, 0x62, 0x4f, 0x13, 0xab, 0x8e, 0xc7, 0xcc, 0xd8, 0x5b, 0xc2, 0x77, 0x40, 0xe2, 0x63, - 0x71, 0xe0, 0xb0, 0x47, 0x4e, 0x08, 0xb5, 0x5f, 0x04, 0xcd, 0x8c, 0xe3, 0xb8, 0x49, 0x2a, 0x65, - 0x4f, 0x7e, 0xff, 0x7e, 0xef, 0xcd, 0xfb, 0x6b, 0xc0, 0xe3, 0x30, 0xe5, 0x49, 0x48, 0x8f, 0x05, - 0x4b, 0xb8, 0x0c, 0x53, 0x2e, 0x66, 0x83, 0x44, 0xf0, 0x94, 0xa3, 0xe7, 0xb9, 0x66, 0xb0, 0xf4, - 0x3d, 0x3a, 0x18, 0xf3, 0x31, 0xd7, 0x36, 0xc7, 0x8a, 0x32, 0xe6, 0x47, 0xfb, 0x73, 0x47, 0x77, - 0x13, 0x1e, 0x4a, 0x23, 0x74, 0xfe, 0x6d, 0x01, 0x90, 0xc2, 0x31, 0xc2, 0xd0, 0xf2, 0x05, 0xa3, - 0x29, 0x17, 0xd8, 0xea, 0x59, 0xfd, 0x2d, 0x32, 0x67, 0x51, 0x07, 0xaa, 0x61, 0x80, 0xab, 0x3d, - 0xab, 0x5f, 0x27, 0xd5, 0x30, 0x40, 0x08, 0xea, 0x31, 0x9d, 0x32, 0x5c, 0xd3, 0x66, 0x9a, 0x46, - 0x5f, 0x43, 0x83, 0xdf, 0xc5, 0x4c, 0xe0, 0x7a, 0xcf, 0xea, 0x6f, 0x9f, 0xf4, 0x07, 0x4f, 0x3c, - 0x70, 0xb0, 0x88, 0xf8, 0x83, 0xb2, 0x27, 0x06, 0x86, 0x7a, 0xb0, 0x1d, 0x30, 0xe9, 0x8b, 0x30, - 0x49, 0x43, 0x1e, 0xe3, 0x86, 0x76, 0x5d, 0x16, 0xa1, 0x03, 0x68, 0xdc, 0x70, 0x71, 0x2b, 0x71, - 0xb3, 0x57, 0xeb, 0xd7, 0x89, 0x61, 0x14, 0x4e, 0x66, 0x23, 0x65, 0x35, 0x62, 0x42, 0xe2, 0x96, - 0xc1, 0x95, 0x44, 0x3a, 0x2f, 0x3e, 0x9d, 0x86, 0xa9, 0xc4, 0xed, 0x3c, 0x2f, 0xc3, 0x2a, 0x6c, - 0x28, 0x65, 0xc6, 0xe4, 0x19, 0xcf, 0xe2, 0x14, 0x6f, 0xe9, 0x04, 0xcb, 0x22, 0xd4, 0x05, 0x48, - 0xb2, 0x28, 0xca, 0x0d, 0x40, 0x1b, 0x94, 0x24, 0xe8, 0x1b, 0x68, 0x46, 0x74, 0xc4, 0x22, 0x89, - 0xb7, 0x7b, 0xb5, 0x0d, 0xd3, 0xfe, 0x5e, 0x01, 0x48, 0x8e, 0x53, 0x6f, 0x30, 0x94, 0x09, 0xb1, - 0x63, 0xde, 0x50, 0x12, 0xa1, 0x0b, 0x68, 0x0b, 0x16, 0x31, 0x2a, 0x99, 0xc4, 0xbb, 0x3a, 0xca, - 0x8b, 0x0d, 0xa2, 0x10, 0x03, 0x21, 0x05, 0x16, 0x7d, 0x04, 0x5b, 0xba, 0xa1, 0x2c, 0x70, 0x53, - 0xdc, 0xe9, 0x59, 0xfd, 0x1a, 0x59, 0x08, 0x94, 0x36, 0x4b, 0x82, 0x5c, 0xfb, 0xcc, 0x68, 0x0b, - 0x01, 0x3a, 0x82, 0x76, 0x92, 0xc9, 0x89, 0x56, 0xda, 0x5a, 0x59, 0xf0, 0xaa, 0x46, 0x32, 0xa5, - 0x62, 0x4c, 0x7f, 0x57, 0x0d, 0xd8, 0xd3, 0xcd, 0x29, 0x49, 0x14, 0x96, 0x0a, 0x7f, 0x12, 0xbe, - 0x65, 0x01, 0x46, 0x3d, 0xab, 0xdf, 0x26, 0x05, 0xaf, 0x7a, 0x13, 0x85, 0x3e, 0x8b, 0x25, 0xc3, - 0xfb, 0xa6, 0x37, 0x39, 0x8b, 0x3e, 0x86, 0xdd, 0x80, 0xdd, 0xd0, 0x2c, 0x4a, 0x4f, 0x05, 0x8d, - 0xfd, 0x09, 0x3e, 0xd0, 0xfa, 0xc7, 0x42, 0x74, 0x08, 0xcd, 0x84, 0x0a, 0x16, 0xa7, 0xf8, 0x03, - 0x5d, 0xb8, 0x9c, 0x53, 0x13, 0xaa, 0xc6, 0x03, 0x1f, 0xea, 0x78, 0x9a, 0x46, 0x3f, 0xc1, 0xae, - 0xcf, 0xa3, 0x88, 0x8e, 0xb8, 0x50, 0x53, 0x2d, 0xf1, 0x73, 0x5d, 0xcc, 0xe3, 0x0d, 0x8a, 0x79, - 0x56, 0xc2, 0x91, 0xc7, 0x5e, 0x90, 0x03, 0x3b, 0x34, 0x8a, 0xf8, 0xdd, 0x05, 0x17, 0xb7, 0x61, - 0x3c, 0xc6, 0x58, 0x87, 0x7c, 0x24, 0x43, 0x67, 0xd0, 0x1a, 0x51, 0xff, 0x36, 0x4b, 0x24, 0xfe, - 0x50, 0x07, 0xfd, 0x64, 0x83, 0xa0, 0xa7, 0x1a, 0x41, 0xe6, 0x48, 0xf4, 0x19, 0xec, 0xb3, 0x98, - 0x8e, 0x22, 0xe6, 0x8a, 0x3b, 0x46, 0xdf, 0x32, 0xa3, 0xc7, 0x47, 0x3a, 0xde, 0x3a, 0x95, 0x73, - 0x02, 0x3b, 0x0b, 0x77, 0x5e, 0x90, 0xef, 0xb1, 0x59, 0xee, 0xf2, 0x1e, 0x57, 0x17, 0x7b, 0xec, - 0xfc, 0x08, 0x7b, 0xa7, 0x6a, 0x6e, 0x0a, 0xdc, 0x77, 0x6c, 0x56, 0x02, 0x9a, 0x03, 0x80, 0xa1, - 0x45, 0x83, 0x40, 0x30, 0x29, 0x73, 0xec, 0x9c, 0x5d, 0x77, 0x1a, 0x9c, 0x5f, 0xe0, 0xd9, 0xd2, - 0xd2, 0xaf, 0xbc, 0xe4, 0x0b, 0xa8, 0xa7, 0xb3, 0xc4, 0xbc, 0xa4, 0x73, 0xe2, 0x3c, 0x59, 0x1d, - 0x8d, 0xbe, 0x9e, 0x25, 0x8c, 0x68, 0x7b, 0xe7, 0x53, 0x68, 0x7b, 0x6a, 0x5d, 0xbd, 0x30, 0x40, - 0x36, 0xd4, 0xc2, 0xe2, 0x95, 0x8a, 0x5c, 0xbe, 0x5b, 0xce, 0x09, 0x74, 0xae, 0xb2, 0x28, 0x22, - 0xec, 0xd7, 0x8c, 0xc9, 0x74, 0x33, 0xcc, 0xdf, 0x16, 0x1c, 0xae, 0x1f, 0x84, 0x95, 0x24, 0xde, - 0x00, 0x24, 0x4c, 0x4c, 0x43, 0x29, 0xd5, 0x05, 0x33, 0xa9, 0x7c, 0xf9, 0x9e, 0xd3, 0x35, 0xb8, - 0x2a, 0x3c, 0x90, 0x92, 0x37, 0xe7, 0x02, 0x60, 0xa1, 0x41, 0x6d, 0xa8, 0x93, 0xa1, 0x7b, 0x6e, - 0x57, 0x10, 0x40, 0xf3, 0x9a, 0x78, 0xee, 0xb7, 0x43, 0xdb, 0x42, 0x5b, 0xd0, 0x78, 0x4d, 0xbc, - 0xeb, 0xa1, 0x5d, 0x45, 0x3b, 0xd0, 0x7e, 0xe9, 0x7a, 0x97, 0xd7, 0xae, 0x77, 0x69, 0xd7, 0x94, - 0xc2, 0x3d, 0x7f, 0xe9, 0x5d, 0xda, 0x75, 0x67, 0x5a, 0xee, 0x85, 0xbe, 0x44, 0x2b, 0xcd, 0x5d, - 0x33, 0x15, 0xea, 0xf6, 0xfa, 0x3c, 0xe2, 0x22, 0xef, 0xab, 0x61, 0x96, 0x6f, 0x76, 0x7d, 0xe5, - 0x66, 0x3b, 0x5f, 0xc1, 0xde, 0xca, 0x49, 0x5a, 0x37, 0x4d, 0x29, 0x1d, 0x5f, 0x2e, 0x62, 0xce, - 0x59, 0xe7, 0x0f, 0x0b, 0xec, 0xe5, 0x85, 0x40, 0x43, 0x68, 0xc8, 0x94, 0x0b, 0xa6, 0x3d, 0x74, - 0x36, 0xda, 0x5f, 0x83, 0x1c, 0xbc, 0x52, 0x30, 0x62, 0xd0, 0x2a, 0x4d, 0xc1, 0x6e, 0xd4, 0x00, - 0xd7, 0x54, 0x9a, 0x8a, 0x76, 0xba, 0xd0, 0xd0, 0x36, 0xaa, 0xc0, 0xde, 0xd5, 0xc5, 0x2b, 0xbb, - 0x82, 0xb6, 0xa1, 0xe5, 0x92, 0xd7, 0x43, 0xf7, 0xe7, 0xa1, 0x6d, 0x9d, 0x9e, 0xff, 0x75, 0xdf, - 0xb5, 0xde, 0xdd, 0x77, 0xad, 0xff, 0xee, 0xbb, 0xd6, 0x9f, 0x0f, 0xdd, 0xca, 0xbb, 0x87, 0x6e, - 0xe5, 0x9f, 0x87, 0x6e, 0xe5, 0xcd, 0x8b, 0x71, 0x98, 0x4e, 0xb2, 0xd1, 0xc0, 0xe7, 0xd3, 0xe3, - 0xf9, 0xbf, 0x76, 0xfe, 0xfd, 0xad, 0xa0, 0xd4, 0xcc, 0xca, 0x51, 0x53, 0xff, 0x7e, 0x3f, 0xff, - 0x3f, 0x00, 0x00, 0xff, 0xff, 0x3a, 0xe1, 0x9a, 0xa5, 0xde, 0x07, 0x00, 0x00, + 0xec, 0x6d, 0x62, 0x4f, 0x13, 0xab, 0x8e, 0xc7, 0xcc, 0xd8, 0x5b, 0xca, 0x77, 0x40, 0xe2, 0x63, + 0x71, 0xe0, 0xb0, 0x47, 0x4e, 0x08, 0xb5, 0x5f, 0x04, 0xcd, 0x8c, 0xe3, 0xb8, 0x49, 0x56, 0x0a, + 0x27, 0xbf, 0x7f, 0xbf, 0xf7, 0xe6, 0xfd, 0x35, 0x38, 0x93, 0x28, 0xe3, 0x69, 0x44, 0x8f, 0xe6, + 0x5f, 0xc1, 0x52, 0x2e, 0xa3, 0x8c, 0x8b, 0xbb, 0x61, 0x2a, 0x78, 0xc6, 0xd1, 0xb3, 0x42, 0x33, + 0x5c, 0xfa, 0x1e, 0xee, 0x4f, 0xf8, 0x84, 0x6b, 0x9b, 0x23, 0x45, 0x19, 0xf3, 0xc3, 0x0f, 0x96, + 0x1d, 0xde, 0x4e, 0x79, 0x24, 0x8d, 0xd2, 0xfd, 0xa7, 0x03, 0x40, 0xca, 0x00, 0x08, 0x43, 0x27, + 0x10, 0x8c, 0x66, 0x5c, 0x60, 0xcb, 0xb1, 0x06, 0x5b, 0x64, 0xce, 0xa2, 0x1e, 0xd4, 0xa3, 0x10, + 0xd7, 0x1d, 0x6b, 0xd0, 0x24, 0xf5, 0x28, 0x44, 0x08, 0x9a, 0x09, 0x9d, 0x31, 0xdc, 0xd0, 0x66, + 0x9a, 0x46, 0x5f, 0x41, 0x8b, 0xdf, 0x26, 0x4c, 0xe0, 0xa6, 0x63, 0x0d, 0xb6, 0x8f, 0x07, 0xc3, + 0x77, 0x3c, 0x74, 0xb8, 0x88, 0xf8, 0xbd, 0xb2, 0x27, 0x06, 0x86, 0x1c, 0xd8, 0x0e, 0x99, 0x0c, + 0x44, 0x94, 0x66, 0x11, 0x4f, 0x70, 0x4b, 0xbb, 0xae, 0x8a, 0xd0, 0x3e, 0xb4, 0xae, 0xb9, 0xb8, + 0x91, 0xb8, 0xed, 0x34, 0x06, 0x4d, 0x62, 0x18, 0x85, 0x93, 0xf9, 0x58, 0x59, 0x8d, 0x99, 0x90, + 0xb8, 0x63, 0x70, 0x15, 0x91, 0xce, 0x8b, 0xcf, 0x66, 0x51, 0x26, 0x71, 0xb7, 0xc8, 0xcb, 0xb0, + 0x0a, 0x1b, 0x49, 0x99, 0x33, 0x79, 0xca, 0xf3, 0x24, 0xc3, 0x5b, 0x3a, 0xc1, 0xaa, 0x08, 0xf5, + 0x01, 0xd2, 0x3c, 0x8e, 0x0b, 0x03, 0xd0, 0x06, 0x15, 0x09, 0xfa, 0x1a, 0xda, 0x31, 0x1d, 0xb3, + 0x58, 0xe2, 0x6d, 0xa7, 0xb1, 0x61, 0xda, 0xdf, 0x29, 0x00, 0x29, 0x70, 0xea, 0x0d, 0x86, 0x32, + 0x21, 0x76, 0xcc, 0x1b, 0x2a, 0x22, 0x74, 0x0e, 0x5d, 0xc1, 0x62, 0x46, 0x25, 0x93, 0x78, 0x57, + 0x47, 0x79, 0xbe, 0x41, 0x14, 0x62, 0x20, 0xa4, 0xc4, 0xa2, 0x0f, 0x61, 0x4b, 0x37, 0x94, 0x85, + 0x5e, 0x86, 0x7b, 0x8e, 0x35, 0x68, 0x90, 0x85, 0x40, 0x69, 0xf3, 0x34, 0x2c, 0xb4, 0x4f, 0x8c, + 0xb6, 0x14, 0xa0, 0x43, 0xe8, 0xa6, 0xb9, 0x9c, 0x6a, 0xa5, 0xad, 0x95, 0x25, 0xaf, 0x6a, 0x24, + 0x33, 0x2a, 0x26, 0xf4, 0x37, 0xd5, 0x80, 0x3d, 0xdd, 0x9c, 0x8a, 0x44, 0x61, 0xa9, 0x08, 0xa6, + 0xd1, 0x1b, 0x16, 0x62, 0xe4, 0x58, 0x83, 0x2e, 0x29, 0x79, 0xd5, 0x9b, 0x38, 0x0a, 0x58, 0x22, + 0x19, 0x7e, 0x6a, 0x7a, 0x53, 0xb0, 0xe8, 0x23, 0xd8, 0x0d, 0xd9, 0x35, 0xcd, 0xe3, 0xec, 0x44, + 0xd0, 0x24, 0x98, 0xe2, 0x7d, 0xad, 0x7f, 0x2c, 0x44, 0x07, 0xd0, 0x4e, 0xa9, 0x60, 0x49, 0x86, + 0xdf, 0xd3, 0x85, 0x2b, 0x38, 0x35, 0xa1, 0x6a, 0x3c, 0xf0, 0x81, 0x8e, 0xa7, 0x69, 0xf4, 0x23, + 0xec, 0x06, 0x3c, 0x8e, 0xe9, 0x98, 0x0b, 0x35, 0xd5, 0x12, 0x3f, 0xd3, 0xc5, 0x3c, 0xda, 0xa0, + 0x98, 0xa7, 0x15, 0x1c, 0x79, 0xec, 0x05, 0xb9, 0xb0, 0x43, 0xe3, 0x98, 0xdf, 0x9e, 0x73, 0x71, + 0x13, 0x25, 0x13, 0x8c, 0x75, 0xc8, 0x47, 0x32, 0x74, 0x0a, 0x9d, 0x31, 0x0d, 0x6e, 0xf2, 0x54, + 0xe2, 0xf7, 0x75, 0xd0, 0x8f, 0x37, 0x08, 0x7a, 0xa2, 0x11, 0x64, 0x8e, 0x44, 0x9f, 0xc2, 0x53, + 0x96, 0xd0, 0x71, 0xcc, 0x3c, 0x71, 0xcb, 0xe8, 0x1b, 0x66, 0xf4, 0xf8, 0x50, 0xc7, 0x5b, 0xa7, + 0x72, 0x8f, 0x61, 0x67, 0xe1, 0xce, 0x0f, 0x8b, 0x3d, 0x36, 0xcb, 0x5d, 0xdd, 0xe3, 0xfa, 0x62, + 0x8f, 0xdd, 0x1f, 0x60, 0xef, 0x44, 0xcd, 0x4d, 0x89, 0xfb, 0x96, 0xdd, 0x55, 0x80, 0xe6, 0x00, + 0x60, 0xe8, 0xd0, 0x30, 0x14, 0x4c, 0xca, 0x02, 0x3b, 0x67, 0xd7, 0x9d, 0x06, 0xf7, 0x67, 0x78, + 0xb2, 0xb4, 0xf4, 0x2b, 0x2f, 0xf9, 0x1c, 0x9a, 0xd9, 0x5d, 0x6a, 0x5e, 0xd2, 0x3b, 0x76, 0xdf, + 0x59, 0x1d, 0x8d, 0xbe, 0xba, 0x4b, 0x19, 0xd1, 0xf6, 0xee, 0x27, 0xd0, 0xf5, 0xd5, 0xba, 0xfa, + 0x51, 0x88, 0x6c, 0x68, 0x44, 0xe5, 0x2b, 0x15, 0xb9, 0x7c, 0xb7, 0xdc, 0x63, 0xe8, 0x5d, 0xe6, + 0x71, 0x4c, 0xd8, 0x2f, 0x39, 0x93, 0xd9, 0x66, 0x98, 0xbf, 0x2c, 0x38, 0x58, 0x3f, 0x08, 0x2b, + 0x49, 0xbc, 0x06, 0x48, 0x99, 0x98, 0x45, 0x52, 0xaa, 0x0b, 0x66, 0x52, 0xf9, 0xe2, 0x7f, 0x4e, + 0xd7, 0xf0, 0xb2, 0xf4, 0x40, 0x2a, 0xde, 0xdc, 0x73, 0x80, 0x85, 0x06, 0x75, 0xa1, 0x49, 0x46, + 0xde, 0x99, 0x5d, 0x43, 0x00, 0xed, 0x2b, 0xe2, 0x7b, 0xdf, 0x8c, 0x6c, 0x0b, 0x6d, 0x41, 0xeb, + 0x15, 0xf1, 0xaf, 0x46, 0x76, 0x1d, 0xed, 0x40, 0xf7, 0x85, 0xe7, 0x5f, 0x5c, 0x79, 0xfe, 0x85, + 0xdd, 0x50, 0x0a, 0xef, 0xec, 0x85, 0x7f, 0x61, 0x37, 0xdd, 0x59, 0xb5, 0x17, 0xfa, 0x12, 0xad, + 0x34, 0x77, 0xcd, 0x54, 0xa8, 0xdb, 0x1b, 0xf0, 0x98, 0x8b, 0xa2, 0xaf, 0x86, 0x59, 0xbe, 0xd9, + 0xcd, 0x95, 0x9b, 0xed, 0x7e, 0x09, 0x7b, 0x2b, 0x27, 0x69, 0xdd, 0x34, 0x65, 0x74, 0x72, 0xb1, + 0x88, 0x39, 0x67, 0xdd, 0xdf, 0x2d, 0xb0, 0x97, 0x17, 0x02, 0x8d, 0xa0, 0x25, 0x33, 0x2e, 0x98, + 0xf6, 0xd0, 0xdb, 0x68, 0x7f, 0x0d, 0x72, 0xf8, 0x52, 0xc1, 0x88, 0x41, 0xab, 0x34, 0x05, 0xbb, + 0x56, 0x03, 0xdc, 0x50, 0x69, 0x2a, 0xda, 0xed, 0x43, 0x4b, 0xdb, 0xa8, 0x02, 0xfb, 0x97, 0xe7, + 0x2f, 0xed, 0x1a, 0xda, 0x86, 0x8e, 0x47, 0x5e, 0x8d, 0xbc, 0x9f, 0x46, 0xb6, 0x75, 0x72, 0xf6, + 0xe7, 0x7d, 0xdf, 0x7a, 0x7b, 0xdf, 0xb7, 0xfe, 0xbd, 0xef, 0x5b, 0x7f, 0x3c, 0xf4, 0x6b, 0x6f, + 0x1f, 0xfa, 0xb5, 0xbf, 0x1f, 0xfa, 0xb5, 0xd7, 0xcf, 0x27, 0x51, 0x36, 0xcd, 0xc7, 0xc3, 0x80, + 0xcf, 0x8e, 0x96, 0xff, 0xb9, 0xbf, 0x96, 0x94, 0x9a, 0x59, 0x39, 0x6e, 0xeb, 0xdf, 0xef, 0x67, + 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xd9, 0xe3, 0x2b, 0xa8, 0xee, 0x07, 0x00, 0x00, } func (m *Repository) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/tag.pb.go b/x/gitopia/types/tag.pb.go index 2cb9b44f..39274640 100644 --- a/x/gitopia/types/tag.pb.go +++ b/x/gitopia/types/tag.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/tag.proto +// source: gitopia/gitopia/tag.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -35,7 +35,7 @@ func (m *Tag) Reset() { *m = Tag{} } func (m *Tag) String() string { return proto.CompactTextString(m) } func (*Tag) ProtoMessage() {} func (*Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_bd09f5e76807ae94, []int{0} + return fileDescriptor_1d18d058690603bd, []int{0} } func (m *Tag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -110,24 +110,24 @@ func init() { proto.RegisterType((*Tag)(nil), "gitopia.gitopia.gitopia.Tag") } -func init() { proto.RegisterFile("gitopia/tag.proto", fileDescriptor_bd09f5e76807ae94) } +func init() { proto.RegisterFile("gitopia/gitopia/tag.proto", fileDescriptor_1d18d058690603bd) } -var fileDescriptor_bd09f5e76807ae94 = []byte{ +var fileDescriptor_1d18d058690603bd = []byte{ // 216 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4c, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x2f, 0x49, 0x4c, 0xd7, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, - 0x0a, 0xe9, 0xa1, 0xd1, 0x4a, 0xb3, 0x19, 0xb9, 0x98, 0x43, 0x12, 0xd3, 0x85, 0xf8, 0xb8, 0x98, - 0x32, 0x53, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x82, 0x98, 0x32, 0x53, 0x84, 0x94, 0xb8, 0x78, - 0x8a, 0x52, 0x0b, 0xf2, 0x8b, 0x33, 0x4b, 0xf2, 0x8b, 0x2a, 0x3d, 0x53, 0x24, 0x98, 0xc0, 0x32, - 0x28, 0x62, 0x42, 0x42, 0x5c, 0x2c, 0x79, 0x89, 0xb9, 0xa9, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0x9c, - 0x41, 0x60, 0xb6, 0x90, 0x00, 0x17, 0x73, 0x71, 0x46, 0xa2, 0x04, 0x0b, 0x58, 0x08, 0xc4, 0x14, - 0x92, 0xe1, 0xe2, 0x4c, 0x2e, 0x4a, 0x4d, 0x2c, 0x49, 0x4d, 0x71, 0x2c, 0x91, 0x60, 0x55, 0x60, - 0xd4, 0x60, 0x0e, 0x42, 0x08, 0x80, 0x64, 0x4b, 0x0b, 0x52, 0xa0, 0xb2, 0x6c, 0x10, 0x59, 0xb8, - 0x80, 0x93, 0xcb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, - 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa5, 0x67, - 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xc3, 0xbc, 0x0b, 0xa3, 0x2b, 0xe0, 0xac, - 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x18, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, - 0x23, 0x48, 0xe2, 0xf8, 0x18, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4c, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0x25, 0x89, 0xe9, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, + 0xe2, 0x50, 0x21, 0x3d, 0x34, 0x5a, 0x69, 0x36, 0x23, 0x17, 0x73, 0x48, 0x62, 0xba, 0x10, 0x1f, + 0x17, 0x53, 0x66, 0x8a, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x4b, 0x10, 0x53, 0x66, 0x8a, 0x90, 0x12, + 0x17, 0x4f, 0x51, 0x6a, 0x41, 0x7e, 0x71, 0x66, 0x49, 0x7e, 0x51, 0xa5, 0x67, 0x8a, 0x04, 0x13, + 0x58, 0x06, 0x45, 0x4c, 0x48, 0x88, 0x8b, 0x25, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x59, 0x81, 0x51, + 0x83, 0x33, 0x08, 0xcc, 0x16, 0x12, 0xe0, 0x62, 0x2e, 0xce, 0x48, 0x94, 0x60, 0x01, 0x0b, 0x81, + 0x98, 0x42, 0x32, 0x5c, 0x9c, 0xc9, 0x45, 0xa9, 0x89, 0x25, 0xa9, 0x29, 0x8e, 0x25, 0x12, 0xac, + 0x0a, 0x8c, 0x1a, 0xcc, 0x41, 0x08, 0x01, 0x90, 0x6c, 0x69, 0x41, 0x0a, 0x54, 0x96, 0x0d, 0x22, + 0x0b, 0x17, 0x70, 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, + 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xad, + 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x74, 0x6f, 0x57, 0x20, 0x02, + 0xa0, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x06, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xaf, 0x81, 0x53, 0x4e, 0x20, 0x01, 0x00, 0x00, } func (m *Tag) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/task.pb.go b/x/gitopia/types/task.pb.go index 1871f6b8..a8ab05cd 100644 --- a/x/gitopia/types/task.pb.go +++ b/x/gitopia/types/task.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/task.proto +// source: gitopia/gitopia/task.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -45,7 +45,7 @@ func (x TaskType) String() string { } func (TaskType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_a6920678987ef43f, []int{0} + return fileDescriptor_224396eac3759120, []int{0} } type TaskState int32 @@ -73,7 +73,7 @@ func (x TaskState) String() string { } func (TaskState) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_a6920678987ef43f, []int{1} + return fileDescriptor_224396eac3759120, []int{1} } type Task struct { @@ -89,7 +89,7 @@ func (m *Task) Reset() { *m = Task{} } func (m *Task) String() string { return proto.CompactTextString(m) } func (*Task) ProtoMessage() {} func (*Task) Descriptor() ([]byte, []int) { - return fileDescriptor_a6920678987ef43f, []int{0} + return fileDescriptor_224396eac3759120, []int{0} } func (m *Task) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -166,38 +166,38 @@ func init() { proto.RegisterType((*Task)(nil), "gitopia.gitopia.gitopia.Task") } -func init() { proto.RegisterFile("gitopia/task.proto", fileDescriptor_a6920678987ef43f) } +func init() { proto.RegisterFile("gitopia/gitopia/task.proto", fileDescriptor_224396eac3759120) } -var fileDescriptor_a6920678987ef43f = []byte{ +var fileDescriptor_224396eac3759120 = []byte{ // 438 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x41, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0xe3, 0x92, 0x8d, 0xcd, 0x42, 0x53, 0x64, 0x21, 0x16, 0x82, 0x14, 0x85, 0x9d, 0xaa, - 0x1e, 0x52, 0x09, 0x34, 0x89, 0x6b, 0xd9, 0x5c, 0x54, 0xad, 0x5a, 0x83, 0xed, 0x1e, 0xc6, 0x25, - 0xca, 0x5a, 0x2b, 0x58, 0xed, 0xe6, 0x60, 0x3b, 0x88, 0x7e, 0x03, 0xd4, 0x0b, 0x7c, 0x81, 0x9e, - 0xf8, 0x32, 0x1c, 0x77, 0x83, 0x23, 0x6a, 0xbf, 0x08, 0x8a, 0xdb, 0x94, 0xa9, 0x12, 0x3b, 0xbd, - 0xf7, 0xfc, 0x7e, 0xff, 0xbf, 0xde, 0x93, 0x1f, 0x44, 0xb9, 0x30, 0xb2, 0x10, 0x59, 0xdb, 0x64, - 0x7a, 0x12, 0x17, 0x4a, 0x1a, 0x89, 0x8e, 0x37, 0x6f, 0xf1, 0x4e, 0x0c, 0x9e, 0xe6, 0x32, 0x97, - 0x96, 0x69, 0x57, 0xd9, 0x1a, 0x3f, 0xf9, 0x05, 0xa0, 0xcb, 0x32, 0x3d, 0x41, 0x47, 0xb0, 0x21, - 0xc6, 0x3e, 0x88, 0x40, 0xd3, 0x25, 0x0d, 0x31, 0x46, 0xa7, 0xd0, 0x35, 0xb3, 0x82, 0xfb, 0x8d, - 0x08, 0x34, 0x8f, 0x5e, 0xbd, 0x8c, 0xff, 0x63, 0x1b, 0x57, 0x62, 0x36, 0x2b, 0x38, 0xb1, 0x38, - 0x7a, 0x03, 0xf7, 0xb4, 0xc9, 0x0c, 0xf7, 0x1f, 0x59, 0xdd, 0xc9, 0x83, 0x3a, 0x5a, 0x91, 0x64, - 0x2d, 0x40, 0x3e, 0x7c, 0x7c, 0xc3, 0xb5, 0xce, 0x72, 0xee, 0xbb, 0x11, 0x68, 0x1e, 0x92, 0xba, - 0xac, 0x3a, 0x23, 0xc5, 0x33, 0x23, 0x95, 0xbf, 0xb7, 0xee, 0x6c, 0x4a, 0x14, 0xc0, 0x83, 0x42, - 0xc9, 0xcf, 0x62, 0xcc, 0x95, 0xbf, 0x6f, 0x5b, 0xdb, 0xba, 0x35, 0x07, 0xf0, 0xa0, 0x1e, 0x0e, - 0x9d, 0xc2, 0xe7, 0xac, 0x43, 0x2f, 0x52, 0x76, 0x95, 0xe0, 0xb4, 0x3b, 0x20, 0x17, 0x29, 0xc1, - 0xc9, 0x80, 0xf6, 0xd8, 0x80, 0x5c, 0x79, 0x4e, 0xf0, 0x6c, 0xbe, 0x88, 0x50, 0x05, 0x76, 0xa5, - 0x9a, 0x10, 0x5e, 0x48, 0x2d, 0x8c, 0x54, 0x33, 0xd4, 0x81, 0xd1, 0x3f, 0x19, 0xc5, 0x2c, 0x4d, - 0x86, 0xfd, 0x7e, 0x4a, 0xf0, 0xfb, 0x21, 0xa6, 0x2c, 0xa5, 0xac, 0xc3, 0xb0, 0x07, 0x82, 0x17, - 0xf3, 0x45, 0x74, 0x5c, 0xa9, 0x29, 0x37, 0x49, 0x39, 0x9d, 0x12, 0xfe, 0xa9, 0xe4, 0xda, 0xd8, - 0xed, 0x02, 0xf7, 0xeb, 0x8f, 0xd0, 0x69, 0x7d, 0x03, 0xf0, 0x70, 0xbb, 0x31, 0x6a, 0x42, 0x64, - 0x6d, 0xad, 0x41, 0x9a, 0xe0, 0xcb, 0xf3, 0xde, 0xe5, 0x3b, 0xcf, 0x09, 0xbc, 0xf9, 0x22, 0x7a, - 0x62, 0x91, 0x84, 0xdf, 0x8e, 0xc5, 0x6d, 0xbe, 0x43, 0xd2, 0xe1, 0xd9, 0x19, 0xa6, 0xd4, 0x03, - 0xf7, 0x48, 0x5a, 0x8e, 0x46, 0x5c, 0xeb, 0x1d, 0xb2, 0xdb, 0xe9, 0xf5, 0x87, 0x04, 0x7b, 0x8d, - 0x7b, 0x64, 0x37, 0x13, 0xd3, 0x52, 0x6d, 0x26, 0x7a, 0x7b, 0xfe, 0x73, 0x19, 0x82, 0xbb, 0x65, - 0x08, 0xfe, 0x2c, 0x43, 0xf0, 0x7d, 0x15, 0x3a, 0x77, 0xab, 0xd0, 0xf9, 0xbd, 0x0a, 0x9d, 0x0f, - 0xad, 0x5c, 0x98, 0x8f, 0xe5, 0x75, 0x3c, 0x92, 0x37, 0xed, 0xfa, 0xc0, 0xea, 0xf8, 0x65, 0x9b, - 0x55, 0xbf, 0xad, 0xaf, 0xf7, 0xed, 0x15, 0xbd, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x69, 0xfa, - 0x3f, 0x24, 0x8a, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x41, 0x6b, 0xdb, 0x30, + 0x14, 0x80, 0xad, 0xcc, 0xed, 0x5a, 0x31, 0x8a, 0x11, 0x63, 0xf5, 0x3c, 0x30, 0x5e, 0x4f, 0x21, + 0x07, 0x07, 0x36, 0x0a, 0xbb, 0x66, 0xad, 0x32, 0x42, 0x43, 0xe3, 0x49, 0xca, 0xa1, 0xbb, 0x18, + 0x37, 0x11, 0x9e, 0x48, 0x5a, 0x79, 0x92, 0x3c, 0x96, 0x7f, 0x30, 0x72, 0xd9, 0xfe, 0x40, 0x4e, + 0xfb, 0x33, 0x3b, 0xf6, 0xb6, 0x1d, 0x47, 0xf2, 0x47, 0x86, 0x95, 0xa4, 0x0d, 0x86, 0xed, 0xf4, + 0xf4, 0xf4, 0xbe, 0xef, 0xf1, 0x1e, 0x3c, 0x18, 0xe4, 0xc2, 0xc8, 0x42, 0x64, 0xed, 0x6d, 0x34, + 0x99, 0x9e, 0xc4, 0x85, 0x92, 0x46, 0xa2, 0xe3, 0xcd, 0x5f, 0x5c, 0x8b, 0xc1, 0xd3, 0x5c, 0xe6, + 0xd2, 0x32, 0xed, 0xea, 0xb5, 0xc6, 0x4f, 0x7e, 0x01, 0xe8, 0xb2, 0x4c, 0x4f, 0xd0, 0x11, 0x6c, + 0x88, 0xb1, 0x0f, 0x22, 0xd0, 0x74, 0x49, 0x43, 0x8c, 0xd1, 0x29, 0x74, 0xcd, 0xac, 0xe0, 0x7e, + 0x23, 0x02, 0xcd, 0xa3, 0x57, 0x2f, 0xe3, 0x7f, 0xb4, 0x8d, 0x2b, 0x99, 0xcd, 0x0a, 0x4e, 0x2c, + 0x8e, 0xde, 0xc0, 0x3d, 0x6d, 0x32, 0xc3, 0xfd, 0x47, 0xd6, 0x3b, 0xf9, 0xaf, 0x47, 0x2b, 0x92, + 0xac, 0x05, 0xe4, 0xc3, 0xc7, 0x37, 0x5c, 0xeb, 0x2c, 0xe7, 0xbe, 0x1b, 0x81, 0xe6, 0x21, 0xd9, + 0xa6, 0x55, 0x65, 0xa4, 0x78, 0x66, 0xa4, 0xf2, 0xf7, 0xd6, 0x95, 0x4d, 0x8a, 0x02, 0x78, 0x50, + 0x28, 0xf9, 0x59, 0x8c, 0xb9, 0xf2, 0xf7, 0x6d, 0xe9, 0x3e, 0x6f, 0xcd, 0x01, 0x3c, 0xd8, 0x0e, + 0x87, 0x4e, 0xe1, 0x73, 0xd6, 0xa1, 0x17, 0x29, 0xbb, 0x4a, 0x70, 0xda, 0x1d, 0x90, 0x8b, 0x94, + 0xe0, 0x64, 0x40, 0x7b, 0x6c, 0x40, 0xae, 0x3c, 0x27, 0x78, 0x36, 0x5f, 0x44, 0xa8, 0x02, 0xbb, + 0x52, 0x4d, 0x08, 0x2f, 0xa4, 0x16, 0x46, 0xaa, 0x19, 0xea, 0xc0, 0xe8, 0x41, 0xa3, 0x98, 0xa5, + 0xc9, 0xb0, 0xdf, 0x4f, 0x09, 0x7e, 0x3f, 0xc4, 0x94, 0xa5, 0x94, 0x75, 0x18, 0xf6, 0x40, 0xf0, + 0x62, 0xbe, 0x88, 0x8e, 0x2b, 0x9b, 0x72, 0x93, 0x94, 0xd3, 0x29, 0xe1, 0x9f, 0x4a, 0xae, 0x8d, + 0xdd, 0x2e, 0x70, 0xbf, 0xfe, 0x08, 0x9d, 0xd6, 0x37, 0x00, 0x0f, 0xef, 0x37, 0x46, 0x4d, 0x88, + 0x6c, 0x5b, 0xdb, 0x20, 0x4d, 0xf0, 0xe5, 0x79, 0xef, 0xf2, 0x9d, 0xe7, 0x04, 0xde, 0x7c, 0x11, + 0x3d, 0xb1, 0x48, 0xc2, 0x6f, 0xc7, 0xe2, 0x36, 0xaf, 0x91, 0x74, 0x78, 0x76, 0x86, 0x29, 0xf5, + 0xc0, 0x0e, 0x49, 0xcb, 0xd1, 0x88, 0x6b, 0x5d, 0x23, 0xbb, 0x9d, 0x5e, 0x7f, 0x48, 0xb0, 0xd7, + 0xd8, 0x21, 0xbb, 0x99, 0x98, 0x96, 0x6a, 0x33, 0xd1, 0xdb, 0xf3, 0x9f, 0xcb, 0x10, 0xdc, 0x2d, + 0x43, 0xf0, 0x67, 0x19, 0x82, 0xef, 0xab, 0xd0, 0xb9, 0x5b, 0x85, 0xce, 0xef, 0x55, 0xe8, 0x7c, + 0x68, 0xe5, 0xc2, 0x7c, 0x2c, 0xaf, 0xe3, 0x91, 0xbc, 0x69, 0xd7, 0x0f, 0xed, 0xcb, 0xc3, 0xc9, + 0xcd, 0x0a, 0xae, 0xaf, 0xf7, 0xed, 0x15, 0xbd, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x43, 0xc4, + 0xb4, 0x19, 0x92, 0x02, 0x00, 0x00, } func (m *Task) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index 6cd200e6..f89d9cf0 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/tx.proto +// source: gitopia/gitopia/tx.proto package types @@ -8,9 +8,9 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -52,7 +52,7 @@ func (x ProviderPermission) String() string { } func (ProviderPermission) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{0} + return fileDescriptor_b3051f5aac033d39, []int{0} } type MsgExercise struct { @@ -65,7 +65,7 @@ func (m *MsgExercise) Reset() { *m = MsgExercise{} } func (m *MsgExercise) String() string { return proto.CompactTextString(m) } func (*MsgExercise) ProtoMessage() {} func (*MsgExercise) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{0} + return fileDescriptor_b3051f5aac033d39, []int{0} } func (m *MsgExercise) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,7 +122,7 @@ func (m *MsgExerciseResponse) Reset() { *m = MsgExerciseResponse{} } func (m *MsgExerciseResponse) String() string { return proto.CompactTextString(m) } func (*MsgExerciseResponse) ProtoMessage() {} func (*MsgExerciseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{1} + return fileDescriptor_b3051f5aac033d39, []int{1} } func (m *MsgExerciseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -161,7 +161,7 @@ func (m *MsgToggleForcePush) Reset() { *m = MsgToggleForcePush{} } func (m *MsgToggleForcePush) String() string { return proto.CompactTextString(m) } func (*MsgToggleForcePush) ProtoMessage() {} func (*MsgToggleForcePush) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{2} + return fileDescriptor_b3051f5aac033d39, []int{2} } func (m *MsgToggleForcePush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -218,7 +218,7 @@ func (m *MsgToggleForcePushResponse) Reset() { *m = MsgToggleForcePushRe func (m *MsgToggleForcePushResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleForcePushResponse) ProtoMessage() {} func (*MsgToggleForcePushResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{3} + return fileDescriptor_b3051f5aac033d39, []int{3} } func (m *MsgToggleForcePushResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -258,7 +258,7 @@ func (m *MsgRevokeProviderPermission) Reset() { *m = MsgRevokeProviderPe func (m *MsgRevokeProviderPermission) String() string { return proto.CompactTextString(m) } func (*MsgRevokeProviderPermission) ProtoMessage() {} func (*MsgRevokeProviderPermission) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{4} + return fileDescriptor_b3051f5aac033d39, []int{4} } func (m *MsgRevokeProviderPermission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -322,7 +322,7 @@ func (m *MsgRevokeProviderPermissionResponse) Reset() { *m = MsgRevokePr func (m *MsgRevokeProviderPermissionResponse) String() string { return proto.CompactTextString(m) } func (*MsgRevokeProviderPermissionResponse) ProtoMessage() {} func (*MsgRevokeProviderPermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{5} + return fileDescriptor_b3051f5aac033d39, []int{5} } func (m *MsgRevokeProviderPermissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -362,7 +362,7 @@ func (m *MsgAuthorizeProvider) Reset() { *m = MsgAuthorizeProvider{} } func (m *MsgAuthorizeProvider) String() string { return proto.CompactTextString(m) } func (*MsgAuthorizeProvider) ProtoMessage() {} func (*MsgAuthorizeProvider) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{6} + return fileDescriptor_b3051f5aac033d39, []int{6} } func (m *MsgAuthorizeProvider) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -426,7 +426,7 @@ func (m *MsgAuthorizeProviderResponse) Reset() { *m = MsgAuthorizeProvid func (m *MsgAuthorizeProviderResponse) String() string { return proto.CompactTextString(m) } func (*MsgAuthorizeProviderResponse) ProtoMessage() {} func (*MsgAuthorizeProviderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{7} + return fileDescriptor_b3051f5aac033d39, []int{7} } func (m *MsgAuthorizeProviderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -465,7 +465,7 @@ func (m *MsgCreateTask) Reset() { *m = MsgCreateTask{} } func (m *MsgCreateTask) String() string { return proto.CompactTextString(m) } func (*MsgCreateTask) ProtoMessage() {} func (*MsgCreateTask) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{8} + return fileDescriptor_b3051f5aac033d39, []int{8} } func (m *MsgCreateTask) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -523,7 +523,7 @@ func (m *MsgCreateTaskResponse) Reset() { *m = MsgCreateTaskResponse{} } func (m *MsgCreateTaskResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateTaskResponse) ProtoMessage() {} func (*MsgCreateTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{9} + return fileDescriptor_b3051f5aac033d39, []int{9} } func (m *MsgCreateTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -570,7 +570,7 @@ func (m *MsgUpdateTask) Reset() { *m = MsgUpdateTask{} } func (m *MsgUpdateTask) String() string { return proto.CompactTextString(m) } func (*MsgUpdateTask) ProtoMessage() {} func (*MsgUpdateTask) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{10} + return fileDescriptor_b3051f5aac033d39, []int{10} } func (m *MsgUpdateTask) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -634,7 +634,7 @@ func (m *MsgUpdateTaskResponse) Reset() { *m = MsgUpdateTaskResponse{} } func (m *MsgUpdateTaskResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateTaskResponse) ProtoMessage() {} func (*MsgUpdateTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{11} + return fileDescriptor_b3051f5aac033d39, []int{11} } func (m *MsgUpdateTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -672,7 +672,7 @@ func (m *MsgDeleteTask) Reset() { *m = MsgDeleteTask{} } func (m *MsgDeleteTask) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTask) ProtoMessage() {} func (*MsgDeleteTask) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{12} + return fileDescriptor_b3051f5aac033d39, []int{12} } func (m *MsgDeleteTask) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -726,7 +726,7 @@ func (m *MsgUpdateRepositoryBackupRef) Reset() { *m = MsgUpdateRepositor func (m *MsgUpdateRepositoryBackupRef) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryBackupRef) ProtoMessage() {} func (*MsgUpdateRepositoryBackupRef) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{13} + return fileDescriptor_b3051f5aac033d39, []int{13} } func (m *MsgUpdateRepositoryBackupRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -790,7 +790,7 @@ func (m *MsgUpdateRepositoryBackupRefResponse) Reset() { *m = MsgUpdateR func (m *MsgUpdateRepositoryBackupRefResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryBackupRefResponse) ProtoMessage() {} func (*MsgUpdateRepositoryBackupRefResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{14} + return fileDescriptor_b3051f5aac033d39, []int{14} } func (m *MsgUpdateRepositoryBackupRefResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -830,7 +830,7 @@ func (m *MsgAddRepositoryBackupRef) Reset() { *m = MsgAddRepositoryBacku func (m *MsgAddRepositoryBackupRef) String() string { return proto.CompactTextString(m) } func (*MsgAddRepositoryBackupRef) ProtoMessage() {} func (*MsgAddRepositoryBackupRef) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{15} + return fileDescriptor_b3051f5aac033d39, []int{15} } func (m *MsgAddRepositoryBackupRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -894,7 +894,7 @@ func (m *MsgAddRepositoryBackupRefResponse) Reset() { *m = MsgAddReposit func (m *MsgAddRepositoryBackupRefResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddRepositoryBackupRefResponse) ProtoMessage() {} func (*MsgAddRepositoryBackupRefResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{16} + return fileDescriptor_b3051f5aac033d39, []int{16} } func (m *MsgAddRepositoryBackupRefResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -930,7 +930,7 @@ func (m *MsgDeleteTaskResponse) Reset() { *m = MsgDeleteTaskResponse{} } func (m *MsgDeleteTaskResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTaskResponse) ProtoMessage() {} func (*MsgDeleteTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{17} + return fileDescriptor_b3051f5aac033d39, []int{17} } func (m *MsgDeleteTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -966,7 +966,7 @@ func (m *MsgDeleteStorageProviderResponse) Reset() { *m = MsgDeleteStora func (m *MsgDeleteStorageProviderResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteStorageProviderResponse) ProtoMessage() {} func (*MsgDeleteStorageProviderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{18} + return fileDescriptor_b3051f5aac033d39, []int{18} } func (m *MsgDeleteStorageProviderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1005,7 +1005,7 @@ func (m *MsgSetBranch) Reset() { *m = MsgSetBranch{} } func (m *MsgSetBranch) String() string { return proto.CompactTextString(m) } func (*MsgSetBranch) ProtoMessage() {} func (*MsgSetBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{19} + return fileDescriptor_b3051f5aac033d39, []int{19} } func (m *MsgSetBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1064,7 +1064,7 @@ func (m *MsgSetBranch_Branch) Reset() { *m = MsgSetBranch_Branch{} } func (m *MsgSetBranch_Branch) String() string { return proto.CompactTextString(m) } func (*MsgSetBranch_Branch) ProtoMessage() {} func (*MsgSetBranch_Branch) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{19, 0} + return fileDescriptor_b3051f5aac033d39, []int{19, 0} } func (m *MsgSetBranch_Branch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1114,7 +1114,7 @@ func (m *MsgSetBranchResponse) Reset() { *m = MsgSetBranchResponse{} } func (m *MsgSetBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetBranchResponse) ProtoMessage() {} func (*MsgSetBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{20} + return fileDescriptor_b3051f5aac033d39, []int{20} } func (m *MsgSetBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1153,7 +1153,7 @@ func (m *MsgSetDefaultBranch) Reset() { *m = MsgSetDefaultBranch{} } func (m *MsgSetDefaultBranch) String() string { return proto.CompactTextString(m) } func (*MsgSetDefaultBranch) ProtoMessage() {} func (*MsgSetDefaultBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{21} + return fileDescriptor_b3051f5aac033d39, []int{21} } func (m *MsgSetDefaultBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1210,7 +1210,7 @@ func (m *MsgSetDefaultBranchResponse) Reset() { *m = MsgSetDefaultBranch func (m *MsgSetDefaultBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetDefaultBranchResponse) ProtoMessage() {} func (*MsgSetDefaultBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{22} + return fileDescriptor_b3051f5aac033d39, []int{22} } func (m *MsgSetDefaultBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1249,7 +1249,7 @@ func (m *MsgMultiSetBranch) Reset() { *m = MsgMultiSetBranch{} } func (m *MsgMultiSetBranch) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetBranch) ProtoMessage() {} func (*MsgMultiSetBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{23} + return fileDescriptor_b3051f5aac033d39, []int{23} } func (m *MsgMultiSetBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1308,7 +1308,7 @@ func (m *MsgMultiSetBranch_Branch) Reset() { *m = MsgMultiSetBranch_Bran func (m *MsgMultiSetBranch_Branch) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetBranch_Branch) ProtoMessage() {} func (*MsgMultiSetBranch_Branch) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{23, 0} + return fileDescriptor_b3051f5aac033d39, []int{23, 0} } func (m *MsgMultiSetBranch_Branch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1358,7 +1358,7 @@ func (m *MsgMultiSetBranchResponse) Reset() { *m = MsgMultiSetBranchResp func (m *MsgMultiSetBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetBranchResponse) ProtoMessage() {} func (*MsgMultiSetBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{24} + return fileDescriptor_b3051f5aac033d39, []int{24} } func (m *MsgMultiSetBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1397,7 +1397,7 @@ func (m *MsgDeleteBranch) Reset() { *m = MsgDeleteBranch{} } func (m *MsgDeleteBranch) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBranch) ProtoMessage() {} func (*MsgDeleteBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{25} + return fileDescriptor_b3051f5aac033d39, []int{25} } func (m *MsgDeleteBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1454,7 +1454,7 @@ func (m *MsgDeleteBranchResponse) Reset() { *m = MsgDeleteBranchResponse func (m *MsgDeleteBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBranchResponse) ProtoMessage() {} func (*MsgDeleteBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{26} + return fileDescriptor_b3051f5aac033d39, []int{26} } func (m *MsgDeleteBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1493,7 +1493,7 @@ func (m *MsgMultiDeleteBranch) Reset() { *m = MsgMultiDeleteBranch{} } func (m *MsgMultiDeleteBranch) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteBranch) ProtoMessage() {} func (*MsgMultiDeleteBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{27} + return fileDescriptor_b3051f5aac033d39, []int{27} } func (m *MsgMultiDeleteBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1550,7 +1550,7 @@ func (m *MsgMultiDeleteBranchResponse) Reset() { *m = MsgMultiDeleteBran func (m *MsgMultiDeleteBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteBranchResponse) ProtoMessage() {} func (*MsgMultiDeleteBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{28} + return fileDescriptor_b3051f5aac033d39, []int{28} } func (m *MsgMultiDeleteBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1589,7 +1589,7 @@ func (m *MsgSetTag) Reset() { *m = MsgSetTag{} } func (m *MsgSetTag) String() string { return proto.CompactTextString(m) } func (*MsgSetTag) ProtoMessage() {} func (*MsgSetTag) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{29} + return fileDescriptor_b3051f5aac033d39, []int{29} } func (m *MsgSetTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1648,7 +1648,7 @@ func (m *MsgSetTag_Tag) Reset() { *m = MsgSetTag_Tag{} } func (m *MsgSetTag_Tag) String() string { return proto.CompactTextString(m) } func (*MsgSetTag_Tag) ProtoMessage() {} func (*MsgSetTag_Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{29, 0} + return fileDescriptor_b3051f5aac033d39, []int{29, 0} } func (m *MsgSetTag_Tag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1698,7 +1698,7 @@ func (m *MsgSetTagResponse) Reset() { *m = MsgSetTagResponse{} } func (m *MsgSetTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetTagResponse) ProtoMessage() {} func (*MsgSetTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{30} + return fileDescriptor_b3051f5aac033d39, []int{30} } func (m *MsgSetTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1737,7 +1737,7 @@ func (m *MsgMultiSetTag) Reset() { *m = MsgMultiSetTag{} } func (m *MsgMultiSetTag) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetTag) ProtoMessage() {} func (*MsgMultiSetTag) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{31} + return fileDescriptor_b3051f5aac033d39, []int{31} } func (m *MsgMultiSetTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1796,7 +1796,7 @@ func (m *MsgMultiSetTag_Tag) Reset() { *m = MsgMultiSetTag_Tag{} } func (m *MsgMultiSetTag_Tag) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetTag_Tag) ProtoMessage() {} func (*MsgMultiSetTag_Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{31, 0} + return fileDescriptor_b3051f5aac033d39, []int{31, 0} } func (m *MsgMultiSetTag_Tag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1846,7 +1846,7 @@ func (m *MsgMultiSetTagResponse) Reset() { *m = MsgMultiSetTagResponse{} func (m *MsgMultiSetTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetTagResponse) ProtoMessage() {} func (*MsgMultiSetTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{32} + return fileDescriptor_b3051f5aac033d39, []int{32} } func (m *MsgMultiSetTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1885,7 +1885,7 @@ func (m *MsgDeleteTag) Reset() { *m = MsgDeleteTag{} } func (m *MsgDeleteTag) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTag) ProtoMessage() {} func (*MsgDeleteTag) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{33} + return fileDescriptor_b3051f5aac033d39, []int{33} } func (m *MsgDeleteTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1942,7 +1942,7 @@ func (m *MsgDeleteTagResponse) Reset() { *m = MsgDeleteTagResponse{} } func (m *MsgDeleteTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTagResponse) ProtoMessage() {} func (*MsgDeleteTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{34} + return fileDescriptor_b3051f5aac033d39, []int{34} } func (m *MsgDeleteTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1981,7 +1981,7 @@ func (m *MsgMultiDeleteTag) Reset() { *m = MsgMultiDeleteTag{} } func (m *MsgMultiDeleteTag) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteTag) ProtoMessage() {} func (*MsgMultiDeleteTag) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{35} + return fileDescriptor_b3051f5aac033d39, []int{35} } func (m *MsgMultiDeleteTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2038,7 +2038,7 @@ func (m *MsgMultiDeleteTagResponse) Reset() { *m = MsgMultiDeleteTagResp func (m *MsgMultiDeleteTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteTagResponse) ProtoMessage() {} func (*MsgMultiDeleteTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{36} + return fileDescriptor_b3051f5aac033d39, []int{36} } func (m *MsgMultiDeleteTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2078,7 +2078,7 @@ func (m *MsgAddMember) Reset() { *m = MsgAddMember{} } func (m *MsgAddMember) String() string { return proto.CompactTextString(m) } func (*MsgAddMember) ProtoMessage() {} func (*MsgAddMember) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{37} + return fileDescriptor_b3051f5aac033d39, []int{37} } func (m *MsgAddMember) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2142,7 +2142,7 @@ func (m *MsgAddMemberResponse) Reset() { *m = MsgAddMemberResponse{} } func (m *MsgAddMemberResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddMemberResponse) ProtoMessage() {} func (*MsgAddMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{38} + return fileDescriptor_b3051f5aac033d39, []int{38} } func (m *MsgAddMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2182,7 +2182,7 @@ func (m *MsgUpdateMemberRole) Reset() { *m = MsgUpdateMemberRole{} } func (m *MsgUpdateMemberRole) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMemberRole) ProtoMessage() {} func (*MsgUpdateMemberRole) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{39} + return fileDescriptor_b3051f5aac033d39, []int{39} } func (m *MsgUpdateMemberRole) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2246,7 +2246,7 @@ func (m *MsgUpdateMemberRoleResponse) Reset() { *m = MsgUpdateMemberRole func (m *MsgUpdateMemberRoleResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMemberRoleResponse) ProtoMessage() {} func (*MsgUpdateMemberRoleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{40} + return fileDescriptor_b3051f5aac033d39, []int{40} } func (m *MsgUpdateMemberRoleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2285,7 +2285,7 @@ func (m *MsgRemoveMember) Reset() { *m = MsgRemoveMember{} } func (m *MsgRemoveMember) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMember) ProtoMessage() {} func (*MsgRemoveMember) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{41} + return fileDescriptor_b3051f5aac033d39, []int{41} } func (m *MsgRemoveMember) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2342,7 +2342,7 @@ func (m *MsgRemoveMemberResponse) Reset() { *m = MsgRemoveMemberResponse func (m *MsgRemoveMemberResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMemberResponse) ProtoMessage() {} func (*MsgRemoveMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{42} + return fileDescriptor_b3051f5aac033d39, []int{42} } func (m *MsgRemoveMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2384,7 +2384,7 @@ func (m *MsgCreateBounty) Reset() { *m = MsgCreateBounty{} } func (m *MsgCreateBounty) String() string { return proto.CompactTextString(m) } func (*MsgCreateBounty) ProtoMessage() {} func (*MsgCreateBounty) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{43} + return fileDescriptor_b3051f5aac033d39, []int{43} } func (m *MsgCreateBounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2463,7 +2463,7 @@ func (m *MsgCreateBountyResponse) Reset() { *m = MsgCreateBountyResponse func (m *MsgCreateBountyResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateBountyResponse) ProtoMessage() {} func (*MsgCreateBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{44} + return fileDescriptor_b3051f5aac033d39, []int{44} } func (m *MsgCreateBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2509,7 +2509,7 @@ func (m *MsgUpdateBountyExpiry) Reset() { *m = MsgUpdateBountyExpiry{} } func (m *MsgUpdateBountyExpiry) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBountyExpiry) ProtoMessage() {} func (*MsgUpdateBountyExpiry) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{45} + return fileDescriptor_b3051f5aac033d39, []int{45} } func (m *MsgUpdateBountyExpiry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2566,7 +2566,7 @@ func (m *MsgUpdateBountyExpiryResponse) Reset() { *m = MsgUpdateBountyEx func (m *MsgUpdateBountyExpiryResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBountyExpiryResponse) ProtoMessage() {} func (*MsgUpdateBountyExpiryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{46} + return fileDescriptor_b3051f5aac033d39, []int{46} } func (m *MsgUpdateBountyExpiryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2604,7 +2604,7 @@ func (m *MsgCloseBounty) Reset() { *m = MsgCloseBounty{} } func (m *MsgCloseBounty) String() string { return proto.CompactTextString(m) } func (*MsgCloseBounty) ProtoMessage() {} func (*MsgCloseBounty) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{47} + return fileDescriptor_b3051f5aac033d39, []int{47} } func (m *MsgCloseBounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2654,7 +2654,7 @@ func (m *MsgCloseBountyResponse) Reset() { *m = MsgCloseBountyResponse{} func (m *MsgCloseBountyResponse) String() string { return proto.CompactTextString(m) } func (*MsgCloseBountyResponse) ProtoMessage() {} func (*MsgCloseBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{48} + return fileDescriptor_b3051f5aac033d39, []int{48} } func (m *MsgCloseBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2692,7 +2692,7 @@ func (m *MsgDeleteBounty) Reset() { *m = MsgDeleteBounty{} } func (m *MsgDeleteBounty) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBounty) ProtoMessage() {} func (*MsgDeleteBounty) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{49} + return fileDescriptor_b3051f5aac033d39, []int{49} } func (m *MsgDeleteBounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2742,7 +2742,7 @@ func (m *MsgDeleteBountyResponse) Reset() { *m = MsgDeleteBountyResponse func (m *MsgDeleteBountyResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBountyResponse) ProtoMessage() {} func (*MsgDeleteBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{50} + return fileDescriptor_b3051f5aac033d39, []int{50} } func (m *MsgDeleteBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2789,7 +2789,7 @@ func (m *MsgCreateRelease) Reset() { *m = MsgCreateRelease{} } func (m *MsgCreateRelease) String() string { return proto.CompactTextString(m) } func (*MsgCreateRelease) ProtoMessage() {} func (*MsgCreateRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{51} + return fileDescriptor_b3051f5aac033d39, []int{51} } func (m *MsgCreateRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2896,7 +2896,7 @@ func (m *MsgCreateReleaseResponse) Reset() { *m = MsgCreateReleaseRespon func (m *MsgCreateReleaseResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateReleaseResponse) ProtoMessage() {} func (*MsgCreateReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{52} + return fileDescriptor_b3051f5aac033d39, []int{52} } func (m *MsgCreateReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2949,7 +2949,7 @@ func (m *MsgUpdateRelease) Reset() { *m = MsgUpdateRelease{} } func (m *MsgUpdateRelease) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRelease) ProtoMessage() {} func (*MsgUpdateRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{53} + return fileDescriptor_b3051f5aac033d39, []int{53} } func (m *MsgUpdateRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3055,7 +3055,7 @@ func (m *MsgUpdateReleaseResponse) Reset() { *m = MsgUpdateReleaseRespon func (m *MsgUpdateReleaseResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateReleaseResponse) ProtoMessage() {} func (*MsgUpdateReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{54} + return fileDescriptor_b3051f5aac033d39, []int{54} } func (m *MsgUpdateReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3093,7 +3093,7 @@ func (m *MsgDeleteRelease) Reset() { *m = MsgDeleteRelease{} } func (m *MsgDeleteRelease) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRelease) ProtoMessage() {} func (*MsgDeleteRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{55} + return fileDescriptor_b3051f5aac033d39, []int{55} } func (m *MsgDeleteRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3143,7 +3143,7 @@ func (m *MsgDeleteReleaseResponse) Reset() { *m = MsgDeleteReleaseRespon func (m *MsgDeleteReleaseResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteReleaseResponse) ProtoMessage() {} func (*MsgDeleteReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{56} + return fileDescriptor_b3051f5aac033d39, []int{56} } func (m *MsgDeleteReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3190,7 +3190,7 @@ func (m *MsgCreatePullRequest) Reset() { *m = MsgCreatePullRequest{} } func (m *MsgCreatePullRequest) String() string { return proto.CompactTextString(m) } func (*MsgCreatePullRequest) ProtoMessage() {} func (*MsgCreatePullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{57} + return fileDescriptor_b3051f5aac033d39, []int{57} } func (m *MsgCreatePullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3305,7 +3305,7 @@ func (m *MsgCreatePullRequestResponse) Reset() { *m = MsgCreatePullReque func (m *MsgCreatePullRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreatePullRequestResponse) ProtoMessage() {} func (*MsgCreatePullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{58} + return fileDescriptor_b3051f5aac033d39, []int{58} } func (m *MsgCreatePullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3359,7 +3359,7 @@ func (m *MsgUpdatePullRequestTitle) Reset() { *m = MsgUpdatePullRequestT func (m *MsgUpdatePullRequestTitle) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestTitle) ProtoMessage() {} func (*MsgUpdatePullRequestTitle) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{59} + return fileDescriptor_b3051f5aac033d39, []int{59} } func (m *MsgUpdatePullRequestTitle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3423,7 +3423,7 @@ func (m *MsgUpdatePullRequestTitleResponse) Reset() { *m = MsgUpdatePull func (m *MsgUpdatePullRequestTitleResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestTitleResponse) ProtoMessage() {} func (*MsgUpdatePullRequestTitleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{60} + return fileDescriptor_b3051f5aac033d39, []int{60} } func (m *MsgUpdatePullRequestTitleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3463,7 +3463,7 @@ func (m *MsgUpdatePullRequestDescription) Reset() { *m = MsgUpdatePullRe func (m *MsgUpdatePullRequestDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestDescription) ProtoMessage() {} func (*MsgUpdatePullRequestDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{61} + return fileDescriptor_b3051f5aac033d39, []int{61} } func (m *MsgUpdatePullRequestDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3529,7 +3529,7 @@ func (m *MsgUpdatePullRequestDescriptionResponse) Reset() { func (m *MsgUpdatePullRequestDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestDescriptionResponse) ProtoMessage() {} func (*MsgUpdatePullRequestDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{62} + return fileDescriptor_b3051f5aac033d39, []int{62} } func (m *MsgUpdatePullRequestDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3569,7 +3569,7 @@ func (m *MsgInvokeMergePullRequest) Reset() { *m = MsgInvokeMergePullReq func (m *MsgInvokeMergePullRequest) String() string { return proto.CompactTextString(m) } func (*MsgInvokeMergePullRequest) ProtoMessage() {} func (*MsgInvokeMergePullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{63} + return fileDescriptor_b3051f5aac033d39, []int{63} } func (m *MsgInvokeMergePullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3633,7 +3633,7 @@ func (m *MsgInvokeMergePullRequestResponse) Reset() { *m = MsgInvokeMerg func (m *MsgInvokeMergePullRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgInvokeMergePullRequestResponse) ProtoMessage() {} func (*MsgInvokeMergePullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{64} + return fileDescriptor_b3051f5aac033d39, []int{64} } func (m *MsgInvokeMergePullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3676,7 +3676,7 @@ func (m *MsgSetPullRequestState) Reset() { *m = MsgSetPullRequestState{} func (m *MsgSetPullRequestState) String() string { return proto.CompactTextString(m) } func (*MsgSetPullRequestState) ProtoMessage() {} func (*MsgSetPullRequestState) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{65} + return fileDescriptor_b3051f5aac033d39, []int{65} } func (m *MsgSetPullRequestState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3762,7 +3762,7 @@ func (m *MsgSetPullRequestStateResponse) Reset() { *m = MsgSetPullReques func (m *MsgSetPullRequestStateResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetPullRequestStateResponse) ProtoMessage() {} func (*MsgSetPullRequestStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{66} + return fileDescriptor_b3051f5aac033d39, []int{66} } func (m *MsgSetPullRequestStateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3809,7 +3809,7 @@ func (m *MsgAddPullRequestReviewers) Reset() { *m = MsgAddPullRequestRev func (m *MsgAddPullRequestReviewers) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestReviewers) ProtoMessage() {} func (*MsgAddPullRequestReviewers) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{67} + return fileDescriptor_b3051f5aac033d39, []int{67} } func (m *MsgAddPullRequestReviewers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3873,7 +3873,7 @@ func (m *MsgAddPullRequestReviewersResponse) Reset() { *m = MsgAddPullRe func (m *MsgAddPullRequestReviewersResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestReviewersResponse) ProtoMessage() {} func (*MsgAddPullRequestReviewersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{68} + return fileDescriptor_b3051f5aac033d39, []int{68} } func (m *MsgAddPullRequestReviewersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3913,7 +3913,7 @@ func (m *MsgRemovePullRequestReviewers) Reset() { *m = MsgRemovePullRequ func (m *MsgRemovePullRequestReviewers) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestReviewers) ProtoMessage() {} func (*MsgRemovePullRequestReviewers) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{69} + return fileDescriptor_b3051f5aac033d39, []int{69} } func (m *MsgRemovePullRequestReviewers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3977,7 +3977,7 @@ func (m *MsgRemovePullRequestReviewersResponse) Reset() { *m = MsgRemove func (m *MsgRemovePullRequestReviewersResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestReviewersResponse) ProtoMessage() {} func (*MsgRemovePullRequestReviewersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{70} + return fileDescriptor_b3051f5aac033d39, []int{70} } func (m *MsgRemovePullRequestReviewersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4017,7 +4017,7 @@ func (m *MsgAddPullRequestAssignees) Reset() { *m = MsgAddPullRequestAss func (m *MsgAddPullRequestAssignees) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestAssignees) ProtoMessage() {} func (*MsgAddPullRequestAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{71} + return fileDescriptor_b3051f5aac033d39, []int{71} } func (m *MsgAddPullRequestAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4081,7 +4081,7 @@ func (m *MsgAddPullRequestAssigneesResponse) Reset() { *m = MsgAddPullRe func (m *MsgAddPullRequestAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestAssigneesResponse) ProtoMessage() {} func (*MsgAddPullRequestAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{72} + return fileDescriptor_b3051f5aac033d39, []int{72} } func (m *MsgAddPullRequestAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4121,7 +4121,7 @@ func (m *MsgRemovePullRequestAssignees) Reset() { *m = MsgRemovePullRequ func (m *MsgRemovePullRequestAssignees) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestAssignees) ProtoMessage() {} func (*MsgRemovePullRequestAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{73} + return fileDescriptor_b3051f5aac033d39, []int{73} } func (m *MsgRemovePullRequestAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4185,7 +4185,7 @@ func (m *MsgRemovePullRequestAssigneesResponse) Reset() { *m = MsgRemove func (m *MsgRemovePullRequestAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestAssigneesResponse) ProtoMessage() {} func (*MsgRemovePullRequestAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{74} + return fileDescriptor_b3051f5aac033d39, []int{74} } func (m *MsgRemovePullRequestAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4225,7 +4225,7 @@ func (m *MsgLinkPullRequestIssueByIid) Reset() { *m = MsgLinkPullRequest func (m *MsgLinkPullRequestIssueByIid) String() string { return proto.CompactTextString(m) } func (*MsgLinkPullRequestIssueByIid) ProtoMessage() {} func (*MsgLinkPullRequestIssueByIid) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{75} + return fileDescriptor_b3051f5aac033d39, []int{75} } func (m *MsgLinkPullRequestIssueByIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4289,7 +4289,7 @@ func (m *MsgLinkPullRequestIssueByIidResponse) Reset() { *m = MsgLinkPul func (m *MsgLinkPullRequestIssueByIidResponse) String() string { return proto.CompactTextString(m) } func (*MsgLinkPullRequestIssueByIidResponse) ProtoMessage() {} func (*MsgLinkPullRequestIssueByIidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{76} + return fileDescriptor_b3051f5aac033d39, []int{76} } func (m *MsgLinkPullRequestIssueByIidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4329,7 +4329,7 @@ func (m *MsgUnlinkPullRequestIssueByIid) Reset() { *m = MsgUnlinkPullReq func (m *MsgUnlinkPullRequestIssueByIid) String() string { return proto.CompactTextString(m) } func (*MsgUnlinkPullRequestIssueByIid) ProtoMessage() {} func (*MsgUnlinkPullRequestIssueByIid) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{77} + return fileDescriptor_b3051f5aac033d39, []int{77} } func (m *MsgUnlinkPullRequestIssueByIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4395,7 +4395,7 @@ func (m *MsgUnlinkPullRequestIssueByIidResponse) Reset() { func (m *MsgUnlinkPullRequestIssueByIidResponse) String() string { return proto.CompactTextString(m) } func (*MsgUnlinkPullRequestIssueByIidResponse) ProtoMessage() {} func (*MsgUnlinkPullRequestIssueByIidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{78} + return fileDescriptor_b3051f5aac033d39, []int{78} } func (m *MsgUnlinkPullRequestIssueByIidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4435,7 +4435,7 @@ func (m *MsgAddPullRequestLabels) Reset() { *m = MsgAddPullRequestLabels func (m *MsgAddPullRequestLabels) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestLabels) ProtoMessage() {} func (*MsgAddPullRequestLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{79} + return fileDescriptor_b3051f5aac033d39, []int{79} } func (m *MsgAddPullRequestLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4499,7 +4499,7 @@ func (m *MsgAddPullRequestLabelsResponse) Reset() { *m = MsgAddPullReque func (m *MsgAddPullRequestLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestLabelsResponse) ProtoMessage() {} func (*MsgAddPullRequestLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{80} + return fileDescriptor_b3051f5aac033d39, []int{80} } func (m *MsgAddPullRequestLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4539,7 +4539,7 @@ func (m *MsgRemovePullRequestLabels) Reset() { *m = MsgRemovePullRequest func (m *MsgRemovePullRequestLabels) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestLabels) ProtoMessage() {} func (*MsgRemovePullRequestLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{81} + return fileDescriptor_b3051f5aac033d39, []int{81} } func (m *MsgRemovePullRequestLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4603,7 +4603,7 @@ func (m *MsgRemovePullRequestLabelsResponse) Reset() { *m = MsgRemovePul func (m *MsgRemovePullRequestLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestLabelsResponse) ProtoMessage() {} func (*MsgRemovePullRequestLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{82} + return fileDescriptor_b3051f5aac033d39, []int{82} } func (m *MsgRemovePullRequestLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4642,7 +4642,7 @@ func (m *MsgDeletePullRequest) Reset() { *m = MsgDeletePullRequest{} } func (m *MsgDeletePullRequest) String() string { return proto.CompactTextString(m) } func (*MsgDeletePullRequest) ProtoMessage() {} func (*MsgDeletePullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{83} + return fileDescriptor_b3051f5aac033d39, []int{83} } func (m *MsgDeletePullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4699,7 +4699,7 @@ func (m *MsgDeletePullRequestResponse) Reset() { *m = MsgDeletePullReque func (m *MsgDeletePullRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeletePullRequestResponse) ProtoMessage() {} func (*MsgDeletePullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{84} + return fileDescriptor_b3051f5aac033d39, []int{84} } func (m *MsgDeletePullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4741,7 +4741,7 @@ func (m *MsgCreateDao) Reset() { *m = MsgCreateDao{} } func (m *MsgCreateDao) String() string { return proto.CompactTextString(m) } func (*MsgCreateDao) ProtoMessage() {} func (*MsgCreateDao) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{85} + return fileDescriptor_b3051f5aac033d39, []int{85} } func (m *MsgCreateDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4820,7 +4820,7 @@ func (m *MsgCreateDaoResponse) Reset() { *m = MsgCreateDaoResponse{} } func (m *MsgCreateDaoResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateDaoResponse) ProtoMessage() {} func (*MsgCreateDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{86} + return fileDescriptor_b3051f5aac033d39, []int{86} } func (m *MsgCreateDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4866,7 +4866,7 @@ func (m *MsgRenameDao) Reset() { *m = MsgRenameDao{} } func (m *MsgRenameDao) String() string { return proto.CompactTextString(m) } func (*MsgRenameDao) ProtoMessage() {} func (*MsgRenameDao) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{87} + return fileDescriptor_b3051f5aac033d39, []int{87} } func (m *MsgRenameDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4923,7 +4923,7 @@ func (m *MsgRenameDaoResponse) Reset() { *m = MsgRenameDaoResponse{} } func (m *MsgRenameDaoResponse) String() string { return proto.CompactTextString(m) } func (*MsgRenameDaoResponse) ProtoMessage() {} func (*MsgRenameDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{88} + return fileDescriptor_b3051f5aac033d39, []int{88} } func (m *MsgRenameDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4962,7 +4962,7 @@ func (m *MsgUpdateDaoDescription) Reset() { *m = MsgUpdateDaoDescription func (m *MsgUpdateDaoDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoDescription) ProtoMessage() {} func (*MsgUpdateDaoDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{89} + return fileDescriptor_b3051f5aac033d39, []int{89} } func (m *MsgUpdateDaoDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5019,7 +5019,7 @@ func (m *MsgUpdateDaoDescriptionResponse) Reset() { *m = MsgUpdateDaoDes func (m *MsgUpdateDaoDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoDescriptionResponse) ProtoMessage() {} func (*MsgUpdateDaoDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{90} + return fileDescriptor_b3051f5aac033d39, []int{90} } func (m *MsgUpdateDaoDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5058,7 +5058,7 @@ func (m *MsgUpdateDaoWebsite) Reset() { *m = MsgUpdateDaoWebsite{} } func (m *MsgUpdateDaoWebsite) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoWebsite) ProtoMessage() {} func (*MsgUpdateDaoWebsite) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{91} + return fileDescriptor_b3051f5aac033d39, []int{91} } func (m *MsgUpdateDaoWebsite) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5115,7 +5115,7 @@ func (m *MsgUpdateDaoWebsiteResponse) Reset() { *m = MsgUpdateDaoWebsite func (m *MsgUpdateDaoWebsiteResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoWebsiteResponse) ProtoMessage() {} func (*MsgUpdateDaoWebsiteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{92} + return fileDescriptor_b3051f5aac033d39, []int{92} } func (m *MsgUpdateDaoWebsiteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5154,7 +5154,7 @@ func (m *MsgUpdateDaoLocation) Reset() { *m = MsgUpdateDaoLocation{} } func (m *MsgUpdateDaoLocation) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoLocation) ProtoMessage() {} func (*MsgUpdateDaoLocation) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{93} + return fileDescriptor_b3051f5aac033d39, []int{93} } func (m *MsgUpdateDaoLocation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5211,7 +5211,7 @@ func (m *MsgUpdateDaoLocationResponse) Reset() { *m = MsgUpdateDaoLocati func (m *MsgUpdateDaoLocationResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoLocationResponse) ProtoMessage() {} func (*MsgUpdateDaoLocationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{94} + return fileDescriptor_b3051f5aac033d39, []int{94} } func (m *MsgUpdateDaoLocationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5250,7 +5250,7 @@ func (m *MsgUpdateDaoAvatar) Reset() { *m = MsgUpdateDaoAvatar{} } func (m *MsgUpdateDaoAvatar) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoAvatar) ProtoMessage() {} func (*MsgUpdateDaoAvatar) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{95} + return fileDescriptor_b3051f5aac033d39, []int{95} } func (m *MsgUpdateDaoAvatar) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5307,7 +5307,7 @@ func (m *MsgUpdateDaoAvatarResponse) Reset() { *m = MsgUpdateDaoAvatarRe func (m *MsgUpdateDaoAvatarResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoAvatarResponse) ProtoMessage() {} func (*MsgUpdateDaoAvatarResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{96} + return fileDescriptor_b3051f5aac033d39, []int{96} } func (m *MsgUpdateDaoAvatarResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5345,7 +5345,7 @@ func (m *MsgDeleteDao) Reset() { *m = MsgDeleteDao{} } func (m *MsgDeleteDao) String() string { return proto.CompactTextString(m) } func (*MsgDeleteDao) ProtoMessage() {} func (*MsgDeleteDao) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{97} + return fileDescriptor_b3051f5aac033d39, []int{97} } func (m *MsgDeleteDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5395,7 +5395,7 @@ func (m *MsgDeleteDaoResponse) Reset() { *m = MsgDeleteDaoResponse{} } func (m *MsgDeleteDaoResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteDaoResponse) ProtoMessage() {} func (*MsgDeleteDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{98} + return fileDescriptor_b3051f5aac033d39, []int{98} } func (m *MsgDeleteDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5440,7 +5440,7 @@ func (m *MsgCreateComment) Reset() { *m = MsgCreateComment{} } func (m *MsgCreateComment) String() string { return proto.CompactTextString(m) } func (*MsgCreateComment) ProtoMessage() {} func (*MsgCreateComment) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{99} + return fileDescriptor_b3051f5aac033d39, []int{99} } func (m *MsgCreateComment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5540,7 +5540,7 @@ func (m *MsgCreateCommentResponse) Reset() { *m = MsgCreateCommentRespon func (m *MsgCreateCommentResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateCommentResponse) ProtoMessage() {} func (*MsgCreateCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{100} + return fileDescriptor_b3051f5aac033d39, []int{100} } func (m *MsgCreateCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5590,7 +5590,7 @@ func (m *MsgUpdateComment) Reset() { *m = MsgUpdateComment{} } func (m *MsgUpdateComment) String() string { return proto.CompactTextString(m) } func (*MsgUpdateComment) ProtoMessage() {} func (*MsgUpdateComment) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{101} + return fileDescriptor_b3051f5aac033d39, []int{101} } func (m *MsgUpdateComment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5675,7 +5675,7 @@ func (m *MsgUpdateCommentResponse) Reset() { *m = MsgUpdateCommentRespon func (m *MsgUpdateCommentResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCommentResponse) ProtoMessage() {} func (*MsgUpdateCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{102} + return fileDescriptor_b3051f5aac033d39, []int{102} } func (m *MsgUpdateCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5716,7 +5716,7 @@ func (m *MsgDeleteComment) Reset() { *m = MsgDeleteComment{} } func (m *MsgDeleteComment) String() string { return proto.CompactTextString(m) } func (*MsgDeleteComment) ProtoMessage() {} func (*MsgDeleteComment) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{103} + return fileDescriptor_b3051f5aac033d39, []int{103} } func (m *MsgDeleteComment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5787,7 +5787,7 @@ func (m *MsgDeleteCommentResponse) Reset() { *m = MsgDeleteCommentRespon func (m *MsgDeleteCommentResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteCommentResponse) ProtoMessage() {} func (*MsgDeleteCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{104} + return fileDescriptor_b3051f5aac033d39, []int{104} } func (m *MsgDeleteCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5832,7 +5832,7 @@ func (m *MsgCreateIssue) Reset() { *m = MsgCreateIssue{} } func (m *MsgCreateIssue) String() string { return proto.CompactTextString(m) } func (*MsgCreateIssue) ProtoMessage() {} func (*MsgCreateIssue) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{105} + return fileDescriptor_b3051f5aac033d39, []int{105} } func (m *MsgCreateIssue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5933,7 +5933,7 @@ func (m *MsgCreateIssueResponse) Reset() { *m = MsgCreateIssueResponse{} func (m *MsgCreateIssueResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateIssueResponse) ProtoMessage() {} func (*MsgCreateIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{106} + return fileDescriptor_b3051f5aac033d39, []int{106} } func (m *MsgCreateIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5987,7 +5987,7 @@ func (m *MsgUpdateIssueTitle) Reset() { *m = MsgUpdateIssueTitle{} } func (m *MsgUpdateIssueTitle) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueTitle) ProtoMessage() {} func (*MsgUpdateIssueTitle) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{107} + return fileDescriptor_b3051f5aac033d39, []int{107} } func (m *MsgUpdateIssueTitle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6051,7 +6051,7 @@ func (m *MsgUpdateIssueTitleResponse) Reset() { *m = MsgUpdateIssueTitle func (m *MsgUpdateIssueTitleResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueTitleResponse) ProtoMessage() {} func (*MsgUpdateIssueTitleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{108} + return fileDescriptor_b3051f5aac033d39, []int{108} } func (m *MsgUpdateIssueTitleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6091,7 +6091,7 @@ func (m *MsgUpdateIssueDescription) Reset() { *m = MsgUpdateIssueDescrip func (m *MsgUpdateIssueDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueDescription) ProtoMessage() {} func (*MsgUpdateIssueDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{109} + return fileDescriptor_b3051f5aac033d39, []int{109} } func (m *MsgUpdateIssueDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6155,7 +6155,7 @@ func (m *MsgUpdateIssueDescriptionResponse) Reset() { *m = MsgUpdateIssu func (m *MsgUpdateIssueDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueDescriptionResponse) ProtoMessage() {} func (*MsgUpdateIssueDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{110} + return fileDescriptor_b3051f5aac033d39, []int{110} } func (m *MsgUpdateIssueDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6195,7 +6195,7 @@ func (m *MsgToggleIssueState) Reset() { *m = MsgToggleIssueState{} } func (m *MsgToggleIssueState) String() string { return proto.CompactTextString(m) } func (*MsgToggleIssueState) ProtoMessage() {} func (*MsgToggleIssueState) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{111} + return fileDescriptor_b3051f5aac033d39, []int{111} } func (m *MsgToggleIssueState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6260,7 +6260,7 @@ func (m *MsgToggleIssueStateResponse) Reset() { *m = MsgToggleIssueState func (m *MsgToggleIssueStateResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleIssueStateResponse) ProtoMessage() {} func (*MsgToggleIssueStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{112} + return fileDescriptor_b3051f5aac033d39, []int{112} } func (m *MsgToggleIssueStateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6307,7 +6307,7 @@ func (m *MsgAddIssueAssignees) Reset() { *m = MsgAddIssueAssignees{} } func (m *MsgAddIssueAssignees) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueAssignees) ProtoMessage() {} func (*MsgAddIssueAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{113} + return fileDescriptor_b3051f5aac033d39, []int{113} } func (m *MsgAddIssueAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6371,7 +6371,7 @@ func (m *MsgAddIssueAssigneesResponse) Reset() { *m = MsgAddIssueAssigne func (m *MsgAddIssueAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueAssigneesResponse) ProtoMessage() {} func (*MsgAddIssueAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{114} + return fileDescriptor_b3051f5aac033d39, []int{114} } func (m *MsgAddIssueAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6411,7 +6411,7 @@ func (m *MsgRemoveIssueAssignees) Reset() { *m = MsgRemoveIssueAssignees func (m *MsgRemoveIssueAssignees) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueAssignees) ProtoMessage() {} func (*MsgRemoveIssueAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{115} + return fileDescriptor_b3051f5aac033d39, []int{115} } func (m *MsgRemoveIssueAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6475,7 +6475,7 @@ func (m *MsgRemoveIssueAssigneesResponse) Reset() { *m = MsgRemoveIssueA func (m *MsgRemoveIssueAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueAssigneesResponse) ProtoMessage() {} func (*MsgRemoveIssueAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{116} + return fileDescriptor_b3051f5aac033d39, []int{116} } func (m *MsgRemoveIssueAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6515,7 +6515,7 @@ func (m *MsgAddIssueLabels) Reset() { *m = MsgAddIssueLabels{} } func (m *MsgAddIssueLabels) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueLabels) ProtoMessage() {} func (*MsgAddIssueLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{117} + return fileDescriptor_b3051f5aac033d39, []int{117} } func (m *MsgAddIssueLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6579,7 +6579,7 @@ func (m *MsgAddIssueLabelsResponse) Reset() { *m = MsgAddIssueLabelsResp func (m *MsgAddIssueLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueLabelsResponse) ProtoMessage() {} func (*MsgAddIssueLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{118} + return fileDescriptor_b3051f5aac033d39, []int{118} } func (m *MsgAddIssueLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6619,7 +6619,7 @@ func (m *MsgRemoveIssueLabels) Reset() { *m = MsgRemoveIssueLabels{} } func (m *MsgRemoveIssueLabels) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueLabels) ProtoMessage() {} func (*MsgRemoveIssueLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{119} + return fileDescriptor_b3051f5aac033d39, []int{119} } func (m *MsgRemoveIssueLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6683,7 +6683,7 @@ func (m *MsgRemoveIssueLabelsResponse) Reset() { *m = MsgRemoveIssueLabe func (m *MsgRemoveIssueLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueLabelsResponse) ProtoMessage() {} func (*MsgRemoveIssueLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{120} + return fileDescriptor_b3051f5aac033d39, []int{120} } func (m *MsgRemoveIssueLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6722,7 +6722,7 @@ func (m *MsgDeleteIssue) Reset() { *m = MsgDeleteIssue{} } func (m *MsgDeleteIssue) String() string { return proto.CompactTextString(m) } func (*MsgDeleteIssue) ProtoMessage() {} func (*MsgDeleteIssue) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{121} + return fileDescriptor_b3051f5aac033d39, []int{121} } func (m *MsgDeleteIssue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6779,7 +6779,7 @@ func (m *MsgDeleteIssueResponse) Reset() { *m = MsgDeleteIssueResponse{} func (m *MsgDeleteIssueResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteIssueResponse) ProtoMessage() {} func (*MsgDeleteIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{122} + return fileDescriptor_b3051f5aac033d39, []int{122} } func (m *MsgDeleteIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6819,7 +6819,7 @@ func (m *MsgCreateRepository) Reset() { *m = MsgCreateRepository{} } func (m *MsgCreateRepository) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepository) ProtoMessage() {} func (*MsgCreateRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{123} + return fileDescriptor_b3051f5aac033d39, []int{123} } func (m *MsgCreateRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6884,7 +6884,7 @@ func (m *MsgCreateRepositoryResponse) Reset() { *m = MsgCreateRepository func (m *MsgCreateRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryResponse) ProtoMessage() {} func (*MsgCreateRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{124} + return fileDescriptor_b3051f5aac033d39, []int{124} } func (m *MsgCreateRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6934,7 +6934,7 @@ func (m *MsgInvokeForkRepository) Reset() { *m = MsgInvokeForkRepository func (m *MsgInvokeForkRepository) String() string { return proto.CompactTextString(m) } func (*MsgInvokeForkRepository) ProtoMessage() {} func (*MsgInvokeForkRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{125} + return fileDescriptor_b3051f5aac033d39, []int{125} } func (m *MsgInvokeForkRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7019,7 +7019,7 @@ func (m *MsgInvokeForkRepositoryResponse) Reset() { *m = MsgInvokeForkRe func (m *MsgInvokeForkRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgInvokeForkRepositoryResponse) ProtoMessage() {} func (*MsgInvokeForkRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{126} + return fileDescriptor_b3051f5aac033d39, []int{126} } func (m *MsgInvokeForkRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7062,7 +7062,7 @@ func (m *MsgForkRepository) Reset() { *m = MsgForkRepository{} } func (m *MsgForkRepository) String() string { return proto.CompactTextString(m) } func (*MsgForkRepository) ProtoMessage() {} func (*MsgForkRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{127} + return fileDescriptor_b3051f5aac033d39, []int{127} } func (m *MsgForkRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7148,7 +7148,7 @@ func (m *MsgForkRepositoryResponse) Reset() { *m = MsgForkRepositoryResp func (m *MsgForkRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositoryResponse) ProtoMessage() {} func (*MsgForkRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{128} + return fileDescriptor_b3051f5aac033d39, []int{128} } func (m *MsgForkRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7194,7 +7194,7 @@ func (m *MsgForkRepositorySuccess) Reset() { *m = MsgForkRepositorySucce func (m *MsgForkRepositorySuccess) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositorySuccess) ProtoMessage() {} func (*MsgForkRepositorySuccess) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{129} + return fileDescriptor_b3051f5aac033d39, []int{129} } func (m *MsgForkRepositorySuccess) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7252,7 +7252,7 @@ func (m *MsgForkRepositorySuccessResponse) Reset() { *m = MsgForkReposit func (m *MsgForkRepositorySuccessResponse) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositorySuccessResponse) ProtoMessage() {} func (*MsgForkRepositorySuccessResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{130} + return fileDescriptor_b3051f5aac033d39, []int{130} } func (m *MsgForkRepositorySuccessResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7298,7 +7298,7 @@ func (m *MsgRenameRepository) Reset() { *m = MsgRenameRepository{} } func (m *MsgRenameRepository) String() string { return proto.CompactTextString(m) } func (*MsgRenameRepository) ProtoMessage() {} func (*MsgRenameRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{131} + return fileDescriptor_b3051f5aac033d39, []int{131} } func (m *MsgRenameRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7355,7 +7355,7 @@ func (m *MsgRenameRepositoryResponse) Reset() { *m = MsgRenameRepository func (m *MsgRenameRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgRenameRepositoryResponse) ProtoMessage() {} func (*MsgRenameRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{132} + return fileDescriptor_b3051f5aac033d39, []int{132} } func (m *MsgRenameRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7394,7 +7394,7 @@ func (m *MsgUpdateRepositoryDescription) Reset() { *m = MsgUpdateReposit func (m *MsgUpdateRepositoryDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryDescription) ProtoMessage() {} func (*MsgUpdateRepositoryDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{133} + return fileDescriptor_b3051f5aac033d39, []int{133} } func (m *MsgUpdateRepositoryDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7453,7 +7453,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Reset() { func (m *MsgUpdateRepositoryDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryDescriptionResponse) ProtoMessage() {} func (*MsgUpdateRepositoryDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{134} + return fileDescriptor_b3051f5aac033d39, []int{134} } func (m *MsgUpdateRepositoryDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7482,6 +7482,102 @@ func (m *MsgUpdateRepositoryDescriptionResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateRepositoryDescriptionResponse proto.InternalMessageInfo +type MsgUpdateArchiveState struct { + Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` + RepositoryId RepositoryId `protobuf:"bytes,2,opt,name=repositoryId,proto3" json:"repositoryId"` + Archived string `protobuf:"bytes,3,opt,name=archived,proto3" json:"archived,omitempty"` +} + +func (m *MsgUpdateArchiveState) Reset() { *m = MsgUpdateArchiveState{} } +func (m *MsgUpdateArchiveState) String() string { return proto.CompactTextString(m) } +func (*MsgUpdateArchiveState) ProtoMessage() {} +func (*MsgUpdateArchiveState) Descriptor() ([]byte, []int) { + return fileDescriptor_b3051f5aac033d39, []int{135} +} +func (m *MsgUpdateArchiveState) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUpdateArchiveState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUpdateArchiveState.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgUpdateArchiveState) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUpdateArchiveState.Merge(m, src) +} +func (m *MsgUpdateArchiveState) XXX_Size() int { + return m.Size() +} +func (m *MsgUpdateArchiveState) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUpdateArchiveState.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUpdateArchiveState proto.InternalMessageInfo + +func (m *MsgUpdateArchiveState) GetCreator() string { + if m != nil { + return m.Creator + } + return "" +} + +func (m *MsgUpdateArchiveState) GetRepositoryId() RepositoryId { + if m != nil { + return m.RepositoryId + } + return RepositoryId{} +} + +func (m *MsgUpdateArchiveState) GetArchived() string { + if m != nil { + return m.Archived + } + return "" +} + +type MsgUpdateArchiveStateResponse struct { +} + +func (m *MsgUpdateArchiveStateResponse) Reset() { *m = MsgUpdateArchiveStateResponse{} } +func (m *MsgUpdateArchiveStateResponse) String() string { return proto.CompactTextString(m) } +func (*MsgUpdateArchiveStateResponse) ProtoMessage() {} +func (*MsgUpdateArchiveStateResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_b3051f5aac033d39, []int{136} +} +func (m *MsgUpdateArchiveStateResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUpdateArchiveStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUpdateArchiveStateResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgUpdateArchiveStateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUpdateArchiveStateResponse.Merge(m, src) +} +func (m *MsgUpdateArchiveStateResponse) XXX_Size() int { + return m.Size() +} +func (m *MsgUpdateArchiveStateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUpdateArchiveStateResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUpdateArchiveStateResponse proto.InternalMessageInfo + type MsgChangeOwner struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` RepositoryId RepositoryId `protobuf:"bytes,2,opt,name=repositoryId,proto3" json:"repositoryId"` @@ -7492,7 +7588,7 @@ func (m *MsgChangeOwner) Reset() { *m = MsgChangeOwner{} } func (m *MsgChangeOwner) String() string { return proto.CompactTextString(m) } func (*MsgChangeOwner) ProtoMessage() {} func (*MsgChangeOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{135} + return fileDescriptor_b3051f5aac033d39, []int{137} } func (m *MsgChangeOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7549,7 +7645,7 @@ func (m *MsgChangeOwnerResponse) Reset() { *m = MsgChangeOwnerResponse{} func (m *MsgChangeOwnerResponse) String() string { return proto.CompactTextString(m) } func (*MsgChangeOwnerResponse) ProtoMessage() {} func (*MsgChangeOwnerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{136} + return fileDescriptor_b3051f5aac033d39, []int{138} } func (m *MsgChangeOwnerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7589,7 +7685,7 @@ func (m *MsgUpdateRepositoryCollaborator) Reset() { *m = MsgUpdateReposi func (m *MsgUpdateRepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryCollaborator) ProtoMessage() {} func (*MsgUpdateRepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{137} + return fileDescriptor_b3051f5aac033d39, []int{139} } func (m *MsgUpdateRepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7655,7 +7751,7 @@ func (m *MsgUpdateRepositoryCollaboratorResponse) Reset() { func (m *MsgUpdateRepositoryCollaboratorResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryCollaboratorResponse) ProtoMessage() {} func (*MsgUpdateRepositoryCollaboratorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{138} + return fileDescriptor_b3051f5aac033d39, []int{140} } func (m *MsgUpdateRepositoryCollaboratorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7694,7 +7790,7 @@ func (m *MsgRemoveRepositoryCollaborator) Reset() { *m = MsgRemoveReposi func (m *MsgRemoveRepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*MsgRemoveRepositoryCollaborator) ProtoMessage() {} func (*MsgRemoveRepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{139} + return fileDescriptor_b3051f5aac033d39, []int{141} } func (m *MsgRemoveRepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7753,7 +7849,7 @@ func (m *MsgRemoveRepositoryCollaboratorResponse) Reset() { func (m *MsgRemoveRepositoryCollaboratorResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveRepositoryCollaboratorResponse) ProtoMessage() {} func (*MsgRemoveRepositoryCollaboratorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{140} + return fileDescriptor_b3051f5aac033d39, []int{142} } func (m *MsgRemoveRepositoryCollaboratorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7794,7 +7890,7 @@ func (m *MsgCreateRepositoryLabel) Reset() { *m = MsgCreateRepositoryLab func (m *MsgCreateRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryLabel) ProtoMessage() {} func (*MsgCreateRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{141} + return fileDescriptor_b3051f5aac033d39, []int{143} } func (m *MsgCreateRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7866,7 +7962,7 @@ func (m *MsgCreateRepositoryLabelResponse) Reset() { *m = MsgCreateRepos func (m *MsgCreateRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryLabelResponse) ProtoMessage() {} func (*MsgCreateRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{142} + return fileDescriptor_b3051f5aac033d39, []int{144} } func (m *MsgCreateRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7915,7 +8011,7 @@ func (m *MsgUpdateRepositoryLabel) Reset() { *m = MsgUpdateRepositoryLab func (m *MsgUpdateRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryLabel) ProtoMessage() {} func (*MsgUpdateRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{143} + return fileDescriptor_b3051f5aac033d39, []int{145} } func (m *MsgUpdateRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7993,7 +8089,7 @@ func (m *MsgUpdateRepositoryLabelResponse) Reset() { *m = MsgUpdateRepos func (m *MsgUpdateRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryLabelResponse) ProtoMessage() {} func (*MsgUpdateRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{144} + return fileDescriptor_b3051f5aac033d39, []int{146} } func (m *MsgUpdateRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8032,7 +8128,7 @@ func (m *MsgDeleteRepositoryLabel) Reset() { *m = MsgDeleteRepositoryLab func (m *MsgDeleteRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryLabel) ProtoMessage() {} func (*MsgDeleteRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{145} + return fileDescriptor_b3051f5aac033d39, []int{147} } func (m *MsgDeleteRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8089,7 +8185,7 @@ func (m *MsgDeleteRepositoryLabelResponse) Reset() { *m = MsgDeleteRepos func (m *MsgDeleteRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryLabelResponse) ProtoMessage() {} func (*MsgDeleteRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{146} + return fileDescriptor_b3051f5aac033d39, []int{148} } func (m *MsgDeleteRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8127,7 +8223,7 @@ func (m *MsgToggleRepositoryForking) Reset() { *m = MsgToggleRepositoryF func (m *MsgToggleRepositoryForking) String() string { return proto.CompactTextString(m) } func (*MsgToggleRepositoryForking) ProtoMessage() {} func (*MsgToggleRepositoryForking) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{147} + return fileDescriptor_b3051f5aac033d39, []int{149} } func (m *MsgToggleRepositoryForking) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8178,7 +8274,7 @@ func (m *MsgToggleRepositoryForkingResponse) Reset() { *m = MsgToggleRep func (m *MsgToggleRepositoryForkingResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleRepositoryForkingResponse) ProtoMessage() {} func (*MsgToggleRepositoryForkingResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{148} + return fileDescriptor_b3051f5aac033d39, []int{150} } func (m *MsgToggleRepositoryForkingResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8223,7 +8319,7 @@ func (m *MsgToggleArweaveBackup) Reset() { *m = MsgToggleArweaveBackup{} func (m *MsgToggleArweaveBackup) String() string { return proto.CompactTextString(m) } func (*MsgToggleArweaveBackup) ProtoMessage() {} func (*MsgToggleArweaveBackup) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{149} + return fileDescriptor_b3051f5aac033d39, []int{151} } func (m *MsgToggleArweaveBackup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8274,7 +8370,7 @@ func (m *MsgToggleArweaveBackupResponse) Reset() { *m = MsgToggleArweave func (m *MsgToggleArweaveBackupResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleArweaveBackupResponse) ProtoMessage() {} func (*MsgToggleArweaveBackupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{150} + return fileDescriptor_b3051f5aac033d39, []int{152} } func (m *MsgToggleArweaveBackupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8319,7 +8415,7 @@ func (m *MsgDeleteRepository) Reset() { *m = MsgDeleteRepository{} } func (m *MsgDeleteRepository) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepository) ProtoMessage() {} func (*MsgDeleteRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{151} + return fileDescriptor_b3051f5aac033d39, []int{153} } func (m *MsgDeleteRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8369,7 +8465,7 @@ func (m *MsgDeleteRepositoryResponse) Reset() { *m = MsgDeleteRepository func (m *MsgDeleteRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryResponse) ProtoMessage() {} func (*MsgDeleteRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{152} + return fileDescriptor_b3051f5aac033d39, []int{154} } func (m *MsgDeleteRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8410,7 +8506,7 @@ func (m *MsgCreateUser) Reset() { *m = MsgCreateUser{} } func (m *MsgCreateUser) String() string { return proto.CompactTextString(m) } func (*MsgCreateUser) ProtoMessage() {} func (*MsgCreateUser) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{153} + return fileDescriptor_b3051f5aac033d39, []int{155} } func (m *MsgCreateUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8482,7 +8578,7 @@ func (m *MsgCreateUserResponse) Reset() { *m = MsgCreateUserResponse{} } func (m *MsgCreateUserResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateUserResponse) ProtoMessage() {} func (*MsgCreateUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{154} + return fileDescriptor_b3051f5aac033d39, []int{156} } func (m *MsgCreateUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8527,7 +8623,7 @@ func (m *MsgUpdateUserUsername) Reset() { *m = MsgUpdateUserUsername{} } func (m *MsgUpdateUserUsername) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserUsername) ProtoMessage() {} func (*MsgUpdateUserUsername) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{155} + return fileDescriptor_b3051f5aac033d39, []int{157} } func (m *MsgUpdateUserUsername) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8577,7 +8673,7 @@ func (m *MsgUpdateUserUsernameResponse) Reset() { *m = MsgUpdateUserUser func (m *MsgUpdateUserUsernameResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserUsernameResponse) ProtoMessage() {} func (*MsgUpdateUserUsernameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{156} + return fileDescriptor_b3051f5aac033d39, []int{158} } func (m *MsgUpdateUserUsernameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8615,7 +8711,7 @@ func (m *MsgUpdateUserName) Reset() { *m = MsgUpdateUserName{} } func (m *MsgUpdateUserName) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserName) ProtoMessage() {} func (*MsgUpdateUserName) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{157} + return fileDescriptor_b3051f5aac033d39, []int{159} } func (m *MsgUpdateUserName) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8665,7 +8761,7 @@ func (m *MsgUpdateUserNameResponse) Reset() { *m = MsgUpdateUserNameResp func (m *MsgUpdateUserNameResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserNameResponse) ProtoMessage() {} func (*MsgUpdateUserNameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{158} + return fileDescriptor_b3051f5aac033d39, []int{160} } func (m *MsgUpdateUserNameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8703,7 +8799,7 @@ func (m *MsgUpdateUserBio) Reset() { *m = MsgUpdateUserBio{} } func (m *MsgUpdateUserBio) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserBio) ProtoMessage() {} func (*MsgUpdateUserBio) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{159} + return fileDescriptor_b3051f5aac033d39, []int{161} } func (m *MsgUpdateUserBio) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8753,7 +8849,7 @@ func (m *MsgUpdateUserBioResponse) Reset() { *m = MsgUpdateUserBioRespon func (m *MsgUpdateUserBioResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserBioResponse) ProtoMessage() {} func (*MsgUpdateUserBioResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{160} + return fileDescriptor_b3051f5aac033d39, []int{162} } func (m *MsgUpdateUserBioResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8791,7 +8887,7 @@ func (m *MsgUpdateUserAvatar) Reset() { *m = MsgUpdateUserAvatar{} } func (m *MsgUpdateUserAvatar) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserAvatar) ProtoMessage() {} func (*MsgUpdateUserAvatar) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{161} + return fileDescriptor_b3051f5aac033d39, []int{163} } func (m *MsgUpdateUserAvatar) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8841,7 +8937,7 @@ func (m *MsgUpdateUserAvatarResponse) Reset() { *m = MsgUpdateUserAvatar func (m *MsgUpdateUserAvatarResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserAvatarResponse) ProtoMessage() {} func (*MsgUpdateUserAvatarResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{162} + return fileDescriptor_b3051f5aac033d39, []int{164} } func (m *MsgUpdateUserAvatarResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8879,7 +8975,7 @@ func (m *MsgDeleteUser) Reset() { *m = MsgDeleteUser{} } func (m *MsgDeleteUser) String() string { return proto.CompactTextString(m) } func (*MsgDeleteUser) ProtoMessage() {} func (*MsgDeleteUser) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{163} + return fileDescriptor_b3051f5aac033d39, []int{165} } func (m *MsgDeleteUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8929,7 +9025,7 @@ func (m *MsgDeleteUserResponse) Reset() { *m = MsgDeleteUserResponse{} } func (m *MsgDeleteUserResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteUserResponse) ProtoMessage() {} func (*MsgDeleteUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{164} + return fileDescriptor_b3051f5aac033d39, []int{166} } func (m *MsgDeleteUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9099,6 +9195,8 @@ func init() { proto.RegisterType((*MsgRenameRepositoryResponse)(nil), "gitopia.gitopia.gitopia.MsgRenameRepositoryResponse") proto.RegisterType((*MsgUpdateRepositoryDescription)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryDescription") proto.RegisterType((*MsgUpdateRepositoryDescriptionResponse)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryDescriptionResponse") + proto.RegisterType((*MsgUpdateArchiveState)(nil), "gitopia.gitopia.gitopia.MsgUpdateArchiveState") + proto.RegisterType((*MsgUpdateArchiveStateResponse)(nil), "gitopia.gitopia.gitopia.MsgUpdateArchiveStateResponse") proto.RegisterType((*MsgChangeOwner)(nil), "gitopia.gitopia.gitopia.MsgChangeOwner") proto.RegisterType((*MsgChangeOwnerResponse)(nil), "gitopia.gitopia.gitopia.MsgChangeOwnerResponse") proto.RegisterType((*MsgUpdateRepositoryCollaborator)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryCollaborator") @@ -9131,288 +9229,291 @@ func init() { proto.RegisterType((*MsgDeleteUserResponse)(nil), "gitopia.gitopia.gitopia.MsgDeleteUserResponse") } -func init() { proto.RegisterFile("gitopia/tx.proto", fileDescriptor_a62a3f7fe5854081) } - -var fileDescriptor_a62a3f7fe5854081 = []byte{ - // 4443 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5d, 0xdd, 0x6f, 0x1c, 0xd7, - 0x75, 0xd7, 0x70, 0x97, 0x1f, 0x7b, 0x29, 0xd3, 0xd4, 0x52, 0x1f, 0xcb, 0x91, 0x4c, 0xd1, 0x63, - 0x4b, 0xa2, 0x28, 0x7e, 0x88, 0x94, 0x65, 0xcb, 0xb2, 0xad, 0x9a, 0x14, 0x69, 0x9b, 0xad, 0x68, - 0xab, 0x43, 0xaa, 0xae, 0x8b, 0xa2, 0xed, 0x70, 0xf7, 0x72, 0x38, 0xe5, 0x72, 0x67, 0x3b, 0x33, - 0x4b, 0x89, 0x6d, 0x01, 0xb7, 0xfe, 0x80, 0xdd, 0x1a, 0x6e, 0x63, 0xc7, 0x70, 0x02, 0x07, 0x46, - 0x82, 0xbc, 0x39, 0x40, 0x5e, 0x92, 0x3c, 0x05, 0xf9, 0x03, 0xfc, 0x14, 0x38, 0x08, 0x02, 0xe4, - 0x29, 0x36, 0xa4, 0xc7, 0x3c, 0xe4, 0x29, 0xef, 0xc1, 0xfd, 0x98, 0x3b, 0xf7, 0xce, 0xc7, 0x9d, - 0x3b, 0x34, 0x45, 0x2a, 0x46, 0x9e, 0xb4, 0x33, 0x73, 0xce, 0x3d, 0xbf, 0x73, 0xee, 0xb9, 0x5f, - 0xe7, 0x9e, 0x23, 0x82, 0x41, 0xdb, 0x09, 0xdc, 0xb6, 0x63, 0x4d, 0x07, 0x77, 0xa6, 0xda, 0x9e, - 0x1b, 0xb8, 0xd5, 0x13, 0xf4, 0xcd, 0x54, 0xec, 0x5f, 0xfd, 0xa8, 0xed, 0xda, 0x2e, 0xa6, 0x99, - 0x46, 0xbf, 0x08, 0xb9, 0x5e, 0x65, 0x0d, 0x58, 0xfe, 0x26, 0x7d, 0x77, 0x34, 0x7c, 0xb7, 0xe6, - 0x59, 0xad, 0xfa, 0x06, 0x7d, 0x7b, 0x24, 0xa2, 0xb4, 0xe3, 0x84, 0x5b, 0x70, 0x6b, 0x0d, 0x7a, - 0x09, 0x76, 0xb7, 0xd3, 0x0a, 0x76, 0xe8, 0xdb, 0x63, 0xe1, 0x5b, 0x0f, 0x36, 0xa1, 0xe5, 0x43, - 0xfa, 0x7a, 0x38, 0x7c, 0xdd, 0xee, 0x34, 0x9b, 0x26, 0xfc, 0xb7, 0x0e, 0xf4, 0x83, 0xb8, 0xc0, - 0x86, 0xe5, 0xc6, 0x1b, 0xa9, 0xbb, 0x5b, 0x5b, 0xb0, 0x15, 0x52, 0x0e, 0x85, 0xaf, 0x1d, 0xdf, - 0xef, 0x84, 0x2d, 0xd7, 0x22, 0x81, 0x6d, 0xd7, 0x77, 0x02, 0xd7, 0xdb, 0x89, 0x93, 0xdf, 0xde, - 0x70, 0x1d, 0x9f, 0xbe, 0x1c, 0xa9, 0xbb, 0xfe, 0x96, 0xeb, 0x4f, 0xaf, 0x59, 0x3e, 0x9c, 0xde, - 0x9e, 0x59, 0x83, 0x81, 0x35, 0x33, 0x5d, 0x77, 0x9d, 0x56, 0xbc, 0x39, 0x2b, 0x08, 0xac, 0xfa, - 0x06, 0x27, 0xfd, 0x78, 0x24, 0xc8, 0xaa, 0x07, 0x8e, 0x4b, 0x39, 0x8c, 0xef, 0x69, 0xa0, 0x7f, - 0xd9, 0xb7, 0x17, 0xef, 0x40, 0xaf, 0xee, 0xf8, 0xb0, 0x5a, 0x03, 0xbd, 0x75, 0x0f, 0x5a, 0x81, - 0xeb, 0xd5, 0xb4, 0x51, 0x6d, 0xac, 0x62, 0x86, 0x8f, 0xd5, 0x35, 0xd0, 0x63, 0x6d, 0x21, 0x63, - 0xd5, 0xba, 0x46, 0xb5, 0xb1, 0xfe, 0xd9, 0xe1, 0x29, 0x02, 0x66, 0x0a, 0x81, 0x99, 0xa2, 0x60, - 0xa6, 0xae, 0xbb, 0x4e, 0x6b, 0x7e, 0xfa, 0xf3, 0xdf, 0x9d, 0x3e, 0xf4, 0xc6, 0x97, 0xa7, 0xcf, - 0xd9, 0x4e, 0xb0, 0xd1, 0x59, 0x9b, 0xaa, 0xbb, 0x5b, 0xd3, 0x14, 0x39, 0xf9, 0x67, 0xd2, 0x6f, - 0x6c, 0x4e, 0x07, 0x3b, 0x6d, 0xe8, 0x63, 0x06, 0x93, 0xb6, 0x5c, 0x1d, 0x00, 0x5d, 0x81, 0x5b, - 0x2b, 0x61, 0xc1, 0x5d, 0x81, 0x6b, 0x1c, 0x03, 0x43, 0x1c, 0x38, 0x13, 0xfa, 0x6d, 0xb7, 0xe5, - 0x43, 0xe3, 0xfb, 0x1a, 0xa8, 0x2e, 0xfb, 0xf6, 0xaa, 0x6b, 0xdb, 0x4d, 0xf8, 0x82, 0xeb, 0xd5, - 0xe1, 0xcd, 0x8e, 0xbf, 0x21, 0xc1, 0xfe, 0x0a, 0x38, 0x1c, 0x19, 0x78, 0xa9, 0x41, 0x35, 0x38, - 0x33, 0x95, 0xe1, 0x86, 0x53, 0x26, 0x47, 0x3c, 0x5f, 0x46, 0xda, 0x98, 0x42, 0x03, 0xd5, 0x11, - 0x00, 0x88, 0xdf, 0xbd, 0x6c, 0x6d, 0x41, 0x0a, 0x98, 0x7b, 0x63, 0x9c, 0x02, 0x7a, 0x12, 0x20, - 0xc3, 0xff, 0x73, 0x0d, 0x9c, 0x5c, 0xf6, 0x6d, 0x13, 0x6e, 0xbb, 0x9b, 0xf0, 0xa6, 0xe7, 0x6e, - 0x3b, 0x0d, 0xe8, 0xdd, 0x84, 0xde, 0x96, 0xe3, 0xfb, 0x8e, 0xdb, 0x92, 0x28, 0x52, 0x03, 0xbd, - 0xb6, 0x67, 0xb5, 0x02, 0xe8, 0x61, 0x1d, 0x2a, 0x66, 0xf8, 0x58, 0xd5, 0x41, 0x5f, 0x9b, 0xb6, - 0x44, 0xf1, 0xb0, 0xe7, 0xea, 0xdf, 0x00, 0xd0, 0x66, 0xad, 0xd7, 0xca, 0xa3, 0xda, 0xd8, 0xc0, - 0xec, 0x85, 0x4c, 0xe5, 0x93, 0x80, 0x4c, 0x8e, 0xdd, 0x38, 0x03, 0x1e, 0x93, 0x60, 0x67, 0x3a, - 0xfe, 0x54, 0x03, 0x47, 0x97, 0x7d, 0x7b, 0xae, 0x13, 0x6c, 0xb8, 0x9e, 0xf3, 0xef, 0x8c, 0xf4, - 0xc1, 0x56, 0x6e, 0x04, 0x9c, 0x4a, 0x03, 0xcd, 0xb4, 0x7a, 0x4b, 0x03, 0x0f, 0x2d, 0xfb, 0xf6, - 0x75, 0x84, 0x18, 0xae, 0x5a, 0xfe, 0xa6, 0x44, 0x9d, 0xe7, 0x40, 0x1f, 0x9a, 0xaf, 0x56, 0x77, - 0xda, 0x10, 0xeb, 0x33, 0x30, 0xfb, 0x68, 0x26, 0xac, 0x55, 0x4a, 0x68, 0x32, 0x16, 0x99, 0xce, - 0xc6, 0x39, 0x70, 0x4c, 0x40, 0x11, 0xe2, 0x43, 0x03, 0xc8, 0x69, 0x60, 0x20, 0x65, 0xb3, 0xcb, - 0x69, 0x18, 0xef, 0x13, 0xbc, 0xb7, 0xda, 0x8d, 0x7c, 0xbc, 0x84, 0xb7, 0x2b, 0xe4, 0xad, 0x5e, - 0x01, 0xdd, 0x7e, 0x60, 0x05, 0xc4, 0xbd, 0x07, 0x66, 0x0d, 0x29, 0xf8, 0x15, 0x44, 0x69, 0x12, - 0x06, 0x24, 0x63, 0x0b, 0xfa, 0xbe, 0x65, 0x43, 0xdc, 0x1f, 0x15, 0x33, 0x7c, 0x34, 0x4e, 0x60, - 0xe0, 0x11, 0x1c, 0x66, 0xd8, 0xa7, 0x31, 0xce, 0x05, 0xd8, 0x84, 0x45, 0x71, 0x1a, 0x77, 0x35, - 0xdc, 0x69, 0xa4, 0xd1, 0x68, 0xe4, 0xce, 0x5b, 0xf5, 0xcd, 0x4e, 0xdb, 0x84, 0xeb, 0xfb, 0x39, - 0x2f, 0x2c, 0x22, 0x9b, 0xb9, 0x5e, 0x68, 0xb3, 0x69, 0x85, 0x96, 0x08, 0xce, 0xa9, 0x15, 0xc4, - 0x66, 0x12, 0xee, 0xea, 0x20, 0x28, 0x79, 0x70, 0x9d, 0x1a, 0x0f, 0xfd, 0x34, 0xce, 0x82, 0xc7, - 0x65, 0x3a, 0x32, 0x3b, 0x7e, 0xa9, 0x81, 0x61, 0xe4, 0xc1, 0x8d, 0xc6, 0x37, 0xd5, 0x12, 0x8f, - 0x81, 0x47, 0x33, 0x15, 0x64, 0x66, 0x20, 0x7e, 0x16, 0xb9, 0x13, 0xfb, 0x60, 0x80, 0x51, 0xf6, - 0x01, 0x09, 0xb2, 0xec, 0xe4, 0x20, 0xff, 0xa3, 0x06, 0x0e, 0x2f, 0xfb, 0xf6, 0x0a, 0x0c, 0xe6, - 0xf1, 0x8c, 0xbe, 0x9f, 0x66, 0xfb, 0x6b, 0xd0, 0x43, 0x96, 0x11, 0x6c, 0xb7, 0xfe, 0xd9, 0x89, - 0xcc, 0xa6, 0x78, 0x84, 0x53, 0xe4, 0x1f, 0xda, 0x22, 0x6d, 0x41, 0x9f, 0x02, 0x3d, 0x54, 0x81, - 0x2a, 0x28, 0xb7, 0xd0, 0x42, 0x45, 0xd0, 0xe3, 0xdf, 0xc8, 0xb2, 0xfe, 0x86, 0x45, 0x67, 0x5a, - 0xf4, 0xd3, 0x38, 0x8e, 0x67, 0x6c, 0xd6, 0x28, 0xb3, 0xc7, 0x77, 0x35, 0xbc, 0x0c, 0xaf, 0xc0, - 0x60, 0x01, 0xae, 0x5b, 0x9d, 0xe6, 0x01, 0x98, 0xe5, 0xb8, 0x60, 0x96, 0x4a, 0xa8, 0xa2, 0xf1, - 0x08, 0x5e, 0x48, 0xe3, 0xc8, 0x18, 0xf2, 0x37, 0xbb, 0xc0, 0x91, 0x65, 0xdf, 0x5e, 0xee, 0x34, - 0x03, 0xe7, 0x40, 0xba, 0x73, 0x05, 0xf4, 0x11, 0xa4, 0xd0, 0xaf, 0x95, 0x46, 0x4b, 0x63, 0xfd, - 0xb3, 0x33, 0xb2, 0x0e, 0x15, 0x81, 0x8a, 0xbd, 0xca, 0x1a, 0x2a, 0xdc, 0xaf, 0x27, 0xf1, 0x94, - 0x20, 0xb6, 0xcd, 0x4c, 0xf4, 0x91, 0x06, 0x1e, 0x66, 0x23, 0xe2, 0xc1, 0xe9, 0xd8, 0x61, 0x70, - 0x22, 0x86, 0x8a, 0x21, 0xfe, 0x94, 0xec, 0x2c, 0xb0, 0x3e, 0x07, 0x05, 0x5b, 0x8f, 0xf5, 0x6b, - 0x25, 0xea, 0x1e, 0xba, 0x87, 0x48, 0xc0, 0x63, 0xf8, 0xef, 0x69, 0xa0, 0x42, 0x9c, 0x76, 0xd5, - 0xb2, 0xf7, 0x13, 0xf4, 0x35, 0x50, 0x0a, 0x2c, 0x9b, 0x4e, 0x2c, 0x67, 0x73, 0x26, 0x96, 0x55, - 0xcb, 0x9e, 0x5a, 0xb5, 0x6c, 0xda, 0x10, 0x62, 0xd4, 0x2f, 0x80, 0x12, 0x42, 0xac, 0xe6, 0x74, - 0x43, 0x78, 0xe4, 0x91, 0x86, 0x98, 0xea, 0x7f, 0xd0, 0xc0, 0x00, 0xe7, 0x8a, 0xfb, 0xac, 0xff, - 0x22, 0x28, 0x07, 0x96, 0x1d, 0x0e, 0xc4, 0x0b, 0x2a, 0x03, 0x51, 0xb4, 0x02, 0x66, 0x2f, 0x66, - 0x86, 0x1a, 0x38, 0x2e, 0x36, 0xc7, 0x6c, 0xf1, 0x1e, 0x59, 0x65, 0xc2, 0x35, 0x6a, 0x5f, 0x2d, - 0x31, 0x18, 0x79, 0x42, 0x05, 0xf7, 0x2d, 0x9d, 0xfb, 0x19, 0x18, 0x86, 0xf2, 0x43, 0x2d, 0x9a, - 0x41, 0x0f, 0x04, 0x6a, 0x95, 0xeb, 0xb4, 0x0a, 0xe9, 0x01, 0x7e, 0x42, 0x4b, 0x22, 0xfe, 0x7f, - 0x62, 0xd7, 0xb9, 0x46, 0x63, 0x19, 0x1f, 0xf8, 0x25, 0x60, 0x8f, 0x82, 0xee, 0x86, 0xe5, 0x52, - 0x94, 0x15, 0x93, 0x3c, 0xa0, 0x29, 0xa9, 0xe3, 0x43, 0x6f, 0xa9, 0x11, 0x4e, 0x49, 0xe4, 0xa9, - 0xfa, 0x14, 0x28, 0x7b, 0x6e, 0x13, 0xd2, 0x23, 0xc6, 0x63, 0xd9, 0xee, 0x83, 0xc5, 0x9a, 0x6e, - 0x13, 0x9a, 0x98, 0x81, 0xda, 0x96, 0x01, 0x62, 0x48, 0x3f, 0x26, 0xeb, 0x2a, 0xd9, 0xd4, 0x45, - 0x5c, 0x07, 0x0f, 0x98, 0xac, 0xaa, 0x71, 0x5c, 0x0c, 0xf7, 0x6b, 0x78, 0xc5, 0x30, 0xe1, 0x96, - 0xbb, 0x0d, 0xf7, 0xd6, 0xc6, 0x74, 0xda, 0xe7, 0x9b, 0x66, 0x52, 0x3f, 0xeb, 0xc2, 0x62, 0xc9, - 0xa1, 0x67, 0x1e, 0x47, 0x6d, 0x24, 0x62, 0xeb, 0x5c, 0xb4, 0xa2, 0x24, 0x8f, 0x56, 0x5c, 0x44, - 0x5e, 0xf7, 0xa3, 0x2f, 0x4f, 0x8f, 0x29, 0x46, 0x2b, 0x7c, 0x16, 0xae, 0x38, 0x0e, 0x7a, 0xe0, - 0x9d, 0xb6, 0xe3, 0xed, 0x60, 0x2d, 0x4a, 0x26, 0x7d, 0xaa, 0x1a, 0xb1, 0x41, 0x50, 0xc6, 0x67, - 0x15, 0xd1, 0xaf, 0x4f, 0x81, 0x4a, 0xdb, 0xf2, 0x60, 0x2b, 0x58, 0x72, 0x1a, 0xb5, 0x6e, 0x4c, - 0x10, 0xbd, 0xa8, 0x3e, 0x07, 0x7a, 0xc8, 0x43, 0xad, 0x07, 0x77, 0x5e, 0xf6, 0x00, 0x22, 0x96, - 0xb8, 0x89, 0x89, 0x4d, 0xca, 0x64, 0x9c, 0xc7, 0x66, 0xe4, 0x4d, 0x95, 0x79, 0x42, 0x7c, 0x8d, - 0x3b, 0x91, 0x11, 0xd2, 0x45, 0xa2, 0x84, 0xfa, 0x41, 0x31, 0xc3, 0x0c, 0xc6, 0x69, 0xf0, 0x48, - 0x6a, 0xd3, 0xac, 0x4b, 0xaf, 0xe2, 0xd5, 0xe0, 0x7a, 0xd3, 0xf5, 0xf3, 0x3b, 0x34, 0x7e, 0xea, - 0x23, 0x13, 0x2b, 0xc7, 0xcb, 0x5a, 0x7d, 0x86, 0xdf, 0xd0, 0x14, 0x6d, 0x56, 0xd8, 0x77, 0x88, - 0xed, 0xfe, 0xba, 0x0b, 0x0c, 0x32, 0xab, 0x9a, 0x24, 0x40, 0xb8, 0x9f, 0x33, 0x61, 0x0d, 0xf4, - 0x06, 0x96, 0xcd, 0x05, 0x9c, 0xc2, 0x47, 0xd4, 0x01, 0x81, 0xe5, 0xd9, 0x30, 0xa0, 0xe7, 0x24, - 0xfa, 0xc4, 0x96, 0xa8, 0x6e, 0x6e, 0x89, 0x1a, 0x05, 0xfd, 0x0d, 0xe8, 0xd7, 0x3d, 0xa7, 0x1d, - 0x38, 0x6e, 0x0b, 0xbb, 0x57, 0xc5, 0xe4, 0x5f, 0x21, 0x8a, 0x28, 0x7c, 0xe8, 0xd7, 0x7a, 0x09, - 0x05, 0xf7, 0x0a, 0x8f, 0x69, 0xcf, 0x5a, 0x0f, 0x6a, 0x7d, 0xa3, 0xda, 0x58, 0x9f, 0x49, 0x1e, - 0xaa, 0x23, 0x00, 0xb4, 0xbd, 0xd0, 0x30, 0xb5, 0x0a, 0xfe, 0xc4, 0xbd, 0x41, 0x5c, 0x8e, 0xbf, - 0x6a, 0xd9, 0x35, 0x40, 0xb8, 0xf0, 0x83, 0x31, 0x0e, 0x6a, 0x71, 0xa3, 0x66, 0xfa, 0xea, 0x87, - 0xa4, 0x07, 0xc2, 0x53, 0x70, 0x5e, 0x0f, 0xc4, 0xfd, 0xf4, 0x9b, 0x69, 0x40, 0x1d, 0x1b, 0x50, - 0xb0, 0x09, 0x73, 0xd9, 0x67, 0xb1, 0xbd, 0x88, 0x37, 0x17, 0xb6, 0x17, 0x6d, 0x59, 0xe0, 0x66, - 0x2d, 0x7f, 0x51, 0xc2, 0x8b, 0x1a, 0xe9, 0xb7, 0x9b, 0x51, 0x58, 0x5c, 0xbe, 0x12, 0x04, 0x4e, - 0xd0, 0x84, 0xe1, 0x4a, 0x80, 0x1f, 0xe2, 0xe6, 0x2c, 0x25, 0xcd, 0x39, 0x02, 0xc0, 0x06, 0xb4, - 0x1a, 0x64, 0x17, 0x4d, 0x3b, 0x88, 0x7b, 0x53, 0x7d, 0x15, 0x0c, 0xa2, 0x27, 0x7e, 0xfc, 0xe0, - 0x0e, 0x2b, 0x38, 0xd8, 0x12, 0x8d, 0xe0, 0x20, 0xaf, 0xe5, 0xd3, 0xed, 0x3b, 0xed, 0x68, 0xee, - 0x0d, 0x12, 0xbc, 0x86, 0x6d, 0xc2, 0x09, 0xee, 0xdd, 0x85, 0xe0, 0x78, 0x23, 0x68, 0x6d, 0xf0, - 0xe0, 0xb6, 0x03, 0x6f, 0x43, 0xcf, 0xaf, 0xf5, 0xe1, 0x8d, 0x4f, 0xf4, 0x02, 0x7d, 0xb5, 0x7c, - 0xdf, 0xb1, 0x5b, 0x10, 0xfa, 0xb5, 0x0a, 0xf9, 0xca, 0x5e, 0xa0, 0x93, 0x49, 0xd3, 0x5a, 0x83, - 0xcd, 0xa5, 0x86, 0x5f, 0x03, 0xa3, 0xa5, 0xb1, 0xb2, 0xc9, 0x9e, 0x11, 0x27, 0xbe, 0x7c, 0x58, - 0x72, 0x1a, 0x7e, 0xad, 0x1f, 0x7f, 0x8c, 0x5e, 0x18, 0xcf, 0xe3, 0x73, 0x4b, 0xa2, 0x47, 0xb3, - 0x46, 0x23, 0xda, 0x44, 0x3a, 0xcc, 0x5f, 0xd0, 0x4f, 0xe3, 0xbf, 0x49, 0xf0, 0x89, 0xf8, 0x22, - 0xd7, 0xc4, 0x2a, 0xee, 0xe9, 0x6c, 0xcf, 0x30, 0x52, 0xa6, 0xca, 0x72, 0x72, 0xcb, 0x8a, 0xa4, - 0x95, 0x98, 0xb4, 0xc8, 0x9f, 0xca, 0x9c, 0x3f, 0xd1, 0xf0, 0x50, 0x3a, 0x04, 0xe6, 0xbd, 0xdf, - 0xd6, 0xc0, 0xe9, 0x34, 0xaa, 0x05, 0xce, 0xed, 0xf6, 0x1a, 0x6e, 0xcc, 0xd1, 0xcb, 0x09, 0x47, - 0x37, 0xce, 0x83, 0x73, 0x39, 0xa0, 0x98, 0x02, 0xef, 0x10, 0x4b, 0x2f, 0xb5, 0xb6, 0xdd, 0x4d, - 0xb8, 0x0c, 0x3d, 0x5b, 0x71, 0x0c, 0xee, 0x0e, 0x3a, 0x1f, 0x8a, 0x2e, 0xc7, 0x42, 0xd1, 0xc4, - 0xde, 0xe9, 0x40, 0x18, 0xdc, 0xaf, 0x34, 0xbc, 0x5a, 0xaf, 0xc0, 0x80, 0xfb, 0xba, 0x12, 0xc6, - 0x8a, 0xf7, 0xda, 0x2b, 0x48, 0xd4, 0x9a, 0x7a, 0x05, 0x89, 0x48, 0x9f, 0x05, 0x03, 0x5b, 0x08, - 0xdc, 0x75, 0x77, 0x6b, 0xcb, 0x09, 0x56, 0x36, 0x2c, 0x3a, 0xa5, 0xc7, 0xde, 0xa2, 0x4e, 0xa2, - 0xb7, 0x76, 0xf3, 0x6e, 0x63, 0x27, 0x9c, 0xdc, 0xb9, 0x57, 0x64, 0xa9, 0xf0, 0x37, 0xe9, 0x50, - 0x2f, 0x9b, 0xf4, 0xc9, 0x78, 0x12, 0x8c, 0xa4, 0x6b, 0xc8, 0xc6, 0x0f, 0x43, 0xa6, 0x71, 0xc8, - 0x8c, 0xff, 0xd5, 0xf0, 0x55, 0xd1, 0x5c, 0xa3, 0x21, 0x18, 0x2e, 0x1c, 0xec, 0x7b, 0x6d, 0x1e, - 0x61, 0x6a, 0x29, 0xc7, 0xa6, 0x16, 0xe3, 0x71, 0x60, 0x64, 0x63, 0x61, 0xbd, 0xf9, 0xbe, 0x86, - 0x37, 0x76, 0x64, 0x97, 0xfe, 0x00, 0xa0, 0x3e, 0x07, 0xce, 0x48, 0xe1, 0x30, 0xe0, 0xa9, 0xb6, - 0x9e, 0x63, 0x53, 0xe7, 0x7d, 0x40, 0x1d, 0x4d, 0xd4, 0xe5, 0xd8, 0x44, 0x9d, 0x6a, 0x6b, 0x86, - 0x25, 0xd7, 0xd6, 0x07, 0x85, 0x3a, 0xc3, 0xd6, 0x49, 0xe0, 0x3f, 0x20, 0xb7, 0x32, 0x37, 0x9c, - 0xd6, 0x26, 0x47, 0xb7, 0x84, 0x56, 0x9b, 0xf9, 0x9d, 0x25, 0xb2, 0x1b, 0xfb, 0x1a, 0xb8, 0xcf, - 0x82, 0x01, 0xee, 0x32, 0x7e, 0x89, 0xa9, 0x10, 0x7b, 0x8b, 0xa6, 0xae, 0x70, 0x85, 0xa3, 0xc7, - 0x30, 0xf6, 0x4c, 0xef, 0x54, 0x32, 0x11, 0x32, 0x55, 0x7e, 0xa8, 0xe1, 0xb1, 0x7d, 0xab, 0xd5, - 0x7c, 0x80, 0x95, 0x19, 0x03, 0x67, 0xe5, 0x18, 0x99, 0x3a, 0x6f, 0x6b, 0xf8, 0x8c, 0x23, 0x7a, - 0xde, 0x0d, 0xb4, 0x47, 0xf0, 0xef, 0xc7, 0xca, 0xc1, 0x76, 0x23, 0x65, 0x71, 0x37, 0x62, 0x3c, - 0x8a, 0xd7, 0xe0, 0x34, 0x18, 0x0c, 0xea, 0xbb, 0x64, 0xc0, 0x26, 0xdc, 0xed, 0x00, 0xd0, 0x92, - 0xe1, 0x9a, 0x81, 0x84, 0x01, 0x5e, 0xe7, 0xc2, 0x68, 0xf7, 0x71, 0x45, 0xa6, 0x31, 0xe6, 0x84, - 0x1c, 0x86, 0xe3, 0x27, 0x24, 0x08, 0x46, 0x36, 0x73, 0x0b, 0x96, 0x2b, 0x01, 0x10, 0x9e, 0x71, - 0xba, 0xb2, 0xcf, 0x38, 0x29, 0x9b, 0x72, 0x34, 0x4b, 0x6c, 0x5b, 0x81, 0xe5, 0xdd, 0xf2, 0x9a, - 0x74, 0xa9, 0x8d, 0x5e, 0x60, 0x43, 0xba, 0x75, 0x0b, 0x33, 0x93, 0x85, 0x96, 0x3d, 0x23, 0x24, - 0xb7, 0xe1, 0x9a, 0xef, 0x04, 0x90, 0x2e, 0xaf, 0xe1, 0xa3, 0x71, 0x96, 0x3b, 0x52, 0x2c, 0x58, - 0x6e, 0xca, 0xc6, 0xb3, 0x82, 0xcf, 0x25, 0x37, 0xb0, 0x6e, 0x26, 0x44, 0x50, 0xe5, 0xba, 0x45, - 0x27, 0x1a, 0xcc, 0xc9, 0x74, 0x2d, 0x45, 0xba, 0xd2, 0xe8, 0x1c, 0x6b, 0x8d, 0x99, 0x10, 0xe2, - 0x51, 0x42, 0x76, 0x63, 0x0b, 0x96, 0xab, 0xb6, 0x35, 0x8c, 0x0b, 0xcc, 0x35, 0x24, 0x1d, 0x05, - 0x69, 0x62, 0x18, 0x92, 0xbf, 0xe5, 0xc2, 0x84, 0x0b, 0x96, 0xfb, 0x2a, 0x31, 0x57, 0x01, 0x14, - 0x83, 0xa0, 0xd4, 0xf1, 0x9a, 0x61, 0xb8, 0xb7, 0xe3, 0x35, 0x85, 0x08, 0x5f, 0xd4, 0x24, 0x93, - 0xf8, 0x8f, 0xd8, 0x26, 0xec, 0xf3, 0x0d, 0xae, 0xef, 0x14, 0x45, 0xf2, 0x1e, 0x50, 0x12, 0x3d, - 0x80, 0x3a, 0x6f, 0xa2, 0x75, 0x26, 0xfd, 0x26, 0xce, 0xee, 0x61, 0xdf, 0xe7, 0xb0, 0x5b, 0x7d, - 0x2d, 0x75, 0x49, 0x3a, 0x4e, 0xac, 0x45, 0x26, 0xef, 0x0a, 0x17, 0x88, 0x2f, 0xe4, 0x4f, 0x42, - 0xd4, 0x9c, 0xf7, 0x9d, 0xdf, 0xf0, 0xa1, 0xa2, 0xeb, 0x64, 0xf7, 0xf8, 0x35, 0xe7, 0x00, 0x21, - 0x5e, 0x58, 0x8a, 0xc7, 0x0b, 0xaf, 0xb1, 0x78, 0x21, 0x09, 0xf6, 0x66, 0xdf, 0xee, 0x50, 0x34, - 0x62, 0xc0, 0x10, 0x0d, 0x8c, 0x35, 0xb4, 0xe1, 0xa5, 0x81, 0x0e, 0xf4, 0xbb, 0xba, 0x28, 0x86, - 0x31, 0x7a, 0x70, 0x1c, 0x35, 0x3b, 0x8a, 0x3c, 0xc7, 0x68, 0xc5, 0x58, 0x87, 0x0e, 0xfa, 0x1a, - 0xce, 0xfa, 0xfa, 0x4b, 0x9d, 0xd6, 0x26, 0x0d, 0x85, 0xb0, 0x67, 0x24, 0xb6, 0x6d, 0x05, 0x1b, - 0x38, 0x0c, 0x52, 0x31, 0xf1, 0x6f, 0x7c, 0xd8, 0x40, 0x6a, 0x23, 0xcf, 0xa9, 0x90, 0x45, 0x2e, - 0x7c, 0x16, 0x82, 0x45, 0x54, 0x91, 0xcc, 0x60, 0xd1, 0x67, 0x7c, 0xb0, 0xe8, 0xcf, 0xa1, 0x0f, - 0x46, 0x00, 0xa0, 0x07, 0x8d, 0x28, 0x24, 0xcc, 0xbd, 0x61, 0x7d, 0xd4, 0x93, 0xdd, 0x47, 0xbd, - 0xbb, 0xeb, 0x23, 0x21, 0x86, 0x14, 0xb3, 0xab, 0xf1, 0x4b, 0x8d, 0x0b, 0x22, 0x7d, 0x03, 0xec, - 0x28, 0x84, 0xb5, 0xe2, 0xca, 0x7e, 0x52, 0x22, 0x21, 0x69, 0xec, 0x61, 0x78, 0xef, 0xb4, 0x9f, - 0x11, 0x5e, 0x16, 0xd1, 0x28, 0x49, 0x22, 0x64, 0xc9, 0xc0, 0x81, 0xb0, 0x6f, 0xe9, 0x8e, 0xc5, - 0x7c, 0x8e, 0x83, 0x9e, 0xdb, 0xd0, 0xb1, 0x37, 0xc8, 0x4d, 0x42, 0xd9, 0xa4, 0x4f, 0xe2, 0x36, - 0xbf, 0x37, 0x1e, 0x45, 0x72, 0xc1, 0x61, 0x92, 0x18, 0x3b, 0x47, 0x2e, 0x51, 0xfa, 0xf6, 0xfe, - 0x12, 0x45, 0x10, 0x80, 0xdc, 0x66, 0x8d, 0xbb, 0x22, 0xc0, 0x23, 0xbf, 0x64, 0x0a, 0xef, 0x8c, - 0xab, 0x24, 0xe4, 0x1f, 0xf5, 0x4d, 0x81, 0xd0, 0xd4, 0x7f, 0x70, 0x6b, 0x28, 0xe6, 0xdd, 0xcf, - 0x98, 0x14, 0xbf, 0xda, 0x46, 0xc2, 0xf9, 0x33, 0xde, 0xb0, 0xf8, 0xfd, 0x60, 0xe3, 0x50, 0x7c, - 0x08, 0x2d, 0x0e, 0x87, 0x8f, 0x40, 0x0d, 0xb1, 0x14, 0x57, 0x4c, 0x75, 0x7f, 0xe2, 0x39, 0xb1, - 0x88, 0x4c, 0x39, 0x11, 0x91, 0x31, 0x2e, 0x61, 0xeb, 0xc6, 0x81, 0xe4, 0x84, 0x5d, 0xde, 0xd2, - 0xc2, 0x4b, 0x59, 0xcc, 0x72, 0x50, 0xc7, 0x69, 0x9a, 0x6f, 0x1a, 0x47, 0xc1, 0x5b, 0x39, 0xba, - 0x10, 0x3d, 0x50, 0xa4, 0x64, 0x9f, 0x9a, 0x06, 0x84, 0x81, 0x7d, 0x1d, 0xa7, 0x0a, 0x84, 0xca, - 0x1c, 0xc0, 0x19, 0xed, 0x64, 0x98, 0xfb, 0xc8, 0x01, 0x60, 0xe8, 0xde, 0xd0, 0xe8, 0x46, 0x9f, - 0x69, 0x70, 0x00, 0x08, 0x49, 0x7f, 0x27, 0x30, 0x30, 0x90, 0xff, 0x82, 0x97, 0x1f, 0xb2, 0x36, - 0xe5, 0x2d, 0x3f, 0xbb, 0x3b, 0x39, 0x92, 0x7b, 0x53, 0x4e, 0x02, 0x93, 0x4d, 0xa6, 0xc8, 0xf0, - 0x26, 0x2e, 0x6c, 0xa4, 0xe0, 0xc9, 0xf1, 0x28, 0xe8, 0x76, 0x6f, 0xb7, 0x58, 0xca, 0x32, 0x79, - 0x50, 0x98, 0x73, 0x5a, 0x78, 0x10, 0xc7, 0x85, 0xb3, 0x41, 0xbc, 0xd7, 0x4b, 0xad, 0xf1, 0x8b, - 0x2e, 0x3c, 0xb0, 0x48, 0xdc, 0xfa, 0x05, 0xd7, 0xdb, 0x54, 0xd2, 0x78, 0xcf, 0x57, 0xfc, 0x29, - 0x50, 0x5d, 0x17, 0x84, 0x73, 0xb7, 0x93, 0x29, 0x5f, 0xaa, 0xcf, 0x82, 0x61, 0xf1, 0xed, 0x42, - 0xc2, 0xac, 0xd9, 0x04, 0x5c, 0xb2, 0x5d, 0x37, 0x9f, 0x6c, 0x17, 0x75, 0x5a, 0x0f, 0xdf, 0x69, - 0x7c, 0xd4, 0xbf, 0x37, 0x16, 0xf5, 0x27, 0xb3, 0x41, 0x9a, 0xf5, 0xa2, 0x10, 0x04, 0xc9, 0xbd, - 0xfc, 0x8b, 0x6d, 0xd3, 0x6c, 0x9b, 0x75, 0x8b, 0x70, 0x01, 0xcf, 0x60, 0xe9, 0x16, 0x4d, 0x9c, - 0x70, 0x3e, 0xd5, 0xf0, 0x4e, 0x56, 0xa4, 0x5e, 0xe9, 0xd4, 0xeb, 0xd0, 0xf7, 0xf7, 0x39, 0x87, - 0x93, 0x2a, 0x53, 0x12, 0x94, 0x99, 0xc5, 0xb9, 0xd6, 0xa9, 0xf0, 0x32, 0x75, 0xfa, 0x88, 0x6c, - 0x2b, 0x48, 0x38, 0xe6, 0x60, 0xfc, 0x26, 0x2d, 0x48, 0xf4, 0x08, 0x2d, 0xd8, 0x11, 0x51, 0x31, - 0x5f, 0xff, 0x31, 0x8d, 0x10, 0xc7, 0xd2, 0xf3, 0xd5, 0xb6, 0x71, 0x7b, 0xae, 0x40, 0x7e, 0xd0, - 0x89, 0x06, 0x8b, 0xb3, 0xe1, 0x32, 0xcd, 0x3e, 0x20, 0x19, 0x9b, 0xd7, 0x37, 0xac, 0x96, 0x0d, - 0x5f, 0xc1, 0xbe, 0xbb, 0xbf, 0x07, 0xa2, 0xe4, 0x6a, 0x12, 0xa6, 0xfe, 0x44, 0x90, 0x18, 0xda, - 0x9f, 0xf1, 0xf7, 0xba, 0x51, 0xeb, 0xd7, 0xdd, 0x66, 0xd3, 0x5a, 0x73, 0xbd, 0xb0, 0xca, 0x68, - 0x1f, 0x3d, 0xa9, 0xe3, 0x33, 0xf4, 0xf8, 0x37, 0x7a, 0xc7, 0x92, 0xf2, 0x2a, 0x34, 0xdf, 0x8e, - 0xbf, 0xf8, 0x4d, 0x47, 0xcd, 0x5f, 0xab, 0x44, 0xfb, 0xb0, 0x07, 0x52, 0x43, 0xaa, 0x8d, 0x0c, - 0x21, 0xd3, 0xe6, 0x57, 0x9a, 0x90, 0xfd, 0x13, 0xd2, 0xe2, 0x4d, 0xd1, 0x01, 0x0f, 0x79, 0xe4, - 0x7b, 0x75, 0xb7, 0xe9, 0x86, 0x37, 0xde, 0xe4, 0x21, 0x3e, 0xb6, 0xba, 0x93, 0x63, 0x8b, 0xcc, - 0x7a, 0xa9, 0x2a, 0x65, 0xce, 0x7a, 0xbf, 0xd7, 0x84, 0x24, 0x9e, 0x03, 0xb3, 0x43, 0x0d, 0xf4, - 0xd2, 0xad, 0x2a, 0x9d, 0xca, 0xc3, 0x47, 0x66, 0xa1, 0x72, 0x9a, 0x85, 0xba, 0x25, 0x16, 0x4a, - 0xe6, 0x47, 0xd1, 0x1a, 0x9c, 0x54, 0x65, 0xf9, 0x12, 0x4f, 0x3e, 0xf9, 0xe8, 0xc1, 0xb3, 0x88, - 0x50, 0x49, 0x94, 0xa5, 0xc5, 0x3b, 0x1a, 0x57, 0x07, 0x1a, 0x11, 0xa1, 0x25, 0xd1, 0x69, 0xed, - 0x67, 0x1a, 0xb5, 0xf1, 0x12, 0xbe, 0xbe, 0xca, 0x00, 0xc2, 0xfc, 0xd2, 0x00, 0x87, 0xad, 0x66, - 0xd3, 0xbd, 0x4d, 0xdf, 0x63, 0x54, 0x7d, 0xa6, 0xf0, 0xce, 0x78, 0x93, 0xe4, 0x72, 0x90, 0xa6, - 0xe6, 0xbc, 0xdb, 0xd0, 0xda, 0x86, 0xa4, 0x00, 0x6b, 0x3f, 0xf5, 0x31, 0xf1, 0x82, 0x9b, 0x02, - 0x82, 0xe9, 0x72, 0x11, 0x0c, 0xc1, 0x96, 0xb5, 0x16, 0xfb, 0x4c, 0x55, 0x4a, 0xfb, 0x64, 0xfc, - 0x17, 0xd9, 0x7b, 0xc4, 0xbb, 0x74, 0x3f, 0xd5, 0x22, 0xfb, 0x8c, 0x38, 0x02, 0xe6, 0x4f, 0xff, - 0xc3, 0x97, 0x9f, 0xde, 0xf2, 0xa5, 0x8b, 0xb1, 0x0e, 0xfa, 0xd0, 0x74, 0xcc, 0x9d, 0xd0, 0xd8, - 0x73, 0xea, 0x7c, 0x27, 0xbf, 0xd1, 0x1b, 0x04, 0xa5, 0x35, 0xc7, 0xa5, 0x23, 0x1d, 0xfd, 0x14, - 0x6a, 0x50, 0x11, 0x94, 0xcc, 0xeb, 0xba, 0x65, 0x2e, 0xc3, 0x18, 0x11, 0xde, 0x0a, 0x51, 0xec, - 0x0a, 0xbb, 0x90, 0x55, 0xcc, 0x37, 0xc7, 0x8c, 0x34, 0x87, 0xcf, 0x1d, 0x11, 0xc1, 0xcb, 0x72, - 0x59, 0x29, 0xa7, 0x58, 0x1a, 0x48, 0x10, 0x9b, 0x60, 0xed, 0x5f, 0xe3, 0xee, 0x15, 0xd0, 0xc7, - 0x79, 0x47, 0x76, 0x65, 0x44, 0x0d, 0xd7, 0x15, 0x19, 0x8e, 0x0f, 0xb6, 0x53, 0x7e, 0x0e, 0xfb, - 0x90, 0xf0, 0x2d, 0xf7, 0xee, 0x8b, 0xde, 0x75, 0x75, 0xa5, 0x5f, 0xed, 0x45, 0x4d, 0xa4, 0x16, - 0xda, 0xe6, 0x78, 0x50, 0xfc, 0xb6, 0x8b, 0x2f, 0xaa, 0xe4, 0x7b, 0x7c, 0x7c, 0x06, 0x54, 0x53, - 0xaa, 0xd8, 0x07, 0x00, 0x78, 0x71, 0x69, 0xf5, 0x9f, 0x57, 0x16, 0xcd, 0xbf, 0x5b, 0x34, 0x07, - 0x0f, 0x55, 0xfb, 0x41, 0xef, 0xca, 0xea, 0x2b, 0xe6, 0xdc, 0x8b, 0x8b, 0x83, 0xda, 0xec, 0xc7, - 0x2f, 0x83, 0xd2, 0xb2, 0x6f, 0x57, 0x7d, 0xf0, 0x70, 0xbc, 0x8c, 0x5f, 0x5a, 0x98, 0x13, 0x23, - 0xd6, 0x2f, 0x15, 0x20, 0x66, 0x1e, 0xfa, 0x7f, 0x1a, 0xa8, 0x65, 0x16, 0xdf, 0x3f, 0x21, 0x6b, - 0x31, 0x8b, 0x4b, 0x7f, 0x76, 0x37, 0x5c, 0x0c, 0xd0, 0x0e, 0x38, 0x92, 0x2c, 0x94, 0x9f, 0x94, - 0x35, 0x99, 0x20, 0xd7, 0x2f, 0x17, 0x22, 0x67, 0xa2, 0x1b, 0x00, 0x70, 0xd5, 0xec, 0xd2, 0xaa, - 0xb0, 0x88, 0x4e, 0x9f, 0x52, 0xa3, 0xe3, 0xa5, 0x70, 0x35, 0xe8, 0x52, 0x29, 0x11, 0x9d, 0x5c, - 0x4a, 0xb2, 0x88, 0x1c, 0x49, 0xe1, 0x2a, 0xc8, 0xa5, 0x52, 0x22, 0x3a, 0xb9, 0x94, 0x64, 0x09, - 0x71, 0xd5, 0x02, 0x95, 0xa8, 0x96, 0xf4, 0x8c, 0x52, 0x7d, 0xae, 0x3e, 0xa9, 0x44, 0xc6, 0x44, - 0xb4, 0xc1, 0x40, 0xac, 0x66, 0x75, 0x5c, 0xbd, 0x6c, 0x54, 0x9f, 0x55, 0xa7, 0x65, 0x12, 0xff, - 0x15, 0x1c, 0x16, 0x6a, 0x29, 0xc7, 0xf2, 0x8d, 0x42, 0xa5, 0x5d, 0x54, 0xa5, 0xe4, 0xbd, 0x3d, - 0x59, 0xbc, 0x39, 0x99, 0x0b, 0x5a, 0x90, 0x7a, 0xb9, 0x10, 0x39, 0x13, 0xfd, 0xf7, 0xa0, 0x87, - 0xd6, 0x1d, 0x1a, 0xf9, 0xf5, 0x8f, 0xfa, 0x78, 0x3e, 0x0d, 0x6b, 0xd9, 0x06, 0xfd, 0x7c, 0x59, - 0xe3, 0x39, 0xc5, 0xea, 0x42, 0x7d, 0x5a, 0x91, 0x90, 0x77, 0xbf, 0xa8, 0x10, 0xef, 0x8c, 0x8a, - 0xef, 0xda, 0x72, 0xf7, 0x4b, 0x94, 0xd0, 0x31, 0xf7, 0x8b, 0xe4, 0x8c, 0x2b, 0x9a, 0x1b, 0x09, - 0x9b, 0x55, 0xa7, 0xe5, 0x95, 0x8a, 0x0a, 0xf6, 0xa4, 0x4a, 0x31, 0x32, 0xb9, 0x52, 0x89, 0x6a, - 0xbb, 0xea, 0x36, 0x18, 0x4c, 0x54, 0xda, 0x4d, 0xe4, 0x4f, 0x30, 0x11, 0xb5, 0xfe, 0x44, 0x11, - 0x6a, 0x7e, 0x64, 0x09, 0xa5, 0x72, 0x63, 0xf2, 0x95, 0x22, 0xa2, 0x94, 0x8f, 0xac, 0xb4, 0x1a, - 0x39, 0x24, 0x4b, 0xa8, 0x8f, 0x1b, 0xcb, 0x9f, 0xa6, 0x09, 0xa5, 0x5c, 0x56, 0x6a, 0x21, 0xd9, - 0x7f, 0x82, 0x6a, 0x4a, 0xd5, 0x98, 0xc2, 0x94, 0xcd, 0xd3, 0xeb, 0x4f, 0x16, 0xa3, 0xe7, 0x87, - 0x1b, 0x5f, 0x37, 0x26, 0x1d, 0x6e, 0x1c, 0xa1, 0x7c, 0xb8, 0xa5, 0x54, 0x93, 0x71, 0x13, 0xa3, - 0x82, 0x49, 0x79, 0x4a, 0xa5, 0x89, 0x51, 0x94, 0xf5, 0x4f, 0xa0, 0x8f, 0xfd, 0x47, 0x4c, 0x8f, - 0xcb, 0xb8, 0x43, 0x2a, 0x7d, 0x42, 0x85, 0x8a, 0xb5, 0xbf, 0x05, 0x1e, 0x12, 0xab, 0xd7, 0xce, - 0xe7, 0xf7, 0x3a, 0x25, 0xd5, 0x67, 0x94, 0x49, 0x79, 0x71, 0x62, 0xa9, 0xd6, 0xf9, 0xfc, 0xce, - 0x56, 0x12, 0x97, 0x5a, 0xec, 0x84, 0xc4, 0x89, 0x95, 0x4e, 0xe7, 0xf3, 0x3b, 0x40, 0x49, 0x5c, - 0x6a, 0x05, 0x14, 0x5a, 0xc5, 0x92, 0xd5, 0x4f, 0x93, 0xf9, 0x56, 0xe2, 0xc8, 0xe5, 0xab, 0x58, - 0x76, 0x25, 0xce, 0xbb, 0x1a, 0x38, 0x9e, 0x51, 0x64, 0x33, 0x9b, 0x6f, 0xb7, 0x38, 0x8f, 0x7e, - 0xb5, 0x38, 0x0f, 0x83, 0xf2, 0x89, 0x06, 0x4e, 0x49, 0xcb, 0x68, 0xae, 0x14, 0x6a, 0x9c, 0xe3, - 0xd4, 0x9f, 0xdf, 0x2d, 0xa7, 0x60, 0xa7, 0x8c, 0x12, 0x19, 0xa9, 0x9d, 0xd2, 0x79, 0xe4, 0x76, - 0x92, 0x57, 0xc0, 0x54, 0x5f, 0x07, 0x43, 0x69, 0xd5, 0x2f, 0xd3, 0x39, 0x3b, 0x8c, 0x38, 0x83, - 0xfe, 0x54, 0x41, 0x06, 0x06, 0xe0, 0x3d, 0x0d, 0x9c, 0xc8, 0x2a, 0x32, 0xb9, 0x94, 0xb3, 0x92, - 0xa6, 0x31, 0xe9, 0xcf, 0xec, 0x82, 0x89, 0xa1, 0xf9, 0x48, 0x03, 0xba, 0xa4, 0x7e, 0xe4, 0xc9, - 0xfc, 0x95, 0x2f, 0x15, 0xd3, 0xb5, 0xdd, 0xf1, 0x49, 0x8c, 0x14, 0xa5, 0x5b, 0x14, 0x30, 0x12, - 0x63, 0x2a, 0x62, 0xa4, 0x44, 0x3e, 0x45, 0xba, 0x91, 0x22, 0x40, 0xc5, 0x8c, 0x14, 0x61, 0xba, - 0xb6, 0x3b, 0x3e, 0x06, 0xeb, 0x03, 0x0d, 0x0c, 0x67, 0x97, 0x75, 0x48, 0xa7, 0xb4, 0x4c, 0x36, - 0xfd, 0xb9, 0x5d, 0xb1, 0x31, 0x4c, 0xdf, 0xd1, 0xc0, 0x49, 0x59, 0x7d, 0x86, 0x74, 0xd8, 0x48, - 0x18, 0xf5, 0xbf, 0xda, 0x25, 0x23, 0x43, 0xf6, 0x86, 0x06, 0x8e, 0xa6, 0x96, 0x5a, 0x5c, 0x54, - 0x77, 0x0d, 0xc2, 0xa1, 0x5f, 0x29, 0xca, 0x21, 0xf8, 0x75, 0x56, 0x11, 0xc5, 0xa5, 0x42, 0xee, - 0x40, 0xa1, 0x3c, 0xb3, 0x0b, 0x26, 0x7e, 0xe5, 0x4c, 0x56, 0x48, 0x28, 0x1c, 0x51, 0x94, 0x57, - 0xce, 0xcc, 0xba, 0x08, 0x74, 0xce, 0x88, 0x6a, 0x22, 0xce, 0xe4, 0xaf, 0xbe, 0x0b, 0x96, 0xab, - 0x4f, 0x2a, 0x91, 0xf1, 0x22, 0xa2, 0xd2, 0x84, 0x33, 0x72, 0x3b, 0x51, 0x32, 0xb9, 0x88, 0x44, - 0x69, 0x02, 0xf6, 0xa9, 0xd4, 0xc2, 0x84, 0x8b, 0xf9, 0x4b, 0xa6, 0xc8, 0xa1, 0x5f, 0x29, 0xca, - 0x91, 0x3c, 0x4f, 0x71, 0x25, 0x09, 0x13, 0x4a, 0xad, 0x51, 0x6a, 0x95, 0xf3, 0x54, 0xb2, 0x36, - 0x01, 0x79, 0x4f, 0xb2, 0x30, 0x61, 0x52, 0xa9, 0xa9, 0x90, 0x5c, 0xee, 0x3d, 0x99, 0x85, 0x09, - 0x55, 0x1f, 0x3c, 0x1c, 0xaf, 0x4a, 0xb8, 0xa0, 0xd4, 0x12, 0x21, 0x96, 0x07, 0x2b, 0x33, 0xaa, - 0x13, 0xa2, 0xf3, 0x7e, 0xae, 0x3f, 0x31, 0x32, 0x95, 0xf3, 0x3e, 0xef, 0x4f, 0xec, 0x5c, 0x10, - 0xa6, 0x77, 0x2b, 0x9c, 0x0b, 0x28, 0xa9, 0xca, 0xb9, 0x20, 0x9e, 0xa9, 0xcf, 0xce, 0x05, 0x4a, - 0xe2, 0x04, 0x52, 0x95, 0x73, 0x41, 0x8a, 0x38, 0x31, 0x79, 0x5d, 0xe1, 0x5c, 0xa0, 0x24, 0x2e, - 0x35, 0x85, 0x1c, 0x9f, 0x4c, 0xb9, 0xf4, 0xf1, 0x73, 0xf9, 0xf6, 0xc1, 0x84, 0x39, 0x27, 0xd3, - 0x94, 0xa4, 0x67, 0x36, 0x00, 0xb9, 0x7c, 0x66, 0x85, 0x01, 0x18, 0x51, 0xab, 0x0c, 0xc0, 0x64, - 0xba, 0x32, 0x77, 0xfa, 0x48, 0xe4, 0x2a, 0xcf, 0x2a, 0x36, 0xc8, 0xcf, 0x40, 0x57, 0x8b, 0xf3, - 0xf0, 0x26, 0x48, 0x24, 0x20, 0x4f, 0xe4, 0xdf, 0x08, 0x44, 0xd4, 0x72, 0x13, 0x64, 0xe6, 0x14, - 0xef, 0x80, 0x23, 0xc9, 0xcc, 0xe1, 0xbc, 0x78, 0x94, 0x48, 0x9e, 0x13, 0xaf, 0xcf, 0xca, 0x08, - 0xc6, 0x73, 0x7f, 0x6a, 0x3a, 0xb0, 0x42, 0xb4, 0x28, 0x86, 0xe0, 0x4a, 0x51, 0x0e, 0x3e, 0x40, - 0x18, 0x4b, 0xf3, 0x1d, 0x57, 0xd1, 0x86, 0x6e, 0x1e, 0x66, 0xd5, 0x69, 0x79, 0x8b, 0x27, 0x33, - 0x77, 0x27, 0x15, 0x15, 0xa0, 0x72, 0x2f, 0x17, 0x22, 0xe7, 0x07, 0x34, 0x9f, 0x90, 0x7b, 0x2e, - 0x7f, 0x4a, 0x50, 0x18, 0xd0, 0x29, 0x09, 0xb8, 0xc8, 0x9b, 0x13, 0xd9, 0xb7, 0x13, 0x2a, 0x61, - 0x97, 0x90, 0x5a, 0xee, 0xcd, 0x99, 0xc9, 0xb5, 0xc8, 0xa5, 0x52, 0x13, 0x61, 0x2f, 0xe6, 0x1f, - 0x78, 0x45, 0x0e, 0xb9, 0x4b, 0xc9, 0xd2, 0x45, 0x91, 0x4b, 0xc5, 0xa4, 0x4b, 0x5d, 0x2a, 0x26, - 0x77, 0x56, 0x9d, 0x96, 0x49, 0x7c, 0x5b, 0x03, 0xc7, 0xd2, 0x73, 0x27, 0x67, 0xd4, 0x5b, 0xa3, - 0x2c, 0xfa, 0xd3, 0x85, 0x59, 0xf8, 0x6e, 0x4f, 0xa4, 0x3b, 0x4e, 0xe4, 0x6f, 0x08, 0x55, 0xbb, - 0x3d, 0x2b, 0x69, 0x91, 0x9c, 0x99, 0x24, 0x19, 0x8b, 0x4f, 0xa9, 0x84, 0xe0, 0x52, 0x18, 0x73, - 0xce, 0x4c, 0xf9, 0x49, 0x87, 0x78, 0x09, 0xe5, 0x12, 0x0e, 0xe5, 0x4b, 0x68, 0x44, 0x98, 0xb3, - 0x84, 0x26, 0xf3, 0x05, 0xb9, 0xe8, 0x55, 0x46, 0x2a, 0xdd, 0x95, 0x22, 0xaa, 0xf0, 0x9c, 0x2a, - 0xd1, 0x2b, 0x79, 0x72, 0x1c, 0x06, 0x27, 0xcd, 0xf3, 0x53, 0x98, 0xbf, 0x77, 0x03, 0x4e, 0x25, - 0x73, 0x0f, 0x0f, 0x9e, 0xf4, 0xb4, 0xbd, 0x99, 0x22, 0x73, 0x10, 0x66, 0x91, 0x0f, 0x1e, 0x79, - 0x26, 0x1d, 0xc2, 0x91, 0x9e, 0x36, 0x37, 0x53, 0xa4, 0x03, 0x14, 0x70, 0x48, 0xf3, 0xd5, 0x30, - 0x8e, 0xf4, 0x64, 0x35, 0xa5, 0xd0, 0x72, 0x01, 0x1c, 0xd2, 0x8c, 0x33, 0x34, 0x99, 0x24, 0xfe, - 0x9f, 0xe6, 0xbc, 0xff, 0x43, 0x5a, 0xa0, 0x96, 0x4f, 0x26, 0x59, 0xff, 0xd3, 0x32, 0x8e, 0x30, - 0x64, 0xa5, 0xb9, 0x29, 0xe4, 0x68, 0x24, 0x98, 0xe4, 0x11, 0x86, 0xbc, 0x3c, 0xb6, 0xd7, 0xc1, - 0x50, 0x5a, 0x7e, 0xda, 0x74, 0x7e, 0x9b, 0x02, 0x83, 0x3c, 0xda, 0x2a, 0x4b, 0x3e, 0xdb, 0x06, - 0x83, 0x89, 0x34, 0xb2, 0x89, 0x22, 0xbd, 0x2a, 0xef, 0x86, 0xac, 0x04, 0xb1, 0x28, 0x9b, 0x03, - 0xa7, 0xf6, 0x28, 0x64, 0x73, 0x20, 0x3a, 0x95, 0x6c, 0x0e, 0x21, 0xc3, 0x8b, 0x5d, 0xfd, 0x09, - 0xe9, 0x5c, 0x0a, 0x57, 0x7f, 0x3c, 0xbd, 0xca, 0xd5, 0x5f, 0x5a, 0x7e, 0x17, 0xda, 0x29, 0xc4, - 0x92, 0xbb, 0xc6, 0xd5, 0x5a, 0x42, 0xb4, 0xfa, 0xac, 0x3a, 0x6d, 0xf2, 0xc0, 0x1a, 0xa6, 0x7b, - 0x9d, 0x57, 0x6b, 0x64, 0xde, 0x71, 0x55, 0x0e, 0xac, 0xb1, 0x24, 0xb0, 0xe8, 0x60, 0xc7, 0x65, - 0x80, 0x4d, 0xa8, 0x35, 0x43, 0x03, 0x0d, 0x4f, 0x14, 0xa1, 0x4e, 0xa6, 0xcf, 0xe4, 0x3b, 0x4f, - 0x44, 0xa7, 0x92, 0x3e, 0x23, 0x38, 0xcf, 0x07, 0x1a, 0x18, 0xce, 0xfe, 0x5b, 0x0d, 0x97, 0x8b, - 0x4c, 0xc1, 0x8c, 0x4d, 0x1e, 0x3e, 0xce, 0xfd, 0xab, 0x09, 0xf8, 0x48, 0x9b, 0xf1, 0x27, 0x13, - 0xf2, 0x0e, 0x2b, 0x69, 0x68, 0xae, 0x16, 0xe7, 0x09, 0xa1, 0xcc, 0x2f, 0x7c, 0x7e, 0x77, 0x44, - 0xfb, 0xe2, 0xee, 0x88, 0xf6, 0xd5, 0xdd, 0x11, 0xed, 0x5b, 0xf7, 0x46, 0x0e, 0x7d, 0x71, 0x6f, - 0xe4, 0xd0, 0x6f, 0xef, 0x8d, 0x1c, 0xfa, 0x87, 0x71, 0xae, 0xb4, 0x3a, 0xfc, 0x6b, 0x3e, 0xe1, - 0xbf, 0x77, 0xd8, 0x2f, 0x5c, 0x62, 0xbd, 0xd6, 0x83, 0xff, 0xba, 0xcf, 0xa5, 0x3f, 0x05, 0x00, - 0x00, 0xff, 0xff, 0x50, 0x2d, 0x64, 0x96, 0x7b, 0x69, 0x00, 0x00, +func init() { proto.RegisterFile("gitopia/gitopia/tx.proto", fileDescriptor_b3051f5aac033d39) } + +var fileDescriptor_b3051f5aac033d39 = []byte{ + // 4495 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5d, 0xdd, 0x6f, 0x1d, 0xc7, + 0x75, 0xd7, 0xf2, 0x5e, 0x7e, 0xdc, 0xa1, 0x4c, 0xd3, 0x57, 0xb2, 0x74, 0xb9, 0x92, 0x28, 0x6a, + 0x6d, 0x49, 0x14, 0xc5, 0x0f, 0x91, 0xb2, 0x6c, 0x59, 0xb6, 0x55, 0x93, 0x22, 0x6d, 0xb3, 0x15, + 0x2d, 0x75, 0x49, 0xd5, 0x75, 0x51, 0xb4, 0x5d, 0xde, 0x3b, 0x5c, 0x6e, 0x79, 0x79, 0xf7, 0x76, + 0x77, 0x2f, 0x25, 0xb6, 0x05, 0xdc, 0xfa, 0x03, 0x76, 0x6b, 0xb8, 0x8d, 0x1d, 0x21, 0x09, 0x1c, + 0x38, 0x09, 0xf2, 0xe6, 0x00, 0x79, 0x49, 0xf2, 0x14, 0xe4, 0x0f, 0xf0, 0x53, 0xe0, 0x20, 0x08, + 0x90, 0xa7, 0xd8, 0x90, 0x1e, 0xf3, 0x90, 0xa7, 0xbc, 0x07, 0xf3, 0xb1, 0xb3, 0x33, 0xfb, 0x31, + 0x3b, 0x4b, 0x53, 0xa4, 0x62, 0xe4, 0x89, 0xdc, 0xdd, 0x73, 0xe6, 0xfc, 0xce, 0x99, 0x33, 0x5f, + 0x67, 0xce, 0x21, 0x41, 0xcd, 0x76, 0x02, 0xb7, 0xed, 0x58, 0x53, 0xe1, 0xcf, 0xe0, 0xce, 0x64, + 0xdb, 0x73, 0x03, 0xb7, 0x7a, 0x94, 0xbe, 0x99, 0x8c, 0xfd, 0xd4, 0x0f, 0xdb, 0xae, 0xed, 0x62, + 0x9a, 0x29, 0xf4, 0x1b, 0x21, 0xd7, 0xf5, 0x44, 0x43, 0x96, 0xbf, 0x41, 0xbf, 0x1d, 0x8f, 0x7f, + 0x5b, 0xf5, 0xac, 0x56, 0x7d, 0x9d, 0x7e, 0x1d, 0x4a, 0x72, 0xda, 0x59, 0x8c, 0x9b, 0x70, 0x73, + 0x15, 0x7a, 0x99, 0xcd, 0xba, 0x9d, 0x56, 0xb0, 0x4d, 0xbf, 0x9e, 0x88, 0x7f, 0xf5, 0x60, 0x13, + 0x5a, 0x3e, 0xa4, 0x9f, 0x4f, 0xc5, 0x3f, 0xb7, 0x3b, 0xcd, 0xa6, 0x09, 0xff, 0xad, 0x03, 0xfd, + 0x20, 0x0b, 0x58, 0xc3, 0x72, 0xb3, 0x1a, 0xaf, 0xbb, 0x9b, 0x9b, 0xb0, 0x15, 0x72, 0x1e, 0x8b, + 0x7f, 0x76, 0x7c, 0xbf, 0x13, 0x4a, 0x1e, 0x49, 0x02, 0x6b, 0xbb, 0xbe, 0x13, 0xb8, 0xde, 0x76, + 0x16, 0xfb, 0xed, 0x75, 0xd7, 0xf1, 0xe9, 0xc7, 0xe1, 0xba, 0xeb, 0x6f, 0xba, 0xfe, 0xd4, 0xaa, + 0xe5, 0xc3, 0xa9, 0xad, 0xe9, 0x55, 0x18, 0x58, 0xd3, 0x53, 0x75, 0xd7, 0x69, 0x65, 0x35, 0x6f, + 0x05, 0x81, 0x55, 0x5f, 0xe7, 0xd0, 0x0d, 0x27, 0x01, 0x58, 0xf5, 0xc0, 0x71, 0x69, 0x0b, 0xc6, + 0x77, 0x35, 0xd0, 0xbf, 0xe4, 0xdb, 0x0b, 0x77, 0xa0, 0x57, 0x77, 0x7c, 0x58, 0xad, 0x81, 0xde, + 0xba, 0x07, 0xad, 0xc0, 0xf5, 0x6a, 0xda, 0x88, 0x36, 0x5a, 0x31, 0xc3, 0xc7, 0xea, 0x2a, 0xe8, + 0xb1, 0x36, 0x91, 0xd1, 0x6b, 0x5d, 0x23, 0xda, 0x68, 0xff, 0xcc, 0xd0, 0x24, 0x01, 0x37, 0x89, + 0xc0, 0x4d, 0x52, 0x70, 0x93, 0xd7, 0x5c, 0xa7, 0x35, 0x37, 0xf5, 0xd9, 0xef, 0x4e, 0x1e, 0x78, + 0xf3, 0x8b, 0x93, 0x67, 0x6d, 0x27, 0x58, 0xef, 0xac, 0x4e, 0xd6, 0xdd, 0xcd, 0x29, 0xaa, 0x09, + 0xf9, 0x31, 0xe1, 0x37, 0x36, 0xa6, 0x82, 0xed, 0x36, 0xf4, 0x31, 0x83, 0x49, 0x5b, 0xae, 0x0e, + 0x80, 0xae, 0xc0, 0xad, 0x95, 0xb0, 0xe0, 0xae, 0xc0, 0x35, 0x1e, 0x07, 0x87, 0x38, 0x70, 0x26, + 0xf4, 0xdb, 0x6e, 0xcb, 0x87, 0xc6, 0xf7, 0x35, 0x50, 0x5d, 0xf2, 0xed, 0x15, 0xd7, 0xb6, 0x9b, + 0xf0, 0x25, 0xd7, 0xab, 0xc3, 0x9b, 0x1d, 0x7f, 0x5d, 0x82, 0xfd, 0x06, 0x38, 0x18, 0x19, 0x7e, + 0xb1, 0x41, 0x35, 0x38, 0x3d, 0x99, 0xe1, 0xf6, 0x93, 0x26, 0x47, 0x3c, 0x57, 0x46, 0xda, 0x98, + 0x42, 0x03, 0xd5, 0x61, 0x00, 0x88, 0x5f, 0xbf, 0x6a, 0x6d, 0x42, 0x0a, 0x98, 0x7b, 0x63, 0x1c, + 0x07, 0x7a, 0x12, 0x20, 0xc3, 0xff, 0x73, 0x0d, 0x1c, 0x5b, 0xf2, 0x6d, 0x13, 0x6e, 0xb9, 0x1b, + 0xf0, 0xa6, 0xe7, 0x6e, 0x39, 0x0d, 0xe8, 0xdd, 0x84, 0xde, 0xa6, 0xe3, 0xfb, 0x8e, 0xdb, 0x92, + 0x28, 0x52, 0x03, 0xbd, 0xb6, 0x67, 0xb5, 0x02, 0xe8, 0x61, 0x1d, 0x2a, 0x66, 0xf8, 0x58, 0xd5, + 0x41, 0x5f, 0x9b, 0xb6, 0x44, 0xf1, 0xb0, 0xe7, 0xea, 0xdf, 0x00, 0xd0, 0x66, 0xad, 0xd7, 0xca, + 0x23, 0xda, 0xe8, 0xc0, 0xcc, 0xf9, 0x4c, 0xe5, 0x93, 0x80, 0x4c, 0x8e, 0xdd, 0x38, 0x0d, 0x9e, + 0x90, 0x60, 0x67, 0x3a, 0xfe, 0x54, 0x03, 0x87, 0x97, 0x7c, 0x7b, 0xb6, 0x13, 0xac, 0xbb, 0x9e, + 0xf3, 0xef, 0x8c, 0xf4, 0xe1, 0x56, 0x6e, 0x18, 0x1c, 0x4f, 0x03, 0xcd, 0xb4, 0x7a, 0x5b, 0x03, + 0x8f, 0x2c, 0xf9, 0xf6, 0x35, 0x84, 0x18, 0xae, 0x58, 0xfe, 0x86, 0x44, 0x9d, 0x17, 0x40, 0x1f, + 0x9a, 0x17, 0x57, 0xb6, 0xdb, 0x10, 0xeb, 0x33, 0x30, 0x73, 0x2a, 0x13, 0xd6, 0x0a, 0x25, 0x34, + 0x19, 0x8b, 0x4c, 0x67, 0xe3, 0x2c, 0x78, 0x5c, 0x40, 0x11, 0xe2, 0x43, 0x03, 0xc8, 0x69, 0x60, + 0x20, 0x65, 0xb3, 0xcb, 0x69, 0x18, 0x1f, 0x10, 0xbc, 0xb7, 0xda, 0x8d, 0x7c, 0xbc, 0x84, 0xb7, + 0x2b, 0xe4, 0xad, 0x5e, 0x06, 0xdd, 0x7e, 0x60, 0x05, 0xc4, 0xbd, 0x07, 0x66, 0x0c, 0x29, 0xf8, + 0x65, 0x44, 0x69, 0x12, 0x06, 0x24, 0x63, 0x13, 0xfa, 0xbe, 0x65, 0x43, 0xdc, 0x1f, 0x15, 0x33, + 0x7c, 0x34, 0x8e, 0x62, 0xe0, 0x11, 0x1c, 0x66, 0xd8, 0x67, 0x31, 0xce, 0x79, 0xd8, 0x84, 0x45, + 0x71, 0x1a, 0xf7, 0x34, 0xdc, 0x69, 0xa4, 0xd1, 0x68, 0xe4, 0xce, 0x59, 0xf5, 0x8d, 0x4e, 0xdb, + 0x84, 0x6b, 0x7b, 0x39, 0x2f, 0x2c, 0x20, 0x9b, 0xb9, 0x5e, 0x68, 0xb3, 0x29, 0x85, 0x96, 0x08, + 0xce, 0xc9, 0x65, 0xc4, 0x66, 0x12, 0xee, 0xea, 0x20, 0x28, 0x79, 0x70, 0x8d, 0x1a, 0x0f, 0xfd, + 0x6a, 0x9c, 0x01, 0x4f, 0xca, 0x74, 0x64, 0x76, 0xfc, 0x42, 0x03, 0x43, 0xc8, 0x83, 0x1b, 0x8d, + 0xaf, 0xab, 0x25, 0x9e, 0x00, 0xa7, 0x32, 0x15, 0x64, 0x66, 0x20, 0x7e, 0x16, 0xb9, 0x13, 0xfb, + 0x60, 0x80, 0x11, 0xf6, 0x01, 0x09, 0xb2, 0xec, 0xe4, 0x20, 0xff, 0xa3, 0x06, 0x0e, 0x2e, 0xf9, + 0xf6, 0x32, 0x0c, 0xe6, 0xf0, 0x8c, 0xbe, 0x97, 0x66, 0xfb, 0x6b, 0xd0, 0x43, 0x96, 0x11, 0x6c, + 0xb7, 0xfe, 0x99, 0xf1, 0xcc, 0xa6, 0x78, 0x84, 0x93, 0xe4, 0x07, 0x6d, 0x91, 0xb6, 0xa0, 0x4f, + 0x82, 0x1e, 0xaa, 0x40, 0x15, 0x94, 0x5b, 0x68, 0xa1, 0x22, 0xe8, 0xf1, 0xef, 0xc8, 0xb2, 0xfe, + 0xba, 0x45, 0x67, 0x5a, 0xf4, 0xab, 0x71, 0x04, 0xcf, 0xd8, 0xac, 0x51, 0x66, 0x8f, 0xef, 0x68, + 0x78, 0x19, 0x5e, 0x86, 0xc1, 0x3c, 0x5c, 0xb3, 0x3a, 0xcd, 0x7d, 0x30, 0xcb, 0x11, 0xc1, 0x2c, + 0x95, 0x50, 0x45, 0xe3, 0x04, 0x5e, 0x48, 0xe3, 0xc8, 0x18, 0xf2, 0xb7, 0xba, 0xc0, 0x63, 0x4b, + 0xbe, 0xbd, 0xd4, 0x69, 0x06, 0xce, 0xbe, 0x74, 0xe7, 0x32, 0xe8, 0x23, 0x48, 0xa1, 0x5f, 0x2b, + 0x8d, 0x94, 0x46, 0xfb, 0x67, 0xa6, 0x65, 0x1d, 0x2a, 0x02, 0x15, 0x7b, 0x95, 0x35, 0x54, 0xb8, + 0x5f, 0x8f, 0xe1, 0x29, 0x41, 0x6c, 0x9b, 0x99, 0xe8, 0xae, 0x06, 0x1e, 0x65, 0x23, 0xe2, 0xe1, + 0xe9, 0xd8, 0x21, 0x70, 0x34, 0x86, 0x8a, 0x21, 0xfe, 0x84, 0xec, 0x2c, 0xb0, 0x3e, 0xfb, 0x05, + 0x5b, 0x8f, 0xf5, 0x6b, 0x25, 0xea, 0x1e, 0xba, 0x87, 0x48, 0xc0, 0x63, 0xf8, 0xef, 0x6b, 0xa0, + 0x42, 0x9c, 0x76, 0xc5, 0xb2, 0xf7, 0x12, 0xf4, 0x55, 0x50, 0x0a, 0x2c, 0x9b, 0x4e, 0x2c, 0x67, + 0x72, 0x26, 0x96, 0x15, 0xcb, 0x9e, 0x5c, 0xb1, 0x6c, 0xda, 0x10, 0x62, 0xd4, 0xcf, 0x83, 0x12, + 0x42, 0xac, 0xe6, 0x74, 0x87, 0xf0, 0xc8, 0x23, 0x0d, 0x31, 0xd5, 0xff, 0xa0, 0x81, 0x01, 0xce, + 0x15, 0xf7, 0x58, 0xff, 0x05, 0x50, 0x0e, 0x2c, 0x3b, 0x1c, 0x88, 0xe7, 0x55, 0x06, 0xa2, 0x68, + 0x05, 0xcc, 0x5e, 0xcc, 0x0c, 0x35, 0x70, 0x44, 0x6c, 0x8e, 0xd9, 0xe2, 0x7d, 0xb2, 0xca, 0x84, + 0x6b, 0xd4, 0x9e, 0x5a, 0x62, 0x30, 0xf2, 0x84, 0x0a, 0xee, 0x5b, 0x3a, 0xf7, 0x33, 0x30, 0x0c, + 0xe5, 0x47, 0x5a, 0x34, 0x83, 0xee, 0x0b, 0xd4, 0x2a, 0xd7, 0x69, 0x15, 0xd2, 0x03, 0xfc, 0x84, + 0x96, 0x44, 0xfc, 0xff, 0xc4, 0xae, 0xb3, 0x8d, 0xc6, 0x12, 0x0e, 0x20, 0x48, 0xc0, 0x1e, 0x06, + 0xdd, 0x0d, 0xcb, 0xa5, 0x28, 0x2b, 0x26, 0x79, 0x40, 0x53, 0x52, 0xc7, 0x87, 0xde, 0x62, 0x23, + 0x9c, 0x92, 0xc8, 0x53, 0xf5, 0x19, 0x50, 0xf6, 0xdc, 0x26, 0xa4, 0x47, 0x8c, 0x27, 0xb2, 0xdd, + 0x07, 0x8b, 0x35, 0xdd, 0x26, 0x34, 0x31, 0x03, 0xb5, 0x2d, 0x03, 0xc4, 0x90, 0x7e, 0x8b, 0xac, + 0xab, 0x64, 0x53, 0x17, 0x71, 0xed, 0x3f, 0x60, 0xb2, 0xaa, 0xc6, 0x71, 0x31, 0xdc, 0xaf, 0xe3, + 0x15, 0xc3, 0x84, 0x9b, 0xee, 0x16, 0xdc, 0x5d, 0x1b, 0xd3, 0x69, 0x9f, 0x6f, 0x9a, 0x49, 0xfd, + 0xb4, 0x0b, 0x8b, 0x25, 0x87, 0x9e, 0x39, 0x1c, 0xfd, 0x91, 0x88, 0xad, 0x73, 0xd1, 0x8a, 0x92, + 0x3c, 0x5a, 0x71, 0x01, 0x79, 0xdd, 0x8f, 0xbe, 0x38, 0x39, 0xaa, 0x18, 0xad, 0xf0, 0x59, 0xb8, + 0xe2, 0x08, 0xe8, 0x81, 0x77, 0xda, 0x8e, 0xb7, 0x8d, 0xb5, 0x28, 0x99, 0xf4, 0xa9, 0x6a, 0xc4, + 0x06, 0x41, 0x19, 0x9f, 0x55, 0x44, 0xbf, 0x3e, 0x0e, 0x2a, 0x6d, 0xcb, 0x83, 0xad, 0x60, 0xd1, + 0x69, 0xd4, 0xba, 0x31, 0x41, 0xf4, 0xa2, 0xfa, 0x02, 0xe8, 0x21, 0x0f, 0xb5, 0x1e, 0xdc, 0x79, + 0xd9, 0x03, 0x88, 0x58, 0xe2, 0x26, 0x26, 0x36, 0x29, 0x93, 0x71, 0x0e, 0x9b, 0x91, 0x37, 0x55, + 0xe6, 0x09, 0xf1, 0x75, 0xee, 0x44, 0x46, 0x48, 0x17, 0x88, 0x12, 0xea, 0x07, 0xc5, 0x0c, 0x33, + 0x18, 0x27, 0xc1, 0x89, 0xd4, 0xa6, 0x59, 0x97, 0x5e, 0xc1, 0xab, 0xc1, 0xb5, 0xa6, 0xeb, 0xe7, + 0x77, 0x68, 0xfc, 0xd4, 0x47, 0x26, 0x56, 0x8e, 0x97, 0xb5, 0xfa, 0x1c, 0xbf, 0xa1, 0x29, 0xda, + 0xac, 0xb0, 0xef, 0x10, 0xdb, 0xfd, 0x75, 0x17, 0x18, 0x64, 0x56, 0x35, 0x49, 0x80, 0x71, 0x2f, + 0x67, 0xc2, 0x1a, 0xe8, 0x0d, 0x2c, 0x9b, 0x0b, 0x38, 0x85, 0x8f, 0xa8, 0x03, 0x02, 0xcb, 0xb3, + 0x61, 0x40, 0xcf, 0x49, 0xf4, 0x89, 0x2d, 0x51, 0xdd, 0xdc, 0x12, 0x35, 0x02, 0xfa, 0x1b, 0xd0, + 0xaf, 0x7b, 0x4e, 0x3b, 0x70, 0xdc, 0x16, 0x76, 0xaf, 0x8a, 0xc9, 0xbf, 0x42, 0x14, 0x51, 0x18, + 0xd1, 0xaf, 0xf5, 0x12, 0x0a, 0xee, 0x15, 0x1e, 0xd3, 0x9e, 0xb5, 0x16, 0xd4, 0xfa, 0x46, 0xb4, + 0xd1, 0x3e, 0x93, 0x3c, 0x54, 0x87, 0x01, 0x68, 0x7b, 0xa1, 0x61, 0x6a, 0x15, 0xfc, 0x89, 0x7b, + 0x83, 0xb8, 0x1c, 0x7f, 0xc5, 0xb2, 0x6b, 0x80, 0x70, 0xe1, 0x07, 0x63, 0x0c, 0xd4, 0xe2, 0x46, + 0xcd, 0xf4, 0xd5, 0x8f, 0x48, 0x0f, 0x84, 0xa7, 0xe0, 0xbc, 0x1e, 0x88, 0xfb, 0xe9, 0xd7, 0xd3, + 0x80, 0x3a, 0x36, 0xa0, 0x60, 0x13, 0xe6, 0xb2, 0xcf, 0x63, 0x7b, 0x11, 0x6f, 0x2e, 0x6c, 0x2f, + 0xda, 0xb2, 0xc0, 0xcd, 0x5a, 0xfe, 0xbc, 0x84, 0x17, 0x35, 0xd2, 0x6f, 0x37, 0xa3, 0x70, 0xba, + 0x7c, 0x25, 0x08, 0x9c, 0xa0, 0x09, 0xc3, 0x95, 0x00, 0x3f, 0xc4, 0xcd, 0x59, 0x4a, 0x9a, 0x73, + 0x18, 0x80, 0x75, 0x68, 0x35, 0xc8, 0x2e, 0x9a, 0x76, 0x10, 0xf7, 0xa6, 0xfa, 0x1a, 0x18, 0x44, + 0x4f, 0xfc, 0xf8, 0xc1, 0x1d, 0x56, 0x70, 0xb0, 0x25, 0x1a, 0xc1, 0x41, 0x5e, 0xcb, 0xa7, 0xdb, + 0x77, 0xda, 0xd1, 0xdc, 0x1b, 0x24, 0x78, 0x15, 0xdb, 0x84, 0x13, 0xdc, 0xbb, 0x03, 0xc1, 0xf1, + 0x46, 0xd0, 0xda, 0xe0, 0xc1, 0x2d, 0x07, 0xde, 0x86, 0x9e, 0x5f, 0xeb, 0xc3, 0x1b, 0x9f, 0xe8, + 0x05, 0xfa, 0x6a, 0xf9, 0xbe, 0x63, 0xb7, 0x20, 0xf4, 0x6b, 0x15, 0xf2, 0x95, 0xbd, 0x40, 0x27, + 0x93, 0xa6, 0xb5, 0x0a, 0x9b, 0x8b, 0x0d, 0xbf, 0x06, 0x46, 0x4a, 0xa3, 0x65, 0x93, 0x3d, 0x23, + 0x4e, 0x7c, 0x39, 0xb1, 0xe8, 0x34, 0xfc, 0x5a, 0x3f, 0xfe, 0x18, 0xbd, 0x30, 0x5e, 0xc4, 0xe7, + 0x96, 0x44, 0x8f, 0x66, 0x8d, 0x46, 0xb4, 0x89, 0x74, 0x98, 0xbf, 0xa0, 0x5f, 0x8d, 0xff, 0x26, + 0xc1, 0x27, 0xe2, 0x8b, 0x5c, 0x13, 0x2b, 0xb8, 0xa7, 0xb3, 0x3d, 0xc3, 0x48, 0x99, 0x2a, 0xcb, + 0xc9, 0x2d, 0x2b, 0x92, 0x56, 0x62, 0xd2, 0x22, 0x7f, 0x2a, 0x73, 0xfe, 0x44, 0xc3, 0x43, 0xe9, + 0x10, 0x98, 0xf7, 0x7e, 0x53, 0x03, 0x27, 0xd3, 0xa8, 0xe6, 0x39, 0xb7, 0xdb, 0x6d, 0xb8, 0x31, + 0x47, 0x2f, 0x27, 0x1c, 0xdd, 0x38, 0x07, 0xce, 0xe6, 0x80, 0x62, 0x0a, 0xbc, 0x4b, 0x2c, 0xbd, + 0xd8, 0xda, 0x72, 0x37, 0xe0, 0x12, 0xf4, 0x6c, 0xc5, 0x31, 0xb8, 0x33, 0xe8, 0x7c, 0x28, 0xba, + 0x1c, 0x0b, 0x45, 0x13, 0x7b, 0xa7, 0x03, 0x61, 0x70, 0xbf, 0xd4, 0xf0, 0x6a, 0xbd, 0x0c, 0x03, + 0xee, 0xeb, 0x72, 0x18, 0x2b, 0xde, 0x6d, 0xaf, 0x20, 0x51, 0x6b, 0xea, 0x15, 0x24, 0x22, 0x7d, + 0x06, 0x0c, 0x6c, 0x22, 0x70, 0xd7, 0xdc, 0xcd, 0x4d, 0x27, 0x58, 0x5e, 0xb7, 0xe8, 0x94, 0x1e, + 0x7b, 0x8b, 0x3a, 0x89, 0xde, 0xee, 0xcd, 0xb9, 0x8d, 0xed, 0x70, 0x72, 0xe7, 0x5e, 0x91, 0xa5, + 0xc2, 0xdf, 0xa0, 0x43, 0xbd, 0x6c, 0xd2, 0x27, 0xe3, 0x69, 0x30, 0x9c, 0xae, 0x21, 0x1b, 0x3f, + 0x0c, 0x99, 0xc6, 0x21, 0x33, 0xfe, 0x57, 0xc3, 0x57, 0x45, 0xb3, 0x8d, 0x86, 0x60, 0xb8, 0x70, + 0xb0, 0xef, 0xb6, 0x79, 0x84, 0xa9, 0xa5, 0x1c, 0x9b, 0x5a, 0x8c, 0x27, 0x81, 0x91, 0x8d, 0x85, + 0xf5, 0xe6, 0x07, 0x1a, 0xde, 0xd8, 0x91, 0x5d, 0xfa, 0x43, 0x80, 0xfa, 0x2c, 0x38, 0x2d, 0x85, + 0xc3, 0x80, 0xa7, 0xda, 0x7a, 0x96, 0x4d, 0x9d, 0x0f, 0x00, 0x75, 0x34, 0x51, 0x97, 0x63, 0x13, + 0x75, 0xaa, 0xad, 0x19, 0x96, 0x5c, 0x5b, 0xef, 0x17, 0xea, 0x0c, 0x5b, 0x27, 0x81, 0xff, 0x80, + 0xdc, 0xca, 0x5c, 0x77, 0x5a, 0x1b, 0x1c, 0xdd, 0x22, 0x5a, 0x6d, 0xe6, 0xb6, 0x17, 0xc9, 0x6e, + 0xec, 0x2b, 0xe0, 0x3e, 0x03, 0x06, 0xb8, 0x4b, 0xfc, 0x45, 0xa6, 0x42, 0xec, 0x2d, 0x9a, 0xba, + 0xc2, 0x15, 0x8e, 0x1e, 0xc3, 0xd8, 0x33, 0xbd, 0x53, 0xc9, 0x44, 0xc8, 0x54, 0xf9, 0xa1, 0x86, + 0xc7, 0xf6, 0xad, 0x56, 0xf3, 0x21, 0x56, 0x66, 0x14, 0x9c, 0x91, 0x63, 0x64, 0xea, 0xbc, 0xa3, + 0xe1, 0x33, 0x8e, 0xe8, 0x79, 0xd7, 0xd1, 0x1e, 0xc1, 0x7f, 0x10, 0x2b, 0x07, 0xdb, 0x8d, 0x94, + 0xc5, 0xdd, 0x88, 0x71, 0x0a, 0xaf, 0xc1, 0x69, 0x30, 0x18, 0xd4, 0xf7, 0xc8, 0x80, 0x4d, 0xb8, + 0xdb, 0x3e, 0xa0, 0x25, 0xc3, 0x35, 0x03, 0x09, 0x03, 0xbc, 0xc6, 0x85, 0xd1, 0x1e, 0xe0, 0x8a, + 0x4c, 0x63, 0xcc, 0x09, 0x39, 0x0c, 0xc7, 0x4f, 0x48, 0x10, 0x8c, 0x6c, 0xe6, 0xe6, 0x2d, 0x57, + 0x02, 0x20, 0x3c, 0xe3, 0x74, 0x65, 0x9f, 0x71, 0x52, 0x36, 0xe5, 0x68, 0x96, 0xd8, 0xb2, 0x02, + 0xcb, 0xbb, 0xe5, 0x35, 0xe9, 0x52, 0x1b, 0xbd, 0xc0, 0x86, 0x74, 0xeb, 0x16, 0x66, 0x26, 0x0b, + 0x2d, 0x7b, 0x46, 0x48, 0x6e, 0xc3, 0x55, 0xdf, 0x09, 0x20, 0x5d, 0x5e, 0xc3, 0x47, 0xe3, 0x0c, + 0x77, 0xa4, 0x98, 0xb7, 0xdc, 0x94, 0x8d, 0x67, 0x05, 0x9f, 0x4b, 0xae, 0x63, 0xdd, 0x4c, 0x88, + 0xa0, 0xca, 0x75, 0x8b, 0x4e, 0x34, 0x98, 0x93, 0xe9, 0x5a, 0x8a, 0x74, 0xa5, 0xd1, 0x39, 0xd6, + 0x1a, 0x33, 0x21, 0xc4, 0xa3, 0x84, 0xec, 0xc6, 0xe6, 0x2d, 0x57, 0x6d, 0x6b, 0x18, 0x17, 0x98, + 0x6b, 0x48, 0x3a, 0x0a, 0xd2, 0xc4, 0x30, 0x24, 0x7f, 0xcb, 0x85, 0x09, 0xe7, 0x2d, 0xf7, 0x35, + 0x62, 0xae, 0x02, 0x28, 0x06, 0x41, 0xa9, 0xe3, 0x35, 0xc3, 0x70, 0x6f, 0xc7, 0x6b, 0x0a, 0x11, + 0xbe, 0xa8, 0x49, 0x26, 0xf1, 0x1f, 0xb1, 0x4d, 0xd8, 0xe7, 0xeb, 0x5c, 0xdf, 0x29, 0x8a, 0xe4, + 0x3d, 0xa0, 0x24, 0x7a, 0x00, 0x75, 0xde, 0x44, 0xeb, 0x4c, 0xfa, 0x4d, 0x9c, 0xdd, 0xc3, 0xbe, + 0xcf, 0x62, 0xb7, 0xfa, 0x4a, 0xea, 0x92, 0x74, 0x9c, 0x58, 0x8b, 0x4c, 0xde, 0x65, 0x2e, 0x10, + 0x5f, 0xc8, 0x9f, 0x84, 0xa8, 0x39, 0xef, 0x3b, 0xbf, 0xe1, 0x43, 0x45, 0xd7, 0xc8, 0xee, 0xf1, + 0x2b, 0xce, 0x01, 0x42, 0xbc, 0xb0, 0x14, 0x8f, 0x17, 0x5e, 0x65, 0xf1, 0x42, 0x12, 0xec, 0xcd, + 0xbe, 0xdd, 0xa1, 0x68, 0xc4, 0x80, 0x21, 0x1a, 0x18, 0xab, 0x68, 0xc3, 0x4b, 0x03, 0x1d, 0xe8, + 0xf7, 0xea, 0x82, 0x18, 0xc6, 0xe8, 0xc1, 0x71, 0xd4, 0xec, 0x28, 0xf2, 0x2c, 0xa3, 0x15, 0x63, + 0x1d, 0x3a, 0xe8, 0x6b, 0x38, 0x6b, 0x6b, 0xaf, 0x74, 0x5a, 0x1b, 0x34, 0x14, 0xc2, 0x9e, 0x91, + 0xd8, 0xb6, 0x15, 0xac, 0xe3, 0x30, 0x48, 0xc5, 0xc4, 0xbf, 0xe3, 0xc3, 0x06, 0x52, 0x1b, 0x79, + 0x4e, 0x85, 0x2c, 0x72, 0xe1, 0xb3, 0x10, 0x2c, 0xa2, 0x8a, 0x64, 0x06, 0x8b, 0x3e, 0xe5, 0x83, + 0x45, 0x7f, 0x0e, 0x7d, 0x30, 0x0c, 0x00, 0x3d, 0x68, 0x44, 0x21, 0x61, 0xee, 0x0d, 0xeb, 0xa3, + 0x9e, 0xec, 0x3e, 0xea, 0xdd, 0x59, 0x1f, 0x09, 0x31, 0xa4, 0x98, 0x5d, 0x8d, 0x5f, 0x6a, 0x5c, + 0x10, 0xe9, 0x6b, 0x60, 0x47, 0x21, 0xac, 0x15, 0x57, 0xf6, 0xe3, 0x12, 0x09, 0x49, 0x63, 0x0f, + 0xc3, 0x7b, 0xa7, 0xbd, 0x8c, 0xf0, 0xb2, 0x88, 0x46, 0x49, 0x12, 0x21, 0x4b, 0x06, 0x0e, 0x84, + 0x7d, 0x4b, 0x77, 0x2c, 0xe6, 0x73, 0x04, 0xf4, 0xdc, 0x86, 0x8e, 0xbd, 0x4e, 0x6e, 0x12, 0xca, + 0x26, 0x7d, 0x12, 0xb7, 0xf9, 0xbd, 0xf1, 0x28, 0x92, 0x0b, 0x0e, 0x92, 0x04, 0xdb, 0x59, 0x72, + 0x89, 0xd2, 0xb7, 0xfb, 0x97, 0x28, 0x82, 0x00, 0xe4, 0x36, 0xab, 0xdc, 0x15, 0x01, 0x1e, 0xf9, + 0x25, 0x53, 0x78, 0x67, 0x5c, 0x21, 0x21, 0xff, 0xa8, 0x6f, 0x0a, 0x84, 0xa6, 0xfe, 0x83, 0x5b, + 0x43, 0x31, 0xef, 0x5e, 0xc6, 0xa4, 0xf8, 0xd5, 0x36, 0x12, 0xce, 0x9f, 0xf1, 0x86, 0xc4, 0xef, + 0xfb, 0x1b, 0x87, 0xe2, 0x43, 0x68, 0x71, 0x38, 0x7c, 0x04, 0xea, 0x10, 0x4b, 0x71, 0xc5, 0x54, + 0x0f, 0x26, 0x9e, 0x13, 0x8b, 0xc8, 0x94, 0x13, 0x11, 0x19, 0xe3, 0x22, 0xb6, 0x6e, 0x1c, 0x48, + 0x4e, 0xd8, 0xe5, 0x6d, 0x2d, 0xbc, 0x94, 0xc5, 0x2c, 0xfb, 0x75, 0x9c, 0xa6, 0xf9, 0xa6, 0x71, + 0x14, 0xbc, 0x95, 0xa3, 0x0b, 0xd1, 0x7d, 0x45, 0x4a, 0xf6, 0xa9, 0x69, 0x40, 0x18, 0xd8, 0x37, + 0x70, 0xaa, 0x40, 0xa8, 0xcc, 0x3e, 0x9c, 0xd1, 0x8e, 0x85, 0xb9, 0x8f, 0x1c, 0x00, 0x86, 0xee, + 0x4d, 0x8d, 0x6e, 0xf4, 0x99, 0x06, 0xfb, 0x80, 0x90, 0xf4, 0x77, 0x02, 0x03, 0x03, 0xf9, 0x2f, + 0x78, 0xf9, 0x21, 0x6b, 0x53, 0xde, 0xf2, 0xb3, 0xb3, 0x93, 0x23, 0xb9, 0x37, 0xe5, 0x24, 0x30, + 0xd9, 0x64, 0x8a, 0x0c, 0x6f, 0xe2, 0xc2, 0x46, 0x0a, 0x9e, 0x1c, 0x0f, 0x83, 0x6e, 0xf7, 0x76, + 0x8b, 0xa5, 0x2c, 0x93, 0x07, 0x85, 0x39, 0xa7, 0x85, 0x07, 0x71, 0x5c, 0x38, 0x1b, 0xc4, 0xbb, + 0xbd, 0xd4, 0x1a, 0xbf, 0xe8, 0xc2, 0x03, 0x8b, 0xc4, 0xad, 0x5f, 0x72, 0xbd, 0x0d, 0x25, 0x8d, + 0x77, 0x7d, 0xc5, 0x9f, 0x04, 0xd5, 0x35, 0x41, 0x38, 0x77, 0x3b, 0x99, 0xf2, 0xa5, 0xfa, 0x3c, + 0x18, 0x12, 0xdf, 0xce, 0x27, 0xcc, 0x9a, 0x4d, 0xc0, 0x25, 0xdb, 0x75, 0xf3, 0xc9, 0x76, 0x51, + 0xa7, 0xf5, 0xf0, 0x9d, 0xc6, 0x47, 0xfd, 0x7b, 0x63, 0x51, 0x7f, 0x32, 0x1b, 0xa4, 0x59, 0x2f, + 0x0a, 0x41, 0x90, 0xdc, 0xcb, 0xbf, 0xd8, 0x36, 0xcd, 0xb6, 0x59, 0xb7, 0x08, 0xe7, 0xf1, 0x0c, + 0x96, 0x6e, 0xd1, 0xc4, 0x09, 0xe7, 0x13, 0x0d, 0xef, 0x64, 0x45, 0xea, 0xe5, 0x4e, 0xbd, 0x0e, + 0x7d, 0x7f, 0x8f, 0x73, 0x38, 0xa9, 0x32, 0x25, 0x41, 0x99, 0x19, 0x9c, 0x6b, 0x9d, 0x0a, 0x2f, + 0x53, 0xa7, 0xbb, 0x64, 0x5b, 0x41, 0xc2, 0x31, 0xfb, 0xe3, 0x37, 0x69, 0x41, 0xa2, 0x13, 0xb4, + 0x60, 0x47, 0x44, 0xc5, 0x7c, 0xfd, 0xc7, 0x34, 0x42, 0x1c, 0x4b, 0xcf, 0x57, 0xdb, 0xc6, 0xed, + 0xba, 0x02, 0xf9, 0x41, 0x27, 0x1a, 0x2c, 0xce, 0x86, 0xcb, 0x34, 0xfb, 0x9e, 0xc6, 0xe5, 0x07, + 0xcd, 0x7a, 0xf5, 0x75, 0x67, 0x2b, 0x77, 0xa3, 0xf7, 0x20, 0xb2, 0x6d, 0x2d, 0x22, 0x3a, 0xcc, + 0x17, 0x63, 0xcf, 0x42, 0x92, 0x11, 0x8f, 0x8f, 0x69, 0xf0, 0x21, 0xc9, 0x39, 0xbd, 0xb6, 0x6e, + 0xb5, 0x6c, 0x78, 0x03, 0x8f, 0xbe, 0xbd, 0x3d, 0xd2, 0x25, 0xd7, 0xc3, 0x30, 0x79, 0x29, 0x82, + 0xc4, 0xd0, 0xfe, 0x8c, 0xbf, 0x99, 0x8e, 0x5a, 0xbf, 0xe6, 0x36, 0x9b, 0xd6, 0xaa, 0xeb, 0x85, + 0x75, 0x52, 0x7b, 0x38, 0x16, 0x3a, 0x3e, 0x43, 0x8f, 0x7f, 0x47, 0xef, 0x58, 0x5a, 0x61, 0x85, + 0x66, 0x0c, 0xf2, 0x57, 0xd7, 0xe9, 0xa8, 0xf9, 0x8b, 0xa1, 0x68, 0x27, 0xf9, 0x50, 0x6a, 0x48, + 0xb5, 0x91, 0x21, 0x64, 0xda, 0xfc, 0x4a, 0x13, 0xf2, 0x97, 0x42, 0x5a, 0xbc, 0xad, 0xdb, 0xe7, + 0x49, 0x0b, 0xf9, 0x5e, 0xdd, 0x6d, 0xba, 0xe1, 0x9d, 0x3d, 0x79, 0x88, 0xcf, 0x0e, 0xdd, 0xc9, + 0xd9, 0x81, 0xcc, 0xdb, 0xa9, 0x2a, 0x65, 0xce, 0xdb, 0xbf, 0xd7, 0x84, 0x34, 0xa4, 0x7d, 0xb3, + 0x43, 0x0d, 0xf4, 0xd2, 0xcd, 0x36, 0x5d, 0x8c, 0xc2, 0x47, 0x66, 0xa1, 0x72, 0x9a, 0x85, 0xba, + 0x25, 0x16, 0x4a, 0x66, 0x78, 0xd1, 0x2a, 0xa2, 0x54, 0x65, 0xf9, 0x22, 0x55, 0x3e, 0x7d, 0xea, + 0xe1, 0xb3, 0x88, 0x50, 0x0b, 0x95, 0xa5, 0xc5, 0xbb, 0x1a, 0x57, 0xc9, 0x1a, 0x11, 0xa1, 0x45, + 0xdd, 0x69, 0xed, 0x65, 0x22, 0xb8, 0xf1, 0x0a, 0xbe, 0x80, 0xcb, 0x00, 0xc2, 0xfc, 0xd2, 0x00, + 0x07, 0xad, 0x66, 0xd3, 0xbd, 0x4d, 0xdf, 0x63, 0x54, 0x7d, 0xa6, 0xf0, 0xce, 0x78, 0x8b, 0x64, + 0xa3, 0x90, 0xa6, 0x66, 0xbd, 0xdb, 0xd0, 0xda, 0x82, 0xa4, 0x84, 0x6c, 0x2f, 0xf5, 0x31, 0xf1, + 0x96, 0x21, 0x05, 0x04, 0xd3, 0xe5, 0x02, 0x38, 0x04, 0x5b, 0xd6, 0x6a, 0xec, 0x33, 0x55, 0x29, + 0xed, 0x93, 0xf1, 0x5f, 0x64, 0xf7, 0x14, 0xef, 0xd2, 0xbd, 0x54, 0x8b, 0xec, 0x94, 0xe2, 0x08, + 0x98, 0x3f, 0xfd, 0x0f, 0x5f, 0x40, 0x7b, 0xcb, 0x97, 0x2e, 0xc6, 0x3a, 0xe8, 0x43, 0xd3, 0x31, + 0x77, 0xc6, 0x64, 0xcf, 0xa9, 0xf3, 0x9d, 0xfc, 0x4e, 0x72, 0x10, 0x94, 0x56, 0x1d, 0x97, 0x8e, + 0x74, 0xf4, 0xab, 0x50, 0x45, 0x8b, 0xa0, 0x64, 0x5e, 0x38, 0x2e, 0x71, 0x7b, 0x20, 0x44, 0x78, + 0x2b, 0x44, 0xb1, 0x23, 0xec, 0xc2, 0x96, 0x85, 0x6f, 0x8e, 0x19, 0x69, 0x16, 0x9f, 0x9c, 0x22, + 0x82, 0x57, 0xe5, 0xb2, 0x52, 0xce, 0xe1, 0x34, 0x14, 0x22, 0x36, 0xc1, 0xda, 0xbf, 0xca, 0xdd, + 0x8c, 0xa0, 0x8f, 0x73, 0x8e, 0xec, 0xd2, 0x8b, 0x1a, 0xae, 0x2b, 0x32, 0x1c, 0x7f, 0x5d, 0x40, + 0xf9, 0x39, 0xec, 0x87, 0x84, 0x6f, 0xb9, 0xb7, 0x77, 0xf4, 0xb6, 0xae, 0x2b, 0xfd, 0x72, 0x32, + 0x6a, 0x22, 0xb5, 0x54, 0x38, 0xc7, 0x83, 0xe2, 0xf7, 0x75, 0x7c, 0x59, 0x28, 0xdf, 0xe3, 0x63, + 0xd3, 0xa0, 0x9a, 0x52, 0x87, 0x3f, 0x00, 0xc0, 0xcb, 0x8b, 0x2b, 0xff, 0xbc, 0xbc, 0x60, 0xfe, + 0xdd, 0x82, 0x39, 0x78, 0xa0, 0xda, 0x0f, 0x7a, 0x97, 0x57, 0x6e, 0x98, 0xb3, 0x2f, 0x2f, 0x0c, + 0x6a, 0x33, 0x77, 0x6f, 0x80, 0xd2, 0x92, 0x6f, 0x57, 0x7d, 0xf0, 0x68, 0xfc, 0x0f, 0x11, 0x48, + 0x4b, 0x8b, 0x62, 0xc4, 0xfa, 0xc5, 0x02, 0xc4, 0xcc, 0x43, 0xff, 0x4f, 0x03, 0xb5, 0xcc, 0x3f, + 0x1f, 0xf0, 0x94, 0xac, 0xc5, 0x2c, 0x2e, 0xfd, 0xf9, 0x9d, 0x70, 0x31, 0x40, 0xdb, 0xe0, 0xb1, + 0x64, 0xa9, 0xff, 0x84, 0xac, 0xc9, 0x04, 0xb9, 0x7e, 0xa9, 0x10, 0x39, 0x13, 0xdd, 0x00, 0x80, + 0xab, 0xc7, 0x97, 0xd6, 0xb5, 0x45, 0x74, 0xfa, 0xa4, 0x1a, 0x1d, 0x2f, 0x85, 0xab, 0xa2, 0x97, + 0x4a, 0x89, 0xe8, 0xe4, 0x52, 0x92, 0x65, 0xf0, 0x48, 0x0a, 0x57, 0x03, 0x2f, 0x95, 0x12, 0xd1, + 0xc9, 0xa5, 0x24, 0x8b, 0xa0, 0xab, 0x16, 0xa8, 0x44, 0xd5, 0xb0, 0xa7, 0x95, 0x2a, 0x8c, 0xf5, + 0x09, 0x25, 0x32, 0x26, 0xa2, 0x0d, 0x06, 0x62, 0x55, 0xb7, 0x63, 0xea, 0x85, 0xaf, 0xfa, 0x8c, + 0x3a, 0x2d, 0x93, 0xf8, 0xaf, 0xe0, 0xa0, 0x50, 0x0d, 0x3a, 0x9a, 0x6f, 0x14, 0x2a, 0xed, 0x82, + 0x2a, 0x25, 0xef, 0xed, 0xc9, 0xf2, 0xd3, 0x89, 0x5c, 0xd0, 0x82, 0xd4, 0x4b, 0x85, 0xc8, 0x99, + 0xe8, 0xbf, 0x07, 0x3d, 0xb4, 0x72, 0xd2, 0xc8, 0xaf, 0xe0, 0xd4, 0xc7, 0xf2, 0x69, 0x58, 0xcb, + 0x36, 0xe8, 0xe7, 0x0b, 0x33, 0xcf, 0x2a, 0xd6, 0x47, 0xea, 0x53, 0x8a, 0x84, 0xbc, 0xfb, 0x45, + 0xa5, 0x84, 0xa7, 0x55, 0x7c, 0xd7, 0x96, 0xbb, 0x5f, 0xa2, 0x08, 0x90, 0xb9, 0x5f, 0x24, 0x67, + 0x4c, 0xd1, 0xdc, 0x48, 0xd8, 0x8c, 0x3a, 0x2d, 0xaf, 0x54, 0x54, 0x72, 0x28, 0x55, 0x8a, 0x91, + 0xc9, 0x95, 0x4a, 0xd4, 0x0b, 0x56, 0xb7, 0xc0, 0x60, 0xa2, 0x56, 0x70, 0x3c, 0x7f, 0x82, 0x89, + 0xa8, 0xf5, 0xa7, 0x8a, 0x50, 0xf3, 0x23, 0x4b, 0x28, 0xf6, 0x1b, 0x95, 0xaf, 0x14, 0x11, 0xa5, + 0x7c, 0x64, 0xa5, 0x55, 0xf9, 0x21, 0x59, 0x42, 0x85, 0xdf, 0x68, 0xfe, 0x34, 0x4d, 0x28, 0xe5, + 0xb2, 0x52, 0x4b, 0xe1, 0xfe, 0x13, 0x54, 0x53, 0xea, 0xde, 0x14, 0xa6, 0x6c, 0x9e, 0x5e, 0x7f, + 0xba, 0x18, 0x3d, 0x3f, 0xdc, 0xf8, 0xca, 0x37, 0xe9, 0x70, 0xe3, 0x08, 0xe5, 0xc3, 0x2d, 0xa5, + 0x1e, 0x8e, 0x9b, 0x18, 0x15, 0x4c, 0xca, 0x53, 0x2a, 0x4d, 0x8c, 0xa2, 0xac, 0x7f, 0x02, 0x7d, + 0xec, 0x4f, 0x49, 0x3d, 0x29, 0xe3, 0x0e, 0xa9, 0xf4, 0x71, 0x15, 0x2a, 0xd6, 0xfe, 0x26, 0x78, + 0x44, 0xac, 0xbf, 0x3b, 0x97, 0xdf, 0xeb, 0x94, 0x54, 0x9f, 0x56, 0x26, 0xe5, 0xc5, 0x89, 0xc5, + 0x66, 0xe7, 0xf2, 0x3b, 0x5b, 0x49, 0x5c, 0x6a, 0xb9, 0x16, 0x12, 0x27, 0xd6, 0x6a, 0x9d, 0xcb, + 0xef, 0x00, 0x25, 0x71, 0xa9, 0x35, 0x5c, 0x68, 0x15, 0x4b, 0xd6, 0x6f, 0x4d, 0xe4, 0x5b, 0x89, + 0x23, 0x97, 0xaf, 0x62, 0xd9, 0xb5, 0x44, 0xef, 0x69, 0xe0, 0x48, 0x46, 0x99, 0xd0, 0x4c, 0xbe, + 0xdd, 0xe2, 0x3c, 0xfa, 0x95, 0xe2, 0x3c, 0x0c, 0xca, 0xc7, 0x1a, 0x38, 0x2e, 0x2d, 0x04, 0xba, + 0x5c, 0xa8, 0x71, 0x8e, 0x53, 0x7f, 0x71, 0xa7, 0x9c, 0x82, 0x9d, 0x32, 0x8a, 0x7c, 0xa4, 0x76, + 0x4a, 0xe7, 0x91, 0xdb, 0x49, 0x5e, 0xc3, 0x53, 0x7d, 0x03, 0x1c, 0x4a, 0xab, 0xdf, 0x99, 0xca, + 0xd9, 0x61, 0xc4, 0x19, 0xf4, 0x67, 0x0a, 0x32, 0x30, 0x00, 0xef, 0x6b, 0xe0, 0x68, 0x56, 0x99, + 0xcc, 0xc5, 0x9c, 0x95, 0x34, 0x8d, 0x49, 0x7f, 0x6e, 0x07, 0x4c, 0x0c, 0xcd, 0x5d, 0x0d, 0xe8, + 0x92, 0x0a, 0x98, 0xa7, 0xf3, 0x57, 0xbe, 0x54, 0x4c, 0x57, 0x77, 0xc6, 0x27, 0x31, 0x52, 0x94, + 0x30, 0x52, 0xc0, 0x48, 0x8c, 0xa9, 0x88, 0x91, 0x12, 0x19, 0x21, 0xe9, 0x46, 0x8a, 0x00, 0x15, + 0x33, 0x52, 0x84, 0xe9, 0xea, 0xce, 0xf8, 0x18, 0xac, 0x0f, 0x35, 0x30, 0x94, 0x5d, 0x98, 0x22, + 0x9d, 0xd2, 0x32, 0xd9, 0xf4, 0x17, 0x76, 0xc4, 0xc6, 0x30, 0x7d, 0x5b, 0x03, 0xc7, 0x64, 0x15, + 0x26, 0xd2, 0x61, 0x23, 0x61, 0xd4, 0xff, 0x6a, 0x87, 0x8c, 0x0c, 0xd9, 0x9b, 0x1a, 0x38, 0x9c, + 0x5a, 0x2c, 0x72, 0x41, 0xdd, 0x35, 0x08, 0x87, 0x7e, 0xb9, 0x28, 0x87, 0xe0, 0xd7, 0x59, 0x65, + 0x20, 0x17, 0x0b, 0xb9, 0x03, 0x85, 0xf2, 0xdc, 0x0e, 0x98, 0xf8, 0x95, 0x33, 0x59, 0xe3, 0xa1, + 0x70, 0x44, 0x51, 0x5e, 0x39, 0x33, 0x2b, 0x3b, 0xd0, 0x39, 0x23, 0xaa, 0xea, 0x38, 0x9d, 0xbf, + 0xfa, 0xce, 0x5b, 0xae, 0x3e, 0xa1, 0x44, 0xc6, 0x8b, 0x88, 0x8a, 0x2b, 0x4e, 0xcb, 0xed, 0x44, + 0xc9, 0xe4, 0x22, 0x12, 0xc5, 0x15, 0xd8, 0xa7, 0x52, 0x4b, 0x2b, 0x2e, 0xe4, 0x2f, 0x99, 0x22, + 0x87, 0x7e, 0xb9, 0x28, 0x47, 0xf2, 0x3c, 0xc5, 0x15, 0x55, 0x8c, 0x2b, 0xb5, 0x46, 0xa9, 0x55, + 0xce, 0x53, 0xc9, 0xea, 0x0a, 0xe4, 0x3d, 0xc9, 0xd2, 0x8a, 0x09, 0xa5, 0xa6, 0x42, 0x72, 0xb9, + 0xf7, 0x64, 0x96, 0x56, 0x54, 0x7d, 0xf0, 0x68, 0xbc, 0xae, 0xe2, 0xbc, 0x52, 0x4b, 0x84, 0x58, + 0x1e, 0xac, 0xcc, 0xa8, 0xaf, 0x88, 0xce, 0xfb, 0xb9, 0xfe, 0xc4, 0xc8, 0x54, 0xce, 0xfb, 0xbc, + 0x3f, 0xb1, 0x73, 0x41, 0x98, 0xa0, 0xae, 0x70, 0x2e, 0xa0, 0xa4, 0x2a, 0xe7, 0x82, 0x78, 0xad, + 0x01, 0x3b, 0x17, 0x28, 0x89, 0x13, 0x48, 0x55, 0xce, 0x05, 0x29, 0xe2, 0xc4, 0xf4, 0x7b, 0x85, + 0x73, 0x81, 0x92, 0xb8, 0xd4, 0x24, 0x78, 0x7c, 0x32, 0xe5, 0x12, 0xe0, 0xcf, 0xe6, 0xdb, 0x07, + 0x13, 0xe6, 0x9c, 0x4c, 0x53, 0xd2, 0xb6, 0xd9, 0x00, 0xe4, 0x32, 0xb2, 0x15, 0x06, 0x60, 0x44, + 0xad, 0x32, 0x00, 0x93, 0x09, 0xd7, 0xdc, 0xe9, 0x23, 0x91, 0x6d, 0x3d, 0xa3, 0xd8, 0x20, 0x3f, + 0x03, 0x5d, 0x29, 0xce, 0xc3, 0x9b, 0x20, 0x91, 0x42, 0x3d, 0x9e, 0x7f, 0x23, 0x10, 0x51, 0xcb, + 0x4d, 0x90, 0x99, 0x15, 0xbd, 0x0d, 0x1e, 0x4b, 0xe6, 0x3e, 0xe7, 0xc5, 0xa3, 0x44, 0xf2, 0x9c, + 0x78, 0x7d, 0x56, 0x4e, 0x33, 0x9e, 0xfb, 0x53, 0x13, 0x9a, 0x15, 0xa2, 0x45, 0x31, 0x04, 0x97, + 0x8b, 0x72, 0xf0, 0x01, 0xc2, 0x58, 0xa2, 0xf2, 0x98, 0x8a, 0x36, 0x74, 0xf3, 0x30, 0xa3, 0x4e, + 0xcb, 0x5b, 0x3c, 0x99, 0x7b, 0x3c, 0xa1, 0xa8, 0x00, 0x95, 0x7b, 0xa9, 0x10, 0x39, 0x3f, 0xa0, + 0xf9, 0x94, 0xe2, 0xb3, 0xf9, 0x53, 0x82, 0xc2, 0x80, 0x4e, 0x49, 0x21, 0x46, 0xde, 0x9c, 0xc8, + 0x1f, 0x1e, 0x57, 0x09, 0xbb, 0x84, 0xd4, 0x72, 0x6f, 0xce, 0x4c, 0x0f, 0x46, 0x2e, 0x95, 0x9a, + 0xca, 0x7b, 0x21, 0xff, 0xc0, 0x2b, 0x72, 0xc8, 0x5d, 0x4a, 0x96, 0xf0, 0x8a, 0x5c, 0x2a, 0x26, + 0x5d, 0xea, 0x52, 0x31, 0xb9, 0x33, 0xea, 0xb4, 0x4c, 0xe2, 0x3b, 0x1a, 0x78, 0x3c, 0x3d, 0xfb, + 0x73, 0x5a, 0xbd, 0x35, 0xca, 0xa2, 0x3f, 0x5b, 0x98, 0x85, 0xef, 0xf6, 0x44, 0xc2, 0xe6, 0x78, + 0xfe, 0x86, 0x50, 0xb5, 0xdb, 0xb3, 0xd2, 0x2e, 0xc9, 0x99, 0x49, 0x92, 0x73, 0xf9, 0x8c, 0x4a, + 0x08, 0x2e, 0x85, 0x31, 0xe7, 0xcc, 0x94, 0x9f, 0x36, 0x19, 0x85, 0x96, 0x85, 0x94, 0x49, 0x85, + 0xd0, 0x32, 0x4f, 0xaf, 0x12, 0x5a, 0x4e, 0x4b, 0x79, 0xc4, 0x0b, 0x38, 0x97, 0xee, 0x28, 0x5f, + 0xc0, 0x23, 0xc2, 0x9c, 0x05, 0x3c, 0x99, 0xad, 0xc8, 0xc5, 0xce, 0x32, 0x12, 0xf9, 0x2e, 0x17, + 0x31, 0x24, 0xcf, 0xa9, 0x12, 0x3b, 0x93, 0xa7, 0xe6, 0x61, 0x70, 0xd2, 0x2c, 0x43, 0x85, 0xd5, + 0x63, 0x27, 0xe0, 0x54, 0xf2, 0x06, 0xf1, 0xd0, 0x4d, 0x4f, 0x1a, 0x9c, 0x2e, 0x32, 0x03, 0x62, + 0x16, 0xf9, 0xd0, 0x95, 0xe7, 0xf1, 0x21, 0x1c, 0xe9, 0x49, 0x7b, 0xd3, 0x45, 0x3a, 0x40, 0x01, + 0x87, 0x34, 0x5b, 0x0e, 0xe3, 0x48, 0x4f, 0x95, 0x53, 0x0a, 0x6c, 0x17, 0xc0, 0x21, 0xcd, 0x77, + 0x43, 0x53, 0x59, 0xe2, 0xef, 0x5c, 0xe7, 0xfd, 0x0d, 0x6e, 0x81, 0x5a, 0x3e, 0x95, 0x65, 0xfd, + 0xa5, 0x6a, 0x1c, 0xdf, 0xc8, 0x4a, 0xb2, 0x53, 0xc8, 0x10, 0x49, 0x30, 0xc9, 0xe3, 0x1b, 0x79, + 0x59, 0x74, 0x6f, 0x80, 0x43, 0x69, 0xd9, 0x71, 0x53, 0xf9, 0x6d, 0x0a, 0x0c, 0xf2, 0x58, 0xaf, + 0x2c, 0xf5, 0x6d, 0x0b, 0x0c, 0x26, 0x92, 0xd8, 0xc6, 0x8b, 0xf4, 0xaa, 0xbc, 0x1b, 0xb2, 0xd2, + 0xd3, 0xa2, 0x5c, 0x12, 0x9c, 0x58, 0xa4, 0x90, 0x4b, 0x82, 0xe8, 0x54, 0x72, 0x49, 0x84, 0xfc, + 0x32, 0xb6, 0x3a, 0x08, 0xc9, 0x64, 0x0a, 0xab, 0x03, 0x4f, 0xaf, 0xb2, 0x3a, 0xa4, 0x65, 0x97, + 0xa1, 0x7d, 0x4a, 0x2c, 0xb5, 0x6c, 0x4c, 0xad, 0x25, 0x44, 0xab, 0xcf, 0xa8, 0xd3, 0x26, 0x8f, + 0xcb, 0x61, 0xb2, 0xd9, 0x39, 0xb5, 0x46, 0xe6, 0x1c, 0x57, 0xe5, 0xb8, 0x1c, 0x4b, 0x41, 0x8b, + 0x8e, 0x95, 0x5c, 0xfe, 0xd9, 0xb8, 0x5a, 0x33, 0x34, 0xcc, 0xf1, 0x54, 0x11, 0xea, 0x64, 0xf2, + 0x4e, 0xbe, 0xf3, 0x44, 0x74, 0x2a, 0xc9, 0x3b, 0x82, 0xf3, 0x7c, 0xa8, 0x81, 0xa1, 0xec, 0xff, + 0x75, 0x71, 0xa9, 0xc8, 0x14, 0xcc, 0xd8, 0xe4, 0xc1, 0xeb, 0xdc, 0xff, 0x3a, 0x81, 0x0f, 0xd4, + 0x19, 0xff, 0x72, 0x22, 0xef, 0xa8, 0x94, 0x86, 0xe6, 0x4a, 0x71, 0x9e, 0x10, 0xca, 0xdc, 0xfc, + 0x67, 0xf7, 0x86, 0xb5, 0xcf, 0xef, 0x0d, 0x6b, 0x5f, 0xde, 0x1b, 0xd6, 0xbe, 0x71, 0x7f, 0xf8, + 0xc0, 0xe7, 0xf7, 0x87, 0x0f, 0xfc, 0xf6, 0xfe, 0xf0, 0x81, 0x7f, 0x18, 0xe3, 0x4a, 0xd3, 0xe3, + 0xff, 0x15, 0xe9, 0x4e, 0xf4, 0x0f, 0xa9, 0xb6, 0xdb, 0xd0, 0x5f, 0xed, 0xc1, 0xff, 0x1d, 0xe9, + 0xe2, 0x9f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xec, 0x35, 0xf8, 0x78, 0x33, 0x6b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9493,6 +9594,7 @@ type MsgClient interface { ForkRepositorySuccess(ctx context.Context, in *MsgForkRepositorySuccess, opts ...grpc.CallOption) (*MsgForkRepositorySuccessResponse, error) RenameRepository(ctx context.Context, in *MsgRenameRepository, opts ...grpc.CallOption) (*MsgRenameRepositoryResponse, error) UpdateRepositoryDescription(ctx context.Context, in *MsgUpdateRepositoryDescription, opts ...grpc.CallOption) (*MsgUpdateRepositoryDescriptionResponse, error) + UpdateArchiveState(ctx context.Context, in *MsgUpdateArchiveState, opts ...grpc.CallOption) (*MsgUpdateArchiveStateResponse, error) ChangeOwner(ctx context.Context, in *MsgChangeOwner, opts ...grpc.CallOption) (*MsgChangeOwnerResponse, error) UpdateRepositoryCollaborator(ctx context.Context, in *MsgUpdateRepositoryCollaborator, opts ...grpc.CallOption) (*MsgUpdateRepositoryCollaboratorResponse, error) RemoveRepositoryCollaborator(ctx context.Context, in *MsgRemoveRepositoryCollaborator, opts ...grpc.CallOption) (*MsgRemoveRepositoryCollaboratorResponse, error) @@ -10098,6 +10200,15 @@ func (c *msgClient) UpdateRepositoryDescription(ctx context.Context, in *MsgUpda return out, nil } +func (c *msgClient) UpdateArchiveState(ctx context.Context, in *MsgUpdateArchiveState, opts ...grpc.CallOption) (*MsgUpdateArchiveStateResponse, error) { + out := new(MsgUpdateArchiveStateResponse) + err := c.cc.Invoke(ctx, "/gitopia.gitopia.gitopia.Msg/UpdateArchiveState", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *msgClient) ChangeOwner(ctx context.Context, in *MsgChangeOwner, opts ...grpc.CallOption) (*MsgChangeOwnerResponse, error) { out := new(MsgChangeOwnerResponse) err := c.cc.Invoke(ctx, "/gitopia.gitopia.gitopia.Msg/ChangeOwner", in, out, opts...) @@ -10328,6 +10439,7 @@ type MsgServer interface { ForkRepositorySuccess(context.Context, *MsgForkRepositorySuccess) (*MsgForkRepositorySuccessResponse, error) RenameRepository(context.Context, *MsgRenameRepository) (*MsgRenameRepositoryResponse, error) UpdateRepositoryDescription(context.Context, *MsgUpdateRepositoryDescription) (*MsgUpdateRepositoryDescriptionResponse, error) + UpdateArchiveState(context.Context, *MsgUpdateArchiveState) (*MsgUpdateArchiveStateResponse, error) ChangeOwner(context.Context, *MsgChangeOwner) (*MsgChangeOwnerResponse, error) UpdateRepositoryCollaborator(context.Context, *MsgUpdateRepositoryCollaborator) (*MsgUpdateRepositoryCollaboratorResponse, error) RemoveRepositoryCollaborator(context.Context, *MsgRemoveRepositoryCollaborator) (*MsgRemoveRepositoryCollaboratorResponse, error) @@ -10545,6 +10657,9 @@ func (*UnimplementedMsgServer) RenameRepository(ctx context.Context, req *MsgRen func (*UnimplementedMsgServer) UpdateRepositoryDescription(ctx context.Context, req *MsgUpdateRepositoryDescription) (*MsgUpdateRepositoryDescriptionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateRepositoryDescription not implemented") } +func (*UnimplementedMsgServer) UpdateArchiveState(ctx context.Context, req *MsgUpdateArchiveState) (*MsgUpdateArchiveStateResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method UpdateArchiveState not implemented") +} func (*UnimplementedMsgServer) ChangeOwner(ctx context.Context, req *MsgChangeOwner) (*MsgChangeOwnerResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ChangeOwner not implemented") } @@ -11756,6 +11871,24 @@ func _Msg_UpdateRepositoryDescription_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _Msg_UpdateArchiveState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgUpdateArchiveState) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(MsgServer).UpdateArchiveState(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/gitopia.gitopia.gitopia.Msg/UpdateArchiveState", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(MsgServer).UpdateArchiveState(ctx, req.(*MsgUpdateArchiveState)) + } + return interceptor(ctx, in, info, handler) +} + func _Msg_ChangeOwner_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(MsgChangeOwner) if err := dec(in); err != nil { @@ -12340,6 +12473,10 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ MethodName: "UpdateRepositoryDescription", Handler: _Msg_UpdateRepositoryDescription_Handler, }, + { + MethodName: "UpdateArchiveState", + Handler: _Msg_UpdateArchiveState_Handler, + }, { MethodName: "ChangeOwner", Handler: _Msg_ChangeOwner_Handler, @@ -12414,7 +12551,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "gitopia/tx.proto", + Metadata: "gitopia/gitopia/tx.proto", } func (m *MsgExercise) Marshal() (dAtA []byte, err error) { @@ -17780,6 +17917,76 @@ func (m *MsgUpdateRepositoryDescriptionResponse) MarshalToSizedBuffer(dAtA []byt return len(dAtA) - i, nil } +func (m *MsgUpdateArchiveState) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgUpdateArchiveState) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUpdateArchiveState) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Archived) > 0 { + i -= len(m.Archived) + copy(dAtA[i:], m.Archived) + i = encodeVarintTx(dAtA, i, uint64(len(m.Archived))) + i-- + dAtA[i] = 0x1a + } + { + size, err := m.RepositoryId.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + if len(m.Creator) > 0 { + i -= len(m.Creator) + copy(dAtA[i:], m.Creator) + i = encodeVarintTx(dAtA, i, uint64(len(m.Creator))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgUpdateArchiveStateResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgUpdateArchiveStateResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUpdateArchiveStateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func (m *MsgChangeOwner) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -21218,6 +21425,34 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Size() (n int) { return n } +func (m *MsgUpdateArchiveState) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Creator) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = m.RepositoryId.Size() + n += 1 + l + sovTx(uint64(l)) + l = len(m.Archived) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgUpdateArchiveStateResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func (m *MsgChangeOwner) Size() (n int) { if m == nil { return 0 @@ -37371,6 +37606,203 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *MsgUpdateArchiveState) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgUpdateArchiveState: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUpdateArchiveState: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Creator", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + 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 ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Creator = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RepositoryId", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.RepositoryId.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Archived", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + 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 ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Archived = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgUpdateArchiveStateResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgUpdateArchiveStateResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUpdateArchiveStateResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *MsgChangeOwner) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/x/gitopia/types/user.pb.go b/x/gitopia/types/user.pb.go index 299c4e2e..6779b27a 100644 --- a/x/gitopia/types/user.pb.go +++ b/x/gitopia/types/user.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/user.proto +// source: gitopia/gitopia/user.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -44,7 +44,7 @@ func (m *User) Reset() { *m = User{} } func (m *User) String() string { return proto.CompactTextString(m) } func (*User) ProtoMessage() {} func (*User) Descriptor() ([]byte, []int) { - return fileDescriptor_bf7f4b301dc3d162, []int{0} + return fileDescriptor_f1258b7c717290ab, []int{0} } func (m *User) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -180,7 +180,7 @@ func (m *UserDao) Reset() { *m = UserDao{} } func (m *UserDao) String() string { return proto.CompactTextString(m) } func (*UserDao) ProtoMessage() {} func (*UserDao) Descriptor() ([]byte, []int) { - return fileDescriptor_bf7f4b301dc3d162, []int{1} + return fileDescriptor_f1258b7c717290ab, []int{1} } func (m *UserDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -228,34 +228,34 @@ func init() { proto.RegisterType((*UserDao)(nil), "gitopia.gitopia.gitopia.UserDao") } -func init() { proto.RegisterFile("gitopia/user.proto", fileDescriptor_bf7f4b301dc3d162) } +func init() { proto.RegisterFile("gitopia/gitopia/user.proto", fileDescriptor_f1258b7c717290ab) } -var fileDescriptor_bf7f4b301dc3d162 = []byte{ - // 383 bytes of a gzipped FileDescriptorProto +var fileDescriptor_f1258b7c717290ab = []byte{ + // 384 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x92, 0xcd, 0x6a, 0xe3, 0x30, 0x14, 0x85, 0x23, 0xdb, 0x93, 0x9f, 0x9b, 0x1f, 0x06, 0x31, 0x30, 0x22, 0x0c, 0xc6, 0x64, 0x86, 0xc1, 0xcc, 0x22, 0x59, 0xcc, 0x13, 0x64, 0x08, 0xcc, 0xa2, 0x3b, 0x43, 0x36, 0xdd, 0x14, 0x39, 0x52, 0x5c, 0x41, 0x62, 0x19, 0x49, 0x4e, 0xdb, 0xb7, 0xe8, 0xae, 0xaf, 0xd4, 0x65, 0x96, 0x5d, - 0x96, 0xe4, 0x45, 0x8a, 0x14, 0xdb, 0x49, 0xb3, 0xd2, 0xb9, 0xdf, 0x39, 0x20, 0x71, 0x74, 0x01, - 0x67, 0xc2, 0xc8, 0x42, 0xd0, 0x59, 0xa9, 0xb9, 0x9a, 0x16, 0x4a, 0x1a, 0x89, 0xbf, 0x57, 0x6c, - 0x7a, 0x75, 0x8e, 0xbf, 0x65, 0x32, 0x93, 0x2e, 0x33, 0xb3, 0xea, 0x14, 0x9f, 0xbc, 0xf8, 0x10, - 0x2c, 0x35, 0x57, 0x98, 0x40, 0x67, 0xa5, 0x38, 0x35, 0x52, 0x11, 0x14, 0xa1, 0xb8, 0x97, 0xd4, - 0x23, 0x1e, 0x81, 0x27, 0x18, 0xf1, 0x22, 0x14, 0x07, 0x89, 0x27, 0x18, 0xc6, 0x10, 0xe4, 0x74, - 0xcb, 0x89, 0xef, 0x62, 0x4e, 0xe3, 0x31, 0x74, 0xed, 0x1b, 0x1c, 0x0f, 0x1c, 0x6f, 0x66, 0xfc, - 0x1b, 0x46, 0xb5, 0xfe, 0x2f, 0xcc, 0x7d, 0x99, 0x92, 0x2f, 0x2e, 0x71, 0x45, 0xf1, 0x0f, 0xe8, - 0xd1, 0x1d, 0x35, 0x54, 0x2d, 0xd5, 0x86, 0xb4, 0x5d, 0xe4, 0x0c, 0xac, 0xbb, 0x96, 0x9b, 0x8d, - 0x7c, 0xe0, 0x4a, 0x93, 0x4e, 0xe4, 0x5b, 0xb7, 0x01, 0x67, 0x57, 0xe4, 0x19, 0xe9, 0x5e, 0xba, - 0x22, 0xcf, 0xf0, 0x4f, 0x18, 0x6a, 0x43, 0x95, 0xe2, 0xec, 0x4e, 0xf1, 0x42, 0x6a, 0xd2, 0x8b, - 0xfc, 0x38, 0x48, 0x06, 0x15, 0x4c, 0x2c, 0xc3, 0xbf, 0x60, 0xa8, 0xcb, 0x54, 0xaf, 0x94, 0x28, - 0x8c, 0x90, 0xb9, 0x26, 0xe0, 0x9e, 0xf0, 0x19, 0xe2, 0xaf, 0xe0, 0xa7, 0x42, 0x92, 0xbe, 0xf3, - 0xac, 0xb4, 0x57, 0xbb, 0xa6, 0x38, 0x9b, 0x1b, 0x32, 0x88, 0x50, 0xec, 0x27, 0x67, 0x60, 0xdd, - 0xb2, 0x60, 0x95, 0x3b, 0x3c, 0xb9, 0x0d, 0xb0, 0xb5, 0xed, 0xb8, 0x12, 0x6b, 0xc1, 0x19, 0x19, - 0x45, 0x28, 0xee, 0x26, 0xcd, 0x3c, 0xb9, 0x81, 0x8e, 0xfd, 0x98, 0x05, 0x95, 0x38, 0x82, 0xbe, - 0xed, 0x6a, 0xce, 0x98, 0xe2, 0x5a, 0x57, 0xff, 0x73, 0x89, 0x70, 0x08, 0xc0, 0xa8, 0xac, 0x03, - 0x9e, 0x0b, 0x5c, 0x90, 0x7f, 0x8b, 0xd7, 0x43, 0x88, 0xf6, 0x87, 0x10, 0xbd, 0x1f, 0x42, 0xf4, - 0x7c, 0x0c, 0x5b, 0xfb, 0x63, 0xd8, 0x7a, 0x3b, 0x86, 0xad, 0xdb, 0x3f, 0x99, 0x6b, 0x7f, 0xba, - 0x92, 0xdb, 0x59, 0xbd, 0x4e, 0xf5, 0xf9, 0xd8, 0x28, 0xf3, 0x54, 0x70, 0x9d, 0xb6, 0xdd, 0xce, - 0xfc, 0xfd, 0x08, 0x00, 0x00, 0xff, 0xff, 0x48, 0x29, 0x3c, 0x4b, 0x78, 0x02, 0x00, 0x00, + 0x96, 0xe4, 0x45, 0x8a, 0x14, 0xdb, 0x49, 0xb3, 0xd2, 0xb9, 0xdf, 0x39, 0x20, 0x71, 0x74, 0x61, + 0x9c, 0x09, 0x23, 0x0b, 0x41, 0x67, 0xf5, 0x59, 0x6a, 0xae, 0xa6, 0x85, 0x92, 0x46, 0xe2, 0xef, + 0x15, 0x9b, 0x5e, 0x9d, 0xe3, 0x6f, 0x99, 0xcc, 0xa4, 0xcb, 0xcc, 0xac, 0x3a, 0xc5, 0x27, 0x2f, + 0x3e, 0x04, 0x4b, 0xcd, 0x15, 0x26, 0xd0, 0x59, 0x29, 0x4e, 0x8d, 0x54, 0x04, 0x45, 0x28, 0xee, + 0x25, 0xf5, 0x88, 0x47, 0xe0, 0x09, 0x46, 0xbc, 0x08, 0xc5, 0x41, 0xe2, 0x09, 0x86, 0x31, 0x04, + 0x39, 0xdd, 0x72, 0xe2, 0xbb, 0x98, 0xd3, 0x78, 0x0c, 0x5d, 0xfb, 0x06, 0xc7, 0x03, 0xc7, 0x9b, + 0x19, 0xff, 0x86, 0x51, 0xad, 0xff, 0x0b, 0x73, 0x5f, 0xa6, 0xe4, 0x8b, 0x4b, 0x5c, 0x51, 0xfc, + 0x03, 0x7a, 0x74, 0x47, 0x0d, 0x55, 0x4b, 0xb5, 0x21, 0x6d, 0x17, 0x39, 0x03, 0xeb, 0xae, 0xe5, + 0x66, 0x23, 0x1f, 0xb8, 0xd2, 0xa4, 0x13, 0xf9, 0xd6, 0x6d, 0xc0, 0xd9, 0x15, 0x79, 0x46, 0xba, + 0x97, 0xae, 0xc8, 0x33, 0xfc, 0x13, 0x86, 0xda, 0x50, 0xa5, 0x38, 0xbb, 0x53, 0xbc, 0x90, 0x9a, + 0xf4, 0x22, 0x3f, 0x0e, 0x92, 0x41, 0x05, 0x13, 0xcb, 0xf0, 0x2f, 0x18, 0xea, 0x32, 0xd5, 0x2b, + 0x25, 0x0a, 0x23, 0x64, 0xae, 0x09, 0xb8, 0x27, 0x7c, 0x86, 0xf8, 0x2b, 0xf8, 0xa9, 0x90, 0xa4, + 0xef, 0x3c, 0x2b, 0xed, 0xd5, 0xae, 0x29, 0xce, 0xe6, 0x86, 0x0c, 0x22, 0x14, 0xfb, 0xc9, 0x19, + 0x58, 0xb7, 0x2c, 0x58, 0xe5, 0x0e, 0x4f, 0x6e, 0x03, 0x6c, 0x6d, 0x3b, 0xae, 0xc4, 0x5a, 0x70, + 0x46, 0x46, 0x11, 0x8a, 0xbb, 0x49, 0x33, 0x4f, 0x6e, 0xa0, 0x63, 0x3f, 0x66, 0x41, 0x25, 0x8e, + 0xa0, 0x6f, 0xbb, 0x9a, 0x33, 0xa6, 0xb8, 0xd6, 0xd5, 0xff, 0x5c, 0x22, 0x1c, 0x02, 0x30, 0x2a, + 0xeb, 0x80, 0xe7, 0x02, 0x17, 0xe4, 0xdf, 0xe2, 0xf5, 0x10, 0xa2, 0xfd, 0x21, 0x44, 0xef, 0x87, + 0x10, 0x3d, 0x1f, 0xc3, 0xd6, 0xfe, 0x18, 0xb6, 0xde, 0x8e, 0x61, 0xeb, 0xf6, 0x4f, 0xe6, 0xda, + 0x9f, 0xae, 0xe4, 0x76, 0x76, 0xbd, 0x56, 0x8f, 0x8d, 0x32, 0x4f, 0x05, 0xd7, 0x69, 0xdb, 0xed, + 0xcc, 0xdf, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x26, 0x8e, 0x24, 0x9d, 0x80, 0x02, 0x00, 0x00, } func (m *User) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/whois.pb.go b/x/gitopia/types/whois.pb.go index bfa521b7..fe0396f7 100644 --- a/x/gitopia/types/whois.pb.go +++ b/x/gitopia/types/whois.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/whois.proto +// source: gitopia/gitopia/whois.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -45,7 +45,7 @@ func (x OwnerType) String() string { } func (OwnerType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_eb936eb6838a72a6, []int{0} + return fileDescriptor_4aac85447b86043d, []int{0} } type Whois struct { @@ -60,7 +60,7 @@ func (m *Whois) Reset() { *m = Whois{} } func (m *Whois) String() string { return proto.CompactTextString(m) } func (*Whois) ProtoMessage() {} func (*Whois) Descriptor() ([]byte, []int) { - return fileDescriptor_eb936eb6838a72a6, []int{0} + return fileDescriptor_4aac85447b86043d, []int{0} } func (m *Whois) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,26 +129,26 @@ func init() { proto.RegisterType((*Whois)(nil), "gitopia.gitopia.gitopia.Whois") } -func init() { proto.RegisterFile("gitopia/whois.proto", fileDescriptor_eb936eb6838a72a6) } +func init() { proto.RegisterFile("gitopia/gitopia/whois.proto", fileDescriptor_4aac85447b86043d) } -var fileDescriptor_eb936eb6838a72a6 = []byte{ +var fileDescriptor_4aac85447b86043d = []byte{ // 251 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4e, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x2f, 0xcf, 0xc8, 0xcf, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x12, 0x87, 0x0a, 0xea, 0xa1, 0xd1, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x35, 0xfa, 0x20, - 0x16, 0x44, 0xb9, 0xd2, 0x42, 0x46, 0x2e, 0xd6, 0x70, 0x90, 0x76, 0x21, 0x09, 0x2e, 0xf6, 0xe4, - 0xa2, 0xd4, 0xc4, 0x92, 0xfc, 0x22, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x18, 0x57, 0x88, - 0x8f, 0x8b, 0x29, 0x33, 0x45, 0x82, 0x49, 0x81, 0x51, 0x83, 0x25, 0x88, 0x29, 0x33, 0x45, 0x48, - 0x88, 0x8b, 0x25, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x19, 0xac, 0x0c, 0xcc, 0x06, 0xe9, 0x4e, 0x4c, - 0x49, 0x29, 0x4a, 0x2d, 0x2e, 0x96, 0x60, 0x81, 0xe8, 0x86, 0x72, 0x85, 0x1c, 0xb8, 0x38, 0xf3, - 0xcb, 0xf3, 0x52, 0x8b, 0x42, 0x2a, 0x0b, 0x52, 0x25, 0x58, 0x15, 0x18, 0x35, 0xf8, 0x8c, 0x94, - 0xf4, 0x70, 0x38, 0x52, 0xcf, 0x1f, 0xa6, 0x32, 0x08, 0xa1, 0x49, 0x4b, 0x8e, 0x8b, 0x13, 0x2e, - 0x2e, 0xc4, 0xc1, 0xc5, 0x12, 0x1a, 0xec, 0x1a, 0x24, 0xc0, 0x20, 0xc4, 0xce, 0xc5, 0xec, 0xe2, - 0xe8, 0x2f, 0xc0, 0xe8, 0xe4, 0x72, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, - 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, - 0x5a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xb0, 0xc0, 0x82, 0xd1, - 0x15, 0x70, 0x56, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0x38, 0x40, 0x8c, 0x01, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x67, 0xcb, 0x78, 0x93, 0x56, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0xe5, 0x19, 0xf9, 0x99, 0xc5, 0x7a, 0x05, 0x45, 0xf9, 0x25, + 0xf9, 0x42, 0xe2, 0x50, 0x41, 0x3d, 0x34, 0x5a, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0xac, 0x46, + 0x1f, 0xc4, 0x82, 0x28, 0x57, 0x5a, 0xc8, 0xc8, 0xc5, 0x1a, 0x0e, 0xd2, 0x2e, 0x24, 0xc1, 0xc5, + 0x9e, 0x5c, 0x94, 0x9a, 0x58, 0x92, 0x5f, 0x24, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, + 0x0a, 0xf1, 0x71, 0x31, 0x65, 0xa6, 0x48, 0x30, 0x29, 0x30, 0x6a, 0xb0, 0x04, 0x31, 0x65, 0xa6, + 0x08, 0x09, 0x71, 0xb1, 0xe4, 0x25, 0xe6, 0xa6, 0x4a, 0x30, 0x83, 0x95, 0x81, 0xd9, 0x20, 0xdd, + 0x89, 0x29, 0x29, 0x45, 0xa9, 0xc5, 0xc5, 0x12, 0x2c, 0x10, 0xdd, 0x50, 0xae, 0x90, 0x03, 0x17, + 0x67, 0x7e, 0x79, 0x5e, 0x6a, 0x51, 0x48, 0x65, 0x41, 0xaa, 0x04, 0xab, 0x02, 0xa3, 0x06, 0x9f, + 0x91, 0x92, 0x1e, 0x0e, 0x47, 0xea, 0xf9, 0xc3, 0x54, 0x06, 0x21, 0x34, 0x69, 0xc9, 0x71, 0x71, + 0xc2, 0xc5, 0x85, 0x38, 0xb8, 0x58, 0x42, 0x83, 0x5d, 0x83, 0x04, 0x18, 0x84, 0xd8, 0xb9, 0x98, + 0x5d, 0x1c, 0xfd, 0x05, 0x18, 0x9d, 0x5c, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, + 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, + 0x21, 0x4a, 0x2b, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x3d, 0xd0, + 0x2a, 0xe0, 0xac, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x80, 0x18, 0x03, 0x02, 0x00, + 0x00, 0xff, 0xff, 0x14, 0xcb, 0xf4, 0xe4, 0x5e, 0x01, 0x00, 0x00, } func (m *Whois) Marshal() (dAtA []byte, err error) { diff --git a/x/offchain/types/offchain.pb.go b/x/offchain/types/offchain.pb.go index 8d74770d..d4201e2c 100644 --- a/x/offchain/types/offchain.pb.go +++ b/x/offchain/types/offchain.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: offchain/offchain.proto +// source: gitopia/offchain/offchain.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -35,7 +35,7 @@ func (m *MsgSignData) Reset() { *m = MsgSignData{} } func (m *MsgSignData) String() string { return proto.CompactTextString(m) } func (*MsgSignData) ProtoMessage() {} func (*MsgSignData) Descriptor() ([]byte, []int) { - return fileDescriptor_18e0ff16bccd9e76, []int{0} + return fileDescriptor_83bb407f794592d0, []int{0} } func (m *MsgSignData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *ListOfMsgSignData) Reset() { *m = ListOfMsgSignData{} } func (m *ListOfMsgSignData) String() string { return proto.CompactTextString(m) } func (*ListOfMsgSignData) ProtoMessage() {} func (*ListOfMsgSignData) Descriptor() ([]byte, []int) { - return fileDescriptor_18e0ff16bccd9e76, []int{1} + return fileDescriptor_83bb407f794592d0, []int{1} } func (m *ListOfMsgSignData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,24 +129,24 @@ func init() { proto.RegisterType((*ListOfMsgSignData)(nil), "gitopia.gitopia.offchain.ListOfMsgSignData") } -func init() { proto.RegisterFile("offchain/offchain.proto", fileDescriptor_18e0ff16bccd9e76) } +func init() { proto.RegisterFile("gitopia/offchain/offchain.proto", fileDescriptor_83bb407f794592d0) } -var fileDescriptor_18e0ff16bccd9e76 = []byte{ - // 215 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcf, 0x4f, 0x4b, 0x4b, - 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0x87, 0x31, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x24, 0xd2, - 0x33, 0x4b, 0xf2, 0x0b, 0x32, 0x13, 0xf5, 0x60, 0x34, 0x4c, 0x5e, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, - 0x1f, 0xac, 0x48, 0x1f, 0xc4, 0x82, 0xa8, 0x57, 0xb2, 0xe4, 0xe2, 0xf6, 0x2d, 0x4e, 0x0f, 0xce, - 0x4c, 0xcf, 0x73, 0x49, 0x2c, 0x49, 0x14, 0x12, 0xe3, 0x62, 0x2b, 0xce, 0x4c, 0xcf, 0x4b, 0x2d, - 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0xf2, 0x84, 0x84, 0xb8, 0x58, 0x52, 0x12, 0x4b, - 0x12, 0x25, 0x98, 0x14, 0x18, 0x35, 0x78, 0x82, 0xc0, 0x6c, 0x25, 0x3f, 0x2e, 0x41, 0x9f, 0xcc, - 0xe2, 0x12, 0xff, 0x34, 0x64, 0x03, 0x2c, 0xb9, 0x58, 0x72, 0x8b, 0xd3, 0x8b, 0x25, 0x18, 0x15, - 0x98, 0x35, 0xb8, 0x8d, 0x54, 0xf5, 0x70, 0x39, 0x47, 0x0f, 0x49, 0x53, 0x10, 0x58, 0x8b, 0x93, - 0xeb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, - 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa7, 0x67, 0x96, 0x64, - 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x0d, 0x82, 0xd3, 0x15, 0xf0, 0x10, 0xd0, 0x2f, - 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x7b, 0xcc, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x97, - 0xc0, 0x43, 0xb2, 0x23, 0x01, 0x00, 0x00, +var fileDescriptor_83bb407f794592d0 = []byte{ + // 217 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0xcf, 0x4f, 0x4b, 0x4b, 0xce, 0x48, 0xcc, 0xcc, 0x83, 0x33, 0xf4, 0x0a, + 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x24, 0xa0, 0x0a, 0xf4, 0x60, 0x34, 0x4c, 0x5e, 0x4a, 0x24, 0x3d, + 0x3f, 0x3d, 0x1f, 0xac, 0x48, 0x1f, 0xc4, 0x82, 0xa8, 0x57, 0xb2, 0xe4, 0xe2, 0xf6, 0x2d, 0x4e, + 0x0f, 0xce, 0x4c, 0xcf, 0x73, 0x49, 0x2c, 0x49, 0x14, 0x12, 0xe3, 0x62, 0x2b, 0xce, 0x4c, 0xcf, + 0x4b, 0x2d, 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0xf2, 0x84, 0x84, 0xb8, 0x58, 0x52, + 0x12, 0x4b, 0x12, 0x25, 0x98, 0x14, 0x18, 0x35, 0x78, 0x82, 0xc0, 0x6c, 0x25, 0x3f, 0x2e, 0x41, + 0x9f, 0xcc, 0xe2, 0x12, 0xff, 0x34, 0x64, 0x03, 0x2c, 0xb9, 0x58, 0x72, 0x8b, 0xd3, 0x8b, 0x25, + 0x18, 0x15, 0x98, 0x35, 0xb8, 0x8d, 0x54, 0xf5, 0x70, 0x39, 0x47, 0x0f, 0x49, 0x53, 0x10, 0x58, + 0x8b, 0x93, 0xeb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, + 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa7, 0x67, + 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xc3, 0x02, 0x00, 0x46, 0x57, 0x20, 0x82, + 0xa2, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x31, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x0f, 0x6f, 0x6b, 0x0e, 0x2b, 0x01, 0x00, 0x00, } func (m *MsgSignData) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/genesis.pb.go b/x/rewards/types/genesis.pb.go index 74d4ed74..d6e2d6f7 100644 --- a/x/rewards/types/genesis.pb.go +++ b/x/rewards/types/genesis.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: rewards/genesis.proto +// source: gitopia/rewards/genesis.proto package types import ( fmt "fmt" _ "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -35,7 +35,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_04e261dd19d07881, []int{0} + return fileDescriptor_af1ac91d1464842a, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -82,26 +82,26 @@ func init() { proto.RegisterType((*GenesisState)(nil), "gitopia.gitopia.rewards.GenesisState") } -func init() { proto.RegisterFile("rewards/genesis.proto", fileDescriptor_04e261dd19d07881) } +func init() { proto.RegisterFile("gitopia/rewards/genesis.proto", fileDescriptor_af1ac91d1464842a) } -var fileDescriptor_04e261dd19d07881 = []byte{ - // 245 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2d, 0x4a, 0x2d, 0x4f, - 0x2c, 0x4a, 0x29, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0x12, 0x4f, 0xcf, 0x2c, 0xc9, 0x2f, 0xc8, 0x4c, 0xd4, 0x83, 0xd1, 0x50, 0x65, 0x52, - 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x35, 0xfa, 0x20, 0x16, 0x44, 0xb9, 0x94, 0x08, 0xcc, 0x94, - 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0x21, 0x52, 0x70, 0xb3, 0xa1, 0x34, 0x54, 0x58, 0x2e, 0x39, - 0xbf, 0x38, 0x37, 0xbf, 0x58, 0x3f, 0x29, 0xb1, 0x38, 0x55, 0xbf, 0xcc, 0x30, 0x29, 0xb5, 0x24, - 0xd1, 0x50, 0x3f, 0x39, 0x3f, 0x33, 0x0f, 0x22, 0xaf, 0x34, 0x8d, 0x91, 0x8b, 0xc7, 0x1d, 0xe2, - 0x9a, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x77, 0x2e, 0x6e, 0xa8, 0x09, 0x3e, 0x99, 0xc5, 0x25, - 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0xf2, 0x7a, 0x38, 0x9c, 0xa8, 0x17, 0x04, 0xa6, 0x9d, - 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x42, 0xd6, 0x29, 0x64, 0xcb, 0xc5, 0x06, 0x71, 0xa0, 0x04, - 0xa3, 0x02, 0x23, 0x5e, 0x33, 0x02, 0xc0, 0xca, 0xa0, 0x66, 0x40, 0x35, 0x39, 0xb9, 0x9c, 0x78, - 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, - 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x56, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, - 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x28, 0x38, 0x5d, 0x01, 0xf3, 0xbe, 0x7e, 0x49, 0x65, 0x41, - 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x97, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa0, 0xe2, 0xf6, - 0x82, 0x7a, 0x01, 0x00, 0x00, +var fileDescriptor_af1ac91d1464842a = []byte{ + // 247 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xcf, 0x2c, 0xc9, + 0x2f, 0xc8, 0x4c, 0xd4, 0x2f, 0x4a, 0x2d, 0x4f, 0x2c, 0x4a, 0x29, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, + 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0x4a, 0xeb, 0xc1, 0x68, + 0xa8, 0x32, 0x29, 0x91, 0xf4, 0xfc, 0xf4, 0x7c, 0xb0, 0x1a, 0x7d, 0x10, 0x0b, 0xa2, 0x5c, 0x4a, + 0x06, 0xdd, 0xb4, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0x61, 0x52, 0x18, 0x76, 0x41, 0x69, 0xa8, + 0xb4, 0x5c, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0xb1, 0x7e, 0x52, 0x62, 0x71, 0xaa, 0x7e, 0x99, 0x61, + 0x52, 0x6a, 0x49, 0xa2, 0xa1, 0x7e, 0x72, 0x7e, 0x66, 0x1e, 0x44, 0x5e, 0x69, 0x1a, 0x23, 0x17, + 0x8f, 0x3b, 0xc4, 0x75, 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x42, 0xee, 0x5c, 0xdc, 0x50, 0x13, 0x7c, + 0x32, 0x8b, 0x4b, 0x24, 0x98, 0x14, 0x98, 0x35, 0xb8, 0x8d, 0xe4, 0xf5, 0x70, 0x38, 0x59, 0x2f, + 0x08, 0x4c, 0x3b, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x84, 0xac, 0x53, 0xc8, 0x96, 0x8b, 0x0d, + 0xe2, 0x50, 0x09, 0x46, 0x05, 0x46, 0xbc, 0x66, 0x04, 0x80, 0x95, 0x41, 0xcd, 0x80, 0x6a, 0x72, + 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, + 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xad, 0xf4, 0xcc, 0x92, + 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x98, 0xe7, 0x61, 0x74, 0x05, 0x3c, 0x18, 0x4a, + 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xbe, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x95, + 0x20, 0x47, 0x4f, 0x92, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/params.pb.go b/x/rewards/types/params.pb.go index 3e721209..491ab72e 100644 --- a/x/rewards/types/params.pb.go +++ b/x/rewards/types/params.pb.go @@ -1,14 +1,14 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: rewards/params.proto +// source: gitopia/rewards/params.proto package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -39,7 +39,7 @@ func (m *RewardPool) Reset() { *m = RewardPool{} } func (m *RewardPool) String() string { return proto.CompactTextString(m) } func (*RewardPool) ProtoMessage() {} func (*RewardPool) Descriptor() ([]byte, []int) { - return fileDescriptor_d4f6e2be212d3b23, []int{0} + return fileDescriptor_fe21394d7c37f32a, []int{0} } func (m *RewardPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -110,7 +110,7 @@ func (m *RewardSeries) Reset() { *m = RewardSeries{} } func (m *RewardSeries) String() string { return proto.CompactTextString(m) } func (*RewardSeries) ProtoMessage() {} func (*RewardSeries) Descriptor() ([]byte, []int) { - return fileDescriptor_d4f6e2be212d3b23, []int{1} + return fileDescriptor_fe21394d7c37f32a, []int{1} } func (m *RewardSeries) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -198,7 +198,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_d4f6e2be212d3b23, []int{2} + return fileDescriptor_fe21394d7c37f32a, []int{2} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -247,49 +247,49 @@ func init() { proto.RegisterType((*Params)(nil), "gitopia.gitopia.rewards.Params") } -func init() { proto.RegisterFile("rewards/params.proto", fileDescriptor_d4f6e2be212d3b23) } +func init() { proto.RegisterFile("gitopia/rewards/params.proto", fileDescriptor_fe21394d7c37f32a) } -var fileDescriptor_d4f6e2be212d3b23 = []byte{ - // 623 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0x41, 0x6f, 0xd3, 0x3c, - 0x18, 0xc7, 0x9b, 0x77, 0xef, 0x36, 0xe6, 0x75, 0xc0, 0xc2, 0xc6, 0xc2, 0x80, 0x04, 0x05, 0x21, - 0x10, 0x12, 0x8e, 0x06, 0x37, 0x6e, 0x2b, 0x68, 0x82, 0x13, 0x53, 0xb6, 0x03, 0x20, 0xa4, 0xc8, - 0x6d, 0xbc, 0xcc, 0x22, 0x89, 0x2b, 0xdb, 0x49, 0xbb, 0x2b, 0xe2, 0xc4, 0x69, 0x5f, 0x80, 0x0f, - 0xc2, 0x37, 0xd8, 0x09, 0xed, 0xc8, 0xa9, 0x43, 0xed, 0x37, 0xe8, 0x27, 0x40, 0xb1, 0x9d, 0x34, - 0x45, 0x42, 0x1d, 0xf4, 0xe4, 0x3c, 0xce, 0xf3, 0xfc, 0x9e, 0x7f, 0xfe, 0x7e, 0x62, 0xb0, 0xc1, - 0x70, 0x0f, 0xb1, 0x90, 0x7b, 0x5d, 0xc4, 0x50, 0xc2, 0x61, 0x97, 0x51, 0x41, 0xcd, 0xad, 0x88, - 0x08, 0xda, 0x25, 0x08, 0x96, 0xab, 0xce, 0xda, 0xde, 0x88, 0x68, 0x44, 0x65, 0x8e, 0x57, 0x3c, - 0xa9, 0xf4, 0x6d, 0xbb, 0x43, 0x79, 0x42, 0xb9, 0xd7, 0x46, 0x1c, 0x7b, 0xf9, 0x4e, 0x1b, 0x0b, - 0xb4, 0xe3, 0x75, 0x28, 0x49, 0xf5, 0x7b, 0x27, 0xa2, 0x34, 0x8a, 0xb1, 0x27, 0xa3, 0x76, 0x76, - 0xe4, 0x09, 0x92, 0x60, 0x2e, 0x50, 0xd2, 0x55, 0x09, 0xee, 0xf7, 0x05, 0x00, 0x7c, 0xd9, 0x62, - 0x9f, 0xd2, 0xd8, 0xfc, 0x6c, 0x80, 0xa6, 0xa0, 0x02, 0xc5, 0x01, 0x4a, 0x68, 0x96, 0x0a, 0xcb, - 0xb8, 0x67, 0x3c, 0x5a, 0x7d, 0x7a, 0x0b, 0xaa, 0x3e, 0xb0, 0xe8, 0x03, 0x75, 0x1f, 0xf8, 0x82, - 0x92, 0xb4, 0xb5, 0x77, 0x36, 0x70, 0x1a, 0xe3, 0x81, 0x73, 0xe3, 0x04, 0x25, 0xf1, 0x73, 0xb7, - 0x5e, 0xec, 0x7e, 0xba, 0x70, 0x1e, 0x46, 0x44, 0x1c, 0x67, 0x6d, 0xd8, 0xa1, 0x89, 0xa7, 0xb5, - 0xaa, 0xe5, 0x09, 0x0f, 0x3f, 0x7a, 0xe2, 0xa4, 0x8b, 0xb9, 0xe4, 0xf8, 0xab, 0xb2, 0x72, 0x57, - 0x16, 0x9a, 0x5f, 0x0c, 0x70, 0xb5, 0x13, 0x23, 0x92, 0xe0, 0xb0, 0x14, 0xf2, 0xdf, 0x2c, 0x21, - 0xaf, 0xb4, 0x90, 0x4d, 0x25, 0x64, 0xba, 0xfc, 0xaf, 0xa4, 0xac, 0xe9, 0x5a, 0x2d, 0xe6, 0x2d, - 0x00, 0x5c, 0x20, 0x26, 0x82, 0xc2, 0x3b, 0x6b, 0x41, 0xea, 0xd8, 0x86, 0xca, 0x58, 0x58, 0x1a, - 0x0b, 0x0f, 0x4b, 0x63, 0x5b, 0x77, 0xb5, 0x90, 0x75, 0x25, 0x64, 0x52, 0xeb, 0x9e, 0x5e, 0x38, - 0x86, 0xbf, 0x22, 0x37, 0x8a, 0x74, 0xd3, 0x07, 0x57, 0x70, 0x1a, 0x2a, 0xee, 0xff, 0x33, 0xb9, - 0xb7, 0x35, 0xf7, 0x9a, 0xe2, 0x96, 0x95, 0x8a, 0xba, 0x8c, 0xd3, 0xb0, 0x48, 0x75, 0xbf, 0x2e, - 0x82, 0xa6, 0x3a, 0xd0, 0x03, 0xcc, 0x08, 0xe6, 0xe6, 0x3b, 0x00, 0xb8, 0x7c, 0x0a, 0x68, 0x8a, - 0xf5, 0x79, 0xde, 0x87, 0x7f, 0x18, 0x33, 0x38, 0x99, 0x85, 0xd6, 0x66, 0xed, 0x1b, 0x2a, 0x80, - 0xeb, 0xaf, 0xa8, 0xe0, 0x4d, 0x8a, 0x6b, 0x68, 0xd1, 0xa3, 0xfa, 0x84, 0xfe, 0x11, 0x2d, 0x7a, - 0xb4, 0x42, 0x1f, 0xf6, 0xa8, 0x19, 0x80, 0x66, 0xf9, 0xe6, 0x98, 0xe1, 0xd2, 0xf6, 0x4b, 0xc1, - 0xb7, 0x26, 0xd3, 0x58, 0x47, 0xb8, 0xfe, 0xaa, 0xc6, 0x17, 0x91, 0xf9, 0x01, 0xe8, 0x30, 0x38, - 0xa2, 0x19, 0xd3, 0xf6, 0x5f, 0x8a, 0x7f, 0x73, 0x3c, 0x70, 0xcc, 0x29, 0x7e, 0x41, 0x70, 0x7d, - 0xed, 0xc5, 0x1e, 0xcd, 0x58, 0x9d, 0x4e, 0x72, 0x6c, 0x2d, 0xce, 0x45, 0x27, 0x39, 0x9e, 0xd0, - 0x49, 0x5e, 0xf7, 0x9d, 0x93, 0xbe, 0xb5, 0x34, 0x8f, 0xef, 0x9c, 0xf4, 0x2b, 0xdf, 0x0f, 0x48, - 0xbf, 0xe6, 0x3b, 0xc7, 0x39, 0x4e, 0xad, 0xe5, 0x79, 0x7c, 0x97, 0x88, 0xca, 0xf7, 0x03, 0x19, - 0x7d, 0x33, 0xc0, 0xd2, 0xbe, 0xbc, 0xf1, 0xcc, 0xd7, 0x60, 0x1d, 0xe7, 0x28, 0xce, 0x90, 0xa0, - 0x2c, 0x40, 0x61, 0xc8, 0x30, 0xe7, 0x72, 0x40, 0x57, 0x5a, 0x77, 0xc6, 0x03, 0xc7, 0xd2, 0x73, - 0xfe, 0x7b, 0x8a, 0xeb, 0x5f, 0xaf, 0xf6, 0x76, 0xd5, 0x96, 0x19, 0x82, 0x35, 0xa5, 0x28, 0x50, - 0xbd, 0xf4, 0x30, 0x3e, 0x98, 0xa1, 0x5b, 0xfd, 0x22, 0x2d, 0x6b, 0x3c, 0x70, 0x36, 0x54, 0xb7, - 0x29, 0x8a, 0xeb, 0x37, 0x59, 0x3d, 0xef, 0xe5, 0xd9, 0xd0, 0x36, 0xce, 0x87, 0xb6, 0xf1, 0x73, - 0x68, 0x1b, 0xa7, 0x23, 0xbb, 0x71, 0x3e, 0xb2, 0x1b, 0x3f, 0x46, 0x76, 0xe3, 0xfd, 0xe3, 0xda, - 0xdd, 0xa2, 0x5b, 0x55, 0x6b, 0xdf, 0x2b, 0x6f, 0x7a, 0x79, 0xc7, 0xb4, 0x97, 0xe4, 0xbf, 0xfd, - 0xec, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x44, 0x52, 0x68, 0x0d, 0x01, 0x06, 0x00, 0x00, +var fileDescriptor_fe21394d7c37f32a = []byte{ + // 624 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0xc1, 0x6e, 0xd3, 0x30, + 0x18, 0xc7, 0x1b, 0xc6, 0x36, 0xe6, 0x75, 0xc0, 0xc2, 0xc6, 0xc2, 0x18, 0x09, 0x0a, 0x42, 0x20, + 0x24, 0x1c, 0x0d, 0x6e, 0xdc, 0x56, 0xd0, 0x04, 0x27, 0xa6, 0x6c, 0x07, 0x40, 0x48, 0x91, 0xdb, + 0x78, 0x99, 0x45, 0x12, 0x57, 0xb6, 0x93, 0x76, 0x57, 0xc4, 0x89, 0xd3, 0x5e, 0x80, 0x07, 0xe1, + 0x0d, 0x76, 0x42, 0x3b, 0x72, 0xea, 0xd0, 0xfa, 0x06, 0x7d, 0x02, 0x14, 0xdb, 0x49, 0x53, 0x24, + 0xd4, 0x41, 0x4f, 0xae, 0xed, 0xef, 0xfb, 0x7d, 0xff, 0xfe, 0xfd, 0xe5, 0x03, 0x5b, 0x11, 0x11, + 0xb4, 0x4b, 0x90, 0xc7, 0x70, 0x0f, 0xb1, 0x90, 0x7b, 0x5d, 0xc4, 0x50, 0xc2, 0x61, 0x97, 0x51, + 0x41, 0xcd, 0x0d, 0x7d, 0x0b, 0xcb, 0x55, 0x47, 0x6d, 0xae, 0x45, 0x34, 0xa2, 0x32, 0xc6, 0x2b, + 0x7e, 0xa9, 0xf0, 0x4d, 0xbb, 0x43, 0x79, 0x42, 0xb9, 0xd7, 0x46, 0x1c, 0x7b, 0xf9, 0x76, 0x1b, + 0x0b, 0xb4, 0xed, 0x75, 0x28, 0x49, 0xf5, 0xbd, 0x13, 0x51, 0x1a, 0xc5, 0xd8, 0x93, 0xbb, 0x76, + 0x76, 0xe8, 0x09, 0x92, 0x60, 0x2e, 0x50, 0xd2, 0x55, 0x01, 0xee, 0x8f, 0x39, 0x00, 0x7c, 0x59, + 0x62, 0x8f, 0xd2, 0xd8, 0xfc, 0x62, 0x80, 0xa6, 0xa0, 0x02, 0xc5, 0x01, 0x4a, 0x68, 0x96, 0x0a, + 0xcb, 0xb8, 0x6f, 0x3c, 0x5e, 0x7e, 0x76, 0x07, 0xaa, 0x3a, 0xb0, 0xa8, 0x03, 0x75, 0x1d, 0xf8, + 0x92, 0x92, 0xb4, 0xb5, 0x7b, 0x3a, 0x70, 0x1a, 0xa3, 0x81, 0x73, 0xeb, 0x18, 0x25, 0xf1, 0x0b, + 0xb7, 0x9e, 0xec, 0x7e, 0x3e, 0x77, 0x1e, 0x45, 0x44, 0x1c, 0x65, 0x6d, 0xd8, 0xa1, 0x89, 0xa7, + 0xb5, 0xaa, 0xe5, 0x29, 0x0f, 0x3f, 0x79, 0xe2, 0xb8, 0x8b, 0xb9, 0xe4, 0xf8, 0xcb, 0x32, 0x73, + 0x47, 0x26, 0x9a, 0x5f, 0x0d, 0x70, 0xbd, 0x13, 0x23, 0x92, 0xe0, 0xb0, 0x14, 0x72, 0x65, 0x9a, + 0x90, 0xd7, 0x5a, 0xc8, 0xba, 0x12, 0x32, 0x99, 0xfe, 0x4f, 0x52, 0x56, 0x74, 0xae, 0x16, 0xf3, + 0x0e, 0x00, 0x2e, 0x10, 0x13, 0x41, 0xe1, 0x9d, 0x35, 0x27, 0x75, 0x6c, 0x42, 0x65, 0x2c, 0x2c, + 0x8d, 0x85, 0x07, 0xa5, 0xb1, 0xad, 0x7b, 0x5a, 0xc8, 0xaa, 0x12, 0x32, 0xce, 0x75, 0x4f, 0xce, + 0x1d, 0xc3, 0x5f, 0x92, 0x07, 0x45, 0xb8, 0xe9, 0x83, 0x6b, 0x38, 0x0d, 0x15, 0xf7, 0xea, 0x54, + 0xee, 0x5d, 0xcd, 0xbd, 0xa1, 0xb8, 0x65, 0xa6, 0xa2, 0x2e, 0xe2, 0x34, 0x2c, 0x42, 0xdd, 0x6f, + 0xf3, 0xa0, 0xa9, 0x1e, 0x74, 0x1f, 0x33, 0x82, 0xb9, 0xf9, 0x1e, 0x00, 0x2e, 0x7f, 0x05, 0x34, + 0xc5, 0xfa, 0x3d, 0x1f, 0xc0, 0xbf, 0xb4, 0x19, 0x1c, 0xf7, 0x42, 0x6b, 0xbd, 0xf6, 0x1f, 0x2a, + 0x80, 0xeb, 0x2f, 0xa9, 0xcd, 0xdb, 0x14, 0xd7, 0xd0, 0xa2, 0x47, 0xf5, 0x0b, 0xfd, 0x27, 0x5a, + 0xf4, 0x68, 0x85, 0x3e, 0xe8, 0x51, 0x33, 0x00, 0xcd, 0xf2, 0xe6, 0x88, 0xe1, 0xd2, 0xf6, 0x4b, + 0xc1, 0x37, 0xc6, 0xdd, 0x58, 0x47, 0xb8, 0xfe, 0xb2, 0xc6, 0x17, 0x3b, 0xf3, 0x23, 0xd0, 0xdb, + 0xe0, 0x90, 0x66, 0x4c, 0xdb, 0x7f, 0x29, 0xfe, 0xed, 0xd1, 0xc0, 0x31, 0x27, 0xf8, 0x05, 0xc1, + 0xf5, 0xb5, 0x17, 0xbb, 0x34, 0x63, 0x75, 0x3a, 0xc9, 0xb1, 0x35, 0x3f, 0x13, 0x9d, 0xe4, 0x78, + 0x4c, 0x27, 0x79, 0xdd, 0x77, 0x4e, 0xfa, 0xd6, 0xc2, 0x2c, 0xbe, 0x73, 0xd2, 0xaf, 0x7c, 0xdf, + 0x27, 0xfd, 0x9a, 0xef, 0x1c, 0xe7, 0x38, 0xb5, 0x16, 0x67, 0xf1, 0x5d, 0x22, 0x2a, 0xdf, 0xf7, + 0xe5, 0xee, 0xbb, 0x01, 0x16, 0xf6, 0xe4, 0xc4, 0x33, 0xdf, 0x80, 0x55, 0x9c, 0xa3, 0x38, 0x43, + 0x82, 0xb2, 0x00, 0x85, 0x21, 0xc3, 0x9c, 0xcb, 0x06, 0x5d, 0x6a, 0x6d, 0x8d, 0x06, 0x8e, 0xa5, + 0xfb, 0xfc, 0xcf, 0x10, 0xd7, 0xbf, 0x59, 0x9d, 0xed, 0xa8, 0x23, 0x33, 0x04, 0x2b, 0x4a, 0x51, + 0xa0, 0x6a, 0xe9, 0x66, 0x7c, 0x38, 0x45, 0xb7, 0xfa, 0x44, 0x5a, 0xd6, 0x68, 0xe0, 0xac, 0xa9, + 0x6a, 0x13, 0x14, 0xd7, 0x6f, 0xb2, 0x7a, 0xdc, 0xab, 0xd3, 0x0b, 0xdb, 0x38, 0xbb, 0xb0, 0x8d, + 0x5f, 0x17, 0xb6, 0x71, 0x32, 0xb4, 0x1b, 0x67, 0x43, 0xbb, 0xf1, 0x73, 0x68, 0x37, 0x3e, 0x3c, + 0xa9, 0xcd, 0x96, 0x72, 0xbe, 0x97, 0x6b, 0xbf, 0x9a, 0xf4, 0x72, 0xc6, 0xb4, 0x17, 0xe4, 0xb7, + 0xfd, 0xfc, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x37, 0xfb, 0x38, 0xa7, 0x09, 0x06, 0x00, 0x00, } func (m *RewardPool) Marshal() (dAtA []byte, err error) { @@ -312,7 +312,7 @@ func (m *RewardPool) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime):]) if err1 != nil { return 0, err1 } @@ -320,7 +320,7 @@ func (m *RewardPool) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintParams(dAtA, i, uint64(n1)) i-- dAtA[i] = 0x22 - n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime):]) + n2, err2 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime):]) if err2 != nil { return 0, err2 } @@ -521,9 +521,9 @@ func (m *RewardPool) Size() (n int) { n += 1 + l + sovParams(uint64(l)) l = m.ClaimedAmount.Size() n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime) n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime) n += 1 + l + sovParams(uint64(l)) return n } @@ -712,7 +712,7 @@ func (m *RewardPool) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -745,7 +745,7 @@ func (m *RewardPool) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/rewards/types/query.pb.go b/x/rewards/types/query.pb.go index 30e4da73..d7d246c4 100644 --- a/x/rewards/types/query.pb.go +++ b/x/rewards/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: rewards/query.proto +// source: gitopia/rewards/query.proto package types @@ -8,9 +8,9 @@ import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -39,7 +39,7 @@ func (m *QueryTasksRequest) Reset() { *m = QueryTasksRequest{} } func (m *QueryTasksRequest) String() string { return proto.CompactTextString(m) } func (*QueryTasksRequest) ProtoMessage() {} func (*QueryTasksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5ddc078ee02fb5e8, []int{0} + return fileDescriptor_16b85c5f22209df1, []int{0} } func (m *QueryTasksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ func (m *QueryTasksResponse) Reset() { *m = QueryTasksResponse{} } func (m *QueryTasksResponse) String() string { return proto.CompactTextString(m) } func (*QueryTasksResponse) ProtoMessage() {} func (*QueryTasksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5ddc078ee02fb5e8, []int{1} + return fileDescriptor_16b85c5f22209df1, []int{1} } func (m *QueryTasksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,7 +127,7 @@ func (m *QueryGetRewardRequest) Reset() { *m = QueryGetRewardRequest{} } func (m *QueryGetRewardRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardRequest) ProtoMessage() {} func (*QueryGetRewardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5ddc078ee02fb5e8, []int{2} + return fileDescriptor_16b85c5f22209df1, []int{2} } func (m *QueryGetRewardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -176,7 +176,7 @@ func (m *QueryGetRewardResponseReward) Reset() { *m = QueryGetRewardResp func (m *QueryGetRewardResponseReward) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardResponseReward) ProtoMessage() {} func (*QueryGetRewardResponseReward) Descriptor() ([]byte, []int) { - return fileDescriptor_5ddc078ee02fb5e8, []int{3} + return fileDescriptor_16b85c5f22209df1, []int{3} } func (m *QueryGetRewardResponseReward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -255,7 +255,7 @@ func (m *QueryGetRewardResponse) Reset() { *m = QueryGetRewardResponse{} func (m *QueryGetRewardResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardResponse) ProtoMessage() {} func (*QueryGetRewardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5ddc078ee02fb5e8, []int{4} + return fileDescriptor_16b85c5f22209df1, []int{4} } func (m *QueryGetRewardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -299,7 +299,7 @@ func (m *QueryAllRewardsRequest) Reset() { *m = QueryAllRewardsRequest{} func (m *QueryAllRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRewardsRequest) ProtoMessage() {} func (*QueryAllRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5ddc078ee02fb5e8, []int{5} + return fileDescriptor_16b85c5f22209df1, []int{5} } func (m *QueryAllRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -344,7 +344,7 @@ func (m *QueryAllRewardsResponse) Reset() { *m = QueryAllRewardsResponse func (m *QueryAllRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRewardsResponse) ProtoMessage() {} func (*QueryAllRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5ddc078ee02fb5e8, []int{6} + return fileDescriptor_16b85c5f22209df1, []int{6} } func (m *QueryAllRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -397,54 +397,54 @@ func init() { proto.RegisterType((*QueryAllRewardsResponse)(nil), "gitopia.gitopia.rewards.QueryAllRewardsResponse") } -func init() { proto.RegisterFile("rewards/query.proto", fileDescriptor_5ddc078ee02fb5e8) } +func init() { proto.RegisterFile("gitopia/rewards/query.proto", fileDescriptor_16b85c5f22209df1) } -var fileDescriptor_5ddc078ee02fb5e8 = []byte{ - // 691 bytes of a gzipped FileDescriptorProto +var fileDescriptor_16b85c5f22209df1 = []byte{ + // 694 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xcf, 0x4f, 0x13, 0x41, - 0x14, 0xc7, 0xbb, 0x40, 0x4b, 0x18, 0x82, 0x3f, 0x46, 0x91, 0xda, 0xe0, 0x96, 0xec, 0x41, 0x9a, + 0x14, 0xc7, 0xbb, 0x40, 0x4b, 0x18, 0x82, 0x3f, 0x26, 0x22, 0xb5, 0xc2, 0x96, 0xec, 0x41, 0x9a, 0x2a, 0x3b, 0x50, 0xe5, 0xa0, 0x17, 0x43, 0x31, 0x72, 0x54, 0x37, 0x9e, 0xbc, 0xe0, 0xb4, 0x9d, - 0xac, 0x13, 0x76, 0x77, 0x96, 0x9d, 0xa9, 0x4a, 0x08, 0x1e, 0x38, 0x79, 0x34, 0x7a, 0xf2, 0xe4, - 0xc1, 0x3f, 0xc0, 0x7f, 0x83, 0x23, 0x89, 0x17, 0xe3, 0x01, 0x0d, 0xf8, 0x17, 0xf8, 0x17, 0x98, - 0x9d, 0x79, 0x5b, 0x16, 0xb0, 0x80, 0x49, 0x4f, 0xc3, 0x0e, 0xef, 0xfb, 0xbe, 0x9f, 0x7d, 0xfb, - 0xde, 0x2b, 0xba, 0x92, 0xb0, 0xd7, 0x34, 0xe9, 0x48, 0xb2, 0xde, 0x65, 0xc9, 0x86, 0x1b, 0x27, - 0x42, 0x09, 0x3c, 0xe5, 0x73, 0x25, 0x62, 0x4e, 0xdd, 0xec, 0x84, 0xa0, 0xca, 0x55, 0x5f, 0xf8, - 0x42, 0xc7, 0x90, 0xf4, 0x2f, 0x13, 0x5e, 0x99, 0xf6, 0x85, 0xf0, 0x03, 0x46, 0x68, 0xcc, 0x09, - 0x8d, 0x22, 0xa1, 0xa8, 0xe2, 0x22, 0x92, 0xf0, 0xdf, 0x7a, 0x5b, 0xc8, 0x50, 0x48, 0xd2, 0xa2, - 0x92, 0x19, 0x17, 0xf2, 0x6a, 0xa1, 0xc5, 0x14, 0x5d, 0x20, 0x31, 0xf5, 0x79, 0xa4, 0x83, 0x21, - 0x16, 0x67, 0x34, 0x8a, 0xca, 0x35, 0xb8, 0x9b, 0xcc, 0xee, 0xe0, 0x84, 0x6b, 0x3b, 0x9f, 0x36, - 0x4b, 0xd8, 0x16, 0x1c, 0x52, 0x39, 0x73, 0xe8, 0xf2, 0xd3, 0xd4, 0xec, 0x19, 0x95, 0x6b, 0xd2, - 0x63, 0xeb, 0x5d, 0x26, 0x15, 0x2e, 0xa3, 0x51, 0xda, 0xe9, 0x24, 0x4c, 0xca, 0xb2, 0x35, 0x63, - 0xd5, 0xc6, 0xbc, 0xec, 0xd1, 0x79, 0x8c, 0x70, 0x3e, 0x5c, 0xc6, 0x22, 0x92, 0x0c, 0xdf, 0x43, - 0xc5, 0x94, 0x24, 0x8d, 0x1e, 0xae, 0x8d, 0x37, 0x6e, 0xb8, 0x7d, 0x0a, 0xe3, 0xa6, 0xb2, 0xe6, - 0xc8, 0xce, 0x5e, 0xb5, 0xe0, 0x19, 0x85, 0xb3, 0x88, 0x26, 0x75, 0xc2, 0x15, 0xa6, 0x3c, 0x1d, - 0x94, 0x31, 0x4c, 0xa3, 0xb1, 0x84, 0xb5, 0x79, 0xcc, 0x59, 0xa4, 0x80, 0xe2, 0xf0, 0xc2, 0xf9, - 0x3a, 0x82, 0xa6, 0x8f, 0xeb, 0x0c, 0x8c, 0x79, 0x3a, 0x5d, 0x8e, 0x5b, 0xa8, 0x44, 0x43, 0xd1, - 0x8d, 0x54, 0x79, 0x68, 0xc6, 0xaa, 0x8d, 0x37, 0xae, 0xbb, 0xa6, 0x4c, 0x6e, 0x5a, 0x26, 0x17, - 0xca, 0xe4, 0x2e, 0x0b, 0x1e, 0x35, 0x49, 0x4a, 0xbb, 0xfd, 0xb3, 0x3a, 0xeb, 0x73, 0xf5, 0xb2, - 0xdb, 0x72, 0xdb, 0x22, 0x24, 0x50, 0x53, 0x73, 0xcc, 0xc9, 0xce, 0x1a, 0x51, 0x1b, 0x31, 0x93, - 0x5a, 0xe0, 0x41, 0xe6, 0xb4, 0x88, 0xed, 0x84, 0x51, 0x25, 0x92, 0xf2, 0xb0, 0x29, 0x22, 0x3c, - 0xe2, 0x75, 0x74, 0xa1, 0x1d, 0x50, 0x1e, 0xb2, 0xce, 0x2a, 0x50, 0x8c, 0x0c, 0x9c, 0x62, 0x02, - 0x1c, 0x96, 0x0c, 0x4c, 0x17, 0x5d, 0xd2, 0x17, 0xb4, 0x15, 0xb0, 0xcc, 0xb4, 0x38, 0x70, 0xd3, - 0x8b, 0x3d, 0x0f, 0xb0, 0x7d, 0x67, 0xa1, 0x4a, 0xc2, 0x42, 0xca, 0x23, 0x1e, 0xf9, 0xab, 0x27, - 0x08, 0x4a, 0x03, 0x27, 0x28, 0xf7, 0xdc, 0x96, 0x8f, 0xa2, 0x38, 0x6f, 0xd1, 0xb5, 0x7f, 0x37, - 0x0c, 0xee, 0xa0, 0x92, 0xe9, 0x4f, 0xdd, 0x27, 0xe3, 0x8d, 0xc5, 0xbe, 0xed, 0x7b, 0x5a, 0xc7, - 0x35, 0x27, 0x53, 0xd6, 0x3f, 0x7b, 0xd5, 0x89, 0x0d, 0x1a, 0x06, 0xf7, 0x1d, 0xa3, 0x71, 0x3c, - 0xc8, 0xed, 0xbc, 0x00, 0xff, 0xa5, 0x20, 0x30, 0x82, 0xde, 0xb4, 0x3d, 0x42, 0xe8, 0x70, 0xc2, - 0x81, 0xe1, 0xe6, 0x91, 0x9a, 0x98, 0xa5, 0x93, 0x55, 0xe6, 0x09, 0xf5, 0x19, 0x68, 0xbd, 0x9c, - 0xd2, 0xf9, 0x62, 0xa1, 0xa9, 0x13, 0x16, 0xf0, 0x8e, 0x0f, 0xd0, 0x28, 0xbc, 0x04, 0xcc, 0x68, - 0xb5, 0xef, 0x4b, 0xc2, 0xeb, 0x98, 0x29, 0xcd, 0x54, 0x78, 0xe5, 0x08, 0xa4, 0x99, 0x9a, 0xd9, - 0x33, 0x21, 0xa1, 0x40, 0x39, 0x69, 0xe3, 0xc7, 0x30, 0x2a, 0x6a, 0x4a, 0xfc, 0xc1, 0x42, 0x45, - 0xbd, 0x47, 0x70, 0xfd, 0xf4, 0x8a, 0xe7, 0x77, 0x53, 0xe5, 0xd6, 0xb9, 0x62, 0x8d, 0xb1, 0x33, - 0xbf, 0xfd, 0xed, 0xf7, 0xc7, 0xa1, 0x3a, 0xae, 0x11, 0x08, 0xee, 0x9d, 0xf9, 0x0d, 0x2a, 0xc9, - 0x26, 0xec, 0xb7, 0x2d, 0xfc, 0xd9, 0x42, 0x25, 0x58, 0x21, 0xee, 0xb9, 0xfb, 0xc0, 0x90, 0x91, - 0xff, 0xec, 0x1b, 0xe7, 0xae, 0xa6, 0x73, 0xf1, 0xed, 0xbe, 0x74, 0xd9, 0xb9, 0xd9, 0x5b, 0x5d, - 0x5b, 0xf8, 0x93, 0x85, 0x10, 0x7c, 0xde, 0xa5, 0x20, 0xc0, 0x67, 0xb8, 0x9e, 0x68, 0xb7, 0xca, - 0xfc, 0xf9, 0x05, 0xc0, 0x59, 0xd3, 0x9c, 0x0e, 0x9e, 0x39, 0x8b, 0xb3, 0xf9, 0x70, 0x67, 0xdf, - 0xb6, 0x76, 0xf7, 0x6d, 0xeb, 0xd7, 0xbe, 0x6d, 0xbd, 0x3f, 0xb0, 0x0b, 0xbb, 0x07, 0x76, 0xe1, - 0xfb, 0x81, 0x5d, 0x78, 0x5e, 0xcf, 0x4d, 0xf0, 0xf1, 0x2c, 0x6f, 0x0e, 0xbf, 0x46, 0x3a, 0xc9, - 0xad, 0x92, 0xfe, 0x69, 0xba, 0xf3, 0x37, 0x00, 0x00, 0xff, 0xff, 0x90, 0x32, 0x84, 0x2d, 0x75, - 0x07, 0x00, 0x00, + 0xac, 0x13, 0xb6, 0x3b, 0xcb, 0xce, 0x54, 0x25, 0x04, 0x0f, 0x9c, 0x3c, 0x1a, 0x3d, 0x79, 0xf2, + 0xe0, 0x1f, 0xe0, 0xbf, 0xc1, 0x91, 0xc4, 0x8b, 0xf1, 0x80, 0x06, 0xfc, 0x0b, 0xfc, 0x0b, 0xcc, + 0xce, 0xbc, 0x2d, 0x4b, 0xa1, 0x80, 0x49, 0x4f, 0xd3, 0xdd, 0x79, 0xdf, 0xf9, 0x7e, 0xe6, 0xed, + 0x7b, 0xaf, 0xe8, 0xa6, 0xcf, 0x95, 0x88, 0x38, 0x25, 0x31, 0x7b, 0x43, 0xe3, 0x96, 0x24, 0x1b, + 0x1d, 0x16, 0x6f, 0xba, 0x51, 0x2c, 0x94, 0xc0, 0x53, 0xb0, 0xe9, 0xa6, 0x2b, 0x04, 0x95, 0xae, + 0xf9, 0xc2, 0x17, 0x3a, 0x86, 0x24, 0xbf, 0x4c, 0x78, 0x69, 0xda, 0x17, 0xc2, 0x0f, 0x18, 0xa1, + 0x11, 0x27, 0x34, 0x0c, 0x85, 0xa2, 0x8a, 0x8b, 0x50, 0xc2, 0x6e, 0xb5, 0x29, 0x64, 0x5b, 0x48, + 0xd2, 0xa0, 0x92, 0x19, 0x17, 0xf2, 0x7a, 0xb1, 0xc1, 0x14, 0x5d, 0x24, 0x11, 0xf5, 0x79, 0xa8, + 0x83, 0x21, 0xb6, 0xd4, 0x4b, 0xa5, 0xa8, 0x5c, 0x87, 0xbd, 0x99, 0xde, 0x3d, 0x58, 0x61, 0xdb, + 0xce, 0xda, 0xa4, 0x06, 0x4d, 0xc1, 0xe1, 0x68, 0x67, 0x1e, 0x5d, 0x7d, 0x96, 0x98, 0x3f, 0xa7, + 0x72, 0x5d, 0x7a, 0x6c, 0xa3, 0xc3, 0xa4, 0xc2, 0x45, 0x34, 0x4a, 0x5b, 0xad, 0x98, 0x49, 0x59, + 0xb4, 0x66, 0xad, 0xca, 0x98, 0x97, 0x3e, 0x3a, 0x4f, 0x10, 0xce, 0x86, 0xcb, 0x48, 0x84, 0x92, + 0xe1, 0xfb, 0x28, 0x9f, 0x10, 0x25, 0xd1, 0xc3, 0x95, 0xf1, 0xda, 0x8c, 0xdb, 0x27, 0x51, 0x6e, + 0x22, 0xab, 0x8f, 0xec, 0xee, 0x97, 0x73, 0x9e, 0x51, 0x38, 0x4b, 0x68, 0x52, 0x1f, 0xb8, 0xca, + 0x94, 0xa7, 0x83, 0x52, 0x86, 0x69, 0x34, 0x16, 0xb3, 0x26, 0x8f, 0x38, 0x0b, 0x15, 0x50, 0x1c, + 0xbd, 0x70, 0xbe, 0x8d, 0xa0, 0xe9, 0x5e, 0x9d, 0x81, 0x31, 0x4f, 0x67, 0xcb, 0x71, 0x03, 0x15, + 0x68, 0x5b, 0x74, 0x42, 0x55, 0x1c, 0x9a, 0xb5, 0x2a, 0xe3, 0xb5, 0x1b, 0xae, 0x49, 0x93, 0x9b, + 0xa4, 0xc9, 0x85, 0x34, 0xb9, 0x2b, 0x82, 0x87, 0x75, 0x92, 0xd0, 0xee, 0xfc, 0x2a, 0xcf, 0xf9, + 0x5c, 0xbd, 0xea, 0x34, 0xdc, 0xa6, 0x68, 0x13, 0xc8, 0xa9, 0x59, 0xe6, 0x65, 0x6b, 0x9d, 0xa8, + 0xcd, 0x88, 0x49, 0x2d, 0xf0, 0xe0, 0xe4, 0x24, 0x89, 0xcd, 0x98, 0x51, 0x25, 0xe2, 0xe2, 0xb0, + 0x49, 0x22, 0x3c, 0xe2, 0x0d, 0x74, 0xa9, 0x19, 0x50, 0xde, 0x66, 0xad, 0x35, 0xa0, 0x18, 0x19, + 0x38, 0xc5, 0x04, 0x38, 0x2c, 0x1b, 0x98, 0x0e, 0xba, 0xa2, 0x5f, 0xd0, 0x46, 0xc0, 0x52, 0xd3, + 0xfc, 0xc0, 0x4d, 0x2f, 0x77, 0x3d, 0xc0, 0xf6, 0xbd, 0x85, 0x4a, 0x31, 0x6b, 0x53, 0x1e, 0xf2, + 0xd0, 0x5f, 0x3b, 0x41, 0x50, 0x18, 0x38, 0x41, 0xb1, 0xeb, 0xb6, 0x72, 0x1c, 0xc5, 0x79, 0x87, + 0xae, 0x9f, 0x5e, 0x30, 0xb8, 0x85, 0x0a, 0xa6, 0x3e, 0x75, 0x9d, 0x8c, 0xd7, 0x96, 0xfa, 0x96, + 0xef, 0x59, 0x15, 0x57, 0x9f, 0x4c, 0x58, 0xff, 0xee, 0x97, 0x27, 0x36, 0x69, 0x3b, 0x78, 0xe0, + 0x18, 0x8d, 0xe3, 0xc1, 0xd9, 0xce, 0x4b, 0xf0, 0x5f, 0x0e, 0x02, 0x23, 0xe8, 0x76, 0xdb, 0x63, + 0x84, 0x8e, 0x3a, 0x1e, 0x18, 0x6e, 0x1d, 0xcb, 0x89, 0x19, 0x42, 0x69, 0x66, 0x9e, 0x52, 0x9f, + 0x81, 0xd6, 0xcb, 0x28, 0x9d, 0xaf, 0x16, 0x9a, 0x3a, 0x61, 0x01, 0x77, 0x7c, 0x88, 0x46, 0xe1, + 0x12, 0xd0, 0xa3, 0xe5, 0xbe, 0x97, 0x84, 0xeb, 0x98, 0x2e, 0x4d, 0x55, 0x78, 0xf5, 0x18, 0xa4, + 0xe9, 0x9a, 0xb9, 0x73, 0x21, 0x21, 0x41, 0x19, 0x69, 0xed, 0xe7, 0x30, 0xca, 0x6b, 0x4a, 0xfc, + 0xd1, 0x42, 0x79, 0x3d, 0x47, 0x70, 0xf5, 0xec, 0x8c, 0x67, 0x67, 0x53, 0xe9, 0xf6, 0x85, 0x62, + 0x8d, 0xb1, 0xb3, 0xb0, 0xf3, 0xfd, 0xcf, 0xa7, 0xa1, 0x2a, 0xae, 0x90, 0x74, 0x4a, 0x9e, 0x36, + 0x49, 0x25, 0xd9, 0x82, 0xf9, 0xb6, 0x8d, 0xbf, 0x58, 0xa8, 0x00, 0x23, 0xc4, 0xbd, 0x70, 0x1d, + 0x18, 0x32, 0xf2, 0x9f, 0x75, 0xe3, 0xdc, 0xd3, 0x74, 0x2e, 0xbe, 0xd3, 0x97, 0x2e, 0x5d, 0xb7, + 0xba, 0xa3, 0x6b, 0x1b, 0x7f, 0xb6, 0x10, 0x82, 0xcf, 0xbb, 0x1c, 0x04, 0xf8, 0x1c, 0xd7, 0x13, + 0xe5, 0x56, 0x5a, 0xb8, 0xb8, 0x00, 0x38, 0x2b, 0x9a, 0xd3, 0xc1, 0xb3, 0xe7, 0x71, 0xd6, 0x1f, + 0xed, 0x1e, 0xd8, 0xd6, 0xde, 0x81, 0x6d, 0xfd, 0x3e, 0xb0, 0xad, 0x0f, 0x87, 0x76, 0x6e, 0xef, + 0xd0, 0xce, 0xfd, 0x38, 0xb4, 0x73, 0x2f, 0xaa, 0x99, 0x0e, 0xee, 0x3d, 0xe5, 0xed, 0xd1, 0xd7, + 0x48, 0x3a, 0xb9, 0x51, 0xd0, 0x7f, 0x4d, 0x77, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xe4, + 0xcc, 0x96, 0x8d, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -602,7 +602,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "rewards/query.proto", + Metadata: "gitopia/rewards/query.proto", } func (m *QueryTasksRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/query.pb.gw.go b/x/rewards/types/query.pb.gw.go index 401baa84..2d7b75bb 100644 --- a/x/rewards/types/query.pb.gw.go +++ b/x/rewards/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: rewards/query.proto +// source: gitopia/rewards/query.proto /* Package types is a reverse proxy. @@ -357,11 +357,11 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Tasks_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"gitopia", "rewards", "tasks", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Tasks_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"gitopia", "rewards", "tasks", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Reward_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "rewards", "recipient"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Reward_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "rewards", "recipient"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RewardsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1}, []string{"gitopia", "rewards"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RewardsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1}, []string{"gitopia", "rewards"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/rewards/types/rewards.pb.go b/x/rewards/types/rewards.pb.go index f6ebc887..27ff135c 100644 --- a/x/rewards/types/rewards.pb.go +++ b/x/rewards/types/rewards.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: rewards/rewards.proto +// source: gitopia/rewards/rewards.proto package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *Reward) Reset() { *m = Reward{} } func (m *Reward) String() string { return proto.CompactTextString(m) } func (*Reward) ProtoMessage() {} func (*Reward) Descriptor() ([]byte, []int) { - return fileDescriptor_35285a44c4c54379, []int{0} + return fileDescriptor_02cca378d543f1ef, []int{0} } func (m *Reward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -104,30 +104,30 @@ func init() { proto.RegisterType((*Reward)(nil), "gitopia.gitopia.rewards.Reward") } -func init() { proto.RegisterFile("rewards/rewards.proto", fileDescriptor_35285a44c4c54379) } +func init() { proto.RegisterFile("gitopia/rewards/rewards.proto", fileDescriptor_02cca378d543f1ef) } -var fileDescriptor_35285a44c4c54379 = []byte{ - // 318 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xcf, 0x4e, 0x32, 0x31, - 0x14, 0xc5, 0xa7, 0x1f, 0x9f, 0x18, 0x6a, 0x74, 0x31, 0xf1, 0xcf, 0x40, 0x4c, 0x21, 0x6e, 0x24, - 0x26, 0xb6, 0x41, 0x9f, 0x40, 0xe4, 0x09, 0xd8, 0x98, 0xb8, 0x21, 0x9d, 0x4e, 0x33, 0x34, 0x3a, - 0x73, 0xc7, 0xb6, 0x88, 0x6c, 0x4d, 0xdc, 0xfb, 0x06, 0xbe, 0x0e, 0x4b, 0x96, 0xae, 0xd4, 0xc0, - 0x8b, 0x18, 0xa6, 0x45, 0x65, 0xcf, 0xea, 0xb4, 0xbd, 0xb7, 0xe7, 0x77, 0x92, 0x7b, 0xf1, 0x81, - 0x96, 0x63, 0xae, 0x13, 0xc3, 0xbc, 0xd2, 0x42, 0x83, 0x85, 0xf0, 0x28, 0x55, 0x16, 0x0a, 0xc5, - 0xe9, 0x4a, 0x7d, 0xb9, 0xb1, 0x9f, 0x42, 0x0a, 0x65, 0x0f, 0x5b, 0x9e, 0x5c, 0x7b, 0x83, 0x08, - 0x30, 0x19, 0x18, 0x16, 0x73, 0x23, 0xd9, 0x63, 0x27, 0x96, 0x96, 0x77, 0x98, 0x00, 0x95, 0xbb, - 0xfa, 0xc9, 0x5b, 0x05, 0x57, 0xfb, 0xa5, 0x43, 0x78, 0x8c, 0x6b, 0x5a, 0x0a, 0x55, 0x28, 0x99, - 0xdb, 0x08, 0xb5, 0x50, 0xbb, 0xd6, 0xff, 0x7d, 0x08, 0x63, 0x5c, 0xe5, 0x19, 0x8c, 0x72, 0x1b, - 0xfd, 0x6b, 0xa1, 0xf6, 0xce, 0x45, 0x9d, 0x3a, 0x67, 0xba, 0x74, 0xa6, 0xde, 0x99, 0x5e, 0x83, - 0xca, 0xbb, 0x6c, 0xfa, 0xd1, 0x0c, 0x9e, 0x3f, 0x9b, 0xa7, 0xa9, 0xb2, 0xc3, 0x51, 0x4c, 0x05, - 0x64, 0xcc, 0xc7, 0x70, 0x72, 0x6e, 0x92, 0x3b, 0x66, 0x27, 0x85, 0x34, 0xe5, 0x87, 0xbe, 0x77, - 0x0e, 0x23, 0xbc, 0x2d, 0xb4, 0xe4, 0x16, 0x74, 0x54, 0x29, 0xf9, 0xab, 0x6b, 0xf8, 0x80, 0xf7, - 0xc4, 0x3d, 0x57, 0x99, 0x4c, 0x06, 0x3e, 0xc5, 0xff, 0x8d, 0xa7, 0xd8, 0xf5, 0x84, 0x2b, 0x17, - 0xe6, 0x05, 0xe1, 0xfa, 0x3a, 0x73, 0x30, 0x56, 0x76, 0x38, 0x48, 0xa4, 0xe0, 0x93, 0x68, 0x6b, - 0xe3, 0xf8, 0xc3, 0x35, 0xfc, 0x8d, 0xb2, 0xc3, 0xde, 0x92, 0xd4, 0xed, 0x4d, 0xe7, 0x04, 0xcd, - 0xe6, 0x04, 0x7d, 0xcd, 0x09, 0x7a, 0x5d, 0x90, 0x60, 0xb6, 0x20, 0xc1, 0xfb, 0x82, 0x04, 0xb7, - 0x67, 0x7f, 0xac, 0xfd, 0x36, 0xfc, 0xe8, 0xd3, 0x6a, 0x6d, 0x1c, 0x22, 0xae, 0x96, 0xe3, 0xbe, - 0xfc, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xec, 0xd2, 0x84, 0x56, 0x02, 0x00, 0x00, +var fileDescriptor_02cca378d543f1ef = []byte{ + // 320 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xb1, 0x4e, 0xf3, 0x30, + 0x14, 0x85, 0xe3, 0xbf, 0x3f, 0x45, 0x35, 0x82, 0x21, 0x42, 0x90, 0x56, 0xe0, 0x56, 0x2c, 0x54, + 0x48, 0xd8, 0x2a, 0x3c, 0x01, 0xa5, 0x4f, 0xd0, 0x05, 0x89, 0xa5, 0x72, 0x1c, 0x2b, 0xb5, 0x20, + 0xb9, 0x21, 0x76, 0x29, 0x5d, 0x91, 0xd8, 0x79, 0x03, 0x5e, 0xa7, 0x63, 0x47, 0x26, 0x40, 0xed, + 0x8b, 0xa0, 0x38, 0x0e, 0xd0, 0xbd, 0xd3, 0x49, 0x7c, 0xae, 0xcf, 0x77, 0x24, 0x5f, 0x7c, 0x1c, + 0x2b, 0x03, 0x99, 0xe2, 0x2c, 0x97, 0x53, 0x9e, 0x47, 0xba, 0x52, 0x9a, 0xe5, 0x60, 0xc0, 0x3f, + 0x74, 0x36, 0xad, 0xd4, 0xd9, 0xad, 0xfd, 0x18, 0x62, 0xb0, 0x33, 0xac, 0xf8, 0x2a, 0xc7, 0x5b, + 0x44, 0x80, 0x4e, 0x40, 0xb3, 0x90, 0x6b, 0xc9, 0x1e, 0x7b, 0xa1, 0x34, 0xbc, 0xc7, 0x04, 0xa8, + 0xb4, 0xf4, 0x4f, 0xde, 0x6a, 0xb8, 0x3e, 0xb4, 0x09, 0xfe, 0x11, 0x6e, 0xe4, 0x52, 0xa8, 0x4c, + 0xc9, 0xd4, 0x04, 0xa8, 0x83, 0xba, 0x8d, 0xe1, 0xef, 0x81, 0x1f, 0xe2, 0x3a, 0x4f, 0x60, 0x92, + 0x9a, 0xe0, 0x5f, 0x07, 0x75, 0x77, 0x2e, 0x9a, 0xb4, 0x4c, 0xa6, 0x45, 0x32, 0x75, 0xc9, 0xf4, + 0x1a, 0x54, 0xda, 0x67, 0xf3, 0x8f, 0xb6, 0xf7, 0xfc, 0xd9, 0x3e, 0x8d, 0x95, 0x19, 0x4f, 0x42, + 0x2a, 0x20, 0x61, 0xae, 0x46, 0x29, 0xe7, 0x3a, 0xba, 0x63, 0x66, 0x96, 0x49, 0x6d, 0x2f, 0x0c, + 0x5d, 0xb2, 0x1f, 0xe0, 0x6d, 0x91, 0x4b, 0x6e, 0x20, 0x0f, 0x6a, 0x96, 0x5f, 0xfd, 0xfa, 0x0f, + 0x78, 0x4f, 0xdc, 0x73, 0x95, 0xc8, 0x68, 0xe4, 0x5a, 0xfc, 0xdf, 0x78, 0x8b, 0x5d, 0x47, 0xb8, + 0x2a, 0xcb, 0xbc, 0x20, 0xdc, 0x5c, 0x67, 0x8e, 0xa6, 0xca, 0x8c, 0x47, 0x91, 0x14, 0x7c, 0x16, + 0x6c, 0x6d, 0x1c, 0x7f, 0xb0, 0x86, 0xbf, 0x51, 0x66, 0x3c, 0x28, 0x48, 0xfd, 0xc1, 0x7c, 0x49, + 0xd0, 0x62, 0x49, 0xd0, 0xd7, 0x92, 0xa0, 0xd7, 0x15, 0xf1, 0x16, 0x2b, 0xe2, 0xbd, 0xaf, 0x88, + 0x77, 0x7b, 0xf6, 0x27, 0xba, 0x5a, 0x9a, 0x4a, 0x9f, 0x7e, 0xd6, 0xc7, 0x22, 0xc2, 0xba, 0x7d, + 0xee, 0xcb, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3b, 0xfe, 0x08, 0xfa, 0x5e, 0x02, 0x00, 0x00, } func (m *Reward) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/task.pb.go b/x/rewards/types/task.pb.go index 6d8bf70f..3c071916 100644 --- a/x/rewards/types/task.pb.go +++ b/x/rewards/types/task.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: rewards/task.proto +// source: gitopia/rewards/task.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -71,7 +71,7 @@ func (x TaskType) String() string { } func (TaskType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_a5798f12b06d3b25, []int{0} + return fileDescriptor_e0552f51de1f8bcf, []int{0} } type Task struct { @@ -84,7 +84,7 @@ func (m *Task) Reset() { *m = Task{} } func (m *Task) String() string { return proto.CompactTextString(m) } func (*Task) ProtoMessage() {} func (*Task) Descriptor() ([]byte, []int) { - return fileDescriptor_a5798f12b06d3b25, []int{0} + return fileDescriptor_e0552f51de1f8bcf, []int{0} } func (m *Task) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -139,34 +139,34 @@ func init() { proto.RegisterType((*Task)(nil), "gitopia.gitopia.rewards.Task") } -func init() { proto.RegisterFile("rewards/task.proto", fileDescriptor_a5798f12b06d3b25) } +func init() { proto.RegisterFile("gitopia/rewards/task.proto", fileDescriptor_e0552f51de1f8bcf) } -var fileDescriptor_a5798f12b06d3b25 = []byte{ - // 372 bytes of a gzipped FileDescriptorProto +var fileDescriptor_e0552f51de1f8bcf = []byte{ + // 374 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xcf, 0xae, 0xd2, 0x40, - 0x14, 0x87, 0x3b, 0x5c, 0x2e, 0xe0, 0xc1, 0x3f, 0xc3, 0x24, 0x68, 0x35, 0x66, 0x02, 0x26, 0x1a, - 0xc2, 0xa2, 0x24, 0x1a, 0x1f, 0x00, 0xe8, 0xa8, 0x0d, 0xd0, 0x69, 0xa6, 0x53, 0x08, 0x6e, 0x26, - 0x45, 0x1b, 0x68, 0x90, 0xb4, 0xa1, 0x25, 0xc8, 0x5b, 0xf8, 0x0a, 0xbe, 0x8d, 0x4b, 0x96, 0x2e, - 0x0d, 0xbc, 0x88, 0x81, 0x5b, 0x08, 0x2c, 0x58, 0x9d, 0xcc, 0xef, 0xfb, 0x72, 0x66, 0x26, 0xe7, - 0x00, 0x59, 0x06, 0x6b, 0x7f, 0xf9, 0x3d, 0x69, 0xa5, 0x7e, 0x32, 0x37, 0xe2, 0x65, 0x94, 0x46, - 0xe4, 0xc5, 0x34, 0x4c, 0xa3, 0x38, 0xf4, 0x8d, 0x53, 0xcd, 0x9c, 0x37, 0x2b, 0xc8, 0x4b, 0x3f, - 0x99, 0x93, 0x8f, 0x90, 0x4f, 0x37, 0x71, 0xa0, 0xa3, 0x1a, 0x6a, 0x3c, 0x7d, 0x5f, 0x37, 0x6e, - 0xf8, 0xc6, 0xa1, 0xa7, 0xdc, 0xc4, 0x81, 0x38, 0xea, 0x84, 0x02, 0x84, 0x49, 0x37, 0x5a, 0xc4, - 0x3f, 0x82, 0x34, 0xd0, 0x73, 0x35, 0xd4, 0x28, 0x89, 0x8b, 0x84, 0x3c, 0x87, 0xc2, 0x3a, 0x08, - 0xa7, 0xb3, 0x54, 0xbf, 0xab, 0xa1, 0xc6, 0xbd, 0xc8, 0x4e, 0xcd, 0xdf, 0x39, 0x28, 0x9d, 0x5a, - 0x91, 0x32, 0x14, 0x3d, 0xbb, 0x67, 0xf3, 0x91, 0x8d, 0x35, 0xf2, 0x0c, 0xca, 0x5d, 0xc1, 0xda, - 0x92, 0x29, 0xcf, 0x65, 0x02, 0x23, 0xf2, 0x12, 0xaa, 0x59, 0x60, 0x73, 0x5b, 0xb1, 0x81, 0x23, - 0xc7, 0x4a, 0x30, 0x87, 0xe3, 0x1c, 0xc1, 0xf0, 0x38, 0x43, 0x96, 0xeb, 0x7a, 0x0c, 0xdf, 0x91, - 0xd7, 0xa0, 0x5f, 0x26, 0x6a, 0x64, 0xc9, 0x2f, 0xaa, 0xc3, 0x3d, 0x5b, 0x8e, 0x71, 0x9e, 0xbc, - 0x85, 0xfa, 0x2d, 0xaa, 0x86, 0x4c, 0x58, 0x9f, 0x2c, 0x66, 0xe2, 0x7b, 0x52, 0x85, 0x8a, 0x23, - 0x94, 0xe4, 0xc7, 0x6b, 0xd4, 0x80, 0x89, 0xcf, 0xcc, 0xc4, 0x05, 0x42, 0xe1, 0xd5, 0x43, 0x7c, - 0x52, 0xaf, 0x78, 0x91, 0x34, 0xe1, 0xdd, 0x6d, 0x7e, 0xf5, 0x92, 0xd2, 0xe1, 0x97, 0x7d, 0x2e, - 0x98, 0x72, 0x65, 0xbb, 0xc7, 0x4c, 0xfc, 0x88, 0x54, 0xe0, 0xc9, 0x90, 0x4b, 0xa6, 0x1c, 0xc1, - 0x1d, 0xee, 0xb6, 0xfb, 0x18, 0x3a, 0xe6, 0x9f, 0x1d, 0x45, 0xdb, 0x1d, 0x45, 0xff, 0x76, 0x14, - 0xfd, 0xda, 0x53, 0x6d, 0xbb, 0xa7, 0xda, 0xdf, 0x3d, 0xd5, 0xbe, 0x36, 0xa7, 0x61, 0x3a, 0x5b, - 0x4d, 0x8c, 0x6f, 0xd1, 0xa2, 0x95, 0x0d, 0xe8, 0x5c, 0x7f, 0xb6, 0xce, 0xe3, 0xdf, 0xc4, 0x41, - 0x32, 0x29, 0x1c, 0x17, 0xe0, 0xc3, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x46, 0x0f, 0x63, 0xa6, - 0x16, 0x02, 0x00, 0x00, + 0x14, 0x87, 0x3b, 0x5c, 0x2e, 0x17, 0xcf, 0xf5, 0xcf, 0x30, 0x09, 0x5a, 0x89, 0x99, 0x80, 0x89, + 0x86, 0xb0, 0x28, 0x89, 0xc6, 0x07, 0x00, 0x3a, 0x6a, 0x03, 0x74, 0x9a, 0xe9, 0x14, 0x82, 0x9b, + 0x49, 0xd1, 0x06, 0x1a, 0x24, 0x6d, 0x68, 0x09, 0xf2, 0x16, 0xbe, 0x82, 0x6f, 0xe3, 0x92, 0xa5, + 0x4b, 0x03, 0x2f, 0x62, 0xc0, 0x36, 0x17, 0x16, 0xac, 0x4e, 0xe6, 0xf7, 0x7d, 0x39, 0x33, 0x93, + 0x73, 0xa0, 0x36, 0x0b, 0xd3, 0x28, 0x0e, 0xfd, 0xf6, 0x2a, 0xd8, 0xf8, 0xab, 0x6f, 0x49, 0x3b, + 0xf5, 0x93, 0x85, 0x11, 0xaf, 0xa2, 0x34, 0x22, 0x2f, 0x32, 0x66, 0xe4, 0x35, 0x73, 0x5e, 0xaf, + 0xa1, 0x28, 0xfd, 0x64, 0x41, 0x3e, 0x40, 0x31, 0xdd, 0xc6, 0x81, 0x8e, 0xea, 0xa8, 0xf9, 0xf4, + 0x5d, 0xc3, 0xb8, 0xe2, 0x1b, 0xc7, 0x9e, 0x72, 0x1b, 0x07, 0xe2, 0xa4, 0x13, 0x0a, 0x10, 0x26, + 0xbd, 0x68, 0x19, 0x7f, 0x0f, 0xd2, 0x40, 0x2f, 0xd4, 0x51, 0xb3, 0x2c, 0xce, 0x12, 0xf2, 0x1c, + 0x4a, 0x9b, 0x20, 0x9c, 0xcd, 0x53, 0xfd, 0xa6, 0x8e, 0x9a, 0xb7, 0x22, 0x3b, 0xb5, 0x7e, 0x15, + 0xa0, 0x9c, 0xb7, 0x22, 0xf7, 0x70, 0xe7, 0xd9, 0x7d, 0x9b, 0x8f, 0x6d, 0xac, 0x91, 0x67, 0x70, + 0xdf, 0x13, 0xac, 0x23, 0x99, 0xf2, 0x5c, 0x26, 0x30, 0x22, 0x2f, 0xa1, 0x9a, 0x05, 0x36, 0xb7, + 0x15, 0x1b, 0x3a, 0x72, 0xa2, 0x04, 0x73, 0x38, 0x2e, 0x10, 0x0c, 0x8f, 0x33, 0x64, 0xb9, 0xae, + 0xc7, 0xf0, 0x0d, 0x79, 0x05, 0xfa, 0x79, 0xa2, 0xc6, 0x96, 0xfc, 0xac, 0xba, 0xdc, 0xb3, 0xe5, + 0x04, 0x17, 0xc9, 0x1b, 0x68, 0x5c, 0xa3, 0x6a, 0xc4, 0x84, 0xf5, 0xd1, 0x62, 0x26, 0xbe, 0x25, + 0x55, 0xa8, 0x38, 0x42, 0x49, 0x7e, 0xba, 0x46, 0x0d, 0x99, 0xf8, 0xc4, 0x4c, 0x5c, 0x22, 0x14, + 0x6a, 0xff, 0xe3, 0x5c, 0xbd, 0xe0, 0x77, 0xa4, 0x05, 0x6f, 0xaf, 0xf3, 0x8b, 0x97, 0x94, 0x8f, + 0xbf, 0x1c, 0x70, 0xc1, 0x94, 0x2b, 0x3b, 0x7d, 0x66, 0xe2, 0x47, 0xa4, 0x02, 0x4f, 0x46, 0x5c, + 0x32, 0xe5, 0x08, 0xee, 0x70, 0xb7, 0x33, 0xc0, 0xd0, 0x35, 0x7f, 0xef, 0x29, 0xda, 0xed, 0x29, + 0xfa, 0xbb, 0xa7, 0xe8, 0xe7, 0x81, 0x6a, 0xbb, 0x03, 0xd5, 0xfe, 0x1c, 0xa8, 0xf6, 0xa5, 0x35, + 0x0b, 0xd3, 0xf9, 0x7a, 0x6a, 0x7c, 0x8d, 0x96, 0xed, 0x7c, 0xe8, 0x79, 0xfd, 0xf1, 0x30, 0xfe, + 0x6d, 0x1c, 0x24, 0xd3, 0xd2, 0x69, 0x01, 0xde, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x67, + 0xd2, 0x9b, 0x1e, 0x02, 0x00, 0x00, } func (m *Task) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/tx.pb.go b/x/rewards/types/tx.pb.go index 6b04dcd2..ecd39748 100644 --- a/x/rewards/types/tx.pb.go +++ b/x/rewards/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: rewards/tx.proto +// source: gitopia/rewards/tx.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -39,7 +39,7 @@ func (m *MsgCreateReward) Reset() { *m = MsgCreateReward{} } func (m *MsgCreateReward) String() string { return proto.CompactTextString(m) } func (*MsgCreateReward) ProtoMessage() {} func (*MsgCreateReward) Descriptor() ([]byte, []int) { - return fileDescriptor_4c0d543e6be8610a, []int{0} + return fileDescriptor_7c381979139f2588, []int{0} } func (m *MsgCreateReward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -98,7 +98,7 @@ func (m *MsgCreateRewardResponse) Reset() { *m = MsgCreateRewardResponse func (m *MsgCreateRewardResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRewardResponse) ProtoMessage() {} func (*MsgCreateRewardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4c0d543e6be8610a, []int{1} + return fileDescriptor_7c381979139f2588, []int{1} } func (m *MsgCreateRewardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -143,7 +143,7 @@ func (m *MsgClaim) Reset() { *m = MsgClaim{} } func (m *MsgClaim) String() string { return proto.CompactTextString(m) } func (*MsgClaim) ProtoMessage() {} func (*MsgClaim) Descriptor() ([]byte, []int) { - return fileDescriptor_4c0d543e6be8610a, []int{2} + return fileDescriptor_7c381979139f2588, []int{2} } func (m *MsgClaim) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -186,7 +186,7 @@ func (m *MsgClaimResponse) Reset() { *m = MsgClaimResponse{} } func (m *MsgClaimResponse) String() string { return proto.CompactTextString(m) } func (*MsgClaimResponse) ProtoMessage() {} func (*MsgClaimResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4c0d543e6be8610a, []int{3} + return fileDescriptor_7c381979139f2588, []int{3} } func (m *MsgClaimResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -222,33 +222,33 @@ func init() { proto.RegisterType((*MsgClaimResponse)(nil), "gitopia.gitopia.rewards.MsgClaimResponse") } -func init() { proto.RegisterFile("rewards/tx.proto", fileDescriptor_4c0d543e6be8610a) } - -var fileDescriptor_4c0d543e6be8610a = []byte{ - // 361 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0xb1, 0x4e, 0xf3, 0x30, - 0x10, 0x8e, 0xff, 0xea, 0x2f, 0xd4, 0x20, 0x51, 0x45, 0xa0, 0x86, 0x08, 0xb9, 0xa5, 0x42, 0xa2, - 0x20, 0x61, 0xd3, 0xf2, 0x06, 0x2d, 0x6b, 0x97, 0x48, 0x2c, 0x6c, 0x4e, 0x6a, 0x05, 0x03, 0x89, - 0xa3, 0xd8, 0x85, 0x32, 0xb0, 0xf0, 0x04, 0xbc, 0x08, 0xef, 0xd1, 0xb1, 0x23, 0x13, 0xa0, 0xf6, - 0x45, 0x50, 0x12, 0xbb, 0x14, 0xa4, 0x02, 0x0b, 0xd3, 0x17, 0xdf, 0x7d, 0xdf, 0x7d, 0x97, 0xbb, - 0x83, 0xd5, 0x94, 0xdd, 0xd2, 0x74, 0x20, 0x89, 0x1a, 0xe1, 0x24, 0x15, 0x4a, 0xd8, 0xb5, 0x90, - 0x2b, 0x91, 0x70, 0x8a, 0x0d, 0x6a, 0x86, 0xbb, 0x19, 0x8a, 0x50, 0xe4, 0x1c, 0x92, 0x7d, 0x15, - 0x74, 0x77, 0xcb, 0x14, 0xd0, 0xa8, 0xc3, 0x28, 0x10, 0x32, 0x12, 0x92, 0xf8, 0x54, 0x32, 0x72, - 0xd3, 0xf6, 0x99, 0xa2, 0x6d, 0x12, 0x08, 0x1e, 0x17, 0xf9, 0xe6, 0x13, 0x80, 0x1b, 0x7d, 0x19, - 0xf6, 0x52, 0x46, 0x15, 0xf3, 0x72, 0xa9, 0xed, 0xc0, 0x95, 0x20, 0x7b, 0x8b, 0xd4, 0x01, 0x0d, - 0xd0, 0xaa, 0x78, 0xe6, 0x69, 0xef, 0xc0, 0x4a, 0xca, 0x02, 0x9e, 0x70, 0x16, 0x2b, 0xe7, 0x5f, - 0x9e, 0xfb, 0x08, 0xd8, 0x3e, 0x2c, 0xd3, 0x48, 0x0c, 0x63, 0xe5, 0x94, 0x1a, 0xa0, 0xb5, 0xd6, - 0xd9, 0xc6, 0x85, 0x39, 0xce, 0xcc, 0xb1, 0x36, 0xc7, 0x3d, 0xc1, 0xe3, 0x2e, 0x19, 0xbf, 0xd4, - 0xad, 0x87, 0xd7, 0xfa, 0x7e, 0xc8, 0xd5, 0xc5, 0xd0, 0xc7, 0x81, 0x88, 0x88, 0xee, 0xb4, 0x80, - 0x23, 0x39, 0xb8, 0x22, 0xea, 0x2e, 0x61, 0x32, 0x17, 0x78, 0xba, 0x72, 0xf3, 0x1e, 0xd6, 0xbe, - 0xb4, 0xeb, 0x31, 0x99, 0x88, 0x58, 0xb2, 0x05, 0x7b, 0xf0, 0x67, 0xf6, 0x7b, 0x70, 0x35, 0xb3, - 0xbf, 0xa6, 0x3c, 0x5a, 0x3e, 0xa6, 0xa6, 0x0d, 0xab, 0x86, 0x65, 0xba, 0xeb, 0x8c, 0x01, 0x2c, - 0xf5, 0x65, 0x68, 0x9f, 0xc1, 0xff, 0x85, 0x7c, 0x17, 0x2f, 0x59, 0x30, 0x36, 0x5a, 0xf7, 0xe0, - 0x47, 0xca, 0xfc, 0xe7, 0x2f, 0xe1, 0xfa, 0xa7, 0x1d, 0xb6, 0xbe, 0x95, 0x2e, 0x30, 0xdd, 0xe3, - 0xdf, 0x32, 0x8d, 0x57, 0xf7, 0x74, 0x3c, 0x45, 0x60, 0x32, 0x45, 0xe0, 0x6d, 0x8a, 0xc0, 0xe3, - 0x0c, 0x59, 0x93, 0x19, 0xb2, 0x9e, 0x67, 0xc8, 0x3a, 0x3f, 0x5c, 0x98, 0xa7, 0xae, 0x36, 0xc7, - 0x11, 0x99, 0x9f, 0x78, 0x36, 0x57, 0xbf, 0x9c, 0x1f, 0xe0, 0xc9, 0x7b, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x49, 0x29, 0x2b, 0xe3, 0xfa, 0x02, 0x00, 0x00, +func init() { proto.RegisterFile("gitopia/rewards/tx.proto", fileDescriptor_7c381979139f2588) } + +var fileDescriptor_7c381979139f2588 = []byte{ + // 362 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0xb1, 0x4e, 0xeb, 0x30, + 0x14, 0x8d, 0x5f, 0xf5, 0x0a, 0x35, 0x48, 0xa0, 0x08, 0xa9, 0x21, 0x02, 0xb7, 0x54, 0x48, 0x14, + 0x24, 0x6c, 0x5a, 0xfe, 0xa0, 0x65, 0xed, 0x12, 0x89, 0x85, 0xcd, 0x49, 0xad, 0x60, 0x20, 0x71, + 0x14, 0xbb, 0x50, 0x06, 0x16, 0xbe, 0x80, 0x1f, 0xe1, 0x3f, 0x3a, 0x76, 0x64, 0x02, 0xd4, 0xfe, + 0x08, 0x4a, 0x62, 0xd3, 0x52, 0xa9, 0xc0, 0xc2, 0x74, 0xe2, 0x9c, 0x73, 0x7c, 0xae, 0xef, 0xbd, + 0xd0, 0x09, 0xb9, 0x12, 0x09, 0xa7, 0x24, 0x65, 0x77, 0x34, 0xed, 0x4b, 0xa2, 0x86, 0x38, 0x49, + 0x85, 0x12, 0x76, 0x55, 0x33, 0xd8, 0xa0, 0x56, 0xb8, 0x5b, 0xa1, 0x08, 0x45, 0xae, 0x21, 0xd9, + 0x57, 0x21, 0x77, 0x77, 0x17, 0x2f, 0xd2, 0xa8, 0x69, 0x14, 0x08, 0x19, 0x09, 0x49, 0x7c, 0x2a, + 0x19, 0xb9, 0x6d, 0xf9, 0x4c, 0xd1, 0x16, 0x09, 0x04, 0x8f, 0x0b, 0xbe, 0xf1, 0x0c, 0xe0, 0x46, + 0x4f, 0x86, 0xdd, 0x94, 0x51, 0xc5, 0xbc, 0xdc, 0x6a, 0x3b, 0x70, 0x25, 0xc8, 0xce, 0x22, 0x75, + 0x40, 0x1d, 0x34, 0x2b, 0x9e, 0x39, 0xda, 0x3b, 0xb0, 0x92, 0xb2, 0x80, 0x27, 0x9c, 0xc5, 0xca, + 0xf9, 0x97, 0x73, 0xb3, 0x1f, 0xb6, 0x0f, 0xcb, 0x34, 0x12, 0x83, 0x58, 0x39, 0xa5, 0x3a, 0x68, + 0xae, 0xb5, 0xb7, 0x71, 0x11, 0x8e, 0xb3, 0x70, 0xac, 0xc3, 0x71, 0x57, 0xf0, 0xb8, 0x43, 0x46, + 0xaf, 0x35, 0xeb, 0xf1, 0xad, 0x76, 0x10, 0x72, 0x75, 0x39, 0xf0, 0x71, 0x20, 0x22, 0xa2, 0x2b, + 0x2d, 0xe0, 0x58, 0xf6, 0xaf, 0x89, 0xba, 0x4f, 0x98, 0xcc, 0x0d, 0x9e, 0xbe, 0xb9, 0xf1, 0x00, + 0xab, 0x0b, 0xe5, 0x7a, 0x4c, 0x26, 0x22, 0x96, 0x6c, 0x2e, 0x1e, 0xfc, 0x59, 0xfc, 0x3e, 0x5c, + 0xcd, 0xe2, 0x6f, 0x28, 0x8f, 0x96, 0xb7, 0xa9, 0x61, 0xc3, 0x4d, 0xa3, 0x32, 0xd5, 0xb5, 0x47, + 0x00, 0x96, 0x7a, 0x32, 0xb4, 0xcf, 0xe1, 0xff, 0xc2, 0xbe, 0x87, 0x97, 0x0c, 0x1a, 0x1b, 0xaf, + 0x7b, 0xf8, 0xa3, 0xe4, 0xf3, 0xf1, 0x57, 0x70, 0xfd, 0xcb, 0x0c, 0x9b, 0xdf, 0x5a, 0xe7, 0x94, + 0xee, 0xc9, 0x6f, 0x95, 0x26, 0xab, 0x73, 0x36, 0x9a, 0x20, 0x30, 0x9e, 0x20, 0xf0, 0x3e, 0x41, + 0xe0, 0x69, 0x8a, 0xac, 0xf1, 0x14, 0x59, 0x2f, 0x53, 0x64, 0x5d, 0x1c, 0xcd, 0xf5, 0xd3, 0xec, + 0xa5, 0xc1, 0xe1, 0x6c, 0xd5, 0xb3, 0xbe, 0xfa, 0xe5, 0x7c, 0x01, 0x4f, 0x3f, 0x02, 0x00, 0x00, + 0xff, 0xff, 0x57, 0xa5, 0x66, 0x66, 0x0a, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -364,7 +364,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "rewards/tx.proto", + Metadata: "gitopia/rewards/tx.proto", } func (m *MsgCreateReward) Marshal() (dAtA []byte, err error) { From d787d668daae50fe09a43e294c2cd9fac1c304f5 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Sun, 25 Jun 2023 18:19:44 +0700 Subject: [PATCH 03/26] set repository archived --- proto/gitopia/gitopia/tx.proto | 2 +- x/gitopia/keeper/msg_server_repository.go | 2 +- x/gitopia/types/keys.go | 1 + x/gitopia/types/permission.go | 43 ++-- x/gitopia/types/tx.pb.go | 266 +++++++++++----------- 5 files changed, 153 insertions(+), 161 deletions(-) diff --git a/proto/gitopia/gitopia/tx.proto b/proto/gitopia/gitopia/tx.proto index 55ccac07..d164c8e2 100644 --- a/proto/gitopia/gitopia/tx.proto +++ b/proto/gitopia/gitopia/tx.proto @@ -782,7 +782,7 @@ message MsgUpdateRepositoryDescriptionResponse { } message MsgUpdateArchiveState { string creator = 1; RepositoryId repositoryId = 2 [(gogoproto.nullable) = false]; - string archived = 3; + bool archived = 3; } message MsgUpdateArchiveStateResponse { } diff --git a/x/gitopia/keeper/msg_server_repository.go b/x/gitopia/keeper/msg_server_repository.go index 190680f4..b2e615ed 100644 --- a/x/gitopia/keeper/msg_server_repository.go +++ b/x/gitopia/keeper/msg_server_repository.go @@ -515,7 +515,7 @@ func (k msgServer) UpdateArchiveState(goCtx context.Context, msg *types.MsgUpdat return nil, sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, fmt.Sprintf("archived state not modified")) } - if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryUpdateArchiveState) { + if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryUpdateArchiveStatePermission) { return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, fmt.Sprintf("user (%v) doesn't have permission to perform this operation", msg.Creator)) } diff --git a/x/gitopia/types/keys.go b/x/gitopia/types/keys.go index 550cdced..6aab5851 100644 --- a/x/gitopia/types/keys.go +++ b/x/gitopia/types/keys.go @@ -106,6 +106,7 @@ const ( ChangeOwnerEventKey = "ChangeOwner" RenameRepositoryEventKey = "RenameRepository" UpdateRepositoryDescriptionEventKey = "UpdateRepositoryDescription" + UpdateArchivedStateEventKey = "UpdateArchivedState" UpdateRepositoryCollaboratorEventKey = "UpdateRepositoryCollaborator" RemoveRepositoryCollaboratorEventKey = "RemoveRepositoryCollaborator" CreateRepositoryLabelEventKey = "CreateRepositoryLabel" diff --git a/x/gitopia/types/permission.go b/x/gitopia/types/permission.go index 8815f7ca..0b8f96b8 100644 --- a/x/gitopia/types/permission.go +++ b/x/gitopia/types/permission.go @@ -2,25 +2,26 @@ package types /* Minimum Allowed Permissions */ const ( - AssignPermission = RepositoryCollaborator_TRIAGE - DefaultBranchPermission = RepositoryCollaborator_ADMIN - DeleteIssuePermission = RepositoryCollaborator_ADMIN - DeleteRepositoryPermission = RepositoryCollaborator_ADMIN - LabelPermission = RepositoryCollaborator_TRIAGE - LinkPullRequestIssuePermission = RepositoryCollaborator_TRIAGE - PullRequestCreatePermission = RepositoryCollaborator_WRITE - PullRequestMergePermission = RepositoryCollaborator_WRITE - PushBranchPermission = RepositoryCollaborator_WRITE - PushProtectedBranchPermission = RepositoryCollaborator_ADMIN - PushTagPermission = RepositoryCollaborator_WRITE - ReleasePermission = RepositoryCollaborator_WRITE - RepositoryCollaboratorPermission = RepositoryCollaborator_ADMIN - RepositoryLabelPermission = RepositoryCollaborator_WRITE - RepositoryRenamePermission = RepositoryCollaborator_ADMIN - RepositoryTransferOwnershipPermission = RepositoryCollaborator_ADMIN - RepositoryUpdateDescriptionPermission = RepositoryCollaborator_MAINTAIN - ToggleRepositoryForkingPermission = RepositoryCollaborator_ADMIN - ToggleIssueStatePermission = RepositoryCollaborator_TRIAGE - RepositoryBackupPermission = RepositoryCollaborator_ADMIN - ToggleForcePushToBranchPermission = RepositoryCollaborator_ADMIN + AssignPermission = RepositoryCollaborator_TRIAGE + DefaultBranchPermission = RepositoryCollaborator_ADMIN + DeleteIssuePermission = RepositoryCollaborator_ADMIN + DeleteRepositoryPermission = RepositoryCollaborator_ADMIN + LabelPermission = RepositoryCollaborator_TRIAGE + LinkPullRequestIssuePermission = RepositoryCollaborator_TRIAGE + PullRequestCreatePermission = RepositoryCollaborator_WRITE + PullRequestMergePermission = RepositoryCollaborator_WRITE + PushBranchPermission = RepositoryCollaborator_WRITE + PushProtectedBranchPermission = RepositoryCollaborator_ADMIN + PushTagPermission = RepositoryCollaborator_WRITE + ReleasePermission = RepositoryCollaborator_WRITE + RepositoryCollaboratorPermission = RepositoryCollaborator_ADMIN + RepositoryLabelPermission = RepositoryCollaborator_WRITE + RepositoryRenamePermission = RepositoryCollaborator_ADMIN + RepositoryTransferOwnershipPermission = RepositoryCollaborator_ADMIN + RepositoryUpdateDescriptionPermission = RepositoryCollaborator_MAINTAIN + RepositoryUpdateArchiveStatePermission = RepositoryCollaborator_MAINTAIN + ToggleRepositoryForkingPermission = RepositoryCollaborator_ADMIN + ToggleIssueStatePermission = RepositoryCollaborator_TRIAGE + RepositoryBackupPermission = RepositoryCollaborator_ADMIN + ToggleForcePushToBranchPermission = RepositoryCollaborator_ADMIN ) diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index f89d9cf0..e21a458c 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -7485,7 +7485,7 @@ var xxx_messageInfo_MsgUpdateRepositoryDescriptionResponse proto.InternalMessage type MsgUpdateArchiveState struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` RepositoryId RepositoryId `protobuf:"bytes,2,opt,name=repositoryId,proto3" json:"repositoryId"` - Archived string `protobuf:"bytes,3,opt,name=archived,proto3" json:"archived,omitempty"` + Archived bool `protobuf:"varint,3,opt,name=archived,proto3" json:"archived,omitempty"` } func (m *MsgUpdateArchiveState) Reset() { *m = MsgUpdateArchiveState{} } @@ -7535,11 +7535,11 @@ func (m *MsgUpdateArchiveState) GetRepositoryId() RepositoryId { return RepositoryId{} } -func (m *MsgUpdateArchiveState) GetArchived() string { +func (m *MsgUpdateArchiveState) GetArchived() bool { if m != nil { return m.Archived } - return "" + return false } type MsgUpdateArchiveStateResponse struct { @@ -9232,7 +9232,7 @@ func init() { func init() { proto.RegisterFile("gitopia/gitopia/tx.proto", fileDescriptor_b3051f5aac033d39) } var fileDescriptor_b3051f5aac033d39 = []byte{ - // 4495 bytes of a gzipped FileDescriptorProto + // 4496 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5d, 0xdd, 0x6f, 0x1d, 0xc7, 0x75, 0xd7, 0xf2, 0x5e, 0x7e, 0xdc, 0xa1, 0x4c, 0xd3, 0x57, 0xb2, 0x74, 0xb9, 0x92, 0x28, 0x6a, 0x6d, 0x49, 0x14, 0xc5, 0x0f, 0x91, 0xb2, 0x6c, 0x59, 0xb6, 0x55, 0x93, 0x22, 0x6d, 0xb3, 0x15, @@ -9404,116 +9404,116 @@ var fileDescriptor_b3051f5aac033d39 = []byte{ 0x53, 0xa7, 0xbb, 0x64, 0x5b, 0x41, 0xc2, 0x31, 0xfb, 0xe3, 0x37, 0x69, 0x41, 0xa2, 0x13, 0xb4, 0x60, 0x47, 0x44, 0xc5, 0x7c, 0xfd, 0xc7, 0x34, 0x42, 0x1c, 0x4b, 0xcf, 0x57, 0xdb, 0xc6, 0xed, 0xba, 0x02, 0xf9, 0x41, 0x27, 0x1a, 0x2c, 0xce, 0x86, 0xcb, 0x34, 0xfb, 0x9e, 0xc6, 0xe5, 0x07, - 0xcd, 0x7a, 0xf5, 0x75, 0x67, 0x2b, 0x77, 0xa3, 0xf7, 0x20, 0xb2, 0x6d, 0x2d, 0x22, 0x3a, 0xcc, - 0x17, 0x63, 0xcf, 0x42, 0x92, 0x11, 0x8f, 0x8f, 0x69, 0xf0, 0x21, 0xc9, 0x39, 0xbd, 0xb6, 0x6e, - 0xb5, 0x6c, 0x78, 0x03, 0x8f, 0xbe, 0xbd, 0x3d, 0xd2, 0x25, 0xd7, 0xc3, 0x30, 0x79, 0x29, 0x82, - 0xc4, 0xd0, 0xfe, 0x8c, 0xbf, 0x99, 0x8e, 0x5a, 0xbf, 0xe6, 0x36, 0x9b, 0xd6, 0xaa, 0xeb, 0x85, - 0x75, 0x52, 0x7b, 0x38, 0x16, 0x3a, 0x3e, 0x43, 0x8f, 0x7f, 0x47, 0xef, 0x58, 0x5a, 0x61, 0x85, - 0x66, 0x0c, 0xf2, 0x57, 0xd7, 0xe9, 0xa8, 0xf9, 0x8b, 0xa1, 0x68, 0x27, 0xf9, 0x50, 0x6a, 0x48, - 0xb5, 0x91, 0x21, 0x64, 0xda, 0xfc, 0x4a, 0x13, 0xf2, 0x97, 0x42, 0x5a, 0xbc, 0xad, 0xdb, 0xe7, - 0x49, 0x0b, 0xf9, 0x5e, 0xdd, 0x6d, 0xba, 0xe1, 0x9d, 0x3d, 0x79, 0x88, 0xcf, 0x0e, 0xdd, 0xc9, - 0xd9, 0x81, 0xcc, 0xdb, 0xa9, 0x2a, 0x65, 0xce, 0xdb, 0xbf, 0xd7, 0x84, 0x34, 0xa4, 0x7d, 0xb3, - 0x43, 0x0d, 0xf4, 0xd2, 0xcd, 0x36, 0x5d, 0x8c, 0xc2, 0x47, 0x66, 0xa1, 0x72, 0x9a, 0x85, 0xba, - 0x25, 0x16, 0x4a, 0x66, 0x78, 0xd1, 0x2a, 0xa2, 0x54, 0x65, 0xf9, 0x22, 0x55, 0x3e, 0x7d, 0xea, - 0xe1, 0xb3, 0x88, 0x50, 0x0b, 0x95, 0xa5, 0xc5, 0xbb, 0x1a, 0x57, 0xc9, 0x1a, 0x11, 0xa1, 0x45, - 0xdd, 0x69, 0xed, 0x65, 0x22, 0xb8, 0xf1, 0x0a, 0xbe, 0x80, 0xcb, 0x00, 0xc2, 0xfc, 0xd2, 0x00, - 0x07, 0xad, 0x66, 0xd3, 0xbd, 0x4d, 0xdf, 0x63, 0x54, 0x7d, 0xa6, 0xf0, 0xce, 0x78, 0x8b, 0x64, - 0xa3, 0x90, 0xa6, 0x66, 0xbd, 0xdb, 0xd0, 0xda, 0x82, 0xa4, 0x84, 0x6c, 0x2f, 0xf5, 0x31, 0xf1, - 0x96, 0x21, 0x05, 0x04, 0xd3, 0xe5, 0x02, 0x38, 0x04, 0x5b, 0xd6, 0x6a, 0xec, 0x33, 0x55, 0x29, - 0xed, 0x93, 0xf1, 0x5f, 0x64, 0xf7, 0x14, 0xef, 0xd2, 0xbd, 0x54, 0x8b, 0xec, 0x94, 0xe2, 0x08, - 0x98, 0x3f, 0xfd, 0x0f, 0x5f, 0x40, 0x7b, 0xcb, 0x97, 0x2e, 0xc6, 0x3a, 0xe8, 0x43, 0xd3, 0x31, - 0x77, 0xc6, 0x64, 0xcf, 0xa9, 0xf3, 0x9d, 0xfc, 0x4e, 0x72, 0x10, 0x94, 0x56, 0x1d, 0x97, 0x8e, - 0x74, 0xf4, 0xab, 0x50, 0x45, 0x8b, 0xa0, 0x64, 0x5e, 0x38, 0x2e, 0x71, 0x7b, 0x20, 0x44, 0x78, - 0x2b, 0x44, 0xb1, 0x23, 0xec, 0xc2, 0x96, 0x85, 0x6f, 0x8e, 0x19, 0x69, 0x16, 0x9f, 0x9c, 0x22, - 0x82, 0x57, 0xe5, 0xb2, 0x52, 0xce, 0xe1, 0x34, 0x14, 0x22, 0x36, 0xc1, 0xda, 0xbf, 0xca, 0xdd, - 0x8c, 0xa0, 0x8f, 0x73, 0x8e, 0xec, 0xd2, 0x8b, 0x1a, 0xae, 0x2b, 0x32, 0x1c, 0x7f, 0x5d, 0x40, - 0xf9, 0x39, 0xec, 0x87, 0x84, 0x6f, 0xb9, 0xb7, 0x77, 0xf4, 0xb6, 0xae, 0x2b, 0xfd, 0x72, 0x32, - 0x6a, 0x22, 0xb5, 0x54, 0x38, 0xc7, 0x83, 0xe2, 0xf7, 0x75, 0x7c, 0x59, 0x28, 0xdf, 0xe3, 0x63, - 0xd3, 0xa0, 0x9a, 0x52, 0x87, 0x3f, 0x00, 0xc0, 0xcb, 0x8b, 0x2b, 0xff, 0xbc, 0xbc, 0x60, 0xfe, - 0xdd, 0x82, 0x39, 0x78, 0xa0, 0xda, 0x0f, 0x7a, 0x97, 0x57, 0x6e, 0x98, 0xb3, 0x2f, 0x2f, 0x0c, - 0x6a, 0x33, 0x77, 0x6f, 0x80, 0xd2, 0x92, 0x6f, 0x57, 0x7d, 0xf0, 0x68, 0xfc, 0x0f, 0x11, 0x48, - 0x4b, 0x8b, 0x62, 0xc4, 0xfa, 0xc5, 0x02, 0xc4, 0xcc, 0x43, 0xff, 0x4f, 0x03, 0xb5, 0xcc, 0x3f, - 0x1f, 0xf0, 0x94, 0xac, 0xc5, 0x2c, 0x2e, 0xfd, 0xf9, 0x9d, 0x70, 0x31, 0x40, 0xdb, 0xe0, 0xb1, - 0x64, 0xa9, 0xff, 0x84, 0xac, 0xc9, 0x04, 0xb9, 0x7e, 0xa9, 0x10, 0x39, 0x13, 0xdd, 0x00, 0x80, - 0xab, 0xc7, 0x97, 0xd6, 0xb5, 0x45, 0x74, 0xfa, 0xa4, 0x1a, 0x1d, 0x2f, 0x85, 0xab, 0xa2, 0x97, - 0x4a, 0x89, 0xe8, 0xe4, 0x52, 0x92, 0x65, 0xf0, 0x48, 0x0a, 0x57, 0x03, 0x2f, 0x95, 0x12, 0xd1, - 0xc9, 0xa5, 0x24, 0x8b, 0xa0, 0xab, 0x16, 0xa8, 0x44, 0xd5, 0xb0, 0xa7, 0x95, 0x2a, 0x8c, 0xf5, - 0x09, 0x25, 0x32, 0x26, 0xa2, 0x0d, 0x06, 0x62, 0x55, 0xb7, 0x63, 0xea, 0x85, 0xaf, 0xfa, 0x8c, - 0x3a, 0x2d, 0x93, 0xf8, 0xaf, 0xe0, 0xa0, 0x50, 0x0d, 0x3a, 0x9a, 0x6f, 0x14, 0x2a, 0xed, 0x82, - 0x2a, 0x25, 0xef, 0xed, 0xc9, 0xf2, 0xd3, 0x89, 0x5c, 0xd0, 0x82, 0xd4, 0x4b, 0x85, 0xc8, 0x99, - 0xe8, 0xbf, 0x07, 0x3d, 0xb4, 0x72, 0xd2, 0xc8, 0xaf, 0xe0, 0xd4, 0xc7, 0xf2, 0x69, 0x58, 0xcb, - 0x36, 0xe8, 0xe7, 0x0b, 0x33, 0xcf, 0x2a, 0xd6, 0x47, 0xea, 0x53, 0x8a, 0x84, 0xbc, 0xfb, 0x45, - 0xa5, 0x84, 0xa7, 0x55, 0x7c, 0xd7, 0x96, 0xbb, 0x5f, 0xa2, 0x08, 0x90, 0xb9, 0x5f, 0x24, 0x67, - 0x4c, 0xd1, 0xdc, 0x48, 0xd8, 0x8c, 0x3a, 0x2d, 0xaf, 0x54, 0x54, 0x72, 0x28, 0x55, 0x8a, 0x91, - 0xc9, 0x95, 0x4a, 0xd4, 0x0b, 0x56, 0xb7, 0xc0, 0x60, 0xa2, 0x56, 0x70, 0x3c, 0x7f, 0x82, 0x89, - 0xa8, 0xf5, 0xa7, 0x8a, 0x50, 0xf3, 0x23, 0x4b, 0x28, 0xf6, 0x1b, 0x95, 0xaf, 0x14, 0x11, 0xa5, - 0x7c, 0x64, 0xa5, 0x55, 0xf9, 0x21, 0x59, 0x42, 0x85, 0xdf, 0x68, 0xfe, 0x34, 0x4d, 0x28, 0xe5, - 0xb2, 0x52, 0x4b, 0xe1, 0xfe, 0x13, 0x54, 0x53, 0xea, 0xde, 0x14, 0xa6, 0x6c, 0x9e, 0x5e, 0x7f, - 0xba, 0x18, 0x3d, 0x3f, 0xdc, 0xf8, 0xca, 0x37, 0xe9, 0x70, 0xe3, 0x08, 0xe5, 0xc3, 0x2d, 0xa5, - 0x1e, 0x8e, 0x9b, 0x18, 0x15, 0x4c, 0xca, 0x53, 0x2a, 0x4d, 0x8c, 0xa2, 0xac, 0x7f, 0x02, 0x7d, - 0xec, 0x4f, 0x49, 0x3d, 0x29, 0xe3, 0x0e, 0xa9, 0xf4, 0x71, 0x15, 0x2a, 0xd6, 0xfe, 0x26, 0x78, - 0x44, 0xac, 0xbf, 0x3b, 0x97, 0xdf, 0xeb, 0x94, 0x54, 0x9f, 0x56, 0x26, 0xe5, 0xc5, 0x89, 0xc5, - 0x66, 0xe7, 0xf2, 0x3b, 0x5b, 0x49, 0x5c, 0x6a, 0xb9, 0x16, 0x12, 0x27, 0xd6, 0x6a, 0x9d, 0xcb, - 0xef, 0x00, 0x25, 0x71, 0xa9, 0x35, 0x5c, 0x68, 0x15, 0x4b, 0xd6, 0x6f, 0x4d, 0xe4, 0x5b, 0x89, - 0x23, 0x97, 0xaf, 0x62, 0xd9, 0xb5, 0x44, 0xef, 0x69, 0xe0, 0x48, 0x46, 0x99, 0xd0, 0x4c, 0xbe, - 0xdd, 0xe2, 0x3c, 0xfa, 0x95, 0xe2, 0x3c, 0x0c, 0xca, 0xc7, 0x1a, 0x38, 0x2e, 0x2d, 0x04, 0xba, - 0x5c, 0xa8, 0x71, 0x8e, 0x53, 0x7f, 0x71, 0xa7, 0x9c, 0x82, 0x9d, 0x32, 0x8a, 0x7c, 0xa4, 0x76, - 0x4a, 0xe7, 0x91, 0xdb, 0x49, 0x5e, 0xc3, 0x53, 0x7d, 0x03, 0x1c, 0x4a, 0xab, 0xdf, 0x99, 0xca, - 0xd9, 0x61, 0xc4, 0x19, 0xf4, 0x67, 0x0a, 0x32, 0x30, 0x00, 0xef, 0x6b, 0xe0, 0x68, 0x56, 0x99, - 0xcc, 0xc5, 0x9c, 0x95, 0x34, 0x8d, 0x49, 0x7f, 0x6e, 0x07, 0x4c, 0x0c, 0xcd, 0x5d, 0x0d, 0xe8, - 0x92, 0x0a, 0x98, 0xa7, 0xf3, 0x57, 0xbe, 0x54, 0x4c, 0x57, 0x77, 0xc6, 0x27, 0x31, 0x52, 0x94, - 0x30, 0x52, 0xc0, 0x48, 0x8c, 0xa9, 0x88, 0x91, 0x12, 0x19, 0x21, 0xe9, 0x46, 0x8a, 0x00, 0x15, - 0x33, 0x52, 0x84, 0xe9, 0xea, 0xce, 0xf8, 0x18, 0xac, 0x0f, 0x35, 0x30, 0x94, 0x5d, 0x98, 0x22, - 0x9d, 0xd2, 0x32, 0xd9, 0xf4, 0x17, 0x76, 0xc4, 0xc6, 0x30, 0x7d, 0x5b, 0x03, 0xc7, 0x64, 0x15, - 0x26, 0xd2, 0x61, 0x23, 0x61, 0xd4, 0xff, 0x6a, 0x87, 0x8c, 0x0c, 0xd9, 0x9b, 0x1a, 0x38, 0x9c, - 0x5a, 0x2c, 0x72, 0x41, 0xdd, 0x35, 0x08, 0x87, 0x7e, 0xb9, 0x28, 0x87, 0xe0, 0xd7, 0x59, 0x65, - 0x20, 0x17, 0x0b, 0xb9, 0x03, 0x85, 0xf2, 0xdc, 0x0e, 0x98, 0xf8, 0x95, 0x33, 0x59, 0xe3, 0xa1, - 0x70, 0x44, 0x51, 0x5e, 0x39, 0x33, 0x2b, 0x3b, 0xd0, 0x39, 0x23, 0xaa, 0xea, 0x38, 0x9d, 0xbf, - 0xfa, 0xce, 0x5b, 0xae, 0x3e, 0xa1, 0x44, 0xc6, 0x8b, 0x88, 0x8a, 0x2b, 0x4e, 0xcb, 0xed, 0x44, - 0xc9, 0xe4, 0x22, 0x12, 0xc5, 0x15, 0xd8, 0xa7, 0x52, 0x4b, 0x2b, 0x2e, 0xe4, 0x2f, 0x99, 0x22, - 0x87, 0x7e, 0xb9, 0x28, 0x47, 0xf2, 0x3c, 0xc5, 0x15, 0x55, 0x8c, 0x2b, 0xb5, 0x46, 0xa9, 0x55, - 0xce, 0x53, 0xc9, 0xea, 0x0a, 0xe4, 0x3d, 0xc9, 0xd2, 0x8a, 0x09, 0xa5, 0xa6, 0x42, 0x72, 0xb9, - 0xf7, 0x64, 0x96, 0x56, 0x54, 0x7d, 0xf0, 0x68, 0xbc, 0xae, 0xe2, 0xbc, 0x52, 0x4b, 0x84, 0x58, - 0x1e, 0xac, 0xcc, 0xa8, 0xaf, 0x88, 0xce, 0xfb, 0xb9, 0xfe, 0xc4, 0xc8, 0x54, 0xce, 0xfb, 0xbc, - 0x3f, 0xb1, 0x73, 0x41, 0x98, 0xa0, 0xae, 0x70, 0x2e, 0xa0, 0xa4, 0x2a, 0xe7, 0x82, 0x78, 0xad, - 0x01, 0x3b, 0x17, 0x28, 0x89, 0x13, 0x48, 0x55, 0xce, 0x05, 0x29, 0xe2, 0xc4, 0xf4, 0x7b, 0x85, - 0x73, 0x81, 0x92, 0xb8, 0xd4, 0x24, 0x78, 0x7c, 0x32, 0xe5, 0x12, 0xe0, 0xcf, 0xe6, 0xdb, 0x07, - 0x13, 0xe6, 0x9c, 0x4c, 0x53, 0xd2, 0xb6, 0xd9, 0x00, 0xe4, 0x32, 0xb2, 0x15, 0x06, 0x60, 0x44, - 0xad, 0x32, 0x00, 0x93, 0x09, 0xd7, 0xdc, 0xe9, 0x23, 0x91, 0x6d, 0x3d, 0xa3, 0xd8, 0x20, 0x3f, - 0x03, 0x5d, 0x29, 0xce, 0xc3, 0x9b, 0x20, 0x91, 0x42, 0x3d, 0x9e, 0x7f, 0x23, 0x10, 0x51, 0xcb, - 0x4d, 0x90, 0x99, 0x15, 0xbd, 0x0d, 0x1e, 0x4b, 0xe6, 0x3e, 0xe7, 0xc5, 0xa3, 0x44, 0xf2, 0x9c, - 0x78, 0x7d, 0x56, 0x4e, 0x33, 0x9e, 0xfb, 0x53, 0x13, 0x9a, 0x15, 0xa2, 0x45, 0x31, 0x04, 0x97, - 0x8b, 0x72, 0xf0, 0x01, 0xc2, 0x58, 0xa2, 0xf2, 0x98, 0x8a, 0x36, 0x74, 0xf3, 0x30, 0xa3, 0x4e, - 0xcb, 0x5b, 0x3c, 0x99, 0x7b, 0x3c, 0xa1, 0xa8, 0x00, 0x95, 0x7b, 0xa9, 0x10, 0x39, 0x3f, 0xa0, - 0xf9, 0x94, 0xe2, 0xb3, 0xf9, 0x53, 0x82, 0xc2, 0x80, 0x4e, 0x49, 0x21, 0x46, 0xde, 0x9c, 0xc8, - 0x1f, 0x1e, 0x57, 0x09, 0xbb, 0x84, 0xd4, 0x72, 0x6f, 0xce, 0x4c, 0x0f, 0x46, 0x2e, 0x95, 0x9a, - 0xca, 0x7b, 0x21, 0xff, 0xc0, 0x2b, 0x72, 0xc8, 0x5d, 0x4a, 0x96, 0xf0, 0x8a, 0x5c, 0x2a, 0x26, - 0x5d, 0xea, 0x52, 0x31, 0xb9, 0x33, 0xea, 0xb4, 0x4c, 0xe2, 0x3b, 0x1a, 0x78, 0x3c, 0x3d, 0xfb, - 0x73, 0x5a, 0xbd, 0x35, 0xca, 0xa2, 0x3f, 0x5b, 0x98, 0x85, 0xef, 0xf6, 0x44, 0xc2, 0xe6, 0x78, - 0xfe, 0x86, 0x50, 0xb5, 0xdb, 0xb3, 0xd2, 0x2e, 0xc9, 0x99, 0x49, 0x92, 0x73, 0xf9, 0x8c, 0x4a, - 0x08, 0x2e, 0x85, 0x31, 0xe7, 0xcc, 0x94, 0x9f, 0x36, 0x19, 0x85, 0x96, 0x85, 0x94, 0x49, 0x85, - 0xd0, 0x32, 0x4f, 0xaf, 0x12, 0x5a, 0x4e, 0x4b, 0x79, 0xc4, 0x0b, 0x38, 0x97, 0xee, 0x28, 0x5f, - 0xc0, 0x23, 0xc2, 0x9c, 0x05, 0x3c, 0x99, 0xad, 0xc8, 0xc5, 0xce, 0x32, 0x12, 0xf9, 0x2e, 0x17, - 0x31, 0x24, 0xcf, 0xa9, 0x12, 0x3b, 0x93, 0xa7, 0xe6, 0x61, 0x70, 0xd2, 0x2c, 0x43, 0x85, 0xd5, - 0x63, 0x27, 0xe0, 0x54, 0xf2, 0x06, 0xf1, 0xd0, 0x4d, 0x4f, 0x1a, 0x9c, 0x2e, 0x32, 0x03, 0x62, - 0x16, 0xf9, 0xd0, 0x95, 0xe7, 0xf1, 0x21, 0x1c, 0xe9, 0x49, 0x7b, 0xd3, 0x45, 0x3a, 0x40, 0x01, - 0x87, 0x34, 0x5b, 0x0e, 0xe3, 0x48, 0x4f, 0x95, 0x53, 0x0a, 0x6c, 0x17, 0xc0, 0x21, 0xcd, 0x77, - 0x43, 0x53, 0x59, 0xe2, 0xef, 0x5c, 0xe7, 0xfd, 0x0d, 0x6e, 0x81, 0x5a, 0x3e, 0x95, 0x65, 0xfd, - 0xa5, 0x6a, 0x1c, 0xdf, 0xc8, 0x4a, 0xb2, 0x53, 0xc8, 0x10, 0x49, 0x30, 0xc9, 0xe3, 0x1b, 0x79, - 0x59, 0x74, 0x6f, 0x80, 0x43, 0x69, 0xd9, 0x71, 0x53, 0xf9, 0x6d, 0x0a, 0x0c, 0xf2, 0x58, 0xaf, - 0x2c, 0xf5, 0x6d, 0x0b, 0x0c, 0x26, 0x92, 0xd8, 0xc6, 0x8b, 0xf4, 0xaa, 0xbc, 0x1b, 0xb2, 0xd2, - 0xd3, 0xa2, 0x5c, 0x12, 0x9c, 0x58, 0xa4, 0x90, 0x4b, 0x82, 0xe8, 0x54, 0x72, 0x49, 0x84, 0xfc, - 0x32, 0xb6, 0x3a, 0x08, 0xc9, 0x64, 0x0a, 0xab, 0x03, 0x4f, 0xaf, 0xb2, 0x3a, 0xa4, 0x65, 0x97, - 0xa1, 0x7d, 0x4a, 0x2c, 0xb5, 0x6c, 0x4c, 0xad, 0x25, 0x44, 0xab, 0xcf, 0xa8, 0xd3, 0x26, 0x8f, - 0xcb, 0x61, 0xb2, 0xd9, 0x39, 0xb5, 0x46, 0xe6, 0x1c, 0x57, 0xe5, 0xb8, 0x1c, 0x4b, 0x41, 0x8b, - 0x8e, 0x95, 0x5c, 0xfe, 0xd9, 0xb8, 0x5a, 0x33, 0x34, 0xcc, 0xf1, 0x54, 0x11, 0xea, 0x64, 0xf2, - 0x4e, 0xbe, 0xf3, 0x44, 0x74, 0x2a, 0xc9, 0x3b, 0x82, 0xf3, 0x7c, 0xa8, 0x81, 0xa1, 0xec, 0xff, - 0x75, 0x71, 0xa9, 0xc8, 0x14, 0xcc, 0xd8, 0xe4, 0xc1, 0xeb, 0xdc, 0xff, 0x3a, 0x81, 0x0f, 0xd4, - 0x19, 0xff, 0x72, 0x22, 0xef, 0xa8, 0x94, 0x86, 0xe6, 0x4a, 0x71, 0x9e, 0x10, 0xca, 0xdc, 0xfc, - 0x67, 0xf7, 0x86, 0xb5, 0xcf, 0xef, 0x0d, 0x6b, 0x5f, 0xde, 0x1b, 0xd6, 0xbe, 0x71, 0x7f, 0xf8, - 0xc0, 0xe7, 0xf7, 0x87, 0x0f, 0xfc, 0xf6, 0xfe, 0xf0, 0x81, 0x7f, 0x18, 0xe3, 0x4a, 0xd3, 0xe3, - 0xff, 0x15, 0xe9, 0x4e, 0xf4, 0x0f, 0xa9, 0xb6, 0xdb, 0xd0, 0x5f, 0xed, 0xc1, 0xff, 0x1d, 0xe9, - 0xe2, 0x9f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xec, 0x35, 0xf8, 0x78, 0x33, 0x6b, 0x00, 0x00, + 0xcd, 0x7a, 0xf5, 0x75, 0x67, 0x2b, 0x77, 0xa3, 0xf7, 0x20, 0xb2, 0x6d, 0x2d, 0x22, 0x9a, 0xb8, + 0x58, 0x9f, 0xc9, 0x9e, 0x85, 0x24, 0x23, 0x1e, 0x1f, 0xd3, 0xe0, 0x43, 0x92, 0x73, 0x7a, 0x6d, + 0xdd, 0x6a, 0xd9, 0xf0, 0x06, 0x1e, 0x7d, 0x7b, 0x7b, 0xa4, 0x4b, 0xae, 0x87, 0x61, 0xf2, 0x52, + 0x04, 0x89, 0xa1, 0xfd, 0x19, 0x7f, 0x33, 0x1d, 0xb5, 0x7e, 0xcd, 0x6d, 0x36, 0xad, 0x55, 0xd7, + 0x0b, 0xeb, 0xa4, 0xf6, 0x70, 0x2c, 0x74, 0x7c, 0x86, 0x1e, 0xff, 0x8e, 0xde, 0xb1, 0xb4, 0xc2, + 0x0a, 0xcd, 0x18, 0xe4, 0xaf, 0xae, 0xd3, 0x51, 0xf3, 0x17, 0x43, 0xd1, 0x4e, 0xf2, 0xa1, 0xd4, + 0x90, 0x6a, 0x23, 0x43, 0xc8, 0xb4, 0xf9, 0x95, 0x26, 0xe4, 0x2f, 0x85, 0xb4, 0x78, 0x5b, 0xb7, + 0xcf, 0x93, 0x16, 0xf2, 0xbd, 0xba, 0xdb, 0x74, 0xc3, 0x3b, 0x7b, 0xf2, 0x10, 0x9f, 0x1d, 0xba, + 0x93, 0xb3, 0x03, 0x99, 0xb7, 0x53, 0x55, 0xca, 0x9c, 0xb7, 0x7f, 0xaf, 0x09, 0x69, 0x48, 0xfb, + 0x66, 0x87, 0x1a, 0xe8, 0xa5, 0x9b, 0x6d, 0xba, 0x18, 0x85, 0x8f, 0xcc, 0x42, 0xe5, 0x34, 0x0b, + 0x75, 0x4b, 0x2c, 0x94, 0xcc, 0xf0, 0xa2, 0x55, 0x44, 0xa9, 0xca, 0xf2, 0x45, 0xaa, 0x7c, 0xfa, + 0xd4, 0xc3, 0x67, 0x11, 0xa1, 0x16, 0x2a, 0x4b, 0x8b, 0x77, 0x35, 0xae, 0x92, 0x35, 0x22, 0x42, + 0x8b, 0xba, 0xd3, 0xda, 0xcb, 0x44, 0x70, 0xe3, 0x15, 0x7c, 0x01, 0x97, 0x01, 0x84, 0xf9, 0xa5, + 0x01, 0x0e, 0x5a, 0xcd, 0xa6, 0x7b, 0x9b, 0xbe, 0xc7, 0xa8, 0xfa, 0x4c, 0xe1, 0x9d, 0xf1, 0x16, + 0xc9, 0x46, 0x21, 0x4d, 0xcd, 0x7a, 0xb7, 0xa1, 0xb5, 0x05, 0x49, 0x09, 0xd9, 0x5e, 0xea, 0x63, + 0xe2, 0x2d, 0x43, 0x0a, 0x08, 0xa6, 0xcb, 0x05, 0x70, 0x08, 0xb6, 0xac, 0xd5, 0xd8, 0x67, 0xaa, + 0x52, 0xda, 0x27, 0xe3, 0xbf, 0xc8, 0xee, 0x29, 0xde, 0xa5, 0x7b, 0xa9, 0x16, 0xd9, 0x29, 0xc5, + 0x11, 0x30, 0x7f, 0xfa, 0x1f, 0xbe, 0x80, 0xf6, 0x96, 0x2f, 0x5d, 0x8c, 0x75, 0xd0, 0x87, 0xa6, + 0x63, 0xee, 0x8c, 0xc9, 0x9e, 0x53, 0xe7, 0x3b, 0xf9, 0x9d, 0xe4, 0x20, 0x28, 0xad, 0x3a, 0x2e, + 0x1d, 0xe9, 0xe8, 0x57, 0xa1, 0x8a, 0x16, 0x41, 0xc9, 0xbc, 0x70, 0x5c, 0xe2, 0xf6, 0x40, 0x88, + 0xf0, 0x56, 0x88, 0x62, 0x47, 0xd8, 0x85, 0x2d, 0x0b, 0xdf, 0x1c, 0x33, 0xd2, 0x2c, 0x3e, 0x39, + 0x45, 0x04, 0xaf, 0xca, 0x65, 0xa5, 0x9c, 0xc3, 0x69, 0x28, 0x44, 0x6c, 0x82, 0xb5, 0x7f, 0x95, + 0xbb, 0x19, 0x41, 0x1f, 0xe7, 0x1c, 0xd9, 0xa5, 0x17, 0x35, 0x5c, 0x57, 0x64, 0x38, 0xfe, 0xba, + 0x80, 0xf2, 0x73, 0xd8, 0x0f, 0x09, 0xdf, 0x72, 0x6f, 0xef, 0xe8, 0x6d, 0x5d, 0x57, 0xfa, 0xe5, + 0x64, 0xd4, 0x44, 0x6a, 0xa9, 0x70, 0x8e, 0x07, 0xc5, 0xef, 0xeb, 0xf8, 0xb2, 0x50, 0xbe, 0xc7, + 0xc7, 0xa6, 0x41, 0x35, 0xa5, 0x0e, 0x7f, 0x00, 0x80, 0x97, 0x17, 0x57, 0xfe, 0x79, 0x79, 0xc1, + 0xfc, 0xbb, 0x05, 0x73, 0xf0, 0x40, 0xb5, 0x1f, 0xf4, 0x2e, 0xaf, 0xdc, 0x30, 0x67, 0x5f, 0x5e, + 0x18, 0xd4, 0x66, 0xee, 0xde, 0x00, 0xa5, 0x25, 0xdf, 0xae, 0xfa, 0xe0, 0xd1, 0xf8, 0x1f, 0x22, + 0x90, 0x96, 0x16, 0xc5, 0x88, 0xf5, 0x8b, 0x05, 0x88, 0x99, 0x87, 0xfe, 0x9f, 0x06, 0x6a, 0x99, + 0x7f, 0x3e, 0xe0, 0x29, 0x59, 0x8b, 0x59, 0x5c, 0xfa, 0xf3, 0x3b, 0xe1, 0x62, 0x80, 0xb6, 0xc1, + 0x63, 0xc9, 0x52, 0xff, 0x09, 0x59, 0x93, 0x09, 0x72, 0xfd, 0x52, 0x21, 0x72, 0x26, 0xba, 0x01, + 0x00, 0x57, 0x8f, 0x2f, 0xad, 0x6b, 0x8b, 0xe8, 0xf4, 0x49, 0x35, 0x3a, 0x5e, 0x0a, 0x57, 0x45, + 0x2f, 0x95, 0x12, 0xd1, 0xc9, 0xa5, 0x24, 0xcb, 0xe0, 0x91, 0x14, 0xae, 0x06, 0x5e, 0x2a, 0x25, + 0xa2, 0x93, 0x4b, 0x49, 0x16, 0x41, 0x57, 0x2d, 0x50, 0x89, 0xaa, 0x61, 0x4f, 0x2b, 0x55, 0x18, + 0xeb, 0x13, 0x4a, 0x64, 0x4c, 0x44, 0x1b, 0x0c, 0xc4, 0xaa, 0x6e, 0xc7, 0xd4, 0x0b, 0x5f, 0xf5, + 0x19, 0x75, 0x5a, 0x26, 0xf1, 0x5f, 0xc1, 0x41, 0xa1, 0x1a, 0x74, 0x34, 0xdf, 0x28, 0x54, 0xda, + 0x05, 0x55, 0x4a, 0xde, 0xdb, 0x93, 0xe5, 0xa7, 0x13, 0xb9, 0xa0, 0x05, 0xa9, 0x97, 0x0a, 0x91, + 0x33, 0xd1, 0x7f, 0x0f, 0x7a, 0x68, 0xe5, 0xa4, 0x91, 0x5f, 0xc1, 0xa9, 0x8f, 0xe5, 0xd3, 0xb0, + 0x96, 0x6d, 0xd0, 0xcf, 0x17, 0x66, 0x9e, 0x55, 0xac, 0x8f, 0xd4, 0xa7, 0x14, 0x09, 0x79, 0xf7, + 0x8b, 0x4a, 0x09, 0x4f, 0xab, 0xf8, 0xae, 0x2d, 0x77, 0xbf, 0x44, 0x11, 0x20, 0x73, 0xbf, 0x48, + 0xce, 0x98, 0xa2, 0xb9, 0x91, 0xb0, 0x19, 0x75, 0x5a, 0x5e, 0xa9, 0xa8, 0xe4, 0x50, 0xaa, 0x14, + 0x23, 0x93, 0x2b, 0x95, 0xa8, 0x17, 0xac, 0x6e, 0x81, 0xc1, 0x44, 0xad, 0xe0, 0x78, 0xfe, 0x04, + 0x13, 0x51, 0xeb, 0x4f, 0x15, 0xa1, 0xe6, 0x47, 0x96, 0x50, 0xec, 0x37, 0x2a, 0x5f, 0x29, 0x22, + 0x4a, 0xf9, 0xc8, 0x4a, 0xab, 0xf2, 0x43, 0xb2, 0x84, 0x0a, 0xbf, 0xd1, 0xfc, 0x69, 0x9a, 0x50, + 0xca, 0x65, 0xa5, 0x96, 0xc2, 0xfd, 0x27, 0xa8, 0xa6, 0xd4, 0xbd, 0x29, 0x4c, 0xd9, 0x3c, 0xbd, + 0xfe, 0x74, 0x31, 0x7a, 0x7e, 0xb8, 0xf1, 0x95, 0x6f, 0xd2, 0xe1, 0xc6, 0x11, 0xca, 0x87, 0x5b, + 0x4a, 0x3d, 0x1c, 0x37, 0x31, 0x2a, 0x98, 0x94, 0xa7, 0x54, 0x9a, 0x18, 0x45, 0x59, 0xff, 0x04, + 0xfa, 0xd8, 0x9f, 0x92, 0x7a, 0x52, 0xc6, 0x1d, 0x52, 0xe9, 0xe3, 0x2a, 0x54, 0xac, 0xfd, 0x4d, + 0xf0, 0x88, 0x58, 0x7f, 0x77, 0x2e, 0xbf, 0xd7, 0x29, 0xa9, 0x3e, 0xad, 0x4c, 0xca, 0x8b, 0x13, + 0x8b, 0xcd, 0xce, 0xe5, 0x77, 0xb6, 0x92, 0xb8, 0xd4, 0x72, 0x2d, 0x24, 0x4e, 0xac, 0xd5, 0x3a, + 0x97, 0xdf, 0x01, 0x4a, 0xe2, 0x52, 0x6b, 0xb8, 0xd0, 0x2a, 0x96, 0xac, 0xdf, 0x9a, 0xc8, 0xb7, + 0x12, 0x47, 0x2e, 0x5f, 0xc5, 0xb2, 0x6b, 0x89, 0xde, 0xd3, 0xc0, 0x91, 0x8c, 0x32, 0xa1, 0x99, + 0x7c, 0xbb, 0xc5, 0x79, 0xf4, 0x2b, 0xc5, 0x79, 0x18, 0x94, 0x8f, 0x35, 0x70, 0x5c, 0x5a, 0x08, + 0x74, 0xb9, 0x50, 0xe3, 0x1c, 0xa7, 0xfe, 0xe2, 0x4e, 0x39, 0x05, 0x3b, 0x65, 0x14, 0xf9, 0x48, + 0xed, 0x94, 0xce, 0x23, 0xb7, 0x93, 0xbc, 0x86, 0xa7, 0xfa, 0x06, 0x38, 0x94, 0x56, 0xbf, 0x33, + 0x95, 0xb3, 0xc3, 0x88, 0x33, 0xe8, 0xcf, 0x14, 0x64, 0x60, 0x00, 0xde, 0xd7, 0xc0, 0xd1, 0xac, + 0x32, 0x99, 0x8b, 0x39, 0x2b, 0x69, 0x1a, 0x93, 0xfe, 0xdc, 0x0e, 0x98, 0x18, 0x9a, 0xbb, 0x1a, + 0xd0, 0x25, 0x15, 0x30, 0x4f, 0xe7, 0xaf, 0x7c, 0xa9, 0x98, 0xae, 0xee, 0x8c, 0x4f, 0x62, 0xa4, + 0x28, 0x61, 0xa4, 0x80, 0x91, 0x18, 0x53, 0x11, 0x23, 0x25, 0x32, 0x42, 0xd2, 0x8d, 0x14, 0x01, + 0x2a, 0x66, 0xa4, 0x08, 0xd3, 0xd5, 0x9d, 0xf1, 0x31, 0x58, 0x1f, 0x6a, 0x60, 0x28, 0xbb, 0x30, + 0x45, 0x3a, 0xa5, 0x65, 0xb2, 0xe9, 0x2f, 0xec, 0x88, 0x8d, 0x61, 0xfa, 0xb6, 0x06, 0x8e, 0xc9, + 0x2a, 0x4c, 0xa4, 0xc3, 0x46, 0xc2, 0xa8, 0xff, 0xd5, 0x0e, 0x19, 0x19, 0xb2, 0x37, 0x35, 0x70, + 0x38, 0xb5, 0x58, 0xe4, 0x82, 0xba, 0x6b, 0x10, 0x0e, 0xfd, 0x72, 0x51, 0x0e, 0xc1, 0xaf, 0xb3, + 0xca, 0x40, 0x2e, 0x16, 0x72, 0x07, 0x0a, 0xe5, 0xb9, 0x1d, 0x30, 0xf1, 0x2b, 0x67, 0xb2, 0xc6, + 0x43, 0xe1, 0x88, 0xa2, 0xbc, 0x72, 0x66, 0x56, 0x76, 0xa0, 0x73, 0x46, 0x54, 0xd5, 0x71, 0x3a, + 0x7f, 0xf5, 0x9d, 0xb7, 0x5c, 0x7d, 0x42, 0x89, 0x8c, 0x17, 0x11, 0x15, 0x57, 0x9c, 0x96, 0xdb, + 0x89, 0x92, 0xc9, 0x45, 0x24, 0x8a, 0x2b, 0xb0, 0x4f, 0xa5, 0x96, 0x56, 0x5c, 0xc8, 0x5f, 0x32, + 0x45, 0x0e, 0xfd, 0x72, 0x51, 0x8e, 0xe4, 0x79, 0x8a, 0x2b, 0xaa, 0x18, 0x57, 0x6a, 0x8d, 0x52, + 0xab, 0x9c, 0xa7, 0x92, 0xd5, 0x15, 0xc8, 0x7b, 0x92, 0xa5, 0x15, 0x13, 0x4a, 0x4d, 0x85, 0xe4, + 0x72, 0xef, 0xc9, 0x2c, 0xad, 0xa8, 0xfa, 0xe0, 0xd1, 0x78, 0x5d, 0xc5, 0x79, 0xa5, 0x96, 0x08, + 0xb1, 0x3c, 0x58, 0x99, 0x51, 0x5f, 0x11, 0x9d, 0xf7, 0x73, 0xfd, 0x89, 0x91, 0xa9, 0x9c, 0xf7, + 0x79, 0x7f, 0x62, 0xe7, 0x82, 0x30, 0x41, 0x5d, 0xe1, 0x5c, 0x40, 0x49, 0x55, 0xce, 0x05, 0xf1, + 0x5a, 0x03, 0x76, 0x2e, 0x50, 0x12, 0x27, 0x90, 0xaa, 0x9c, 0x0b, 0x52, 0xc4, 0x89, 0xe9, 0xf7, + 0x0a, 0xe7, 0x02, 0x25, 0x71, 0xa9, 0x49, 0xf0, 0xf8, 0x64, 0xca, 0x25, 0xc0, 0x9f, 0xcd, 0xb7, + 0x0f, 0x26, 0xcc, 0x39, 0x99, 0xa6, 0xa4, 0x6d, 0xb3, 0x01, 0xc8, 0x65, 0x64, 0x2b, 0x0c, 0xc0, + 0x88, 0x5a, 0x65, 0x00, 0x26, 0x13, 0xae, 0xb9, 0xd3, 0x47, 0x22, 0xdb, 0x7a, 0x46, 0xb1, 0x41, + 0x7e, 0x06, 0xba, 0x52, 0x9c, 0x87, 0x37, 0x41, 0x22, 0x85, 0x7a, 0x3c, 0xff, 0x46, 0x20, 0xa2, + 0x96, 0x9b, 0x20, 0x33, 0x2b, 0x7a, 0x1b, 0x3c, 0x96, 0xcc, 0x7d, 0xce, 0x8b, 0x47, 0x89, 0xe4, + 0x39, 0xf1, 0xfa, 0xac, 0x9c, 0x66, 0x3c, 0xf7, 0xa7, 0x26, 0x34, 0x2b, 0x44, 0x8b, 0x62, 0x08, + 0x2e, 0x17, 0xe5, 0xe0, 0x03, 0x84, 0xb1, 0x44, 0xe5, 0x31, 0x15, 0x6d, 0xe8, 0xe6, 0x61, 0x46, + 0x9d, 0x96, 0xb7, 0x78, 0x32, 0xf7, 0x78, 0x42, 0x51, 0x01, 0x2a, 0xf7, 0x52, 0x21, 0x72, 0x7e, + 0x40, 0xf3, 0x29, 0xc5, 0x67, 0xf3, 0xa7, 0x04, 0x85, 0x01, 0x9d, 0x92, 0x42, 0x8c, 0xbc, 0x39, + 0x91, 0x3f, 0x3c, 0xae, 0x12, 0x76, 0x09, 0xa9, 0xe5, 0xde, 0x9c, 0x99, 0x1e, 0x8c, 0x5c, 0x2a, + 0x35, 0x95, 0xf7, 0x42, 0xfe, 0x81, 0x57, 0xe4, 0x90, 0xbb, 0x94, 0x2c, 0xe1, 0x15, 0xb9, 0x54, + 0x4c, 0xba, 0xd4, 0xa5, 0x62, 0x72, 0x67, 0xd4, 0x69, 0x99, 0xc4, 0x77, 0x34, 0xf0, 0x78, 0x7a, + 0xf6, 0xe7, 0xb4, 0x7a, 0x6b, 0x94, 0x45, 0x7f, 0xb6, 0x30, 0x0b, 0xdf, 0xed, 0x89, 0x84, 0xcd, + 0xf1, 0xfc, 0x0d, 0xa1, 0x6a, 0xb7, 0x67, 0xa5, 0x5d, 0x92, 0x33, 0x93, 0x24, 0xe7, 0xf2, 0x19, + 0x95, 0x10, 0x5c, 0x0a, 0x63, 0xce, 0x99, 0x29, 0x3f, 0x6d, 0x32, 0x0a, 0x2d, 0x0b, 0x29, 0x93, + 0x0a, 0xa1, 0x65, 0x9e, 0x5e, 0x25, 0xb4, 0x9c, 0x96, 0xf2, 0x88, 0x17, 0x70, 0x2e, 0xdd, 0x51, + 0xbe, 0x80, 0x47, 0x84, 0x39, 0x0b, 0x78, 0x32, 0x5b, 0x91, 0x8b, 0x9d, 0x65, 0x24, 0xf2, 0x5d, + 0x2e, 0x62, 0x48, 0x9e, 0x53, 0x25, 0x76, 0x26, 0x4f, 0xcd, 0xc3, 0xe0, 0xa4, 0x59, 0x86, 0x0a, + 0xab, 0xc7, 0x4e, 0xc0, 0xa9, 0xe4, 0x0d, 0xe2, 0xa1, 0x9b, 0x9e, 0x34, 0x38, 0x5d, 0x64, 0x06, + 0xc4, 0x2c, 0xf2, 0xa1, 0x2b, 0xcf, 0xe3, 0x43, 0x38, 0xd2, 0x93, 0xf6, 0xa6, 0x8b, 0x74, 0x80, + 0x02, 0x0e, 0x69, 0xb6, 0x1c, 0xc6, 0x91, 0x9e, 0x2a, 0xa7, 0x14, 0xd8, 0x2e, 0x80, 0x43, 0x9a, + 0xef, 0x86, 0xa6, 0xb2, 0xc4, 0xdf, 0xb9, 0xce, 0xfb, 0x1b, 0xdc, 0x02, 0xb5, 0x7c, 0x2a, 0xcb, + 0xfa, 0x4b, 0xd5, 0x38, 0xbe, 0x91, 0x95, 0x64, 0xa7, 0x90, 0x21, 0x92, 0x60, 0x92, 0xc7, 0x37, + 0xf2, 0xb2, 0xe8, 0xde, 0x00, 0x87, 0xd2, 0xb2, 0xe3, 0xa6, 0xf2, 0xdb, 0x14, 0x18, 0xe4, 0xb1, + 0x5e, 0x59, 0xea, 0xdb, 0x16, 0x18, 0x4c, 0x24, 0xb1, 0x8d, 0x17, 0xe9, 0x55, 0x79, 0x37, 0x64, + 0xa5, 0xa7, 0x45, 0xb9, 0x24, 0x38, 0xb1, 0x48, 0x21, 0x97, 0x04, 0xd1, 0xa9, 0xe4, 0x92, 0x08, + 0xf9, 0x65, 0x6c, 0x75, 0x10, 0x92, 0xc9, 0x14, 0x56, 0x07, 0x9e, 0x5e, 0x65, 0x75, 0x48, 0xcb, + 0x2e, 0x43, 0xfb, 0x94, 0x58, 0x6a, 0xd9, 0x98, 0x5a, 0x4b, 0x88, 0x56, 0x9f, 0x51, 0xa7, 0x4d, + 0x1e, 0x97, 0xc3, 0x64, 0xb3, 0x73, 0x6a, 0x8d, 0xcc, 0x39, 0xae, 0xca, 0x71, 0x39, 0x96, 0x82, + 0x16, 0x1d, 0x2b, 0xb9, 0xfc, 0xb3, 0x71, 0xb5, 0x66, 0x68, 0x98, 0xe3, 0xa9, 0x22, 0xd4, 0xc9, + 0xe4, 0x9d, 0x7c, 0xe7, 0x89, 0xe8, 0x54, 0x92, 0x77, 0x04, 0xe7, 0xf9, 0x50, 0x03, 0x43, 0xd9, + 0xff, 0xeb, 0xe2, 0x52, 0x91, 0x29, 0x98, 0xb1, 0xc9, 0x83, 0xd7, 0xb9, 0xff, 0x75, 0x02, 0x1f, + 0xa8, 0x33, 0xfe, 0xe5, 0x44, 0xde, 0x51, 0x29, 0x0d, 0xcd, 0x95, 0xe2, 0x3c, 0x21, 0x94, 0xb9, + 0xf9, 0xcf, 0xee, 0x0d, 0x6b, 0x9f, 0xdf, 0x1b, 0xd6, 0xbe, 0xbc, 0x37, 0xac, 0x7d, 0xe3, 0xfe, + 0xf0, 0x81, 0xcf, 0xef, 0x0f, 0x1f, 0xf8, 0xed, 0xfd, 0xe1, 0x03, 0xff, 0x30, 0xc6, 0x95, 0xa6, + 0xc7, 0xff, 0x2b, 0xd2, 0x9d, 0xe8, 0x1f, 0x52, 0x6d, 0xb7, 0xa1, 0xbf, 0xda, 0x83, 0xff, 0x3b, + 0xd2, 0xc5, 0x3f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x01, 0xf1, 0x09, 0x1d, 0x33, 0x6b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -17937,12 +17937,15 @@ func (m *MsgUpdateArchiveState) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.Archived) > 0 { - i -= len(m.Archived) - copy(dAtA[i:], m.Archived) - i = encodeVarintTx(dAtA, i, uint64(len(m.Archived))) + if m.Archived { i-- - dAtA[i] = 0x1a + if m.Archived { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 } { size, err := m.RepositoryId.MarshalToSizedBuffer(dAtA[:i]) @@ -21437,9 +21440,8 @@ func (m *MsgUpdateArchiveState) Size() (n int) { } l = m.RepositoryId.Size() n += 1 + l + sovTx(uint64(l)) - l = len(m.Archived) - if l > 0 { - n += 1 + l + sovTx(uint64(l)) + if m.Archived { + n += 2 } return n } @@ -37701,10 +37703,10 @@ func (m *MsgUpdateArchiveState) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 3: - if wireType != 2 { + if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Archived", wireType) } - var stringLen uint64 + var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTx @@ -37714,24 +37716,12 @@ func (m *MsgUpdateArchiveState) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + v |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthTx - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthTx - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Archived = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex + m.Archived = bool(v != 0) default: iNdEx = preIndex skippy, err := skipTx(dAtA[iNdEx:]) From 402399e1e26075ac9a992d7db619fe6103fa0d6d Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Sun, 25 Jun 2023 21:42:30 +0700 Subject: [PATCH 04/26] all relevant messages should check if archived flag is set or not --- x/gitopia/keeper/msg_server_branch.go | 24 +++++++++++ x/gitopia/keeper/msg_server_issue.go | 28 +++++++++++++ x/gitopia/keeper/msg_server_pullRequest.go | 48 ++++++++++++++++++++++ x/gitopia/keeper/msg_server_release.go | 12 ++++++ x/gitopia/keeper/msg_server_repository.go | 43 +++++++++++++++++++ 5 files changed, 155 insertions(+) diff --git a/x/gitopia/keeper/msg_server_branch.go b/x/gitopia/keeper/msg_server_branch.go index eb29671a..0e9d11cf 100644 --- a/x/gitopia/keeper/msg_server_branch.go +++ b/x/gitopia/keeper/msg_server_branch.go @@ -25,6 +25,10 @@ func (k msgServer) SetBranch(goCtx context.Context, msg *types.MsgSetBranch) (*t } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -95,6 +99,10 @@ func (k msgServer) MultiSetBranch(goCtx context.Context, msg *types.MsgMultiSetB } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -170,6 +178,10 @@ func (k msgServer) SetDefaultBranch(goCtx context.Context, msg *types.MsgSetDefa } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -223,6 +235,10 @@ func (k msgServer) DeleteBranch(goCtx context.Context, msg *types.MsgDeleteBranc } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -276,6 +292,10 @@ func (k msgServer) MultiDeleteBranch(goCtx context.Context, msg *types.MsgMultiD } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -337,6 +357,10 @@ func (k msgServer) ToggleForcePush(goCtx context.Context, msg *types.MsgToggleFo } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } diff --git a/x/gitopia/keeper/msg_server_issue.go b/x/gitopia/keeper/msg_server_issue.go index 5246362d..34afd40f 100644 --- a/x/gitopia/keeper/msg_server_issue.go +++ b/x/gitopia/keeper/msg_server_issue.go @@ -27,6 +27,10 @@ func (k msgServer) CreateIssue(goCtx context.Context, msg *types.MsgCreateIssue) } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -284,6 +288,10 @@ func (k msgServer) ToggleIssueState(goCtx context.Context, msg *types.MsgToggleI } repository, found := k.GetRepositoryById(ctx, issue.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", issue.RepositoryId)) } @@ -425,6 +433,10 @@ func (k msgServer) AddIssueAssignees(goCtx context.Context, msg *types.MsgAddIss } repository, found := k.GetRepositoryById(ctx, issue.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", issue.RepositoryId)) } @@ -508,6 +520,10 @@ func (k msgServer) RemoveIssueAssignees(goCtx context.Context, msg *types.MsgRem } repository, found := k.GetRepositoryById(ctx, issue.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", issue.RepositoryId)) } @@ -582,6 +598,10 @@ func (k msgServer) AddIssueLabels(goCtx context.Context, msg *types.MsgAddIssueL } repository, found := k.GetRepositoryById(ctx, issue.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", issue.RepositoryId)) } @@ -663,6 +683,10 @@ func (k msgServer) RemoveIssueLabels(goCtx context.Context, msg *types.MsgRemove } repository, found := k.GetRepositoryById(ctx, issue.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", issue.RepositoryId)) } @@ -745,6 +769,10 @@ func (k msgServer) DeleteIssue(goCtx context.Context, msg *types.MsgDeleteIssue) } repository, found := k.GetRepositoryById(ctx, issue.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", issue.RepositoryId)) } diff --git a/x/gitopia/keeper/msg_server_pullRequest.go b/x/gitopia/keeper/msg_server_pullRequest.go index 467c3fe6..8b6940d7 100644 --- a/x/gitopia/keeper/msg_server_pullRequest.go +++ b/x/gitopia/keeper/msg_server_pullRequest.go @@ -27,6 +27,10 @@ func (k msgServer) CreatePullRequest(goCtx context.Context, msg *types.MsgCreate } headRepository, found := k.GetAddressRepository(ctx, headRepoOwnerAddress.Address, msg.HeadRepositoryId.Name) + if headRepository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.HeadRepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("head-repository (%v/%v) doesn't exist", msg.HeadRepositoryId.Id, msg.HeadRepositoryId.Name)) } @@ -41,6 +45,9 @@ func (k msgServer) CreatePullRequest(goCtx context.Context, msg *types.MsgCreate } baseRepository, found := k.GetAddressRepository(ctx, baseRepositoryAddress.Address, msg.BaseRepositoryId.Name) + if baseRepository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.BaseRepositoryId.Name) + } if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("base-repository (%v/%v) doesn't exist", msg.BaseRepositoryId.Id, msg.BaseRepositoryId.Name)) } @@ -327,6 +334,10 @@ func (k msgServer) InvokeMergePullRequest(goCtx context.Context, msg *types.MsgI } baseRepository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if baseRepository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", pullRequest.Base.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -377,6 +388,9 @@ func (k msgServer) SetPullRequestState(goCtx context.Context, msg *types.MsgSetP blockTime := ctx.BlockTime().Unix() baseRepository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if baseRepository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", pullRequest.Base.RepositoryId) + } if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -633,6 +647,9 @@ func (k msgServer) AddPullRequestReviewers(goCtx context.Context, msg *types.Msg } repository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -710,6 +727,10 @@ func (k msgServer) RemovePullRequestReviewers(goCtx context.Context, msg *types. } repository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -784,6 +805,10 @@ func (k msgServer) AddPullRequestAssignees(goCtx context.Context, msg *types.Msg } repository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -861,6 +886,10 @@ func (k msgServer) RemovePullRequestAssignees(goCtx context.Context, msg *types. } repository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -935,6 +964,9 @@ func (k msgServer) LinkPullRequestIssueByIid(goCtx context.Context, msg *types.M } baseRepository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if baseRepository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -1047,6 +1079,10 @@ func (k msgServer) UnlinkPullRequestIssueByIid(goCtx context.Context, msg *types } baseRepository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if baseRepository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -1153,6 +1189,10 @@ func (k msgServer) AddPullRequestLabels(goCtx context.Context, msg *types.MsgAdd } repository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -1234,6 +1274,10 @@ func (k msgServer) RemovePullRequestLabels(goCtx context.Context, msg *types.Msg } repository, found := k.GetRepositoryById(ctx, pullRequest.Base.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", pullRequest.Base.RepositoryId)) } @@ -1315,6 +1359,10 @@ func (k msgServer) DeletePullRequest(goCtx context.Context, msg *types.MsgDelete } repository, found := k.GetRepositoryById(ctx, msg.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", msg.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", msg.RepositoryId)) } diff --git a/x/gitopia/keeper/msg_server_release.go b/x/gitopia/keeper/msg_server_release.go index eaab7d17..0933a9d0 100644 --- a/x/gitopia/keeper/msg_server_release.go +++ b/x/gitopia/keeper/msg_server_release.go @@ -27,6 +27,10 @@ func (k msgServer) CreateRelease(goCtx context.Context, msg *types.MsgCreateRele } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -129,6 +133,10 @@ func (k msgServer) UpdateRelease(goCtx context.Context, msg *types.MsgUpdateRele } repository, found := k.GetRepositoryById(ctx, release.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", release.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", msg.Id)) } @@ -222,6 +230,10 @@ func (k msgServer) DeleteRelease(goCtx context.Context, msg *types.MsgDeleteRele } repository, found := k.GetRepositoryById(ctx, release.RepositoryId) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %d when archived is set to true", release.RepositoryId) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository id (%d) doesn't exist", release.RepositoryId)) } diff --git a/x/gitopia/keeper/msg_server_repository.go b/x/gitopia/keeper/msg_server_repository.go index b2e615ed..ec282ba5 100644 --- a/x/gitopia/keeper/msg_server_repository.go +++ b/x/gitopia/keeper/msg_server_repository.go @@ -90,6 +90,9 @@ func (k msgServer) ChangeOwner(goCtx context.Context, msg *types.MsgChangeOwner) } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -408,6 +411,10 @@ func (k msgServer) RenameRepository(goCtx context.Context, msg *types.MsgRenameR } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -462,6 +469,10 @@ func (k msgServer) UpdateRepositoryDescription(goCtx context.Context, msg *types } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -552,6 +563,10 @@ func (k msgServer) UpdateRepositoryCollaborator(goCtx context.Context, msg *type } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -621,6 +636,10 @@ func (k msgServer) RemoveRepositoryCollaborator(goCtx context.Context, msg *type } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -672,6 +691,10 @@ func (k msgServer) CreateRepositoryLabel(goCtx context.Context, msg *types.MsgCr } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -728,6 +751,10 @@ func (k msgServer) UpdateRepositoryLabel(goCtx context.Context, msg *types.MsgUp } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -786,6 +813,10 @@ func (k msgServer) DeleteRepositoryLabel(goCtx context.Context, msg *types.MsgDe } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -832,6 +863,10 @@ func (k msgServer) ToggleRepositoryForking(goCtx context.Context, msg *types.Msg } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -873,6 +908,10 @@ func (k msgServer) ToggleArweaveBackup(goCtx context.Context, msg *types.MsgTogg } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } @@ -937,6 +976,10 @@ func (k msgServer) DeleteRepository(goCtx context.Context, msg *types.MsgDeleteR } repository, found := k.GetAddressRepository(ctx, address.Address, msg.RepositoryId.Name) + if repository.Archived { + return nil, fmt.Errorf("don't allow any modifications to repository %s when archived is set to true", msg.RepositoryId.Name) + } + if !found { return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } From 22ffd429cb246d0a23fc9cce993621acf926ab49 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Mon, 26 Jun 2023 14:35:17 +0700 Subject: [PATCH 05/26] add msg to RegisterInterface --- x/gitopia/types/codec.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/gitopia/types/codec.go b/x/gitopia/types/codec.go index cf5cb2b1..9bce875e 100644 --- a/x/gitopia/types/codec.go +++ b/x/gitopia/types/codec.go @@ -87,6 +87,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) { cdc.RegisterConcrete(&MsgForkRepositorySuccess{}, "gitopia/ForkRepositorySuccess", nil) cdc.RegisterConcrete(&MsgRenameRepository{}, "gitopia/RenameRepository", nil) cdc.RegisterConcrete(&MsgUpdateRepositoryDescription{}, "gitopia/UpdateRepositoryDescription", nil) + cdc.RegisterConcrete(&MsgUpdateArchiveState{}, "gitopia/UpdateArchiveState", nil) cdc.RegisterConcrete(&MsgChangeOwner{}, "gitopia/ChangeOwner", nil) cdc.RegisterConcrete(&MsgUpdateRepositoryCollaborator{}, "gitopia/UpdateRepositoryCollaborator", nil) cdc.RegisterConcrete(&MsgRemoveRepositoryCollaborator{}, "gitopia/RemoveRepositoryCollaborator", nil) @@ -152,8 +153,6 @@ func RegisterInterfaces(registry cdctypes.InterfaceRegistry) { registry.RegisterImplementations((*sdk.Msg)(nil)) // this line is used by starport scaffolding # 3 - msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) - registry.RegisterImplementations((*sdk.Msg)(nil), &MsgCreateRelease{}, &MsgUpdateRelease{}, @@ -209,6 +208,7 @@ func RegisterInterfaces(registry cdctypes.InterfaceRegistry) { &MsgUpdateRepositoryDescription{}, &MsgChangeOwner{}, &MsgUpdateRepositoryCollaborator{}, + &MsgUpdateArchiveState{}, &MsgRemoveRepositoryCollaborator{}, &MsgCreateRepositoryLabel{}, &MsgUpdateRepositoryLabel{}, From 410f7e3d7ae71623b9ee97be2fdfe72b9d07e400 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Mon, 26 Jun 2023 16:27:38 +0700 Subject: [PATCH 06/26] use cosmos/gogoproto --- x/gitopia/migrations/testnet/types/branch.pb.go | 2 +- x/gitopia/migrations/testnet/types/comment.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/dao.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/genesis.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/issue.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/member.pb.go | 2 +- x/gitopia/migrations/testnet/types/pullRequest.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/release.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/repository.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/tag.pb.go | 2 +- x/gitopia/migrations/testnet/types/task.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/user.pb.go | 4 ++-- x/gitopia/migrations/testnet/types/whois.pb.go | 4 ++-- x/gitopia/migrations/v2/types/attachment.pb.go | 2 +- x/gitopia/migrations/v2/types/bounty.pb.go | 4 ++-- x/gitopia/migrations/v2/types/branch.pb.go | 2 +- x/gitopia/migrations/v2/types/comment.pb.go | 4 ++-- x/gitopia/migrations/v2/types/dao.pb.go | 4 ++-- x/gitopia/migrations/v2/types/exercised_amount.pb.go | 4 ++-- x/gitopia/migrations/v2/types/genesis.pb.go | 4 ++-- x/gitopia/migrations/v2/types/issue.pb.go | 4 ++-- x/gitopia/migrations/v2/types/member.pb.go | 2 +- x/gitopia/migrations/v2/types/params.pb.go | 6 +++--- x/gitopia/migrations/v2/types/pullRequest.pb.go | 4 ++-- x/gitopia/migrations/v2/types/query.pb.go | 6 +++--- x/gitopia/migrations/v2/types/reaction.pb.go | 4 ++-- x/gitopia/migrations/v2/types/release.pb.go | 4 ++-- x/gitopia/migrations/v2/types/repository.pb.go | 4 ++-- x/gitopia/migrations/v2/types/tag.pb.go | 2 +- x/gitopia/migrations/v2/types/task.pb.go | 4 ++-- x/gitopia/migrations/v2/types/user.pb.go | 4 ++-- x/gitopia/migrations/v2/types/whois.pb.go | 4 ++-- x/gitopia/types/storage_provider.pb.go | 2 +- 33 files changed, 60 insertions(+), 60 deletions(-) diff --git a/x/gitopia/migrations/testnet/types/branch.pb.go b/x/gitopia/migrations/testnet/types/branch.pb.go index 0de696d0..b9aa6b00 100644 --- a/x/gitopia/migrations/testnet/types/branch.pb.go +++ b/x/gitopia/migrations/testnet/types/branch.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/comment.pb.go b/x/gitopia/migrations/testnet/types/comment.pb.go index 6a03a299..97a04bfe 100644 --- a/x/gitopia/migrations/testnet/types/comment.pb.go +++ b/x/gitopia/migrations/testnet/types/comment.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/dao.pb.go b/x/gitopia/migrations/testnet/types/dao.pb.go index a3ba4adb..eb6dd47e 100644 --- a/x/gitopia/migrations/testnet/types/dao.pb.go +++ b/x/gitopia/migrations/testnet/types/dao.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/genesis.pb.go b/x/gitopia/migrations/testnet/types/genesis.pb.go index 6899b57a..d92633e3 100644 --- a/x/gitopia/migrations/testnet/types/genesis.pb.go +++ b/x/gitopia/migrations/testnet/types/genesis.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/issue.pb.go b/x/gitopia/migrations/testnet/types/issue.pb.go index 837c09f2..8c7ab949 100644 --- a/x/gitopia/migrations/testnet/types/issue.pb.go +++ b/x/gitopia/migrations/testnet/types/issue.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/member.pb.go b/x/gitopia/migrations/testnet/types/member.pb.go index 2aeb22e8..40adb97d 100644 --- a/x/gitopia/migrations/testnet/types/member.pb.go +++ b/x/gitopia/migrations/testnet/types/member.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/pullRequest.pb.go b/x/gitopia/migrations/testnet/types/pullRequest.pb.go index 6fde77d4..db3a0dc0 100644 --- a/x/gitopia/migrations/testnet/types/pullRequest.pb.go +++ b/x/gitopia/migrations/testnet/types/pullRequest.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/release.pb.go b/x/gitopia/migrations/testnet/types/release.pb.go index e8d71c03..e8e1eb3c 100644 --- a/x/gitopia/migrations/testnet/types/release.pb.go +++ b/x/gitopia/migrations/testnet/types/release.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/repository.pb.go b/x/gitopia/migrations/testnet/types/repository.pb.go index 086bb9c7..ca1a1700 100644 --- a/x/gitopia/migrations/testnet/types/repository.pb.go +++ b/x/gitopia/migrations/testnet/types/repository.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/tag.pb.go b/x/gitopia/migrations/testnet/types/tag.pb.go index ef333f7a..55f01125 100644 --- a/x/gitopia/migrations/testnet/types/tag.pb.go +++ b/x/gitopia/migrations/testnet/types/tag.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/task.pb.go b/x/gitopia/migrations/testnet/types/task.pb.go index cc28eace..23272fba 100644 --- a/x/gitopia/migrations/testnet/types/task.pb.go +++ b/x/gitopia/migrations/testnet/types/task.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/user.pb.go b/x/gitopia/migrations/testnet/types/user.pb.go index c7ec4af9..8d393d94 100644 --- a/x/gitopia/migrations/testnet/types/user.pb.go +++ b/x/gitopia/migrations/testnet/types/user.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/whois.pb.go b/x/gitopia/migrations/testnet/types/whois.pb.go index c5ee206f..c4b3a9e7 100644 --- a/x/gitopia/migrations/testnet/types/whois.pb.go +++ b/x/gitopia/migrations/testnet/types/whois.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/attachment.pb.go b/x/gitopia/migrations/v2/types/attachment.pb.go index 785a46a8..ca85d9c2 100644 --- a/x/gitopia/migrations/v2/types/attachment.pb.go +++ b/x/gitopia/migrations/v2/types/attachment.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/bounty.pb.go b/x/gitopia/migrations/v2/types/bounty.pb.go index f33614f5..dfd03182 100644 --- a/x/gitopia/migrations/v2/types/bounty.pb.go +++ b/x/gitopia/migrations/v2/types/bounty.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/branch.pb.go b/x/gitopia/migrations/v2/types/branch.pb.go index 09aa4471..4cd99691 100644 --- a/x/gitopia/migrations/v2/types/branch.pb.go +++ b/x/gitopia/migrations/v2/types/branch.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/comment.pb.go b/x/gitopia/migrations/v2/types/comment.pb.go index ddd0c71a..a9ea295f 100644 --- a/x/gitopia/migrations/v2/types/comment.pb.go +++ b/x/gitopia/migrations/v2/types/comment.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/dao.pb.go b/x/gitopia/migrations/v2/types/dao.pb.go index 5b8e0160..3f103323 100644 --- a/x/gitopia/migrations/v2/types/dao.pb.go +++ b/x/gitopia/migrations/v2/types/dao.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/exercised_amount.pb.go b/x/gitopia/migrations/v2/types/exercised_amount.pb.go index 6d744336..ffbb5eae 100644 --- a/x/gitopia/migrations/v2/types/exercised_amount.pb.go +++ b/x/gitopia/migrations/v2/types/exercised_amount.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/genesis.pb.go b/x/gitopia/migrations/v2/types/genesis.pb.go index 469cf09e..0c2ca1da 100644 --- a/x/gitopia/migrations/v2/types/genesis.pb.go +++ b/x/gitopia/migrations/v2/types/genesis.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/issue.pb.go b/x/gitopia/migrations/v2/types/issue.pb.go index f44d4422..f34e7784 100644 --- a/x/gitopia/migrations/v2/types/issue.pb.go +++ b/x/gitopia/migrations/v2/types/issue.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/member.pb.go b/x/gitopia/migrations/v2/types/member.pb.go index 3d91696e..e1c6206d 100644 --- a/x/gitopia/migrations/v2/types/member.pb.go +++ b/x/gitopia/migrations/v2/types/member.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/params.pb.go b/x/gitopia/migrations/v2/types/params.pb.go index 0f05f535..b3660fad 100644 --- a/x/gitopia/migrations/v2/types/params.pb.go +++ b/x/gitopia/migrations/v2/types/params.pb.go @@ -6,9 +6,9 @@ package types import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_gogo_protobuf_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" diff --git a/x/gitopia/migrations/v2/types/pullRequest.pb.go b/x/gitopia/migrations/v2/types/pullRequest.pb.go index 335067ac..e99d47a3 100644 --- a/x/gitopia/migrations/v2/types/pullRequest.pb.go +++ b/x/gitopia/migrations/v2/types/pullRequest.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/query.pb.go b/x/gitopia/migrations/v2/types/query.pb.go index b7c70d46..dfc4ea3e 100644 --- a/x/gitopia/migrations/v2/types/query.pb.go +++ b/x/gitopia/migrations/v2/types/query.pb.go @@ -8,9 +8,9 @@ import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/x/gitopia/migrations/v2/types/reaction.pb.go b/x/gitopia/migrations/v2/types/reaction.pb.go index e90e1432..303b7104 100644 --- a/x/gitopia/migrations/v2/types/reaction.pb.go +++ b/x/gitopia/migrations/v2/types/reaction.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/release.pb.go b/x/gitopia/migrations/v2/types/release.pb.go index de45b86a..43cca7c0 100644 --- a/x/gitopia/migrations/v2/types/release.pb.go +++ b/x/gitopia/migrations/v2/types/release.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/repository.pb.go b/x/gitopia/migrations/v2/types/repository.pb.go index 039579d7..d9ad9fd4 100644 --- a/x/gitopia/migrations/v2/types/repository.pb.go +++ b/x/gitopia/migrations/v2/types/repository.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/tag.pb.go b/x/gitopia/migrations/v2/types/tag.pb.go index 11909127..99871690 100644 --- a/x/gitopia/migrations/v2/types/tag.pb.go +++ b/x/gitopia/migrations/v2/types/tag.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/task.pb.go b/x/gitopia/migrations/v2/types/task.pb.go index f1fd8b06..050b5e94 100644 --- a/x/gitopia/migrations/v2/types/task.pb.go +++ b/x/gitopia/migrations/v2/types/task.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/user.pb.go b/x/gitopia/migrations/v2/types/user.pb.go index 84c89318..490f198e 100644 --- a/x/gitopia/migrations/v2/types/user.pb.go +++ b/x/gitopia/migrations/v2/types/user.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/whois.pb.go b/x/gitopia/migrations/v2/types/whois.pb.go index 05d7d8b1..c298bf07 100644 --- a/x/gitopia/migrations/v2/types/whois.pb.go +++ b/x/gitopia/migrations/v2/types/whois.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/storage_provider.pb.go b/x/gitopia/types/storage_provider.pb.go index bcbe538e..809b5bc7 100644 --- a/x/gitopia/types/storage_provider.pb.go +++ b/x/gitopia/types/storage_provider.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" From 83bfa3a3dae3a5a4b981ba054421dfb4449acef1 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Mon, 26 Jun 2023 16:55:08 +0700 Subject: [PATCH 07/26] revert proto --- proto/buf.gen.gogo.yaml | 8 ------- proto/buf.lock | 19 --------------- proto/buf.yaml | 24 ------------------- proto/gitopia/{gitopia => }/attachment.proto | 0 proto/gitopia/{gitopia => }/bounty.proto | 0 proto/gitopia/{gitopia => }/branch.proto | 0 proto/gitopia/{gitopia => }/comment.proto | 0 proto/gitopia/{gitopia => }/dao.proto | 0 .../{gitopia => }/exercised_amount.proto | 0 proto/gitopia/{gitopia => }/genesis.proto | 0 proto/gitopia/{gitopia => }/issue.proto | 0 proto/gitopia/{gitopia => }/member.proto | 0 proto/gitopia/{gitopia => }/params.proto | 0 proto/gitopia/{gitopia => }/pullRequest.proto | 0 proto/gitopia/{gitopia => }/query.proto | 0 proto/gitopia/{gitopia => }/reaction.proto | 0 proto/gitopia/{gitopia => }/release.proto | 0 proto/gitopia/{gitopia => }/repository.proto | 0 proto/gitopia/{gitopia => }/tag.proto | 0 proto/gitopia/{gitopia => }/task.proto | 0 proto/gitopia/{gitopia => }/tx.proto | 0 proto/gitopia/{gitopia => }/user.proto | 0 proto/gitopia/{gitopia => }/whois.proto | 0 proto/{gitopia => }/offchain/offchain.proto | 0 proto/{gitopia => }/rewards/genesis.proto | 0 proto/{gitopia => }/rewards/params.proto | 0 proto/{gitopia => }/rewards/query.proto | 0 proto/{gitopia => }/rewards/rewards.proto | 0 proto/{gitopia => }/rewards/task.proto | 0 proto/{gitopia => }/rewards/tx.proto | 0 30 files changed, 51 deletions(-) delete mode 100644 proto/buf.gen.gogo.yaml delete mode 100644 proto/buf.lock delete mode 100644 proto/buf.yaml rename proto/gitopia/{gitopia => }/attachment.proto (100%) rename proto/gitopia/{gitopia => }/bounty.proto (100%) rename proto/gitopia/{gitopia => }/branch.proto (100%) rename proto/gitopia/{gitopia => }/comment.proto (100%) rename proto/gitopia/{gitopia => }/dao.proto (100%) rename proto/gitopia/{gitopia => }/exercised_amount.proto (100%) rename proto/gitopia/{gitopia => }/genesis.proto (100%) rename proto/gitopia/{gitopia => }/issue.proto (100%) rename proto/gitopia/{gitopia => }/member.proto (100%) rename proto/gitopia/{gitopia => }/params.proto (100%) rename proto/gitopia/{gitopia => }/pullRequest.proto (100%) rename proto/gitopia/{gitopia => }/query.proto (100%) rename proto/gitopia/{gitopia => }/reaction.proto (100%) rename proto/gitopia/{gitopia => }/release.proto (100%) rename proto/gitopia/{gitopia => }/repository.proto (100%) rename proto/gitopia/{gitopia => }/tag.proto (100%) rename proto/gitopia/{gitopia => }/task.proto (100%) rename proto/gitopia/{gitopia => }/tx.proto (100%) rename proto/gitopia/{gitopia => }/user.proto (100%) rename proto/gitopia/{gitopia => }/whois.proto (100%) rename proto/{gitopia => }/offchain/offchain.proto (100%) rename proto/{gitopia => }/rewards/genesis.proto (100%) rename proto/{gitopia => }/rewards/params.proto (100%) rename proto/{gitopia => }/rewards/query.proto (100%) rename proto/{gitopia => }/rewards/rewards.proto (100%) rename proto/{gitopia => }/rewards/task.proto (100%) rename proto/{gitopia => }/rewards/tx.proto (100%) diff --git a/proto/buf.gen.gogo.yaml b/proto/buf.gen.gogo.yaml deleted file mode 100644 index 855ea251..00000000 --- a/proto/buf.gen.gogo.yaml +++ /dev/null @@ -1,8 +0,0 @@ -version: v1 -plugins: - - name: gocosmos - out: .. - opt: plugins=grpc,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types - - name: grpc-gateway - out: .. - opt: logtostderr=true,allow_colon_final_segments=true \ No newline at end of file diff --git a/proto/buf.lock b/proto/buf.lock deleted file mode 100644 index 32594c77..00000000 --- a/proto/buf.lock +++ /dev/null @@ -1,19 +0,0 @@ -# Generated by buf. DO NOT EDIT. -version: v1 -deps: - - remote: buf.build - owner: cosmos - repository: cosmos-proto - commit: 1935555c206d4afb9e94615dfd0fad31 - - remote: buf.build - owner: cosmos - repository: cosmos-sdk - commit: 8dc523b705c34317bfd4a961fba89e72 - - remote: buf.build - owner: cosmos - repository: gogo-proto - commit: 34d970b699f84aa382f3c29773a60836 - - remote: buf.build - owner: googleapis - repository: googleapis - commit: 5ae7f88519b04fe1965da0f8a375a088 \ No newline at end of file diff --git a/proto/buf.yaml b/proto/buf.yaml deleted file mode 100644 index 4a161970..00000000 --- a/proto/buf.yaml +++ /dev/null @@ -1,24 +0,0 @@ -version: v1 -name: buf.build/gitopia/gitopia -deps: - - buf.build/cosmos/cosmos-proto - - buf.build/cosmos/gogo-proto - - buf.build/googleapis/googleapis - - buf.build/cosmos/cosmos-sdk - -breaking: - use: - - FILE -lint: - use: - - DEFAULT - - COMMENTS - - FILE_LOWER_SNAKE_CASE - except: - - UNARY_RPC - - COMMENT_FIELD - - SERVICE_SUFFIX - - PACKAGE_VERSION_SUFFIX - - RPC_REQUEST_STANDARD_NAME - ignore: - - tendermint \ No newline at end of file diff --git a/proto/gitopia/gitopia/attachment.proto b/proto/gitopia/attachment.proto similarity index 100% rename from proto/gitopia/gitopia/attachment.proto rename to proto/gitopia/attachment.proto diff --git a/proto/gitopia/gitopia/bounty.proto b/proto/gitopia/bounty.proto similarity index 100% rename from proto/gitopia/gitopia/bounty.proto rename to proto/gitopia/bounty.proto diff --git a/proto/gitopia/gitopia/branch.proto b/proto/gitopia/branch.proto similarity index 100% rename from proto/gitopia/gitopia/branch.proto rename to proto/gitopia/branch.proto diff --git a/proto/gitopia/gitopia/comment.proto b/proto/gitopia/comment.proto similarity index 100% rename from proto/gitopia/gitopia/comment.proto rename to proto/gitopia/comment.proto diff --git a/proto/gitopia/gitopia/dao.proto b/proto/gitopia/dao.proto similarity index 100% rename from proto/gitopia/gitopia/dao.proto rename to proto/gitopia/dao.proto diff --git a/proto/gitopia/gitopia/exercised_amount.proto b/proto/gitopia/exercised_amount.proto similarity index 100% rename from proto/gitopia/gitopia/exercised_amount.proto rename to proto/gitopia/exercised_amount.proto diff --git a/proto/gitopia/gitopia/genesis.proto b/proto/gitopia/genesis.proto similarity index 100% rename from proto/gitopia/gitopia/genesis.proto rename to proto/gitopia/genesis.proto diff --git a/proto/gitopia/gitopia/issue.proto b/proto/gitopia/issue.proto similarity index 100% rename from proto/gitopia/gitopia/issue.proto rename to proto/gitopia/issue.proto diff --git a/proto/gitopia/gitopia/member.proto b/proto/gitopia/member.proto similarity index 100% rename from proto/gitopia/gitopia/member.proto rename to proto/gitopia/member.proto diff --git a/proto/gitopia/gitopia/params.proto b/proto/gitopia/params.proto similarity index 100% rename from proto/gitopia/gitopia/params.proto rename to proto/gitopia/params.proto diff --git a/proto/gitopia/gitopia/pullRequest.proto b/proto/gitopia/pullRequest.proto similarity index 100% rename from proto/gitopia/gitopia/pullRequest.proto rename to proto/gitopia/pullRequest.proto diff --git a/proto/gitopia/gitopia/query.proto b/proto/gitopia/query.proto similarity index 100% rename from proto/gitopia/gitopia/query.proto rename to proto/gitopia/query.proto diff --git a/proto/gitopia/gitopia/reaction.proto b/proto/gitopia/reaction.proto similarity index 100% rename from proto/gitopia/gitopia/reaction.proto rename to proto/gitopia/reaction.proto diff --git a/proto/gitopia/gitopia/release.proto b/proto/gitopia/release.proto similarity index 100% rename from proto/gitopia/gitopia/release.proto rename to proto/gitopia/release.proto diff --git a/proto/gitopia/gitopia/repository.proto b/proto/gitopia/repository.proto similarity index 100% rename from proto/gitopia/gitopia/repository.proto rename to proto/gitopia/repository.proto diff --git a/proto/gitopia/gitopia/tag.proto b/proto/gitopia/tag.proto similarity index 100% rename from proto/gitopia/gitopia/tag.proto rename to proto/gitopia/tag.proto diff --git a/proto/gitopia/gitopia/task.proto b/proto/gitopia/task.proto similarity index 100% rename from proto/gitopia/gitopia/task.proto rename to proto/gitopia/task.proto diff --git a/proto/gitopia/gitopia/tx.proto b/proto/gitopia/tx.proto similarity index 100% rename from proto/gitopia/gitopia/tx.proto rename to proto/gitopia/tx.proto diff --git a/proto/gitopia/gitopia/user.proto b/proto/gitopia/user.proto similarity index 100% rename from proto/gitopia/gitopia/user.proto rename to proto/gitopia/user.proto diff --git a/proto/gitopia/gitopia/whois.proto b/proto/gitopia/whois.proto similarity index 100% rename from proto/gitopia/gitopia/whois.proto rename to proto/gitopia/whois.proto diff --git a/proto/gitopia/offchain/offchain.proto b/proto/offchain/offchain.proto similarity index 100% rename from proto/gitopia/offchain/offchain.proto rename to proto/offchain/offchain.proto diff --git a/proto/gitopia/rewards/genesis.proto b/proto/rewards/genesis.proto similarity index 100% rename from proto/gitopia/rewards/genesis.proto rename to proto/rewards/genesis.proto diff --git a/proto/gitopia/rewards/params.proto b/proto/rewards/params.proto similarity index 100% rename from proto/gitopia/rewards/params.proto rename to proto/rewards/params.proto diff --git a/proto/gitopia/rewards/query.proto b/proto/rewards/query.proto similarity index 100% rename from proto/gitopia/rewards/query.proto rename to proto/rewards/query.proto diff --git a/proto/gitopia/rewards/rewards.proto b/proto/rewards/rewards.proto similarity index 100% rename from proto/gitopia/rewards/rewards.proto rename to proto/rewards/rewards.proto diff --git a/proto/gitopia/rewards/task.proto b/proto/rewards/task.proto similarity index 100% rename from proto/gitopia/rewards/task.proto rename to proto/rewards/task.proto diff --git a/proto/gitopia/rewards/tx.proto b/proto/rewards/tx.proto similarity index 100% rename from proto/gitopia/rewards/tx.proto rename to proto/rewards/tx.proto From 159f92318796703f535b19eb7a50d0fb34a5a195 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Mon, 26 Jun 2023 17:40:54 +0700 Subject: [PATCH 08/26] fix unit test --- docs/static/openapi.yml | 2 + proto/gitopia/comment.proto | 4 +- proto/gitopia/genesis.proto | 30 +- proto/gitopia/issue.proto | 2 +- proto/gitopia/pullRequest.proto | 2 +- proto/gitopia/query.proto | 26 +- proto/gitopia/release.proto | 2 +- proto/gitopia/repository.proto | 2 +- proto/gitopia/tx.proto | 28 +- proto/rewards/genesis.proto | 4 +- proto/rewards/query.proto | 4 +- proto/rewards/tx.proto | 2 +- x/gitopia/client/cli/txRepository.go | 32 ++ x/gitopia/handler.go | 4 + .../migrations/testnet/types/branch.pb.go | 2 +- .../migrations/testnet/types/comment.pb.go | 4 +- x/gitopia/migrations/testnet/types/dao.pb.go | 4 +- .../migrations/testnet/types/genesis.pb.go | 4 +- .../migrations/testnet/types/issue.pb.go | 4 +- .../migrations/testnet/types/member.pb.go | 2 +- .../testnet/types/pullRequest.pb.go | 4 +- .../migrations/testnet/types/release.pb.go | 4 +- .../migrations/testnet/types/repository.pb.go | 4 +- x/gitopia/migrations/testnet/types/tag.pb.go | 2 +- x/gitopia/migrations/testnet/types/task.pb.go | 4 +- x/gitopia/migrations/testnet/types/user.pb.go | 4 +- .../migrations/testnet/types/whois.pb.go | 4 +- .../migrations/v2/types/attachment.pb.go | 2 +- x/gitopia/migrations/v2/types/bounty.pb.go | 4 +- x/gitopia/migrations/v2/types/branch.pb.go | 2 +- x/gitopia/migrations/v2/types/comment.pb.go | 4 +- x/gitopia/migrations/v2/types/dao.pb.go | 4 +- .../v2/types/exercised_amount.pb.go | 4 +- x/gitopia/migrations/v2/types/genesis.pb.go | 4 +- x/gitopia/migrations/v2/types/issue.pb.go | 4 +- x/gitopia/migrations/v2/types/member.pb.go | 2 +- x/gitopia/migrations/v2/types/params.pb.go | 6 +- .../migrations/v2/types/pullRequest.pb.go | 4 +- x/gitopia/migrations/v2/types/query.pb.go | 6 +- x/gitopia/migrations/v2/types/reaction.pb.go | 4 +- x/gitopia/migrations/v2/types/release.pb.go | 4 +- .../migrations/v2/types/repository.pb.go | 4 +- x/gitopia/migrations/v2/types/tag.pb.go | 2 +- x/gitopia/migrations/v2/types/task.pb.go | 4 +- x/gitopia/migrations/v2/types/user.pb.go | 4 +- x/gitopia/migrations/v2/types/whois.pb.go | 4 +- x/gitopia/types/attachment.pb.go | 2 +- x/gitopia/types/bounty.pb.go | 4 +- x/gitopia/types/branch.pb.go | 2 +- x/gitopia/types/comment.pb.go | 4 +- x/gitopia/types/dao.pb.go | 4 +- x/gitopia/types/exercised_amount.pb.go | 4 +- x/gitopia/types/genesis.pb.go | 4 +- x/gitopia/types/issue.pb.go | 4 +- x/gitopia/types/member.pb.go | 2 +- x/gitopia/types/messages_repository.go | 43 ++ x/gitopia/types/mock_msg_client.go | 30 + x/gitopia/types/params.pb.go | 6 +- x/gitopia/types/pullRequest.pb.go | 4 +- x/gitopia/types/query.pb.go | 6 +- x/gitopia/types/reaction.pb.go | 4 +- x/gitopia/types/release.pb.go | 4 +- x/gitopia/types/repository.pb.go | 4 +- x/gitopia/types/storage_provider.pb.go | 2 +- x/gitopia/types/tag.pb.go | 2 +- x/gitopia/types/task.pb.go | 4 +- x/gitopia/types/tx.pb.go | 6 +- x/gitopia/types/user.pb.go | 4 +- x/gitopia/types/whois.pb.go | 4 +- x/offchain/types/offchain.pb.go | 4 +- x/rewards/client/cli/test/gentxs/node0.json | 1 + .../cli/test/node0/simcli/key_seed.json | 1 + ...2cebdf1c7f2698f3013d390c7151ca1839.address | 1 + .../test/node0/simcli/keyring-test/node0.info | 1 + .../cli/test/node0/simd/config/addrbook.json | 4 + .../cli/test/node0/simd/config/app.toml | 252 +++++++++ .../cli/test/node0/simd/config/config.toml | 471 ++++++++++++++++ .../cli/test/node0/simd/config/genesis.json | 525 ++++++++++++++++++ .../cli/test/node0/simd/config/node_key.json | 1 + .../node0/simd/config/priv_validator_key.json | 11 + .../node0/simd/data/blockstore.db/000001.log | Bin 0 -> 11493 bytes .../node0/simd/data/blockstore.db/CURRENT | 1 + .../test/node0/simd/data/blockstore.db/LOCK | 0 .../test/node0/simd/data/blockstore.db/LOG | 6 + .../simd/data/blockstore.db/MANIFEST-000000 | Bin 0 -> 54 bytes .../cli/test/node0/simd/data/cs.wal/wal | Bin 0 -> 11013 bytes .../node0/simd/data/evidence.db/000001.log | 0 .../test/node0/simd/data/evidence.db/CURRENT | 1 + .../cli/test/node0/simd/data/evidence.db/LOCK | 0 .../cli/test/node0/simd/data/evidence.db/LOG | 6 + .../simd/data/evidence.db/MANIFEST-000000 | Bin 0 -> 54 bytes .../node0/simd/data/priv_validator_state.json | 7 + .../test/node0/simd/data/state.db/000001.log | Bin 0 -> 43091 bytes .../cli/test/node0/simd/data/state.db/CURRENT | 1 + .../cli/test/node0/simd/data/state.db/LOCK | 0 .../cli/test/node0/simd/data/state.db/LOG | 6 + .../node0/simd/data/state.db/MANIFEST-000000 | Bin 0 -> 54 bytes .../node0/simd/data/tx_index.db/000001.log | Bin 0 -> 22544 bytes .../test/node0/simd/data/tx_index.db/CURRENT | 1 + .../cli/test/node0/simd/data/tx_index.db/LOCK | 0 .../cli/test/node0/simd/data/tx_index.db/LOG | 6 + .../simd/data/tx_index.db/MANIFEST-000000 | Bin 0 -> 54 bytes x/rewards/types/genesis.pb.go | 4 +- x/rewards/types/params.pb.go | 6 +- x/rewards/types/query.pb.go | 6 +- x/rewards/types/rewards.pb.go | 4 +- x/rewards/types/task.pb.go | 2 +- x/rewards/types/tx.pb.go | 6 +- 108 files changed, 1582 insertions(+), 168 deletions(-) create mode 100644 x/rewards/client/cli/test/gentxs/node0.json create mode 100644 x/rewards/client/cli/test/node0/simcli/key_seed.json create mode 100644 x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address create mode 100644 x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info create mode 100644 x/rewards/client/cli/test/node0/simd/config/addrbook.json create mode 100644 x/rewards/client/cli/test/node0/simd/config/app.toml create mode 100644 x/rewards/client/cli/test/node0/simd/config/config.toml create mode 100644 x/rewards/client/cli/test/node0/simd/config/genesis.json create mode 100644 x/rewards/client/cli/test/node0/simd/config/node_key.json create mode 100644 x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json create mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/000001.log create mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT create mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOCK create mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG create mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/MANIFEST-000000 create mode 100644 x/rewards/client/cli/test/node0/simd/data/cs.wal/wal create mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/000001.log create mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT create mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/LOCK create mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG create mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/MANIFEST-000000 create mode 100644 x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json create mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/000001.log create mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT create mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/LOCK create mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/LOG create mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/MANIFEST-000000 create mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/000001.log create mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT create mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOCK create mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG create mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/MANIFEST-000000 diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index a132acde..b860c796 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -76834,6 +76834,8 @@ definitions: type: object gitopia.gitopia.gitopia.MsgUpdateRepositoryDescriptionResponse: type: object + gitopia.gitopia.gitopia.MsgUpdateArchiveStateResponse: + type: object gitopia.gitopia.gitopia.MsgUpdateRepositoryLabelResponse: type: object gitopia.gitopia.gitopia.MsgUpdateTaskResponse: diff --git a/proto/gitopia/comment.proto b/proto/gitopia/comment.proto index c3a6763b..94b7eb57 100644 --- a/proto/gitopia/comment.proto +++ b/proto/gitopia/comment.proto @@ -4,8 +4,8 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/gitopia/reaction.proto"; -import "gitopia/gitopia/attachment.proto"; +import "gitopia/reaction.proto"; +import "gitopia/attachment.proto"; enum CommentType { option (gogoproto.goproto_enum_prefix) = false; diff --git a/proto/gitopia/genesis.proto b/proto/gitopia/genesis.proto index 89f67e9c..e634f627 100644 --- a/proto/gitopia/genesis.proto +++ b/proto/gitopia/genesis.proto @@ -1,23 +1,23 @@ syntax = "proto3"; package gitopia.gitopia.gitopia; -import "gitopia/gitopia/task.proto"; -import "gitopia/gitopia/branch.proto"; -import "gitopia/gitopia/tag.proto"; -import "gitopia/gitopia/member.proto"; -import "gitopia/gitopia/bounty.proto"; +import "gitopia/task.proto"; +import "gitopia/branch.proto"; +import "gitopia/tag.proto"; +import "gitopia/member.proto"; +import "gitopia/bounty.proto"; // this line is used by starport scaffolding # genesis/proto/import import "gogoproto/gogo.proto"; -import "gitopia/gitopia/release.proto"; -import "gitopia/gitopia/pullRequest.proto"; -import "gitopia/gitopia/dao.proto"; -import "gitopia/gitopia/comment.proto"; -import "gitopia/gitopia/issue.proto"; -import "gitopia/gitopia/repository.proto"; -import "gitopia/gitopia/user.proto"; -import "gitopia/gitopia/whois.proto"; -import "gitopia/gitopia/params.proto"; -import "gitopia/gitopia/exercised_amount.proto"; +import "gitopia/release.proto"; +import "gitopia/pullRequest.proto"; +import "gitopia/dao.proto"; +import "gitopia/comment.proto"; +import "gitopia/issue.proto"; +import "gitopia/repository.proto"; +import "gitopia/user.proto"; +import "gitopia/whois.proto"; +import "gitopia/params.proto"; +import "gitopia/exercised_amount.proto"; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; diff --git a/proto/gitopia/issue.proto b/proto/gitopia/issue.proto index 47542269..a16f422d 100644 --- a/proto/gitopia/issue.proto +++ b/proto/gitopia/issue.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/gitopia/repository.proto"; +import "gitopia/repository.proto"; message Issue { string creator = 1; diff --git a/proto/gitopia/pullRequest.proto b/proto/gitopia/pullRequest.proto index 9ce087df..b2b598cc 100644 --- a/proto/gitopia/pullRequest.proto +++ b/proto/gitopia/pullRequest.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/gitopia/repository.proto"; +import "gitopia/repository.proto"; message PullRequest { string creator = 1; diff --git a/proto/gitopia/query.proto b/proto/gitopia/query.proto index 84e70009..ca53fae2 100644 --- a/proto/gitopia/query.proto +++ b/proto/gitopia/query.proto @@ -3,21 +3,21 @@ package gitopia.gitopia.gitopia; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "gitopia/gitopia/task.proto"; -import "gitopia/gitopia/branch.proto"; -import "gitopia/gitopia/tag.proto"; -import "gitopia/gitopia/member.proto"; -import "gitopia/gitopia/bounty.proto"; +import "gitopia/task.proto"; +import "gitopia/branch.proto"; +import "gitopia/tag.proto"; +import "gitopia/member.proto"; +import "gitopia/bounty.proto"; // this line is used by starport scaffolding # 1 import "gogoproto/gogo.proto"; -import "gitopia/gitopia/release.proto"; -import "gitopia/gitopia/pullRequest.proto"; -import "gitopia/gitopia/dao.proto"; -import "gitopia/gitopia/comment.proto"; -import "gitopia/gitopia/issue.proto"; -import "gitopia/gitopia/repository.proto"; -import "gitopia/gitopia/user.proto"; -import "gitopia/gitopia/whois.proto"; +import "gitopia/release.proto"; +import "gitopia/pullRequest.proto"; +import "gitopia/dao.proto"; +import "gitopia/comment.proto"; +import "gitopia/issue.proto"; +import "gitopia/repository.proto"; +import "gitopia/user.proto"; +import "gitopia/whois.proto"; import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; diff --git a/proto/gitopia/release.proto b/proto/gitopia/release.proto index d5e8c9d7..3b0c86b4 100644 --- a/proto/gitopia/release.proto +++ b/proto/gitopia/release.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/gitopia/attachment.proto"; +import "gitopia/attachment.proto"; message Release { string creator = 1; diff --git a/proto/gitopia/repository.proto b/proto/gitopia/repository.proto index ad8bb900..d75e7b66 100644 --- a/proto/gitopia/repository.proto +++ b/proto/gitopia/repository.proto @@ -4,7 +4,7 @@ package gitopia.gitopia.gitopia; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; import "gogoproto/gogo.proto"; -import "gitopia/gitopia/whois.proto"; +import "gitopia/whois.proto"; message Repository { string creator = 1; diff --git a/proto/gitopia/tx.proto b/proto/gitopia/tx.proto index d164c8e2..4e2eb0da 100644 --- a/proto/gitopia/tx.proto +++ b/proto/gitopia/tx.proto @@ -2,22 +2,22 @@ syntax = "proto3"; package gitopia.gitopia.gitopia; import "gogoproto/gogo.proto"; -import "gitopia/gitopia/task.proto"; -import "gitopia/gitopia/branch.proto"; -import "gitopia/gitopia/tag.proto"; -import "gitopia/gitopia/member.proto"; -import "gitopia/gitopia/bounty.proto"; +import "gitopia/task.proto"; +import "gitopia/branch.proto"; +import "gitopia/tag.proto"; +import "gitopia/member.proto"; +import "gitopia/bounty.proto"; // this line is used by starport scaffolding # proto/tx/import -import "gitopia/gitopia/release.proto"; -import "gitopia/gitopia/pullRequest.proto"; -import "gitopia/gitopia/dao.proto"; -import "gitopia/gitopia/comment.proto"; -import "gitopia/gitopia/issue.proto"; -import "gitopia/gitopia/repository.proto"; -import "gitopia/gitopia/whois.proto"; +import "gitopia/release.proto"; +import "gitopia/pullRequest.proto"; +import "gitopia/dao.proto"; +import "gitopia/comment.proto"; +import "gitopia/issue.proto"; +import "gitopia/repository.proto"; +import "gitopia/whois.proto"; import "cosmos/base/v1beta1/coin.proto"; -import "gitopia/gitopia/attachment.proto"; -import "gitopia/gitopia/reaction.proto"; +import "gitopia/attachment.proto"; +import "gitopia/reaction.proto"; option go_package = "github.com/gitopia/gitopia/x/gitopia/types"; diff --git a/proto/rewards/genesis.proto b/proto/rewards/genesis.proto index 1aa23deb..de744deb 100644 --- a/proto/rewards/genesis.proto +++ b/proto/rewards/genesis.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package gitopia.gitopia.rewards; import "gogoproto/gogo.proto"; -import "gitopia/rewards/params.proto"; -import "gitopia/rewards/rewards.proto"; +import "rewards/params.proto"; +import "rewards/rewards.proto"; import "cosmos/base/v1beta1/coin.proto"; // this line is used by starport scaffolding # genesis/proto/import diff --git a/proto/rewards/query.proto b/proto/rewards/query.proto index d6bf2766..6de699b7 100644 --- a/proto/rewards/query.proto +++ b/proto/rewards/query.proto @@ -4,8 +4,8 @@ package gitopia.gitopia.rewards; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "gitopia/rewards/task.proto"; -import "gitopia/rewards/rewards.proto"; +import "rewards/task.proto"; +import "rewards/rewards.proto"; import "cosmos/base/v1beta1/coin.proto"; // this line is used by starport scaffolding # 1 diff --git a/proto/rewards/tx.proto b/proto/rewards/tx.proto index 3f93fff1..0902b224 100644 --- a/proto/rewards/tx.proto +++ b/proto/rewards/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package gitopia.gitopia.rewards; import "gogoproto/gogo.proto"; -import "gitopia/rewards/rewards.proto"; +import "rewards/rewards.proto"; import "cosmos/base/v1beta1/coin.proto"; // this line is used by starport scaffolding # proto/tx/import diff --git a/x/gitopia/client/cli/txRepository.go b/x/gitopia/client/cli/txRepository.go index 6122e6fb..c621a5f4 100644 --- a/x/gitopia/client/cli/txRepository.go +++ b/x/gitopia/client/cli/txRepository.go @@ -195,6 +195,38 @@ func CmdUpdateRepositoryDescription() *cobra.Command { return cmd } +func CmdUpdateArchiveState() *cobra.Command { + cmd := &cobra.Command{ + Use: "update-archive-state [owner-id] [repository-name] [archived]", + Short: "Update archive state", + Args: cobra.ExactArgs(3), + RunE: func(cmd *cobra.Command, args []string) error { + argOwnerid := args[0] + argRepositoryName := args[1] + argArchived := args[2] + + clientCtx, err := client.GetClientTxContext(cmd) + if err != nil { + return err + } + archived, _ := strconv.ParseBool(argArchived) + msg := types.NewMsgUpdateArchiveState( + clientCtx.GetFromAddress().String(), + types.RepositoryId{Id: argOwnerid, Name: argRepositoryName}, + archived, + ) + if err := msg.ValidateBasic(); err != nil { + return err + } + return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg) + }, + } + + flags.AddTxFlagsToCmd(cmd) + + return cmd +} + func CmdChangeOwner() *cobra.Command { cmd := &cobra.Command{ Use: "change-owner [id] [repository-name] [owner-id]", diff --git a/x/gitopia/handler.go b/x/gitopia/handler.go index f0f4af1a..e39d03f3 100644 --- a/x/gitopia/handler.go +++ b/x/gitopia/handler.go @@ -284,6 +284,10 @@ func NewHandler(k keeper.Keeper) sdk.Handler { res, err := msgServer.RenameRepository(sdk.WrapSDKContext(ctx), msg) return sdk.WrapServiceResult(ctx, res, err) + case *types.MsgUpdateArchiveState: + res, err := msgServer.UpdateArchiveState(sdk.WrapSDKContext(ctx), msg) + return sdk.WrapServiceResult(ctx, res, err) + case *types.MsgUpdateRepositoryDescription: res, err := msgServer.UpdateRepositoryDescription(sdk.WrapSDKContext(ctx), msg) return sdk.WrapServiceResult(ctx, res, err) diff --git a/x/gitopia/migrations/testnet/types/branch.pb.go b/x/gitopia/migrations/testnet/types/branch.pb.go index b9aa6b00..0de696d0 100644 --- a/x/gitopia/migrations/testnet/types/branch.pb.go +++ b/x/gitopia/migrations/testnet/types/branch.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/comment.pb.go b/x/gitopia/migrations/testnet/types/comment.pb.go index 97a04bfe..6a03a299 100644 --- a/x/gitopia/migrations/testnet/types/comment.pb.go +++ b/x/gitopia/migrations/testnet/types/comment.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/dao.pb.go b/x/gitopia/migrations/testnet/types/dao.pb.go index eb6dd47e..a3ba4adb 100644 --- a/x/gitopia/migrations/testnet/types/dao.pb.go +++ b/x/gitopia/migrations/testnet/types/dao.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/genesis.pb.go b/x/gitopia/migrations/testnet/types/genesis.pb.go index d92633e3..6899b57a 100644 --- a/x/gitopia/migrations/testnet/types/genesis.pb.go +++ b/x/gitopia/migrations/testnet/types/genesis.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/issue.pb.go b/x/gitopia/migrations/testnet/types/issue.pb.go index 8c7ab949..837c09f2 100644 --- a/x/gitopia/migrations/testnet/types/issue.pb.go +++ b/x/gitopia/migrations/testnet/types/issue.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/member.pb.go b/x/gitopia/migrations/testnet/types/member.pb.go index 40adb97d..2aeb22e8 100644 --- a/x/gitopia/migrations/testnet/types/member.pb.go +++ b/x/gitopia/migrations/testnet/types/member.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/pullRequest.pb.go b/x/gitopia/migrations/testnet/types/pullRequest.pb.go index db3a0dc0..6fde77d4 100644 --- a/x/gitopia/migrations/testnet/types/pullRequest.pb.go +++ b/x/gitopia/migrations/testnet/types/pullRequest.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/release.pb.go b/x/gitopia/migrations/testnet/types/release.pb.go index e8e1eb3c..e8d71c03 100644 --- a/x/gitopia/migrations/testnet/types/release.pb.go +++ b/x/gitopia/migrations/testnet/types/release.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/repository.pb.go b/x/gitopia/migrations/testnet/types/repository.pb.go index ca1a1700..086bb9c7 100644 --- a/x/gitopia/migrations/testnet/types/repository.pb.go +++ b/x/gitopia/migrations/testnet/types/repository.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/tag.pb.go b/x/gitopia/migrations/testnet/types/tag.pb.go index 55f01125..ef333f7a 100644 --- a/x/gitopia/migrations/testnet/types/tag.pb.go +++ b/x/gitopia/migrations/testnet/types/tag.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/task.pb.go b/x/gitopia/migrations/testnet/types/task.pb.go index 23272fba..cc28eace 100644 --- a/x/gitopia/migrations/testnet/types/task.pb.go +++ b/x/gitopia/migrations/testnet/types/task.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/user.pb.go b/x/gitopia/migrations/testnet/types/user.pb.go index 8d393d94..c7ec4af9 100644 --- a/x/gitopia/migrations/testnet/types/user.pb.go +++ b/x/gitopia/migrations/testnet/types/user.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/testnet/types/whois.pb.go b/x/gitopia/migrations/testnet/types/whois.pb.go index c4b3a9e7..c5ee206f 100644 --- a/x/gitopia/migrations/testnet/types/whois.pb.go +++ b/x/gitopia/migrations/testnet/types/whois.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/attachment.pb.go b/x/gitopia/migrations/v2/types/attachment.pb.go index ca85d9c2..785a46a8 100644 --- a/x/gitopia/migrations/v2/types/attachment.pb.go +++ b/x/gitopia/migrations/v2/types/attachment.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/bounty.pb.go b/x/gitopia/migrations/v2/types/bounty.pb.go index dfd03182..f33614f5 100644 --- a/x/gitopia/migrations/v2/types/bounty.pb.go +++ b/x/gitopia/migrations/v2/types/bounty.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/branch.pb.go b/x/gitopia/migrations/v2/types/branch.pb.go index 4cd99691..09aa4471 100644 --- a/x/gitopia/migrations/v2/types/branch.pb.go +++ b/x/gitopia/migrations/v2/types/branch.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/comment.pb.go b/x/gitopia/migrations/v2/types/comment.pb.go index a9ea295f..ddd0c71a 100644 --- a/x/gitopia/migrations/v2/types/comment.pb.go +++ b/x/gitopia/migrations/v2/types/comment.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/dao.pb.go b/x/gitopia/migrations/v2/types/dao.pb.go index 3f103323..5b8e0160 100644 --- a/x/gitopia/migrations/v2/types/dao.pb.go +++ b/x/gitopia/migrations/v2/types/dao.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/exercised_amount.pb.go b/x/gitopia/migrations/v2/types/exercised_amount.pb.go index ffbb5eae..6d744336 100644 --- a/x/gitopia/migrations/v2/types/exercised_amount.pb.go +++ b/x/gitopia/migrations/v2/types/exercised_amount.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/genesis.pb.go b/x/gitopia/migrations/v2/types/genesis.pb.go index 0c2ca1da..469cf09e 100644 --- a/x/gitopia/migrations/v2/types/genesis.pb.go +++ b/x/gitopia/migrations/v2/types/genesis.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/issue.pb.go b/x/gitopia/migrations/v2/types/issue.pb.go index f34e7784..f44d4422 100644 --- a/x/gitopia/migrations/v2/types/issue.pb.go +++ b/x/gitopia/migrations/v2/types/issue.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/member.pb.go b/x/gitopia/migrations/v2/types/member.pb.go index e1c6206d..3d91696e 100644 --- a/x/gitopia/migrations/v2/types/member.pb.go +++ b/x/gitopia/migrations/v2/types/member.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/params.pb.go b/x/gitopia/migrations/v2/types/params.pb.go index b3660fad..0f05f535 100644 --- a/x/gitopia/migrations/v2/types/params.pb.go +++ b/x/gitopia/migrations/v2/types/params.pb.go @@ -6,9 +6,9 @@ package types import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" - github_com_gogo_protobuf_types "github.com/cosmos/gogoproto/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" diff --git a/x/gitopia/migrations/v2/types/pullRequest.pb.go b/x/gitopia/migrations/v2/types/pullRequest.pb.go index e99d47a3..335067ac 100644 --- a/x/gitopia/migrations/v2/types/pullRequest.pb.go +++ b/x/gitopia/migrations/v2/types/pullRequest.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/query.pb.go b/x/gitopia/migrations/v2/types/query.pb.go index dfc4ea3e..b7c70d46 100644 --- a/x/gitopia/migrations/v2/types/query.pb.go +++ b/x/gitopia/migrations/v2/types/query.pb.go @@ -8,9 +8,9 @@ import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/cosmos/gogoproto/gogoproto" - grpc1 "github.com/cosmos/gogoproto/grpc" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + grpc1 "github.com/gogo/protobuf/grpc" + proto "github.com/gogo/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/x/gitopia/migrations/v2/types/reaction.pb.go b/x/gitopia/migrations/v2/types/reaction.pb.go index 303b7104..e90e1432 100644 --- a/x/gitopia/migrations/v2/types/reaction.pb.go +++ b/x/gitopia/migrations/v2/types/reaction.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/release.pb.go b/x/gitopia/migrations/v2/types/release.pb.go index 43cca7c0..de45b86a 100644 --- a/x/gitopia/migrations/v2/types/release.pb.go +++ b/x/gitopia/migrations/v2/types/release.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/repository.pb.go b/x/gitopia/migrations/v2/types/repository.pb.go index d9ad9fd4..039579d7 100644 --- a/x/gitopia/migrations/v2/types/repository.pb.go +++ b/x/gitopia/migrations/v2/types/repository.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/tag.pb.go b/x/gitopia/migrations/v2/types/tag.pb.go index 99871690..11909127 100644 --- a/x/gitopia/migrations/v2/types/tag.pb.go +++ b/x/gitopia/migrations/v2/types/tag.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/task.pb.go b/x/gitopia/migrations/v2/types/task.pb.go index 050b5e94..f1fd8b06 100644 --- a/x/gitopia/migrations/v2/types/task.pb.go +++ b/x/gitopia/migrations/v2/types/task.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/user.pb.go b/x/gitopia/migrations/v2/types/user.pb.go index 490f198e..84c89318 100644 --- a/x/gitopia/migrations/v2/types/user.pb.go +++ b/x/gitopia/migrations/v2/types/user.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/migrations/v2/types/whois.pb.go b/x/gitopia/migrations/v2/types/whois.pb.go index c298bf07..05d7d8b1 100644 --- a/x/gitopia/migrations/v2/types/whois.pb.go +++ b/x/gitopia/migrations/v2/types/whois.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/attachment.pb.go b/x/gitopia/types/attachment.pb.go index 1690effd..7f81031c 100644 --- a/x/gitopia/types/attachment.pb.go +++ b/x/gitopia/types/attachment.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/bounty.pb.go b/x/gitopia/types/bounty.pb.go index 986b223f..ea3fa87a 100644 --- a/x/gitopia/types/bounty.pb.go +++ b/x/gitopia/types/bounty.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/branch.pb.go b/x/gitopia/types/branch.pb.go index b2025feb..04a9c16c 100644 --- a/x/gitopia/types/branch.pb.go +++ b/x/gitopia/types/branch.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/comment.pb.go b/x/gitopia/types/comment.pb.go index 2333b034..021490ae 100644 --- a/x/gitopia/types/comment.pb.go +++ b/x/gitopia/types/comment.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/dao.pb.go b/x/gitopia/types/dao.pb.go index cfd04413..7bcaa002 100644 --- a/x/gitopia/types/dao.pb.go +++ b/x/gitopia/types/dao.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/exercised_amount.pb.go b/x/gitopia/types/exercised_amount.pb.go index d461de9c..0788e671 100644 --- a/x/gitopia/types/exercised_amount.pb.go +++ b/x/gitopia/types/exercised_amount.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/genesis.pb.go b/x/gitopia/types/genesis.pb.go index 6241ef04..e2a02a02 100644 --- a/x/gitopia/types/genesis.pb.go +++ b/x/gitopia/types/genesis.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/issue.pb.go b/x/gitopia/types/issue.pb.go index 927cf027..a886868e 100644 --- a/x/gitopia/types/issue.pb.go +++ b/x/gitopia/types/issue.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/member.pb.go b/x/gitopia/types/member.pb.go index c80a7e91..2cf651ee 100644 --- a/x/gitopia/types/member.pb.go +++ b/x/gitopia/types/member.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/messages_repository.go b/x/gitopia/types/messages_repository.go index 708d3c99..01fc71ca 100644 --- a/x/gitopia/types/messages_repository.go +++ b/x/gitopia/types/messages_repository.go @@ -749,6 +749,49 @@ func (msg *MsgUpdateRepositoryDescription) ValidateBasic() error { return nil } +var _ sdk.Msg = &MsgUpdateArchiveState{} + +func NewMsgUpdateArchiveState(creator string, repositoryId RepositoryId, archived bool) *MsgUpdateArchiveState { + return &MsgUpdateArchiveState{ + Creator: creator, + RepositoryId: repositoryId, + Archived: archived, + } +} + +func (msg *MsgUpdateArchiveState) Route() string { + return RouterKey +} + +func (msg *MsgUpdateArchiveState) Type() string { + return "UpdateArchivedState" +} + +func (msg *MsgUpdateArchiveState) GetSigners() []sdk.AccAddress { + creator, err := sdk.AccAddressFromBech32(msg.Creator) + if err != nil { + panic(err) + } + return []sdk.AccAddress{creator} +} + +func (msg *MsgUpdateArchiveState) GetSignBytes() []byte { + bz := ModuleCdc.MustMarshalJSON(msg) + return sdk.MustSortJSON(bz) +} + +func (msg *MsgUpdateArchiveState) ValidateBasic() error { + _, err := sdk.AccAddressFromBech32(msg.Creator) + if err != nil { + return sdkerrors.Wrapf(sdkerrors.ErrInvalidAddress, "invalid creator address (%s)", err) + } + + if err := ValidateRepositoryId(msg.RepositoryId); err != nil { + return sdkerrors.Wrapf(sdkerrors.ErrInvalidRequest, err.Error()) + } + return nil +} + var _ sdk.Msg = &MsgToggleRepositoryForking{} func NewMsgToggleRepositoryForking(creator string, repositoryId RepositoryId) *MsgToggleRepositoryForking { diff --git a/x/gitopia/types/mock_msg_client.go b/x/gitopia/types/mock_msg_client.go index 268d7058..b7d0cf09 100644 --- a/x/gitopia/types/mock_msg_client.go +++ b/x/gitopia/types/mock_msg_client.go @@ -2235,6 +2235,36 @@ func (_m *MockMsgClient) UpdateRepositoryDescription(ctx context.Context, in *Ms return r0, r1 } +// UpdateArchiveState provides a mock function with given fields: ctx, in, opts +func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgUpdateArchiveState, opts ...grpc.CallOption) (*MsgUpdateArchiveStateResponse, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *MsgUpdateArchiveStateResponse + if rf, ok := ret.Get(0).(func(context.Context, *MsgUpdateArchiveState, ...grpc.CallOption) *MsgUpdateArchiveStateResponse); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*MsgUpdateArchiveStateResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *MsgUpdateArchiveState, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + // UpdateRepositoryLabel provides a mock function with given fields: ctx, in, opts func (_m *MockMsgClient) UpdateRepositoryLabel(ctx context.Context, in *MsgUpdateRepositoryLabel, opts ...grpc.CallOption) (*MsgUpdateRepositoryLabelResponse, error) { _va := make([]interface{}, len(opts)) diff --git a/x/gitopia/types/params.pb.go b/x/gitopia/types/params.pb.go index 5a8b68e8..02516ed7 100644 --- a/x/gitopia/types/params.pb.go +++ b/x/gitopia/types/params.pb.go @@ -6,9 +6,9 @@ package types import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" - github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + github_com_cosmos_gogoproto_types "github.com/gogo/protobuf/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" diff --git a/x/gitopia/types/pullRequest.pb.go b/x/gitopia/types/pullRequest.pb.go index e03c2a40..901f78ad 100644 --- a/x/gitopia/types/pullRequest.pb.go +++ b/x/gitopia/types/pullRequest.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/query.pb.go b/x/gitopia/types/query.pb.go index 8836af59..12567ad9 100644 --- a/x/gitopia/types/query.pb.go +++ b/x/gitopia/types/query.pb.go @@ -8,9 +8,9 @@ import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/cosmos/gogoproto/gogoproto" - grpc1 "github.com/cosmos/gogoproto/grpc" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + grpc1 "github.com/gogo/protobuf/grpc" + proto "github.com/gogo/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/x/gitopia/types/reaction.pb.go b/x/gitopia/types/reaction.pb.go index 5478ef36..89277998 100644 --- a/x/gitopia/types/reaction.pb.go +++ b/x/gitopia/types/reaction.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/release.pb.go b/x/gitopia/types/release.pb.go index b662e086..b29dbcab 100644 --- a/x/gitopia/types/release.pb.go +++ b/x/gitopia/types/release.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/repository.pb.go b/x/gitopia/types/repository.pb.go index 1ce9ab39..f6e86ec0 100644 --- a/x/gitopia/types/repository.pb.go +++ b/x/gitopia/types/repository.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/storage_provider.pb.go b/x/gitopia/types/storage_provider.pb.go index 809b5bc7..bcbe538e 100644 --- a/x/gitopia/types/storage_provider.pb.go +++ b/x/gitopia/types/storage_provider.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/tag.pb.go b/x/gitopia/types/tag.pb.go index 39274640..991c8782 100644 --- a/x/gitopia/types/tag.pb.go +++ b/x/gitopia/types/tag.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/task.pb.go b/x/gitopia/types/task.pb.go index a8ab05cd..4b86454d 100644 --- a/x/gitopia/types/task.pb.go +++ b/x/gitopia/types/task.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index e21a458c..88d42bac 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -8,9 +8,9 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - grpc1 "github.com/cosmos/gogoproto/grpc" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + grpc1 "github.com/gogo/protobuf/grpc" + proto "github.com/gogo/protobuf/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/x/gitopia/types/user.pb.go b/x/gitopia/types/user.pb.go index 6779b27a..e7a5d072 100644 --- a/x/gitopia/types/user.pb.go +++ b/x/gitopia/types/user.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/gitopia/types/whois.pb.go b/x/gitopia/types/whois.pb.go index fe0396f7..09fba723 100644 --- a/x/gitopia/types/whois.pb.go +++ b/x/gitopia/types/whois.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/offchain/types/offchain.pb.go b/x/offchain/types/offchain.pb.go index d4201e2c..e5ebe7b9 100644 --- a/x/offchain/types/offchain.pb.go +++ b/x/offchain/types/offchain.pb.go @@ -5,8 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/rewards/client/cli/test/gentxs/node0.json b/x/rewards/client/cli/test/gentxs/node0.json new file mode 100644 index 00000000..1f2a01bf --- /dev/null +++ b/x/rewards/client/cli/test/gentxs/node0.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"node0","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.500000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj","validator_address":"gitopiavaloper16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpetkaaqf","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"R8BO1pHa1IKb1wBUtmLebP/MQs9JEtb/z2CjRiQFrqI="},"value":{"denom":"stake","amount":"100000000"}}],"memo":"d10c6e76c940ec22c1ad97e8fbd2d2356fbdc7f4@0.0.0.0:60147","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AvqWBRXATV9M+ddn/uzTxB3QoTliBUGK/9vcY5wNvsVN"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"1000000","payer":"","granter":""},"tip":null},"signatures":["TEC5QFohxPWj/7LPeV/chRuu8hDP6IM28T475jNR6m4MZC18ch+u6QkzQ/WTdt4HuPc1Bjvbv57HMc3cxK35kw=="]} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simcli/key_seed.json b/x/rewards/client/cli/test/node0/simcli/key_seed.json new file mode 100644 index 00000000..d5b4a950 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simcli/key_seed.json @@ -0,0 +1 @@ +{"secret":"sad pitch spatial usual cloth twice disorder segment height excite flat differ disagree cake any fault learn eyebrow lesson seminar arctic brother weapon day"} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address b/x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address new file mode 100644 index 00000000..c980bd14 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNi0yNiAxNzozOTo0MC4xNzczNTkgKzA3MDAgKzA3IG09KzE1LjI1MjUxNjMzNCIsImVuYyI6IkEyNTZHQ00iLCJwMmMiOjgxOTIsInAycyI6IkFtVjNLSFFmT2Jmd3JmUUwifQ.hL6XwLESHz5wyj0QzVzkkdQM9gzbsE5AOLjXsBlKyeEGb1uMfXbj3A.0tdGhfrjiEpVmpV_.ftUqDf4hJwVe-at6AnVS1SiKLH_POq3Oum79aQ8Lz_8PVs9lBLuUD7tU-RWFe_3q8xZPdHDXXoEALEQgOVKaUmkVBF-j7Llq6AZk9ysj5YQOgDtECdByjQAbUVUl4wHlgzhMWq3gl5UP99LPmcFUcEp9_VIZrugrkoKSwA1PeK6M25gClDDhyxOoteSWX7pfdMWtLFrUDn3RJB_83o1lxWT0Not21onl-VYjpo1FHcEzqbXOUco.7vrlGKglEg8eZ8BxEQ0tHQ \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info b/x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info new file mode 100644 index 00000000..1ead24d6 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNi0yNiAxNzozOTo0MC4xNzU3OTUgKzA3MDAgKzA3IG09KzE1LjI1MDk1MjAwMSIsImVuYyI6IkEyNTZHQ00iLCJwMmMiOjgxOTIsInAycyI6ImlwSE9UaERtLUc5WlB0eEwifQ.EpNJp60TbjnWIqX9CYgP0C1UH6jTsq9lfwoPU6dM_aCfT6X5DwopBw.4fHjzMy-8wq9PFSc.stsMZCJJJxa_tMN9snmp1ouDeu5tZ4Zm-_OV_OcJB_CpTxTSwQGf5pgWzQ5oxF3WZu4Q68u2QG4Mog9AztX9VTYjF387aM05ZQVxfavhknJV5n-UDI8Cpqdg_CywK7-0V3n-DgPKdMFnI71dhWnqI-zfyNt8RfDxhajI64SODIR3Fy_JFdZ-ospUl2I-G705PKEfzHKalBrDj2DyIolOw_5XUm3RiLdeBMQmE7sM_0l4Aw2K8WwJBBK8RrBCdlkPpmcJyM5V1uYFfmmY5DLxkssi4DTBeaikhRTfEDVXsbLZiH3mn5FnHVz9wWSB6Zz_Ml4H4TNLgG2mpyTgLPmrPh80tWNnJK1FZrWmXBhiCqh5FLigzCsizAahcqAr8KqQvX9fyXhr69zEtsLJrmforpv8UOJ9K3obS_FM2-YVHr8f9Hsi0sc76Hcg0EA.R3PkdjxX3x54HBVkDZRksg \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/addrbook.json b/x/rewards/client/cli/test/node0/simd/config/addrbook.json new file mode 100644 index 00000000..aa184347 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/config/addrbook.json @@ -0,0 +1,4 @@ +{ + "key": "021653a1b133d5c1b897b524", + "addrs": [] +} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/app.toml b/x/rewards/client/cli/test/node0/simd/config/app.toml new file mode 100644 index 00000000..7805885d --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/config/app.toml @@ -0,0 +1,252 @@ +# This is a TOML config file. +# For more information, see https://github.com/toml-lang/toml + +############################################################################### +### Base Configuration ### +############################################################################### + +# The minimum gas prices a validator is willing to accept for processing a +# transaction. A transaction's fees must meet the minimum of any denomination +# specified in this config (e.g. 0.25token1;0.0001token2). +minimum-gas-prices = "0.000006stake" + +# default: the last 362880 states are kept, pruning at 10 block intervals +# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node) +# everything: 2 latest states will be kept; pruning at 10 block intervals. +# custom: allow pruning options to be manually specified through 'pruning-keep-recent', and 'pruning-interval' +pruning = "nothing" + +# These are applied if and only if the pruning strategy is custom. +pruning-keep-recent = "0" +pruning-interval = "0" + +# HaltHeight contains a non-zero block height at which a node will gracefully +# halt and shutdown that can be used to assist upgrades and testing. +# +# Note: Commitment of state will be attempted on the corresponding block. +halt-height = 0 + +# HaltTime contains a non-zero minimum block time (in Unix seconds) at which +# a node will gracefully halt and shutdown that can be used to assist upgrades +# and testing. +# +# Note: Commitment of state will be attempted on the corresponding block. +halt-time = 0 + +# MinRetainBlocks defines the minimum block height offset from the current +# block being committed, such that all blocks past this offset are pruned +# from Tendermint. It is used as part of the process of determining the +# ResponseCommit.RetainHeight value during ABCI Commit. A value of 0 indicates +# that no blocks should be pruned. +# +# This configuration value is only responsible for pruning Tendermint blocks. +# It has no bearing on application state pruning which is determined by the +# "pruning-*" configurations. +# +# Note: Tendermint block pruning is dependant on this parameter in conunction +# with the unbonding (safety threshold) period, state pruning and state sync +# snapshot parameters to determine the correct minimum value of +# ResponseCommit.RetainHeight. +min-retain-blocks = 0 + +# InterBlockCache enables inter-block caching. +inter-block-cache = true + +# IndexEvents defines the set of events in the form {eventType}.{attributeKey}, +# which informs Tendermint what to index. If empty, all events will be indexed. +# +# Example: +# ["message.sender", "message.recipient"] +index-events = [] + +# IavlCacheSize set the size of the iavl tree cache. +# Default cache size is 50mb. +iavl-cache-size = 781250 + +# IavlDisableFastNode enables or disables the fast node feature of IAVL. +# Default is false. +iavl-disable-fastnode = false + +# EXPERIMENTAL: IAVLLazyLoading enable/disable the lazy loading of iavl store. +# Default is false. +iavl-lazy-loading = false + +# AppDBBackend defines the database backend type to use for the application and snapshots DBs. +# An empty string indicates that a fallback will be used. +# First fallback is the deprecated compile-time types.DBBackend value. +# Second fallback (if the types.DBBackend also isn't set), is the db-backend value set in Tendermint's config.toml. +app-db-backend = "" + +############################################################################### +### Telemetry Configuration ### +############################################################################### + +[telemetry] + +# Prefixed with keys to separate services. +service-name = "" + +# Enabled enables the application telemetry functionality. When enabled, +# an in-memory sink is also enabled by default. Operators may also enabled +# other sinks such as Prometheus. +enabled = false + +# Enable prefixing gauge values with hostname. +enable-hostname = false + +# Enable adding hostname to labels. +enable-hostname-label = false + +# Enable adding service to labels. +enable-service-label = false + +# PrometheusRetentionTime, when positive, enables a Prometheus metrics sink. +prometheus-retention-time = 0 + +# GlobalLabels defines a global set of name/value label tuples applied to all +# metrics emitted using the wrapper functions defined in telemetry package. +# +# Example: +# [["chain_id", "cosmoshub-1"]] +global-labels = [ +] + +############################################################################### +### API Configuration ### +############################################################################### + +[api] + +# Enable defines if the API server should be enabled. +enable = true + +# Swagger defines if swagger documentation should automatically be registered. +swagger = false + +# Address defines the API server to listen on. +address = "tcp://0.0.0.0:60142" + +# MaxOpenConnections defines the number of maximum open connections. +max-open-connections = 1000 + +# RPCReadTimeout defines the Tendermint RPC read timeout (in seconds). +rpc-read-timeout = 10 + +# RPCWriteTimeout defines the Tendermint RPC write timeout (in seconds). +rpc-write-timeout = 0 + +# RPCMaxBodyBytes defines the Tendermint maximum response body (in bytes). +rpc-max-body-bytes = 1000000 + +# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk). +enabled-unsafe-cors = false + +############################################################################### +### Rosetta Configuration ### +############################################################################### + +[rosetta] + +# Enable defines if the Rosetta API server should be enabled. +enable = false + +# Address defines the Rosetta API server to listen on. +address = ":8080" + +# Network defines the name of the blockchain that will be returned by Rosetta. +blockchain = "app" + +# Network defines the name of the network that will be returned by Rosetta. +network = "network" + +# Retries defines the number of retries when connecting to the node before failing. +retries = 3 + +# Offline defines if Rosetta server should run in offline mode. +offline = false + +# EnableDefaultSuggestedFee defines if the server should suggest fee by default. +# If 'construction/medata' is called without gas limit and gas price, +# suggested fee based on gas-to-suggest and denom-to-suggest will be given. +enable-fee-suggestion = false + +# GasToSuggest defines gas limit when calculating the fee +gas-to-suggest = 200000 + +# DenomToSuggest defines the defult denom for fee suggestion. +# Price must be in minimum-gas-prices. +denom-to-suggest = "uatom" + +############################################################################### +### gRPC Configuration ### +############################################################################### + +[grpc] + +# Enable defines if the gRPC server should be enabled. +enable = true + +# Address defines the gRPC server address to bind to. +address = "0.0.0.0:60144" + +# MaxRecvMsgSize defines the max message size in bytes the server can receive. +# The default value is 10MB. +max-recv-msg-size = "10485760" + +# MaxSendMsgSize defines the max message size in bytes the server can send. +# The default value is math.MaxInt32. +max-send-msg-size = "2147483647" + +############################################################################### +### gRPC Web Configuration ### +############################################################################### + +[grpc-web] + +# GRPCWebEnable defines if the gRPC-web should be enabled. +# NOTE: gRPC must also be enabled, otherwise, this configuration is a no-op. +enable = true + +# Address defines the gRPC-web server address to bind to. +address = "0.0.0.0:60145" + +# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk). +enable-unsafe-cors = false + +############################################################################### +### State Sync Configuration ### +############################################################################### + +# State sync snapshots allow other nodes to rapidly join the network without replaying historical +# blocks, instead downloading and applying a snapshot of the application state at a given height. +[state-sync] + +# snapshot-interval specifies the block interval at which local state sync snapshots are +# taken (0 to disable). +snapshot-interval = 0 + +# snapshot-keep-recent specifies the number of recent snapshots to keep and serve (0 to keep all). +snapshot-keep-recent = 2 + +############################################################################### +### Store / State Streaming ### +############################################################################### + +[store] +streamers = [] + +[streamers] +[streamers.file] +keys = ["*", ] +write_dir = "" +prefix = "" + +# output-metadata specifies if output the metadata file which includes the abci request/responses +# during processing the block. +output-metadata = "true" + +# stop-node-on-error specifies if propagate the file streamer errors to consensus state machine. +stop-node-on-error = "true" + +# fsync specifies if call fsync after writing the files. +fsync = "false" diff --git a/x/rewards/client/cli/test/node0/simd/config/config.toml b/x/rewards/client/cli/test/node0/simd/config/config.toml new file mode 100644 index 00000000..0255c6af --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/config/config.toml @@ -0,0 +1,471 @@ +# This is a TOML config file. +# For more information, see https://github.com/toml-lang/toml + +# NOTE: Any path below can be absolute (e.g. "/var/myawesomeapp/data") or +# relative to the home directory (e.g. "data"). The home directory is +# "$HOME/.cometbft" by default, but could be changed via $CMTHOME env variable +# or --home cmd flag. + +####################################################################### +### Main Base Config Options ### +####################################################################### + +# TCP or UNIX socket address of the ABCI application, +# or the name of an ABCI application compiled in with the CometBFT binary +proxy_app = "tcp://0.0.0.0:60146" + +# A custom human readable name for this node +moniker = "node0" + +# If this node is many blocks behind the tip of the chain, FastSync +# allows them to catchup quickly by downloading blocks in parallel +# and verifying their commits +fast_sync = true + +# Database backend: goleveldb | cleveldb | boltdb | rocksdb | badgerdb +# * goleveldb (github.com/syndtr/goleveldb - most popular implementation) +# - pure go +# - stable +# * cleveldb (uses levigo wrapper) +# - fast +# - requires gcc +# - use cleveldb build tag (go build -tags cleveldb) +# * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt) +# - EXPERIMENTAL +# - may be faster is some use-cases (random reads - indexer) +# - use boltdb build tag (go build -tags boltdb) +# * rocksdb (uses github.com/tecbot/gorocksdb) +# - EXPERIMENTAL +# - requires gcc +# - use rocksdb build tag (go build -tags rocksdb) +# * badgerdb (uses github.com/dgraph-io/badger) +# - EXPERIMENTAL +# - use badgerdb build tag (go build -tags badgerdb) +db_backend = "goleveldb" + +# Database directory +db_dir = "data" + +# Output level for logging, including package level options +log_level = "info" + +# Output format: 'plain' (colored text) or 'json' +log_format = "plain" + +##### additional base config options ##### + +# Path to the JSON file containing the initial validator set and other meta data +genesis_file = "config/genesis.json" + +# Path to the JSON file containing the private key to use as a validator in the consensus protocol +priv_validator_key_file = "config/priv_validator_key.json" + +# Path to the JSON file containing the last sign state of a validator +priv_validator_state_file = "data/priv_validator_state.json" + +# TCP or UNIX socket address for CometBFT to listen on for +# connections from an external PrivValidator process +priv_validator_laddr = "" + +# Path to the JSON file containing the private key to use for node authentication in the p2p protocol +node_key_file = "config/node_key.json" + +# Mechanism to connect to the ABCI application: socket | grpc +abci = "socket" + +# If true, query the ABCI app on connecting to a new peer +# so the app can decide if we should keep the connection or not +filter_peers = false + + +####################################################################### +### Advanced Configuration Options ### +####################################################################### + +####################################################### +### RPC Server Configuration Options ### +####################################################### +[rpc] + +# TCP or UNIX socket address for the RPC server to listen on +laddr = "tcp://0.0.0.0:60143" + +# A list of origins a cross-domain request can be executed from +# Default value '[]' disables cors support +# Use '["*"]' to allow any origin +cors_allowed_origins = [] + +# A list of methods the client is allowed to use with cross-domain requests +cors_allowed_methods = ["HEAD", "GET", "POST", ] + +# A list of non simple headers the client is allowed to use with cross-domain requests +cors_allowed_headers = ["Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time", ] + +# TCP or UNIX socket address for the gRPC server to listen on +# NOTE: This server only supports /broadcast_tx_commit +grpc_laddr = "" + +# Maximum number of simultaneous connections. +# Does not include RPC (HTTP&WebSocket) connections. See max_open_connections +# If you want to accept a larger number than the default, make sure +# you increase your OS limits. +# 0 - unlimited. +# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files} +# 1024 - 40 - 10 - 50 = 924 = ~900 +grpc_max_open_connections = 900 + +# Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool +unsafe = false + +# Maximum number of simultaneous connections (including WebSocket). +# Does not include gRPC connections. See grpc_max_open_connections +# If you want to accept a larger number than the default, make sure +# you increase your OS limits. +# 0 - unlimited. +# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files} +# 1024 - 40 - 10 - 50 = 924 = ~900 +max_open_connections = 900 + +# Maximum number of unique clientIDs that can /subscribe +# If you're using /broadcast_tx_commit, set to the estimated maximum number +# of broadcast_tx_commit calls per block. +max_subscription_clients = 100 + +# Maximum number of unique queries a given client can /subscribe to +# If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set to +# the estimated # maximum number of broadcast_tx_commit calls per block. +max_subscriptions_per_client = 5 + +# Experimental parameter to specify the maximum number of events a node will +# buffer, per subscription, before returning an error and closing the +# subscription. Must be set to at least 100, but higher values will accommodate +# higher event throughput rates (and will use more memory). +experimental_subscription_buffer_size = 200 + +# Experimental parameter to specify the maximum number of RPC responses that +# can be buffered per WebSocket client. If clients cannot read from the +# WebSocket endpoint fast enough, they will be disconnected, so increasing this +# parameter may reduce the chances of them being disconnected (but will cause +# the node to use more memory). +# +# Must be at least the same as "experimental_subscription_buffer_size", +# otherwise connections could be dropped unnecessarily. This value should +# ideally be somewhat higher than "experimental_subscription_buffer_size" to +# accommodate non-subscription-related RPC responses. +experimental_websocket_write_buffer_size = 200 + +# If a WebSocket client cannot read fast enough, at present we may +# silently drop events instead of generating an error or disconnecting the +# client. +# +# Enabling this experimental parameter will cause the WebSocket connection to +# be closed instead if it cannot read fast enough, allowing for greater +# predictability in subscription behaviour. +experimental_close_on_slow_client = false + +# How long to wait for a tx to be committed during /broadcast_tx_commit. +# WARNING: Using a value larger than 10s will result in increasing the +# global HTTP write timeout, which applies to all connections and endpoints. +# See https://github.com/tendermint/tendermint/issues/3435 +timeout_broadcast_tx_commit = "10s" + +# Maximum size of request body, in bytes +max_body_bytes = 1000000 + +# Maximum size of request header, in bytes +max_header_bytes = 1048576 + +# The path to a file containing certificate that is used to create the HTTPS server. +# Might be either absolute path or path related to CometBFT's config directory. +# If the certificate is signed by a certificate authority, +# the certFile should be the concatenation of the server's certificate, any intermediates, +# and the CA's certificate. +# NOTE: both tls_cert_file and tls_key_file must be present for CometBFT to create HTTPS server. +# Otherwise, HTTP server is run. +tls_cert_file = "" + +# The path to a file containing matching private key that is used to create the HTTPS server. +# Might be either absolute path or path related to CometBFT's config directory. +# NOTE: both tls-cert-file and tls-key-file must be present for CometBFT to create HTTPS server. +# Otherwise, HTTP server is run. +tls_key_file = "" + +# pprof listen address (https://golang.org/pkg/net/http/pprof) +pprof_laddr = "" + +####################################################### +### P2P Configuration Options ### +####################################################### +[p2p] + +# Address to listen for incoming connections +laddr = "tcp://0.0.0.0:60147" + +# Address to advertise to peers for them to dial +# If empty, will use the same port as the laddr, +# and will introspect on the listener or use UPnP +# to figure out the address. ip and port are required +# example: 159.89.10.97:26656 +external_address = "" + +# Comma separated list of seed nodes to connect to +seeds = "" + +# Comma separated list of nodes to keep persistent connections to +persistent_peers = "" + +# UPNP port forwarding +upnp = false + +# Path to address book +addr_book_file = "config/addrbook.json" + +# Set true for strict address routability rules +# Set false for private or local networks +addr_book_strict = false + +# Maximum number of inbound peers +max_num_inbound_peers = 40 + +# Maximum number of outbound peers to connect to, excluding persistent peers +max_num_outbound_peers = 10 + +# List of node IDs, to which a connection will be (re)established ignoring any existing limits +unconditional_peer_ids = "" + +# Maximum pause when redialing a persistent peer (if zero, exponential backoff is used) +persistent_peers_max_dial_period = "0s" + +# Time to wait before flushing messages out on the connection +flush_throttle_timeout = "100ms" + +# Maximum size of a message packet payload, in bytes +max_packet_msg_payload_size = 1024 + +# Rate at which packets can be sent, in bytes/second +send_rate = 5120000 + +# Rate at which packets can be received, in bytes/second +recv_rate = 5120000 + +# Set true to enable the peer-exchange reactor +pex = true + +# Seed mode, in which node constantly crawls the network and looks for +# peers. If another node asks it for addresses, it responds and disconnects. +# +# Does not work if the peer-exchange reactor is disabled. +seed_mode = false + +# Comma separated list of peer IDs to keep private (will not be gossiped to other peers) +private_peer_ids = "" + +# Toggle to disable guard against peers connecting from the same ip. +allow_duplicate_ip = true + +# Peer connection configuration. +handshake_timeout = "20s" +dial_timeout = "3s" + +####################################################### +### Mempool Configuration Option ### +####################################################### +[mempool] + +# Mempool version to use: +# 1) "v0" - (default) FIFO mempool. +# 2) "v1" - prioritized mempool. +version = "v0" + +# Recheck (default: true) defines whether CometBFT should recheck the +# validity for all remaining transaction in the mempool after a block. +# Since a block affects the application state, some transactions in the +# mempool may become invalid. If this does not apply to your application, +# you can disable rechecking. +recheck = true +broadcast = true +wal_dir = "" + +# Maximum number of transactions in the mempool +size = 5000 + +# Limit the total size of all txs in the mempool. +# This only accounts for raw transactions (e.g. given 1MB transactions and +# max_txs_bytes=5MB, mempool will only accept 5 transactions). +max_txs_bytes = 1073741824 + +# Size of the cache (used to filter transactions we saw earlier) in transactions +cache_size = 10000 + +# Do not remove invalid transactions from the cache (default: false) +# Set to true if it's not possible for any invalid transaction to become valid +# again in the future. +keep-invalid-txs-in-cache = false + +# Maximum size of a single transaction. +# NOTE: the max size of a tx transmitted over the network is {max_tx_bytes}. +max_tx_bytes = 1048576 + +# Maximum size of a batch of transactions to send to a peer +# Including space needed by encoding (one varint per transaction). +# XXX: Unused due to https://github.com/tendermint/tendermint/issues/5796 +max_batch_bytes = 0 + +# ttl-duration, if non-zero, defines the maximum amount of time a transaction +# can exist for in the mempool. +# +# Note, if ttl-num-blocks is also defined, a transaction will be removed if it +# has existed in the mempool at least ttl-num-blocks number of blocks or if it's +# insertion time into the mempool is beyond ttl-duration. +ttl-duration = "0s" + +# ttl-num-blocks, if non-zero, defines the maximum number of blocks a transaction +# can exist for in the mempool. +# +# Note, if ttl-duration is also defined, a transaction will be removed if it +# has existed in the mempool at least ttl-num-blocks number of blocks or if +# it's insertion time into the mempool is beyond ttl-duration. +ttl-num-blocks = 0 + +####################################################### +### State Sync Configuration Options ### +####################################################### +[statesync] +# State sync rapidly bootstraps a new node by discovering, fetching, and restoring a state machine +# snapshot from peers instead of fetching and replaying historical blocks. Requires some peers in +# the network to take and serve state machine snapshots. State sync is not attempted if the node +# has any local state (LastBlockHeight > 0). The node will have a truncated block history, +# starting from the height of the snapshot. +enable = false + +# RPC servers (comma-separated) for light client verification of the synced state machine and +# retrieval of state data for node bootstrapping. Also needs a trusted height and corresponding +# header hash obtained from a trusted source, and a period during which validators can be trusted. +# +# For Cosmos SDK-based chains, trust_period should usually be about 2/3 of the unbonding time (~2 +# weeks) during which they can be financially punished (slashed) for misbehavior. +rpc_servers = "" +trust_height = 0 +trust_hash = "" +trust_period = "168h0m0s" + +# Time to spend discovering snapshots before initiating a restore. +discovery_time = "15s" + +# Temporary directory for state sync snapshot chunks, defaults to the OS tempdir (typically /tmp). +# Will create a new, randomly named directory within, and remove it when done. +temp_dir = "" + +# The timeout duration before re-requesting a chunk, possibly from a different +# peer (default: 1 minute). +chunk_request_timeout = "10s" + +# The number of concurrent chunk fetchers to run (default: 1). +chunk_fetchers = "4" + +####################################################### +### Fast Sync Configuration Connections ### +####################################################### +[fastsync] + +# Fast Sync version to use: +# 1) "v0" (default) - the legacy fast sync implementation +# 2) "v1" - refactor of v0 version for better testability +# 2) "v2" - complete redesign of v0, optimized for testability & readability +version = "v0" + +####################################################### +### Consensus Configuration Options ### +####################################################### +[consensus] + +wal_file = "data/cs.wal/wal" + +# How long we wait for a proposal block before prevoting nil +timeout_propose = "3s" +# How much timeout_propose increases with each round +timeout_propose_delta = "500ms" +# How long we wait after receiving +2/3 prevotes for “anything” (ie. not a single block or nil) +timeout_prevote = "1s" +# How much the timeout_prevote increases with each round +timeout_prevote_delta = "500ms" +# How long we wait after receiving +2/3 precommits for “anything” (ie. not a single block or nil) +timeout_precommit = "1s" +# How much the timeout_precommit increases with each round +timeout_precommit_delta = "500ms" +# How long we wait after committing a block, before starting on the new +# height (this gives us a chance to receive some more precommits, even +# though we already have +2/3). +timeout_commit = "2s" + +# How many blocks to look back to check existence of the node's consensus votes before joining consensus +# When non-zero, the node will panic upon restart +# if the same consensus key was used to sign {double_sign_check_height} last blocks. +# So, validators should stop the state machine, wait for some blocks, and then restart the state machine to avoid panic. +double_sign_check_height = 0 + +# Make progress as soon as we have all the precommits (as if TimeoutCommit = 0) +skip_timeout_commit = false + +# EmptyBlocks mode and possible interval between empty blocks +create_empty_blocks = true +create_empty_blocks_interval = "0s" + +# Reactor sleep duration parameters +peer_gossip_sleep_duration = "100ms" +peer_query_maj23_sleep_duration = "2s" + +####################################################### +### Storage Configuration Options ### +####################################################### +[storage] + +# Set to true to discard ABCI responses from the state store, which can save a +# considerable amount of disk space. Set to false to ensure ABCI responses are +# persisted. ABCI responses are required for /block_results RPC queries, and to +# reindex events in the command-line tool. +discard_abci_responses = false + +####################################################### +### Transaction Indexer Configuration Options ### +####################################################### +[tx_index] + +# What indexer to use for transactions +# +# The application will set which txs to index. In some cases a node operator will be able +# to decide which txs to index based on configuration set in the application. +# +# Options: +# 1) "null" +# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend). +# - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed. +# 3) "psql" - the indexer services backed by PostgreSQL. +# When "kv" or "psql" is chosen "tx.height" and "tx.hash" will always be indexed. +indexer = "kv" + +# The PostgreSQL connection configuration, the connection format: +# postgresql://:@:/? +psql-conn = "" + +####################################################### +### Instrumentation Configuration Options ### +####################################################### +[instrumentation] + +# When true, Prometheus metrics are served under /metrics on +# PrometheusListenAddr. +# Check out the documentation for the list of available metrics. +prometheus = false + +# Address to listen for Prometheus collector(s) connections +prometheus_listen_addr = ":26660" + +# Maximum number of simultaneous connections. +# If you want to accept a larger number than the default, make sure +# you increase your OS limits. +# 0 - unlimited. +max_open_connections = 3 + +# Instrumentation namespace +namespace = "cometbft" diff --git a/x/rewards/client/cli/test/node0/simd/config/genesis.json b/x/rewards/client/cli/test/node0/simd/config/genesis.json new file mode 100644 index 00000000..cf8fc7eb --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/config/genesis.json @@ -0,0 +1,525 @@ +{ + "genesis_time": "2023-06-26T10:39:40.182707Z", + "chain_id": "chain-kvYIGY", + "initial_height": "1", + "consensus_params": { + "block": { + "max_bytes": "22020096", + "max_gas": "-1", + "time_iota_ms": "1000" + }, + "evidence": { + "max_age_num_blocks": "100000", + "max_age_duration": "172800000000000", + "max_bytes": "1048576" + }, + "validator": { + "pub_key_types": [ + "ed25519" + ] + }, + "version": {} + }, + "app_hash": "", + "app_state": { + "auth": { + "params": { + "max_memo_characters": "256", + "tx_sig_limit": "7", + "tx_size_cost_per_byte": "10", + "sig_verify_cost_ed25519": "590", + "sig_verify_cost_secp256k1": "1000" + }, + "accounts": [ + { + "@type": "/cosmos.auth.v1beta1.BaseAccount", + "address": "gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj", + "pub_key": null, + "account_number": "0", + "sequence": "0" + } + ] + }, + "authz": { + "authorization": [] + }, + "bank": { + "params": { + "send_enabled": [], + "default_send_enabled": true + }, + "balances": [ + { + "address": "gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj", + "coins": [ + { + "denom": "node0token", + "amount": "1000000000" + }, + { + "denom": "stake", + "amount": "500000000" + } + ] + } + ], + "supply": [], + "denom_metadata": [] + }, + "capability": { + "index": "1", + "owners": [] + }, + "crisis": { + "constant_fee": { + "denom": "stake", + "amount": "1000" + } + }, + "distribution": { + "params": { + "community_tax": "0.020000000000000000", + "base_proposer_reward": "0.010000000000000000", + "bonus_proposer_reward": "0.040000000000000000", + "withdraw_addr_enabled": true + }, + "fee_pool": { + "community_pool": [] + }, + "delegator_withdraw_infos": [], + "previous_proposer": "", + "outstanding_rewards": [], + "validator_accumulated_commissions": [], + "validator_historical_rewards": [], + "validator_current_rewards": [], + "delegator_starting_infos": [], + "validator_slash_events": [] + }, + "evidence": { + "evidence": [] + }, + "feegrant": { + "allowances": [] + }, + "genutil": { + "gen_txs": [ + { + "body": { + "messages": [ + { + "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", + "description": { + "moniker": "node0", + "identity": "", + "website": "", + "security_contact": "", + "details": "" + }, + "commission": { + "rate": "0.500000000000000000", + "max_rate": "1.000000000000000000", + "max_change_rate": "1.000000000000000000" + }, + "min_self_delegation": "1", + "delegator_address": "gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj", + "validator_address": "gitopiavaloper16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpetkaaqf", + "pubkey": { + "@type": "/cosmos.crypto.ed25519.PubKey", + "key": "R8BO1pHa1IKb1wBUtmLebP/MQs9JEtb/z2CjRiQFrqI=" + }, + "value": { + "denom": "stake", + "amount": "100000000" + } + } + ], + "memo": "d10c6e76c940ec22c1ad97e8fbd2d2356fbdc7f4@0.0.0.0:60147", + "timeout_height": "0", + "extension_options": [], + "non_critical_extension_options": [] + }, + "auth_info": { + "signer_infos": [ + { + "public_key": { + "@type": "/cosmos.crypto.secp256k1.PubKey", + "key": "AvqWBRXATV9M+ddn/uzTxB3QoTliBUGK/9vcY5wNvsVN" + }, + "mode_info": { + "single": { + "mode": "SIGN_MODE_DIRECT" + } + }, + "sequence": "0" + } + ], + "fee": { + "amount": [], + "gas_limit": "1000000", + "payer": "", + "granter": "" + }, + "tip": null + }, + "signatures": [ + "TEC5QFohxPWj/7LPeV/chRuu8hDP6IM28T475jNR6m4MZC18ch+u6QkzQ/WTdt4HuPc1Bjvbv57HMc3cxK35kw==" + ] + } + ] + }, + "gitopia": { + "exercisedAmountList": [], + "exercisedAmountCount": "0", + "params": { + "next_inflation_time": "2025-06-26T10:39:40.171879Z", + "pool_proportions": { + "ecosystem": { + "proportion": "30.000000000000000000", + "address": "" + }, + "team": { + "proportion": "28.000000000000000000", + "address": "" + } + }, + "team_proportions": [ + { + "proportion": "50.000000000000000000", + "address": "gitopia1k9pvyj845y9a4m4vuxx8sjq5q28yxym520fh2x" + }, + { + "proportion": "35.000000000000000000", + "address": "gitopia1njn3grh5ar4ccapyp4uehuq28wpk2sk5heu7ac" + }, + { + "proportion": "15.000000000000000000", + "address": "gitopia1d5r0ql0pg5d8xfs5t0pmn7dl72m2zj2wchkfq3" + } + ], + "genesis_time": "2022-06-26T10:39:40.171880Z", + "git_server": "gitopia1s9qkkznqqv8p838fuyzzfaxu7ckhy3v8cw3pke", + "storage_provider": "gitopia1xp4e40rd4akt882h2pxl8cw8ygxjxndu23c5wn" + }, + "bountyList": [], + "bountyCount": "0", + "userDaoList": [], + "baseRepositoryKeyList": [], + "memberList": [], + "memberCount": "0", + "tagList": [], + "tagCount": "0", + "branchList": [], + "branchCount": "0", + "taskList": [], + "taskCount": "0", + "releaseList": [], + "releaseCount": "0", + "pullRequestList": [], + "pullRequestCount": "0", + "daoList": [], + "daoCount": "0", + "commentList": [], + "commentCount": "0", + "issueList": [], + "issueCount": "0", + "repositoryList": [], + "repositoryCount": "0", + "userList": [], + "userCount": "0", + "whoisList": [], + "whoisCount": "0" + }, + "gov": { + "starting_proposal_id": "1", + "deposits": [], + "votes": [], + "proposals": [], + "deposit_params": { + "min_deposit": [ + { + "denom": "stake", + "amount": "10000000" + } + ], + "max_deposit_period": "172800s" + }, + "voting_params": { + "voting_period": "172800s" + }, + "tally_params": { + "quorum": "0.334000000000000000", + "threshold": "0.500000000000000000", + "veto_threshold": "0.334000000000000000" + } + }, + "group": { + "group_seq": "0", + "groups": [], + "group_members": [], + "group_policy_seq": "0", + "group_policies": [], + "proposal_seq": "0", + "proposals": [], + "votes": [] + }, + "ibc": { + "client_genesis": { + "clients": [], + "clients_consensus": [], + "clients_metadata": [], + "params": { + "allowed_clients": [ + "06-solomachine", + "07-tendermint" + ] + }, + "create_localhost": false, + "next_client_sequence": "0" + }, + "connection_genesis": { + "connections": [], + "client_connection_paths": [], + "next_connection_sequence": "0", + "params": { + "max_expected_time_per_block": "30000000000" + } + }, + "channel_genesis": { + "channels": [], + "acknowledgements": [], + "commitments": [], + "receipts": [], + "send_sequences": [], + "recv_sequences": [], + "ack_sequences": [], + "next_channel_sequence": "0" + } + }, + "mint": { + "minter": { + "inflation": "0.130000000000000000", + "annual_provisions": "0.000000000000000000" + }, + "params": { + "mint_denom": "stake", + "inflation_rate_change": "0.130000000000000000", + "inflation_max": "0.200000000000000000", + "inflation_min": "0.070000000000000000", + "goal_bonded": "0.670000000000000000", + "blocks_per_year": "6311520" + } + }, + "params": null, + "rewards": { + "rewardsList": [ + { + "recipient": "gitopia1k45rtjtgq6gvgxcnkcvtkrgm2zh98dxatv2mtt", + "amount": { + "denom": "", + "amount": "0" + }, + "creator": "", + "claimed_amount": { + "denom": "", + "amount": "0" + }, + "claimed_amount_with_decay": { + "denom": "", + "amount": "0" + } + }, + { + "recipient": "gitopia1fl4sjt3kw82xnk27kx6k47hgptxawfgvurqrm5", + "amount": { + "denom": "", + "amount": "0" + }, + "creator": "", + "claimed_amount": { + "denom": "", + "amount": "0" + }, + "claimed_amount_with_decay": { + "denom": "", + "amount": "0" + } + }, + { + "recipient": "gitopia1hzc4955wy5xqlj80fgaet6lmtzh7hmvh9w0uw5", + "amount": { + "denom": "", + "amount": "0" + }, + "creator": "", + "claimed_amount": { + "denom": "", + "amount": "0" + }, + "claimed_amount_with_decay": { + "denom": "", + "amount": "0" + } + }, + { + "recipient": "gitopia1zllyryn7w7z26877dscu668achw3hk6v57jwna", + "amount": { + "denom": "", + "amount": "0" + }, + "creator": "", + "claimed_amount": { + "denom": "", + "amount": "0" + }, + "claimed_amount_with_decay": { + "denom": "", + "amount": "0" + } + }, + { + "recipient": "gitopia15rn7mft3nxdm5aeflunnau6yg8uafmjy72mxtm", + "amount": { + "denom": "", + "amount": "0" + }, + "creator": "", + "claimed_amount": { + "denom": "", + "amount": "0" + }, + "claimed_amount_with_decay": { + "denom": "", + "amount": "0" + } + } + ], + "params": { + "evaluator_address": "gitopia1mnswtu0ueq7xw90u060ccfujvk04e8rv9vc47t", + "reward_series": { + "series_one": { + "total_amount": { + "denom": "ulore", + "amount": "1000" + }, + "claimed_amount": { + "denom": "ulore", + "amount": "0" + }, + "start_time": "0001-01-01T00:00:00Z", + "end_time": "0001-01-01T00:00:00Z" + }, + "series_two": { + "total_amount": { + "denom": "ulore", + "amount": "1000" + }, + "claimed_amount": { + "denom": "ulore", + "amount": "0" + }, + "start_time": "0001-01-01T00:00:00Z", + "end_time": "0001-01-01T00:00:00Z" + }, + "series_three": { + "total_amount": { + "denom": "ulore", + "amount": "1000" + }, + "claimed_amount": { + "denom": "ulore", + "amount": "0" + }, + "start_time": "0001-01-01T00:00:00Z", + "end_time": "0001-01-01T00:00:00Z" + }, + "series_four": { + "total_amount": { + "denom": "ulore", + "amount": "1000" + }, + "claimed_amount": { + "denom": "ulore", + "amount": "0" + }, + "start_time": "0001-01-01T00:00:00Z", + "end_time": "0001-01-01T00:00:00Z" + }, + "series_five": { + "total_amount": { + "denom": "ulore", + "amount": "1000" + }, + "claimed_amount": { + "denom": "ulore", + "amount": "0" + }, + "start_time": "0001-01-01T00:00:00Z", + "end_time": "0001-01-01T00:00:00Z" + }, + "series_six": { + "total_amount": { + "denom": "ulore", + "amount": "1000" + }, + "claimed_amount": { + "denom": "ulore", + "amount": "0" + }, + "start_time": "0001-01-01T00:00:00Z", + "end_time": "0001-01-01T00:00:00Z" + }, + "series_seven": { + "total_amount": { + "denom": "ulore", + "amount": "1000" + }, + "claimed_amount": { + "denom": "ulore", + "amount": "0" + }, + "start_time": "0001-01-01T00:00:00Z", + "end_time": "0001-01-01T00:00:00Z" + } + } + } + }, + "slashing": { + "params": { + "signed_blocks_window": "100", + "min_signed_per_window": "0.500000000000000000", + "downtime_jail_duration": "600s", + "slash_fraction_double_sign": "0.050000000000000000", + "slash_fraction_downtime": "0.010000000000000000" + }, + "signing_infos": [], + "missed_blocks": [] + }, + "staking": { + "params": { + "unbonding_time": "1814400s", + "max_validators": 100, + "max_entries": 7, + "historical_entries": 10000, + "bond_denom": "stake", + "min_commission_rate": "0.000000000000000000" + }, + "last_total_power": "0", + "last_validator_powers": [], + "validators": [], + "delegations": [], + "unbonding_delegations": [], + "redelegations": [], + "exported": false + }, + "transfer": { + "port_id": "transfer", + "denom_traces": [], + "params": { + "send_enabled": true, + "receive_enabled": true + } + }, + "upgrade": {}, + "vesting": {} + } +} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/node_key.json b/x/rewards/client/cli/test/node0/simd/config/node_key.json new file mode 100644 index 00000000..9d9d74e4 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/config/node_key.json @@ -0,0 +1 @@ +{"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"NNalKU5c2+iVmh+uIKgHzvI0hL1keGtWMG8EfbIKvG5B9F1z3E9XeQODuoEPxc3sQYO8NkOyOckghGXvU/2zTA=="}} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json b/x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json new file mode 100644 index 00000000..58e12ed3 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json @@ -0,0 +1,11 @@ +{ + "address": "ED9C40AB29F5707AB5124EF08A9226B3C6D7085F", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "R8BO1pHa1IKb1wBUtmLebP/MQs9JEtb/z2CjRiQFrqI=" + }, + "priv_key": { + "type": "tendermint/PrivKeyEd25519", + "value": "C7Xz9o991t1Y817o/PkMqzBXNpcL2MtBlSbU7EcRa35HwE7WkdrUgpvXAFS2Yt5s/8xCz0kS1v/PYKNGJAWuog==" + } +} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/000001.log new file mode 100644 index 0000000000000000000000000000000000000000..fa8347f1ca1831bdba5f77523e9cb641ab2a97d0 GIT binary patch literal 11493 zcmeI&e^^ZU9tZF_GgHk@rHr(sGz}Xf=A1KU&Y6VN(l47fH{?h5oH^(8gNlS@V`H%- zMXt)mZ9`d9gp~E0iV`>3tB923XQe15L}V#252L`Vs@RKN%2gJ9n{2K?xi<89Yv3rA^Y z(7m0m3B}_5?o;9hl%A=;rbc-9gp4Y3WNsKc4cmgbb=ks8Dva2CV)?D1 z+ndwR--+CQVr`gCS@!dr={rZw=yD!Zmn{OjY!PZwx7}g?u;%&8vLqf2k+If?^Gii@ zBs?>oOlSu7%WSX+GLtTJ)Ul0dzP8{gm1F|nvl_#D=~#$w&uI62(3YFEct7KU=W5?V=zPGD6Pa$MvWi)z2P>~7u9#vgvwLd;WCHspQH<1JiL~BOY8;rugz|FbvQUW zH8KL8MOQ~ahU}V z(&es4Ow9{X&z%w$63PfgkTEpv?R7eu59x8+fZ~PN$zKX3#X|9B!F!4q9~7_uOw^{^ zb_S8g^p)0mM8dBr{j_kZCTO9>!P;Y1-}S4> z!M}gDCI4h8!z>EomW?Q0$-myZ)^u0A&7dNz#Nhsg zFpJ!{vK`}3Ym0VQV;C0;&Ax>D1HON{aC^Fx`+(B_75C^hrJrIE6-=vDDkV-LYFbXf za)eg01fhhLB&xy@5<%5!6r&Njno+88Tmf1uR7#pq(F&MiA*4)@5_ORWiMc(4(%(~y zd->c2NrgN}pSv6lR>)CE#MfZeJ=a9$|3Rz_L=7ES9en$66(n;wb8b$Br{{`?$!8a> zY#JPJux&J*GUNHEKGm}$suv}-=;t&YUaikNu?)qkZ`*9O{>wRVPZ?#XqLOud?gih8 zFpTeK%>bNKR_izMAwzB(pcQH-eYlwpq)|6k z`CGbHpS@`7EDLljiU@DqWn8z$;!f&sE3QvXZa??=aJ5u?V^Y)ozt`t1>^*Sel;y8N z)7hV_Htac6?f=N*y1nVVkIYq14W-trq?!jtBdPF=m+D~VpD*FyONWiJdzq|W+V|Ix zn1+U#q+;A6gJuZo#f>HK3ccIm)itzb^^&lHUB70f;C40r#_!5}RunUAD1V(erg7HH z7u8y?x*Ef{L}>OU-XD4({dDne$(=9&fMvuzdkt7LilQt|C~!cLT1BD+PGKa5;wZ^r zFrk1+l!94AttJ3$2q8xZLQWDa3u9`GVwDUEq4wExUBTmsF}G&`R*x<470LD@AXabg zdNg98pg0ILVs+0&=~S#|TCp}?T?fe=O2bOGmBlZZ>33(S?H!9p)=vE74VisB+(-NR z%Di37&sG$SZOSvWh}}n4);|iK(0__&RY0Jw-`?DS*}t{drScuU&MX3ANw^DoM=U|Z zLtl+peYkCaSc*=?5(2R}Gu4RIJ$r*lL&y}5#n0VUU*%SM#U*-Yy!9O0Ds%I3h{~U9 zKVWBT^XDU0pE4Zj=tXYj_zsaQ=NVl`yu$3QZNxOyMY z8JRD9bjoKwIUdMH=@=df7?o^xvi&a)2itLJw>Qa;M)_13*Yow3=ZBx;k%{px9_ion z+NoRPa~E%WY*0F`CK8C%kGr6E#1gt4u(=Mz>d$Qh#KJliO9zO>nW;vs?%5ke+FofL zuwc`IIq}qz<83>2iYLvQ$X|LtvEaw;=c`+w!8<=6u|^U<=>O1KS@zwEgR)g+jdv4E zZ(ZAN8TIYriPgPNJmO2TuoXK9XZl8B04wrNJ5sdrKYb| ztggoRpjcnx4aE9%@h;GVrkEP_xlFrq+}xC&Dd6pSJ;hN_e>PS7eEROO|9f)Pl?HP#GV+(v-)>sE1mIZe`8nG}S zmX1cO?zt$PiuIyHtk$cy;~<$s`=)lI2ceH=HQqI0Hy&-X8TNMgXP(aX z6`NiOuPe~AO{)q5Vh!dl=pC_i@zBtHK&)@LZGc#Kr()>=u{bl;h}AuNgGfh2$F6ou z6HMkaRYw-BkFV6Rz0}O#b*_KdoX5QE3?BRWhy_iruL~c1I&Bh$UfOP+d&4zw)e*j* z$37%FkM1RW^nVbmM}|@>)`i-i7rsQJ=HIXTY4=il^MWZtp7;LPvm^JL#5Y{|xjpJ+ zejEzKvgXDTh=ps#N=@JW;QaF$%Z*A-ST-4mB2vXms=}M6hCDOaFWz~Y@2eH7t1&(( z)|Yq#u|8eAM}Bkv7a-OU?%8X^B9$afDi~aivM5I4w49|8N)5BDLavr;KD1KGN$_<$ z7+13xrc|;l_yPt=$w?BSz>7hQfpBy<)fb30l-n~9tH&02ne(9pAl5MMdNg9;KrB6t zSlx3`Iu)y}L#&8`GbxbF0UI@8eF3pyqg&<(?Do7pf3En4`^1WemkXCY*t`3hzNO`w xfr6<6BnkKM;6Hp%GVJj%Ym=Qin`(Ptzh#;i3o5RuP;ST@`Ry(5<1zX8&zJF5Ty literal 0 HcmV?d00001 diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT new file mode 100644 index 00000000..feda7d6b --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT @@ -0,0 +1 @@ +MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOCK new file mode 100644 index 00000000..e69de29b diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG new file mode 100644 index 00000000..c5c63c6f --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG @@ -0,0 +1,6 @@ +=============== Jun 26, 2023 (+07) =============== +17:39:40.184903 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +17:39:40.195982 db@open opening +17:39:40.196158 version@stat F·[] S·0B[] Sc·[] +17:39:40.199921 db@janitor F·2 G·0 +17:39:40.199936 db@open done T·3.936875ms diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/MANIFEST-000000 new file mode 100644 index 0000000000000000000000000000000000000000..9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d GIT binary patch literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD literal 0 HcmV?d00001 diff --git a/x/rewards/client/cli/test/node0/simd/data/cs.wal/wal b/x/rewards/client/cli/test/node0/simd/data/cs.wal/wal new file mode 100644 index 0000000000000000000000000000000000000000..0c00d567ea7f0a0dd0d4f7105372a6f216dad216 GIT binary patch literal 11013 zcmd6sc|2768^`C&!ZZ>Mxsqj?q*7A4ZjoD}NJ^qrT8K!Nic(!fmh6Vmpt8#r3Yn77 zMYc+Gt&u&IWh`aL^7|eK#gISZ_iFwQIC$`fjDbi?C70)k(dM#A3%gSh%W{rL_&BH zxb5)R2NK;$An6ZPxfRgrJF*4K{?^@+ZItq^>QRc7j+nXg7oo+q6b+&<9wL%V<#1xw zUrNq*Xa{nyZ(RB}s!uL|VN?T*kFj|XhH#+fX1^C=bzHoI%6z$_RjQUG!Z31YDmbEqYm(M`+w`n^)q=aydrK}qfWrh-C;g{OD?O?4oJ_akRv@X zY79}L77=2U)qR(gWzv{pG{B3>w`Tfr&6>Zatb85L?IthMJ;%Xcfcny06GmdR|d zJpAu_=i5&m%y8u?-Ie!4#5HF89@;Z13}#eZ;BLDu8?)-mxvR-U6}q#RNMcSI{sa-l zhazM7fM0yz)cIySb>Ek6lnL|Mk{)z*iuu&NWMZak?p<>gh+mJNX~tI|PKSt3A;M!w z;t@nhguw7aU~A++zLkTu17P`ZtTw z$;Fs?mp4mVi5NtcWS*|nJV7xuzAVT)u)OZduJ*8bwfsh_W!GUMA7AMNZLJt@E9m75 z3nDLp2N+2FVMldOnHU+JF^jmq*LQ*olmQ^0{L;+JV2De zG?yHse@irWHyJ$7lc4=CSH3Mt;3y{MOvjEt?p3En8DXnP8B5WjAsF8LN7rc(+wnq< z`Q4b}ji4>zaTjtUpIH(Y5x9U09OEv?k61wZC&CqIxyH4Of_vA9STY(9*|j8n1eaD4 z=8xv0=04^gu}1j+9o$W_0heeI%p%mIoGuhDD0hU_m+Tv1}qW?Fae zy<6p~W64-`rv9djsrkF6vo3G*_7^r2BsFvuQ7AMO_=()svE9iUBHq9e?QjGeoahi1 zkLK&c5{s||Ps|iSiUvW7016(SS;Pg&V-cxM#d-aJHe0OWvAS&rRRf9!`9{~u28WAV zR~*v!_TJy0-Y=Q+^oJzWEJ7FiWXeeo8vf62BF9|YmrFS z!=s5)CL!OCCry_9)j&W1GSj#xx)I#Lu8EA#Cq1sy2AX0sM+o8`rMnrZ-;Ap%uV8fs zL`;JSPaugDh>!#$1Pvo(cJ@(pY;kD$wKmXn>FI`QiQee<=}*@xVV`&#p&B_J&H8Bn z^xdn)4`j#2o@g|D#`%KA9U_!ZCnd)R9OYl*ymKFW?ltKW;c_c^4OXaQLog3$4353g zd>Z(AojLYYFN{JYWud+B1S84=dVzkD5$HKFB4N1Y`m{!5JU>yRs%q5|oO#ivNBB%a z|7M+Vjc#$ShGW(Z7Xy3QXg!H`Y^bMKH%K;Ai~5MXRW!I)uFWo`9gI8DX#C!qU7HZ? z0~%XCZUi-^668P35i}D=3Y0@xftY(-ockoy4jKUoy87zbmI;nB-a0uVj$)<)$@8~O zaA6X-SJwzgGCscpg~y)AssE;yV>mG+h?^f<40Q0oB05^pf1oD(NRDAf32RwoKTzk4 zs}mwhfjSu?K74hPCu$8G4>s)x0382X<2Ha zYR$3=UrJu^CN@DXH2SX|s$uVENEXESNrh*BEJT~4V zGX&FQc9v9v)?ZP6LZ*=8^BKEmIs^kDGN^WTRiR|plmdz!u5 zX{HMW71S-iUATYxpQSGM9yaKIR4J9=F`Q$XJc7U?&6@FK{b^}3;i$>7zZwh(PG*|; z)f-%+Cv0azE#<~k+c|=hK8FLfKn>$$bm!wdfqGJkLYx>FC$qDXqGP4#WkU|rrszUj zpS2!qNhgPMNCVifsj+I9KqLRb@B{MPxSdhb_?y%+c>B99JsdBCNjy!rTX@`0WFnKgM^da~ICyrQ*g+dmrbSgfvE zcgBE4FDmQIG5?{q2(-R>*CEgtj1$BNN{Nj#f)flAPH+$Zs|I2iCy1Epo9BYy1fwKg z-8R9|qKYba1Si<3a3ZHcy9@L%PI^Xg;uvHP3XkE0)=U97!IGf;eC_a0As8o!E-0H0 zYQi|dGUH@}U>z?|!#F|I2{$`|nh7V^NjTBy;#o{%G2axI&Htt~uJz^pfD6m0Tu)z+ z9xhl)U%IOu!3oKSCOGf${^tvdI%-< zAsPG3{qfbVg^1T%L-DBjsTm$YssXTREy!D{ro?(Uhs73Sb zoQvNadt@Z1toYIXYUzSA9-oIsae~}8!^YihB2KVB!wDAP1UaaY8G>;#J4-4-GSLcG zxzw#JH7~1H%{Smc+_35v26@*JS=XGiGD|`jUw$8)IG?p}3E!hvcPRJ|k$~PoMHWTX zgJ$uT(Gsq_HgN)V=()!U2FA(k82?k8{BYD{*WbsC`-1j;Fp3O65LK-Z-zFB zL2ZvYi%*b5_Ut2DbnEz}Ig&kd>a5G@mhoZTrBTxT>R{ zQw>hL;@FeUhzIkf4ZT&7726tHONa6*Zqlwmk=BuMD}-C&@D2Nuy$J2F5`cwlkNIH9QP z!haaRI6>5rX_-LHgcIB(oH(iw<@J214(6L{X;c`c8%dzM!cH5uF6vKx$QWN)d%V04GS*@{SlUfD^u4W8I`<(v4w^ z%-vsu{q!Of|T9Gs7Dd$hz(l$@+ z55X1f)>J@WX%5J{eEZ*qUPw6P_rb~9O()q-GHT2BSS66Jmv`0&l)WptE#$iWl0w76 zXWcn&bB_}&jFZ_h{--$k;i$>7zZwh(PG*|;c$NCr3EP=qALldGc8=hryY@sKP{TMG z-ID@XJt;*YP8^Jr*;z@^u~Lo_jexrIpK_ zt85W=UuV2+Gxl>yjW>5A7k@;@3h{yA|BT2jd)~A}JHOUSRKlO+z?Xo=;P68l%S~#X zBK*d2A|bFgVS*8~23SAI2=ts7!FW^cJFO8zlp&4}7d~lr)^neBd(Z|Bc8F^Cb~WqjIwN3BgS&rJykwCx{V_ zB`>H5PH;>(q4*N&ff&ZgsQ85mL73o}kSth&|#HH;HP&2aYyY9^ep zOu`A(Z+Eb1AN#V+`pv4(4tzFI3h0+I+B~S|o6kX&&yVy&aB{~{KrG4WFhl9d(x#;C z?v?_1V!m!>JGHRkve|U>xwQZ%NY%)!K|g?#x~;1@n>#|bY?twXvb}f&)vE-A==n|J zfm~)5@rLdmIbVbQuN{=%`?f{lMU^bq+a9GmUe@J3JMOcJHE8WKWqECqY&wb)$$beFSX^`sPqI9Xtv z%+5-Rj+LSgbl#peMOhP^ToR2o{k6r)t9Et#=5GV+l+@%@jYAsg?r91Ck+o7Yw`lJ$ zbiQfS5tw%f|70s8_cHlPg(Z0x;bZ&9Y-zkzfJF^x48{r4SjM3JUFPr`$H~CJ<%kJJ zOa>WE3qq3fAvv~g~z2H z;|H)$J2N|vRw(HnzPYphvGRQ<-Hv0&2|TYX+VWWcymS0}-6CFySPi zkPCkC1mgq|QyG+C1Sc#hE6uegIBNZ|J`8b`bt;@xDy)V7<$!V0KZ29;#wt*F3@1gM zwE!oqB*+BHzXEhHP7qyf2m{oF2bPr?Cy5Y0zXjv$!VS$sKY(ltMZ5R#5Qj^N})>owE94X)>!+x`i=BEz4jjzt}a@yc8q z!+neX>e`SizzI?{D77jW;G`p6)!)vp;6lG(8K=s@)a8buZPw3UttxMQ?Qqt_m{*gQ zWiS}u=k0WZ{J^T7eeW?NIV_ioae=3A{6$Fb+ZJe<@dfcwoFMmgboCCMh!fVI;e-|7 z1UaaY8G>;#J4-4-TI23zw<{L27p+^DbkXTnEl#Z93p(`qVzU#UP$_Y!)4vZ+pu_EL z7Q*SVyCpXi+~&`!P%^llgw|7umT=G3S%Cfcf4~U~jFZ_h{--$k;i$>7zZwh(PG*|; z8i|sO3EN36{0O$5c{@jN65d#e18Nv2qx1X?R!>S%h?5n@$?UA8=vb-RuO(sArf77T zxs>Z(i+hc>&55RrTVCGA*D6=0go~^fF4(?B<&;k8%Z>6|wY5p17v1GOEEG05ZorCq z6b&!-k%<#XST6&u%6iKI8iR3yG-mDgHk>*9#&NQn!x4Tt_T7k}SXe*F2=ts7VV#!| zKCKaw;yax3Ho3U%day>a+VI{JtGmhyH7zgmuYQOMD`687vKPc0TtcKaZZwWOo~FC* zm<&o=X0fUt>HX#m;+nr5*fq@;{0SO^aWZ4UMq? literal 0 HcmV?d00001 diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/evidence.db/000001.log new file mode 100644 index 00000000..e69de29b diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT new file mode 100644 index 00000000..feda7d6b --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT @@ -0,0 +1 @@ +MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOCK new file mode 100644 index 00000000..e69de29b diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG b/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG new file mode 100644 index 00000000..992b998a --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG @@ -0,0 +1,6 @@ +=============== Jun 26, 2023 (+07) =============== +17:39:40.232971 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +17:39:40.238185 db@open opening +17:39:40.238649 version@stat F·[] S·0B[] Sc·[] +17:39:40.241871 db@janitor F·2 G·0 +17:39:40.241883 db@open done T·3.687792ms diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/evidence.db/MANIFEST-000000 new file mode 100644 index 0000000000000000000000000000000000000000..9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d GIT binary patch literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD literal 0 HcmV?d00001 diff --git a/x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json b/x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json new file mode 100644 index 00000000..e948ba54 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json @@ -0,0 +1,7 @@ +{ + "height": "7", + "round": 0, + "step": 3, + "signature": "NS9Fick4i41KsSw13Wynun6eS0be6M3KeueppNMLHx+FHgNWGxKY5DduqF69ZTBdPABiPBlQmSDfO8ASLD2GDQ==", + "signbytes": "71080211070000000000000022480A20A6ADA4E7C3F35A7D0FD2BC1FF40C0880A60A77E17CF5566FF20CAB0AA2BF025E122408011220C7EC7F73F9338C70E6ED7BA4793C1CC953040055AB92C12EAB1497F0CE7FFE8C2A0C08FAD5E5A4061080C9C0A501320C636861696E2D6B7659494759" +} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/state.db/000001.log new file mode 100644 index 0000000000000000000000000000000000000000..d4da420be560b2975ad747efadfcd689dbc30f44 GIT binary patch literal 43091 zcmeHQ33wD$wx&Z!LW>YvWKcn&@wt-F`x3<`VT}Sp34KaG!Iks=F)QP0|F^iB{|PQFZUB zbGLKP{m*}IRW5w!8t%&B7E3SfhyPlvQJSMAMjFSHpEb_2>vtiUNznENyUXEn*ExK3 zE?2Nsg3r5=MBty|02{qOf5m7qCDT$D(Ju3*Jnm){>6p@e_o6f4We% zE>4Fh;Pv~klqA726e05>79%L(P@K+$S zkYZ34D91ZVCS_l9*_SWfBbbsXv?4 zPKQWdl0yP5s(px!!p5R7RE3FTwES!p8|>a-seFkh1t=-*R267lOOPb5a56S=p8X7L zEo6>@;u5@6kJYbFI>WR~IO`h;i5{a#V>2mAq$R9-l#zLXA)LN6>q*K1IiaKi{)m_K zC)+q*Dw<3Mqlz~Tbx+b%TPr-OcdfmFQ&<)>X*zL0!!-20U9CFZrf4G$w+pb(u`cb{ zmw3U8OuIh5b1*YZaH^H%`xz{e3eg-9W@)hBIdezaDLO(ZtQ_i?BZ~^HDqsmPFs&O7 zplu}2aGDY@SUv%*;dqL6$b6jUu-6jU*^r8st^L6A=0V*wVKAIHZItuo#pW)6Mo5Yv zu$gRw;2|(3nE$xND%xa(A}B_ZMJB9h^UG-5B%eqq;2L1s5Lm3E9w&OoAJilamJ||1Uf?CLXpv44 zBKjDR&UcIc5K8kLx|CAlo{p+j50GNy7$p*^5RPKr0`zf)Mur5QXSJ4RYpbQG9YfJ9 z9YrS)$|+*F2#;e5-7kpXig-hHpxW5Aii~|oFn6~Q#rS;w+`Dmz8c&|oD23s5@}E<$oP!s-fc;r0B53px4D4@N|lZb_muj zgO}A(DVQn@3sthCyU&jTwhxvIeAZE)n{heY0)6PUbqQyEE+coLOMpw~VD0Hl5Xw!! znkvz3B%}|TzDj|P{3srP2g(n2krK$_!4G%ospU99v_+so;HhB^#O^5^K~l^JGGDK+ zIQ7$%@L3=@(yofzn*)t!JB3Mvv+1m`Gu1dlPE4l5(?(61E(OmVFNa69yT-OQGt(!C zZB3)~l~?K7`KaA(Ux029S5O!&%IP3|wBJVtJr0_5xkx8L1^sj&5~f^~%kA~S1?i7? z&H&ef|26m=PLH~*0?vR*o5wG>=Fn*w;0p{#h*zynogpK^fpZ}+L|L7bC1qexaZysI z9CjA0%iwBrGf)K+EJGrm=%g=mt8-y*j!Cwi+t@s7Ov}vRlv5~*8>O_jq#NDS`4*OG zoH6mNQNbiR+nbu2lx9xF-b}!XW2g%kW!1jLWazVVnkG&SO*wnq_|Ukf=J8`&phI!K zbXaaj+V#aCyI!I11DKYBCc2+S6CpC{q=ZY=S7GAgI zqt0!iWX~jJ8tH6oO@@<|*1pJM&4gsZ*Pl_F#DNShlF zr@Fvl;A9wgSE+FiIB?vd1>n>H;v#^}Hb)A!#pCTf(rL=&Bv$(1_mP?qmH!Tp*;?f@(^)35OBp@LYjpK1DR;LHO*0q%T0Py9GXcO zjX0CHaqZq{+6vTg9Kjnz0Ejiy0K;I)h#BzU`7H3TfW`~&joM@)n$LzCV_q0w0~yO_ zYxhP8nULc7e7rN}ih#nPZg~Mc!6+j@^w5lcOOo?)hD4(*Wo$Lv81oPZ0FcP*&=ZU@ zfYua4ZPZ(1zL@L8yqbKPQ4+@>FN1f++*FKbqQpep8t0OScpH`t!ix$9QI2}IyAbR{TjdxmDKVbaqKA^mElJCKsH0p7 zRk#L5MP7j=3pf(IfZ5!J1>@Ytd%f4RJZ*AxND_Eh;WLF#L97AEjJod4h1Ed~VqmoL z%Ckv@;{_FB!X#FQWEsT!I&+gx(Vx(=B}BR!`=SkRHrW^+8W%U{X+DLqh^ifR*?|X= zc$QBPWQ^f33U&DF01<&d0?Uw9;)7ICdI(4zf{g(sVQ+|lLD2w`aIMs9+7V2sybwo| z>KbZn1kdTI9U6k|$Vv-@9Mdy3{rRj8WfH}3H%pV2@LRcc%n`cr=fjXLtzx5g$kIQy0+*sCx+TZKb)-jS&Bu# zyzWR#6t|2Bo;z1wxXT|;`{EvdEGo!pA{B`y6|qfBcn!+_ z&D#@eCp|&0HVK%S`(|8H?P z8r1(WqCx|z*UfEUwiEvJBs>3OvV?AQ}~JHjjK%HP9`B*G+nVsA?f0GA$T+Y&PT zJ*VCaR0Sp!C)^s%1jLVKWiHw&F6RJdS& z1~-GC4cXmnb?-&rBI(#03WxX?pVmFIGvM?Lz-U_Ah<+$i^HTQ=c)!FF=XixP%c%!&u@w7 z3HcTmWr=iA5(Iw0tzvwjhNaNkG7wQxM2nR$Pvc2)sYsXLCMqOoo4*~_`r@5pT)H9B zOVR}!i%^mx0RN2)`#iWw0x6~0GT8Rkb3S?Kre2l`GAglu-}u!&DjeeJ5hzIxHh&AnP43U6b-d!g~ACfjS@ zy>!7X6OQY%>gK_e?SP)Hwfu9yk&g}QW$E2XEnOA0md|R3EtuWQQfU+$nByL%splNj z7Wu3$>)|yE7d~mN{Vw~n4E}qyt$)q$uBftA)+}6a9lUVi8AtWCR%Z_`^s2So{OsyG zp0rr{81>h{WRPjldS`Fzq1K9;Lu}PR2zlyV0b4(aK^ZQ4Fr~uQ>*PafcKl`gtyQ&a z*DpQS^`rJ_!;f0}BujHQ24I#YJnY@o>l#;lJ!IhZUw!iIb^Ig8ov>=m->8+>Oulv5 zbw{V0*Uo6|QbMpi)bFZi-mA1!8HdqEgh{5EmIP#~B-KdP^|g(%)mdu`?W7YUIqJ&3 z*0A+ZJZJ%X;Ob;V+pp2DMO%Fij=N)SM~Y2KkpRnzN?I0_IF*z#j(EZqR}ukW`W;bm zu*G(`wMvV79jR@!wQr7N z$Ty)UwNdp|UE539dP|IHx0>6znUt$?_Ue_- z?WnX=8=c+ZhZ)B3Ez}rYUO`ObhG^mO7wd*Xw9wZmRw`O>buU_|xOCBJGcT#ISdIE~(Za6E zPNRjv7W*XYu-La-uXuj#J0CuM%;wSb=}#vfeq-xH4_`>tr7rvQ*dyP%@;uvdH5S`2 zsj*Mp!cSjm`!IadKn6G%+n#3DghbG4NyA7 zVVxtza#fZQfOZQsl^1}vCVgHBj*7NLd`Vv`>!t*c45z^5pcoGZNh$!lt#Vq~{{XaX zy(I>tTg~l!Fv?YFC9MOrgJik)X^cZ|8)xmCogagg{dgMyxB->4%D%bsJ?Nif zt=7-sd=JWda^;^T&e<`m#?sFSEK2bUYig|~xG?#Jp2{zn;KC$SwG9UoTomqDl#2w6 zE2q^27qs>&qq?1Ef{PBX<7a!OwqkbkmPdihJJbj-3b;HEaCz5VU-=K<^7<9=dM% zmK(=Bp>cULZvRcgs*N8kU9#!qgfw*Zjz@-18N7Y1fBK$l)<3p69NP+9-Y)e7!CQ|% zJpbo>f}lrodA-Zw@-o)fCx7zZfA3l=9d^uwa~6Ch-W!=W{I_>J@NVpbsjrkM%{VEH$-`qCo8{qN|GXe{f%ae^KFU`Y|9Zz4DSS-pt z&r|wnYv;T`xw<<&E0pE(OmOjYKOAX-3lm(J;NpiNB5QlEyKm-V;PPxncu~ORd4bEj z6+X8 z4ciBgx#j*nFDyOj#EQk%r5~L?=d*V;F7Kx8?+>UC&tLTg$Y z#HIYw-Mi-yC-F_iWS&Xp!Kb`SzbH}m0lNKsQKD?UC4yyh?_B+=efJOknPlER$h@8FHk<%t z-XJ5eFv&cV%Jt8`T*B?gCi6^i@w0!^*(CE!GS4LQejqZh@~%Z6i9qK4!U!)4 z$UGmAd57#4R{)te*eF(t%=31S%Z$)*J%PGOzfrBWBNsnQz&a_|uWO&iOu>$UPT3 zTY$_v+6XL6GS4LQexhWa2`snODU$$RGa2QgMt?f7xVSA0+b@ zPqmGWE?aTG>xdwce*NW}+Ll~aKWO2Sbyq*QVol}e+mF!5yv^I>NmVP?EaBIDzL4Fy zZN#7Jww!X$p5qr;nzz2)bo&d-fXw?uCG&RQzkaDn<{cC=Z|r}qzTkmgmEHMzd^b70 zs&Y8JCl3Gh)y;o=ao73cCg+jsYwn3Wecx06_}$qxjc-<5^2VoMo+?<@pZM5d;Pj3) z8f7u3=QBAylhf!@oV0Zz|u6f4E)`MbyIRliep=6E=uH^QjDY)-EVIlUFvP5!;~#i1ik zjlDPR@frW*n^t}qOq}{nbop}wR*Ze_&g(Qz@5aSL>mK~gti4VDH+=hpt1haz39P;=+wJhOP;3sSAGCw-lWvPyMW9)&S;IrWS-w7^Gq_Yhm(1J?MrvAz(G2o z=daga-!;5*Ym#{;nP-xDCYg7TzRTB>_t5|M1pY)I^ZvsKEKD-bB=dfnWS$8w%(rd3 z{v*%jQc)e)E%Sh$c|cDxT7(HMEVb1i-`($9AoGql!ixejF9>Abkn`qN0-1M$QLGf1 z7w8_DSFx95L4li$RVo%vs1AA E3jzaR=Kufz literal 0 HcmV?d00001 diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT new file mode 100644 index 00000000..feda7d6b --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT @@ -0,0 +1 @@ +MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/state.db/LOCK new file mode 100644 index 00000000..e69de29b diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/LOG b/x/rewards/client/cli/test/node0/simd/data/state.db/LOG new file mode 100644 index 00000000..70078774 --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/state.db/LOG @@ -0,0 +1,6 @@ +=============== Jun 26, 2023 (+07) =============== +17:39:40.200105 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +17:39:40.213149 db@open opening +17:39:40.213507 version@stat F·[] S·0B[] Sc·[] +17:39:40.215904 db@janitor F·2 G·0 +17:39:40.215919 db@open done T·2.755875ms diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/state.db/MANIFEST-000000 new file mode 100644 index 0000000000000000000000000000000000000000..9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d GIT binary patch literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD literal 0 HcmV?d00001 diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/000001.log new file mode 100644 index 0000000000000000000000000000000000000000..d03b89336c302f3096988c3a53c449a206f74159 GIT binary patch literal 22544 zcmcgzTbCnM74BlOz{O&C<3V}x9f(P%I~QCFWMCA<%Zyia2Ak@nl1}H^sY<$gL~y3( zf>%`V3X0$bP(TszF3f|=#h-z-c=FY~JIR^ar%s*PXQz{XfLYMr{=VAhJ7=FSm3iVn z$3OV&^`5sf`FTJ5%e!T>)33ERf^pD`!oxr3wt`l3D_Zf+dDnQg`2Vi;TfL28Pzze) zpq`ulVYuQoTTy?|@(bPKRx!WZ8HbHZr!ySwMT1ehJ`VTu?e1!O)UC7|JNYL3{<+Pd z36%~@PiXE)r}4Y}Q4iD<@?qq+0~7j;j^6acAlGg6qF`=y=b;Jf#`+n;5IA|nX>$*| z7Y?A$Is9jRer*RpQP#C>OeiwcA=GJYw@OhZzrM9P-fo;7_{DCuS84D2_5EJ6y4NV> z*Lr*5aJ#Fo&IO>6uPvfU3!|am3md@@z1JGFpp{q6Clh!PD2RO&MR+7jg!PGiRQ-$v zLg4B6+IE95^qWEMXmnkI^7oSRuv>DQeXwPHW9Ub%{)(5+t>*O~eSt4Sox2ltTD?XG zYxJ;4p~xw6GEv0u^+tYYV=(NGTOrg6SG>~tq*P9?n9rMp-IlDW4inSw6R+8}tITVU zL9g<0Nim9<8+2KSaoVTly+LE_!-4B}o7K|lekUw7Dr;wp?V!`C)Ydz@gZ-`jvQG0& zpeZJ#siQtk9l}V{l)DWZRHp1(K*8IfvPHrAx%iW-M@V~UM6hGR&TZXV&z>GNbxe+Ot>&hjLhtRtF#t~pKXe;3q|gI3j_t)sd?B!R@k zv0W*i)0E(5MKo!l+Czq8Kqm0}Ktb%ID5Ud{HUR4r`>6UE z_CX-)G>~n&A3*u+IbEnueoE81Sgx*k^!a`Wbp&%dS;S>d7jlWw4|6(M(>|w@zfZho z+paRNJpsMSp3_toVx0CVcN$WfCxM1Fr;{+!H05r?29+uM5h&wrP}!nj{j51n9~u#? zohcLaV<=C0YBQp&r#}G-S0f_E$%xzI(t22I4tE-*acR3#tPj?rQmq3-)YtTsDJfC6!rL$2H7T$2Wdsp5VCfWQPe zYGp{|+PPmYv2)1f)VXJt)j1&QJ#zX^h*Kw+aq7Uk&g}%{-s}!Yoca~exWuU>nw)Yf z?npoOr1hT#b>vV{^=GGvic?7-IpJ+%QP#QVKpQ(wQFRD)nvUGN0j2r%Tx*MH(n8yi zlnML|P!Rhl3Td384Z!-uKB|6(eGtf+l``x67RvME)b!)eVgce5eZJp89YLH*7C9N8 z9=LUL=^uNp=4Scs>c^iZVfHwc)Ihvu+paRNJrBLoW*5Btp>HYl$3TqJKILAW=+nOd zG^|@}5=NS)+&xE}q7*NJGTsK2Eeh7py2U0Hv390R(C8Z_#veo_rP`DZqF-}J0 zh8Eh~mw-lKM1+y1*^DSt_A*fLj3`?atnX$-M6iq~6Z8s{C!8>0kEJrl_YZQ+@F`&IplKc+-u9~91y*B>ut9@ zaLgMpO6vRG?LK>%N1F$}^kE)+x9|W>y zrOY~ihw|(=RjEv3OBv%7eZGG{9YLH*7CGq9)n^eTwnKD6d zf*{gUn-OKJ{T5KT8WAz|_#Qo!1Uuy;JqNTl>$0)g-AwDo8)^c?U_yhq7j!jLmas_WODA_N0-?>By;QD$ClPTV7lww z=UyEi^PXbHtBc+ZZYL`DrgxFVt1I^b&xhjrWw=`i0 za@w=pdzHp>5_nkmTmz0YPWgO}$fa?d0&Tp_DqI;P$hzkmG_iK6P|{~X66veWkis?p z9B?=r5)PgJ($L${>NGArZndq)^fqp*|UC>A_1| z$u9wN!NJSGs2SVvK1%~V05TUBybNR+(LqCe8RRV}co~?SyZ4o4b`Qzix_5eM-2$Xw{X5gKcU?wl_TXhuK|E*Mx< zNFsf;8B)0BP2g}gB!Zj_$qhGJgSUW3Vo1c1#@P%h)YbwHo*{)Rg9MI-LJ^OD0mr|oV(XsX7`ZHt$Y2Y zbq|>Cdh~w>5WL=F2CvKBO>QSD_u_Y%2Co6|xCAc)oE&;87fFMcMz90=$O)qe5?5ve zlAQUrVJYn15Y(}Qm!=P~PBW8xY0!AW`BoU=q>Z-GDU=ui2XT?&kOnWU2S`9%qzJNH zghX&8a}7AsIOX#>f|tgz588N}Rk$)pkaf>BXkzVB zp`^1QiS*TGNa31)4LF<)i6AFKa>I?*;D>=nVo1c1#@P%h)b@4Y;2Bc5GDzTPNQAHq zDU|dG)F%TiJ$Pv=`6wV49J~ySnz0SRO9OoaWG*gv8OSoCgN8T<@)i`l3{1}5JHO2C OA(>nE4wlwEVER7@EWxY* literal 0 HcmV?d00001 diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT new file mode 100644 index 00000000..feda7d6b --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT @@ -0,0 +1 @@ +MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOCK new file mode 100644 index 00000000..e69de29b diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG new file mode 100644 index 00000000..5d2702ea --- /dev/null +++ b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG @@ -0,0 +1,6 @@ +=============== Jun 26, 2023 (+07) =============== +17:39:40.218985 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed +17:39:40.226787 db@open opening +17:39:40.227270 version@stat F·[] S·0B[] Sc·[] +17:39:40.228428 db@janitor F·2 G·0 +17:39:40.228443 db@open done T·1.643666ms diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/MANIFEST-000000 new file mode 100644 index 0000000000000000000000000000000000000000..9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d GIT binary patch literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD literal 0 HcmV?d00001 diff --git a/x/rewards/types/genesis.pb.go b/x/rewards/types/genesis.pb.go index d6e2d6f7..69acc2d7 100644 --- a/x/rewards/types/genesis.pb.go +++ b/x/rewards/types/genesis.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" _ "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/rewards/types/params.pb.go b/x/rewards/types/params.pb.go index 491ab72e..d446b77e 100644 --- a/x/rewards/types/params.pb.go +++ b/x/rewards/types/params.pb.go @@ -6,9 +6,9 @@ package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" - github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + github_com_cosmos_gogoproto_types "github.com/gogo/protobuf/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" diff --git a/x/rewards/types/query.pb.go b/x/rewards/types/query.pb.go index d7d246c4..8be83b10 100644 --- a/x/rewards/types/query.pb.go +++ b/x/rewards/types/query.pb.go @@ -8,9 +8,9 @@ import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/cosmos/gogoproto/gogoproto" - grpc1 "github.com/cosmos/gogoproto/grpc" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + grpc1 "github.com/gogo/protobuf/grpc" + proto "github.com/gogo/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/x/rewards/types/rewards.pb.go b/x/rewards/types/rewards.pb.go index 27ff135c..2f197bc0 100644 --- a/x/rewards/types/rewards.pb.go +++ b/x/rewards/types/rewards.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/rewards/types/task.pb.go b/x/rewards/types/task.pb.go index 3c071916..8e7f61f9 100644 --- a/x/rewards/types/task.pb.go +++ b/x/rewards/types/task.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - proto "github.com/cosmos/gogoproto/proto" + proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/rewards/types/tx.pb.go b/x/rewards/types/tx.pb.go index ecd39748..3657c888 100644 --- a/x/rewards/types/tx.pb.go +++ b/x/rewards/types/tx.pb.go @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/cosmos/gogoproto/gogoproto" - grpc1 "github.com/cosmos/gogoproto/grpc" - proto "github.com/cosmos/gogoproto/proto" + _ "github.com/gogo/protobuf/gogoproto" + grpc1 "github.com/gogo/protobuf/grpc" + proto "github.com/gogo/protobuf/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" From 492200284e280bb5d59388899c6ec3ee76a73874 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 10:42:37 +0700 Subject: [PATCH 09/26] ignore .lfsconfig --- .gitignore | 1 + .lfsconfig | 2 -- x/gitopia/types/attachment.pb.go | 17 ----------------- 3 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 .lfsconfig diff --git a/.gitignore b/.gitignore index b7f879ec..258140e8 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ secret.yml build cmd/gitopiad/__debug_bin .DS_Store +.lfsconfig \ No newline at end of file diff --git a/.lfsconfig b/.lfsconfig deleted file mode 100644 index 010fe8af..00000000 --- a/.lfsconfig +++ /dev/null @@ -1,2 +0,0 @@ -[lfs] - url = https://server.gitopia.com/59102.git diff --git a/x/gitopia/types/attachment.pb.go b/x/gitopia/types/attachment.pb.go index 59c2a51f..860cd023 100644 --- a/x/gitopia/types/attachment.pb.go +++ b/x/gitopia/types/attachment.pb.go @@ -96,22 +96,6 @@ func init() { func init() { proto.RegisterFile("gitopia/gitopia/attachment.proto", fileDescriptor_606c5d5397332767) } -<<<<<<< HEAD -var fileDescriptor_606c5d5397332767 = []byte{ - // 183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x87, 0xd1, 0x89, 0x25, 0x25, 0x89, 0xc9, 0x19, 0xb9, 0xa9, 0x79, 0x25, - 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0xe2, 0x50, 0x19, 0x3d, 0x34, 0x5a, 0x29, 0x89, 0x8b, - 0xcb, 0x11, 0xae, 0x58, 0x48, 0x88, 0x8b, 0x25, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x51, 0x81, 0x51, - 0x83, 0x33, 0x08, 0xcc, 0x06, 0x89, 0x15, 0x67, 0x56, 0xa5, 0x4a, 0x30, 0x29, 0x30, 0x6a, 0xb0, - 0x04, 0x81, 0xd9, 0x42, 0x02, 0x5c, 0xcc, 0xc5, 0x19, 0x89, 0x12, 0xcc, 0x60, 0x65, 0x20, 0xa6, - 0x90, 0x14, 0x17, 0x47, 0x69, 0x41, 0x4e, 0x7e, 0x62, 0x4a, 0x6a, 0x91, 0x04, 0x0b, 0x58, 0x18, - 0xce, 0x77, 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, - 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xad, 0xf4, - 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x74, 0x3f, 0x54, 0xc0, 0x59, 0x25, - 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x9f, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb5, - 0x97, 0xc1, 0xec, 0xed, 0x00, 0x00, 0x00, -======= var fileDescriptor_8035b0c82cbdbc3b = []byte{ // 186 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0xcf, 0x2c, 0xc9, @@ -126,7 +110,6 @@ var fileDescriptor_8035b0c82cbdbc3b = []byte{ 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xc3, 0xdc, 0x0e, 0xa3, 0xcb, 0x8c, 0xf4, 0x2b, 0xe0, 0x9c, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x67, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x15, 0xea, 0x86, 0x0d, 0xe8, 0x00, 0x00, 0x00, ->>>>>>> gitopia2/master } func (m *Attachment) Marshal() (dAtA []byte, err error) { From daacc2581905d2cea800ce4e80d1d30988e50de1 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 10:57:42 +0700 Subject: [PATCH 10/26] proto gen --- .gitignore | 3 +- go.mod | 1 - go.sum | 2 - x/gitopia/types/attachment.pb.go | 4 +- x/gitopia/types/bounty.pb.go | 8 +- x/gitopia/types/branch.pb.go | 4 +- x/gitopia/types/comment.pb.go | 8 +- x/gitopia/types/dao.pb.go | 4 +- x/gitopia/types/exercised_amount.pb.go | 4 +- x/gitopia/types/genesis.pb.go | 4 +- x/gitopia/types/issue.pb.go | 6 +- x/gitopia/types/member.pb.go | 6 +- x/gitopia/types/params.pb.go | 8 +- x/gitopia/types/pullRequest.pb.go | 10 +- x/gitopia/types/query.pb.go | 200 +++---- x/gitopia/types/reaction.pb.go | 6 +- x/gitopia/types/release.pb.go | 4 +- x/gitopia/types/repository.pb.go | 26 +- x/gitopia/types/tag.pb.go | 4 +- x/gitopia/types/task.pb.go | 8 +- x/gitopia/types/tx.pb.go | 346 ++++++------ x/gitopia/types/user.pb.go | 6 +- x/gitopia/types/whois.pb.go | 6 +- x/rewards/client/cli/test/gentxs/node0.json | 1 - .../cli/test/node0/simcli/key_seed.json | 1 - ...2cebdf1c7f2698f3013d390c7151ca1839.address | 1 - .../test/node0/simcli/keyring-test/node0.info | 1 - .../cli/test/node0/simd/config/addrbook.json | 4 - .../cli/test/node0/simd/config/app.toml | 252 --------- .../cli/test/node0/simd/config/config.toml | 471 ---------------- .../cli/test/node0/simd/config/genesis.json | 525 ------------------ .../cli/test/node0/simd/config/node_key.json | 1 - .../node0/simd/config/priv_validator_key.json | 11 - .../node0/simd/data/blockstore.db/000001.log | Bin 11493 -> 0 bytes .../node0/simd/data/blockstore.db/CURRENT | 1 - .../test/node0/simd/data/blockstore.db/LOCK | 0 .../test/node0/simd/data/blockstore.db/LOG | 6 - .../simd/data/blockstore.db/MANIFEST-000000 | Bin 54 -> 0 bytes .../cli/test/node0/simd/data/cs.wal/wal | Bin 11013 -> 0 bytes .../node0/simd/data/evidence.db/000001.log | 0 .../test/node0/simd/data/evidence.db/CURRENT | 1 - .../cli/test/node0/simd/data/evidence.db/LOCK | 0 .../cli/test/node0/simd/data/evidence.db/LOG | 6 - .../simd/data/evidence.db/MANIFEST-000000 | Bin 54 -> 0 bytes .../node0/simd/data/priv_validator_state.json | 7 - .../test/node0/simd/data/state.db/000001.log | Bin 43091 -> 0 bytes .../cli/test/node0/simd/data/state.db/CURRENT | 1 - .../cli/test/node0/simd/data/state.db/LOCK | 0 .../cli/test/node0/simd/data/state.db/LOG | 6 - .../node0/simd/data/state.db/MANIFEST-000000 | Bin 54 -> 0 bytes .../node0/simd/data/tx_index.db/000001.log | Bin 22544 -> 0 bytes .../test/node0/simd/data/tx_index.db/CURRENT | 1 - .../cli/test/node0/simd/data/tx_index.db/LOCK | 0 .../cli/test/node0/simd/data/tx_index.db/LOG | 6 - .../simd/data/tx_index.db/MANIFEST-000000 | Bin 54 -> 0 bytes 55 files changed, 338 insertions(+), 1643 deletions(-) delete mode 100644 x/rewards/client/cli/test/gentxs/node0.json delete mode 100644 x/rewards/client/cli/test/node0/simcli/key_seed.json delete mode 100644 x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address delete mode 100644 x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info delete mode 100644 x/rewards/client/cli/test/node0/simd/config/addrbook.json delete mode 100644 x/rewards/client/cli/test/node0/simd/config/app.toml delete mode 100644 x/rewards/client/cli/test/node0/simd/config/config.toml delete mode 100644 x/rewards/client/cli/test/node0/simd/config/genesis.json delete mode 100644 x/rewards/client/cli/test/node0/simd/config/node_key.json delete mode 100644 x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json delete mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/000001.log delete mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT delete mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOCK delete mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG delete mode 100644 x/rewards/client/cli/test/node0/simd/data/blockstore.db/MANIFEST-000000 delete mode 100644 x/rewards/client/cli/test/node0/simd/data/cs.wal/wal delete mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/000001.log delete mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT delete mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/LOCK delete mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG delete mode 100644 x/rewards/client/cli/test/node0/simd/data/evidence.db/MANIFEST-000000 delete mode 100644 x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json delete mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/000001.log delete mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT delete mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/LOCK delete mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/LOG delete mode 100644 x/rewards/client/cli/test/node0/simd/data/state.db/MANIFEST-000000 delete mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/000001.log delete mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT delete mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOCK delete mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG delete mode 100644 x/rewards/client/cli/test/node0/simd/data/tx_index.db/MANIFEST-000000 diff --git a/.gitignore b/.gitignore index 258140e8..8a7af001 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ secret.yml build cmd/gitopiad/__debug_bin .DS_Store -.lfsconfig \ No newline at end of file +.lfsconfig +x/client/cli/test \ No newline at end of file diff --git a/go.mod b/go.mod index 1f11e776..37f2c1d1 100644 --- a/go.mod +++ b/go.mod @@ -146,7 +146,6 @@ require ( ) require ( - github.com/cosmos/gogoproto v1.4.10 github.com/ipfs/go-cid v0.3.2 golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0 google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc diff --git a/go.sum b/go.sum index 3bc779e3..409b7198 100644 --- a/go.sum +++ b/go.sum @@ -223,8 +223,6 @@ github.com/cosmos/cosmos-sdk v0.46.13/go.mod h1:EfY521ATNEla8eJ6oJuZBdgP5+p360s7 github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= -github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoKuI= -github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek= github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y= github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw= github.com/cosmos/iavl v0.19.6 h1:XY78yEeNPrEYyNCKlqr9chrwoeSDJ0bV2VjocTk//OU= diff --git a/x/gitopia/types/attachment.pb.go b/x/gitopia/types/attachment.pb.go index 860cd023..9027ab6d 100644 --- a/x/gitopia/types/attachment.pb.go +++ b/x/gitopia/types/attachment.pb.go @@ -33,7 +33,7 @@ func (m *Attachment) Reset() { *m = Attachment{} } func (m *Attachment) String() string { return proto.CompactTextString(m) } func (*Attachment) ProtoMessage() {} func (*Attachment) Descriptor() ([]byte, []int) { - return fileDescriptor_606c5d5397332767, []int{0} + return fileDescriptor_8035b0c82cbdbc3b, []int{0} } func (m *Attachment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,7 +94,7 @@ func init() { proto.RegisterType((*Attachment)(nil), "gitopia.gitopia.gitopia.Attachment") } -func init() { proto.RegisterFile("gitopia/gitopia/attachment.proto", fileDescriptor_606c5d5397332767) } +func init() { proto.RegisterFile("gitopia/gitopia/attachment.proto", fileDescriptor_8035b0c82cbdbc3b) } var fileDescriptor_8035b0c82cbdbc3b = []byte{ // 186 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/bounty.pb.go b/x/gitopia/types/bounty.pb.go index 1a761579..3362da1b 100644 --- a/x/gitopia/types/bounty.pb.go +++ b/x/gitopia/types/bounty.pb.go @@ -50,7 +50,7 @@ func (x BountyState) String() string { } func (BountyState) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_b40b67d80582e8a3, []int{0} + return fileDescriptor_67a698d5c16076fb, []int{0} } type BountyParent int32 @@ -72,7 +72,7 @@ func (x BountyParent) String() string { } func (BountyParent) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_b40b67d80582e8a3, []int{1} + return fileDescriptor_67a698d5c16076fb, []int{1} } type Bounty struct { @@ -93,7 +93,7 @@ func (m *Bounty) Reset() { *m = Bounty{} } func (m *Bounty) String() string { return proto.CompactTextString(m) } func (*Bounty) ProtoMessage() {} func (*Bounty) Descriptor() ([]byte, []int) { - return fileDescriptor_b40b67d80582e8a3, []int{0} + return fileDescriptor_67a698d5c16076fb, []int{0} } func (m *Bounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -205,7 +205,7 @@ func init() { proto.RegisterType((*Bounty)(nil), "gitopia.gitopia.gitopia.Bounty") } -func init() { proto.RegisterFile("gitopia/gitopia/bounty.proto", fileDescriptor_b40b67d80582e8a3) } +func init() { proto.RegisterFile("gitopia/gitopia/bounty.proto", fileDescriptor_67a698d5c16076fb) } var fileDescriptor_67a698d5c16076fb = []byte{ // 538 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/branch.pb.go b/x/gitopia/types/branch.pb.go index 3b8bb946..9b56250a 100644 --- a/x/gitopia/types/branch.pb.go +++ b/x/gitopia/types/branch.pb.go @@ -36,7 +36,7 @@ func (m *Branch) Reset() { *m = Branch{} } func (m *Branch) String() string { return proto.CompactTextString(m) } func (*Branch) ProtoMessage() {} func (*Branch) Descriptor() ([]byte, []int) { - return fileDescriptor_e572d9d24936cc5d, []int{0} + return fileDescriptor_e76348169b9d2db0, []int{0} } func (m *Branch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,7 +118,7 @@ func init() { proto.RegisterType((*Branch)(nil), "gitopia.gitopia.gitopia.Branch") } -func init() { proto.RegisterFile("gitopia/gitopia/branch.proto", fileDescriptor_e572d9d24936cc5d) } +func init() { proto.RegisterFile("gitopia/gitopia/branch.proto", fileDescriptor_e76348169b9d2db0) } var fileDescriptor_e76348169b9d2db0 = []byte{ // 249 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/comment.pb.go b/x/gitopia/types/comment.pb.go index 4770b5de..1e8ebdd4 100644 --- a/x/gitopia/types/comment.pb.go +++ b/x/gitopia/types/comment.pb.go @@ -96,7 +96,7 @@ func (x CommentType) String() string { } func (CommentType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_87c2e1cdf0cacb50, []int{0} + return fileDescriptor_61a8a10ae7d09fb4, []int{0} } type CommentParent int32 @@ -124,7 +124,7 @@ func (x CommentParent) String() string { } func (CommentParent) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_87c2e1cdf0cacb50, []int{1} + return fileDescriptor_61a8a10ae7d09fb4, []int{1} } type Comment struct { @@ -154,7 +154,7 @@ func (m *Comment) Reset() { *m = Comment{} } func (m *Comment) String() string { return proto.CompactTextString(m) } func (*Comment) ProtoMessage() {} func (*Comment) Descriptor() ([]byte, []int) { - return fileDescriptor_87c2e1cdf0cacb50, []int{0} + return fileDescriptor_61a8a10ae7d09fb4, []int{0} } func (m *Comment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -329,7 +329,7 @@ func init() { proto.RegisterType((*Comment)(nil), "gitopia.gitopia.gitopia.Comment") } -func init() { proto.RegisterFile("gitopia/gitopia/comment.proto", fileDescriptor_87c2e1cdf0cacb50) } +func init() { proto.RegisterFile("gitopia/gitopia/comment.proto", fileDescriptor_61a8a10ae7d09fb4) } var fileDescriptor_61a8a10ae7d09fb4 = []byte{ // 1001 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/dao.pb.go b/x/gitopia/types/dao.pb.go index a08f497e..410cfd10 100644 --- a/x/gitopia/types/dao.pb.go +++ b/x/gitopia/types/dao.pb.go @@ -44,7 +44,7 @@ func (m *Dao) Reset() { *m = Dao{} } func (m *Dao) String() string { return proto.CompactTextString(m) } func (*Dao) ProtoMessage() {} func (*Dao) Descriptor() ([]byte, []int) { - return fileDescriptor_379922b0fc6d5d17, []int{0} + return fileDescriptor_bbacb5867cc9ed90, []int{0} } func (m *Dao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -175,7 +175,7 @@ func init() { proto.RegisterType((*Dao)(nil), "gitopia.gitopia.gitopia.Dao") } -func init() { proto.RegisterFile("gitopia/gitopia/dao.proto", fileDescriptor_379922b0fc6d5d17) } +func init() { proto.RegisterFile("gitopia/gitopia/dao.proto", fileDescriptor_bbacb5867cc9ed90) } var fileDescriptor_bbacb5867cc9ed90 = []byte{ // 340 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/exercised_amount.pb.go b/x/gitopia/types/exercised_amount.pb.go index 33cc6ca9..ffab4a10 100644 --- a/x/gitopia/types/exercised_amount.pb.go +++ b/x/gitopia/types/exercised_amount.pb.go @@ -33,7 +33,7 @@ func (m *ExercisedAmount) Reset() { *m = ExercisedAmount{} } func (m *ExercisedAmount) String() string { return proto.CompactTextString(m) } func (*ExercisedAmount) ProtoMessage() {} func (*ExercisedAmount) Descriptor() ([]byte, []int) { - return fileDescriptor_ffa3487fa892d0e7, []int{0} + return fileDescriptor_e2f495f5b056fe64, []int{0} } func (m *ExercisedAmount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -81,7 +81,7 @@ func init() { } func init() { - proto.RegisterFile("gitopia/gitopia/exercised_amount.proto", fileDescriptor_ffa3487fa892d0e7) + proto.RegisterFile("gitopia/gitopia/exercised_amount.proto", fileDescriptor_e2f495f5b056fe64) } var fileDescriptor_e2f495f5b056fe64 = []byte{ diff --git a/x/gitopia/types/genesis.pb.go b/x/gitopia/types/genesis.pb.go index 8c379b48..873fe897 100644 --- a/x/gitopia/types/genesis.pb.go +++ b/x/gitopia/types/genesis.pb.go @@ -64,7 +64,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_bf4bc08c97d29141, []int{0} + return fileDescriptor_fe28ed7a80acf9ab, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -314,7 +314,7 @@ func init() { proto.RegisterType((*GenesisState)(nil), "gitopia.gitopia.gitopia.GenesisState") } -func init() { proto.RegisterFile("gitopia/gitopia/genesis.proto", fileDescriptor_bf4bc08c97d29141) } +func init() { proto.RegisterFile("gitopia/gitopia/genesis.proto", fileDescriptor_fe28ed7a80acf9ab) } var fileDescriptor_fe28ed7a80acf9ab = []byte{ // 766 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/issue.pb.go b/x/gitopia/types/issue.pb.go index 6bff4800..876c1293 100644 --- a/x/gitopia/types/issue.pb.go +++ b/x/gitopia/types/issue.pb.go @@ -45,7 +45,7 @@ func (x Issue_State) String() string { } func (Issue_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_b1597db1c2e3956f, []int{0, 0} + return fileDescriptor_4cf64e56e9098bda, []int{0, 0} } type Issue struct { @@ -72,7 +72,7 @@ func (m *Issue) Reset() { *m = Issue{} } func (m *Issue) String() string { return proto.CompactTextString(m) } func (*Issue) ProtoMessage() {} func (*Issue) Descriptor() ([]byte, []int) { - return fileDescriptor_b1597db1c2e3956f, []int{0} + return fileDescriptor_4cf64e56e9098bda, []int{0} } func (m *Issue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -225,7 +225,7 @@ func init() { proto.RegisterType((*Issue)(nil), "gitopia.gitopia.gitopia.Issue") } -func init() { proto.RegisterFile("gitopia/gitopia/issue.proto", fileDescriptor_b1597db1c2e3956f) } +func init() { proto.RegisterFile("gitopia/gitopia/issue.proto", fileDescriptor_4cf64e56e9098bda) } var fileDescriptor_4cf64e56e9098bda = []byte{ // 454 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/member.pb.go b/x/gitopia/types/member.pb.go index c59a3d1d..0bc7df92 100644 --- a/x/gitopia/types/member.pb.go +++ b/x/gitopia/types/member.pb.go @@ -44,7 +44,7 @@ func (x MemberRole) String() string { } func (MemberRole) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_38f2f3c327861373, []int{0} + return fileDescriptor_eb50d9e34f0ece82, []int{0} } type Member struct { @@ -58,7 +58,7 @@ func (m *Member) Reset() { *m = Member{} } func (m *Member) String() string { return proto.CompactTextString(m) } func (*Member) ProtoMessage() {} func (*Member) Descriptor() ([]byte, []int) { - return fileDescriptor_38f2f3c327861373, []int{0} + return fileDescriptor_eb50d9e34f0ece82, []int{0} } func (m *Member) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -120,7 +120,7 @@ func init() { proto.RegisterType((*Member)(nil), "gitopia.gitopia.gitopia.Member") } -func init() { proto.RegisterFile("gitopia/gitopia/member.proto", fileDescriptor_38f2f3c327861373) } +func init() { proto.RegisterFile("gitopia/gitopia/member.proto", fileDescriptor_eb50d9e34f0ece82) } var fileDescriptor_eb50d9e34f0ece82 = []byte{ // 230 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/params.pb.go b/x/gitopia/types/params.pb.go index ad418c39..d273ceae 100644 --- a/x/gitopia/types/params.pb.go +++ b/x/gitopia/types/params.pb.go @@ -37,7 +37,7 @@ func (m *DistributionProportion) Reset() { *m = DistributionProportion{} func (m *DistributionProportion) String() string { return proto.CompactTextString(m) } func (*DistributionProportion) ProtoMessage() {} func (*DistributionProportion) Descriptor() ([]byte, []int) { - return fileDescriptor_6a6ecb9e82fafe65, []int{0} + return fileDescriptor_cdae11692a018c3a, []int{0} } func (m *DistributionProportion) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -82,7 +82,7 @@ func (m *PoolProportions) Reset() { *m = PoolProportions{} } func (m *PoolProportions) String() string { return proto.CompactTextString(m) } func (*PoolProportions) ProtoMessage() {} func (*PoolProportions) Descriptor() ([]byte, []int) { - return fileDescriptor_6a6ecb9e82fafe65, []int{1} + return fileDescriptor_cdae11692a018c3a, []int{1} } func (m *PoolProportions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -138,7 +138,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_6a6ecb9e82fafe65, []int{2} + return fileDescriptor_cdae11692a018c3a, []int{2} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -215,7 +215,7 @@ func init() { proto.RegisterType((*Params)(nil), "gitopia.gitopia.gitopia.Params") } -func init() { proto.RegisterFile("gitopia/gitopia/params.proto", fileDescriptor_6a6ecb9e82fafe65) } +func init() { proto.RegisterFile("gitopia/gitopia/params.proto", fileDescriptor_cdae11692a018c3a) } var fileDescriptor_cdae11692a018c3a = []byte{ // 553 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/pullRequest.pb.go b/x/gitopia/types/pullRequest.pb.go index 6d46b339..ee94735c 100644 --- a/x/gitopia/types/pullRequest.pb.go +++ b/x/gitopia/types/pullRequest.pb.go @@ -48,7 +48,7 @@ func (x PullRequest_State) String() string { } func (PullRequest_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_7329f752498d765e, []int{0, 0} + return fileDescriptor_ee729f91ddeb1e95, []int{0, 0} } type PullRequest struct { @@ -81,7 +81,7 @@ func (m *PullRequest) Reset() { *m = PullRequest{} } func (m *PullRequest) String() string { return proto.CompactTextString(m) } func (*PullRequest) ProtoMessage() {} func (*PullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_7329f752498d765e, []int{0} + return fileDescriptor_ee729f91ddeb1e95, []int{0} } func (m *PullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -281,7 +281,7 @@ func (m *PullRequestHead) Reset() { *m = PullRequestHead{} } func (m *PullRequestHead) String() string { return proto.CompactTextString(m) } func (*PullRequestHead) ProtoMessage() {} func (*PullRequestHead) Descriptor() ([]byte, []int) { - return fileDescriptor_7329f752498d765e, []int{1} + return fileDescriptor_ee729f91ddeb1e95, []int{1} } func (m *PullRequestHead) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -341,7 +341,7 @@ func (m *PullRequestBase) Reset() { *m = PullRequestBase{} } func (m *PullRequestBase) String() string { return proto.CompactTextString(m) } func (*PullRequestBase) ProtoMessage() {} func (*PullRequestBase) Descriptor() ([]byte, []int) { - return fileDescriptor_7329f752498d765e, []int{2} + return fileDescriptor_ee729f91ddeb1e95, []int{2} } func (m *PullRequestBase) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -398,7 +398,7 @@ func init() { proto.RegisterType((*PullRequestBase)(nil), "gitopia.gitopia.gitopia.PullRequestBase") } -func init() { proto.RegisterFile("gitopia/gitopia/pullRequest.proto", fileDescriptor_7329f752498d765e) } +func init() { proto.RegisterFile("gitopia/gitopia/pullRequest.proto", fileDescriptor_ee729f91ddeb1e95) } var fileDescriptor_ee729f91ddeb1e95 = []byte{ // 611 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/query.pb.go b/x/gitopia/types/query.pb.go index 6205ccdf..cc507aea 100644 --- a/x/gitopia/types/query.pb.go +++ b/x/gitopia/types/query.pb.go @@ -39,7 +39,7 @@ func (m *QueryVestedAmountRequest) Reset() { *m = QueryVestedAmountReque func (m *QueryVestedAmountRequest) String() string { return proto.CompactTextString(m) } func (*QueryVestedAmountRequest) ProtoMessage() {} func (*QueryVestedAmountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{0} + return fileDescriptor_422ed845ee440bd1, []int{0} } func (m *QueryVestedAmountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *QueryVestedAmountResponse) Reset() { *m = QueryVestedAmountResp func (m *QueryVestedAmountResponse) String() string { return proto.CompactTextString(m) } func (*QueryVestedAmountResponse) ProtoMessage() {} func (*QueryVestedAmountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{1} + return fileDescriptor_422ed845ee440bd1, []int{1} } func (m *QueryVestedAmountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -148,7 +148,7 @@ func (m *QueryCheckStorageProviderAuthorizationRequest) String() string { } func (*QueryCheckStorageProviderAuthorizationRequest) ProtoMessage() {} func (*QueryCheckStorageProviderAuthorizationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{2} + return fileDescriptor_422ed845ee440bd1, []int{2} } func (m *QueryCheckStorageProviderAuthorizationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -203,7 +203,7 @@ func (m *QueryCheckStorageProviderAuthorizationResponse) String() string { } func (*QueryCheckStorageProviderAuthorizationResponse) ProtoMessage() {} func (*QueryCheckStorageProviderAuthorizationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{3} + return fileDescriptor_422ed845ee440bd1, []int{3} } func (m *QueryCheckStorageProviderAuthorizationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -247,7 +247,7 @@ func (m *QueryGetTaskRequest) Reset() { *m = QueryGetTaskRequest{} } func (m *QueryGetTaskRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetTaskRequest) ProtoMessage() {} func (*QueryGetTaskRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{4} + return fileDescriptor_422ed845ee440bd1, []int{4} } func (m *QueryGetTaskRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -291,7 +291,7 @@ func (m *QueryGetTaskResponse) Reset() { *m = QueryGetTaskResponse{} } func (m *QueryGetTaskResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetTaskResponse) ProtoMessage() {} func (*QueryGetTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{5} + return fileDescriptor_422ed845ee440bd1, []int{5} } func (m *QueryGetTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,7 +335,7 @@ func (m *QueryAllTaskRequest) Reset() { *m = QueryAllTaskRequest{} } func (m *QueryAllTaskRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllTaskRequest) ProtoMessage() {} func (*QueryAllTaskRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{6} + return fileDescriptor_422ed845ee440bd1, []int{6} } func (m *QueryAllTaskRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -380,7 +380,7 @@ func (m *QueryAllTaskResponse) Reset() { *m = QueryAllTaskResponse{} } func (m *QueryAllTaskResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllTaskResponse) ProtoMessage() {} func (*QueryAllTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{7} + return fileDescriptor_422ed845ee440bd1, []int{7} } func (m *QueryAllTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -434,7 +434,7 @@ func (m *QueryCheckGitServerAuthorizationRequest) Reset() { func (m *QueryCheckGitServerAuthorizationRequest) String() string { return proto.CompactTextString(m) } func (*QueryCheckGitServerAuthorizationRequest) ProtoMessage() {} func (*QueryCheckGitServerAuthorizationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{8} + return fileDescriptor_422ed845ee440bd1, []int{8} } func (m *QueryCheckGitServerAuthorizationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -487,7 +487,7 @@ func (m *QueryCheckGitServerAuthorizationResponse) Reset() { func (m *QueryCheckGitServerAuthorizationResponse) String() string { return proto.CompactTextString(m) } func (*QueryCheckGitServerAuthorizationResponse) ProtoMessage() {} func (*QueryCheckGitServerAuthorizationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{9} + return fileDescriptor_422ed845ee440bd1, []int{9} } func (m *QueryCheckGitServerAuthorizationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -531,7 +531,7 @@ func (m *QueryAllBranchRequest) Reset() { *m = QueryAllBranchRequest{} } func (m *QueryAllBranchRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBranchRequest) ProtoMessage() {} func (*QueryAllBranchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{10} + return fileDescriptor_422ed845ee440bd1, []int{10} } func (m *QueryAllBranchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -576,7 +576,7 @@ func (m *QueryAllBranchResponse) Reset() { *m = QueryAllBranchResponse{} func (m *QueryAllBranchResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBranchResponse) ProtoMessage() {} func (*QueryAllBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{11} + return fileDescriptor_422ed845ee440bd1, []int{11} } func (m *QueryAllBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -629,7 +629,7 @@ func (m *QueryGetRepositoryBranchRequest) Reset() { *m = QueryGetReposit func (m *QueryGetRepositoryBranchRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchRequest) ProtoMessage() {} func (*QueryGetRepositoryBranchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{12} + return fileDescriptor_422ed845ee440bd1, []int{12} } func (m *QueryGetRepositoryBranchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -687,7 +687,7 @@ func (m *QueryGetRepositoryBranchResponse) Reset() { *m = QueryGetReposi func (m *QueryGetRepositoryBranchResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchResponse) ProtoMessage() {} func (*QueryGetRepositoryBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{13} + return fileDescriptor_422ed845ee440bd1, []int{13} } func (m *QueryGetRepositoryBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -733,7 +733,7 @@ func (m *QueryGetRepositoryBranchShaRequest) Reset() { *m = QueryGetRepo func (m *QueryGetRepositoryBranchShaRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchShaRequest) ProtoMessage() {} func (*QueryGetRepositoryBranchShaRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{14} + return fileDescriptor_422ed845ee440bd1, []int{14} } func (m *QueryGetRepositoryBranchShaRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -791,7 +791,7 @@ func (m *QueryGetRepositoryBranchShaResponse) Reset() { *m = QueryGetRep func (m *QueryGetRepositoryBranchShaResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryBranchShaResponse) ProtoMessage() {} func (*QueryGetRepositoryBranchShaResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{15} + return fileDescriptor_422ed845ee440bd1, []int{15} } func (m *QueryGetRepositoryBranchShaResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -837,7 +837,7 @@ func (m *QueryAllRepositoryBranchRequest) Reset() { *m = QueryAllReposit func (m *QueryAllRepositoryBranchRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryBranchRequest) ProtoMessage() {} func (*QueryAllRepositoryBranchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{16} + return fileDescriptor_422ed845ee440bd1, []int{16} } func (m *QueryAllRepositoryBranchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -896,7 +896,7 @@ func (m *QueryAllRepositoryBranchResponse) Reset() { *m = QueryAllReposi func (m *QueryAllRepositoryBranchResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryBranchResponse) ProtoMessage() {} func (*QueryAllRepositoryBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{17} + return fileDescriptor_422ed845ee440bd1, []int{17} } func (m *QueryAllRepositoryBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -947,7 +947,7 @@ func (m *QueryAllTagRequest) Reset() { *m = QueryAllTagRequest{} } func (m *QueryAllTagRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllTagRequest) ProtoMessage() {} func (*QueryAllTagRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{18} + return fileDescriptor_422ed845ee440bd1, []int{18} } func (m *QueryAllTagRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -992,7 +992,7 @@ func (m *QueryAllTagResponse) Reset() { *m = QueryAllTagResponse{} } func (m *QueryAllTagResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllTagResponse) ProtoMessage() {} func (*QueryAllTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{19} + return fileDescriptor_422ed845ee440bd1, []int{19} } func (m *QueryAllTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1045,7 +1045,7 @@ func (m *QueryGetRepositoryTagRequest) Reset() { *m = QueryGetRepository func (m *QueryGetRepositoryTagRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagRequest) ProtoMessage() {} func (*QueryGetRepositoryTagRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{20} + return fileDescriptor_422ed845ee440bd1, []int{20} } func (m *QueryGetRepositoryTagRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1103,7 +1103,7 @@ func (m *QueryGetRepositoryTagResponse) Reset() { *m = QueryGetRepositor func (m *QueryGetRepositoryTagResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagResponse) ProtoMessage() {} func (*QueryGetRepositoryTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{21} + return fileDescriptor_422ed845ee440bd1, []int{21} } func (m *QueryGetRepositoryTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1149,7 +1149,7 @@ func (m *QueryGetRepositoryTagShaRequest) Reset() { *m = QueryGetReposit func (m *QueryGetRepositoryTagShaRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagShaRequest) ProtoMessage() {} func (*QueryGetRepositoryTagShaRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{22} + return fileDescriptor_422ed845ee440bd1, []int{22} } func (m *QueryGetRepositoryTagShaRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1207,7 +1207,7 @@ func (m *QueryGetRepositoryTagShaResponse) Reset() { *m = QueryGetReposi func (m *QueryGetRepositoryTagShaResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryTagShaResponse) ProtoMessage() {} func (*QueryGetRepositoryTagShaResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{23} + return fileDescriptor_422ed845ee440bd1, []int{23} } func (m *QueryGetRepositoryTagShaResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1253,7 +1253,7 @@ func (m *QueryAllRepositoryTagRequest) Reset() { *m = QueryAllRepository func (m *QueryAllRepositoryTagRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryTagRequest) ProtoMessage() {} func (*QueryAllRepositoryTagRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{24} + return fileDescriptor_422ed845ee440bd1, []int{24} } func (m *QueryAllRepositoryTagRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1312,7 +1312,7 @@ func (m *QueryAllRepositoryTagResponse) Reset() { *m = QueryAllRepositor func (m *QueryAllRepositoryTagResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryTagResponse) ProtoMessage() {} func (*QueryAllRepositoryTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{25} + return fileDescriptor_422ed845ee440bd1, []int{25} } func (m *QueryAllRepositoryTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1364,7 +1364,7 @@ func (m *QueryGetDaoMemberRequest) Reset() { *m = QueryGetDaoMemberReque func (m *QueryGetDaoMemberRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoMemberRequest) ProtoMessage() {} func (*QueryGetDaoMemberRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{26} + return fileDescriptor_422ed845ee440bd1, []int{26} } func (m *QueryGetDaoMemberRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1415,7 +1415,7 @@ func (m *QueryGetDaoMemberResponse) Reset() { *m = QueryGetDaoMemberResp func (m *QueryGetDaoMemberResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoMemberResponse) ProtoMessage() {} func (*QueryGetDaoMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{27} + return fileDescriptor_422ed845ee440bd1, []int{27} } func (m *QueryGetDaoMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1460,7 +1460,7 @@ func (m *QueryAllDaoMemberRequest) Reset() { *m = QueryAllDaoMemberReque func (m *QueryAllDaoMemberRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoMemberRequest) ProtoMessage() {} func (*QueryAllDaoMemberRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{28} + return fileDescriptor_422ed845ee440bd1, []int{28} } func (m *QueryAllDaoMemberRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1512,7 +1512,7 @@ func (m *QueryAllDaoMemberResponse) Reset() { *m = QueryAllDaoMemberResp func (m *QueryAllDaoMemberResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoMemberResponse) ProtoMessage() {} func (*QueryAllDaoMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{29} + return fileDescriptor_422ed845ee440bd1, []int{29} } func (m *QueryAllDaoMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1563,7 +1563,7 @@ func (m *QueryAllMemberRequest) Reset() { *m = QueryAllMemberRequest{} } func (m *QueryAllMemberRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllMemberRequest) ProtoMessage() {} func (*QueryAllMemberRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{30} + return fileDescriptor_422ed845ee440bd1, []int{30} } func (m *QueryAllMemberRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1608,7 +1608,7 @@ func (m *QueryAllMemberResponse) Reset() { *m = QueryAllMemberResponse{} func (m *QueryAllMemberResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllMemberResponse) ProtoMessage() {} func (*QueryAllMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{31} + return fileDescriptor_422ed845ee440bd1, []int{31} } func (m *QueryAllMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1659,7 +1659,7 @@ func (m *QueryGetBountyRequest) Reset() { *m = QueryGetBountyRequest{} } func (m *QueryGetBountyRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetBountyRequest) ProtoMessage() {} func (*QueryGetBountyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{32} + return fileDescriptor_422ed845ee440bd1, []int{32} } func (m *QueryGetBountyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1703,7 +1703,7 @@ func (m *QueryGetBountyResponse) Reset() { *m = QueryGetBountyResponse{} func (m *QueryGetBountyResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetBountyResponse) ProtoMessage() {} func (*QueryGetBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{33} + return fileDescriptor_422ed845ee440bd1, []int{33} } func (m *QueryGetBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1747,7 +1747,7 @@ func (m *QueryAllBountyRequest) Reset() { *m = QueryAllBountyRequest{} } func (m *QueryAllBountyRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBountyRequest) ProtoMessage() {} func (*QueryAllBountyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{34} + return fileDescriptor_422ed845ee440bd1, []int{34} } func (m *QueryAllBountyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1792,7 +1792,7 @@ func (m *QueryAllBountyResponse) Reset() { *m = QueryAllBountyResponse{} func (m *QueryAllBountyResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBountyResponse) ProtoMessage() {} func (*QueryAllBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{35} + return fileDescriptor_422ed845ee440bd1, []int{35} } func (m *QueryAllBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1850,7 +1850,7 @@ func (m *QueryGetPullRequestMergePermissionRequest) String() string { } func (*QueryGetPullRequestMergePermissionRequest) ProtoMessage() {} func (*QueryGetPullRequestMergePermissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{36} + return fileDescriptor_422ed845ee440bd1, []int{36} } func (m *QueryGetPullRequestMergePermissionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1912,7 +1912,7 @@ func (m *QueryGetPullRequestMergePermissionResponse) String() string { } func (*QueryGetPullRequestMergePermissionResponse) ProtoMessage() {} func (*QueryGetPullRequestMergePermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{37} + return fileDescriptor_422ed845ee440bd1, []int{37} } func (m *QueryGetPullRequestMergePermissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1957,7 +1957,7 @@ func (m *QueryGetReleaseRequest) Reset() { *m = QueryGetReleaseRequest{} func (m *QueryGetReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetReleaseRequest) ProtoMessage() {} func (*QueryGetReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{38} + return fileDescriptor_422ed845ee440bd1, []int{38} } func (m *QueryGetReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2001,7 +2001,7 @@ func (m *QueryGetReleaseResponse) Reset() { *m = QueryGetReleaseResponse func (m *QueryGetReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetReleaseResponse) ProtoMessage() {} func (*QueryGetReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{39} + return fileDescriptor_422ed845ee440bd1, []int{39} } func (m *QueryGetReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2045,7 +2045,7 @@ func (m *QueryAllReleaseRequest) Reset() { *m = QueryAllReleaseRequest{} func (m *QueryAllReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllReleaseRequest) ProtoMessage() {} func (*QueryAllReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{40} + return fileDescriptor_422ed845ee440bd1, []int{40} } func (m *QueryAllReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2090,7 +2090,7 @@ func (m *QueryAllReleaseResponse) Reset() { *m = QueryAllReleaseResponse func (m *QueryAllReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllReleaseResponse) ProtoMessage() {} func (*QueryAllReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{41} + return fileDescriptor_422ed845ee440bd1, []int{41} } func (m *QueryAllReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2141,7 +2141,7 @@ func (m *QueryGetPullRequestRequest) Reset() { *m = QueryGetPullRequestR func (m *QueryGetPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestRequest) ProtoMessage() {} func (*QueryGetPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{42} + return fileDescriptor_422ed845ee440bd1, []int{42} } func (m *QueryGetPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2185,7 +2185,7 @@ func (m *QueryGetPullRequestResponse) Reset() { *m = QueryGetPullRequest func (m *QueryGetPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestResponse) ProtoMessage() {} func (*QueryGetPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{43} + return fileDescriptor_422ed845ee440bd1, []int{43} } func (m *QueryGetPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2229,7 +2229,7 @@ func (m *QueryAllPullRequestRequest) Reset() { *m = QueryAllPullRequestR func (m *QueryAllPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestRequest) ProtoMessage() {} func (*QueryAllPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{44} + return fileDescriptor_422ed845ee440bd1, []int{44} } func (m *QueryAllPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2274,7 +2274,7 @@ func (m *QueryAllPullRequestResponse) Reset() { *m = QueryAllPullRequest func (m *QueryAllPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestResponse) ProtoMessage() {} func (*QueryAllPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{45} + return fileDescriptor_422ed845ee440bd1, []int{45} } func (m *QueryAllPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2325,7 +2325,7 @@ func (m *QueryGetDaoRequest) Reset() { *m = QueryGetDaoRequest{} } func (m *QueryGetDaoRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoRequest) ProtoMessage() {} func (*QueryGetDaoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{46} + return fileDescriptor_422ed845ee440bd1, []int{46} } func (m *QueryGetDaoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2369,7 +2369,7 @@ func (m *QueryGetDaoResponse) Reset() { *m = QueryGetDaoResponse{} } func (m *QueryGetDaoResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetDaoResponse) ProtoMessage() {} func (*QueryGetDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{47} + return fileDescriptor_422ed845ee440bd1, []int{47} } func (m *QueryGetDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2413,7 +2413,7 @@ func (m *QueryAllDaoRequest) Reset() { *m = QueryAllDaoRequest{} } func (m *QueryAllDaoRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoRequest) ProtoMessage() {} func (*QueryAllDaoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{48} + return fileDescriptor_422ed845ee440bd1, []int{48} } func (m *QueryAllDaoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2458,7 +2458,7 @@ func (m *QueryAllDaoResponse) Reset() { *m = QueryAllDaoResponse{} } func (m *QueryAllDaoResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllDaoResponse) ProtoMessage() {} func (*QueryAllDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{49} + return fileDescriptor_422ed845ee440bd1, []int{49} } func (m *QueryAllDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2511,7 +2511,7 @@ func (m *QueryGetIssueCommentRequest) Reset() { *m = QueryGetIssueCommen func (m *QueryGetIssueCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetIssueCommentRequest) ProtoMessage() {} func (*QueryGetIssueCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{50} + return fileDescriptor_422ed845ee440bd1, []int{50} } func (m *QueryGetIssueCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2569,7 +2569,7 @@ func (m *QueryGetIssueCommentResponse) Reset() { *m = QueryGetIssueComme func (m *QueryGetIssueCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetIssueCommentResponse) ProtoMessage() {} func (*QueryGetIssueCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{51} + return fileDescriptor_422ed845ee440bd1, []int{51} } func (m *QueryGetIssueCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2615,7 +2615,7 @@ func (m *QueryGetPullRequestCommentRequest) Reset() { *m = QueryGetPullR func (m *QueryGetPullRequestCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestCommentRequest) ProtoMessage() {} func (*QueryGetPullRequestCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{52} + return fileDescriptor_422ed845ee440bd1, []int{52} } func (m *QueryGetPullRequestCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2673,7 +2673,7 @@ func (m *QueryGetPullRequestCommentResponse) Reset() { *m = QueryGetPull func (m *QueryGetPullRequestCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetPullRequestCommentResponse) ProtoMessage() {} func (*QueryGetPullRequestCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{53} + return fileDescriptor_422ed845ee440bd1, []int{53} } func (m *QueryGetPullRequestCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2717,7 +2717,7 @@ func (m *QueryAllCommentRequest) Reset() { *m = QueryAllCommentRequest{} func (m *QueryAllCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllCommentRequest) ProtoMessage() {} func (*QueryAllCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{54} + return fileDescriptor_422ed845ee440bd1, []int{54} } func (m *QueryAllCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2762,7 +2762,7 @@ func (m *QueryAllCommentResponse) Reset() { *m = QueryAllCommentResponse func (m *QueryAllCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllCommentResponse) ProtoMessage() {} func (*QueryAllCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{55} + return fileDescriptor_422ed845ee440bd1, []int{55} } func (m *QueryAllCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2815,7 +2815,7 @@ func (m *QueryAllIssueCommentRequest) Reset() { *m = QueryAllIssueCommen func (m *QueryAllIssueCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueCommentRequest) ProtoMessage() {} func (*QueryAllIssueCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{56} + return fileDescriptor_422ed845ee440bd1, []int{56} } func (m *QueryAllIssueCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2874,7 +2874,7 @@ func (m *QueryAllIssueCommentResponse) Reset() { *m = QueryAllIssueComme func (m *QueryAllIssueCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueCommentResponse) ProtoMessage() {} func (*QueryAllIssueCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{57} + return fileDescriptor_422ed845ee440bd1, []int{57} } func (m *QueryAllIssueCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2927,7 +2927,7 @@ func (m *QueryAllPullRequestCommentRequest) Reset() { *m = QueryAllPullR func (m *QueryAllPullRequestCommentRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestCommentRequest) ProtoMessage() {} func (*QueryAllPullRequestCommentRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{58} + return fileDescriptor_422ed845ee440bd1, []int{58} } func (m *QueryAllPullRequestCommentRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2986,7 +2986,7 @@ func (m *QueryAllPullRequestCommentResponse) Reset() { *m = QueryAllPull func (m *QueryAllPullRequestCommentResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllPullRequestCommentResponse) ProtoMessage() {} func (*QueryAllPullRequestCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{59} + return fileDescriptor_422ed845ee440bd1, []int{59} } func (m *QueryAllPullRequestCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3037,7 +3037,7 @@ func (m *QueryAllIssueRequest) Reset() { *m = QueryAllIssueRequest{} } func (m *QueryAllIssueRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueRequest) ProtoMessage() {} func (*QueryAllIssueRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{60} + return fileDescriptor_422ed845ee440bd1, []int{60} } func (m *QueryAllIssueRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3082,7 +3082,7 @@ func (m *QueryAllIssueResponse) Reset() { *m = QueryAllIssueResponse{} } func (m *QueryAllIssueResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllIssueResponse) ProtoMessage() {} func (*QueryAllIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{61} + return fileDescriptor_422ed845ee440bd1, []int{61} } func (m *QueryAllIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3136,7 +3136,7 @@ func (m *QueryGetLatestRepositoryReleaseRequest) Reset() { func (m *QueryGetLatestRepositoryReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestRepositoryReleaseRequest) ProtoMessage() {} func (*QueryGetLatestRepositoryReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{62} + return fileDescriptor_422ed845ee440bd1, []int{62} } func (m *QueryGetLatestRepositoryReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3189,7 +3189,7 @@ func (m *QueryGetLatestRepositoryReleaseResponse) Reset() { func (m *QueryGetLatestRepositoryReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestRepositoryReleaseResponse) ProtoMessage() {} func (*QueryGetLatestRepositoryReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{63} + return fileDescriptor_422ed845ee440bd1, []int{63} } func (m *QueryGetLatestRepositoryReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3235,7 +3235,7 @@ func (m *QueryGetRepositoryReleaseRequest) Reset() { *m = QueryGetReposi func (m *QueryGetRepositoryReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryReleaseRequest) ProtoMessage() {} func (*QueryGetRepositoryReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{64} + return fileDescriptor_422ed845ee440bd1, []int{64} } func (m *QueryGetRepositoryReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3293,7 +3293,7 @@ func (m *QueryGetRepositoryReleaseResponse) Reset() { *m = QueryGetRepos func (m *QueryGetRepositoryReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryReleaseResponse) ProtoMessage() {} func (*QueryGetRepositoryReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{65} + return fileDescriptor_422ed845ee440bd1, []int{65} } func (m *QueryGetRepositoryReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3339,7 +3339,7 @@ func (m *QueryAllRepositoryReleaseRequest) Reset() { *m = QueryAllReposi func (m *QueryAllRepositoryReleaseRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryReleaseRequest) ProtoMessage() {} func (*QueryAllRepositoryReleaseRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{66} + return fileDescriptor_422ed845ee440bd1, []int{66} } func (m *QueryAllRepositoryReleaseRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3398,7 +3398,7 @@ func (m *QueryAllRepositoryReleaseResponse) Reset() { *m = QueryAllRepos func (m *QueryAllRepositoryReleaseResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryReleaseResponse) ProtoMessage() {} func (*QueryAllRepositoryReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{67} + return fileDescriptor_422ed845ee440bd1, []int{67} } func (m *QueryAllRepositoryReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3451,7 +3451,7 @@ func (m *QueryGetRepositoryIssueRequest) Reset() { *m = QueryGetReposito func (m *QueryGetRepositoryIssueRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryIssueRequest) ProtoMessage() {} func (*QueryGetRepositoryIssueRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{68} + return fileDescriptor_422ed845ee440bd1, []int{68} } func (m *QueryGetRepositoryIssueRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3509,7 +3509,7 @@ func (m *QueryGetRepositoryIssueResponse) Reset() { *m = QueryGetReposit func (m *QueryGetRepositoryIssueResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryIssueResponse) ProtoMessage() {} func (*QueryGetRepositoryIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{69} + return fileDescriptor_422ed845ee440bd1, []int{69} } func (m *QueryGetRepositoryIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3555,7 +3555,7 @@ func (m *QueryGetRepositoryPullRequestRequest) Reset() { *m = QueryGetRe func (m *QueryGetRepositoryPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryPullRequestRequest) ProtoMessage() {} func (*QueryGetRepositoryPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{70} + return fileDescriptor_422ed845ee440bd1, []int{70} } func (m *QueryGetRepositoryPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3613,7 +3613,7 @@ func (m *QueryGetRepositoryPullRequestResponse) Reset() { *m = QueryGetR func (m *QueryGetRepositoryPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryPullRequestResponse) ProtoMessage() {} func (*QueryGetRepositoryPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{71} + return fileDescriptor_422ed845ee440bd1, []int{71} } func (m *QueryGetRepositoryPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3660,7 +3660,7 @@ func (m *QueryAllRepositoryIssueRequest) Reset() { *m = QueryAllReposito func (m *QueryAllRepositoryIssueRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryIssueRequest) ProtoMessage() {} func (*QueryAllRepositoryIssueRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{72} + return fileDescriptor_422ed845ee440bd1, []int{72} } func (m *QueryAllRepositoryIssueRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3733,7 +3733,7 @@ func (m *IssueOptions) Reset() { *m = IssueOptions{} } func (m *IssueOptions) String() string { return proto.CompactTextString(m) } func (*IssueOptions) ProtoMessage() {} func (*IssueOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{73} + return fileDescriptor_422ed845ee440bd1, []int{73} } func (m *IssueOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3834,7 +3834,7 @@ func (m *QueryAllRepositoryIssueResponse) Reset() { *m = QueryAllReposit func (m *QueryAllRepositoryIssueResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryIssueResponse) ProtoMessage() {} func (*QueryAllRepositoryIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{74} + return fileDescriptor_422ed845ee440bd1, []int{74} } func (m *QueryAllRepositoryIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3888,7 +3888,7 @@ func (m *QueryAllRepositoryPullRequestRequest) Reset() { *m = QueryAllRe func (m *QueryAllRepositoryPullRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryPullRequestRequest) ProtoMessage() {} func (*QueryAllRepositoryPullRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{75} + return fileDescriptor_422ed845ee440bd1, []int{75} } func (m *QueryAllRepositoryPullRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3962,7 +3962,7 @@ func (m *PullRequestOptions) Reset() { *m = PullRequestOptions{} } func (m *PullRequestOptions) String() string { return proto.CompactTextString(m) } func (*PullRequestOptions) ProtoMessage() {} func (*PullRequestOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{76} + return fileDescriptor_422ed845ee440bd1, []int{76} } func (m *PullRequestOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4070,7 +4070,7 @@ func (m *QueryAllRepositoryPullRequestResponse) Reset() { *m = QueryAllR func (m *QueryAllRepositoryPullRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryPullRequestResponse) ProtoMessage() {} func (*QueryAllRepositoryPullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{77} + return fileDescriptor_422ed845ee440bd1, []int{77} } func (m *QueryAllRepositoryPullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4121,7 +4121,7 @@ func (m *QueryGetRepositoryRequest) Reset() { *m = QueryGetRepositoryReq func (m *QueryGetRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryRequest) ProtoMessage() {} func (*QueryGetRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{78} + return fileDescriptor_422ed845ee440bd1, []int{78} } func (m *QueryGetRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4165,7 +4165,7 @@ func (m *QueryGetRepositoryResponse) Reset() { *m = QueryGetRepositoryRe func (m *QueryGetRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRepositoryResponse) ProtoMessage() {} func (*QueryGetRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{79} + return fileDescriptor_422ed845ee440bd1, []int{79} } func (m *QueryGetRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4217,7 +4217,7 @@ func (m *RepositoryFork) Reset() { *m = RepositoryFork{} } func (m *RepositoryFork) String() string { return proto.CompactTextString(m) } func (*RepositoryFork) ProtoMessage() {} func (*RepositoryFork) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{80} + return fileDescriptor_422ed845ee440bd1, []int{80} } func (m *RepositoryFork) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4319,7 +4319,7 @@ func (m *QueryGetAllForkRequest) Reset() { *m = QueryGetAllForkRequest{} func (m *QueryGetAllForkRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAllForkRequest) ProtoMessage() {} func (*QueryGetAllForkRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{81} + return fileDescriptor_422ed845ee440bd1, []int{81} } func (m *QueryGetAllForkRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4378,7 +4378,7 @@ func (m *QueryGetAllForkResponse) Reset() { *m = QueryGetAllForkResponse func (m *QueryGetAllForkResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAllForkResponse) ProtoMessage() {} func (*QueryGetAllForkResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{82} + return fileDescriptor_422ed845ee440bd1, []int{82} } func (m *QueryGetAllForkResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4429,7 +4429,7 @@ func (m *QueryAllRepositoryRequest) Reset() { *m = QueryAllRepositoryReq func (m *QueryAllRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryRequest) ProtoMessage() {} func (*QueryAllRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{83} + return fileDescriptor_422ed845ee440bd1, []int{83} } func (m *QueryAllRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4474,7 +4474,7 @@ func (m *QueryAllRepositoryResponse) Reset() { *m = QueryAllRepositoryRe func (m *QueryAllRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRepositoryResponse) ProtoMessage() {} func (*QueryAllRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{84} + return fileDescriptor_422ed845ee440bd1, []int{84} } func (m *QueryAllRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4525,7 +4525,7 @@ func (m *QueryGetUserRequest) Reset() { *m = QueryGetUserRequest{} } func (m *QueryGetUserRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetUserRequest) ProtoMessage() {} func (*QueryGetUserRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{85} + return fileDescriptor_422ed845ee440bd1, []int{85} } func (m *QueryGetUserRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4569,7 +4569,7 @@ func (m *QueryGetUserResponse) Reset() { *m = QueryGetUserResponse{} } func (m *QueryGetUserResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetUserResponse) ProtoMessage() {} func (*QueryGetUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{86} + return fileDescriptor_422ed845ee440bd1, []int{86} } func (m *QueryGetUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4614,7 +4614,7 @@ func (m *QueryAllUserDaoRequest) Reset() { *m = QueryAllUserDaoRequest{} func (m *QueryAllUserDaoRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllUserDaoRequest) ProtoMessage() {} func (*QueryAllUserDaoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{87} + return fileDescriptor_422ed845ee440bd1, []int{87} } func (m *QueryAllUserDaoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4666,7 +4666,7 @@ func (m *QueryAllUserDaoResponse) Reset() { *m = QueryAllUserDaoResponse func (m *QueryAllUserDaoResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllUserDaoResponse) ProtoMessage() {} func (*QueryAllUserDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{88} + return fileDescriptor_422ed845ee440bd1, []int{88} } func (m *QueryAllUserDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4717,7 +4717,7 @@ func (m *QueryAllUserRequest) Reset() { *m = QueryAllUserRequest{} } func (m *QueryAllUserRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllUserRequest) ProtoMessage() {} func (*QueryAllUserRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{89} + return fileDescriptor_422ed845ee440bd1, []int{89} } func (m *QueryAllUserRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4762,7 +4762,7 @@ func (m *QueryAllUserResponse) Reset() { *m = QueryAllUserResponse{} } func (m *QueryAllUserResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllUserResponse) ProtoMessage() {} func (*QueryAllUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{90} + return fileDescriptor_422ed845ee440bd1, []int{90} } func (m *QueryAllUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4814,7 +4814,7 @@ func (m *QueryAllAnyRepositoryRequest) Reset() { *m = QueryAllAnyReposit func (m *QueryAllAnyRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllAnyRepositoryRequest) ProtoMessage() {} func (*QueryAllAnyRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{91} + return fileDescriptor_422ed845ee440bd1, []int{91} } func (m *QueryAllAnyRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4866,7 +4866,7 @@ func (m *QueryAllAnyRepositoryResponse) Reset() { *m = QueryAllAnyReposi func (m *QueryAllAnyRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllAnyRepositoryResponse) ProtoMessage() {} func (*QueryAllAnyRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{92} + return fileDescriptor_422ed845ee440bd1, []int{92} } func (m *QueryAllAnyRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4918,7 +4918,7 @@ func (m *QueryGetAnyRepositoryRequest) Reset() { *m = QueryGetAnyReposit func (m *QueryGetAnyRepositoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAnyRepositoryRequest) ProtoMessage() {} func (*QueryGetAnyRepositoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{93} + return fileDescriptor_422ed845ee440bd1, []int{93} } func (m *QueryGetAnyRepositoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4969,7 +4969,7 @@ func (m *QueryGetAnyRepositoryResponse) Reset() { *m = QueryGetAnyReposi func (m *QueryGetAnyRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAnyRepositoryResponse) ProtoMessage() {} func (*QueryGetAnyRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{94} + return fileDescriptor_422ed845ee440bd1, []int{94} } func (m *QueryGetAnyRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5013,7 +5013,7 @@ func (m *QueryGetWhoisRequest) Reset() { *m = QueryGetWhoisRequest{} } func (m *QueryGetWhoisRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetWhoisRequest) ProtoMessage() {} func (*QueryGetWhoisRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{95} + return fileDescriptor_422ed845ee440bd1, []int{95} } func (m *QueryGetWhoisRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5057,7 +5057,7 @@ func (m *QueryGetWhoisResponse) Reset() { *m = QueryGetWhoisResponse{} } func (m *QueryGetWhoisResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetWhoisResponse) ProtoMessage() {} func (*QueryGetWhoisResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{96} + return fileDescriptor_422ed845ee440bd1, []int{96} } func (m *QueryGetWhoisResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5101,7 +5101,7 @@ func (m *QueryAllWhoisRequest) Reset() { *m = QueryAllWhoisRequest{} } func (m *QueryAllWhoisRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllWhoisRequest) ProtoMessage() {} func (*QueryAllWhoisRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{97} + return fileDescriptor_422ed845ee440bd1, []int{97} } func (m *QueryAllWhoisRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5146,7 +5146,7 @@ func (m *QueryAllWhoisResponse) Reset() { *m = QueryAllWhoisResponse{} } func (m *QueryAllWhoisResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllWhoisResponse) ProtoMessage() {} func (*QueryAllWhoisResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a22a96ec9485ca24, []int{98} + return fileDescriptor_422ed845ee440bd1, []int{98} } func (m *QueryAllWhoisResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5291,7 +5291,7 @@ func init() { proto.RegisterType((*QueryAllWhoisResponse)(nil), "gitopia.gitopia.gitopia.QueryAllWhoisResponse") } -func init() { proto.RegisterFile("gitopia/gitopia/query.proto", fileDescriptor_a22a96ec9485ca24) } +func init() { proto.RegisterFile("gitopia/gitopia/query.proto", fileDescriptor_422ed845ee440bd1) } var fileDescriptor_422ed845ee440bd1 = []byte{ // 3592 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/reaction.pb.go b/x/gitopia/types/reaction.pb.go index 7cf5e104..af6c9d87 100644 --- a/x/gitopia/types/reaction.pb.go +++ b/x/gitopia/types/reaction.pb.go @@ -45,7 +45,7 @@ func (x Emoji) String() string { } func (Emoji) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_693bbc73a7a9ebea, []int{0} + return fileDescriptor_6751c3791b2fecc0, []int{0} } type Reaction struct { @@ -57,7 +57,7 @@ func (m *Reaction) Reset() { *m = Reaction{} } func (m *Reaction) String() string { return proto.CompactTextString(m) } func (*Reaction) ProtoMessage() {} func (*Reaction) Descriptor() ([]byte, []int) { - return fileDescriptor_693bbc73a7a9ebea, []int{0} + return fileDescriptor_6751c3791b2fecc0, []int{0} } func (m *Reaction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -105,7 +105,7 @@ func init() { proto.RegisterType((*Reaction)(nil), "gitopia.gitopia.gitopia.Reaction") } -func init() { proto.RegisterFile("gitopia/gitopia/reaction.proto", fileDescriptor_693bbc73a7a9ebea) } +func init() { proto.RegisterFile("gitopia/gitopia/reaction.proto", fileDescriptor_6751c3791b2fecc0) } var fileDescriptor_6751c3791b2fecc0 = []byte{ // 257 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/release.pb.go b/x/gitopia/types/release.pb.go index 0fb2af94..4feba4d4 100644 --- a/x/gitopia/types/release.pb.go +++ b/x/gitopia/types/release.pb.go @@ -44,7 +44,7 @@ func (m *Release) Reset() { *m = Release{} } func (m *Release) String() string { return proto.CompactTextString(m) } func (*Release) ProtoMessage() {} func (*Release) Descriptor() ([]byte, []int) { - return fileDescriptor_b8eecbd9f280ec72, []int{0} + return fileDescriptor_5fd2e3bb1bcbe1fb, []int{0} } func (m *Release) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -175,7 +175,7 @@ func init() { proto.RegisterType((*Release)(nil), "gitopia.gitopia.gitopia.Release") } -func init() { proto.RegisterFile("gitopia/gitopia/release.proto", fileDescriptor_b8eecbd9f280ec72) } +func init() { proto.RegisterFile("gitopia/gitopia/release.proto", fileDescriptor_5fd2e3bb1bcbe1fb) } var fileDescriptor_5fd2e3bb1bcbe1fb = []byte{ // 368 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/repository.pb.go b/x/gitopia/types/repository.pb.go index a6818814..45d0acb4 100644 --- a/x/gitopia/types/repository.pb.go +++ b/x/gitopia/types/repository.pb.go @@ -54,7 +54,7 @@ func (x RepositoryCollaborator_Permission) String() string { } func (RepositoryCollaborator_Permission) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{6, 0} + return fileDescriptor_771033d6361900fa, []int{6, 0} } type RepositoryBackup_Store int32 @@ -79,7 +79,7 @@ func (x RepositoryBackup_Store) String() string { } func (RepositoryBackup_Store) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{9, 0} + return fileDescriptor_771033d6361900fa, []int{9, 0} } type Repository struct { @@ -115,7 +115,7 @@ func (m *Repository) Reset() { *m = Repository{} } func (m *Repository) String() string { return proto.CompactTextString(m) } func (*Repository) ProtoMessage() {} func (*Repository) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{0} + return fileDescriptor_771033d6361900fa, []int{0} } func (m *Repository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,7 +335,7 @@ func (m *RepositoryId) Reset() { *m = RepositoryId{} } func (m *RepositoryId) String() string { return proto.CompactTextString(m) } func (*RepositoryId) ProtoMessage() {} func (*RepositoryId) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{1} + return fileDescriptor_771033d6361900fa, []int{1} } func (m *RepositoryId) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -388,7 +388,7 @@ func (m *BaseRepositoryKey) Reset() { *m = BaseRepositoryKey{} } func (m *BaseRepositoryKey) String() string { return proto.CompactTextString(m) } func (*BaseRepositoryKey) ProtoMessage() {} func (*BaseRepositoryKey) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{2} + return fileDescriptor_771033d6361900fa, []int{2} } func (m *BaseRepositoryKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -447,7 +447,7 @@ func (m *RepositoryOwner) Reset() { *m = RepositoryOwner{} } func (m *RepositoryOwner) String() string { return proto.CompactTextString(m) } func (*RepositoryOwner) ProtoMessage() {} func (*RepositoryOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{3} + return fileDescriptor_771033d6361900fa, []int{3} } func (m *RepositoryOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -499,7 +499,7 @@ func (m *IssueIid) Reset() { *m = IssueIid{} } func (m *IssueIid) String() string { return proto.CompactTextString(m) } func (*IssueIid) ProtoMessage() {} func (*IssueIid) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{4} + return fileDescriptor_771033d6361900fa, []int{4} } func (m *IssueIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -551,7 +551,7 @@ func (m *PullRequestIid) Reset() { *m = PullRequestIid{} } func (m *PullRequestIid) String() string { return proto.CompactTextString(m) } func (*PullRequestIid) ProtoMessage() {} func (*PullRequestIid) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{5} + return fileDescriptor_771033d6361900fa, []int{5} } func (m *PullRequestIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -603,7 +603,7 @@ func (m *RepositoryCollaborator) Reset() { *m = RepositoryCollaborator{} func (m *RepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*RepositoryCollaborator) ProtoMessage() {} func (*RepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{6} + return fileDescriptor_771033d6361900fa, []int{6} } func (m *RepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -657,7 +657,7 @@ func (m *RepositoryLabel) Reset() { *m = RepositoryLabel{} } func (m *RepositoryLabel) String() string { return proto.CompactTextString(m) } func (*RepositoryLabel) ProtoMessage() {} func (*RepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{7} + return fileDescriptor_771033d6361900fa, []int{7} } func (m *RepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -723,7 +723,7 @@ func (m *RepositoryRelease) Reset() { *m = RepositoryRelease{} } func (m *RepositoryRelease) String() string { return proto.CompactTextString(m) } func (*RepositoryRelease) ProtoMessage() {} func (*RepositoryRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{8} + return fileDescriptor_771033d6361900fa, []int{8} } func (m *RepositoryRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -775,7 +775,7 @@ func (m *RepositoryBackup) Reset() { *m = RepositoryBackup{} } func (m *RepositoryBackup) String() string { return proto.CompactTextString(m) } func (*RepositoryBackup) ProtoMessage() {} func (*RepositoryBackup) Descriptor() ([]byte, []int) { - return fileDescriptor_bbd9a19e6dde689c, []int{9} + return fileDescriptor_771033d6361900fa, []int{9} } func (m *RepositoryBackup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -833,7 +833,7 @@ func init() { proto.RegisterType((*RepositoryBackup)(nil), "gitopia.gitopia.gitopia.RepositoryBackup") } -func init() { proto.RegisterFile("gitopia/gitopia/repository.proto", fileDescriptor_bbd9a19e6dde689c) } +func init() { proto.RegisterFile("gitopia/gitopia/repository.proto", fileDescriptor_771033d6361900fa) } var fileDescriptor_771033d6361900fa = []byte{ // 881 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/tag.pb.go b/x/gitopia/types/tag.pb.go index 20510c95..d30b0d3c 100644 --- a/x/gitopia/types/tag.pb.go +++ b/x/gitopia/types/tag.pb.go @@ -35,7 +35,7 @@ func (m *Tag) Reset() { *m = Tag{} } func (m *Tag) String() string { return proto.CompactTextString(m) } func (*Tag) ProtoMessage() {} func (*Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_1d18d058690603bd, []int{0} + return fileDescriptor_bd09f5e76807ae94, []int{0} } func (m *Tag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -110,7 +110,7 @@ func init() { proto.RegisterType((*Tag)(nil), "gitopia.gitopia.gitopia.Tag") } -func init() { proto.RegisterFile("gitopia/gitopia/tag.proto", fileDescriptor_1d18d058690603bd) } +func init() { proto.RegisterFile("gitopia/gitopia/tag.proto", fileDescriptor_bd09f5e76807ae94) } var fileDescriptor_bd09f5e76807ae94 = []byte{ // 219 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/task.pb.go b/x/gitopia/types/task.pb.go index 1211638d..988dda16 100644 --- a/x/gitopia/types/task.pb.go +++ b/x/gitopia/types/task.pb.go @@ -45,7 +45,7 @@ func (x TaskType) String() string { } func (TaskType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_224396eac3759120, []int{0} + return fileDescriptor_a6920678987ef43f, []int{0} } type TaskState int32 @@ -73,7 +73,7 @@ func (x TaskState) String() string { } func (TaskState) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_224396eac3759120, []int{1} + return fileDescriptor_a6920678987ef43f, []int{1} } type Task struct { @@ -89,7 +89,7 @@ func (m *Task) Reset() { *m = Task{} } func (m *Task) String() string { return proto.CompactTextString(m) } func (*Task) ProtoMessage() {} func (*Task) Descriptor() ([]byte, []int) { - return fileDescriptor_224396eac3759120, []int{0} + return fileDescriptor_a6920678987ef43f, []int{0} } func (m *Task) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -166,7 +166,7 @@ func init() { proto.RegisterType((*Task)(nil), "gitopia.gitopia.gitopia.Task") } -func init() { proto.RegisterFile("gitopia/gitopia/task.proto", fileDescriptor_224396eac3759120) } +func init() { proto.RegisterFile("gitopia/gitopia/task.proto", fileDescriptor_a6920678987ef43f) } var fileDescriptor_a6920678987ef43f = []byte{ // 441 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index f764ca39..609ecbbf 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -52,7 +52,7 @@ func (x ProviderPermission) String() string { } func (ProviderPermission) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{0} + return fileDescriptor_a62a3f7fe5854081, []int{0} } type MsgExercise struct { @@ -65,7 +65,7 @@ func (m *MsgExercise) Reset() { *m = MsgExercise{} } func (m *MsgExercise) String() string { return proto.CompactTextString(m) } func (*MsgExercise) ProtoMessage() {} func (*MsgExercise) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{0} + return fileDescriptor_a62a3f7fe5854081, []int{0} } func (m *MsgExercise) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,7 +122,7 @@ func (m *MsgExerciseResponse) Reset() { *m = MsgExerciseResponse{} } func (m *MsgExerciseResponse) String() string { return proto.CompactTextString(m) } func (*MsgExerciseResponse) ProtoMessage() {} func (*MsgExerciseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{1} + return fileDescriptor_a62a3f7fe5854081, []int{1} } func (m *MsgExerciseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -161,7 +161,7 @@ func (m *MsgToggleForcePush) Reset() { *m = MsgToggleForcePush{} } func (m *MsgToggleForcePush) String() string { return proto.CompactTextString(m) } func (*MsgToggleForcePush) ProtoMessage() {} func (*MsgToggleForcePush) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{2} + return fileDescriptor_a62a3f7fe5854081, []int{2} } func (m *MsgToggleForcePush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -218,7 +218,7 @@ func (m *MsgToggleForcePushResponse) Reset() { *m = MsgToggleForcePushRe func (m *MsgToggleForcePushResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleForcePushResponse) ProtoMessage() {} func (*MsgToggleForcePushResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{3} + return fileDescriptor_a62a3f7fe5854081, []int{3} } func (m *MsgToggleForcePushResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -258,7 +258,7 @@ func (m *MsgRevokeProviderPermission) Reset() { *m = MsgRevokeProviderPe func (m *MsgRevokeProviderPermission) String() string { return proto.CompactTextString(m) } func (*MsgRevokeProviderPermission) ProtoMessage() {} func (*MsgRevokeProviderPermission) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{4} + return fileDescriptor_a62a3f7fe5854081, []int{4} } func (m *MsgRevokeProviderPermission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -322,7 +322,7 @@ func (m *MsgRevokeProviderPermissionResponse) Reset() { *m = MsgRevokePr func (m *MsgRevokeProviderPermissionResponse) String() string { return proto.CompactTextString(m) } func (*MsgRevokeProviderPermissionResponse) ProtoMessage() {} func (*MsgRevokeProviderPermissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{5} + return fileDescriptor_a62a3f7fe5854081, []int{5} } func (m *MsgRevokeProviderPermissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -362,7 +362,7 @@ func (m *MsgAuthorizeProvider) Reset() { *m = MsgAuthorizeProvider{} } func (m *MsgAuthorizeProvider) String() string { return proto.CompactTextString(m) } func (*MsgAuthorizeProvider) ProtoMessage() {} func (*MsgAuthorizeProvider) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{6} + return fileDescriptor_a62a3f7fe5854081, []int{6} } func (m *MsgAuthorizeProvider) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -426,7 +426,7 @@ func (m *MsgAuthorizeProviderResponse) Reset() { *m = MsgAuthorizeProvid func (m *MsgAuthorizeProviderResponse) String() string { return proto.CompactTextString(m) } func (*MsgAuthorizeProviderResponse) ProtoMessage() {} func (*MsgAuthorizeProviderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{7} + return fileDescriptor_a62a3f7fe5854081, []int{7} } func (m *MsgAuthorizeProviderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -465,7 +465,7 @@ func (m *MsgCreateTask) Reset() { *m = MsgCreateTask{} } func (m *MsgCreateTask) String() string { return proto.CompactTextString(m) } func (*MsgCreateTask) ProtoMessage() {} func (*MsgCreateTask) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{8} + return fileDescriptor_a62a3f7fe5854081, []int{8} } func (m *MsgCreateTask) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -523,7 +523,7 @@ func (m *MsgCreateTaskResponse) Reset() { *m = MsgCreateTaskResponse{} } func (m *MsgCreateTaskResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateTaskResponse) ProtoMessage() {} func (*MsgCreateTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{9} + return fileDescriptor_a62a3f7fe5854081, []int{9} } func (m *MsgCreateTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -570,7 +570,7 @@ func (m *MsgUpdateTask) Reset() { *m = MsgUpdateTask{} } func (m *MsgUpdateTask) String() string { return proto.CompactTextString(m) } func (*MsgUpdateTask) ProtoMessage() {} func (*MsgUpdateTask) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{10} + return fileDescriptor_a62a3f7fe5854081, []int{10} } func (m *MsgUpdateTask) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -634,7 +634,7 @@ func (m *MsgUpdateTaskResponse) Reset() { *m = MsgUpdateTaskResponse{} } func (m *MsgUpdateTaskResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateTaskResponse) ProtoMessage() {} func (*MsgUpdateTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{11} + return fileDescriptor_a62a3f7fe5854081, []int{11} } func (m *MsgUpdateTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -672,7 +672,7 @@ func (m *MsgDeleteTask) Reset() { *m = MsgDeleteTask{} } func (m *MsgDeleteTask) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTask) ProtoMessage() {} func (*MsgDeleteTask) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{12} + return fileDescriptor_a62a3f7fe5854081, []int{12} } func (m *MsgDeleteTask) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -726,7 +726,7 @@ func (m *MsgUpdateRepositoryBackupRef) Reset() { *m = MsgUpdateRepositor func (m *MsgUpdateRepositoryBackupRef) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryBackupRef) ProtoMessage() {} func (*MsgUpdateRepositoryBackupRef) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{13} + return fileDescriptor_a62a3f7fe5854081, []int{13} } func (m *MsgUpdateRepositoryBackupRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -790,7 +790,7 @@ func (m *MsgUpdateRepositoryBackupRefResponse) Reset() { *m = MsgUpdateR func (m *MsgUpdateRepositoryBackupRefResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryBackupRefResponse) ProtoMessage() {} func (*MsgUpdateRepositoryBackupRefResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{14} + return fileDescriptor_a62a3f7fe5854081, []int{14} } func (m *MsgUpdateRepositoryBackupRefResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -830,7 +830,7 @@ func (m *MsgAddRepositoryBackupRef) Reset() { *m = MsgAddRepositoryBacku func (m *MsgAddRepositoryBackupRef) String() string { return proto.CompactTextString(m) } func (*MsgAddRepositoryBackupRef) ProtoMessage() {} func (*MsgAddRepositoryBackupRef) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{15} + return fileDescriptor_a62a3f7fe5854081, []int{15} } func (m *MsgAddRepositoryBackupRef) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -894,7 +894,7 @@ func (m *MsgAddRepositoryBackupRefResponse) Reset() { *m = MsgAddReposit func (m *MsgAddRepositoryBackupRefResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddRepositoryBackupRefResponse) ProtoMessage() {} func (*MsgAddRepositoryBackupRefResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{16} + return fileDescriptor_a62a3f7fe5854081, []int{16} } func (m *MsgAddRepositoryBackupRefResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -930,7 +930,7 @@ func (m *MsgDeleteTaskResponse) Reset() { *m = MsgDeleteTaskResponse{} } func (m *MsgDeleteTaskResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTaskResponse) ProtoMessage() {} func (*MsgDeleteTaskResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{17} + return fileDescriptor_a62a3f7fe5854081, []int{17} } func (m *MsgDeleteTaskResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -966,7 +966,7 @@ func (m *MsgDeleteStorageProviderResponse) Reset() { *m = MsgDeleteStora func (m *MsgDeleteStorageProviderResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteStorageProviderResponse) ProtoMessage() {} func (*MsgDeleteStorageProviderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{18} + return fileDescriptor_a62a3f7fe5854081, []int{18} } func (m *MsgDeleteStorageProviderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1005,7 +1005,7 @@ func (m *MsgSetBranch) Reset() { *m = MsgSetBranch{} } func (m *MsgSetBranch) String() string { return proto.CompactTextString(m) } func (*MsgSetBranch) ProtoMessage() {} func (*MsgSetBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{19} + return fileDescriptor_a62a3f7fe5854081, []int{19} } func (m *MsgSetBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1064,7 +1064,7 @@ func (m *MsgSetBranch_Branch) Reset() { *m = MsgSetBranch_Branch{} } func (m *MsgSetBranch_Branch) String() string { return proto.CompactTextString(m) } func (*MsgSetBranch_Branch) ProtoMessage() {} func (*MsgSetBranch_Branch) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{19, 0} + return fileDescriptor_a62a3f7fe5854081, []int{19, 0} } func (m *MsgSetBranch_Branch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1114,7 +1114,7 @@ func (m *MsgSetBranchResponse) Reset() { *m = MsgSetBranchResponse{} } func (m *MsgSetBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetBranchResponse) ProtoMessage() {} func (*MsgSetBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{20} + return fileDescriptor_a62a3f7fe5854081, []int{20} } func (m *MsgSetBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1153,7 +1153,7 @@ func (m *MsgSetDefaultBranch) Reset() { *m = MsgSetDefaultBranch{} } func (m *MsgSetDefaultBranch) String() string { return proto.CompactTextString(m) } func (*MsgSetDefaultBranch) ProtoMessage() {} func (*MsgSetDefaultBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{21} + return fileDescriptor_a62a3f7fe5854081, []int{21} } func (m *MsgSetDefaultBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1210,7 +1210,7 @@ func (m *MsgSetDefaultBranchResponse) Reset() { *m = MsgSetDefaultBranch func (m *MsgSetDefaultBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetDefaultBranchResponse) ProtoMessage() {} func (*MsgSetDefaultBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{22} + return fileDescriptor_a62a3f7fe5854081, []int{22} } func (m *MsgSetDefaultBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1249,7 +1249,7 @@ func (m *MsgMultiSetBranch) Reset() { *m = MsgMultiSetBranch{} } func (m *MsgMultiSetBranch) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetBranch) ProtoMessage() {} func (*MsgMultiSetBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{23} + return fileDescriptor_a62a3f7fe5854081, []int{23} } func (m *MsgMultiSetBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1308,7 +1308,7 @@ func (m *MsgMultiSetBranch_Branch) Reset() { *m = MsgMultiSetBranch_Bran func (m *MsgMultiSetBranch_Branch) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetBranch_Branch) ProtoMessage() {} func (*MsgMultiSetBranch_Branch) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{23, 0} + return fileDescriptor_a62a3f7fe5854081, []int{23, 0} } func (m *MsgMultiSetBranch_Branch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1358,7 +1358,7 @@ func (m *MsgMultiSetBranchResponse) Reset() { *m = MsgMultiSetBranchResp func (m *MsgMultiSetBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetBranchResponse) ProtoMessage() {} func (*MsgMultiSetBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{24} + return fileDescriptor_a62a3f7fe5854081, []int{24} } func (m *MsgMultiSetBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1397,7 +1397,7 @@ func (m *MsgDeleteBranch) Reset() { *m = MsgDeleteBranch{} } func (m *MsgDeleteBranch) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBranch) ProtoMessage() {} func (*MsgDeleteBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{25} + return fileDescriptor_a62a3f7fe5854081, []int{25} } func (m *MsgDeleteBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1454,7 +1454,7 @@ func (m *MsgDeleteBranchResponse) Reset() { *m = MsgDeleteBranchResponse func (m *MsgDeleteBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBranchResponse) ProtoMessage() {} func (*MsgDeleteBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{26} + return fileDescriptor_a62a3f7fe5854081, []int{26} } func (m *MsgDeleteBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1493,7 +1493,7 @@ func (m *MsgMultiDeleteBranch) Reset() { *m = MsgMultiDeleteBranch{} } func (m *MsgMultiDeleteBranch) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteBranch) ProtoMessage() {} func (*MsgMultiDeleteBranch) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{27} + return fileDescriptor_a62a3f7fe5854081, []int{27} } func (m *MsgMultiDeleteBranch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1550,7 +1550,7 @@ func (m *MsgMultiDeleteBranchResponse) Reset() { *m = MsgMultiDeleteBran func (m *MsgMultiDeleteBranchResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteBranchResponse) ProtoMessage() {} func (*MsgMultiDeleteBranchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{28} + return fileDescriptor_a62a3f7fe5854081, []int{28} } func (m *MsgMultiDeleteBranchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1589,7 +1589,7 @@ func (m *MsgSetTag) Reset() { *m = MsgSetTag{} } func (m *MsgSetTag) String() string { return proto.CompactTextString(m) } func (*MsgSetTag) ProtoMessage() {} func (*MsgSetTag) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{29} + return fileDescriptor_a62a3f7fe5854081, []int{29} } func (m *MsgSetTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1648,7 +1648,7 @@ func (m *MsgSetTag_Tag) Reset() { *m = MsgSetTag_Tag{} } func (m *MsgSetTag_Tag) String() string { return proto.CompactTextString(m) } func (*MsgSetTag_Tag) ProtoMessage() {} func (*MsgSetTag_Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{29, 0} + return fileDescriptor_a62a3f7fe5854081, []int{29, 0} } func (m *MsgSetTag_Tag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1698,7 +1698,7 @@ func (m *MsgSetTagResponse) Reset() { *m = MsgSetTagResponse{} } func (m *MsgSetTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetTagResponse) ProtoMessage() {} func (*MsgSetTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{30} + return fileDescriptor_a62a3f7fe5854081, []int{30} } func (m *MsgSetTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1737,7 +1737,7 @@ func (m *MsgMultiSetTag) Reset() { *m = MsgMultiSetTag{} } func (m *MsgMultiSetTag) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetTag) ProtoMessage() {} func (*MsgMultiSetTag) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{31} + return fileDescriptor_a62a3f7fe5854081, []int{31} } func (m *MsgMultiSetTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1796,7 +1796,7 @@ func (m *MsgMultiSetTag_Tag) Reset() { *m = MsgMultiSetTag_Tag{} } func (m *MsgMultiSetTag_Tag) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetTag_Tag) ProtoMessage() {} func (*MsgMultiSetTag_Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{31, 0} + return fileDescriptor_a62a3f7fe5854081, []int{31, 0} } func (m *MsgMultiSetTag_Tag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1846,7 +1846,7 @@ func (m *MsgMultiSetTagResponse) Reset() { *m = MsgMultiSetTagResponse{} func (m *MsgMultiSetTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiSetTagResponse) ProtoMessage() {} func (*MsgMultiSetTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{32} + return fileDescriptor_a62a3f7fe5854081, []int{32} } func (m *MsgMultiSetTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1885,7 +1885,7 @@ func (m *MsgDeleteTag) Reset() { *m = MsgDeleteTag{} } func (m *MsgDeleteTag) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTag) ProtoMessage() {} func (*MsgDeleteTag) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{33} + return fileDescriptor_a62a3f7fe5854081, []int{33} } func (m *MsgDeleteTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1942,7 +1942,7 @@ func (m *MsgDeleteTagResponse) Reset() { *m = MsgDeleteTagResponse{} } func (m *MsgDeleteTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteTagResponse) ProtoMessage() {} func (*MsgDeleteTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{34} + return fileDescriptor_a62a3f7fe5854081, []int{34} } func (m *MsgDeleteTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1981,7 +1981,7 @@ func (m *MsgMultiDeleteTag) Reset() { *m = MsgMultiDeleteTag{} } func (m *MsgMultiDeleteTag) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteTag) ProtoMessage() {} func (*MsgMultiDeleteTag) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{35} + return fileDescriptor_a62a3f7fe5854081, []int{35} } func (m *MsgMultiDeleteTag) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2038,7 +2038,7 @@ func (m *MsgMultiDeleteTagResponse) Reset() { *m = MsgMultiDeleteTagResp func (m *MsgMultiDeleteTagResponse) String() string { return proto.CompactTextString(m) } func (*MsgMultiDeleteTagResponse) ProtoMessage() {} func (*MsgMultiDeleteTagResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{36} + return fileDescriptor_a62a3f7fe5854081, []int{36} } func (m *MsgMultiDeleteTagResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2078,7 +2078,7 @@ func (m *MsgAddMember) Reset() { *m = MsgAddMember{} } func (m *MsgAddMember) String() string { return proto.CompactTextString(m) } func (*MsgAddMember) ProtoMessage() {} func (*MsgAddMember) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{37} + return fileDescriptor_a62a3f7fe5854081, []int{37} } func (m *MsgAddMember) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2142,7 +2142,7 @@ func (m *MsgAddMemberResponse) Reset() { *m = MsgAddMemberResponse{} } func (m *MsgAddMemberResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddMemberResponse) ProtoMessage() {} func (*MsgAddMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{38} + return fileDescriptor_a62a3f7fe5854081, []int{38} } func (m *MsgAddMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2182,7 +2182,7 @@ func (m *MsgUpdateMemberRole) Reset() { *m = MsgUpdateMemberRole{} } func (m *MsgUpdateMemberRole) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMemberRole) ProtoMessage() {} func (*MsgUpdateMemberRole) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{39} + return fileDescriptor_a62a3f7fe5854081, []int{39} } func (m *MsgUpdateMemberRole) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2246,7 +2246,7 @@ func (m *MsgUpdateMemberRoleResponse) Reset() { *m = MsgUpdateMemberRole func (m *MsgUpdateMemberRoleResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMemberRoleResponse) ProtoMessage() {} func (*MsgUpdateMemberRoleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{40} + return fileDescriptor_a62a3f7fe5854081, []int{40} } func (m *MsgUpdateMemberRoleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2285,7 +2285,7 @@ func (m *MsgRemoveMember) Reset() { *m = MsgRemoveMember{} } func (m *MsgRemoveMember) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMember) ProtoMessage() {} func (*MsgRemoveMember) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{41} + return fileDescriptor_a62a3f7fe5854081, []int{41} } func (m *MsgRemoveMember) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2342,7 +2342,7 @@ func (m *MsgRemoveMemberResponse) Reset() { *m = MsgRemoveMemberResponse func (m *MsgRemoveMemberResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveMemberResponse) ProtoMessage() {} func (*MsgRemoveMemberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{42} + return fileDescriptor_a62a3f7fe5854081, []int{42} } func (m *MsgRemoveMemberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2384,7 +2384,7 @@ func (m *MsgCreateBounty) Reset() { *m = MsgCreateBounty{} } func (m *MsgCreateBounty) String() string { return proto.CompactTextString(m) } func (*MsgCreateBounty) ProtoMessage() {} func (*MsgCreateBounty) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{43} + return fileDescriptor_a62a3f7fe5854081, []int{43} } func (m *MsgCreateBounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2463,7 +2463,7 @@ func (m *MsgCreateBountyResponse) Reset() { *m = MsgCreateBountyResponse func (m *MsgCreateBountyResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateBountyResponse) ProtoMessage() {} func (*MsgCreateBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{44} + return fileDescriptor_a62a3f7fe5854081, []int{44} } func (m *MsgCreateBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2509,7 +2509,7 @@ func (m *MsgUpdateBountyExpiry) Reset() { *m = MsgUpdateBountyExpiry{} } func (m *MsgUpdateBountyExpiry) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBountyExpiry) ProtoMessage() {} func (*MsgUpdateBountyExpiry) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{45} + return fileDescriptor_a62a3f7fe5854081, []int{45} } func (m *MsgUpdateBountyExpiry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2566,7 +2566,7 @@ func (m *MsgUpdateBountyExpiryResponse) Reset() { *m = MsgUpdateBountyEx func (m *MsgUpdateBountyExpiryResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateBountyExpiryResponse) ProtoMessage() {} func (*MsgUpdateBountyExpiryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{46} + return fileDescriptor_a62a3f7fe5854081, []int{46} } func (m *MsgUpdateBountyExpiryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2604,7 +2604,7 @@ func (m *MsgCloseBounty) Reset() { *m = MsgCloseBounty{} } func (m *MsgCloseBounty) String() string { return proto.CompactTextString(m) } func (*MsgCloseBounty) ProtoMessage() {} func (*MsgCloseBounty) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{47} + return fileDescriptor_a62a3f7fe5854081, []int{47} } func (m *MsgCloseBounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2654,7 +2654,7 @@ func (m *MsgCloseBountyResponse) Reset() { *m = MsgCloseBountyResponse{} func (m *MsgCloseBountyResponse) String() string { return proto.CompactTextString(m) } func (*MsgCloseBountyResponse) ProtoMessage() {} func (*MsgCloseBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{48} + return fileDescriptor_a62a3f7fe5854081, []int{48} } func (m *MsgCloseBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2692,7 +2692,7 @@ func (m *MsgDeleteBounty) Reset() { *m = MsgDeleteBounty{} } func (m *MsgDeleteBounty) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBounty) ProtoMessage() {} func (*MsgDeleteBounty) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{49} + return fileDescriptor_a62a3f7fe5854081, []int{49} } func (m *MsgDeleteBounty) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2742,7 +2742,7 @@ func (m *MsgDeleteBountyResponse) Reset() { *m = MsgDeleteBountyResponse func (m *MsgDeleteBountyResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteBountyResponse) ProtoMessage() {} func (*MsgDeleteBountyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{50} + return fileDescriptor_a62a3f7fe5854081, []int{50} } func (m *MsgDeleteBountyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2789,7 +2789,7 @@ func (m *MsgCreateRelease) Reset() { *m = MsgCreateRelease{} } func (m *MsgCreateRelease) String() string { return proto.CompactTextString(m) } func (*MsgCreateRelease) ProtoMessage() {} func (*MsgCreateRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{51} + return fileDescriptor_a62a3f7fe5854081, []int{51} } func (m *MsgCreateRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2896,7 +2896,7 @@ func (m *MsgCreateReleaseResponse) Reset() { *m = MsgCreateReleaseRespon func (m *MsgCreateReleaseResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateReleaseResponse) ProtoMessage() {} func (*MsgCreateReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{52} + return fileDescriptor_a62a3f7fe5854081, []int{52} } func (m *MsgCreateReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2949,7 +2949,7 @@ func (m *MsgUpdateRelease) Reset() { *m = MsgUpdateRelease{} } func (m *MsgUpdateRelease) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRelease) ProtoMessage() {} func (*MsgUpdateRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{53} + return fileDescriptor_a62a3f7fe5854081, []int{53} } func (m *MsgUpdateRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3055,7 +3055,7 @@ func (m *MsgUpdateReleaseResponse) Reset() { *m = MsgUpdateReleaseRespon func (m *MsgUpdateReleaseResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateReleaseResponse) ProtoMessage() {} func (*MsgUpdateReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{54} + return fileDescriptor_a62a3f7fe5854081, []int{54} } func (m *MsgUpdateReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3093,7 +3093,7 @@ func (m *MsgDeleteRelease) Reset() { *m = MsgDeleteRelease{} } func (m *MsgDeleteRelease) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRelease) ProtoMessage() {} func (*MsgDeleteRelease) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{55} + return fileDescriptor_a62a3f7fe5854081, []int{55} } func (m *MsgDeleteRelease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3143,7 +3143,7 @@ func (m *MsgDeleteReleaseResponse) Reset() { *m = MsgDeleteReleaseRespon func (m *MsgDeleteReleaseResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteReleaseResponse) ProtoMessage() {} func (*MsgDeleteReleaseResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{56} + return fileDescriptor_a62a3f7fe5854081, []int{56} } func (m *MsgDeleteReleaseResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3190,7 +3190,7 @@ func (m *MsgCreatePullRequest) Reset() { *m = MsgCreatePullRequest{} } func (m *MsgCreatePullRequest) String() string { return proto.CompactTextString(m) } func (*MsgCreatePullRequest) ProtoMessage() {} func (*MsgCreatePullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{57} + return fileDescriptor_a62a3f7fe5854081, []int{57} } func (m *MsgCreatePullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3305,7 +3305,7 @@ func (m *MsgCreatePullRequestResponse) Reset() { *m = MsgCreatePullReque func (m *MsgCreatePullRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreatePullRequestResponse) ProtoMessage() {} func (*MsgCreatePullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{58} + return fileDescriptor_a62a3f7fe5854081, []int{58} } func (m *MsgCreatePullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3359,7 +3359,7 @@ func (m *MsgUpdatePullRequestTitle) Reset() { *m = MsgUpdatePullRequestT func (m *MsgUpdatePullRequestTitle) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestTitle) ProtoMessage() {} func (*MsgUpdatePullRequestTitle) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{59} + return fileDescriptor_a62a3f7fe5854081, []int{59} } func (m *MsgUpdatePullRequestTitle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3423,7 +3423,7 @@ func (m *MsgUpdatePullRequestTitleResponse) Reset() { *m = MsgUpdatePull func (m *MsgUpdatePullRequestTitleResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestTitleResponse) ProtoMessage() {} func (*MsgUpdatePullRequestTitleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{60} + return fileDescriptor_a62a3f7fe5854081, []int{60} } func (m *MsgUpdatePullRequestTitleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3463,7 +3463,7 @@ func (m *MsgUpdatePullRequestDescription) Reset() { *m = MsgUpdatePullRe func (m *MsgUpdatePullRequestDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestDescription) ProtoMessage() {} func (*MsgUpdatePullRequestDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{61} + return fileDescriptor_a62a3f7fe5854081, []int{61} } func (m *MsgUpdatePullRequestDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3529,7 +3529,7 @@ func (m *MsgUpdatePullRequestDescriptionResponse) Reset() { func (m *MsgUpdatePullRequestDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePullRequestDescriptionResponse) ProtoMessage() {} func (*MsgUpdatePullRequestDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{62} + return fileDescriptor_a62a3f7fe5854081, []int{62} } func (m *MsgUpdatePullRequestDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3569,7 +3569,7 @@ func (m *MsgInvokeMergePullRequest) Reset() { *m = MsgInvokeMergePullReq func (m *MsgInvokeMergePullRequest) String() string { return proto.CompactTextString(m) } func (*MsgInvokeMergePullRequest) ProtoMessage() {} func (*MsgInvokeMergePullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{63} + return fileDescriptor_a62a3f7fe5854081, []int{63} } func (m *MsgInvokeMergePullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3633,7 +3633,7 @@ func (m *MsgInvokeMergePullRequestResponse) Reset() { *m = MsgInvokeMerg func (m *MsgInvokeMergePullRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgInvokeMergePullRequestResponse) ProtoMessage() {} func (*MsgInvokeMergePullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{64} + return fileDescriptor_a62a3f7fe5854081, []int{64} } func (m *MsgInvokeMergePullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3676,7 +3676,7 @@ func (m *MsgSetPullRequestState) Reset() { *m = MsgSetPullRequestState{} func (m *MsgSetPullRequestState) String() string { return proto.CompactTextString(m) } func (*MsgSetPullRequestState) ProtoMessage() {} func (*MsgSetPullRequestState) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{65} + return fileDescriptor_a62a3f7fe5854081, []int{65} } func (m *MsgSetPullRequestState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3762,7 +3762,7 @@ func (m *MsgSetPullRequestStateResponse) Reset() { *m = MsgSetPullReques func (m *MsgSetPullRequestStateResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetPullRequestStateResponse) ProtoMessage() {} func (*MsgSetPullRequestStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{66} + return fileDescriptor_a62a3f7fe5854081, []int{66} } func (m *MsgSetPullRequestStateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3809,7 +3809,7 @@ func (m *MsgAddPullRequestReviewers) Reset() { *m = MsgAddPullRequestRev func (m *MsgAddPullRequestReviewers) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestReviewers) ProtoMessage() {} func (*MsgAddPullRequestReviewers) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{67} + return fileDescriptor_a62a3f7fe5854081, []int{67} } func (m *MsgAddPullRequestReviewers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3873,7 +3873,7 @@ func (m *MsgAddPullRequestReviewersResponse) Reset() { *m = MsgAddPullRe func (m *MsgAddPullRequestReviewersResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestReviewersResponse) ProtoMessage() {} func (*MsgAddPullRequestReviewersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{68} + return fileDescriptor_a62a3f7fe5854081, []int{68} } func (m *MsgAddPullRequestReviewersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3913,7 +3913,7 @@ func (m *MsgRemovePullRequestReviewers) Reset() { *m = MsgRemovePullRequ func (m *MsgRemovePullRequestReviewers) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestReviewers) ProtoMessage() {} func (*MsgRemovePullRequestReviewers) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{69} + return fileDescriptor_a62a3f7fe5854081, []int{69} } func (m *MsgRemovePullRequestReviewers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3977,7 +3977,7 @@ func (m *MsgRemovePullRequestReviewersResponse) Reset() { *m = MsgRemove func (m *MsgRemovePullRequestReviewersResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestReviewersResponse) ProtoMessage() {} func (*MsgRemovePullRequestReviewersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{70} + return fileDescriptor_a62a3f7fe5854081, []int{70} } func (m *MsgRemovePullRequestReviewersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4017,7 +4017,7 @@ func (m *MsgAddPullRequestAssignees) Reset() { *m = MsgAddPullRequestAss func (m *MsgAddPullRequestAssignees) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestAssignees) ProtoMessage() {} func (*MsgAddPullRequestAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{71} + return fileDescriptor_a62a3f7fe5854081, []int{71} } func (m *MsgAddPullRequestAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4081,7 +4081,7 @@ func (m *MsgAddPullRequestAssigneesResponse) Reset() { *m = MsgAddPullRe func (m *MsgAddPullRequestAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestAssigneesResponse) ProtoMessage() {} func (*MsgAddPullRequestAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{72} + return fileDescriptor_a62a3f7fe5854081, []int{72} } func (m *MsgAddPullRequestAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4121,7 +4121,7 @@ func (m *MsgRemovePullRequestAssignees) Reset() { *m = MsgRemovePullRequ func (m *MsgRemovePullRequestAssignees) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestAssignees) ProtoMessage() {} func (*MsgRemovePullRequestAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{73} + return fileDescriptor_a62a3f7fe5854081, []int{73} } func (m *MsgRemovePullRequestAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4185,7 +4185,7 @@ func (m *MsgRemovePullRequestAssigneesResponse) Reset() { *m = MsgRemove func (m *MsgRemovePullRequestAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestAssigneesResponse) ProtoMessage() {} func (*MsgRemovePullRequestAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{74} + return fileDescriptor_a62a3f7fe5854081, []int{74} } func (m *MsgRemovePullRequestAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4225,7 +4225,7 @@ func (m *MsgLinkPullRequestIssueByIid) Reset() { *m = MsgLinkPullRequest func (m *MsgLinkPullRequestIssueByIid) String() string { return proto.CompactTextString(m) } func (*MsgLinkPullRequestIssueByIid) ProtoMessage() {} func (*MsgLinkPullRequestIssueByIid) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{75} + return fileDescriptor_a62a3f7fe5854081, []int{75} } func (m *MsgLinkPullRequestIssueByIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4289,7 +4289,7 @@ func (m *MsgLinkPullRequestIssueByIidResponse) Reset() { *m = MsgLinkPul func (m *MsgLinkPullRequestIssueByIidResponse) String() string { return proto.CompactTextString(m) } func (*MsgLinkPullRequestIssueByIidResponse) ProtoMessage() {} func (*MsgLinkPullRequestIssueByIidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{76} + return fileDescriptor_a62a3f7fe5854081, []int{76} } func (m *MsgLinkPullRequestIssueByIidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4329,7 +4329,7 @@ func (m *MsgUnlinkPullRequestIssueByIid) Reset() { *m = MsgUnlinkPullReq func (m *MsgUnlinkPullRequestIssueByIid) String() string { return proto.CompactTextString(m) } func (*MsgUnlinkPullRequestIssueByIid) ProtoMessage() {} func (*MsgUnlinkPullRequestIssueByIid) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{77} + return fileDescriptor_a62a3f7fe5854081, []int{77} } func (m *MsgUnlinkPullRequestIssueByIid) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4395,7 +4395,7 @@ func (m *MsgUnlinkPullRequestIssueByIidResponse) Reset() { func (m *MsgUnlinkPullRequestIssueByIidResponse) String() string { return proto.CompactTextString(m) } func (*MsgUnlinkPullRequestIssueByIidResponse) ProtoMessage() {} func (*MsgUnlinkPullRequestIssueByIidResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{78} + return fileDescriptor_a62a3f7fe5854081, []int{78} } func (m *MsgUnlinkPullRequestIssueByIidResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4435,7 +4435,7 @@ func (m *MsgAddPullRequestLabels) Reset() { *m = MsgAddPullRequestLabels func (m *MsgAddPullRequestLabels) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestLabels) ProtoMessage() {} func (*MsgAddPullRequestLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{79} + return fileDescriptor_a62a3f7fe5854081, []int{79} } func (m *MsgAddPullRequestLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4499,7 +4499,7 @@ func (m *MsgAddPullRequestLabelsResponse) Reset() { *m = MsgAddPullReque func (m *MsgAddPullRequestLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddPullRequestLabelsResponse) ProtoMessage() {} func (*MsgAddPullRequestLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{80} + return fileDescriptor_a62a3f7fe5854081, []int{80} } func (m *MsgAddPullRequestLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4539,7 +4539,7 @@ func (m *MsgRemovePullRequestLabels) Reset() { *m = MsgRemovePullRequest func (m *MsgRemovePullRequestLabels) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestLabels) ProtoMessage() {} func (*MsgRemovePullRequestLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{81} + return fileDescriptor_a62a3f7fe5854081, []int{81} } func (m *MsgRemovePullRequestLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4603,7 +4603,7 @@ func (m *MsgRemovePullRequestLabelsResponse) Reset() { *m = MsgRemovePul func (m *MsgRemovePullRequestLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemovePullRequestLabelsResponse) ProtoMessage() {} func (*MsgRemovePullRequestLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{82} + return fileDescriptor_a62a3f7fe5854081, []int{82} } func (m *MsgRemovePullRequestLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4642,7 +4642,7 @@ func (m *MsgDeletePullRequest) Reset() { *m = MsgDeletePullRequest{} } func (m *MsgDeletePullRequest) String() string { return proto.CompactTextString(m) } func (*MsgDeletePullRequest) ProtoMessage() {} func (*MsgDeletePullRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{83} + return fileDescriptor_a62a3f7fe5854081, []int{83} } func (m *MsgDeletePullRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4699,7 +4699,7 @@ func (m *MsgDeletePullRequestResponse) Reset() { *m = MsgDeletePullReque func (m *MsgDeletePullRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeletePullRequestResponse) ProtoMessage() {} func (*MsgDeletePullRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{84} + return fileDescriptor_a62a3f7fe5854081, []int{84} } func (m *MsgDeletePullRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4741,7 +4741,7 @@ func (m *MsgCreateDao) Reset() { *m = MsgCreateDao{} } func (m *MsgCreateDao) String() string { return proto.CompactTextString(m) } func (*MsgCreateDao) ProtoMessage() {} func (*MsgCreateDao) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{85} + return fileDescriptor_a62a3f7fe5854081, []int{85} } func (m *MsgCreateDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4820,7 +4820,7 @@ func (m *MsgCreateDaoResponse) Reset() { *m = MsgCreateDaoResponse{} } func (m *MsgCreateDaoResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateDaoResponse) ProtoMessage() {} func (*MsgCreateDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{86} + return fileDescriptor_a62a3f7fe5854081, []int{86} } func (m *MsgCreateDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4866,7 +4866,7 @@ func (m *MsgRenameDao) Reset() { *m = MsgRenameDao{} } func (m *MsgRenameDao) String() string { return proto.CompactTextString(m) } func (*MsgRenameDao) ProtoMessage() {} func (*MsgRenameDao) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{87} + return fileDescriptor_a62a3f7fe5854081, []int{87} } func (m *MsgRenameDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4923,7 +4923,7 @@ func (m *MsgRenameDaoResponse) Reset() { *m = MsgRenameDaoResponse{} } func (m *MsgRenameDaoResponse) String() string { return proto.CompactTextString(m) } func (*MsgRenameDaoResponse) ProtoMessage() {} func (*MsgRenameDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{88} + return fileDescriptor_a62a3f7fe5854081, []int{88} } func (m *MsgRenameDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4962,7 +4962,7 @@ func (m *MsgUpdateDaoDescription) Reset() { *m = MsgUpdateDaoDescription func (m *MsgUpdateDaoDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoDescription) ProtoMessage() {} func (*MsgUpdateDaoDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{89} + return fileDescriptor_a62a3f7fe5854081, []int{89} } func (m *MsgUpdateDaoDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5019,7 +5019,7 @@ func (m *MsgUpdateDaoDescriptionResponse) Reset() { *m = MsgUpdateDaoDes func (m *MsgUpdateDaoDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoDescriptionResponse) ProtoMessage() {} func (*MsgUpdateDaoDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{90} + return fileDescriptor_a62a3f7fe5854081, []int{90} } func (m *MsgUpdateDaoDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5058,7 +5058,7 @@ func (m *MsgUpdateDaoWebsite) Reset() { *m = MsgUpdateDaoWebsite{} } func (m *MsgUpdateDaoWebsite) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoWebsite) ProtoMessage() {} func (*MsgUpdateDaoWebsite) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{91} + return fileDescriptor_a62a3f7fe5854081, []int{91} } func (m *MsgUpdateDaoWebsite) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5115,7 +5115,7 @@ func (m *MsgUpdateDaoWebsiteResponse) Reset() { *m = MsgUpdateDaoWebsite func (m *MsgUpdateDaoWebsiteResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoWebsiteResponse) ProtoMessage() {} func (*MsgUpdateDaoWebsiteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{92} + return fileDescriptor_a62a3f7fe5854081, []int{92} } func (m *MsgUpdateDaoWebsiteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5154,7 +5154,7 @@ func (m *MsgUpdateDaoLocation) Reset() { *m = MsgUpdateDaoLocation{} } func (m *MsgUpdateDaoLocation) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoLocation) ProtoMessage() {} func (*MsgUpdateDaoLocation) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{93} + return fileDescriptor_a62a3f7fe5854081, []int{93} } func (m *MsgUpdateDaoLocation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5211,7 +5211,7 @@ func (m *MsgUpdateDaoLocationResponse) Reset() { *m = MsgUpdateDaoLocati func (m *MsgUpdateDaoLocationResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoLocationResponse) ProtoMessage() {} func (*MsgUpdateDaoLocationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{94} + return fileDescriptor_a62a3f7fe5854081, []int{94} } func (m *MsgUpdateDaoLocationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5250,7 +5250,7 @@ func (m *MsgUpdateDaoAvatar) Reset() { *m = MsgUpdateDaoAvatar{} } func (m *MsgUpdateDaoAvatar) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoAvatar) ProtoMessage() {} func (*MsgUpdateDaoAvatar) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{95} + return fileDescriptor_a62a3f7fe5854081, []int{95} } func (m *MsgUpdateDaoAvatar) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5307,7 +5307,7 @@ func (m *MsgUpdateDaoAvatarResponse) Reset() { *m = MsgUpdateDaoAvatarRe func (m *MsgUpdateDaoAvatarResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDaoAvatarResponse) ProtoMessage() {} func (*MsgUpdateDaoAvatarResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{96} + return fileDescriptor_a62a3f7fe5854081, []int{96} } func (m *MsgUpdateDaoAvatarResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5345,7 +5345,7 @@ func (m *MsgDeleteDao) Reset() { *m = MsgDeleteDao{} } func (m *MsgDeleteDao) String() string { return proto.CompactTextString(m) } func (*MsgDeleteDao) ProtoMessage() {} func (*MsgDeleteDao) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{97} + return fileDescriptor_a62a3f7fe5854081, []int{97} } func (m *MsgDeleteDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5395,7 +5395,7 @@ func (m *MsgDeleteDaoResponse) Reset() { *m = MsgDeleteDaoResponse{} } func (m *MsgDeleteDaoResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteDaoResponse) ProtoMessage() {} func (*MsgDeleteDaoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{98} + return fileDescriptor_a62a3f7fe5854081, []int{98} } func (m *MsgDeleteDaoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5440,7 +5440,7 @@ func (m *MsgCreateComment) Reset() { *m = MsgCreateComment{} } func (m *MsgCreateComment) String() string { return proto.CompactTextString(m) } func (*MsgCreateComment) ProtoMessage() {} func (*MsgCreateComment) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{99} + return fileDescriptor_a62a3f7fe5854081, []int{99} } func (m *MsgCreateComment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5540,7 +5540,7 @@ func (m *MsgCreateCommentResponse) Reset() { *m = MsgCreateCommentRespon func (m *MsgCreateCommentResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateCommentResponse) ProtoMessage() {} func (*MsgCreateCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{100} + return fileDescriptor_a62a3f7fe5854081, []int{100} } func (m *MsgCreateCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5590,7 +5590,7 @@ func (m *MsgUpdateComment) Reset() { *m = MsgUpdateComment{} } func (m *MsgUpdateComment) String() string { return proto.CompactTextString(m) } func (*MsgUpdateComment) ProtoMessage() {} func (*MsgUpdateComment) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{101} + return fileDescriptor_a62a3f7fe5854081, []int{101} } func (m *MsgUpdateComment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5675,7 +5675,7 @@ func (m *MsgUpdateCommentResponse) Reset() { *m = MsgUpdateCommentRespon func (m *MsgUpdateCommentResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCommentResponse) ProtoMessage() {} func (*MsgUpdateCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{102} + return fileDescriptor_a62a3f7fe5854081, []int{102} } func (m *MsgUpdateCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5716,7 +5716,7 @@ func (m *MsgDeleteComment) Reset() { *m = MsgDeleteComment{} } func (m *MsgDeleteComment) String() string { return proto.CompactTextString(m) } func (*MsgDeleteComment) ProtoMessage() {} func (*MsgDeleteComment) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{103} + return fileDescriptor_a62a3f7fe5854081, []int{103} } func (m *MsgDeleteComment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5787,7 +5787,7 @@ func (m *MsgDeleteCommentResponse) Reset() { *m = MsgDeleteCommentRespon func (m *MsgDeleteCommentResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteCommentResponse) ProtoMessage() {} func (*MsgDeleteCommentResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{104} + return fileDescriptor_a62a3f7fe5854081, []int{104} } func (m *MsgDeleteCommentResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5832,7 +5832,7 @@ func (m *MsgCreateIssue) Reset() { *m = MsgCreateIssue{} } func (m *MsgCreateIssue) String() string { return proto.CompactTextString(m) } func (*MsgCreateIssue) ProtoMessage() {} func (*MsgCreateIssue) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{105} + return fileDescriptor_a62a3f7fe5854081, []int{105} } func (m *MsgCreateIssue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5933,7 +5933,7 @@ func (m *MsgCreateIssueResponse) Reset() { *m = MsgCreateIssueResponse{} func (m *MsgCreateIssueResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateIssueResponse) ProtoMessage() {} func (*MsgCreateIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{106} + return fileDescriptor_a62a3f7fe5854081, []int{106} } func (m *MsgCreateIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5987,7 +5987,7 @@ func (m *MsgUpdateIssueTitle) Reset() { *m = MsgUpdateIssueTitle{} } func (m *MsgUpdateIssueTitle) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueTitle) ProtoMessage() {} func (*MsgUpdateIssueTitle) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{107} + return fileDescriptor_a62a3f7fe5854081, []int{107} } func (m *MsgUpdateIssueTitle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6051,7 +6051,7 @@ func (m *MsgUpdateIssueTitleResponse) Reset() { *m = MsgUpdateIssueTitle func (m *MsgUpdateIssueTitleResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueTitleResponse) ProtoMessage() {} func (*MsgUpdateIssueTitleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{108} + return fileDescriptor_a62a3f7fe5854081, []int{108} } func (m *MsgUpdateIssueTitleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6091,7 +6091,7 @@ func (m *MsgUpdateIssueDescription) Reset() { *m = MsgUpdateIssueDescrip func (m *MsgUpdateIssueDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueDescription) ProtoMessage() {} func (*MsgUpdateIssueDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{109} + return fileDescriptor_a62a3f7fe5854081, []int{109} } func (m *MsgUpdateIssueDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6155,7 +6155,7 @@ func (m *MsgUpdateIssueDescriptionResponse) Reset() { *m = MsgUpdateIssu func (m *MsgUpdateIssueDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueDescriptionResponse) ProtoMessage() {} func (*MsgUpdateIssueDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{110} + return fileDescriptor_a62a3f7fe5854081, []int{110} } func (m *MsgUpdateIssueDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6195,7 +6195,7 @@ func (m *MsgToggleIssueState) Reset() { *m = MsgToggleIssueState{} } func (m *MsgToggleIssueState) String() string { return proto.CompactTextString(m) } func (*MsgToggleIssueState) ProtoMessage() {} func (*MsgToggleIssueState) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{111} + return fileDescriptor_a62a3f7fe5854081, []int{111} } func (m *MsgToggleIssueState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6260,7 +6260,7 @@ func (m *MsgToggleIssueStateResponse) Reset() { *m = MsgToggleIssueState func (m *MsgToggleIssueStateResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleIssueStateResponse) ProtoMessage() {} func (*MsgToggleIssueStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{112} + return fileDescriptor_a62a3f7fe5854081, []int{112} } func (m *MsgToggleIssueStateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6307,7 +6307,7 @@ func (m *MsgAddIssueAssignees) Reset() { *m = MsgAddIssueAssignees{} } func (m *MsgAddIssueAssignees) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueAssignees) ProtoMessage() {} func (*MsgAddIssueAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{113} + return fileDescriptor_a62a3f7fe5854081, []int{113} } func (m *MsgAddIssueAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6371,7 +6371,7 @@ func (m *MsgAddIssueAssigneesResponse) Reset() { *m = MsgAddIssueAssigne func (m *MsgAddIssueAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueAssigneesResponse) ProtoMessage() {} func (*MsgAddIssueAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{114} + return fileDescriptor_a62a3f7fe5854081, []int{114} } func (m *MsgAddIssueAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6411,7 +6411,7 @@ func (m *MsgRemoveIssueAssignees) Reset() { *m = MsgRemoveIssueAssignees func (m *MsgRemoveIssueAssignees) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueAssignees) ProtoMessage() {} func (*MsgRemoveIssueAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{115} + return fileDescriptor_a62a3f7fe5854081, []int{115} } func (m *MsgRemoveIssueAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6475,7 +6475,7 @@ func (m *MsgRemoveIssueAssigneesResponse) Reset() { *m = MsgRemoveIssueA func (m *MsgRemoveIssueAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueAssigneesResponse) ProtoMessage() {} func (*MsgRemoveIssueAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{116} + return fileDescriptor_a62a3f7fe5854081, []int{116} } func (m *MsgRemoveIssueAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6515,7 +6515,7 @@ func (m *MsgAddIssueLabels) Reset() { *m = MsgAddIssueLabels{} } func (m *MsgAddIssueLabels) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueLabels) ProtoMessage() {} func (*MsgAddIssueLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{117} + return fileDescriptor_a62a3f7fe5854081, []int{117} } func (m *MsgAddIssueLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6579,7 +6579,7 @@ func (m *MsgAddIssueLabelsResponse) Reset() { *m = MsgAddIssueLabelsResp func (m *MsgAddIssueLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueLabelsResponse) ProtoMessage() {} func (*MsgAddIssueLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{118} + return fileDescriptor_a62a3f7fe5854081, []int{118} } func (m *MsgAddIssueLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6619,7 +6619,7 @@ func (m *MsgRemoveIssueLabels) Reset() { *m = MsgRemoveIssueLabels{} } func (m *MsgRemoveIssueLabels) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueLabels) ProtoMessage() {} func (*MsgRemoveIssueLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{119} + return fileDescriptor_a62a3f7fe5854081, []int{119} } func (m *MsgRemoveIssueLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6683,7 +6683,7 @@ func (m *MsgRemoveIssueLabelsResponse) Reset() { *m = MsgRemoveIssueLabe func (m *MsgRemoveIssueLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueLabelsResponse) ProtoMessage() {} func (*MsgRemoveIssueLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{120} + return fileDescriptor_a62a3f7fe5854081, []int{120} } func (m *MsgRemoveIssueLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6722,7 +6722,7 @@ func (m *MsgDeleteIssue) Reset() { *m = MsgDeleteIssue{} } func (m *MsgDeleteIssue) String() string { return proto.CompactTextString(m) } func (*MsgDeleteIssue) ProtoMessage() {} func (*MsgDeleteIssue) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{121} + return fileDescriptor_a62a3f7fe5854081, []int{121} } func (m *MsgDeleteIssue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6779,7 +6779,7 @@ func (m *MsgDeleteIssueResponse) Reset() { *m = MsgDeleteIssueResponse{} func (m *MsgDeleteIssueResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteIssueResponse) ProtoMessage() {} func (*MsgDeleteIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{122} + return fileDescriptor_a62a3f7fe5854081, []int{122} } func (m *MsgDeleteIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6819,7 +6819,7 @@ func (m *MsgCreateRepository) Reset() { *m = MsgCreateRepository{} } func (m *MsgCreateRepository) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepository) ProtoMessage() {} func (*MsgCreateRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{123} + return fileDescriptor_a62a3f7fe5854081, []int{123} } func (m *MsgCreateRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6884,7 +6884,7 @@ func (m *MsgCreateRepositoryResponse) Reset() { *m = MsgCreateRepository func (m *MsgCreateRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryResponse) ProtoMessage() {} func (*MsgCreateRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{124} + return fileDescriptor_a62a3f7fe5854081, []int{124} } func (m *MsgCreateRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6934,7 +6934,7 @@ func (m *MsgInvokeForkRepository) Reset() { *m = MsgInvokeForkRepository func (m *MsgInvokeForkRepository) String() string { return proto.CompactTextString(m) } func (*MsgInvokeForkRepository) ProtoMessage() {} func (*MsgInvokeForkRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{125} + return fileDescriptor_a62a3f7fe5854081, []int{125} } func (m *MsgInvokeForkRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7019,7 +7019,7 @@ func (m *MsgInvokeForkRepositoryResponse) Reset() { *m = MsgInvokeForkRe func (m *MsgInvokeForkRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgInvokeForkRepositoryResponse) ProtoMessage() {} func (*MsgInvokeForkRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{126} + return fileDescriptor_a62a3f7fe5854081, []int{126} } func (m *MsgInvokeForkRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7062,7 +7062,7 @@ func (m *MsgForkRepository) Reset() { *m = MsgForkRepository{} } func (m *MsgForkRepository) String() string { return proto.CompactTextString(m) } func (*MsgForkRepository) ProtoMessage() {} func (*MsgForkRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{127} + return fileDescriptor_a62a3f7fe5854081, []int{127} } func (m *MsgForkRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7148,7 +7148,7 @@ func (m *MsgForkRepositoryResponse) Reset() { *m = MsgForkRepositoryResp func (m *MsgForkRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositoryResponse) ProtoMessage() {} func (*MsgForkRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{128} + return fileDescriptor_a62a3f7fe5854081, []int{128} } func (m *MsgForkRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7194,7 +7194,7 @@ func (m *MsgForkRepositorySuccess) Reset() { *m = MsgForkRepositorySucce func (m *MsgForkRepositorySuccess) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositorySuccess) ProtoMessage() {} func (*MsgForkRepositorySuccess) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{129} + return fileDescriptor_a62a3f7fe5854081, []int{129} } func (m *MsgForkRepositorySuccess) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7252,7 +7252,7 @@ func (m *MsgForkRepositorySuccessResponse) Reset() { *m = MsgForkReposit func (m *MsgForkRepositorySuccessResponse) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositorySuccessResponse) ProtoMessage() {} func (*MsgForkRepositorySuccessResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{130} + return fileDescriptor_a62a3f7fe5854081, []int{130} } func (m *MsgForkRepositorySuccessResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7298,7 +7298,7 @@ func (m *MsgRenameRepository) Reset() { *m = MsgRenameRepository{} } func (m *MsgRenameRepository) String() string { return proto.CompactTextString(m) } func (*MsgRenameRepository) ProtoMessage() {} func (*MsgRenameRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{131} + return fileDescriptor_a62a3f7fe5854081, []int{131} } func (m *MsgRenameRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7355,7 +7355,7 @@ func (m *MsgRenameRepositoryResponse) Reset() { *m = MsgRenameRepository func (m *MsgRenameRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgRenameRepositoryResponse) ProtoMessage() {} func (*MsgRenameRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{132} + return fileDescriptor_a62a3f7fe5854081, []int{132} } func (m *MsgRenameRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7394,7 +7394,7 @@ func (m *MsgUpdateRepositoryDescription) Reset() { *m = MsgUpdateReposit func (m *MsgUpdateRepositoryDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryDescription) ProtoMessage() {} func (*MsgUpdateRepositoryDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{133} + return fileDescriptor_a62a3f7fe5854081, []int{133} } func (m *MsgUpdateRepositoryDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7453,7 +7453,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Reset() { func (m *MsgUpdateRepositoryDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryDescriptionResponse) ProtoMessage() {} func (*MsgUpdateRepositoryDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{134} + return fileDescriptor_a62a3f7fe5854081, []int{134} } func (m *MsgUpdateRepositoryDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7492,7 +7492,7 @@ func (m *MsgUpdateArchiveState) Reset() { *m = MsgUpdateArchiveState{} } func (m *MsgUpdateArchiveState) String() string { return proto.CompactTextString(m) } func (*MsgUpdateArchiveState) ProtoMessage() {} func (*MsgUpdateArchiveState) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{135} + return fileDescriptor_a62a3f7fe5854081, []int{135} } func (m *MsgUpdateArchiveState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7549,7 +7549,7 @@ func (m *MsgUpdateArchiveStateResponse) Reset() { *m = MsgUpdateArchiveS func (m *MsgUpdateArchiveStateResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateArchiveStateResponse) ProtoMessage() {} func (*MsgUpdateArchiveStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{136} + return fileDescriptor_a62a3f7fe5854081, []int{136} } func (m *MsgUpdateArchiveStateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7588,7 +7588,7 @@ func (m *MsgChangeOwner) Reset() { *m = MsgChangeOwner{} } func (m *MsgChangeOwner) String() string { return proto.CompactTextString(m) } func (*MsgChangeOwner) ProtoMessage() {} func (*MsgChangeOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{137} + return fileDescriptor_a62a3f7fe5854081, []int{137} } func (m *MsgChangeOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7645,7 +7645,7 @@ func (m *MsgChangeOwnerResponse) Reset() { *m = MsgChangeOwnerResponse{} func (m *MsgChangeOwnerResponse) String() string { return proto.CompactTextString(m) } func (*MsgChangeOwnerResponse) ProtoMessage() {} func (*MsgChangeOwnerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{138} + return fileDescriptor_a62a3f7fe5854081, []int{138} } func (m *MsgChangeOwnerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7685,7 +7685,7 @@ func (m *MsgUpdateRepositoryCollaborator) Reset() { *m = MsgUpdateReposi func (m *MsgUpdateRepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryCollaborator) ProtoMessage() {} func (*MsgUpdateRepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{139} + return fileDescriptor_a62a3f7fe5854081, []int{139} } func (m *MsgUpdateRepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7751,7 +7751,7 @@ func (m *MsgUpdateRepositoryCollaboratorResponse) Reset() { func (m *MsgUpdateRepositoryCollaboratorResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryCollaboratorResponse) ProtoMessage() {} func (*MsgUpdateRepositoryCollaboratorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{140} + return fileDescriptor_a62a3f7fe5854081, []int{140} } func (m *MsgUpdateRepositoryCollaboratorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7790,7 +7790,7 @@ func (m *MsgRemoveRepositoryCollaborator) Reset() { *m = MsgRemoveReposi func (m *MsgRemoveRepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*MsgRemoveRepositoryCollaborator) ProtoMessage() {} func (*MsgRemoveRepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{141} + return fileDescriptor_a62a3f7fe5854081, []int{141} } func (m *MsgRemoveRepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7849,7 +7849,7 @@ func (m *MsgRemoveRepositoryCollaboratorResponse) Reset() { func (m *MsgRemoveRepositoryCollaboratorResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveRepositoryCollaboratorResponse) ProtoMessage() {} func (*MsgRemoveRepositoryCollaboratorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{142} + return fileDescriptor_a62a3f7fe5854081, []int{142} } func (m *MsgRemoveRepositoryCollaboratorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7890,7 +7890,7 @@ func (m *MsgCreateRepositoryLabel) Reset() { *m = MsgCreateRepositoryLab func (m *MsgCreateRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryLabel) ProtoMessage() {} func (*MsgCreateRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{143} + return fileDescriptor_a62a3f7fe5854081, []int{143} } func (m *MsgCreateRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7962,7 +7962,7 @@ func (m *MsgCreateRepositoryLabelResponse) Reset() { *m = MsgCreateRepos func (m *MsgCreateRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryLabelResponse) ProtoMessage() {} func (*MsgCreateRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{144} + return fileDescriptor_a62a3f7fe5854081, []int{144} } func (m *MsgCreateRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8011,7 +8011,7 @@ func (m *MsgUpdateRepositoryLabel) Reset() { *m = MsgUpdateRepositoryLab func (m *MsgUpdateRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryLabel) ProtoMessage() {} func (*MsgUpdateRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{145} + return fileDescriptor_a62a3f7fe5854081, []int{145} } func (m *MsgUpdateRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8089,7 +8089,7 @@ func (m *MsgUpdateRepositoryLabelResponse) Reset() { *m = MsgUpdateRepos func (m *MsgUpdateRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryLabelResponse) ProtoMessage() {} func (*MsgUpdateRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{146} + return fileDescriptor_a62a3f7fe5854081, []int{146} } func (m *MsgUpdateRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8128,7 +8128,7 @@ func (m *MsgDeleteRepositoryLabel) Reset() { *m = MsgDeleteRepositoryLab func (m *MsgDeleteRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryLabel) ProtoMessage() {} func (*MsgDeleteRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{147} + return fileDescriptor_a62a3f7fe5854081, []int{147} } func (m *MsgDeleteRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8185,7 +8185,7 @@ func (m *MsgDeleteRepositoryLabelResponse) Reset() { *m = MsgDeleteRepos func (m *MsgDeleteRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryLabelResponse) ProtoMessage() {} func (*MsgDeleteRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{148} + return fileDescriptor_a62a3f7fe5854081, []int{148} } func (m *MsgDeleteRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8223,7 +8223,7 @@ func (m *MsgToggleRepositoryForking) Reset() { *m = MsgToggleRepositoryF func (m *MsgToggleRepositoryForking) String() string { return proto.CompactTextString(m) } func (*MsgToggleRepositoryForking) ProtoMessage() {} func (*MsgToggleRepositoryForking) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{149} + return fileDescriptor_a62a3f7fe5854081, []int{149} } func (m *MsgToggleRepositoryForking) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8274,7 +8274,7 @@ func (m *MsgToggleRepositoryForkingResponse) Reset() { *m = MsgToggleRep func (m *MsgToggleRepositoryForkingResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleRepositoryForkingResponse) ProtoMessage() {} func (*MsgToggleRepositoryForkingResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{150} + return fileDescriptor_a62a3f7fe5854081, []int{150} } func (m *MsgToggleRepositoryForkingResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8319,7 +8319,7 @@ func (m *MsgToggleArweaveBackup) Reset() { *m = MsgToggleArweaveBackup{} func (m *MsgToggleArweaveBackup) String() string { return proto.CompactTextString(m) } func (*MsgToggleArweaveBackup) ProtoMessage() {} func (*MsgToggleArweaveBackup) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{151} + return fileDescriptor_a62a3f7fe5854081, []int{151} } func (m *MsgToggleArweaveBackup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8370,7 +8370,7 @@ func (m *MsgToggleArweaveBackupResponse) Reset() { *m = MsgToggleArweave func (m *MsgToggleArweaveBackupResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleArweaveBackupResponse) ProtoMessage() {} func (*MsgToggleArweaveBackupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{152} + return fileDescriptor_a62a3f7fe5854081, []int{152} } func (m *MsgToggleArweaveBackupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8415,7 +8415,7 @@ func (m *MsgDeleteRepository) Reset() { *m = MsgDeleteRepository{} } func (m *MsgDeleteRepository) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepository) ProtoMessage() {} func (*MsgDeleteRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{153} + return fileDescriptor_a62a3f7fe5854081, []int{153} } func (m *MsgDeleteRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8465,7 +8465,7 @@ func (m *MsgDeleteRepositoryResponse) Reset() { *m = MsgDeleteRepository func (m *MsgDeleteRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryResponse) ProtoMessage() {} func (*MsgDeleteRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{154} + return fileDescriptor_a62a3f7fe5854081, []int{154} } func (m *MsgDeleteRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8506,7 +8506,7 @@ func (m *MsgCreateUser) Reset() { *m = MsgCreateUser{} } func (m *MsgCreateUser) String() string { return proto.CompactTextString(m) } func (*MsgCreateUser) ProtoMessage() {} func (*MsgCreateUser) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{155} + return fileDescriptor_a62a3f7fe5854081, []int{155} } func (m *MsgCreateUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8578,7 +8578,7 @@ func (m *MsgCreateUserResponse) Reset() { *m = MsgCreateUserResponse{} } func (m *MsgCreateUserResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateUserResponse) ProtoMessage() {} func (*MsgCreateUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{156} + return fileDescriptor_a62a3f7fe5854081, []int{156} } func (m *MsgCreateUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8623,7 +8623,7 @@ func (m *MsgUpdateUserUsername) Reset() { *m = MsgUpdateUserUsername{} } func (m *MsgUpdateUserUsername) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserUsername) ProtoMessage() {} func (*MsgUpdateUserUsername) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{157} + return fileDescriptor_a62a3f7fe5854081, []int{157} } func (m *MsgUpdateUserUsername) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8673,7 +8673,7 @@ func (m *MsgUpdateUserUsernameResponse) Reset() { *m = MsgUpdateUserUser func (m *MsgUpdateUserUsernameResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserUsernameResponse) ProtoMessage() {} func (*MsgUpdateUserUsernameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{158} + return fileDescriptor_a62a3f7fe5854081, []int{158} } func (m *MsgUpdateUserUsernameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8711,7 +8711,7 @@ func (m *MsgUpdateUserName) Reset() { *m = MsgUpdateUserName{} } func (m *MsgUpdateUserName) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserName) ProtoMessage() {} func (*MsgUpdateUserName) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{159} + return fileDescriptor_a62a3f7fe5854081, []int{159} } func (m *MsgUpdateUserName) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8761,7 +8761,7 @@ func (m *MsgUpdateUserNameResponse) Reset() { *m = MsgUpdateUserNameResp func (m *MsgUpdateUserNameResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserNameResponse) ProtoMessage() {} func (*MsgUpdateUserNameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{160} + return fileDescriptor_a62a3f7fe5854081, []int{160} } func (m *MsgUpdateUserNameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8799,7 +8799,7 @@ func (m *MsgUpdateUserBio) Reset() { *m = MsgUpdateUserBio{} } func (m *MsgUpdateUserBio) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserBio) ProtoMessage() {} func (*MsgUpdateUserBio) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{161} + return fileDescriptor_a62a3f7fe5854081, []int{161} } func (m *MsgUpdateUserBio) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8849,7 +8849,7 @@ func (m *MsgUpdateUserBioResponse) Reset() { *m = MsgUpdateUserBioRespon func (m *MsgUpdateUserBioResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserBioResponse) ProtoMessage() {} func (*MsgUpdateUserBioResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{162} + return fileDescriptor_a62a3f7fe5854081, []int{162} } func (m *MsgUpdateUserBioResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8887,7 +8887,7 @@ func (m *MsgUpdateUserAvatar) Reset() { *m = MsgUpdateUserAvatar{} } func (m *MsgUpdateUserAvatar) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserAvatar) ProtoMessage() {} func (*MsgUpdateUserAvatar) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{163} + return fileDescriptor_a62a3f7fe5854081, []int{163} } func (m *MsgUpdateUserAvatar) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8937,7 +8937,7 @@ func (m *MsgUpdateUserAvatarResponse) Reset() { *m = MsgUpdateUserAvatar func (m *MsgUpdateUserAvatarResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserAvatarResponse) ProtoMessage() {} func (*MsgUpdateUserAvatarResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{164} + return fileDescriptor_a62a3f7fe5854081, []int{164} } func (m *MsgUpdateUserAvatarResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8975,7 +8975,7 @@ func (m *MsgDeleteUser) Reset() { *m = MsgDeleteUser{} } func (m *MsgDeleteUser) String() string { return proto.CompactTextString(m) } func (*MsgDeleteUser) ProtoMessage() {} func (*MsgDeleteUser) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{165} + return fileDescriptor_a62a3f7fe5854081, []int{165} } func (m *MsgDeleteUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9025,7 +9025,7 @@ func (m *MsgDeleteUserResponse) Reset() { *m = MsgDeleteUserResponse{} } func (m *MsgDeleteUserResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteUserResponse) ProtoMessage() {} func (*MsgDeleteUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b3051f5aac033d39, []int{166} + return fileDescriptor_a62a3f7fe5854081, []int{166} } func (m *MsgDeleteUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9229,7 +9229,7 @@ func init() { proto.RegisterType((*MsgDeleteUserResponse)(nil), "gitopia.gitopia.gitopia.MsgDeleteUserResponse") } -func init() { proto.RegisterFile("gitopia/gitopia/tx.proto", fileDescriptor_b3051f5aac033d39) } +func init() { proto.RegisterFile("gitopia/gitopia/tx.proto", fileDescriptor_a62a3f7fe5854081) } var fileDescriptor_a62a3f7fe5854081 = []byte{ // 4446 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/user.pb.go b/x/gitopia/types/user.pb.go index 2da0a62d..abfe5e3e 100644 --- a/x/gitopia/types/user.pb.go +++ b/x/gitopia/types/user.pb.go @@ -44,7 +44,7 @@ func (m *User) Reset() { *m = User{} } func (m *User) String() string { return proto.CompactTextString(m) } func (*User) ProtoMessage() {} func (*User) Descriptor() ([]byte, []int) { - return fileDescriptor_f1258b7c717290ab, []int{0} + return fileDescriptor_bf7f4b301dc3d162, []int{0} } func (m *User) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -180,7 +180,7 @@ func (m *UserDao) Reset() { *m = UserDao{} } func (m *UserDao) String() string { return proto.CompactTextString(m) } func (*UserDao) ProtoMessage() {} func (*UserDao) Descriptor() ([]byte, []int) { - return fileDescriptor_f1258b7c717290ab, []int{1} + return fileDescriptor_bf7f4b301dc3d162, []int{1} } func (m *UserDao) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -228,7 +228,7 @@ func init() { proto.RegisterType((*UserDao)(nil), "gitopia.gitopia.gitopia.UserDao") } -func init() { proto.RegisterFile("gitopia/gitopia/user.proto", fileDescriptor_f1258b7c717290ab) } +func init() { proto.RegisterFile("gitopia/gitopia/user.proto", fileDescriptor_bf7f4b301dc3d162) } var fileDescriptor_bf7f4b301dc3d162 = []byte{ // 386 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/whois.pb.go b/x/gitopia/types/whois.pb.go index a19b97be..b124930a 100644 --- a/x/gitopia/types/whois.pb.go +++ b/x/gitopia/types/whois.pb.go @@ -45,7 +45,7 @@ func (x OwnerType) String() string { } func (OwnerType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_4aac85447b86043d, []int{0} + return fileDescriptor_eb936eb6838a72a6, []int{0} } type Whois struct { @@ -60,7 +60,7 @@ func (m *Whois) Reset() { *m = Whois{} } func (m *Whois) String() string { return proto.CompactTextString(m) } func (*Whois) ProtoMessage() {} func (*Whois) Descriptor() ([]byte, []int) { - return fileDescriptor_4aac85447b86043d, []int{0} + return fileDescriptor_eb936eb6838a72a6, []int{0} } func (m *Whois) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,7 +129,7 @@ func init() { proto.RegisterType((*Whois)(nil), "gitopia.gitopia.gitopia.Whois") } -func init() { proto.RegisterFile("gitopia/gitopia/whois.proto", fileDescriptor_4aac85447b86043d) } +func init() { proto.RegisterFile("gitopia/gitopia/whois.proto", fileDescriptor_eb936eb6838a72a6) } var fileDescriptor_eb936eb6838a72a6 = []byte{ // 254 bytes of a gzipped FileDescriptorProto diff --git a/x/rewards/client/cli/test/gentxs/node0.json b/x/rewards/client/cli/test/gentxs/node0.json deleted file mode 100644 index 1f2a01bf..00000000 --- a/x/rewards/client/cli/test/gentxs/node0.json +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"node0","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.500000000000000000","max_rate":"1.000000000000000000","max_change_rate":"1.000000000000000000"},"min_self_delegation":"1","delegator_address":"gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj","validator_address":"gitopiavaloper16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpetkaaqf","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"R8BO1pHa1IKb1wBUtmLebP/MQs9JEtb/z2CjRiQFrqI="},"value":{"denom":"stake","amount":"100000000"}}],"memo":"d10c6e76c940ec22c1ad97e8fbd2d2356fbdc7f4@0.0.0.0:60147","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AvqWBRXATV9M+ddn/uzTxB3QoTliBUGK/9vcY5wNvsVN"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"1000000","payer":"","granter":""},"tip":null},"signatures":["TEC5QFohxPWj/7LPeV/chRuu8hDP6IM28T475jNR6m4MZC18ch+u6QkzQ/WTdt4HuPc1Bjvbv57HMc3cxK35kw=="]} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simcli/key_seed.json b/x/rewards/client/cli/test/node0/simcli/key_seed.json deleted file mode 100644 index d5b4a950..00000000 --- a/x/rewards/client/cli/test/node0/simcli/key_seed.json +++ /dev/null @@ -1 +0,0 @@ -{"secret":"sad pitch spatial usual cloth twice disorder segment height excite flat differ disagree cake any fault learn eyebrow lesson seminar arctic brother weapon day"} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address b/x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address deleted file mode 100644 index c980bd14..00000000 --- a/x/rewards/client/cli/test/node0/simcli/keyring-test/d1bf562cebdf1c7f2698f3013d390c7151ca1839.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNi0yNiAxNzozOTo0MC4xNzczNTkgKzA3MDAgKzA3IG09KzE1LjI1MjUxNjMzNCIsImVuYyI6IkEyNTZHQ00iLCJwMmMiOjgxOTIsInAycyI6IkFtVjNLSFFmT2Jmd3JmUUwifQ.hL6XwLESHz5wyj0QzVzkkdQM9gzbsE5AOLjXsBlKyeEGb1uMfXbj3A.0tdGhfrjiEpVmpV_.ftUqDf4hJwVe-at6AnVS1SiKLH_POq3Oum79aQ8Lz_8PVs9lBLuUD7tU-RWFe_3q8xZPdHDXXoEALEQgOVKaUmkVBF-j7Llq6AZk9ysj5YQOgDtECdByjQAbUVUl4wHlgzhMWq3gl5UP99LPmcFUcEp9_VIZrugrkoKSwA1PeK6M25gClDDhyxOoteSWX7pfdMWtLFrUDn3RJB_83o1lxWT0Not21onl-VYjpo1FHcEzqbXOUco.7vrlGKglEg8eZ8BxEQ0tHQ \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info b/x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info deleted file mode 100644 index 1ead24d6..00000000 --- a/x/rewards/client/cli/test/node0/simcli/keyring-test/node0.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNi0yNiAxNzozOTo0MC4xNzU3OTUgKzA3MDAgKzA3IG09KzE1LjI1MDk1MjAwMSIsImVuYyI6IkEyNTZHQ00iLCJwMmMiOjgxOTIsInAycyI6ImlwSE9UaERtLUc5WlB0eEwifQ.EpNJp60TbjnWIqX9CYgP0C1UH6jTsq9lfwoPU6dM_aCfT6X5DwopBw.4fHjzMy-8wq9PFSc.stsMZCJJJxa_tMN9snmp1ouDeu5tZ4Zm-_OV_OcJB_CpTxTSwQGf5pgWzQ5oxF3WZu4Q68u2QG4Mog9AztX9VTYjF387aM05ZQVxfavhknJV5n-UDI8Cpqdg_CywK7-0V3n-DgPKdMFnI71dhWnqI-zfyNt8RfDxhajI64SODIR3Fy_JFdZ-ospUl2I-G705PKEfzHKalBrDj2DyIolOw_5XUm3RiLdeBMQmE7sM_0l4Aw2K8WwJBBK8RrBCdlkPpmcJyM5V1uYFfmmY5DLxkssi4DTBeaikhRTfEDVXsbLZiH3mn5FnHVz9wWSB6Zz_Ml4H4TNLgG2mpyTgLPmrPh80tWNnJK1FZrWmXBhiCqh5FLigzCsizAahcqAr8KqQvX9fyXhr69zEtsLJrmforpv8UOJ9K3obS_FM2-YVHr8f9Hsi0sc76Hcg0EA.R3PkdjxX3x54HBVkDZRksg \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/addrbook.json b/x/rewards/client/cli/test/node0/simd/config/addrbook.json deleted file mode 100644 index aa184347..00000000 --- a/x/rewards/client/cli/test/node0/simd/config/addrbook.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "key": "021653a1b133d5c1b897b524", - "addrs": [] -} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/app.toml b/x/rewards/client/cli/test/node0/simd/config/app.toml deleted file mode 100644 index 7805885d..00000000 --- a/x/rewards/client/cli/test/node0/simd/config/app.toml +++ /dev/null @@ -1,252 +0,0 @@ -# This is a TOML config file. -# For more information, see https://github.com/toml-lang/toml - -############################################################################### -### Base Configuration ### -############################################################################### - -# The minimum gas prices a validator is willing to accept for processing a -# transaction. A transaction's fees must meet the minimum of any denomination -# specified in this config (e.g. 0.25token1;0.0001token2). -minimum-gas-prices = "0.000006stake" - -# default: the last 362880 states are kept, pruning at 10 block intervals -# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node) -# everything: 2 latest states will be kept; pruning at 10 block intervals. -# custom: allow pruning options to be manually specified through 'pruning-keep-recent', and 'pruning-interval' -pruning = "nothing" - -# These are applied if and only if the pruning strategy is custom. -pruning-keep-recent = "0" -pruning-interval = "0" - -# HaltHeight contains a non-zero block height at which a node will gracefully -# halt and shutdown that can be used to assist upgrades and testing. -# -# Note: Commitment of state will be attempted on the corresponding block. -halt-height = 0 - -# HaltTime contains a non-zero minimum block time (in Unix seconds) at which -# a node will gracefully halt and shutdown that can be used to assist upgrades -# and testing. -# -# Note: Commitment of state will be attempted on the corresponding block. -halt-time = 0 - -# MinRetainBlocks defines the minimum block height offset from the current -# block being committed, such that all blocks past this offset are pruned -# from Tendermint. It is used as part of the process of determining the -# ResponseCommit.RetainHeight value during ABCI Commit. A value of 0 indicates -# that no blocks should be pruned. -# -# This configuration value is only responsible for pruning Tendermint blocks. -# It has no bearing on application state pruning which is determined by the -# "pruning-*" configurations. -# -# Note: Tendermint block pruning is dependant on this parameter in conunction -# with the unbonding (safety threshold) period, state pruning and state sync -# snapshot parameters to determine the correct minimum value of -# ResponseCommit.RetainHeight. -min-retain-blocks = 0 - -# InterBlockCache enables inter-block caching. -inter-block-cache = true - -# IndexEvents defines the set of events in the form {eventType}.{attributeKey}, -# which informs Tendermint what to index. If empty, all events will be indexed. -# -# Example: -# ["message.sender", "message.recipient"] -index-events = [] - -# IavlCacheSize set the size of the iavl tree cache. -# Default cache size is 50mb. -iavl-cache-size = 781250 - -# IavlDisableFastNode enables or disables the fast node feature of IAVL. -# Default is false. -iavl-disable-fastnode = false - -# EXPERIMENTAL: IAVLLazyLoading enable/disable the lazy loading of iavl store. -# Default is false. -iavl-lazy-loading = false - -# AppDBBackend defines the database backend type to use for the application and snapshots DBs. -# An empty string indicates that a fallback will be used. -# First fallback is the deprecated compile-time types.DBBackend value. -# Second fallback (if the types.DBBackend also isn't set), is the db-backend value set in Tendermint's config.toml. -app-db-backend = "" - -############################################################################### -### Telemetry Configuration ### -############################################################################### - -[telemetry] - -# Prefixed with keys to separate services. -service-name = "" - -# Enabled enables the application telemetry functionality. When enabled, -# an in-memory sink is also enabled by default. Operators may also enabled -# other sinks such as Prometheus. -enabled = false - -# Enable prefixing gauge values with hostname. -enable-hostname = false - -# Enable adding hostname to labels. -enable-hostname-label = false - -# Enable adding service to labels. -enable-service-label = false - -# PrometheusRetentionTime, when positive, enables a Prometheus metrics sink. -prometheus-retention-time = 0 - -# GlobalLabels defines a global set of name/value label tuples applied to all -# metrics emitted using the wrapper functions defined in telemetry package. -# -# Example: -# [["chain_id", "cosmoshub-1"]] -global-labels = [ -] - -############################################################################### -### API Configuration ### -############################################################################### - -[api] - -# Enable defines if the API server should be enabled. -enable = true - -# Swagger defines if swagger documentation should automatically be registered. -swagger = false - -# Address defines the API server to listen on. -address = "tcp://0.0.0.0:60142" - -# MaxOpenConnections defines the number of maximum open connections. -max-open-connections = 1000 - -# RPCReadTimeout defines the Tendermint RPC read timeout (in seconds). -rpc-read-timeout = 10 - -# RPCWriteTimeout defines the Tendermint RPC write timeout (in seconds). -rpc-write-timeout = 0 - -# RPCMaxBodyBytes defines the Tendermint maximum response body (in bytes). -rpc-max-body-bytes = 1000000 - -# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk). -enabled-unsafe-cors = false - -############################################################################### -### Rosetta Configuration ### -############################################################################### - -[rosetta] - -# Enable defines if the Rosetta API server should be enabled. -enable = false - -# Address defines the Rosetta API server to listen on. -address = ":8080" - -# Network defines the name of the blockchain that will be returned by Rosetta. -blockchain = "app" - -# Network defines the name of the network that will be returned by Rosetta. -network = "network" - -# Retries defines the number of retries when connecting to the node before failing. -retries = 3 - -# Offline defines if Rosetta server should run in offline mode. -offline = false - -# EnableDefaultSuggestedFee defines if the server should suggest fee by default. -# If 'construction/medata' is called without gas limit and gas price, -# suggested fee based on gas-to-suggest and denom-to-suggest will be given. -enable-fee-suggestion = false - -# GasToSuggest defines gas limit when calculating the fee -gas-to-suggest = 200000 - -# DenomToSuggest defines the defult denom for fee suggestion. -# Price must be in minimum-gas-prices. -denom-to-suggest = "uatom" - -############################################################################### -### gRPC Configuration ### -############################################################################### - -[grpc] - -# Enable defines if the gRPC server should be enabled. -enable = true - -# Address defines the gRPC server address to bind to. -address = "0.0.0.0:60144" - -# MaxRecvMsgSize defines the max message size in bytes the server can receive. -# The default value is 10MB. -max-recv-msg-size = "10485760" - -# MaxSendMsgSize defines the max message size in bytes the server can send. -# The default value is math.MaxInt32. -max-send-msg-size = "2147483647" - -############################################################################### -### gRPC Web Configuration ### -############################################################################### - -[grpc-web] - -# GRPCWebEnable defines if the gRPC-web should be enabled. -# NOTE: gRPC must also be enabled, otherwise, this configuration is a no-op. -enable = true - -# Address defines the gRPC-web server address to bind to. -address = "0.0.0.0:60145" - -# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk). -enable-unsafe-cors = false - -############################################################################### -### State Sync Configuration ### -############################################################################### - -# State sync snapshots allow other nodes to rapidly join the network without replaying historical -# blocks, instead downloading and applying a snapshot of the application state at a given height. -[state-sync] - -# snapshot-interval specifies the block interval at which local state sync snapshots are -# taken (0 to disable). -snapshot-interval = 0 - -# snapshot-keep-recent specifies the number of recent snapshots to keep and serve (0 to keep all). -snapshot-keep-recent = 2 - -############################################################################### -### Store / State Streaming ### -############################################################################### - -[store] -streamers = [] - -[streamers] -[streamers.file] -keys = ["*", ] -write_dir = "" -prefix = "" - -# output-metadata specifies if output the metadata file which includes the abci request/responses -# during processing the block. -output-metadata = "true" - -# stop-node-on-error specifies if propagate the file streamer errors to consensus state machine. -stop-node-on-error = "true" - -# fsync specifies if call fsync after writing the files. -fsync = "false" diff --git a/x/rewards/client/cli/test/node0/simd/config/config.toml b/x/rewards/client/cli/test/node0/simd/config/config.toml deleted file mode 100644 index 0255c6af..00000000 --- a/x/rewards/client/cli/test/node0/simd/config/config.toml +++ /dev/null @@ -1,471 +0,0 @@ -# This is a TOML config file. -# For more information, see https://github.com/toml-lang/toml - -# NOTE: Any path below can be absolute (e.g. "/var/myawesomeapp/data") or -# relative to the home directory (e.g. "data"). The home directory is -# "$HOME/.cometbft" by default, but could be changed via $CMTHOME env variable -# or --home cmd flag. - -####################################################################### -### Main Base Config Options ### -####################################################################### - -# TCP or UNIX socket address of the ABCI application, -# or the name of an ABCI application compiled in with the CometBFT binary -proxy_app = "tcp://0.0.0.0:60146" - -# A custom human readable name for this node -moniker = "node0" - -# If this node is many blocks behind the tip of the chain, FastSync -# allows them to catchup quickly by downloading blocks in parallel -# and verifying their commits -fast_sync = true - -# Database backend: goleveldb | cleveldb | boltdb | rocksdb | badgerdb -# * goleveldb (github.com/syndtr/goleveldb - most popular implementation) -# - pure go -# - stable -# * cleveldb (uses levigo wrapper) -# - fast -# - requires gcc -# - use cleveldb build tag (go build -tags cleveldb) -# * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt) -# - EXPERIMENTAL -# - may be faster is some use-cases (random reads - indexer) -# - use boltdb build tag (go build -tags boltdb) -# * rocksdb (uses github.com/tecbot/gorocksdb) -# - EXPERIMENTAL -# - requires gcc -# - use rocksdb build tag (go build -tags rocksdb) -# * badgerdb (uses github.com/dgraph-io/badger) -# - EXPERIMENTAL -# - use badgerdb build tag (go build -tags badgerdb) -db_backend = "goleveldb" - -# Database directory -db_dir = "data" - -# Output level for logging, including package level options -log_level = "info" - -# Output format: 'plain' (colored text) or 'json' -log_format = "plain" - -##### additional base config options ##### - -# Path to the JSON file containing the initial validator set and other meta data -genesis_file = "config/genesis.json" - -# Path to the JSON file containing the private key to use as a validator in the consensus protocol -priv_validator_key_file = "config/priv_validator_key.json" - -# Path to the JSON file containing the last sign state of a validator -priv_validator_state_file = "data/priv_validator_state.json" - -# TCP or UNIX socket address for CometBFT to listen on for -# connections from an external PrivValidator process -priv_validator_laddr = "" - -# Path to the JSON file containing the private key to use for node authentication in the p2p protocol -node_key_file = "config/node_key.json" - -# Mechanism to connect to the ABCI application: socket | grpc -abci = "socket" - -# If true, query the ABCI app on connecting to a new peer -# so the app can decide if we should keep the connection or not -filter_peers = false - - -####################################################################### -### Advanced Configuration Options ### -####################################################################### - -####################################################### -### RPC Server Configuration Options ### -####################################################### -[rpc] - -# TCP or UNIX socket address for the RPC server to listen on -laddr = "tcp://0.0.0.0:60143" - -# A list of origins a cross-domain request can be executed from -# Default value '[]' disables cors support -# Use '["*"]' to allow any origin -cors_allowed_origins = [] - -# A list of methods the client is allowed to use with cross-domain requests -cors_allowed_methods = ["HEAD", "GET", "POST", ] - -# A list of non simple headers the client is allowed to use with cross-domain requests -cors_allowed_headers = ["Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time", ] - -# TCP or UNIX socket address for the gRPC server to listen on -# NOTE: This server only supports /broadcast_tx_commit -grpc_laddr = "" - -# Maximum number of simultaneous connections. -# Does not include RPC (HTTP&WebSocket) connections. See max_open_connections -# If you want to accept a larger number than the default, make sure -# you increase your OS limits. -# 0 - unlimited. -# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files} -# 1024 - 40 - 10 - 50 = 924 = ~900 -grpc_max_open_connections = 900 - -# Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool -unsafe = false - -# Maximum number of simultaneous connections (including WebSocket). -# Does not include gRPC connections. See grpc_max_open_connections -# If you want to accept a larger number than the default, make sure -# you increase your OS limits. -# 0 - unlimited. -# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files} -# 1024 - 40 - 10 - 50 = 924 = ~900 -max_open_connections = 900 - -# Maximum number of unique clientIDs that can /subscribe -# If you're using /broadcast_tx_commit, set to the estimated maximum number -# of broadcast_tx_commit calls per block. -max_subscription_clients = 100 - -# Maximum number of unique queries a given client can /subscribe to -# If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set to -# the estimated # maximum number of broadcast_tx_commit calls per block. -max_subscriptions_per_client = 5 - -# Experimental parameter to specify the maximum number of events a node will -# buffer, per subscription, before returning an error and closing the -# subscription. Must be set to at least 100, but higher values will accommodate -# higher event throughput rates (and will use more memory). -experimental_subscription_buffer_size = 200 - -# Experimental parameter to specify the maximum number of RPC responses that -# can be buffered per WebSocket client. If clients cannot read from the -# WebSocket endpoint fast enough, they will be disconnected, so increasing this -# parameter may reduce the chances of them being disconnected (but will cause -# the node to use more memory). -# -# Must be at least the same as "experimental_subscription_buffer_size", -# otherwise connections could be dropped unnecessarily. This value should -# ideally be somewhat higher than "experimental_subscription_buffer_size" to -# accommodate non-subscription-related RPC responses. -experimental_websocket_write_buffer_size = 200 - -# If a WebSocket client cannot read fast enough, at present we may -# silently drop events instead of generating an error or disconnecting the -# client. -# -# Enabling this experimental parameter will cause the WebSocket connection to -# be closed instead if it cannot read fast enough, allowing for greater -# predictability in subscription behaviour. -experimental_close_on_slow_client = false - -# How long to wait for a tx to be committed during /broadcast_tx_commit. -# WARNING: Using a value larger than 10s will result in increasing the -# global HTTP write timeout, which applies to all connections and endpoints. -# See https://github.com/tendermint/tendermint/issues/3435 -timeout_broadcast_tx_commit = "10s" - -# Maximum size of request body, in bytes -max_body_bytes = 1000000 - -# Maximum size of request header, in bytes -max_header_bytes = 1048576 - -# The path to a file containing certificate that is used to create the HTTPS server. -# Might be either absolute path or path related to CometBFT's config directory. -# If the certificate is signed by a certificate authority, -# the certFile should be the concatenation of the server's certificate, any intermediates, -# and the CA's certificate. -# NOTE: both tls_cert_file and tls_key_file must be present for CometBFT to create HTTPS server. -# Otherwise, HTTP server is run. -tls_cert_file = "" - -# The path to a file containing matching private key that is used to create the HTTPS server. -# Might be either absolute path or path related to CometBFT's config directory. -# NOTE: both tls-cert-file and tls-key-file must be present for CometBFT to create HTTPS server. -# Otherwise, HTTP server is run. -tls_key_file = "" - -# pprof listen address (https://golang.org/pkg/net/http/pprof) -pprof_laddr = "" - -####################################################### -### P2P Configuration Options ### -####################################################### -[p2p] - -# Address to listen for incoming connections -laddr = "tcp://0.0.0.0:60147" - -# Address to advertise to peers for them to dial -# If empty, will use the same port as the laddr, -# and will introspect on the listener or use UPnP -# to figure out the address. ip and port are required -# example: 159.89.10.97:26656 -external_address = "" - -# Comma separated list of seed nodes to connect to -seeds = "" - -# Comma separated list of nodes to keep persistent connections to -persistent_peers = "" - -# UPNP port forwarding -upnp = false - -# Path to address book -addr_book_file = "config/addrbook.json" - -# Set true for strict address routability rules -# Set false for private or local networks -addr_book_strict = false - -# Maximum number of inbound peers -max_num_inbound_peers = 40 - -# Maximum number of outbound peers to connect to, excluding persistent peers -max_num_outbound_peers = 10 - -# List of node IDs, to which a connection will be (re)established ignoring any existing limits -unconditional_peer_ids = "" - -# Maximum pause when redialing a persistent peer (if zero, exponential backoff is used) -persistent_peers_max_dial_period = "0s" - -# Time to wait before flushing messages out on the connection -flush_throttle_timeout = "100ms" - -# Maximum size of a message packet payload, in bytes -max_packet_msg_payload_size = 1024 - -# Rate at which packets can be sent, in bytes/second -send_rate = 5120000 - -# Rate at which packets can be received, in bytes/second -recv_rate = 5120000 - -# Set true to enable the peer-exchange reactor -pex = true - -# Seed mode, in which node constantly crawls the network and looks for -# peers. If another node asks it for addresses, it responds and disconnects. -# -# Does not work if the peer-exchange reactor is disabled. -seed_mode = false - -# Comma separated list of peer IDs to keep private (will not be gossiped to other peers) -private_peer_ids = "" - -# Toggle to disable guard against peers connecting from the same ip. -allow_duplicate_ip = true - -# Peer connection configuration. -handshake_timeout = "20s" -dial_timeout = "3s" - -####################################################### -### Mempool Configuration Option ### -####################################################### -[mempool] - -# Mempool version to use: -# 1) "v0" - (default) FIFO mempool. -# 2) "v1" - prioritized mempool. -version = "v0" - -# Recheck (default: true) defines whether CometBFT should recheck the -# validity for all remaining transaction in the mempool after a block. -# Since a block affects the application state, some transactions in the -# mempool may become invalid. If this does not apply to your application, -# you can disable rechecking. -recheck = true -broadcast = true -wal_dir = "" - -# Maximum number of transactions in the mempool -size = 5000 - -# Limit the total size of all txs in the mempool. -# This only accounts for raw transactions (e.g. given 1MB transactions and -# max_txs_bytes=5MB, mempool will only accept 5 transactions). -max_txs_bytes = 1073741824 - -# Size of the cache (used to filter transactions we saw earlier) in transactions -cache_size = 10000 - -# Do not remove invalid transactions from the cache (default: false) -# Set to true if it's not possible for any invalid transaction to become valid -# again in the future. -keep-invalid-txs-in-cache = false - -# Maximum size of a single transaction. -# NOTE: the max size of a tx transmitted over the network is {max_tx_bytes}. -max_tx_bytes = 1048576 - -# Maximum size of a batch of transactions to send to a peer -# Including space needed by encoding (one varint per transaction). -# XXX: Unused due to https://github.com/tendermint/tendermint/issues/5796 -max_batch_bytes = 0 - -# ttl-duration, if non-zero, defines the maximum amount of time a transaction -# can exist for in the mempool. -# -# Note, if ttl-num-blocks is also defined, a transaction will be removed if it -# has existed in the mempool at least ttl-num-blocks number of blocks or if it's -# insertion time into the mempool is beyond ttl-duration. -ttl-duration = "0s" - -# ttl-num-blocks, if non-zero, defines the maximum number of blocks a transaction -# can exist for in the mempool. -# -# Note, if ttl-duration is also defined, a transaction will be removed if it -# has existed in the mempool at least ttl-num-blocks number of blocks or if -# it's insertion time into the mempool is beyond ttl-duration. -ttl-num-blocks = 0 - -####################################################### -### State Sync Configuration Options ### -####################################################### -[statesync] -# State sync rapidly bootstraps a new node by discovering, fetching, and restoring a state machine -# snapshot from peers instead of fetching and replaying historical blocks. Requires some peers in -# the network to take and serve state machine snapshots. State sync is not attempted if the node -# has any local state (LastBlockHeight > 0). The node will have a truncated block history, -# starting from the height of the snapshot. -enable = false - -# RPC servers (comma-separated) for light client verification of the synced state machine and -# retrieval of state data for node bootstrapping. Also needs a trusted height and corresponding -# header hash obtained from a trusted source, and a period during which validators can be trusted. -# -# For Cosmos SDK-based chains, trust_period should usually be about 2/3 of the unbonding time (~2 -# weeks) during which they can be financially punished (slashed) for misbehavior. -rpc_servers = "" -trust_height = 0 -trust_hash = "" -trust_period = "168h0m0s" - -# Time to spend discovering snapshots before initiating a restore. -discovery_time = "15s" - -# Temporary directory for state sync snapshot chunks, defaults to the OS tempdir (typically /tmp). -# Will create a new, randomly named directory within, and remove it when done. -temp_dir = "" - -# The timeout duration before re-requesting a chunk, possibly from a different -# peer (default: 1 minute). -chunk_request_timeout = "10s" - -# The number of concurrent chunk fetchers to run (default: 1). -chunk_fetchers = "4" - -####################################################### -### Fast Sync Configuration Connections ### -####################################################### -[fastsync] - -# Fast Sync version to use: -# 1) "v0" (default) - the legacy fast sync implementation -# 2) "v1" - refactor of v0 version for better testability -# 2) "v2" - complete redesign of v0, optimized for testability & readability -version = "v0" - -####################################################### -### Consensus Configuration Options ### -####################################################### -[consensus] - -wal_file = "data/cs.wal/wal" - -# How long we wait for a proposal block before prevoting nil -timeout_propose = "3s" -# How much timeout_propose increases with each round -timeout_propose_delta = "500ms" -# How long we wait after receiving +2/3 prevotes for “anything” (ie. not a single block or nil) -timeout_prevote = "1s" -# How much the timeout_prevote increases with each round -timeout_prevote_delta = "500ms" -# How long we wait after receiving +2/3 precommits for “anything” (ie. not a single block or nil) -timeout_precommit = "1s" -# How much the timeout_precommit increases with each round -timeout_precommit_delta = "500ms" -# How long we wait after committing a block, before starting on the new -# height (this gives us a chance to receive some more precommits, even -# though we already have +2/3). -timeout_commit = "2s" - -# How many blocks to look back to check existence of the node's consensus votes before joining consensus -# When non-zero, the node will panic upon restart -# if the same consensus key was used to sign {double_sign_check_height} last blocks. -# So, validators should stop the state machine, wait for some blocks, and then restart the state machine to avoid panic. -double_sign_check_height = 0 - -# Make progress as soon as we have all the precommits (as if TimeoutCommit = 0) -skip_timeout_commit = false - -# EmptyBlocks mode and possible interval between empty blocks -create_empty_blocks = true -create_empty_blocks_interval = "0s" - -# Reactor sleep duration parameters -peer_gossip_sleep_duration = "100ms" -peer_query_maj23_sleep_duration = "2s" - -####################################################### -### Storage Configuration Options ### -####################################################### -[storage] - -# Set to true to discard ABCI responses from the state store, which can save a -# considerable amount of disk space. Set to false to ensure ABCI responses are -# persisted. ABCI responses are required for /block_results RPC queries, and to -# reindex events in the command-line tool. -discard_abci_responses = false - -####################################################### -### Transaction Indexer Configuration Options ### -####################################################### -[tx_index] - -# What indexer to use for transactions -# -# The application will set which txs to index. In some cases a node operator will be able -# to decide which txs to index based on configuration set in the application. -# -# Options: -# 1) "null" -# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend). -# - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed. -# 3) "psql" - the indexer services backed by PostgreSQL. -# When "kv" or "psql" is chosen "tx.height" and "tx.hash" will always be indexed. -indexer = "kv" - -# The PostgreSQL connection configuration, the connection format: -# postgresql://:@:/? -psql-conn = "" - -####################################################### -### Instrumentation Configuration Options ### -####################################################### -[instrumentation] - -# When true, Prometheus metrics are served under /metrics on -# PrometheusListenAddr. -# Check out the documentation for the list of available metrics. -prometheus = false - -# Address to listen for Prometheus collector(s) connections -prometheus_listen_addr = ":26660" - -# Maximum number of simultaneous connections. -# If you want to accept a larger number than the default, make sure -# you increase your OS limits. -# 0 - unlimited. -max_open_connections = 3 - -# Instrumentation namespace -namespace = "cometbft" diff --git a/x/rewards/client/cli/test/node0/simd/config/genesis.json b/x/rewards/client/cli/test/node0/simd/config/genesis.json deleted file mode 100644 index cf8fc7eb..00000000 --- a/x/rewards/client/cli/test/node0/simd/config/genesis.json +++ /dev/null @@ -1,525 +0,0 @@ -{ - "genesis_time": "2023-06-26T10:39:40.182707Z", - "chain_id": "chain-kvYIGY", - "initial_height": "1", - "consensus_params": { - "block": { - "max_bytes": "22020096", - "max_gas": "-1", - "time_iota_ms": "1000" - }, - "evidence": { - "max_age_num_blocks": "100000", - "max_age_duration": "172800000000000", - "max_bytes": "1048576" - }, - "validator": { - "pub_key_types": [ - "ed25519" - ] - }, - "version": {} - }, - "app_hash": "", - "app_state": { - "auth": { - "params": { - "max_memo_characters": "256", - "tx_sig_limit": "7", - "tx_size_cost_per_byte": "10", - "sig_verify_cost_ed25519": "590", - "sig_verify_cost_secp256k1": "1000" - }, - "accounts": [ - { - "@type": "/cosmos.auth.v1beta1.BaseAccount", - "address": "gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj", - "pub_key": null, - "account_number": "0", - "sequence": "0" - } - ] - }, - "authz": { - "authorization": [] - }, - "bank": { - "params": { - "send_enabled": [], - "default_send_enabled": true - }, - "balances": [ - { - "address": "gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj", - "coins": [ - { - "denom": "node0token", - "amount": "1000000000" - }, - { - "denom": "stake", - "amount": "500000000" - } - ] - } - ], - "supply": [], - "denom_metadata": [] - }, - "capability": { - "index": "1", - "owners": [] - }, - "crisis": { - "constant_fee": { - "denom": "stake", - "amount": "1000" - } - }, - "distribution": { - "params": { - "community_tax": "0.020000000000000000", - "base_proposer_reward": "0.010000000000000000", - "bonus_proposer_reward": "0.040000000000000000", - "withdraw_addr_enabled": true - }, - "fee_pool": { - "community_pool": [] - }, - "delegator_withdraw_infos": [], - "previous_proposer": "", - "outstanding_rewards": [], - "validator_accumulated_commissions": [], - "validator_historical_rewards": [], - "validator_current_rewards": [], - "delegator_starting_infos": [], - "validator_slash_events": [] - }, - "evidence": { - "evidence": [] - }, - "feegrant": { - "allowances": [] - }, - "genutil": { - "gen_txs": [ - { - "body": { - "messages": [ - { - "@type": "/cosmos.staking.v1beta1.MsgCreateValidator", - "description": { - "moniker": "node0", - "identity": "", - "website": "", - "security_contact": "", - "details": "" - }, - "commission": { - "rate": "0.500000000000000000", - "max_rate": "1.000000000000000000", - "max_change_rate": "1.000000000000000000" - }, - "min_self_delegation": "1", - "delegator_address": "gitopia16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpervedqj", - "validator_address": "gitopiavaloper16xl4vt8tmuw87f5c7vqn6wgvw9gu5xpetkaaqf", - "pubkey": { - "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "R8BO1pHa1IKb1wBUtmLebP/MQs9JEtb/z2CjRiQFrqI=" - }, - "value": { - "denom": "stake", - "amount": "100000000" - } - } - ], - "memo": "d10c6e76c940ec22c1ad97e8fbd2d2356fbdc7f4@0.0.0.0:60147", - "timeout_height": "0", - "extension_options": [], - "non_critical_extension_options": [] - }, - "auth_info": { - "signer_infos": [ - { - "public_key": { - "@type": "/cosmos.crypto.secp256k1.PubKey", - "key": "AvqWBRXATV9M+ddn/uzTxB3QoTliBUGK/9vcY5wNvsVN" - }, - "mode_info": { - "single": { - "mode": "SIGN_MODE_DIRECT" - } - }, - "sequence": "0" - } - ], - "fee": { - "amount": [], - "gas_limit": "1000000", - "payer": "", - "granter": "" - }, - "tip": null - }, - "signatures": [ - "TEC5QFohxPWj/7LPeV/chRuu8hDP6IM28T475jNR6m4MZC18ch+u6QkzQ/WTdt4HuPc1Bjvbv57HMc3cxK35kw==" - ] - } - ] - }, - "gitopia": { - "exercisedAmountList": [], - "exercisedAmountCount": "0", - "params": { - "next_inflation_time": "2025-06-26T10:39:40.171879Z", - "pool_proportions": { - "ecosystem": { - "proportion": "30.000000000000000000", - "address": "" - }, - "team": { - "proportion": "28.000000000000000000", - "address": "" - } - }, - "team_proportions": [ - { - "proportion": "50.000000000000000000", - "address": "gitopia1k9pvyj845y9a4m4vuxx8sjq5q28yxym520fh2x" - }, - { - "proportion": "35.000000000000000000", - "address": "gitopia1njn3grh5ar4ccapyp4uehuq28wpk2sk5heu7ac" - }, - { - "proportion": "15.000000000000000000", - "address": "gitopia1d5r0ql0pg5d8xfs5t0pmn7dl72m2zj2wchkfq3" - } - ], - "genesis_time": "2022-06-26T10:39:40.171880Z", - "git_server": "gitopia1s9qkkznqqv8p838fuyzzfaxu7ckhy3v8cw3pke", - "storage_provider": "gitopia1xp4e40rd4akt882h2pxl8cw8ygxjxndu23c5wn" - }, - "bountyList": [], - "bountyCount": "0", - "userDaoList": [], - "baseRepositoryKeyList": [], - "memberList": [], - "memberCount": "0", - "tagList": [], - "tagCount": "0", - "branchList": [], - "branchCount": "0", - "taskList": [], - "taskCount": "0", - "releaseList": [], - "releaseCount": "0", - "pullRequestList": [], - "pullRequestCount": "0", - "daoList": [], - "daoCount": "0", - "commentList": [], - "commentCount": "0", - "issueList": [], - "issueCount": "0", - "repositoryList": [], - "repositoryCount": "0", - "userList": [], - "userCount": "0", - "whoisList": [], - "whoisCount": "0" - }, - "gov": { - "starting_proposal_id": "1", - "deposits": [], - "votes": [], - "proposals": [], - "deposit_params": { - "min_deposit": [ - { - "denom": "stake", - "amount": "10000000" - } - ], - "max_deposit_period": "172800s" - }, - "voting_params": { - "voting_period": "172800s" - }, - "tally_params": { - "quorum": "0.334000000000000000", - "threshold": "0.500000000000000000", - "veto_threshold": "0.334000000000000000" - } - }, - "group": { - "group_seq": "0", - "groups": [], - "group_members": [], - "group_policy_seq": "0", - "group_policies": [], - "proposal_seq": "0", - "proposals": [], - "votes": [] - }, - "ibc": { - "client_genesis": { - "clients": [], - "clients_consensus": [], - "clients_metadata": [], - "params": { - "allowed_clients": [ - "06-solomachine", - "07-tendermint" - ] - }, - "create_localhost": false, - "next_client_sequence": "0" - }, - "connection_genesis": { - "connections": [], - "client_connection_paths": [], - "next_connection_sequence": "0", - "params": { - "max_expected_time_per_block": "30000000000" - } - }, - "channel_genesis": { - "channels": [], - "acknowledgements": [], - "commitments": [], - "receipts": [], - "send_sequences": [], - "recv_sequences": [], - "ack_sequences": [], - "next_channel_sequence": "0" - } - }, - "mint": { - "minter": { - "inflation": "0.130000000000000000", - "annual_provisions": "0.000000000000000000" - }, - "params": { - "mint_denom": "stake", - "inflation_rate_change": "0.130000000000000000", - "inflation_max": "0.200000000000000000", - "inflation_min": "0.070000000000000000", - "goal_bonded": "0.670000000000000000", - "blocks_per_year": "6311520" - } - }, - "params": null, - "rewards": { - "rewardsList": [ - { - "recipient": "gitopia1k45rtjtgq6gvgxcnkcvtkrgm2zh98dxatv2mtt", - "amount": { - "denom": "", - "amount": "0" - }, - "creator": "", - "claimed_amount": { - "denom": "", - "amount": "0" - }, - "claimed_amount_with_decay": { - "denom": "", - "amount": "0" - } - }, - { - "recipient": "gitopia1fl4sjt3kw82xnk27kx6k47hgptxawfgvurqrm5", - "amount": { - "denom": "", - "amount": "0" - }, - "creator": "", - "claimed_amount": { - "denom": "", - "amount": "0" - }, - "claimed_amount_with_decay": { - "denom": "", - "amount": "0" - } - }, - { - "recipient": "gitopia1hzc4955wy5xqlj80fgaet6lmtzh7hmvh9w0uw5", - "amount": { - "denom": "", - "amount": "0" - }, - "creator": "", - "claimed_amount": { - "denom": "", - "amount": "0" - }, - "claimed_amount_with_decay": { - "denom": "", - "amount": "0" - } - }, - { - "recipient": "gitopia1zllyryn7w7z26877dscu668achw3hk6v57jwna", - "amount": { - "denom": "", - "amount": "0" - }, - "creator": "", - "claimed_amount": { - "denom": "", - "amount": "0" - }, - "claimed_amount_with_decay": { - "denom": "", - "amount": "0" - } - }, - { - "recipient": "gitopia15rn7mft3nxdm5aeflunnau6yg8uafmjy72mxtm", - "amount": { - "denom": "", - "amount": "0" - }, - "creator": "", - "claimed_amount": { - "denom": "", - "amount": "0" - }, - "claimed_amount_with_decay": { - "denom": "", - "amount": "0" - } - } - ], - "params": { - "evaluator_address": "gitopia1mnswtu0ueq7xw90u060ccfujvk04e8rv9vc47t", - "reward_series": { - "series_one": { - "total_amount": { - "denom": "ulore", - "amount": "1000" - }, - "claimed_amount": { - "denom": "ulore", - "amount": "0" - }, - "start_time": "0001-01-01T00:00:00Z", - "end_time": "0001-01-01T00:00:00Z" - }, - "series_two": { - "total_amount": { - "denom": "ulore", - "amount": "1000" - }, - "claimed_amount": { - "denom": "ulore", - "amount": "0" - }, - "start_time": "0001-01-01T00:00:00Z", - "end_time": "0001-01-01T00:00:00Z" - }, - "series_three": { - "total_amount": { - "denom": "ulore", - "amount": "1000" - }, - "claimed_amount": { - "denom": "ulore", - "amount": "0" - }, - "start_time": "0001-01-01T00:00:00Z", - "end_time": "0001-01-01T00:00:00Z" - }, - "series_four": { - "total_amount": { - "denom": "ulore", - "amount": "1000" - }, - "claimed_amount": { - "denom": "ulore", - "amount": "0" - }, - "start_time": "0001-01-01T00:00:00Z", - "end_time": "0001-01-01T00:00:00Z" - }, - "series_five": { - "total_amount": { - "denom": "ulore", - "amount": "1000" - }, - "claimed_amount": { - "denom": "ulore", - "amount": "0" - }, - "start_time": "0001-01-01T00:00:00Z", - "end_time": "0001-01-01T00:00:00Z" - }, - "series_six": { - "total_amount": { - "denom": "ulore", - "amount": "1000" - }, - "claimed_amount": { - "denom": "ulore", - "amount": "0" - }, - "start_time": "0001-01-01T00:00:00Z", - "end_time": "0001-01-01T00:00:00Z" - }, - "series_seven": { - "total_amount": { - "denom": "ulore", - "amount": "1000" - }, - "claimed_amount": { - "denom": "ulore", - "amount": "0" - }, - "start_time": "0001-01-01T00:00:00Z", - "end_time": "0001-01-01T00:00:00Z" - } - } - } - }, - "slashing": { - "params": { - "signed_blocks_window": "100", - "min_signed_per_window": "0.500000000000000000", - "downtime_jail_duration": "600s", - "slash_fraction_double_sign": "0.050000000000000000", - "slash_fraction_downtime": "0.010000000000000000" - }, - "signing_infos": [], - "missed_blocks": [] - }, - "staking": { - "params": { - "unbonding_time": "1814400s", - "max_validators": 100, - "max_entries": 7, - "historical_entries": 10000, - "bond_denom": "stake", - "min_commission_rate": "0.000000000000000000" - }, - "last_total_power": "0", - "last_validator_powers": [], - "validators": [], - "delegations": [], - "unbonding_delegations": [], - "redelegations": [], - "exported": false - }, - "transfer": { - "port_id": "transfer", - "denom_traces": [], - "params": { - "send_enabled": true, - "receive_enabled": true - } - }, - "upgrade": {}, - "vesting": {} - } -} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/node_key.json b/x/rewards/client/cli/test/node0/simd/config/node_key.json deleted file mode 100644 index 9d9d74e4..00000000 --- a/x/rewards/client/cli/test/node0/simd/config/node_key.json +++ /dev/null @@ -1 +0,0 @@ -{"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"NNalKU5c2+iVmh+uIKgHzvI0hL1keGtWMG8EfbIKvG5B9F1z3E9XeQODuoEPxc3sQYO8NkOyOckghGXvU/2zTA=="}} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json b/x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json deleted file mode 100644 index 58e12ed3..00000000 --- a/x/rewards/client/cli/test/node0/simd/config/priv_validator_key.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "address": "ED9C40AB29F5707AB5124EF08A9226B3C6D7085F", - "pub_key": { - "type": "tendermint/PubKeyEd25519", - "value": "R8BO1pHa1IKb1wBUtmLebP/MQs9JEtb/z2CjRiQFrqI=" - }, - "priv_key": { - "type": "tendermint/PrivKeyEd25519", - "value": "C7Xz9o991t1Y817o/PkMqzBXNpcL2MtBlSbU7EcRa35HwE7WkdrUgpvXAFS2Yt5s/8xCz0kS1v/PYKNGJAWuog==" - } -} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/000001.log deleted file mode 100644 index fa8347f1ca1831bdba5f77523e9cb641ab2a97d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11493 zcmeI&e^^ZU9tZF_GgHk@rHr(sGz}Xf=A1KU&Y6VN(l47fH{?h5oH^(8gNlS@V`H%- zMXt)mZ9`d9gp~E0iV`>3tB923XQe15L}V#252L`Vs@RKN%2gJ9n{2K?xi<89Yv3rA^Y z(7m0m3B}_5?o;9hl%A=;rbc-9gp4Y3WNsKc4cmgbb=ks8Dva2CV)?D1 z+ndwR--+CQVr`gCS@!dr={rZw=yD!Zmn{OjY!PZwx7}g?u;%&8vLqf2k+If?^Gii@ zBs?>oOlSu7%WSX+GLtTJ)Ul0dzP8{gm1F|nvl_#D=~#$w&uI62(3YFEct7KU=W5?V=zPGD6Pa$MvWi)z2P>~7u9#vgvwLd;WCHspQH<1JiL~BOY8;rugz|FbvQUW zH8KL8MOQ~ahU}V z(&es4Ow9{X&z%w$63PfgkTEpv?R7eu59x8+fZ~PN$zKX3#X|9B!F!4q9~7_uOw^{^ zb_S8g^p)0mM8dBr{j_kZCTO9>!P;Y1-}S4> z!M}gDCI4h8!z>EomW?Q0$-myZ)^u0A&7dNz#Nhsg zFpJ!{vK`}3Ym0VQV;C0;&Ax>D1HON{aC^Fx`+(B_75C^hrJrIE6-=vDDkV-LYFbXf za)eg01fhhLB&xy@5<%5!6r&Njno+88Tmf1uR7#pq(F&MiA*4)@5_ORWiMc(4(%(~y zd->c2NrgN}pSv6lR>)CE#MfZeJ=a9$|3Rz_L=7ES9en$66(n;wb8b$Br{{`?$!8a> zY#JPJux&J*GUNHEKGm}$suv}-=;t&YUaikNu?)qkZ`*9O{>wRVPZ?#XqLOud?gih8 zFpTeK%>bNKR_izMAwzB(pcQH-eYlwpq)|6k z`CGbHpS@`7EDLljiU@DqWn8z$;!f&sE3QvXZa??=aJ5u?V^Y)ozt`t1>^*Sel;y8N z)7hV_Htac6?f=N*y1nVVkIYq14W-trq?!jtBdPF=m+D~VpD*FyONWiJdzq|W+V|Ix zn1+U#q+;A6gJuZo#f>HK3ccIm)itzb^^&lHUB70f;C40r#_!5}RunUAD1V(erg7HH z7u8y?x*Ef{L}>OU-XD4({dDne$(=9&fMvuzdkt7LilQt|C~!cLT1BD+PGKa5;wZ^r zFrk1+l!94AttJ3$2q8xZLQWDa3u9`GVwDUEq4wExUBTmsF}G&`R*x<470LD@AXabg zdNg98pg0ILVs+0&=~S#|TCp}?T?fe=O2bOGmBlZZ>33(S?H!9p)=vE74VisB+(-NR z%Di37&sG$SZOSvWh}}n4);|iK(0__&RY0Jw-`?DS*}t{drScuU&MX3ANw^DoM=U|Z zLtl+peYkCaSc*=?5(2R}Gu4RIJ$r*lL&y}5#n0VUU*%SM#U*-Yy!9O0Ds%I3h{~U9 zKVWBT^XDU0pE4Zj=tXYj_zsaQ=NVl`yu$3QZNxOyMY z8JRD9bjoKwIUdMH=@=df7?o^xvi&a)2itLJw>Qa;M)_13*Yow3=ZBx;k%{px9_ion z+NoRPa~E%WY*0F`CK8C%kGr6E#1gt4u(=Mz>d$Qh#KJliO9zO>nW;vs?%5ke+FofL zuwc`IIq}qz<83>2iYLvQ$X|LtvEaw;=c`+w!8<=6u|^U<=>O1KS@zwEgR)g+jdv4E zZ(ZAN8TIYriPgPNJmO2TuoXK9XZl8B04wrNJ5sdrKYb| ztggoRpjcnx4aE9%@h;GVrkEP_xlFrq+}xC&Dd6pSJ;hN_e>PS7eEROO|9f)Pl?HP#GV+(v-)>sE1mIZe`8nG}S zmX1cO?zt$PiuIyHtk$cy;~<$s`=)lI2ceH=HQqI0Hy&-X8TNMgXP(aX z6`NiOuPe~AO{)q5Vh!dl=pC_i@zBtHK&)@LZGc#Kr()>=u{bl;h}AuNgGfh2$F6ou z6HMkaRYw-BkFV6Rz0}O#b*_KdoX5QE3?BRWhy_iruL~c1I&Bh$UfOP+d&4zw)e*j* z$37%FkM1RW^nVbmM}|@>)`i-i7rsQJ=HIXTY4=il^MWZtp7;LPvm^JL#5Y{|xjpJ+ zejEzKvgXDTh=ps#N=@JW;QaF$%Z*A-ST-4mB2vXms=}M6hCDOaFWz~Y@2eH7t1&(( z)|Yq#u|8eAM}Bkv7a-OU?%8X^B9$afDi~aivM5I4w49|8N)5BDLavr;KD1KGN$_<$ z7+13xrc|;l_yPt=$w?BSz>7hQfpBy<)fb30l-n~9tH&02ne(9pAl5MMdNg9;KrB6t zSlx3`Iu)y}L#&8`GbxbF0UI@8eF3pyqg&<(?Do7pf3En4`^1WemkXCY*t`3hzNO`w xfr6<6BnkKM;6Hp%GVJj%Ym=Qin`(Ptzh#;i3o5RuP;ST@`Ry(5<1zX8&zJF5Ty diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT deleted file mode 100644 index feda7d6b..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOCK deleted file mode 100644 index e69de29b..00000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG deleted file mode 100644 index c5c63c6f..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/LOG +++ /dev/null @@ -1,6 +0,0 @@ -=============== Jun 26, 2023 (+07) =============== -17:39:40.184903 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed -17:39:40.195982 db@open opening -17:39:40.196158 version@stat F·[] S·0B[] Sc·[] -17:39:40.199921 db@janitor F·2 G·0 -17:39:40.199936 db@open done T·3.936875ms diff --git a/x/rewards/client/cli/test/node0/simd/data/blockstore.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/blockstore.db/MANIFEST-000000 deleted file mode 100644 index 9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD diff --git a/x/rewards/client/cli/test/node0/simd/data/cs.wal/wal b/x/rewards/client/cli/test/node0/simd/data/cs.wal/wal deleted file mode 100644 index 0c00d567ea7f0a0dd0d4f7105372a6f216dad216..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11013 zcmd6sc|2768^`C&!ZZ>Mxsqj?q*7A4ZjoD}NJ^qrT8K!Nic(!fmh6Vmpt8#r3Yn77 zMYc+Gt&u&IWh`aL^7|eK#gISZ_iFwQIC$`fjDbi?C70)k(dM#A3%gSh%W{rL_&BH zxb5)R2NK;$An6ZPxfRgrJF*4K{?^@+ZItq^>QRc7j+nXg7oo+q6b+&<9wL%V<#1xw zUrNq*Xa{nyZ(RB}s!uL|VN?T*kFj|XhH#+fX1^C=bzHoI%6z$_RjQUG!Z31YDmbEqYm(M`+w`n^)q=aydrK}qfWrh-C;g{OD?O?4oJ_akRv@X zY79}L77=2U)qR(gWzv{pG{B3>w`Tfr&6>Zatb85L?IthMJ;%Xcfcny06GmdR|d zJpAu_=i5&m%y8u?-Ie!4#5HF89@;Z13}#eZ;BLDu8?)-mxvR-U6}q#RNMcSI{sa-l zhazM7fM0yz)cIySb>Ek6lnL|Mk{)z*iuu&NWMZak?p<>gh+mJNX~tI|PKSt3A;M!w z;t@nhguw7aU~A++zLkTu17P`ZtTw z$;Fs?mp4mVi5NtcWS*|nJV7xuzAVT)u)OZduJ*8bwfsh_W!GUMA7AMNZLJt@E9m75 z3nDLp2N+2FVMldOnHU+JF^jmq*LQ*olmQ^0{L;+JV2De zG?yHse@irWHyJ$7lc4=CSH3Mt;3y{MOvjEt?p3En8DXnP8B5WjAsF8LN7rc(+wnq< z`Q4b}ji4>zaTjtUpIH(Y5x9U09OEv?k61wZC&CqIxyH4Of_vA9STY(9*|j8n1eaD4 z=8xv0=04^gu}1j+9o$W_0heeI%p%mIoGuhDD0hU_m+Tv1}qW?Fae zy<6p~W64-`rv9djsrkF6vo3G*_7^r2BsFvuQ7AMO_=()svE9iUBHq9e?QjGeoahi1 zkLK&c5{s||Ps|iSiUvW7016(SS;Pg&V-cxM#d-aJHe0OWvAS&rRRf9!`9{~u28WAV zR~*v!_TJy0-Y=Q+^oJzWEJ7FiWXeeo8vf62BF9|YmrFS z!=s5)CL!OCCry_9)j&W1GSj#xx)I#Lu8EA#Cq1sy2AX0sM+o8`rMnrZ-;Ap%uV8fs zL`;JSPaugDh>!#$1Pvo(cJ@(pY;kD$wKmXn>FI`QiQee<=}*@xVV`&#p&B_J&H8Bn z^xdn)4`j#2o@g|D#`%KA9U_!ZCnd)R9OYl*ymKFW?ltKW;c_c^4OXaQLog3$4353g zd>Z(AojLYYFN{JYWud+B1S84=dVzkD5$HKFB4N1Y`m{!5JU>yRs%q5|oO#ivNBB%a z|7M+Vjc#$ShGW(Z7Xy3QXg!H`Y^bMKH%K;Ai~5MXRW!I)uFWo`9gI8DX#C!qU7HZ? z0~%XCZUi-^668P35i}D=3Y0@xftY(-ockoy4jKUoy87zbmI;nB-a0uVj$)<)$@8~O zaA6X-SJwzgGCscpg~y)AssE;yV>mG+h?^f<40Q0oB05^pf1oD(NRDAf32RwoKTzk4 zs}mwhfjSu?K74hPCu$8G4>s)x0382X<2Ha zYR$3=UrJu^CN@DXH2SX|s$uVENEXESNrh*BEJT~4V zGX&FQc9v9v)?ZP6LZ*=8^BKEmIs^kDGN^WTRiR|plmdz!u5 zX{HMW71S-iUATYxpQSGM9yaKIR4J9=F`Q$XJc7U?&6@FK{b^}3;i$>7zZwh(PG*|; z)f-%+Cv0azE#<~k+c|=hK8FLfKn>$$bm!wdfqGJkLYx>FC$qDXqGP4#WkU|rrszUj zpS2!qNhgPMNCVifsj+I9KqLRb@B{MPxSdhb_?y%+c>B99JsdBCNjy!rTX@`0WFnKgM^da~ICyrQ*g+dmrbSgfvE zcgBE4FDmQIG5?{q2(-R>*CEgtj1$BNN{Nj#f)flAPH+$Zs|I2iCy1Epo9BYy1fwKg z-8R9|qKYba1Si<3a3ZHcy9@L%PI^Xg;uvHP3XkE0)=U97!IGf;eC_a0As8o!E-0H0 zYQi|dGUH@}U>z?|!#F|I2{$`|nh7V^NjTBy;#o{%G2axI&Htt~uJz^pfD6m0Tu)z+ z9xhl)U%IOu!3oKSCOGf${^tvdI%-< zAsPG3{qfbVg^1T%L-DBjsTm$YssXTREy!D{ro?(Uhs73Sb zoQvNadt@Z1toYIXYUzSA9-oIsae~}8!^YihB2KVB!wDAP1UaaY8G>;#J4-4-GSLcG zxzw#JH7~1H%{Smc+_35v26@*JS=XGiGD|`jUw$8)IG?p}3E!hvcPRJ|k$~PoMHWTX zgJ$uT(Gsq_HgN)V=()!U2FA(k82?k8{BYD{*WbsC`-1j;Fp3O65LK-Z-zFB zL2ZvYi%*b5_Ut2DbnEz}Ig&kd>a5G@mhoZTrBTxT>R{ zQw>hL;@FeUhzIkf4ZT&7726tHONa6*Zqlwmk=BuMD}-C&@D2Nuy$J2F5`cwlkNIH9QP z!haaRI6>5rX_-LHgcIB(oH(iw<@J214(6L{X;c`c8%dzM!cH5uF6vKx$QWN)d%V04GS*@{SlUfD^u4W8I`<(v4w^ z%-vsu{q!Of|T9Gs7Dd$hz(l$@+ z55X1f)>J@WX%5J{eEZ*qUPw6P_rb~9O()q-GHT2BSS66Jmv`0&l)WptE#$iWl0w76 zXWcn&bB_}&jFZ_h{--$k;i$>7zZwh(PG*|;c$NCr3EP=qALldGc8=hryY@sKP{TMG z-ID@XJt;*YP8^Jr*;z@^u~Lo_jexrIpK_ zt85W=UuV2+Gxl>yjW>5A7k@;@3h{yA|BT2jd)~A}JHOUSRKlO+z?Xo=;P68l%S~#X zBK*d2A|bFgVS*8~23SAI2=ts7!FW^cJFO8zlp&4}7d~lr)^neBd(Z|Bc8F^Cb~WqjIwN3BgS&rJykwCx{V_ zB`>H5PH;>(q4*N&ff&ZgsQ85mL73o}kSth&|#HH;HP&2aYyY9^ep zOu`A(Z+Eb1AN#V+`pv4(4tzFI3h0+I+B~S|o6kX&&yVy&aB{~{KrG4WFhl9d(x#;C z?v?_1V!m!>JGHRkve|U>xwQZ%NY%)!K|g?#x~;1@n>#|bY?twXvb}f&)vE-A==n|J zfm~)5@rLdmIbVbQuN{=%`?f{lMU^bq+a9GmUe@J3JMOcJHE8WKWqECqY&wb)$$beFSX^`sPqI9Xtv z%+5-Rj+LSgbl#peMOhP^ToR2o{k6r)t9Et#=5GV+l+@%@jYAsg?r91Ck+o7Yw`lJ$ zbiQfS5tw%f|70s8_cHlPg(Z0x;bZ&9Y-zkzfJF^x48{r4SjM3JUFPr`$H~CJ<%kJJ zOa>WE3qq3fAvv~g~z2H z;|H)$J2N|vRw(HnzPYphvGRQ<-Hv0&2|TYX+VWWcymS0}-6CFySPi zkPCkC1mgq|QyG+C1Sc#hE6uegIBNZ|J`8b`bt;@xDy)V7<$!V0KZ29;#wt*F3@1gM zwE!oqB*+BHzXEhHP7qyf2m{oF2bPr?Cy5Y0zXjv$!VS$sKY(ltMZ5R#5Qj^N})>owE94X)>!+x`i=BEz4jjzt}a@yc8q z!+neX>e`SizzI?{D77jW;G`p6)!)vp;6lG(8K=s@)a8buZPw3UttxMQ?Qqt_m{*gQ zWiS}u=k0WZ{J^T7eeW?NIV_ioae=3A{6$Fb+ZJe<@dfcwoFMmgboCCMh!fVI;e-|7 z1UaaY8G>;#J4-4-TI23zw<{L27p+^DbkXTnEl#Z93p(`qVzU#UP$_Y!)4vZ+pu_EL z7Q*SVyCpXi+~&`!P%^llgw|7umT=G3S%Cfcf4~U~jFZ_h{--$k;i$>7zZwh(PG*|; z8i|sO3EN36{0O$5c{@jN65d#e18Nv2qx1X?R!>S%h?5n@$?UA8=vb-RuO(sArf77T zxs>Z(i+hc>&55RrTVCGA*D6=0go~^fF4(?B<&;k8%Z>6|wY5p17v1GOEEG05ZorCq z6b&!-k%<#XST6&u%6iKI8iR3yG-mDgHk>*9#&NQn!x4Tt_T7k}SXe*F2=ts7VV#!| zKCKaw;yax3Ho3U%day>a+VI{JtGmhyH7zgmuYQOMD`687vKPc0TtcKaZZwWOo~FC* zm<&o=X0fUt>HX#m;+nr5*fq@;{0SO^aWZ4UMq? diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/evidence.db/000001.log deleted file mode 100644 index e69de29b..00000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT deleted file mode 100644 index feda7d6b..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/evidence.db/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOCK deleted file mode 100644 index e69de29b..00000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG b/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG deleted file mode 100644 index 992b998a..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/evidence.db/LOG +++ /dev/null @@ -1,6 +0,0 @@ -=============== Jun 26, 2023 (+07) =============== -17:39:40.232971 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed -17:39:40.238185 db@open opening -17:39:40.238649 version@stat F·[] S·0B[] Sc·[] -17:39:40.241871 db@janitor F·2 G·0 -17:39:40.241883 db@open done T·3.687792ms diff --git a/x/rewards/client/cli/test/node0/simd/data/evidence.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/evidence.db/MANIFEST-000000 deleted file mode 100644 index 9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD diff --git a/x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json b/x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json deleted file mode 100644 index e948ba54..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/priv_validator_state.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "height": "7", - "round": 0, - "step": 3, - "signature": "NS9Fick4i41KsSw13Wynun6eS0be6M3KeueppNMLHx+FHgNWGxKY5DduqF69ZTBdPABiPBlQmSDfO8ASLD2GDQ==", - "signbytes": "71080211070000000000000022480A20A6ADA4E7C3F35A7D0FD2BC1FF40C0880A60A77E17CF5566FF20CAB0AA2BF025E122408011220C7EC7F73F9338C70E6ED7BA4793C1CC953040055AB92C12EAB1497F0CE7FFE8C2A0C08FAD5E5A4061080C9C0A501320C636861696E2D6B7659494759" -} \ No newline at end of file diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/state.db/000001.log deleted file mode 100644 index d4da420be560b2975ad747efadfcd689dbc30f44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43091 zcmeHQ33wD$wx&Z!LW>YvWKcn&@wt-F`x3<`VT}Sp34KaG!Iks=F)QP0|F^iB{|PQFZUB zbGLKP{m*}IRW5w!8t%&B7E3SfhyPlvQJSMAMjFSHpEb_2>vtiUNznENyUXEn*ExK3 zE?2Nsg3r5=MBty|02{qOf5m7qCDT$D(Ju3*Jnm){>6p@e_o6f4We% zE>4Fh;Pv~klqA726e05>79%L(P@K+$S zkYZ34D91ZVCS_l9*_SWfBbbsXv?4 zPKQWdl0yP5s(px!!p5R7RE3FTwES!p8|>a-seFkh1t=-*R267lOOPb5a56S=p8X7L zEo6>@;u5@6kJYbFI>WR~IO`h;i5{a#V>2mAq$R9-l#zLXA)LN6>q*K1IiaKi{)m_K zC)+q*Dw<3Mqlz~Tbx+b%TPr-OcdfmFQ&<)>X*zL0!!-20U9CFZrf4G$w+pb(u`cb{ zmw3U8OuIh5b1*YZaH^H%`xz{e3eg-9W@)hBIdezaDLO(ZtQ_i?BZ~^HDqsmPFs&O7 zplu}2aGDY@SUv%*;dqL6$b6jUu-6jU*^r8st^L6A=0V*wVKAIHZItuo#pW)6Mo5Yv zu$gRw;2|(3nE$xND%xa(A}B_ZMJB9h^UG-5B%eqq;2L1s5Lm3E9w&OoAJilamJ||1Uf?CLXpv44 zBKjDR&UcIc5K8kLx|CAlo{p+j50GNy7$p*^5RPKr0`zf)Mur5QXSJ4RYpbQG9YfJ9 z9YrS)$|+*F2#;e5-7kpXig-hHpxW5Aii~|oFn6~Q#rS;w+`Dmz8c&|oD23s5@}E<$oP!s-fc;r0B53px4D4@N|lZb_muj zgO}A(DVQn@3sthCyU&jTwhxvIeAZE)n{heY0)6PUbqQyEE+coLOMpw~VD0Hl5Xw!! znkvz3B%}|TzDj|P{3srP2g(n2krK$_!4G%ospU99v_+so;HhB^#O^5^K~l^JGGDK+ zIQ7$%@L3=@(yofzn*)t!JB3Mvv+1m`Gu1dlPE4l5(?(61E(OmVFNa69yT-OQGt(!C zZB3)~l~?K7`KaA(Ux029S5O!&%IP3|wBJVtJr0_5xkx8L1^sj&5~f^~%kA~S1?i7? z&H&ef|26m=PLH~*0?vR*o5wG>=Fn*w;0p{#h*zynogpK^fpZ}+L|L7bC1qexaZysI z9CjA0%iwBrGf)K+EJGrm=%g=mt8-y*j!Cwi+t@s7Ov}vRlv5~*8>O_jq#NDS`4*OG zoH6mNQNbiR+nbu2lx9xF-b}!XW2g%kW!1jLWazVVnkG&SO*wnq_|Ukf=J8`&phI!K zbXaaj+V#aCyI!I11DKYBCc2+S6CpC{q=ZY=S7GAgI zqt0!iWX~jJ8tH6oO@@<|*1pJM&4gsZ*Pl_F#DNShlF zr@Fvl;A9wgSE+FiIB?vd1>n>H;v#^}Hb)A!#pCTf(rL=&Bv$(1_mP?qmH!Tp*;?f@(^)35OBp@LYjpK1DR;LHO*0q%T0Py9GXcO zjX0CHaqZq{+6vTg9Kjnz0Ejiy0K;I)h#BzU`7H3TfW`~&joM@)n$LzCV_q0w0~yO_ zYxhP8nULc7e7rN}ih#nPZg~Mc!6+j@^w5lcOOo?)hD4(*Wo$Lv81oPZ0FcP*&=ZU@ zfYua4ZPZ(1zL@L8yqbKPQ4+@>FN1f++*FKbqQpep8t0OScpH`t!ix$9QI2}IyAbR{TjdxmDKVbaqKA^mElJCKsH0p7 zRk#L5MP7j=3pf(IfZ5!J1>@Ytd%f4RJZ*AxND_Eh;WLF#L97AEjJod4h1Ed~VqmoL z%Ckv@;{_FB!X#FQWEsT!I&+gx(Vx(=B}BR!`=SkRHrW^+8W%U{X+DLqh^ifR*?|X= zc$QBPWQ^f33U&DF01<&d0?Uw9;)7ICdI(4zf{g(sVQ+|lLD2w`aIMs9+7V2sybwo| z>KbZn1kdTI9U6k|$Vv-@9Mdy3{rRj8WfH}3H%pV2@LRcc%n`cr=fjXLtzx5g$kIQy0+*sCx+TZKb)-jS&Bu# zyzWR#6t|2Bo;z1wxXT|;`{EvdEGo!pA{B`y6|qfBcn!+_ z&D#@eCp|&0HVK%S`(|8H?P z8r1(WqCx|z*UfEUwiEvJBs>3OvV?AQ}~JHjjK%HP9`B*G+nVsA?f0GA$T+Y&PT zJ*VCaR0Sp!C)^s%1jLVKWiHw&F6RJdS& z1~-GC4cXmnb?-&rBI(#03WxX?pVmFIGvM?Lz-U_Ah<+$i^HTQ=c)!FF=XixP%c%!&u@w7 z3HcTmWr=iA5(Iw0tzvwjhNaNkG7wQxM2nR$Pvc2)sYsXLCMqOoo4*~_`r@5pT)H9B zOVR}!i%^mx0RN2)`#iWw0x6~0GT8Rkb3S?Kre2l`GAglu-}u!&DjeeJ5hzIxHh&AnP43U6b-d!g~ACfjS@ zy>!7X6OQY%>gK_e?SP)Hwfu9yk&g}QW$E2XEnOA0md|R3EtuWQQfU+$nByL%splNj z7Wu3$>)|yE7d~mN{Vw~n4E}qyt$)q$uBftA)+}6a9lUVi8AtWCR%Z_`^s2So{OsyG zp0rr{81>h{WRPjldS`Fzq1K9;Lu}PR2zlyV0b4(aK^ZQ4Fr~uQ>*PafcKl`gtyQ&a z*DpQS^`rJ_!;f0}BujHQ24I#YJnY@o>l#;lJ!IhZUw!iIb^Ig8ov>=m->8+>Oulv5 zbw{V0*Uo6|QbMpi)bFZi-mA1!8HdqEgh{5EmIP#~B-KdP^|g(%)mdu`?W7YUIqJ&3 z*0A+ZJZJ%X;Ob;V+pp2DMO%Fij=N)SM~Y2KkpRnzN?I0_IF*z#j(EZqR}ukW`W;bm zu*G(`wMvV79jR@!wQr7N z$Ty)UwNdp|UE539dP|IHx0>6znUt$?_Ue_- z?WnX=8=c+ZhZ)B3Ez}rYUO`ObhG^mO7wd*Xw9wZmRw`O>buU_|xOCBJGcT#ISdIE~(Za6E zPNRjv7W*XYu-La-uXuj#J0CuM%;wSb=}#vfeq-xH4_`>tr7rvQ*dyP%@;uvdH5S`2 zsj*Mp!cSjm`!IadKn6G%+n#3DghbG4NyA7 zVVxtza#fZQfOZQsl^1}vCVgHBj*7NLd`Vv`>!t*c45z^5pcoGZNh$!lt#Vq~{{XaX zy(I>tTg~l!Fv?YFC9MOrgJik)X^cZ|8)xmCogagg{dgMyxB->4%D%bsJ?Nif zt=7-sd=JWda^;^T&e<`m#?sFSEK2bUYig|~xG?#Jp2{zn;KC$SwG9UoTomqDl#2w6 zE2q^27qs>&qq?1Ef{PBX<7a!OwqkbkmPdihJJbj-3b;HEaCz5VU-=K<^7<9=dM% zmK(=Bp>cULZvRcgs*N8kU9#!qgfw*Zjz@-18N7Y1fBK$l)<3p69NP+9-Y)e7!CQ|% zJpbo>f}lrodA-Zw@-o)fCx7zZfA3l=9d^uwa~6Ch-W!=W{I_>J@NVpbsjrkM%{VEH$-`qCo8{qN|GXe{f%ae^KFU`Y|9Zz4DSS-pt z&r|wnYv;T`xw<<&E0pE(OmOjYKOAX-3lm(J;NpiNB5QlEyKm-V;PPxncu~ORd4bEj z6+X8 z4ciBgx#j*nFDyOj#EQk%r5~L?=d*V;F7Kx8?+>UC&tLTg$Y z#HIYw-Mi-yC-F_iWS&Xp!Kb`SzbH}m0lNKsQKD?UC4yyh?_B+=efJOknPlER$h@8FHk<%t z-XJ5eFv&cV%Jt8`T*B?gCi6^i@w0!^*(CE!GS4LQejqZh@~%Z6i9qK4!U!)4 z$UGmAd57#4R{)te*eF(t%=31S%Z$)*J%PGOzfrBWBNsnQz&a_|uWO&iOu>$UPT3 zTY$_v+6XL6GS4LQexhWa2`snODU$$RGa2QgMt?f7xVSA0+b@ zPqmGWE?aTG>xdwce*NW}+Ll~aKWO2Sbyq*QVol}e+mF!5yv^I>NmVP?EaBIDzL4Fy zZN#7Jww!X$p5qr;nzz2)bo&d-fXw?uCG&RQzkaDn<{cC=Z|r}qzTkmgmEHMzd^b70 zs&Y8JCl3Gh)y;o=ao73cCg+jsYwn3Wecx06_}$qxjc-<5^2VoMo+?<@pZM5d;Pj3) z8f7u3=QBAylhf!@oV0Zz|u6f4E)`MbyIRliep=6E=uH^QjDY)-EVIlUFvP5!;~#i1ik zjlDPR@frW*n^t}qOq}{nbop}wR*Ze_&g(Qz@5aSL>mK~gti4VDH+=hpt1haz39P;=+wJhOP;3sSAGCw-lWvPyMW9)&S;IrWS-w7^Gq_Yhm(1J?MrvAz(G2o z=daga-!;5*Ym#{;nP-xDCYg7TzRTB>_t5|M1pY)I^ZvsKEKD-bB=dfnWS$8w%(rd3 z{v*%jQc)e)E%Sh$c|cDxT7(HMEVb1i-`($9AoGql!ixejF9>Abkn`qN0-1M$QLGf1 z7w8_DSFx95L4li$RVo%vs1AA E3jzaR=Kufz diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT deleted file mode 100644 index feda7d6b..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/state.db/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/state.db/LOCK deleted file mode 100644 index e69de29b..00000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/LOG b/x/rewards/client/cli/test/node0/simd/data/state.db/LOG deleted file mode 100644 index 70078774..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/state.db/LOG +++ /dev/null @@ -1,6 +0,0 @@ -=============== Jun 26, 2023 (+07) =============== -17:39:40.200105 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed -17:39:40.213149 db@open opening -17:39:40.213507 version@stat F·[] S·0B[] Sc·[] -17:39:40.215904 db@janitor F·2 G·0 -17:39:40.215919 db@open done T·2.755875ms diff --git a/x/rewards/client/cli/test/node0/simd/data/state.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/state.db/MANIFEST-000000 deleted file mode 100644 index 9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/000001.log b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/000001.log deleted file mode 100644 index d03b89336c302f3096988c3a53c449a206f74159..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22544 zcmcgzTbCnM74BlOz{O&C<3V}x9f(P%I~QCFWMCA<%Zyia2Ak@nl1}H^sY<$gL~y3( zf>%`V3X0$bP(TszF3f|=#h-z-c=FY~JIR^ar%s*PXQz{XfLYMr{=VAhJ7=FSm3iVn z$3OV&^`5sf`FTJ5%e!T>)33ERf^pD`!oxr3wt`l3D_Zf+dDnQg`2Vi;TfL28Pzze) zpq`ulVYuQoTTy?|@(bPKRx!WZ8HbHZr!ySwMT1ehJ`VTu?e1!O)UC7|JNYL3{<+Pd z36%~@PiXE)r}4Y}Q4iD<@?qq+0~7j;j^6acAlGg6qF`=y=b;Jf#`+n;5IA|nX>$*| z7Y?A$Is9jRer*RpQP#C>OeiwcA=GJYw@OhZzrM9P-fo;7_{DCuS84D2_5EJ6y4NV> z*Lr*5aJ#Fo&IO>6uPvfU3!|am3md@@z1JGFpp{q6Clh!PD2RO&MR+7jg!PGiRQ-$v zLg4B6+IE95^qWEMXmnkI^7oSRuv>DQeXwPHW9Ub%{)(5+t>*O~eSt4Sox2ltTD?XG zYxJ;4p~xw6GEv0u^+tYYV=(NGTOrg6SG>~tq*P9?n9rMp-IlDW4inSw6R+8}tITVU zL9g<0Nim9<8+2KSaoVTly+LE_!-4B}o7K|lekUw7Dr;wp?V!`C)Ydz@gZ-`jvQG0& zpeZJ#siQtk9l}V{l)DWZRHp1(K*8IfvPHrAx%iW-M@V~UM6hGR&TZXV&z>GNbxe+Ot>&hjLhtRtF#t~pKXe;3q|gI3j_t)sd?B!R@k zv0W*i)0E(5MKo!l+Czq8Kqm0}Ktb%ID5Ud{HUR4r`>6UE z_CX-)G>~n&A3*u+IbEnueoE81Sgx*k^!a`Wbp&%dS;S>d7jlWw4|6(M(>|w@zfZho z+paRNJpsMSp3_toVx0CVcN$WfCxM1Fr;{+!H05r?29+uM5h&wrP}!nj{j51n9~u#? zohcLaV<=C0YBQp&r#}G-S0f_E$%xzI(t22I4tE-*acR3#tPj?rQmq3-)YtTsDJfC6!rL$2H7T$2Wdsp5VCfWQPe zYGp{|+PPmYv2)1f)VXJt)j1&QJ#zX^h*Kw+aq7Uk&g}%{-s}!Yoca~exWuU>nw)Yf z?npoOr1hT#b>vV{^=GGvic?7-IpJ+%QP#QVKpQ(wQFRD)nvUGN0j2r%Tx*MH(n8yi zlnML|P!Rhl3Td384Z!-uKB|6(eGtf+l``x67RvME)b!)eVgce5eZJp89YLH*7C9N8 z9=LUL=^uNp=4Scs>c^iZVfHwc)Ihvu+paRNJrBLoW*5Btp>HYl$3TqJKILAW=+nOd zG^|@}5=NS)+&xE}q7*NJGTsK2Eeh7py2U0Hv390R(C8Z_#veo_rP`DZqF-}J0 zh8Eh~mw-lKM1+y1*^DSt_A*fLj3`?atnX$-M6iq~6Z8s{C!8>0kEJrl_YZQ+@F`&IplKc+-u9~91y*B>ut9@ zaLgMpO6vRG?LK>%N1F$}^kE)+x9|W>y zrOY~ihw|(=RjEv3OBv%7eZGG{9YLH*7CGq9)n^eTwnKD6d zf*{gUn-OKJ{T5KT8WAz|_#Qo!1Uuy;JqNTl>$0)g-AwDo8)^c?U_yhq7j!jLmas_WODA_N0-?>By;QD$ClPTV7lww z=UyEi^PXbHtBc+ZZYL`DrgxFVt1I^b&xhjrWw=`i0 za@w=pdzHp>5_nkmTmz0YPWgO}$fa?d0&Tp_DqI;P$hzkmG_iK6P|{~X66veWkis?p z9B?=r5)PgJ($L${>NGArZndq)^fqp*|UC>A_1| z$u9wN!NJSGs2SVvK1%~V05TUBybNR+(LqCe8RRV}co~?SyZ4o4b`Qzix_5eM-2$Xw{X5gKcU?wl_TXhuK|E*Mx< zNFsf;8B)0BP2g}gB!Zj_$qhGJgSUW3Vo1c1#@P%h)YbwHo*{)Rg9MI-LJ^OD0mr|oV(XsX7`ZHt$Y2Y zbq|>Cdh~w>5WL=F2CvKBO>QSD_u_Y%2Co6|xCAc)oE&;87fFMcMz90=$O)qe5?5ve zlAQUrVJYn15Y(}Qm!=P~PBW8xY0!AW`BoU=q>Z-GDU=ui2XT?&kOnWU2S`9%qzJNH zghX&8a}7AsIOX#>f|tgz588N}Rk$)pkaf>BXkzVB zp`^1QiS*TGNa31)4LF<)i6AFKa>I?*;D>=nVo1c1#@P%h)b@4Y;2Bc5GDzTPNQAHq zDU|dG)F%TiJ$Pv=`6wV49J~ySnz0SRO9OoaWG*gv8OSoCgN8T<@)i`l3{1}5JHO2C OA(>nE4wlwEVER7@EWxY* diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT deleted file mode 100644 index feda7d6b..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOCK b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOCK deleted file mode 100644 index e69de29b..00000000 diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG deleted file mode 100644 index 5d2702ea..00000000 --- a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/LOG +++ /dev/null @@ -1,6 +0,0 @@ -=============== Jun 26, 2023 (+07) =============== -17:39:40.218985 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed -17:39:40.226787 db@open opening -17:39:40.227270 version@stat F·[] S·0B[] Sc·[] -17:39:40.228428 db@janitor F·2 G·0 -17:39:40.228443 db@open done T·1.643666ms diff --git a/x/rewards/client/cli/test/node0/simd/data/tx_index.db/MANIFEST-000000 b/x/rewards/client/cli/test/node0/simd/data/tx_index.db/MANIFEST-000000 deleted file mode 100644 index 9d54f6733b1364dc8d53dd15ca59a6ec36a1c29d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 54 zcmdmC5aOo9z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&O?~%*ev9Y~pbaHU>r} JMrI}!1^~s!4paaD From 0a55f00d7f6019c043574b928d31f98e20058c3c Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 11:33:16 +0700 Subject: [PATCH 11/26] source --- x/gitopia/types/attachment.pb.go | 4 ++-- x/gitopia/types/bounty.pb.go | 4 ++-- x/gitopia/types/branch.pb.go | 4 ++-- x/gitopia/types/comment.pb.go | 4 ++-- x/gitopia/types/dao.pb.go | 4 ++-- x/gitopia/types/exercised_amount.pb.go | 4 ++-- x/gitopia/types/genesis.pb.go | 4 ++-- x/gitopia/types/issue.pb.go | 4 ++-- x/gitopia/types/member.pb.go | 4 ++-- x/gitopia/types/params.pb.go | 4 ++-- x/gitopia/types/pullRequest.pb.go | 4 ++-- x/gitopia/types/query.pb.go | 6 +++--- x/gitopia/types/query.pb.gw.go | 2 +- x/gitopia/types/reaction.pb.go | 4 ++-- x/gitopia/types/release.pb.go | 4 ++-- x/gitopia/types/repository.pb.go | 4 ++-- x/gitopia/types/tag.pb.go | 4 ++-- x/gitopia/types/task.pb.go | 4 ++-- x/gitopia/types/tx.pb.go | 6 +++--- x/gitopia/types/user.pb.go | 4 ++-- x/gitopia/types/whois.pb.go | 4 ++-- x/offchain/types/offchain.pb.go | 2 +- x/rewards/types/genesis.pb.go | 2 +- x/rewards/types/params.pb.go | 2 +- x/rewards/types/query.pb.go | 2 +- x/rewards/types/query.pb.gw.go | 2 +- x/rewards/types/rewards.pb.go | 2 +- x/rewards/types/task.pb.go | 2 +- x/rewards/types/tx.pb.go | 2 +- 29 files changed, 51 insertions(+), 51 deletions(-) diff --git a/x/gitopia/types/attachment.pb.go b/x/gitopia/types/attachment.pb.go index 9027ab6d..6ec87284 100644 --- a/x/gitopia/types/attachment.pb.go +++ b/x/gitopia/types/attachment.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/attachment.proto +// source: gitopia/attachment.proto package types @@ -94,7 +94,7 @@ func init() { proto.RegisterType((*Attachment)(nil), "gitopia.gitopia.gitopia.Attachment") } -func init() { proto.RegisterFile("gitopia/gitopia/attachment.proto", fileDescriptor_8035b0c82cbdbc3b) } +func init() { proto.RegisterFile("gitopia/attachment.proto", fileDescriptor_8035b0c82cbdbc3b) } var fileDescriptor_8035b0c82cbdbc3b = []byte{ // 186 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/bounty.pb.go b/x/gitopia/types/bounty.pb.go index 3362da1b..e86c1d34 100644 --- a/x/gitopia/types/bounty.pb.go +++ b/x/gitopia/types/bounty.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/bounty.proto +// source: gitopia/bounty.proto package types @@ -205,7 +205,7 @@ func init() { proto.RegisterType((*Bounty)(nil), "gitopia.gitopia.gitopia.Bounty") } -func init() { proto.RegisterFile("gitopia/gitopia/bounty.proto", fileDescriptor_67a698d5c16076fb) } +func init() { proto.RegisterFile("gitopia/bounty.proto", fileDescriptor_67a698d5c16076fb) } var fileDescriptor_67a698d5c16076fb = []byte{ // 538 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/branch.pb.go b/x/gitopia/types/branch.pb.go index 9b56250a..46ca82c9 100644 --- a/x/gitopia/types/branch.pb.go +++ b/x/gitopia/types/branch.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/branch.proto +// source: gitopia/branch.proto package types @@ -118,7 +118,7 @@ func init() { proto.RegisterType((*Branch)(nil), "gitopia.gitopia.gitopia.Branch") } -func init() { proto.RegisterFile("gitopia/gitopia/branch.proto", fileDescriptor_e76348169b9d2db0) } +func init() { proto.RegisterFile("gitopia/branch.proto", fileDescriptor_e76348169b9d2db0) } var fileDescriptor_e76348169b9d2db0 = []byte{ // 249 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/comment.pb.go b/x/gitopia/types/comment.pb.go index 1e8ebdd4..003741cc 100644 --- a/x/gitopia/types/comment.pb.go +++ b/x/gitopia/types/comment.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/comment.proto +// source: gitopia/comment.proto package types @@ -329,7 +329,7 @@ func init() { proto.RegisterType((*Comment)(nil), "gitopia.gitopia.gitopia.Comment") } -func init() { proto.RegisterFile("gitopia/gitopia/comment.proto", fileDescriptor_61a8a10ae7d09fb4) } +func init() { proto.RegisterFile("gitopia/comment.proto", fileDescriptor_61a8a10ae7d09fb4) } var fileDescriptor_61a8a10ae7d09fb4 = []byte{ // 1001 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/dao.pb.go b/x/gitopia/types/dao.pb.go index 410cfd10..c27abe99 100644 --- a/x/gitopia/types/dao.pb.go +++ b/x/gitopia/types/dao.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/dao.proto +// source: gitopia/dao.proto package types @@ -175,7 +175,7 @@ func init() { proto.RegisterType((*Dao)(nil), "gitopia.gitopia.gitopia.Dao") } -func init() { proto.RegisterFile("gitopia/gitopia/dao.proto", fileDescriptor_bbacb5867cc9ed90) } +func init() { proto.RegisterFile("gitopia/dao.proto", fileDescriptor_bbacb5867cc9ed90) } var fileDescriptor_bbacb5867cc9ed90 = []byte{ // 340 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/exercised_amount.pb.go b/x/gitopia/types/exercised_amount.pb.go index ffab4a10..51bce8f1 100644 --- a/x/gitopia/types/exercised_amount.pb.go +++ b/x/gitopia/types/exercised_amount.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/exercised_amount.proto +// source: gitopia/exercised_amount.proto package types @@ -81,7 +81,7 @@ func init() { } func init() { - proto.RegisterFile("gitopia/gitopia/exercised_amount.proto", fileDescriptor_e2f495f5b056fe64) + proto.RegisterFile("gitopia/exercised_amount.proto", fileDescriptor_e2f495f5b056fe64) } var fileDescriptor_e2f495f5b056fe64 = []byte{ diff --git a/x/gitopia/types/genesis.pb.go b/x/gitopia/types/genesis.pb.go index 873fe897..800d2a9d 100644 --- a/x/gitopia/types/genesis.pb.go +++ b/x/gitopia/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/genesis.proto +// source: gitopia/genesis.proto package types @@ -314,7 +314,7 @@ func init() { proto.RegisterType((*GenesisState)(nil), "gitopia.gitopia.gitopia.GenesisState") } -func init() { proto.RegisterFile("gitopia/gitopia/genesis.proto", fileDescriptor_fe28ed7a80acf9ab) } +func init() { proto.RegisterFile("gitopia/genesis.proto", fileDescriptor_fe28ed7a80acf9ab) } var fileDescriptor_fe28ed7a80acf9ab = []byte{ // 766 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/issue.pb.go b/x/gitopia/types/issue.pb.go index 876c1293..87d5c86a 100644 --- a/x/gitopia/types/issue.pb.go +++ b/x/gitopia/types/issue.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/issue.proto +// source: gitopia/issue.proto package types @@ -225,7 +225,7 @@ func init() { proto.RegisterType((*Issue)(nil), "gitopia.gitopia.gitopia.Issue") } -func init() { proto.RegisterFile("gitopia/gitopia/issue.proto", fileDescriptor_4cf64e56e9098bda) } +func init() { proto.RegisterFile("gitopia/issue.proto", fileDescriptor_4cf64e56e9098bda) } var fileDescriptor_4cf64e56e9098bda = []byte{ // 454 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/member.pb.go b/x/gitopia/types/member.pb.go index 0bc7df92..ddfbb4ba 100644 --- a/x/gitopia/types/member.pb.go +++ b/x/gitopia/types/member.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/member.proto +// source: gitopia/member.proto package types @@ -120,7 +120,7 @@ func init() { proto.RegisterType((*Member)(nil), "gitopia.gitopia.gitopia.Member") } -func init() { proto.RegisterFile("gitopia/gitopia/member.proto", fileDescriptor_eb50d9e34f0ece82) } +func init() { proto.RegisterFile("gitopia/member.proto", fileDescriptor_eb50d9e34f0ece82) } var fileDescriptor_eb50d9e34f0ece82 = []byte{ // 230 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/params.pb.go b/x/gitopia/types/params.pb.go index d273ceae..b09a021d 100644 --- a/x/gitopia/types/params.pb.go +++ b/x/gitopia/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/params.proto +// source: gitopia/params.proto package types @@ -215,7 +215,7 @@ func init() { proto.RegisterType((*Params)(nil), "gitopia.gitopia.gitopia.Params") } -func init() { proto.RegisterFile("gitopia/gitopia/params.proto", fileDescriptor_cdae11692a018c3a) } +func init() { proto.RegisterFile("gitopia/params.proto", fileDescriptor_cdae11692a018c3a) } var fileDescriptor_cdae11692a018c3a = []byte{ // 553 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/pullRequest.pb.go b/x/gitopia/types/pullRequest.pb.go index ee94735c..011d0278 100644 --- a/x/gitopia/types/pullRequest.pb.go +++ b/x/gitopia/types/pullRequest.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/pullRequest.proto +// source: gitopia/pullRequest.proto package types @@ -398,7 +398,7 @@ func init() { proto.RegisterType((*PullRequestBase)(nil), "gitopia.gitopia.gitopia.PullRequestBase") } -func init() { proto.RegisterFile("gitopia/gitopia/pullRequest.proto", fileDescriptor_ee729f91ddeb1e95) } +func init() { proto.RegisterFile("gitopia/pullRequest.proto", fileDescriptor_ee729f91ddeb1e95) } var fileDescriptor_ee729f91ddeb1e95 = []byte{ // 611 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/query.pb.go b/x/gitopia/types/query.pb.go index cc507aea..0a1d12f3 100644 --- a/x/gitopia/types/query.pb.go +++ b/x/gitopia/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/query.proto +// source: gitopia/query.proto package types @@ -5291,7 +5291,7 @@ func init() { proto.RegisterType((*QueryAllWhoisResponse)(nil), "gitopia.gitopia.gitopia.QueryAllWhoisResponse") } -func init() { proto.RegisterFile("gitopia/gitopia/query.proto", fileDescriptor_422ed845ee440bd1) } +func init() { proto.RegisterFile("gitopia/query.proto", fileDescriptor_422ed845ee440bd1) } var fileDescriptor_422ed845ee440bd1 = []byte{ // 3592 bytes of a gzipped FileDescriptorProto @@ -7333,7 +7333,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "gitopia/gitopia/query.proto", + Metadata: "gitopia/query.proto", } func (m *QueryVestedAmountRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/query.pb.gw.go b/x/gitopia/types/query.pb.gw.go index 4cd29d4c..bc8bfe66 100644 --- a/x/gitopia/types/query.pb.gw.go +++ b/x/gitopia/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: gitopia/gitopia/query.proto +// source: gitopia/query.proto /* Package types is a reverse proxy. diff --git a/x/gitopia/types/reaction.pb.go b/x/gitopia/types/reaction.pb.go index af6c9d87..7637183c 100644 --- a/x/gitopia/types/reaction.pb.go +++ b/x/gitopia/types/reaction.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/reaction.proto +// source: gitopia/reaction.proto package types @@ -105,7 +105,7 @@ func init() { proto.RegisterType((*Reaction)(nil), "gitopia.gitopia.gitopia.Reaction") } -func init() { proto.RegisterFile("gitopia/gitopia/reaction.proto", fileDescriptor_6751c3791b2fecc0) } +func init() { proto.RegisterFile("gitopia/reaction.proto", fileDescriptor_6751c3791b2fecc0) } var fileDescriptor_6751c3791b2fecc0 = []byte{ // 257 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/release.pb.go b/x/gitopia/types/release.pb.go index 4feba4d4..53db9241 100644 --- a/x/gitopia/types/release.pb.go +++ b/x/gitopia/types/release.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/release.proto +// source: gitopia/release.proto package types @@ -175,7 +175,7 @@ func init() { proto.RegisterType((*Release)(nil), "gitopia.gitopia.gitopia.Release") } -func init() { proto.RegisterFile("gitopia/gitopia/release.proto", fileDescriptor_5fd2e3bb1bcbe1fb) } +func init() { proto.RegisterFile("gitopia/release.proto", fileDescriptor_5fd2e3bb1bcbe1fb) } var fileDescriptor_5fd2e3bb1bcbe1fb = []byte{ // 368 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/repository.pb.go b/x/gitopia/types/repository.pb.go index 45d0acb4..d596165b 100644 --- a/x/gitopia/types/repository.pb.go +++ b/x/gitopia/types/repository.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/repository.proto +// source: gitopia/repository.proto package types @@ -833,7 +833,7 @@ func init() { proto.RegisterType((*RepositoryBackup)(nil), "gitopia.gitopia.gitopia.RepositoryBackup") } -func init() { proto.RegisterFile("gitopia/gitopia/repository.proto", fileDescriptor_771033d6361900fa) } +func init() { proto.RegisterFile("gitopia/repository.proto", fileDescriptor_771033d6361900fa) } var fileDescriptor_771033d6361900fa = []byte{ // 881 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/tag.pb.go b/x/gitopia/types/tag.pb.go index d30b0d3c..eb9c8698 100644 --- a/x/gitopia/types/tag.pb.go +++ b/x/gitopia/types/tag.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/tag.proto +// source: gitopia/tag.proto package types @@ -110,7 +110,7 @@ func init() { proto.RegisterType((*Tag)(nil), "gitopia.gitopia.gitopia.Tag") } -func init() { proto.RegisterFile("gitopia/gitopia/tag.proto", fileDescriptor_bd09f5e76807ae94) } +func init() { proto.RegisterFile("gitopia/tag.proto", fileDescriptor_bd09f5e76807ae94) } var fileDescriptor_bd09f5e76807ae94 = []byte{ // 219 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/task.pb.go b/x/gitopia/types/task.pb.go index 988dda16..d2a6db1b 100644 --- a/x/gitopia/types/task.pb.go +++ b/x/gitopia/types/task.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/task.proto +// source: gitopia/task.proto package types @@ -166,7 +166,7 @@ func init() { proto.RegisterType((*Task)(nil), "gitopia.gitopia.gitopia.Task") } -func init() { proto.RegisterFile("gitopia/gitopia/task.proto", fileDescriptor_a6920678987ef43f) } +func init() { proto.RegisterFile("gitopia/task.proto", fileDescriptor_a6920678987ef43f) } var fileDescriptor_a6920678987ef43f = []byte{ // 441 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index 609ecbbf..79cddb74 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/tx.proto +// source: gitopia/tx.proto package types @@ -9229,7 +9229,7 @@ func init() { proto.RegisterType((*MsgDeleteUserResponse)(nil), "gitopia.gitopia.gitopia.MsgDeleteUserResponse") } -func init() { proto.RegisterFile("gitopia/gitopia/tx.proto", fileDescriptor_a62a3f7fe5854081) } +func init() { proto.RegisterFile("gitopia/tx.proto", fileDescriptor_a62a3f7fe5854081) } var fileDescriptor_a62a3f7fe5854081 = []byte{ // 4446 bytes of a gzipped FileDescriptorProto @@ -12548,7 +12548,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "gitopia/gitopia/tx.proto", + Metadata: "gitopia/tx.proto", } func (m *MsgExercise) Marshal() (dAtA []byte, err error) { diff --git a/x/gitopia/types/user.pb.go b/x/gitopia/types/user.pb.go index abfe5e3e..a6986750 100644 --- a/x/gitopia/types/user.pb.go +++ b/x/gitopia/types/user.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/user.proto +// source: gitopia/user.proto package types @@ -228,7 +228,7 @@ func init() { proto.RegisterType((*UserDao)(nil), "gitopia.gitopia.gitopia.UserDao") } -func init() { proto.RegisterFile("gitopia/gitopia/user.proto", fileDescriptor_bf7f4b301dc3d162) } +func init() { proto.RegisterFile("gitopia/user.proto", fileDescriptor_bf7f4b301dc3d162) } var fileDescriptor_bf7f4b301dc3d162 = []byte{ // 386 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/whois.pb.go b/x/gitopia/types/whois.pb.go index b124930a..26e67ce2 100644 --- a/x/gitopia/types/whois.pb.go +++ b/x/gitopia/types/whois.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/gitopia/whois.proto +// source: gitopia/whois.proto package types @@ -129,7 +129,7 @@ func init() { proto.RegisterType((*Whois)(nil), "gitopia.gitopia.gitopia.Whois") } -func init() { proto.RegisterFile("gitopia/gitopia/whois.proto", fileDescriptor_eb936eb6838a72a6) } +func init() { proto.RegisterFile("gitopia/whois.proto", fileDescriptor_eb936eb6838a72a6) } var fileDescriptor_eb936eb6838a72a6 = []byte{ // 254 bytes of a gzipped FileDescriptorProto diff --git a/x/offchain/types/offchain.pb.go b/x/offchain/types/offchain.pb.go index e5ebe7b9..cadaa797 100644 --- a/x/offchain/types/offchain.pb.go +++ b/x/offchain/types/offchain.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/offchain/offchain.proto +// source: offchain/offchain.proto package types diff --git a/x/rewards/types/genesis.pb.go b/x/rewards/types/genesis.pb.go index 69acc2d7..6d2dc687 100644 --- a/x/rewards/types/genesis.pb.go +++ b/x/rewards/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/rewards/genesis.proto +// source: rewards/genesis.proto package types diff --git a/x/rewards/types/params.pb.go b/x/rewards/types/params.pb.go index d446b77e..0db4166e 100644 --- a/x/rewards/types/params.pb.go +++ b/x/rewards/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/rewards/params.proto +// source: rewards/params.proto package types diff --git a/x/rewards/types/query.pb.go b/x/rewards/types/query.pb.go index 8be83b10..39e717cc 100644 --- a/x/rewards/types/query.pb.go +++ b/x/rewards/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/rewards/query.proto +// source: rewards/query.proto package types diff --git a/x/rewards/types/query.pb.gw.go b/x/rewards/types/query.pb.gw.go index 2d7b75bb..8ae89bac 100644 --- a/x/rewards/types/query.pb.gw.go +++ b/x/rewards/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: gitopia/rewards/query.proto +// source: rewards/query.proto /* Package types is a reverse proxy. diff --git a/x/rewards/types/rewards.pb.go b/x/rewards/types/rewards.pb.go index 2f197bc0..5adf7fd9 100644 --- a/x/rewards/types/rewards.pb.go +++ b/x/rewards/types/rewards.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/rewards/rewards.proto +// source: rewards/rewards.proto package types diff --git a/x/rewards/types/task.pb.go b/x/rewards/types/task.pb.go index 8e7f61f9..41d6845d 100644 --- a/x/rewards/types/task.pb.go +++ b/x/rewards/types/task.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/rewards/task.proto +// source: rewards/task.proto package types diff --git a/x/rewards/types/tx.pb.go b/x/rewards/types/tx.pb.go index 3657c888..5bfb8f93 100644 --- a/x/rewards/types/tx.pb.go +++ b/x/rewards/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: gitopia/rewards/tx.proto +// source: rewards/tx.proto package types From d4edd33943e44ab3d6f133215a71b383b9091513 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 11:37:18 +0700 Subject: [PATCH 12/26] source --- x/rewards/types/genesis.pb.go | 2 +- x/rewards/types/params.pb.go | 2 +- x/rewards/types/query.pb.go | 4 ++-- x/rewards/types/rewards.pb.go | 2 +- x/rewards/types/task.pb.go | 2 +- x/rewards/types/tx.pb.go | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/x/rewards/types/genesis.pb.go b/x/rewards/types/genesis.pb.go index 6d2dc687..c170c2e1 100644 --- a/x/rewards/types/genesis.pb.go +++ b/x/rewards/types/genesis.pb.go @@ -82,7 +82,7 @@ func init() { proto.RegisterType((*GenesisState)(nil), "gitopia.gitopia.rewards.GenesisState") } -func init() { proto.RegisterFile("gitopia/rewards/genesis.proto", fileDescriptor_af1ac91d1464842a) } +func init() { proto.RegisterFile("rewards/genesis.proto", fileDescriptor_af1ac91d1464842a) } var fileDescriptor_af1ac91d1464842a = []byte{ // 247 bytes of a gzipped FileDescriptorProto diff --git a/x/rewards/types/params.pb.go b/x/rewards/types/params.pb.go index 0db4166e..aba62130 100644 --- a/x/rewards/types/params.pb.go +++ b/x/rewards/types/params.pb.go @@ -247,7 +247,7 @@ func init() { proto.RegisterType((*Params)(nil), "gitopia.gitopia.rewards.Params") } -func init() { proto.RegisterFile("gitopia/rewards/params.proto", fileDescriptor_fe21394d7c37f32a) } +func init() { proto.RegisterFile("rewards/params.proto", fileDescriptor_fe21394d7c37f32a) } var fileDescriptor_fe21394d7c37f32a = []byte{ // 624 bytes of a gzipped FileDescriptorProto diff --git a/x/rewards/types/query.pb.go b/x/rewards/types/query.pb.go index 39e717cc..cf37c177 100644 --- a/x/rewards/types/query.pb.go +++ b/x/rewards/types/query.pb.go @@ -397,7 +397,7 @@ func init() { proto.RegisterType((*QueryAllRewardsResponse)(nil), "gitopia.gitopia.rewards.QueryAllRewardsResponse") } -func init() { proto.RegisterFile("gitopia/rewards/query.proto", fileDescriptor_16b85c5f22209df1) } +func init() { proto.RegisterFile("rewards/query.proto", fileDescriptor_16b85c5f22209df1) } var fileDescriptor_16b85c5f22209df1 = []byte{ // 694 bytes of a gzipped FileDescriptorProto @@ -602,7 +602,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "gitopia/rewards/query.proto", + Metadata: "rewards/query.proto", } func (m *QueryTasksRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/rewards.pb.go b/x/rewards/types/rewards.pb.go index 5adf7fd9..f8aa59bb 100644 --- a/x/rewards/types/rewards.pb.go +++ b/x/rewards/types/rewards.pb.go @@ -104,7 +104,7 @@ func init() { proto.RegisterType((*Reward)(nil), "gitopia.gitopia.rewards.Reward") } -func init() { proto.RegisterFile("gitopia/rewards/rewards.proto", fileDescriptor_02cca378d543f1ef) } +func init() { proto.RegisterFile("rewards/rewards.proto", fileDescriptor_02cca378d543f1ef) } var fileDescriptor_02cca378d543f1ef = []byte{ // 320 bytes of a gzipped FileDescriptorProto diff --git a/x/rewards/types/task.pb.go b/x/rewards/types/task.pb.go index 41d6845d..f34f192f 100644 --- a/x/rewards/types/task.pb.go +++ b/x/rewards/types/task.pb.go @@ -139,7 +139,7 @@ func init() { proto.RegisterType((*Task)(nil), "gitopia.gitopia.rewards.Task") } -func init() { proto.RegisterFile("gitopia/rewards/task.proto", fileDescriptor_e0552f51de1f8bcf) } +func init() { proto.RegisterFile("rewards/task.proto", fileDescriptor_e0552f51de1f8bcf) } var fileDescriptor_e0552f51de1f8bcf = []byte{ // 374 bytes of a gzipped FileDescriptorProto diff --git a/x/rewards/types/tx.pb.go b/x/rewards/types/tx.pb.go index 5bfb8f93..e57c8e17 100644 --- a/x/rewards/types/tx.pb.go +++ b/x/rewards/types/tx.pb.go @@ -222,7 +222,7 @@ func init() { proto.RegisterType((*MsgClaimResponse)(nil), "gitopia.gitopia.rewards.MsgClaimResponse") } -func init() { proto.RegisterFile("gitopia/rewards/tx.proto", fileDescriptor_7c381979139f2588) } +func init() { proto.RegisterFile("rewards/tx.proto", fileDescriptor_7c381979139f2588) } var fileDescriptor_7c381979139f2588 = []byte{ // 362 bytes of a gzipped FileDescriptorProto @@ -364,7 +364,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "gitopia/rewards/tx.proto", + Metadata: "rewards/tx.proto", } func (m *MsgCreateReward) Marshal() (dAtA []byte, err error) { From d259328997120b48a7ca3b7257b10a03541bb5ef Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 13:43:07 +0700 Subject: [PATCH 13/26] add command --- x/gitopia/client/cli/tx.go | 1 + 1 file changed, 1 insertion(+) diff --git a/x/gitopia/client/cli/tx.go b/x/gitopia/client/cli/tx.go index 269fa2a8..602f78b9 100644 --- a/x/gitopia/client/cli/tx.go +++ b/x/gitopia/client/cli/tx.go @@ -106,6 +106,7 @@ func GetTxCmd() *cobra.Command { cmd.AddCommand(CmdForkRepository()) cmd.AddCommand(CmdRenameRepository()) cmd.AddCommand(CmdUpdateRepositoryDescription()) + cmd.AddCommand(CmdUpdateArchiveState()) cmd.AddCommand(CmdChangeOwner()) cmd.AddCommand(CmdUpdateRepositoryCollaborator()) cmd.AddCommand(CmdRemoveRepositoryCollaborator()) From 872bb2a0b24d2364eb604ddad605741d72c5b9b4 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 17:33:32 +0700 Subject: [PATCH 14/26] rename --- docs/static/openapi.yml | 2 +- proto/gitopia/tx.proto | 6 +- x/gitopia/client/cli/tx.go | 2 +- x/gitopia/client/cli/txRepository.go | 4 +- x/gitopia/handler.go | 4 +- x/gitopia/keeper/msg_server_repository.go | 6 +- x/gitopia/types/codec.go | 4 +- x/gitopia/types/messages_repository.go | 16 +-- x/gitopia/types/mock_msg_client.go | 12 +-- x/gitopia/types/permission.go | 44 ++++---- x/gitopia/types/tx.pb.go | 122 +++++++++++----------- 11 files changed, 111 insertions(+), 111 deletions(-) diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index b860c796..174f7174 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -76834,7 +76834,7 @@ definitions: type: object gitopia.gitopia.gitopia.MsgUpdateRepositoryDescriptionResponse: type: object - gitopia.gitopia.gitopia.MsgUpdateArchiveStateResponse: + gitopia.gitopia.gitopia.MsgUpdateRepositoryArchivedResponse: type: object gitopia.gitopia.gitopia.MsgUpdateRepositoryLabelResponse: type: object diff --git a/proto/gitopia/tx.proto b/proto/gitopia/tx.proto index 49d0c86a..6a1fafcf 100644 --- a/proto/gitopia/tx.proto +++ b/proto/gitopia/tx.proto @@ -89,7 +89,7 @@ service Msg { rpc ForkRepositorySuccess(MsgForkRepositorySuccess) returns (MsgForkRepositorySuccessResponse); rpc RenameRepository(MsgRenameRepository) returns (MsgRenameRepositoryResponse); rpc UpdateRepositoryDescription(MsgUpdateRepositoryDescription) returns (MsgUpdateRepositoryDescriptionResponse); - rpc UpdateArchiveState(MsgUpdateArchiveState) returns (MsgUpdateArchiveStateResponse); + rpc UpdateRepositoryArchived(MsgUpdateRepositoryArchived) returns (MsgUpdateRepositoryArchivedResponse); rpc ChangeOwner(MsgChangeOwner) returns (MsgChangeOwnerResponse); rpc UpdateRepositoryCollaborator(MsgUpdateRepositoryCollaborator) returns (MsgUpdateRepositoryCollaboratorResponse); rpc RemoveRepositoryCollaborator(MsgRemoveRepositoryCollaborator) returns (MsgRemoveRepositoryCollaboratorResponse); @@ -779,13 +779,13 @@ message MsgUpdateRepositoryDescription { message MsgUpdateRepositoryDescriptionResponse { } -message MsgUpdateArchiveState { +message MsgUpdateRepositoryArchived { string creator = 1; RepositoryId repositoryId = 2 [(gogoproto.nullable) = false]; bool archived = 3; } -message MsgUpdateArchiveStateResponse { } +message MsgUpdateRepositoryArchivedResponse { } message MsgChangeOwner { string creator = 1; diff --git a/x/gitopia/client/cli/tx.go b/x/gitopia/client/cli/tx.go index 602f78b9..9f788804 100644 --- a/x/gitopia/client/cli/tx.go +++ b/x/gitopia/client/cli/tx.go @@ -106,7 +106,7 @@ func GetTxCmd() *cobra.Command { cmd.AddCommand(CmdForkRepository()) cmd.AddCommand(CmdRenameRepository()) cmd.AddCommand(CmdUpdateRepositoryDescription()) - cmd.AddCommand(CmdUpdateArchiveState()) + cmd.AddCommand(CmdUpdateRepositoryArchived()) cmd.AddCommand(CmdChangeOwner()) cmd.AddCommand(CmdUpdateRepositoryCollaborator()) cmd.AddCommand(CmdRemoveRepositoryCollaborator()) diff --git a/x/gitopia/client/cli/txRepository.go b/x/gitopia/client/cli/txRepository.go index c621a5f4..d96baaee 100644 --- a/x/gitopia/client/cli/txRepository.go +++ b/x/gitopia/client/cli/txRepository.go @@ -195,7 +195,7 @@ func CmdUpdateRepositoryDescription() *cobra.Command { return cmd } -func CmdUpdateArchiveState() *cobra.Command { +func CmdUpdateRepositoryArchived() *cobra.Command { cmd := &cobra.Command{ Use: "update-archive-state [owner-id] [repository-name] [archived]", Short: "Update archive state", @@ -210,7 +210,7 @@ func CmdUpdateArchiveState() *cobra.Command { return err } archived, _ := strconv.ParseBool(argArchived) - msg := types.NewMsgUpdateArchiveState( + msg := types.NewMsgUpdateRepositoryArchived( clientCtx.GetFromAddress().String(), types.RepositoryId{Id: argOwnerid, Name: argRepositoryName}, archived, diff --git a/x/gitopia/handler.go b/x/gitopia/handler.go index e39d03f3..aad428d4 100644 --- a/x/gitopia/handler.go +++ b/x/gitopia/handler.go @@ -284,8 +284,8 @@ func NewHandler(k keeper.Keeper) sdk.Handler { res, err := msgServer.RenameRepository(sdk.WrapSDKContext(ctx), msg) return sdk.WrapServiceResult(ctx, res, err) - case *types.MsgUpdateArchiveState: - res, err := msgServer.UpdateArchiveState(sdk.WrapSDKContext(ctx), msg) + case *types.MsgUpdateRepositoryArchived: + res, err := msgServer.UpdateRepositoryArchived(sdk.WrapSDKContext(ctx), msg) return sdk.WrapServiceResult(ctx, res, err) case *types.MsgUpdateRepositoryDescription: diff --git a/x/gitopia/keeper/msg_server_repository.go b/x/gitopia/keeper/msg_server_repository.go index ec282ba5..5ebca2ab 100644 --- a/x/gitopia/keeper/msg_server_repository.go +++ b/x/gitopia/keeper/msg_server_repository.go @@ -504,7 +504,7 @@ func (k msgServer) UpdateRepositoryDescription(goCtx context.Context, msg *types return &types.MsgUpdateRepositoryDescriptionResponse{}, nil } -func (k msgServer) UpdateArchiveState(goCtx context.Context, msg *types.MsgUpdateArchiveState) (*types.MsgUpdateArchiveStateResponse, error) { +func (k msgServer) UpdateRepositoryArchived(goCtx context.Context, msg *types.MsgUpdateRepositoryArchived) (*types.MsgUpdateRepositoryArchivedResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) _, found := k.GetUser(ctx, msg.Creator) @@ -526,7 +526,7 @@ func (k msgServer) UpdateArchiveState(goCtx context.Context, msg *types.MsgUpdat return nil, sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, fmt.Sprintf("archived state not modified")) } - if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryUpdateArchiveStatePermission) { + if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryUpdateRepositoryArchivedPermission) { return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, fmt.Sprintf("user (%v) doesn't have permission to perform this operation", msg.Creator)) } @@ -546,7 +546,7 @@ func (k msgServer) UpdateArchiveState(goCtx context.Context, msg *types.MsgUpdat ), ) - return &types.MsgUpdateArchiveStateResponse{}, nil + return &types.MsgUpdateRepositoryArchivedResponse{}, nil } func (k msgServer) UpdateRepositoryCollaborator(goCtx context.Context, msg *types.MsgUpdateRepositoryCollaborator) (*types.MsgUpdateRepositoryCollaboratorResponse, error) { diff --git a/x/gitopia/types/codec.go b/x/gitopia/types/codec.go index 9bce875e..60201c39 100644 --- a/x/gitopia/types/codec.go +++ b/x/gitopia/types/codec.go @@ -87,7 +87,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) { cdc.RegisterConcrete(&MsgForkRepositorySuccess{}, "gitopia/ForkRepositorySuccess", nil) cdc.RegisterConcrete(&MsgRenameRepository{}, "gitopia/RenameRepository", nil) cdc.RegisterConcrete(&MsgUpdateRepositoryDescription{}, "gitopia/UpdateRepositoryDescription", nil) - cdc.RegisterConcrete(&MsgUpdateArchiveState{}, "gitopia/UpdateArchiveState", nil) + cdc.RegisterConcrete(&MsgUpdateRepositoryArchived{}, "gitopia/UpdateRepositoryArchived", nil) cdc.RegisterConcrete(&MsgChangeOwner{}, "gitopia/ChangeOwner", nil) cdc.RegisterConcrete(&MsgUpdateRepositoryCollaborator{}, "gitopia/UpdateRepositoryCollaborator", nil) cdc.RegisterConcrete(&MsgRemoveRepositoryCollaborator{}, "gitopia/RemoveRepositoryCollaborator", nil) @@ -208,7 +208,7 @@ func RegisterInterfaces(registry cdctypes.InterfaceRegistry) { &MsgUpdateRepositoryDescription{}, &MsgChangeOwner{}, &MsgUpdateRepositoryCollaborator{}, - &MsgUpdateArchiveState{}, + &MsgUpdateRepositoryArchived{}, &MsgRemoveRepositoryCollaborator{}, &MsgCreateRepositoryLabel{}, &MsgUpdateRepositoryLabel{}, diff --git a/x/gitopia/types/messages_repository.go b/x/gitopia/types/messages_repository.go index 01fc71ca..06f353a9 100644 --- a/x/gitopia/types/messages_repository.go +++ b/x/gitopia/types/messages_repository.go @@ -749,25 +749,25 @@ func (msg *MsgUpdateRepositoryDescription) ValidateBasic() error { return nil } -var _ sdk.Msg = &MsgUpdateArchiveState{} +var _ sdk.Msg = &MsgUpdateRepositoryArchived{} -func NewMsgUpdateArchiveState(creator string, repositoryId RepositoryId, archived bool) *MsgUpdateArchiveState { - return &MsgUpdateArchiveState{ +func NewMsgUpdateRepositoryArchived(creator string, repositoryId RepositoryId, archived bool) *MsgUpdateRepositoryArchived { + return &MsgUpdateRepositoryArchived{ Creator: creator, RepositoryId: repositoryId, Archived: archived, } } -func (msg *MsgUpdateArchiveState) Route() string { +func (msg *MsgUpdateRepositoryArchived) Route() string { return RouterKey } -func (msg *MsgUpdateArchiveState) Type() string { +func (msg *MsgUpdateRepositoryArchived) Type() string { return "UpdateArchivedState" } -func (msg *MsgUpdateArchiveState) GetSigners() []sdk.AccAddress { +func (msg *MsgUpdateRepositoryArchived) GetSigners() []sdk.AccAddress { creator, err := sdk.AccAddressFromBech32(msg.Creator) if err != nil { panic(err) @@ -775,12 +775,12 @@ func (msg *MsgUpdateArchiveState) GetSigners() []sdk.AccAddress { return []sdk.AccAddress{creator} } -func (msg *MsgUpdateArchiveState) GetSignBytes() []byte { +func (msg *MsgUpdateRepositoryArchived) GetSignBytes() []byte { bz := ModuleCdc.MustMarshalJSON(msg) return sdk.MustSortJSON(bz) } -func (msg *MsgUpdateArchiveState) ValidateBasic() error { +func (msg *MsgUpdateRepositoryArchived) ValidateBasic() error { _, err := sdk.AccAddressFromBech32(msg.Creator) if err != nil { return sdkerrors.Wrapf(sdkerrors.ErrInvalidAddress, "invalid creator address (%s)", err) diff --git a/x/gitopia/types/mock_msg_client.go b/x/gitopia/types/mock_msg_client.go index b7d0cf09..c3115523 100644 --- a/x/gitopia/types/mock_msg_client.go +++ b/x/gitopia/types/mock_msg_client.go @@ -2235,8 +2235,8 @@ func (_m *MockMsgClient) UpdateRepositoryDescription(ctx context.Context, in *Ms return r0, r1 } -// UpdateArchiveState provides a mock function with given fields: ctx, in, opts -func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgUpdateArchiveState, opts ...grpc.CallOption) (*MsgUpdateArchiveStateResponse, error) { +// UpdateRepositoryArchived provides a mock function with given fields: ctx, in, opts +func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgUpdateRepositoryArchived, opts ...grpc.CallOption) (*MsgUpdateRepositoryArchivedResponse, error) { _va := make([]interface{}, len(opts)) for _i := range opts { _va[_i] = opts[_i] @@ -2246,17 +2246,17 @@ func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgUpdateA _ca = append(_ca, _va...) ret := _m.Called(_ca...) - var r0 *MsgUpdateArchiveStateResponse - if rf, ok := ret.Get(0).(func(context.Context, *MsgUpdateArchiveState, ...grpc.CallOption) *MsgUpdateArchiveStateResponse); ok { + var r0 *MsgUpdateRepositoryArchivedResponse + if rf, ok := ret.Get(0).(func(context.Context, *MsgUpdateRepositoryArchived, ...grpc.CallOption) *MsgUpdateRepositoryArchivedResponse); ok { r0 = rf(ctx, in, opts...) } else { if ret.Get(0) != nil { - r0 = ret.Get(0).(*MsgUpdateArchiveStateResponse) + r0 = ret.Get(0).(*MsgUpdateRepositoryArchivedResponse) } } var r1 error - if rf, ok := ret.Get(1).(func(context.Context, *MsgUpdateArchiveState, ...grpc.CallOption) error); ok { + if rf, ok := ret.Get(1).(func(context.Context, *MsgUpdateRepositoryArchived, ...grpc.CallOption) error); ok { r1 = rf(ctx, in, opts...) } else { r1 = ret.Error(1) diff --git a/x/gitopia/types/permission.go b/x/gitopia/types/permission.go index 0b8f96b8..59c1c4c4 100644 --- a/x/gitopia/types/permission.go +++ b/x/gitopia/types/permission.go @@ -2,26 +2,26 @@ package types /* Minimum Allowed Permissions */ const ( - AssignPermission = RepositoryCollaborator_TRIAGE - DefaultBranchPermission = RepositoryCollaborator_ADMIN - DeleteIssuePermission = RepositoryCollaborator_ADMIN - DeleteRepositoryPermission = RepositoryCollaborator_ADMIN - LabelPermission = RepositoryCollaborator_TRIAGE - LinkPullRequestIssuePermission = RepositoryCollaborator_TRIAGE - PullRequestCreatePermission = RepositoryCollaborator_WRITE - PullRequestMergePermission = RepositoryCollaborator_WRITE - PushBranchPermission = RepositoryCollaborator_WRITE - PushProtectedBranchPermission = RepositoryCollaborator_ADMIN - PushTagPermission = RepositoryCollaborator_WRITE - ReleasePermission = RepositoryCollaborator_WRITE - RepositoryCollaboratorPermission = RepositoryCollaborator_ADMIN - RepositoryLabelPermission = RepositoryCollaborator_WRITE - RepositoryRenamePermission = RepositoryCollaborator_ADMIN - RepositoryTransferOwnershipPermission = RepositoryCollaborator_ADMIN - RepositoryUpdateDescriptionPermission = RepositoryCollaborator_MAINTAIN - RepositoryUpdateArchiveStatePermission = RepositoryCollaborator_MAINTAIN - ToggleRepositoryForkingPermission = RepositoryCollaborator_ADMIN - ToggleIssueStatePermission = RepositoryCollaborator_TRIAGE - RepositoryBackupPermission = RepositoryCollaborator_ADMIN - ToggleForcePushToBranchPermission = RepositoryCollaborator_ADMIN + AssignPermission = RepositoryCollaborator_TRIAGE + DefaultBranchPermission = RepositoryCollaborator_ADMIN + DeleteIssuePermission = RepositoryCollaborator_ADMIN + DeleteRepositoryPermission = RepositoryCollaborator_ADMIN + LabelPermission = RepositoryCollaborator_TRIAGE + LinkPullRequestIssuePermission = RepositoryCollaborator_TRIAGE + PullRequestCreatePermission = RepositoryCollaborator_WRITE + PullRequestMergePermission = RepositoryCollaborator_WRITE + PushBranchPermission = RepositoryCollaborator_WRITE + PushProtectedBranchPermission = RepositoryCollaborator_ADMIN + PushTagPermission = RepositoryCollaborator_WRITE + ReleasePermission = RepositoryCollaborator_WRITE + RepositoryCollaboratorPermission = RepositoryCollaborator_ADMIN + RepositoryLabelPermission = RepositoryCollaborator_WRITE + RepositoryRenamePermission = RepositoryCollaborator_ADMIN + RepositoryTransferOwnershipPermission = RepositoryCollaborator_ADMIN + RepositoryUpdateDescriptionPermission = RepositoryCollaborator_MAINTAIN + RepositoryUpdateRepositoryArchivedPermission = RepositoryCollaborator_MAINTAIN + ToggleRepositoryForkingPermission = RepositoryCollaborator_ADMIN + ToggleIssueStatePermission = RepositoryCollaborator_TRIAGE + RepositoryBackupPermission = RepositoryCollaborator_ADMIN + ToggleForcePushToBranchPermission = RepositoryCollaborator_ADMIN ) diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index 79cddb74..0b7abbe9 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -7482,24 +7482,24 @@ func (m *MsgUpdateRepositoryDescriptionResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateRepositoryDescriptionResponse proto.InternalMessageInfo -type MsgUpdateArchiveState struct { +type MsgUpdateRepositoryArchived struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` RepositoryId RepositoryId `protobuf:"bytes,2,opt,name=repositoryId,proto3" json:"repositoryId"` Archived bool `protobuf:"varint,3,opt,name=archived,proto3" json:"archived,omitempty"` } -func (m *MsgUpdateArchiveState) Reset() { *m = MsgUpdateArchiveState{} } -func (m *MsgUpdateArchiveState) String() string { return proto.CompactTextString(m) } -func (*MsgUpdateArchiveState) ProtoMessage() {} -func (*MsgUpdateArchiveState) Descriptor() ([]byte, []int) { +func (m *MsgUpdateRepositoryArchived) Reset() { *m = MsgUpdateRepositoryArchived{} } +func (m *MsgUpdateRepositoryArchived) String() string { return proto.CompactTextString(m) } +func (*MsgUpdateRepositoryArchived) ProtoMessage() {} +func (*MsgUpdateRepositoryArchived) Descriptor() ([]byte, []int) { return fileDescriptor_a62a3f7fe5854081, []int{135} } -func (m *MsgUpdateArchiveState) XXX_Unmarshal(b []byte) error { +func (m *MsgUpdateRepositoryArchived) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *MsgUpdateArchiveState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *MsgUpdateRepositoryArchived) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_MsgUpdateArchiveState.Marshal(b, m, deterministic) + return xxx_messageInfo_MsgUpdateRepositoryArchived.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -7509,54 +7509,54 @@ func (m *MsgUpdateArchiveState) XXX_Marshal(b []byte, deterministic bool) ([]byt return b[:n], nil } } -func (m *MsgUpdateArchiveState) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgUpdateArchiveState.Merge(m, src) +func (m *MsgUpdateRepositoryArchived) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUpdateRepositoryArchived.Merge(m, src) } -func (m *MsgUpdateArchiveState) XXX_Size() int { +func (m *MsgUpdateRepositoryArchived) XXX_Size() int { return m.Size() } -func (m *MsgUpdateArchiveState) XXX_DiscardUnknown() { - xxx_messageInfo_MsgUpdateArchiveState.DiscardUnknown(m) +func (m *MsgUpdateRepositoryArchived) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUpdateRepositoryArchived.DiscardUnknown(m) } -var xxx_messageInfo_MsgUpdateArchiveState proto.InternalMessageInfo +var xxx_messageInfo_MsgUpdateRepositoryArchived proto.InternalMessageInfo -func (m *MsgUpdateArchiveState) GetCreator() string { +func (m *MsgUpdateRepositoryArchived) GetCreator() string { if m != nil { return m.Creator } return "" } -func (m *MsgUpdateArchiveState) GetRepositoryId() RepositoryId { +func (m *MsgUpdateRepositoryArchived) GetRepositoryId() RepositoryId { if m != nil { return m.RepositoryId } return RepositoryId{} } -func (m *MsgUpdateArchiveState) GetArchived() bool { +func (m *MsgUpdateRepositoryArchived) GetArchived() bool { if m != nil { return m.Archived } return false } -type MsgUpdateArchiveStateResponse struct { +type MsgUpdateRepositoryArchivedResponse struct { } -func (m *MsgUpdateArchiveStateResponse) Reset() { *m = MsgUpdateArchiveStateResponse{} } -func (m *MsgUpdateArchiveStateResponse) String() string { return proto.CompactTextString(m) } -func (*MsgUpdateArchiveStateResponse) ProtoMessage() {} -func (*MsgUpdateArchiveStateResponse) Descriptor() ([]byte, []int) { +func (m *MsgUpdateRepositoryArchivedResponse) Reset() { *m = MsgUpdateRepositoryArchivedResponse{} } +func (m *MsgUpdateRepositoryArchivedResponse) String() string { return proto.CompactTextString(m) } +func (*MsgUpdateRepositoryArchivedResponse) ProtoMessage() {} +func (*MsgUpdateRepositoryArchivedResponse) Descriptor() ([]byte, []int) { return fileDescriptor_a62a3f7fe5854081, []int{136} } -func (m *MsgUpdateArchiveStateResponse) XXX_Unmarshal(b []byte) error { +func (m *MsgUpdateRepositoryArchivedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *MsgUpdateArchiveStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *MsgUpdateRepositoryArchivedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_MsgUpdateArchiveStateResponse.Marshal(b, m, deterministic) + return xxx_messageInfo_MsgUpdateRepositoryArchivedResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -7566,17 +7566,17 @@ func (m *MsgUpdateArchiveStateResponse) XXX_Marshal(b []byte, deterministic bool return b[:n], nil } } -func (m *MsgUpdateArchiveStateResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgUpdateArchiveStateResponse.Merge(m, src) +func (m *MsgUpdateRepositoryArchivedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUpdateRepositoryArchivedResponse.Merge(m, src) } -func (m *MsgUpdateArchiveStateResponse) XXX_Size() int { +func (m *MsgUpdateRepositoryArchivedResponse) XXX_Size() int { return m.Size() } -func (m *MsgUpdateArchiveStateResponse) XXX_DiscardUnknown() { - xxx_messageInfo_MsgUpdateArchiveStateResponse.DiscardUnknown(m) +func (m *MsgUpdateRepositoryArchivedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUpdateRepositoryArchivedResponse.DiscardUnknown(m) } -var xxx_messageInfo_MsgUpdateArchiveStateResponse proto.InternalMessageInfo +var xxx_messageInfo_MsgUpdateRepositoryArchivedResponse proto.InternalMessageInfo type MsgChangeOwner struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` @@ -9195,8 +9195,8 @@ func init() { proto.RegisterType((*MsgRenameRepositoryResponse)(nil), "gitopia.gitopia.gitopia.MsgRenameRepositoryResponse") proto.RegisterType((*MsgUpdateRepositoryDescription)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryDescription") proto.RegisterType((*MsgUpdateRepositoryDescriptionResponse)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryDescriptionResponse") - proto.RegisterType((*MsgUpdateArchiveState)(nil), "gitopia.gitopia.gitopia.MsgUpdateArchiveState") - proto.RegisterType((*MsgUpdateArchiveStateResponse)(nil), "gitopia.gitopia.gitopia.MsgUpdateArchiveStateResponse") + proto.RegisterType((*MsgUpdateRepositoryArchived)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryArchived") + proto.RegisterType((*MsgUpdateRepositoryArchivedResponse)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryArchivedResponse") proto.RegisterType((*MsgChangeOwner)(nil), "gitopia.gitopia.gitopia.MsgChangeOwner") proto.RegisterType((*MsgChangeOwnerResponse)(nil), "gitopia.gitopia.gitopia.MsgChangeOwnerResponse") proto.RegisterType((*MsgUpdateRepositoryCollaborator)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryCollaborator") @@ -9591,7 +9591,7 @@ type MsgClient interface { ForkRepositorySuccess(ctx context.Context, in *MsgForkRepositorySuccess, opts ...grpc.CallOption) (*MsgForkRepositorySuccessResponse, error) RenameRepository(ctx context.Context, in *MsgRenameRepository, opts ...grpc.CallOption) (*MsgRenameRepositoryResponse, error) UpdateRepositoryDescription(ctx context.Context, in *MsgUpdateRepositoryDescription, opts ...grpc.CallOption) (*MsgUpdateRepositoryDescriptionResponse, error) - UpdateArchiveState(ctx context.Context, in *MsgUpdateArchiveState, opts ...grpc.CallOption) (*MsgUpdateArchiveStateResponse, error) + UpdateRepositoryArchived(ctx context.Context, in *MsgUpdateRepositoryArchived, opts ...grpc.CallOption) (*MsgUpdateRepositoryArchivedResponse, error) ChangeOwner(ctx context.Context, in *MsgChangeOwner, opts ...grpc.CallOption) (*MsgChangeOwnerResponse, error) UpdateRepositoryCollaborator(ctx context.Context, in *MsgUpdateRepositoryCollaborator, opts ...grpc.CallOption) (*MsgUpdateRepositoryCollaboratorResponse, error) RemoveRepositoryCollaborator(ctx context.Context, in *MsgRemoveRepositoryCollaborator, opts ...grpc.CallOption) (*MsgRemoveRepositoryCollaboratorResponse, error) @@ -10197,9 +10197,9 @@ func (c *msgClient) UpdateRepositoryDescription(ctx context.Context, in *MsgUpda return out, nil } -func (c *msgClient) UpdateArchiveState(ctx context.Context, in *MsgUpdateArchiveState, opts ...grpc.CallOption) (*MsgUpdateArchiveStateResponse, error) { - out := new(MsgUpdateArchiveStateResponse) - err := c.cc.Invoke(ctx, "/gitopia.gitopia.gitopia.Msg/UpdateArchiveState", in, out, opts...) +func (c *msgClient) UpdateRepositoryArchived(ctx context.Context, in *MsgUpdateRepositoryArchived, opts ...grpc.CallOption) (*MsgUpdateRepositoryArchivedResponse, error) { + out := new(MsgUpdateRepositoryArchivedResponse) + err := c.cc.Invoke(ctx, "/gitopia.gitopia.gitopia.Msg/UpdateRepositoryArchived", in, out, opts...) if err != nil { return nil, err } @@ -10436,7 +10436,7 @@ type MsgServer interface { ForkRepositorySuccess(context.Context, *MsgForkRepositorySuccess) (*MsgForkRepositorySuccessResponse, error) RenameRepository(context.Context, *MsgRenameRepository) (*MsgRenameRepositoryResponse, error) UpdateRepositoryDescription(context.Context, *MsgUpdateRepositoryDescription) (*MsgUpdateRepositoryDescriptionResponse, error) - UpdateArchiveState(context.Context, *MsgUpdateArchiveState) (*MsgUpdateArchiveStateResponse, error) + UpdateRepositoryArchived(context.Context, *MsgUpdateRepositoryArchived) (*MsgUpdateRepositoryArchivedResponse, error) ChangeOwner(context.Context, *MsgChangeOwner) (*MsgChangeOwnerResponse, error) UpdateRepositoryCollaborator(context.Context, *MsgUpdateRepositoryCollaborator) (*MsgUpdateRepositoryCollaboratorResponse, error) RemoveRepositoryCollaborator(context.Context, *MsgRemoveRepositoryCollaborator) (*MsgRemoveRepositoryCollaboratorResponse, error) @@ -10654,8 +10654,8 @@ func (*UnimplementedMsgServer) RenameRepository(ctx context.Context, req *MsgRen func (*UnimplementedMsgServer) UpdateRepositoryDescription(ctx context.Context, req *MsgUpdateRepositoryDescription) (*MsgUpdateRepositoryDescriptionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateRepositoryDescription not implemented") } -func (*UnimplementedMsgServer) UpdateArchiveState(ctx context.Context, req *MsgUpdateArchiveState) (*MsgUpdateArchiveStateResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method UpdateArchiveState not implemented") +func (*UnimplementedMsgServer) UpdateRepositoryArchived(ctx context.Context, req *MsgUpdateRepositoryArchived) (*MsgUpdateRepositoryArchivedResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method UpdateRepositoryArchived not implemented") } func (*UnimplementedMsgServer) ChangeOwner(ctx context.Context, req *MsgChangeOwner) (*MsgChangeOwnerResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ChangeOwner not implemented") @@ -11868,20 +11868,20 @@ func _Msg_UpdateRepositoryDescription_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } -func _Msg_UpdateArchiveState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(MsgUpdateArchiveState) +func _Msg_UpdateRepositoryArchived_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgUpdateRepositoryArchived) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(MsgServer).UpdateArchiveState(ctx, in) + return srv.(MsgServer).UpdateRepositoryArchived(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/gitopia.gitopia.gitopia.Msg/UpdateArchiveState", + FullMethod: "/gitopia.gitopia.gitopia.Msg/UpdateRepositoryArchived", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(MsgServer).UpdateArchiveState(ctx, req.(*MsgUpdateArchiveState)) + return srv.(MsgServer).UpdateRepositoryArchived(ctx, req.(*MsgUpdateRepositoryArchived)) } return interceptor(ctx, in, info, handler) } @@ -12471,8 +12471,8 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ Handler: _Msg_UpdateRepositoryDescription_Handler, }, { - MethodName: "UpdateArchiveState", - Handler: _Msg_UpdateArchiveState_Handler, + MethodName: "UpdateRepositoryArchived", + Handler: _Msg_UpdateRepositoryArchived_Handler, }, { MethodName: "ChangeOwner", @@ -17914,7 +17914,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) MarshalToSizedBuffer(dAtA []byt return len(dAtA) - i, nil } -func (m *MsgUpdateArchiveState) Marshal() (dAtA []byte, err error) { +func (m *MsgUpdateRepositoryArchived) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -17924,12 +17924,12 @@ func (m *MsgUpdateArchiveState) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *MsgUpdateArchiveState) MarshalTo(dAtA []byte) (int, error) { +func (m *MsgUpdateRepositoryArchived) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *MsgUpdateArchiveState) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *MsgUpdateRepositoryArchived) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -17964,7 +17964,7 @@ func (m *MsgUpdateArchiveState) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *MsgUpdateArchiveStateResponse) Marshal() (dAtA []byte, err error) { +func (m *MsgUpdateRepositoryArchivedResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -17974,12 +17974,12 @@ func (m *MsgUpdateArchiveStateResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *MsgUpdateArchiveStateResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *MsgUpdateRepositoryArchivedResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *MsgUpdateArchiveStateResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *MsgUpdateRepositoryArchivedResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -21425,7 +21425,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Size() (n int) { return n } -func (m *MsgUpdateArchiveState) Size() (n int) { +func (m *MsgUpdateRepositoryArchived) Size() (n int) { if m == nil { return 0 } @@ -21443,7 +21443,7 @@ func (m *MsgUpdateArchiveState) Size() (n int) { return n } -func (m *MsgUpdateArchiveStateResponse) Size() (n int) { +func (m *MsgUpdateRepositoryArchivedResponse) Size() (n int) { if m == nil { return 0 } @@ -37605,7 +37605,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgUpdateArchiveState) Unmarshal(dAtA []byte) error { +func (m *MsgUpdateRepositoryArchived) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -37628,10 +37628,10 @@ func (m *MsgUpdateArchiveState) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MsgUpdateArchiveState: wiretype end group for non-group") + return fmt.Errorf("proto: MsgUpdateRepositoryArchived: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MsgUpdateArchiveState: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MsgUpdateRepositoryArchived: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -37740,7 +37740,7 @@ func (m *MsgUpdateArchiveState) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgUpdateArchiveStateResponse) Unmarshal(dAtA []byte) error { +func (m *MsgUpdateRepositoryArchivedResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -37763,10 +37763,10 @@ func (m *MsgUpdateArchiveStateResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MsgUpdateArchiveStateResponse: wiretype end group for non-group") + return fmt.Errorf("proto: MsgUpdateRepositoryArchivedResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MsgUpdateArchiveStateResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MsgUpdateRepositoryArchivedResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: From b71cfc5917b965c04fc786b50b120aa5207220ea Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 17:40:32 +0700 Subject: [PATCH 15/26] add unit test --- .../keeper/msg_server_repository_test.go | 51 +++++++++++++++++ x/gitopia/types/messages_repository_test.go | 56 +++++++++++++++++++ 2 files changed, 107 insertions(+) diff --git a/x/gitopia/keeper/msg_server_repository_test.go b/x/gitopia/keeper/msg_server_repository_test.go index d5ee2c17..629e71dd 100644 --- a/x/gitopia/keeper/msg_server_repository_test.go +++ b/x/gitopia/keeper/msg_server_repository_test.go @@ -579,6 +579,57 @@ func TestRepositoryMsgServerDelete(t *testing.T) { } } +func TestRepositoryMsgServerUpdateArchived(t *testing.T) { + srv, ctx := setupMsgServer(t) + users := setupPreRepository(ctx, t, srv) + repositoryId := types.RepositoryId{ + Id: users[0], + Name: "repository", + } + _, err := srv.CreateRepository(ctx, &types.MsgCreateRepository{Creator: repositoryId.Id, Name: repositoryId.Name, Owner: repositoryId.Id}) + require.NoError(t, err) + + for _, tc := range []struct { + desc string + request *types.MsgUpdateRepositoryArchived + err error + }{ + { + desc: "Creator Not Exists", + request: &types.MsgUpdateRepositoryArchived{Creator: "X", RepositoryId: repositoryId, Archived: true}, + err: sdkerrors.ErrKeyNotFound, + }, + { + desc: "Repository Not Exists", + request: &types.MsgUpdateRepositoryArchived{Creator: users[0], RepositoryId: types.RepositoryId{Id: users[0], Name: "name"}, Archived: true}, + err: sdkerrors.ErrKeyNotFound, + }, + { + desc: "Unauthorized", + request: &types.MsgUpdateRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, + err: sdkerrors.ErrUnauthorized, + }, + { + desc: "Unauthorized Self", + request: &types.MsgUpdateRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, + err: sdkerrors.ErrUnauthorized, + }, + { + desc: "Completed", + request: &types.MsgUpdateRepositoryArchived{Creator: users[0], RepositoryId: repositoryId, Archived: true}, + }, + } { + t.Run(tc.desc, func(t *testing.T) { + _, err = srv.UpdateRepositoryArchived(ctx, tc.request) + if tc.err != nil { + require.ErrorIs(t, err, tc.err) + } else { + require.NoError(t, err) + } + }) + } +} + func setupPreRepository(ctx context.Context, t *testing.T, srv types.MsgServer) (users []string) { users = append(users, "A", "B", "C") diff --git a/x/gitopia/types/messages_repository_test.go b/x/gitopia/types/messages_repository_test.go index a481a435..e07ee06c 100644 --- a/x/gitopia/types/messages_repository_test.go +++ b/x/gitopia/types/messages_repository_test.go @@ -240,6 +240,62 @@ func TestMsgUpdateRepositoryCollaborator_ValidateBasic(t *testing.T) { } } +func TestMsgUpdateRepositoryArchived_ValidateBasic(t *testing.T) { + repositoryId := RepositoryId{ + Id: sample.AccAddress(), + Name: "repository", + } + + tests := []struct { + name string + msg MsgUpdateRepositoryArchived + err error + }{ + { + name: "invalid creator address", + msg: MsgUpdateRepositoryArchived{ + Creator: "invalid_address", + RepositoryId: repositoryId, + Archived: true, + }, + err: sdkerrors.ErrInvalidAddress, + }, { + name: "valid MsgUpdateRepositoryArchived", + msg: MsgUpdateRepositoryArchived{ + Creator: sample.AccAddress(), + RepositoryId: repositoryId, + Archived: true, + }, + }, { + name: "invalid user id", + msg: MsgUpdateRepositoryArchived{ + Creator: sample.AccAddress(), + RepositoryId: repositoryId, + Archived: true, + }, + err: sdkerrors.ErrInvalidRequest, + }, { + name: "invalid user role", + msg: MsgUpdateRepositoryArchived{ + Creator: sample.AccAddress(), + RepositoryId: repositoryId, + Archived: true, + }, + err: sdkerrors.ErrInvalidRequest, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + err := tt.msg.ValidateBasic() + if tt.err != nil { + require.ErrorIs(t, err, tt.err) + return + } + require.NoError(t, err) + }) + } +} + func TestMsgRemoveRepositoryCollaborator_ValidateBasic(t *testing.T) { repositoryId := RepositoryId{ Id: sample.AccAddress(), From 2bbbfa2ca17e1653b703df10454222101febe004 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 17:44:50 +0700 Subject: [PATCH 16/26] fix unit test --- x/gitopia/types/messages_repository_test.go | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/x/gitopia/types/messages_repository_test.go b/x/gitopia/types/messages_repository_test.go index e07ee06c..a26202b2 100644 --- a/x/gitopia/types/messages_repository_test.go +++ b/x/gitopia/types/messages_repository_test.go @@ -266,22 +266,6 @@ func TestMsgUpdateRepositoryArchived_ValidateBasic(t *testing.T) { RepositoryId: repositoryId, Archived: true, }, - }, { - name: "invalid user id", - msg: MsgUpdateRepositoryArchived{ - Creator: sample.AccAddress(), - RepositoryId: repositoryId, - Archived: true, - }, - err: sdkerrors.ErrInvalidRequest, - }, { - name: "invalid user role", - msg: MsgUpdateRepositoryArchived{ - Creator: sample.AccAddress(), - RepositoryId: repositoryId, - Archived: true, - }, - err: sdkerrors.ErrInvalidRequest, }, } for _, tt := range tests { From c77b7c2f0d090ccf39311280083ae58840b8b70a Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 23:44:12 +0700 Subject: [PATCH 17/26] proto gen by ignite --- Makefile | 20 +- go.mod | 3 + go.sum | 9 + scripts/protocgen.sh | 31 -- x/gitopia/types/exercised_amount.pb.go | 4 +- x/gitopia/types/params.pb.go | 14 +- x/gitopia/types/query.pb.gw.go | 94 ++-- x/gitopia/types/tx.pb.go | 695 +++++++++++++------------ 8 files changed, 420 insertions(+), 450 deletions(-) delete mode 100644 scripts/protocgen.sh diff --git a/Makefile b/Makefile index d3720923..6ec31fbd 100644 --- a/Makefile +++ b/Makefile @@ -150,22 +150,4 @@ test: mocks: go install github.com/vektra/mockery/v2@latest mockery --name MsgClient --inpackage --case snake --dir ./x/gitopia/types - mockery --name QueryClient --inpackage --case snake --dir ./x/gitopia/types - -############################################################################### -### Proto ### -############################################################################### - -protoVer=0.11.6 -protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer) -containerProtoGen=proto-gen-$(protoVer) -containerProtoFmt=proto-fmt-$(protoVer) - -proto-all: proto-gen - -proto-gen: - @echo "Generating Protobuf files" - @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoGen}$$"; then docker start -a $(containerProtoGen); else docker run --name $(containerProtoGen) -v $(CURDIR):/workspace --workdir /workspace $(protoImageName) \ - sh ./scripts/protocgen.sh; fi - -.PHONY: proto-all proto-gen \ No newline at end of file + mockery --name QueryClient --inpackage --case snake --dir ./x/gitopia/types \ No newline at end of file diff --git a/go.mod b/go.mod index 37f2c1d1..66198ee5 100644 --- a/go.mod +++ b/go.mod @@ -146,6 +146,8 @@ require ( ) require ( + github.com/cosmos/gogoproto v1.4.10 + github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 github.com/ipfs/go-cid v0.3.2 golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0 google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc @@ -161,6 +163,7 @@ require ( github.com/cometbft/cometbft-db v0.7.0 // indirect github.com/creachadair/taskgroup v0.3.2 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect + github.com/ghodss/yaml v1.0.0 // indirect github.com/klauspost/cpuid/v2 v2.0.4 // indirect github.com/manifoldco/promptui v0.9.0 // indirect github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect diff --git a/go.sum b/go.sum index 409b7198..05039d4b 100644 --- a/go.sum +++ b/go.sum @@ -223,12 +223,15 @@ github.com/cosmos/cosmos-sdk v0.46.13/go.mod h1:EfY521ATNEla8eJ6oJuZBdgP5+p360s7 github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= +github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoKuI= +github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek= github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y= github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw= github.com/cosmos/iavl v0.19.6 h1:XY78yEeNPrEYyNCKlqr9chrwoeSDJ0bV2VjocTk//OU= github.com/cosmos/iavl v0.19.6/go.mod h1:X9PKD3J0iFxdmgNLa7b2LYWdsGd90ToV5cAONApkEPw= github.com/cosmos/ledger-cosmos-go v0.12.2 h1:/XYaBlE2BJxtvpkHiBm97gFGSGmYGKunKyF3nNqAXZA= github.com/cosmos/ledger-cosmos-go v0.12.2/go.mod h1:ZcqYgnfNJ6lAXe4HPtWgarNEY+B74i+2/8MhZw4ziiI= +github.com/cosmos/ledger-go v0.9.2/go.mod h1:oZJ2hHAZROdlHiwTg4t7kP+GKIIkBT+o6c9QWFanOyI= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= @@ -314,6 +317,7 @@ github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbS github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= +github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= @@ -386,6 +390,7 @@ github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -486,6 +491,8 @@ github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 h1:YBftPWNWd4WwGqtY2yeZL2ef8rHAxPBD8KFhJpmcqms= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0/go.mod h1:YN5jB8ie0yfIUg6VvR9Kz84aCaG7AsGZnLjhHbUqwPg= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/gtank/merlin v0.1.1-0.20191105220539-8318aed1a79f/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= @@ -583,6 +590,7 @@ github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/u github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= @@ -699,6 +707,7 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= github.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8= github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh deleted file mode 100644 index 8d750717..00000000 --- a/scripts/protocgen.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env bash - -set -eo pipefail - -# get protoc executions -go get github.com/regen-network/cosmos-proto/protoc-gen-gocosmos 2>/dev/null - -# get cosmos sdk from github -# go get github.com/cosmos/cosmos-sdk 2>/dev/null - -echo "Generating gogo proto code" -cd proto -proto_dirs=$(find ./gitopia -path -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq) -for dir in $proto_dirs; do - for file in $(find "${dir}" -maxdepth 1 -name '*.proto'); do - if grep go_package $file &>/dev/null; then - buf generate --template buf.gen.gogo.yaml $file - fi - done -done - -cd .. - -# move proto files to the right places -# -cp -r github.com/gitopia/gitopia/* ./ - -# Note: Proto files are suffixed with the current binary version. -rm -rf github.com - -go mod tidy -compat=1.19 \ No newline at end of file diff --git a/x/gitopia/types/exercised_amount.pb.go b/x/gitopia/types/exercised_amount.pb.go index 51bce8f1..0b7e731b 100644 --- a/x/gitopia/types/exercised_amount.pb.go +++ b/x/gitopia/types/exercised_amount.pb.go @@ -80,9 +80,7 @@ func init() { proto.RegisterType((*ExercisedAmount)(nil), "gitopia.gitopia.gitopia.ExercisedAmount") } -func init() { - proto.RegisterFile("gitopia/exercised_amount.proto", fileDescriptor_e2f495f5b056fe64) -} +func init() { proto.RegisterFile("gitopia/exercised_amount.proto", fileDescriptor_e2f495f5b056fe64) } var fileDescriptor_e2f495f5b056fe64 = []byte{ // 252 bytes of a gzipped FileDescriptorProto diff --git a/x/gitopia/types/params.pb.go b/x/gitopia/types/params.pb.go index b09a021d..bbace268 100644 --- a/x/gitopia/types/params.pb.go +++ b/x/gitopia/types/params.pb.go @@ -8,7 +8,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - github_com_cosmos_gogoproto_types "github.com/gogo/protobuf/types" + github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -377,7 +377,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x2a } - n3, err3 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.GenesisTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.GenesisTime):]) + n3, err3 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.GenesisTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.GenesisTime):]) if err3 != nil { return 0, err3 } @@ -409,7 +409,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x12 - n5, err5 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.NextInflationTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.NextInflationTime):]) + n5, err5 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.NextInflationTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.NextInflationTime):]) if err5 != nil { return 0, err5 } @@ -469,7 +469,7 @@ func (m *Params) Size() (n int) { } var l int _ = l - l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.NextInflationTime) + l = github_com_gogo_protobuf_types.SizeOfStdTime(m.NextInflationTime) n += 1 + l + sovParams(uint64(l)) l = m.PoolProportions.Size() n += 1 + l + sovParams(uint64(l)) @@ -479,7 +479,7 @@ func (m *Params) Size() (n int) { n += 1 + l + sovParams(uint64(l)) } } - l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.GenesisTime) + l = github_com_gogo_protobuf_types.SizeOfStdTime(m.GenesisTime) n += 1 + l + sovParams(uint64(l)) l = len(m.GitServer) if l > 0 { @@ -794,7 +794,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.NextInflationTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.NextInflationTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -894,7 +894,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.GenesisTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.GenesisTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/gitopia/types/query.pb.gw.go b/x/gitopia/types/query.pb.gw.go index bc8bfe66..0c1ea847 100644 --- a/x/gitopia/types/query.pb.gw.go +++ b/x/gitopia/types/query.pb.gw.go @@ -5333,99 +5333,99 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_VestedAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "vestedAmount", "address"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_VestedAmount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "vestedAmount", "address"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Task_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "task", "id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Task_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "task", "id"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_TaskAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "task"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_TaskAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "task"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_BranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "branch"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_BranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "branch"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryBranch_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryBranch_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryBranchSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName", "sha"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryBranchSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "branch", "branchName", "sha"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryBranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "branch"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryBranchAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "branch"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_TagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "tag"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_TagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "tag"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryTag_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryTag_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryTagSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName", "sha"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryTagSha_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"gitopia", "id", "repository", "repositoryName", "tag", "tagName", "sha"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryTagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "tag"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryTagAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "tag"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_DaoMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "dao", "daoId", "member", "userId"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DaoMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "dao", "daoId", "member", "userId"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_DaoMemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "dao", "daoId", "member"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DaoMemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "dao", "daoId", "member"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_MemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "member"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_MemberAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "member"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Bounty_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "bounty", "id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Bounty_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "bounty", "id"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_BountyAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "bounty"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_BountyAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "bounty"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Release_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "release", "id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Release_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "release", "id"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_ReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "release"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_ReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "release"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_PullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "pullRequest"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_PullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "pullRequest"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Dao_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "dao", "id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Dao_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "dao", "id"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_DaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "dao"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "dao"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_IssueComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_IssueComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_PullRequestComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_PullRequestComment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment", "commentIid"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_CommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "comment"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_CommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "comment"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_IssueCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_IssueCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "issue", "issueIid", "comment"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_PullRequestCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_PullRequestCommentAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5}, []string{"gitopia", "repository", "repositoryId", "pullrequest", "pullRequestIid", "comment"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_IssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "issue"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_IssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "issue"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryReleaseLatest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "latest"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryReleaseLatest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "latest"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryRelease_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryRelease_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5, 1, 0, 4, 1, 5, 6}, []string{"gitopia", "id", "repository", "repositoryName", "releases", "tag", "tagName"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "releases"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryReleaseAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "releases"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryIssue_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "issue", "issueIid"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryIssue_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "issue", "issueIid"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryIssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "issue"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryIssueAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "issue"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryPullRequest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "pull", "pullIid"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryPullRequest_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "id", "repositoryName", "pull", "pullIid"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryPullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "pull"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryPullRequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "id", "repositoryName", "pull"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Repository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "repository", "id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Repository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "repository", "id"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "repository"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "repository"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_ForkAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "forks"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_ForkAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"gitopia", "id", "repository", "repositoryName", "forks"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_User_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "user", "id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_User_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "user", "id"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_UserDaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "userId", "dao"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_UserDaoAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "userId", "dao"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_UserAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "user"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_UserAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "user"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_AnyRepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "id", "repository"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_AnyRepositoryAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3}, []string{"gitopia", "user", "id", "repository"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_AnyRepository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "user", "id", "repository", "repositoryName"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_AnyRepository_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "user", "id", "repository", "repositoryName"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Whois_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "whois", "name"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Whois_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "whois", "name"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_WhoisAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "whois"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_WhoisAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1}, []string{"gitopia", "whois"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_PullRequestMergePermission_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6, 2, 7}, []string{"gitopia", "permissions", "userId", "repository", "repositoryId", "pull", "pullIid", "merge"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_PullRequestMergePermission_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2, 2, 3, 1, 0, 4, 1, 5, 4, 2, 5, 1, 0, 4, 1, 5, 6, 2, 7}, []string{"gitopia", "permissions", "userId", "repository", "repositoryId", "pull", "pullIid", "merge"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_CheckGitServerAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "git-server", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_CheckGitServerAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "git-server", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_CheckStorageProviderAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "storage-provider", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_CheckStorageProviderAuthorization_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"gitopia", "authorizations", "storage-provider", "userAddress", "providerAddress"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index 08c33a6b..97332bef 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -5828,7 +5828,7 @@ func (m *MsgToggleCommentResolved) Reset() { *m = MsgToggleCommentResolv func (m *MsgToggleCommentResolved) String() string { return proto.CompactTextString(m) } func (*MsgToggleCommentResolved) ProtoMessage() {} func (*MsgToggleCommentResolved) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{103} + return fileDescriptor_a62a3f7fe5854081, []int{105} } func (m *MsgToggleCommentResolved) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5900,7 +5900,7 @@ func (m *MsgToggleCommentResolvedResponse) Reset() { *m = MsgToggleComme func (m *MsgToggleCommentResolvedResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleCommentResolvedResponse) ProtoMessage() {} func (*MsgToggleCommentResolvedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{104} + return fileDescriptor_a62a3f7fe5854081, []int{106} } func (m *MsgToggleCommentResolvedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5952,7 +5952,7 @@ func (m *MsgCreateIssue) Reset() { *m = MsgCreateIssue{} } func (m *MsgCreateIssue) String() string { return proto.CompactTextString(m) } func (*MsgCreateIssue) ProtoMessage() {} func (*MsgCreateIssue) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{105} + return fileDescriptor_a62a3f7fe5854081, []int{107} } func (m *MsgCreateIssue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6053,7 +6053,7 @@ func (m *MsgCreateIssueResponse) Reset() { *m = MsgCreateIssueResponse{} func (m *MsgCreateIssueResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateIssueResponse) ProtoMessage() {} func (*MsgCreateIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{106} + return fileDescriptor_a62a3f7fe5854081, []int{108} } func (m *MsgCreateIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6107,7 +6107,7 @@ func (m *MsgUpdateIssueTitle) Reset() { *m = MsgUpdateIssueTitle{} } func (m *MsgUpdateIssueTitle) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueTitle) ProtoMessage() {} func (*MsgUpdateIssueTitle) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{107} + return fileDescriptor_a62a3f7fe5854081, []int{109} } func (m *MsgUpdateIssueTitle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6171,7 +6171,7 @@ func (m *MsgUpdateIssueTitleResponse) Reset() { *m = MsgUpdateIssueTitle func (m *MsgUpdateIssueTitleResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueTitleResponse) ProtoMessage() {} func (*MsgUpdateIssueTitleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{108} + return fileDescriptor_a62a3f7fe5854081, []int{110} } func (m *MsgUpdateIssueTitleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6211,7 +6211,7 @@ func (m *MsgUpdateIssueDescription) Reset() { *m = MsgUpdateIssueDescrip func (m *MsgUpdateIssueDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueDescription) ProtoMessage() {} func (*MsgUpdateIssueDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{109} + return fileDescriptor_a62a3f7fe5854081, []int{111} } func (m *MsgUpdateIssueDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6275,7 +6275,7 @@ func (m *MsgUpdateIssueDescriptionResponse) Reset() { *m = MsgUpdateIssu func (m *MsgUpdateIssueDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateIssueDescriptionResponse) ProtoMessage() {} func (*MsgUpdateIssueDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{110} + return fileDescriptor_a62a3f7fe5854081, []int{112} } func (m *MsgUpdateIssueDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6315,7 +6315,7 @@ func (m *MsgToggleIssueState) Reset() { *m = MsgToggleIssueState{} } func (m *MsgToggleIssueState) String() string { return proto.CompactTextString(m) } func (*MsgToggleIssueState) ProtoMessage() {} func (*MsgToggleIssueState) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{111} + return fileDescriptor_a62a3f7fe5854081, []int{113} } func (m *MsgToggleIssueState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6380,7 +6380,7 @@ func (m *MsgToggleIssueStateResponse) Reset() { *m = MsgToggleIssueState func (m *MsgToggleIssueStateResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleIssueStateResponse) ProtoMessage() {} func (*MsgToggleIssueStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{112} + return fileDescriptor_a62a3f7fe5854081, []int{114} } func (m *MsgToggleIssueStateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6427,7 +6427,7 @@ func (m *MsgAddIssueAssignees) Reset() { *m = MsgAddIssueAssignees{} } func (m *MsgAddIssueAssignees) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueAssignees) ProtoMessage() {} func (*MsgAddIssueAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{113} + return fileDescriptor_a62a3f7fe5854081, []int{115} } func (m *MsgAddIssueAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6491,7 +6491,7 @@ func (m *MsgAddIssueAssigneesResponse) Reset() { *m = MsgAddIssueAssigne func (m *MsgAddIssueAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueAssigneesResponse) ProtoMessage() {} func (*MsgAddIssueAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{114} + return fileDescriptor_a62a3f7fe5854081, []int{116} } func (m *MsgAddIssueAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6531,7 +6531,7 @@ func (m *MsgRemoveIssueAssignees) Reset() { *m = MsgRemoveIssueAssignees func (m *MsgRemoveIssueAssignees) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueAssignees) ProtoMessage() {} func (*MsgRemoveIssueAssignees) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{115} + return fileDescriptor_a62a3f7fe5854081, []int{117} } func (m *MsgRemoveIssueAssignees) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6595,7 +6595,7 @@ func (m *MsgRemoveIssueAssigneesResponse) Reset() { *m = MsgRemoveIssueA func (m *MsgRemoveIssueAssigneesResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueAssigneesResponse) ProtoMessage() {} func (*MsgRemoveIssueAssigneesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{116} + return fileDescriptor_a62a3f7fe5854081, []int{118} } func (m *MsgRemoveIssueAssigneesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6635,7 +6635,7 @@ func (m *MsgAddIssueLabels) Reset() { *m = MsgAddIssueLabels{} } func (m *MsgAddIssueLabels) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueLabels) ProtoMessage() {} func (*MsgAddIssueLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{117} + return fileDescriptor_a62a3f7fe5854081, []int{119} } func (m *MsgAddIssueLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6699,7 +6699,7 @@ func (m *MsgAddIssueLabelsResponse) Reset() { *m = MsgAddIssueLabelsResp func (m *MsgAddIssueLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddIssueLabelsResponse) ProtoMessage() {} func (*MsgAddIssueLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{118} + return fileDescriptor_a62a3f7fe5854081, []int{120} } func (m *MsgAddIssueLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6739,7 +6739,7 @@ func (m *MsgRemoveIssueLabels) Reset() { *m = MsgRemoveIssueLabels{} } func (m *MsgRemoveIssueLabels) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueLabels) ProtoMessage() {} func (*MsgRemoveIssueLabels) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{119} + return fileDescriptor_a62a3f7fe5854081, []int{121} } func (m *MsgRemoveIssueLabels) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6803,7 +6803,7 @@ func (m *MsgRemoveIssueLabelsResponse) Reset() { *m = MsgRemoveIssueLabe func (m *MsgRemoveIssueLabelsResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveIssueLabelsResponse) ProtoMessage() {} func (*MsgRemoveIssueLabelsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{120} + return fileDescriptor_a62a3f7fe5854081, []int{122} } func (m *MsgRemoveIssueLabelsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6842,7 +6842,7 @@ func (m *MsgDeleteIssue) Reset() { *m = MsgDeleteIssue{} } func (m *MsgDeleteIssue) String() string { return proto.CompactTextString(m) } func (*MsgDeleteIssue) ProtoMessage() {} func (*MsgDeleteIssue) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{121} + return fileDescriptor_a62a3f7fe5854081, []int{123} } func (m *MsgDeleteIssue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6899,7 +6899,7 @@ func (m *MsgDeleteIssueResponse) Reset() { *m = MsgDeleteIssueResponse{} func (m *MsgDeleteIssueResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteIssueResponse) ProtoMessage() {} func (*MsgDeleteIssueResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{122} + return fileDescriptor_a62a3f7fe5854081, []int{124} } func (m *MsgDeleteIssueResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6939,7 +6939,7 @@ func (m *MsgCreateRepository) Reset() { *m = MsgCreateRepository{} } func (m *MsgCreateRepository) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepository) ProtoMessage() {} func (*MsgCreateRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{123} + return fileDescriptor_a62a3f7fe5854081, []int{125} } func (m *MsgCreateRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7004,7 +7004,7 @@ func (m *MsgCreateRepositoryResponse) Reset() { *m = MsgCreateRepository func (m *MsgCreateRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryResponse) ProtoMessage() {} func (*MsgCreateRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{124} + return fileDescriptor_a62a3f7fe5854081, []int{126} } func (m *MsgCreateRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7054,7 +7054,7 @@ func (m *MsgInvokeForkRepository) Reset() { *m = MsgInvokeForkRepository func (m *MsgInvokeForkRepository) String() string { return proto.CompactTextString(m) } func (*MsgInvokeForkRepository) ProtoMessage() {} func (*MsgInvokeForkRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{125} + return fileDescriptor_a62a3f7fe5854081, []int{127} } func (m *MsgInvokeForkRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7139,7 +7139,7 @@ func (m *MsgInvokeForkRepositoryResponse) Reset() { *m = MsgInvokeForkRe func (m *MsgInvokeForkRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgInvokeForkRepositoryResponse) ProtoMessage() {} func (*MsgInvokeForkRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{126} + return fileDescriptor_a62a3f7fe5854081, []int{128} } func (m *MsgInvokeForkRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7182,7 +7182,7 @@ func (m *MsgForkRepository) Reset() { *m = MsgForkRepository{} } func (m *MsgForkRepository) String() string { return proto.CompactTextString(m) } func (*MsgForkRepository) ProtoMessage() {} func (*MsgForkRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{127} + return fileDescriptor_a62a3f7fe5854081, []int{129} } func (m *MsgForkRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7268,7 +7268,7 @@ func (m *MsgForkRepositoryResponse) Reset() { *m = MsgForkRepositoryResp func (m *MsgForkRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositoryResponse) ProtoMessage() {} func (*MsgForkRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{128} + return fileDescriptor_a62a3f7fe5854081, []int{130} } func (m *MsgForkRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7314,7 +7314,7 @@ func (m *MsgForkRepositorySuccess) Reset() { *m = MsgForkRepositorySucce func (m *MsgForkRepositorySuccess) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositorySuccess) ProtoMessage() {} func (*MsgForkRepositorySuccess) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{129} + return fileDescriptor_a62a3f7fe5854081, []int{131} } func (m *MsgForkRepositorySuccess) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7372,7 +7372,7 @@ func (m *MsgForkRepositorySuccessResponse) Reset() { *m = MsgForkReposit func (m *MsgForkRepositorySuccessResponse) String() string { return proto.CompactTextString(m) } func (*MsgForkRepositorySuccessResponse) ProtoMessage() {} func (*MsgForkRepositorySuccessResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{130} + return fileDescriptor_a62a3f7fe5854081, []int{132} } func (m *MsgForkRepositorySuccessResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7418,7 +7418,7 @@ func (m *MsgRenameRepository) Reset() { *m = MsgRenameRepository{} } func (m *MsgRenameRepository) String() string { return proto.CompactTextString(m) } func (*MsgRenameRepository) ProtoMessage() {} func (*MsgRenameRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{131} + return fileDescriptor_a62a3f7fe5854081, []int{133} } func (m *MsgRenameRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7475,7 +7475,7 @@ func (m *MsgRenameRepositoryResponse) Reset() { *m = MsgRenameRepository func (m *MsgRenameRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgRenameRepositoryResponse) ProtoMessage() {} func (*MsgRenameRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{132} + return fileDescriptor_a62a3f7fe5854081, []int{134} } func (m *MsgRenameRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7514,7 +7514,7 @@ func (m *MsgUpdateRepositoryDescription) Reset() { *m = MsgUpdateReposit func (m *MsgUpdateRepositoryDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryDescription) ProtoMessage() {} func (*MsgUpdateRepositoryDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{133} + return fileDescriptor_a62a3f7fe5854081, []int{135} } func (m *MsgUpdateRepositoryDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7573,7 +7573,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Reset() { func (m *MsgUpdateRepositoryDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryDescriptionResponse) ProtoMessage() {} func (*MsgUpdateRepositoryDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{134} + return fileDescriptor_a62a3f7fe5854081, []int{136} } func (m *MsgUpdateRepositoryDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7612,7 +7612,7 @@ func (m *MsgUpdateRepositoryArchived) Reset() { *m = MsgUpdateRepository func (m *MsgUpdateRepositoryArchived) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryArchived) ProtoMessage() {} func (*MsgUpdateRepositoryArchived) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{135} + return fileDescriptor_a62a3f7fe5854081, []int{137} } func (m *MsgUpdateRepositoryArchived) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7669,7 +7669,7 @@ func (m *MsgUpdateRepositoryArchivedResponse) Reset() { *m = MsgUpdateRe func (m *MsgUpdateRepositoryArchivedResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryArchivedResponse) ProtoMessage() {} func (*MsgUpdateRepositoryArchivedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{136} + return fileDescriptor_a62a3f7fe5854081, []int{138} } func (m *MsgUpdateRepositoryArchivedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7708,7 +7708,7 @@ func (m *MsgChangeOwner) Reset() { *m = MsgChangeOwner{} } func (m *MsgChangeOwner) String() string { return proto.CompactTextString(m) } func (*MsgChangeOwner) ProtoMessage() {} func (*MsgChangeOwner) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{137} + return fileDescriptor_a62a3f7fe5854081, []int{139} } func (m *MsgChangeOwner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7765,7 +7765,7 @@ func (m *MsgChangeOwnerResponse) Reset() { *m = MsgChangeOwnerResponse{} func (m *MsgChangeOwnerResponse) String() string { return proto.CompactTextString(m) } func (*MsgChangeOwnerResponse) ProtoMessage() {} func (*MsgChangeOwnerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{138} + return fileDescriptor_a62a3f7fe5854081, []int{140} } func (m *MsgChangeOwnerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7805,7 +7805,7 @@ func (m *MsgUpdateRepositoryCollaborator) Reset() { *m = MsgUpdateReposi func (m *MsgUpdateRepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryCollaborator) ProtoMessage() {} func (*MsgUpdateRepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{139} + return fileDescriptor_a62a3f7fe5854081, []int{141} } func (m *MsgUpdateRepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7871,7 +7871,7 @@ func (m *MsgUpdateRepositoryCollaboratorResponse) Reset() { func (m *MsgUpdateRepositoryCollaboratorResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryCollaboratorResponse) ProtoMessage() {} func (*MsgUpdateRepositoryCollaboratorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{140} + return fileDescriptor_a62a3f7fe5854081, []int{142} } func (m *MsgUpdateRepositoryCollaboratorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7910,7 +7910,7 @@ func (m *MsgRemoveRepositoryCollaborator) Reset() { *m = MsgRemoveReposi func (m *MsgRemoveRepositoryCollaborator) String() string { return proto.CompactTextString(m) } func (*MsgRemoveRepositoryCollaborator) ProtoMessage() {} func (*MsgRemoveRepositoryCollaborator) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{141} + return fileDescriptor_a62a3f7fe5854081, []int{143} } func (m *MsgRemoveRepositoryCollaborator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7969,7 +7969,7 @@ func (m *MsgRemoveRepositoryCollaboratorResponse) Reset() { func (m *MsgRemoveRepositoryCollaboratorResponse) String() string { return proto.CompactTextString(m) } func (*MsgRemoveRepositoryCollaboratorResponse) ProtoMessage() {} func (*MsgRemoveRepositoryCollaboratorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{142} + return fileDescriptor_a62a3f7fe5854081, []int{144} } func (m *MsgRemoveRepositoryCollaboratorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8010,7 +8010,7 @@ func (m *MsgCreateRepositoryLabel) Reset() { *m = MsgCreateRepositoryLab func (m *MsgCreateRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryLabel) ProtoMessage() {} func (*MsgCreateRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{143} + return fileDescriptor_a62a3f7fe5854081, []int{145} } func (m *MsgCreateRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8082,7 +8082,7 @@ func (m *MsgCreateRepositoryLabelResponse) Reset() { *m = MsgCreateRepos func (m *MsgCreateRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRepositoryLabelResponse) ProtoMessage() {} func (*MsgCreateRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{144} + return fileDescriptor_a62a3f7fe5854081, []int{146} } func (m *MsgCreateRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8131,7 +8131,7 @@ func (m *MsgUpdateRepositoryLabel) Reset() { *m = MsgUpdateRepositoryLab func (m *MsgUpdateRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryLabel) ProtoMessage() {} func (*MsgUpdateRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{145} + return fileDescriptor_a62a3f7fe5854081, []int{147} } func (m *MsgUpdateRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8209,7 +8209,7 @@ func (m *MsgUpdateRepositoryLabelResponse) Reset() { *m = MsgUpdateRepos func (m *MsgUpdateRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateRepositoryLabelResponse) ProtoMessage() {} func (*MsgUpdateRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{146} + return fileDescriptor_a62a3f7fe5854081, []int{148} } func (m *MsgUpdateRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8248,7 +8248,7 @@ func (m *MsgDeleteRepositoryLabel) Reset() { *m = MsgDeleteRepositoryLab func (m *MsgDeleteRepositoryLabel) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryLabel) ProtoMessage() {} func (*MsgDeleteRepositoryLabel) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{147} + return fileDescriptor_a62a3f7fe5854081, []int{149} } func (m *MsgDeleteRepositoryLabel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8305,7 +8305,7 @@ func (m *MsgDeleteRepositoryLabelResponse) Reset() { *m = MsgDeleteRepos func (m *MsgDeleteRepositoryLabelResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryLabelResponse) ProtoMessage() {} func (*MsgDeleteRepositoryLabelResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{148} + return fileDescriptor_a62a3f7fe5854081, []int{150} } func (m *MsgDeleteRepositoryLabelResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8343,7 +8343,7 @@ func (m *MsgToggleRepositoryForking) Reset() { *m = MsgToggleRepositoryF func (m *MsgToggleRepositoryForking) String() string { return proto.CompactTextString(m) } func (*MsgToggleRepositoryForking) ProtoMessage() {} func (*MsgToggleRepositoryForking) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{149} + return fileDescriptor_a62a3f7fe5854081, []int{151} } func (m *MsgToggleRepositoryForking) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8394,7 +8394,7 @@ func (m *MsgToggleRepositoryForkingResponse) Reset() { *m = MsgToggleRep func (m *MsgToggleRepositoryForkingResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleRepositoryForkingResponse) ProtoMessage() {} func (*MsgToggleRepositoryForkingResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{150} + return fileDescriptor_a62a3f7fe5854081, []int{152} } func (m *MsgToggleRepositoryForkingResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8439,7 +8439,7 @@ func (m *MsgToggleArweaveBackup) Reset() { *m = MsgToggleArweaveBackup{} func (m *MsgToggleArweaveBackup) String() string { return proto.CompactTextString(m) } func (*MsgToggleArweaveBackup) ProtoMessage() {} func (*MsgToggleArweaveBackup) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{151} + return fileDescriptor_a62a3f7fe5854081, []int{153} } func (m *MsgToggleArweaveBackup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8490,7 +8490,7 @@ func (m *MsgToggleArweaveBackupResponse) Reset() { *m = MsgToggleArweave func (m *MsgToggleArweaveBackupResponse) String() string { return proto.CompactTextString(m) } func (*MsgToggleArweaveBackupResponse) ProtoMessage() {} func (*MsgToggleArweaveBackupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{152} + return fileDescriptor_a62a3f7fe5854081, []int{154} } func (m *MsgToggleArweaveBackupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8535,7 +8535,7 @@ func (m *MsgDeleteRepository) Reset() { *m = MsgDeleteRepository{} } func (m *MsgDeleteRepository) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepository) ProtoMessage() {} func (*MsgDeleteRepository) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{153} + return fileDescriptor_a62a3f7fe5854081, []int{155} } func (m *MsgDeleteRepository) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8585,7 +8585,7 @@ func (m *MsgDeleteRepositoryResponse) Reset() { *m = MsgDeleteRepository func (m *MsgDeleteRepositoryResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteRepositoryResponse) ProtoMessage() {} func (*MsgDeleteRepositoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{154} + return fileDescriptor_a62a3f7fe5854081, []int{156} } func (m *MsgDeleteRepositoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8626,7 +8626,7 @@ func (m *MsgCreateUser) Reset() { *m = MsgCreateUser{} } func (m *MsgCreateUser) String() string { return proto.CompactTextString(m) } func (*MsgCreateUser) ProtoMessage() {} func (*MsgCreateUser) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{155} + return fileDescriptor_a62a3f7fe5854081, []int{157} } func (m *MsgCreateUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8698,7 +8698,7 @@ func (m *MsgCreateUserResponse) Reset() { *m = MsgCreateUserResponse{} } func (m *MsgCreateUserResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateUserResponse) ProtoMessage() {} func (*MsgCreateUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{156} + return fileDescriptor_a62a3f7fe5854081, []int{158} } func (m *MsgCreateUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8743,7 +8743,7 @@ func (m *MsgUpdateUserUsername) Reset() { *m = MsgUpdateUserUsername{} } func (m *MsgUpdateUserUsername) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserUsername) ProtoMessage() {} func (*MsgUpdateUserUsername) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{157} + return fileDescriptor_a62a3f7fe5854081, []int{159} } func (m *MsgUpdateUserUsername) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8793,7 +8793,7 @@ func (m *MsgUpdateUserUsernameResponse) Reset() { *m = MsgUpdateUserUser func (m *MsgUpdateUserUsernameResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserUsernameResponse) ProtoMessage() {} func (*MsgUpdateUserUsernameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{158} + return fileDescriptor_a62a3f7fe5854081, []int{160} } func (m *MsgUpdateUserUsernameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8831,7 +8831,7 @@ func (m *MsgUpdateUserName) Reset() { *m = MsgUpdateUserName{} } func (m *MsgUpdateUserName) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserName) ProtoMessage() {} func (*MsgUpdateUserName) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{159} + return fileDescriptor_a62a3f7fe5854081, []int{161} } func (m *MsgUpdateUserName) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8881,7 +8881,7 @@ func (m *MsgUpdateUserNameResponse) Reset() { *m = MsgUpdateUserNameResp func (m *MsgUpdateUserNameResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserNameResponse) ProtoMessage() {} func (*MsgUpdateUserNameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{160} + return fileDescriptor_a62a3f7fe5854081, []int{162} } func (m *MsgUpdateUserNameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8919,7 +8919,7 @@ func (m *MsgUpdateUserBio) Reset() { *m = MsgUpdateUserBio{} } func (m *MsgUpdateUserBio) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserBio) ProtoMessage() {} func (*MsgUpdateUserBio) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{161} + return fileDescriptor_a62a3f7fe5854081, []int{163} } func (m *MsgUpdateUserBio) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8969,7 +8969,7 @@ func (m *MsgUpdateUserBioResponse) Reset() { *m = MsgUpdateUserBioRespon func (m *MsgUpdateUserBioResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserBioResponse) ProtoMessage() {} func (*MsgUpdateUserBioResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{162} + return fileDescriptor_a62a3f7fe5854081, []int{164} } func (m *MsgUpdateUserBioResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9007,7 +9007,7 @@ func (m *MsgUpdateUserAvatar) Reset() { *m = MsgUpdateUserAvatar{} } func (m *MsgUpdateUserAvatar) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserAvatar) ProtoMessage() {} func (*MsgUpdateUserAvatar) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{163} + return fileDescriptor_a62a3f7fe5854081, []int{165} } func (m *MsgUpdateUserAvatar) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9057,7 +9057,7 @@ func (m *MsgUpdateUserAvatarResponse) Reset() { *m = MsgUpdateUserAvatar func (m *MsgUpdateUserAvatarResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateUserAvatarResponse) ProtoMessage() {} func (*MsgUpdateUserAvatarResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{164} + return fileDescriptor_a62a3f7fe5854081, []int{166} } func (m *MsgUpdateUserAvatarResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9095,7 +9095,7 @@ func (m *MsgDeleteUser) Reset() { *m = MsgDeleteUser{} } func (m *MsgDeleteUser) String() string { return proto.CompactTextString(m) } func (*MsgDeleteUser) ProtoMessage() {} func (*MsgDeleteUser) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{165} + return fileDescriptor_a62a3f7fe5854081, []int{167} } func (m *MsgDeleteUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9145,7 +9145,7 @@ func (m *MsgDeleteUserResponse) Reset() { *m = MsgDeleteUserResponse{} } func (m *MsgDeleteUserResponse) String() string { return proto.CompactTextString(m) } func (*MsgDeleteUserResponse) ProtoMessage() {} func (*MsgDeleteUserResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a62a3f7fe5854081, []int{166} + return fileDescriptor_a62a3f7fe5854081, []int{168} } func (m *MsgDeleteUserResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9354,285 +9354,292 @@ func init() { func init() { proto.RegisterFile("gitopia/tx.proto", fileDescriptor_a62a3f7fe5854081) } var fileDescriptor_a62a3f7fe5854081 = []byte{ - // 4446 bytes of a gzipped FileDescriptorProto + // 4551 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5d, 0xcd, 0x6f, 0x1c, 0x47, 0x76, 0x57, 0x73, 0x86, 0x1f, 0x53, 0x94, 0x69, 0x6a, 0xa8, 0x8f, 0x61, 0x4b, 0xa6, 0xe8, 0xb6, - 0x25, 0x51, 0x12, 0x3f, 0xc4, 0x91, 0x65, 0xcb, 0xb2, 0xad, 0x98, 0x14, 0x69, 0x9b, 0x89, 0x68, + 0x25, 0x51, 0x12, 0x3f, 0xc4, 0x91, 0x64, 0xcb, 0xb2, 0xad, 0x98, 0x14, 0x69, 0x9b, 0x89, 0x68, 0x2b, 0x4d, 0x2a, 0x8e, 0x83, 0x20, 0x49, 0x73, 0xa6, 0xd8, 0xec, 0x70, 0x38, 0x3d, 0xe9, 0xee, - 0xa1, 0xc4, 0x24, 0x80, 0x13, 0x7f, 0xc0, 0x4e, 0x0c, 0x27, 0xb1, 0x63, 0x38, 0x81, 0x03, 0x23, - 0x41, 0x6e, 0x5e, 0x60, 0x2f, 0xbb, 0x7b, 0x5a, 0xec, 0x1f, 0xe0, 0xd3, 0xc2, 0x8b, 0xc5, 0x02, - 0x7b, 0x5a, 0x1b, 0xd2, 0x71, 0x0f, 0x7b, 0xda, 0xfb, 0xa2, 0x3e, 0xba, 0xba, 0xaa, 0x3f, 0xaa, - 0xab, 0x69, 0x8a, 0xd4, 0x1a, 0x7b, 0xd2, 0x74, 0xf7, 0x7b, 0xf5, 0x7e, 0xef, 0xd5, 0xab, 0xaf, - 0x57, 0xef, 0x89, 0x60, 0xd8, 0x76, 0x02, 0xb7, 0xe3, 0x58, 0x33, 0xc1, 0xdd, 0xe9, 0x8e, 0xe7, - 0x06, 0x6e, 0xf5, 0x04, 0x7d, 0x33, 0x1d, 0xfb, 0x57, 0x3f, 0x6a, 0xbb, 0xb6, 0x8b, 0x69, 0x66, - 0xd0, 0x2f, 0x42, 0xae, 0x57, 0x59, 0x03, 0x96, 0xbf, 0x49, 0xdf, 0x1d, 0x0d, 0xdf, 0xad, 0x79, - 0x56, 0xbb, 0xb1, 0x41, 0xdf, 0x1e, 0x89, 0x28, 0xed, 0x38, 0xe1, 0x16, 0xdc, 0x5a, 0x83, 0x5e, - 0x82, 0xdd, 0xed, 0xb6, 0x83, 0x1d, 0xfa, 0xf6, 0x58, 0xf8, 0xd6, 0x83, 0x2d, 0x68, 0xf9, 0x90, - 0xbe, 0x1e, 0x0d, 0x5f, 0x77, 0xba, 0xad, 0x96, 0x09, 0xff, 0xae, 0x0b, 0xfd, 0x20, 0x2e, 0xb0, - 0x69, 0xb9, 0xf1, 0x46, 0x1a, 0xee, 0xd6, 0x16, 0x6c, 0x87, 0x94, 0x23, 0xe1, 0x6b, 0xc7, 0xf7, - 0xbb, 0x61, 0xcb, 0xb5, 0x48, 0x60, 0xc7, 0xf5, 0x9d, 0xc0, 0xf5, 0x76, 0xe2, 0xe4, 0x77, 0x36, - 0x5c, 0xc7, 0xa7, 0x2f, 0xc7, 0x1a, 0xae, 0xbf, 0xe5, 0xfa, 0x33, 0x6b, 0x96, 0x0f, 0x67, 0xb6, - 0x67, 0xd7, 0x60, 0x60, 0xcd, 0xce, 0x34, 0x5c, 0xa7, 0x1d, 0x6f, 0xce, 0x0a, 0x02, 0xab, 0xb1, - 0xc1, 0x49, 0x3f, 0x1e, 0x09, 0xb2, 0x1a, 0x81, 0xe3, 0x52, 0x0e, 0xe3, 0x7f, 0x34, 0x30, 0xb8, - 0xec, 0xdb, 0x8b, 0x77, 0xa1, 0xd7, 0x70, 0x7c, 0x58, 0xad, 0x81, 0xfe, 0x86, 0x07, 0xad, 0xc0, - 0xf5, 0x6a, 0xda, 0xb8, 0x36, 0x51, 0x31, 0xc3, 0xc7, 0xea, 0x1a, 0xe8, 0xb3, 0xb6, 0x90, 0xb1, - 0x6a, 0x3d, 0xe3, 0xda, 0xc4, 0x60, 0x7d, 0x74, 0x9a, 0x80, 0x99, 0x46, 0x60, 0xa6, 0x29, 0x98, - 0xe9, 0x1b, 0xae, 0xd3, 0x9e, 0x9f, 0xf9, 0xf2, 0x57, 0xa7, 0x0f, 0xbd, 0xf5, 0xf5, 0xe9, 0x73, - 0xb6, 0x13, 0x6c, 0x74, 0xd7, 0xa6, 0x1b, 0xee, 0xd6, 0x0c, 0x45, 0x4e, 0xfe, 0x99, 0xf2, 0x9b, - 0x9b, 0x33, 0xc1, 0x4e, 0x07, 0xfa, 0x98, 0xc1, 0xa4, 0x2d, 0x57, 0x87, 0x40, 0x4f, 0xe0, 0xd6, - 0x4a, 0x58, 0x70, 0x4f, 0xe0, 0x1a, 0xc7, 0xc0, 0x08, 0x07, 0xce, 0x84, 0x7e, 0xc7, 0x6d, 0xfb, - 0xd0, 0xf8, 0x5f, 0x0d, 0x54, 0x97, 0x7d, 0x7b, 0xd5, 0xb5, 0xed, 0x16, 0x7c, 0xc9, 0xf5, 0x1a, - 0xf0, 0x56, 0xd7, 0xdf, 0x90, 0x60, 0x7f, 0x0d, 0x1c, 0x8e, 0x0c, 0xbc, 0xd4, 0xa4, 0x1a, 0x9c, - 0x99, 0xce, 0x70, 0xc3, 0x69, 0x93, 0x23, 0x9e, 0x2f, 0x23, 0x6d, 0x4c, 0xa1, 0x81, 0xea, 0x18, - 0x00, 0xc4, 0xef, 0x5e, 0xb5, 0xb6, 0x20, 0x05, 0xcc, 0xbd, 0x31, 0x4e, 0x01, 0x3d, 0x09, 0x90, - 0xe1, 0xff, 0xb1, 0x06, 0x4e, 0x2e, 0xfb, 0xb6, 0x09, 0xb7, 0xdd, 0x4d, 0x78, 0xcb, 0x73, 0xb7, - 0x9d, 0x26, 0xf4, 0x6e, 0x41, 0x6f, 0xcb, 0xf1, 0x7d, 0xc7, 0x6d, 0x4b, 0x14, 0xa9, 0x81, 0x7e, - 0xdb, 0xb3, 0xda, 0x01, 0xf4, 0xb0, 0x0e, 0x15, 0x33, 0x7c, 0xac, 0xea, 0x60, 0xa0, 0x43, 0x5b, - 0xa2, 0x78, 0xd8, 0x73, 0xf5, 0x4f, 0x00, 0xe8, 0xb0, 0xd6, 0x6b, 0xe5, 0x71, 0x6d, 0x62, 0xa8, - 0x7e, 0x31, 0x53, 0xf9, 0x24, 0x20, 0x93, 0x63, 0x37, 0xce, 0x80, 0x27, 0x24, 0xd8, 0x99, 0x8e, - 0x3f, 0xd4, 0xc0, 0xd1, 0x65, 0xdf, 0x9e, 0xeb, 0x06, 0x1b, 0xae, 0xe7, 0xfc, 0x3d, 0x23, 0x7d, - 0xb8, 0x95, 0x1b, 0x03, 0xa7, 0xd2, 0x40, 0x33, 0xad, 0xde, 0xd1, 0xc0, 0x23, 0xcb, 0xbe, 0x7d, - 0x03, 0x21, 0x86, 0xab, 0x96, 0xbf, 0x29, 0x51, 0xe7, 0x05, 0x30, 0x80, 0xe6, 0xab, 0xd5, 0x9d, - 0x0e, 0xc4, 0xfa, 0x0c, 0xd5, 0x1f, 0xcf, 0x84, 0xb5, 0x4a, 0x09, 0x4d, 0xc6, 0x22, 0xd3, 0xd9, - 0x38, 0x07, 0x8e, 0x09, 0x28, 0x42, 0x7c, 0x68, 0x00, 0x39, 0x4d, 0x0c, 0xa4, 0x6c, 0xf6, 0x38, - 0x4d, 0xe3, 0x43, 0x82, 0xf7, 0x76, 0xa7, 0x99, 0x8f, 0x97, 0xf0, 0xf6, 0x84, 0xbc, 0xd5, 0xab, - 0xa0, 0xd7, 0x0f, 0xac, 0x80, 0xb8, 0xf7, 0x50, 0xdd, 0x90, 0x82, 0x5f, 0x41, 0x94, 0x26, 0x61, - 0x40, 0x32, 0xb6, 0xa0, 0xef, 0x5b, 0x36, 0xc4, 0xfd, 0x51, 0x31, 0xc3, 0x47, 0xe3, 0x04, 0x06, - 0x1e, 0xc1, 0x61, 0x86, 0x7d, 0x16, 0xe3, 0x5c, 0x80, 0x2d, 0x58, 0x14, 0xa7, 0x71, 0x4f, 0xc3, - 0x9d, 0x46, 0x1a, 0x8d, 0x46, 0xee, 0xbc, 0xd5, 0xd8, 0xec, 0x76, 0x4c, 0xb8, 0xbe, 0x9f, 0xf3, - 0xc2, 0x22, 0xb2, 0x99, 0xeb, 0x85, 0x36, 0x9b, 0x51, 0x68, 0x89, 0xe0, 0x9c, 0x5e, 0x41, 0x6c, - 0x26, 0xe1, 0xae, 0x0e, 0x83, 0x92, 0x07, 0xd7, 0xa9, 0xf1, 0xd0, 0x4f, 0xe3, 0x2c, 0x78, 0x52, - 0xa6, 0x23, 0xb3, 0xe3, 0xd7, 0x1a, 0x18, 0x45, 0x1e, 0xdc, 0x6c, 0x7e, 0x57, 0x2d, 0xf1, 0x04, - 0x78, 0x3c, 0x53, 0x41, 0x66, 0x06, 0xe2, 0x67, 0x91, 0x3b, 0xb1, 0x0f, 0x06, 0x18, 0x67, 0x1f, - 0x90, 0x20, 0xcb, 0x4e, 0x0e, 0xf2, 0xdf, 0x6a, 0xe0, 0xf0, 0xb2, 0x6f, 0xaf, 0xc0, 0x60, 0x1e, - 0xcf, 0xe8, 0xfb, 0x69, 0xb6, 0x3f, 0x06, 0x7d, 0x64, 0x19, 0xc1, 0x76, 0x1b, 0xac, 0x4f, 0x66, - 0x36, 0xc5, 0x23, 0x9c, 0x26, 0xff, 0xd0, 0x16, 0x69, 0x0b, 0xfa, 0x34, 0xe8, 0xa3, 0x0a, 0x54, - 0x41, 0xb9, 0x8d, 0x16, 0x2a, 0x82, 0x1e, 0xff, 0x46, 0x96, 0xf5, 0x37, 0x2c, 0x3a, 0xd3, 0xa2, - 0x9f, 0xc6, 0x71, 0x3c, 0x63, 0xb3, 0x46, 0x99, 0x3d, 0xfe, 0x5b, 0xc3, 0xcb, 0xf0, 0x0a, 0x0c, - 0x16, 0xe0, 0xba, 0xd5, 0x6d, 0x1d, 0x80, 0x59, 0x8e, 0x0b, 0x66, 0xa9, 0x84, 0x2a, 0x1a, 0x8f, - 0xe1, 0x85, 0x34, 0x8e, 0x8c, 0x21, 0x7f, 0xbb, 0x07, 0x1c, 0x59, 0xf6, 0xed, 0xe5, 0x6e, 0x2b, - 0x70, 0x0e, 0xa4, 0x3b, 0x57, 0xc0, 0x00, 0x41, 0x0a, 0xfd, 0x5a, 0x69, 0xbc, 0x34, 0x31, 0x58, - 0x9f, 0x95, 0x75, 0xa8, 0x08, 0x54, 0xec, 0x55, 0xd6, 0x50, 0xe1, 0x7e, 0x3d, 0x89, 0xa7, 0x04, - 0xb1, 0x6d, 0x66, 0xa2, 0x4f, 0x34, 0xf0, 0x28, 0x1b, 0x11, 0x0f, 0x4f, 0xc7, 0x8e, 0x82, 0x13, - 0x31, 0x54, 0x0c, 0xf1, 0xe7, 0x64, 0x67, 0x81, 0xf5, 0x39, 0x28, 0xd8, 0x7a, 0xac, 0x5f, 0x2b, - 0x51, 0xf7, 0xd0, 0x3d, 0x44, 0x02, 0x1e, 0xc3, 0x7f, 0x5f, 0x03, 0x15, 0xe2, 0xb4, 0xab, 0x96, - 0xbd, 0x9f, 0xa0, 0xaf, 0x83, 0x52, 0x60, 0xd9, 0x74, 0x62, 0x39, 0x9b, 0x33, 0xb1, 0xac, 0x5a, - 0xf6, 0xf4, 0xaa, 0x65, 0xd3, 0x86, 0x10, 0xa3, 0x7e, 0x11, 0x94, 0x10, 0x62, 0x35, 0xa7, 0x1b, - 0xc1, 0x23, 0x8f, 0x34, 0xc4, 0x54, 0xff, 0x8d, 0x06, 0x86, 0x38, 0x57, 0xdc, 0x67, 0xfd, 0x17, - 0x41, 0x39, 0xb0, 0xec, 0x70, 0x20, 0x5e, 0x54, 0x19, 0x88, 0xa2, 0x15, 0x30, 0x7b, 0x31, 0x33, - 0xd4, 0xc0, 0x71, 0xb1, 0x39, 0x66, 0x8b, 0x0f, 0xc8, 0x2a, 0x13, 0xae, 0x51, 0xfb, 0x6a, 0x89, - 0xe1, 0xc8, 0x13, 0x2a, 0xb8, 0x6f, 0xe9, 0xdc, 0xcf, 0xc0, 0x30, 0x94, 0x1f, 0x6b, 0xd1, 0x0c, - 0x7a, 0x20, 0x50, 0xab, 0x5c, 0xa7, 0x55, 0x48, 0x0f, 0xf0, 0x13, 0x5a, 0x12, 0xf1, 0xbf, 0x13, - 0xbb, 0xce, 0x35, 0x9b, 0xcb, 0xf8, 0xc0, 0x2f, 0x01, 0x7b, 0x14, 0xf4, 0x36, 0x2d, 0x97, 0xa2, - 0xac, 0x98, 0xe4, 0x01, 0x4d, 0x49, 0x5d, 0x1f, 0x7a, 0x4b, 0xcd, 0x70, 0x4a, 0x22, 0x4f, 0xd5, - 0x67, 0x40, 0xd9, 0x73, 0x5b, 0x90, 0x1e, 0x31, 0x9e, 0xc8, 0x76, 0x1f, 0x2c, 0xd6, 0x74, 0x5b, - 0xd0, 0xc4, 0x0c, 0xd4, 0xb6, 0x0c, 0x10, 0x43, 0xfa, 0x29, 0x59, 0x57, 0xc9, 0xa6, 0x2e, 0xe2, - 0x3a, 0x78, 0xc0, 0x64, 0x55, 0x8d, 0xe3, 0x62, 0xb8, 0xdf, 0xc0, 0x2b, 0x86, 0x09, 0xb7, 0xdc, - 0x6d, 0xb8, 0xb7, 0x36, 0xa6, 0xd3, 0x3e, 0xdf, 0x34, 0x93, 0xfa, 0x45, 0x0f, 0x16, 0x4b, 0x0e, - 0x3d, 0xf3, 0x38, 0x6a, 0x23, 0x11, 0xdb, 0xe0, 0xa2, 0x15, 0x25, 0x79, 0xb4, 0xe2, 0x12, 0xf2, - 0xba, 0xef, 0x7d, 0x7d, 0x7a, 0x42, 0x31, 0x5a, 0xe1, 0xb3, 0x70, 0xc5, 0x71, 0xd0, 0x07, 0xef, - 0x76, 0x1c, 0x6f, 0x07, 0x6b, 0x51, 0x32, 0xe9, 0x53, 0xd5, 0x88, 0x0d, 0x82, 0x32, 0x3e, 0xab, - 0x88, 0x7e, 0x7d, 0x0a, 0x54, 0x3a, 0x96, 0x07, 0xdb, 0xc1, 0x92, 0xd3, 0xac, 0xf5, 0x62, 0x82, - 0xe8, 0x45, 0xf5, 0x05, 0xd0, 0x47, 0x1e, 0x6a, 0x7d, 0xb8, 0xf3, 0xb2, 0x07, 0x10, 0xb1, 0xc4, - 0x2d, 0x4c, 0x6c, 0x52, 0x26, 0xe3, 0x3c, 0x36, 0x23, 0x6f, 0xaa, 0xcc, 0x13, 0xe2, 0x1b, 0xdc, - 0x89, 0x8c, 0x90, 0x2e, 0x12, 0x25, 0xd4, 0x0f, 0x8a, 0x19, 0x66, 0x30, 0x4e, 0x83, 0xc7, 0x52, - 0x9b, 0x66, 0x5d, 0x7a, 0x0d, 0xaf, 0x06, 0x37, 0x5a, 0xae, 0x9f, 0xdf, 0xa1, 0xf1, 0x53, 0x1f, - 0x99, 0x58, 0x39, 0x5e, 0xd6, 0xea, 0x73, 0xfc, 0x86, 0xa6, 0x68, 0xb3, 0xc2, 0xbe, 0x43, 0x6c, - 0xf7, 0xe7, 0x3d, 0x60, 0x98, 0x59, 0xd5, 0x24, 0x01, 0xc2, 0xfd, 0x9c, 0x09, 0x6b, 0xa0, 0x3f, - 0xb0, 0x6c, 0x2e, 0xe0, 0x14, 0x3e, 0xa2, 0x0e, 0x08, 0x2c, 0xcf, 0x86, 0x01, 0x3d, 0x27, 0xd1, - 0x27, 0xb6, 0x44, 0xf5, 0x72, 0x4b, 0xd4, 0x38, 0x18, 0x6c, 0x42, 0xbf, 0xe1, 0x39, 0x9d, 0xc0, - 0x71, 0xdb, 0xd8, 0xbd, 0x2a, 0x26, 0xff, 0x0a, 0x51, 0x44, 0xe1, 0x43, 0xbf, 0xd6, 0x4f, 0x28, - 0xb8, 0x57, 0x78, 0x4c, 0x7b, 0xd6, 0x7a, 0x50, 0x1b, 0x18, 0xd7, 0x26, 0x06, 0x4c, 0xf2, 0x50, - 0x1d, 0x03, 0xa0, 0xe3, 0x85, 0x86, 0xa9, 0x55, 0xf0, 0x27, 0xee, 0x0d, 0xe2, 0x72, 0xfc, 0x55, - 0xcb, 0xae, 0x01, 0xc2, 0x85, 0x1f, 0x8c, 0x0b, 0xa0, 0x16, 0x37, 0x6a, 0xa6, 0xaf, 0x7e, 0x4c, - 0x7a, 0x20, 0x3c, 0x05, 0xe7, 0xf5, 0x40, 0xdc, 0x4f, 0xbf, 0x9b, 0x06, 0xd4, 0xb1, 0x01, 0x05, - 0x9b, 0x30, 0x97, 0x7d, 0x1e, 0xdb, 0x8b, 0x78, 0x73, 0x61, 0x7b, 0xd1, 0x96, 0x05, 0x6e, 0xd6, - 0xf2, 0x57, 0x25, 0xbc, 0xa8, 0x91, 0x7e, 0xbb, 0x15, 0x85, 0xc5, 0xe5, 0x2b, 0x41, 0xe0, 0x04, - 0x2d, 0x18, 0xae, 0x04, 0xf8, 0x21, 0x6e, 0xce, 0x52, 0xd2, 0x9c, 0x63, 0x00, 0x6c, 0x40, 0xab, - 0x49, 0x76, 0xd1, 0xb4, 0x83, 0xb8, 0x37, 0xd5, 0xd7, 0xc1, 0x30, 0x7a, 0xe2, 0xc7, 0x0f, 0xee, - 0xb0, 0x82, 0x83, 0x2d, 0xd1, 0x08, 0x0e, 0xf2, 0x5a, 0x3e, 0xdd, 0xbe, 0xd3, 0x8e, 0xe6, 0xde, - 0x20, 0xc1, 0x6b, 0xd8, 0x26, 0x9c, 0xe0, 0xfe, 0x5d, 0x08, 0x8e, 0x37, 0x82, 0xd6, 0x06, 0x0f, - 0x6e, 0x3b, 0xf0, 0x0e, 0xf4, 0xfc, 0xda, 0x00, 0xde, 0xf8, 0x44, 0x2f, 0xd0, 0x57, 0xcb, 0xf7, - 0x1d, 0xbb, 0x0d, 0xa1, 0x5f, 0xab, 0x90, 0xaf, 0xec, 0x05, 0x3a, 0x99, 0xb4, 0xac, 0x35, 0xd8, - 0x5a, 0x6a, 0xfa, 0x35, 0x30, 0x5e, 0x9a, 0x28, 0x9b, 0xec, 0x19, 0x71, 0xe2, 0xcb, 0x87, 0x25, - 0xa7, 0xe9, 0xd7, 0x06, 0xf1, 0xc7, 0xe8, 0x85, 0xf1, 0x22, 0x3e, 0xb7, 0x24, 0x7a, 0x34, 0x6b, - 0x34, 0xa2, 0x4d, 0xa4, 0xc3, 0xfc, 0x05, 0xfd, 0x34, 0xfe, 0x99, 0x04, 0x9f, 0x88, 0x2f, 0x72, - 0x4d, 0xac, 0xe2, 0x9e, 0xce, 0xf6, 0x0c, 0x23, 0x65, 0xaa, 0x2c, 0x27, 0xb7, 0xac, 0x48, 0x5a, - 0x89, 0x49, 0x8b, 0xfc, 0xa9, 0xcc, 0xf9, 0x13, 0x0d, 0x0f, 0xa5, 0x43, 0x60, 0xde, 0xfb, 0x9f, - 0x1a, 0x38, 0x9d, 0x46, 0xb5, 0xc0, 0xb9, 0xdd, 0x5e, 0xc3, 0x8d, 0x39, 0x7a, 0x39, 0xe1, 0xe8, - 0xc6, 0x79, 0x70, 0x2e, 0x07, 0x14, 0x53, 0xe0, 0x3d, 0x62, 0xe9, 0xa5, 0xf6, 0xb6, 0xbb, 0x09, - 0x97, 0xa1, 0x67, 0x2b, 0x8e, 0xc1, 0xdd, 0x41, 0xe7, 0x43, 0xd1, 0xe5, 0x58, 0x28, 0x9a, 0xd8, - 0x3b, 0x1d, 0x08, 0x83, 0xfb, 0x8d, 0x86, 0x57, 0xeb, 0x15, 0x18, 0x70, 0x5f, 0x57, 0xc2, 0x58, - 0xf1, 0x5e, 0x7b, 0x05, 0x89, 0x5a, 0x53, 0xaf, 0x20, 0x11, 0xe9, 0xb3, 0x60, 0x68, 0x0b, 0x81, - 0xbb, 0xe1, 0x6e, 0x6d, 0x39, 0xc1, 0xca, 0x86, 0x45, 0xa7, 0xf4, 0xd8, 0x5b, 0xd4, 0x49, 0xf4, - 0xd6, 0x6e, 0xde, 0x6d, 0xee, 0x84, 0x93, 0x3b, 0xf7, 0x8a, 0x2c, 0x15, 0xfe, 0x26, 0x1d, 0xea, - 0x65, 0x93, 0x3e, 0x19, 0x4f, 0x83, 0xb1, 0x74, 0x0d, 0xd9, 0xf8, 0x61, 0xc8, 0x34, 0x0e, 0x99, - 0xf1, 0xaf, 0x1a, 0xbe, 0x2a, 0x9a, 0x6b, 0x36, 0x05, 0xc3, 0x85, 0x83, 0x7d, 0xaf, 0xcd, 0x23, - 0x4c, 0x2d, 0xe5, 0xd8, 0xd4, 0x62, 0x3c, 0x09, 0x8c, 0x6c, 0x2c, 0xac, 0x37, 0x3f, 0xd4, 0xf0, - 0xc6, 0x8e, 0xec, 0xd2, 0x1f, 0x02, 0xd4, 0xe7, 0xc0, 0x19, 0x29, 0x1c, 0x06, 0x3c, 0xd5, 0xd6, - 0x73, 0x6c, 0xea, 0x7c, 0x00, 0xa8, 0xa3, 0x89, 0xba, 0x1c, 0x9b, 0xa8, 0x53, 0x6d, 0xcd, 0xb0, - 0xe4, 0xda, 0xfa, 0xa0, 0x50, 0x67, 0xd8, 0x3a, 0x09, 0xfc, 0xff, 0xc8, 0xad, 0xcc, 0x4d, 0xa7, - 0xbd, 0xc9, 0xd1, 0x2d, 0xa1, 0xd5, 0x66, 0x7e, 0x67, 0x89, 0xec, 0xc6, 0xbe, 0x05, 0xee, 0xb3, - 0x60, 0x88, 0xbb, 0x8c, 0x5f, 0x62, 0x2a, 0xc4, 0xde, 0xa2, 0xa9, 0x2b, 0x5c, 0xe1, 0xe8, 0x31, - 0x8c, 0x3d, 0xd3, 0x3b, 0x95, 0x4c, 0x84, 0x4c, 0x95, 0xff, 0xd7, 0xf0, 0xd8, 0xbe, 0xdd, 0x6e, - 0x3d, 0xc4, 0xca, 0x4c, 0x80, 0xb3, 0x72, 0x8c, 0x4c, 0x9d, 0x77, 0x35, 0x7c, 0xc6, 0x11, 0x3d, - 0xef, 0x26, 0xda, 0x23, 0xf8, 0x0f, 0x62, 0xe5, 0x60, 0xbb, 0x91, 0xb2, 0xb8, 0x1b, 0x31, 0x1e, - 0xc7, 0x6b, 0x70, 0x1a, 0x0c, 0x06, 0xf5, 0x7d, 0x32, 0x60, 0x13, 0xee, 0x76, 0x00, 0x68, 0xc9, - 0x70, 0xcd, 0x40, 0xc2, 0x00, 0xaf, 0x73, 0x61, 0xb4, 0x07, 0xb8, 0x22, 0xd3, 0x18, 0x73, 0x42, - 0x0e, 0xc3, 0xf1, 0x03, 0x12, 0x04, 0x23, 0x9b, 0xb9, 0x05, 0xcb, 0x95, 0x00, 0x08, 0xcf, 0x38, - 0x3d, 0xd9, 0x67, 0x9c, 0x94, 0x4d, 0x39, 0x9a, 0x25, 0xb6, 0xad, 0xc0, 0xf2, 0x6e, 0x7b, 0x2d, - 0xba, 0xd4, 0x46, 0x2f, 0xb0, 0x21, 0xdd, 0x86, 0x85, 0x99, 0xc9, 0x42, 0xcb, 0x9e, 0x11, 0x92, - 0x3b, 0x70, 0xcd, 0x77, 0x02, 0x48, 0x97, 0xd7, 0xf0, 0xd1, 0x38, 0xcb, 0x1d, 0x29, 0x16, 0x2c, - 0x37, 0x65, 0xe3, 0x59, 0xc1, 0xe7, 0x92, 0x9b, 0x58, 0x37, 0x13, 0x22, 0xa8, 0x72, 0xdd, 0xa2, - 0x13, 0x0d, 0xe6, 0x64, 0xba, 0x96, 0x22, 0x5d, 0x69, 0x74, 0x8e, 0xb5, 0xc6, 0x4c, 0x08, 0xf1, - 0x28, 0x21, 0xbb, 0xb1, 0x05, 0xcb, 0x55, 0xdb, 0x1a, 0xc6, 0x05, 0xe6, 0x1a, 0x92, 0x8e, 0x82, - 0x34, 0x31, 0x0c, 0xc9, 0x9f, 0x72, 0x61, 0xc2, 0x05, 0xcb, 0x7d, 0x9d, 0x98, 0xab, 0x00, 0x8a, - 0x61, 0x50, 0xea, 0x7a, 0xad, 0x30, 0xdc, 0xdb, 0xf5, 0x5a, 0x42, 0x84, 0x2f, 0x6a, 0x92, 0x49, - 0xfc, 0x4b, 0x6c, 0x13, 0xf6, 0xf9, 0x26, 0xd7, 0x77, 0x8a, 0x22, 0x79, 0x0f, 0x28, 0x89, 0x1e, - 0x40, 0x9d, 0x37, 0xd1, 0x3a, 0x93, 0x7e, 0x0b, 0x67, 0xf7, 0xb0, 0xef, 0x73, 0xd8, 0xad, 0xbe, - 0x95, 0xba, 0x24, 0x1d, 0x27, 0xd6, 0x22, 0x93, 0x77, 0x95, 0x0b, 0xc4, 0x17, 0xf2, 0x27, 0x21, - 0x6a, 0xce, 0xfb, 0xce, 0x2f, 0xf8, 0x50, 0xd1, 0x0d, 0xb2, 0x7b, 0xfc, 0x96, 0x73, 0x80, 0x10, - 0x2f, 0x2c, 0xc5, 0xe3, 0x85, 0xd7, 0x59, 0xbc, 0x90, 0x04, 0x7b, 0xb3, 0x6f, 0x77, 0x28, 0x1a, - 0x31, 0x60, 0x88, 0x06, 0xc6, 0x1a, 0xda, 0xf0, 0xd2, 0x40, 0x07, 0xfa, 0x5d, 0x5d, 0x14, 0xc3, - 0x18, 0x7d, 0x38, 0x8e, 0x9a, 0x1d, 0x45, 0x9e, 0x63, 0xb4, 0x62, 0xac, 0x43, 0x07, 0x03, 0x4d, - 0x67, 0x7d, 0xfd, 0x95, 0x6e, 0x7b, 0x93, 0x86, 0x42, 0xd8, 0x33, 0x12, 0xdb, 0xb1, 0x82, 0x0d, - 0x1c, 0x06, 0xa9, 0x98, 0xf8, 0x37, 0x3e, 0x6c, 0x20, 0xb5, 0x91, 0xe7, 0x54, 0xc8, 0x22, 0x17, - 0x3e, 0x0b, 0xc1, 0x22, 0xaa, 0x48, 0x66, 0xb0, 0xe8, 0x0b, 0x3e, 0x58, 0xf4, 0xfb, 0xd0, 0x07, - 0x63, 0x00, 0xd0, 0x83, 0x46, 0x14, 0x12, 0xe6, 0xde, 0xb0, 0x3e, 0xea, 0xcb, 0xee, 0xa3, 0xfe, - 0xdd, 0xf5, 0x91, 0x10, 0x43, 0x8a, 0xd9, 0xd5, 0xf8, 0xa9, 0xc6, 0x05, 0x91, 0xbe, 0x03, 0x76, - 0x14, 0xc2, 0x5a, 0x71, 0x65, 0x3f, 0x2b, 0x91, 0x90, 0x34, 0xf6, 0x30, 0xbc, 0x77, 0xda, 0xcf, - 0x08, 0x2f, 0x8b, 0x68, 0x94, 0x24, 0x11, 0xb2, 0x64, 0xe0, 0x40, 0xd8, 0xb7, 0xf4, 0xc6, 0x62, - 0x3e, 0xc7, 0x41, 0xdf, 0x1d, 0xe8, 0xd8, 0x1b, 0xe4, 0x26, 0xa1, 0x6c, 0xd2, 0x27, 0x71, 0x9b, - 0xdf, 0x1f, 0x8f, 0x22, 0xb9, 0xe0, 0x30, 0x49, 0x8c, 0x9d, 0x23, 0x97, 0x28, 0x03, 0x7b, 0x7f, - 0x89, 0x22, 0x08, 0x40, 0x6e, 0xb3, 0xc6, 0x5d, 0x11, 0xe0, 0x91, 0x5f, 0x32, 0x85, 0x77, 0xc6, - 0x35, 0x12, 0xf2, 0x8f, 0xfa, 0xa6, 0x40, 0x68, 0xea, 0x1f, 0xb8, 0x35, 0x14, 0xf3, 0xee, 0x67, - 0x4c, 0x8a, 0x5f, 0x6d, 0x23, 0xe1, 0xfc, 0x19, 0x6f, 0x54, 0xfc, 0x7e, 0xb0, 0x71, 0x28, 0x3e, - 0x84, 0x16, 0x87, 0xc3, 0x47, 0xa0, 0x46, 0x58, 0x8a, 0x2b, 0xa6, 0x7a, 0x30, 0xf1, 0x9c, 0x58, - 0x44, 0xa6, 0x9c, 0x88, 0xc8, 0x18, 0x97, 0xb1, 0x75, 0xe3, 0x40, 0x72, 0xc2, 0x2e, 0xef, 0x68, - 0xe1, 0xa5, 0x2c, 0x66, 0x39, 0xa8, 0xe3, 0x34, 0xcd, 0x37, 0x8d, 0xa3, 0xe0, 0xad, 0x1c, 0x5d, - 0x88, 0x1e, 0x28, 0x52, 0xb2, 0x4f, 0x4d, 0x03, 0xc2, 0xc0, 0xbe, 0x89, 0x53, 0x05, 0x42, 0x65, - 0x0e, 0xe0, 0x8c, 0x76, 0x32, 0xcc, 0x7d, 0xe4, 0x00, 0x30, 0x74, 0x6f, 0x69, 0x74, 0xa3, 0xcf, - 0x34, 0x38, 0x00, 0x84, 0xa4, 0xbf, 0x13, 0x18, 0x18, 0xc8, 0xbf, 0xc1, 0xcb, 0x0f, 0x59, 0x9b, - 0xf2, 0x96, 0x9f, 0xdd, 0x9d, 0x1c, 0xc9, 0xbd, 0x29, 0x27, 0x81, 0xc9, 0x26, 0x53, 0x64, 0x78, - 0x13, 0x17, 0x36, 0x52, 0xf0, 0xe4, 0x78, 0x14, 0xf4, 0xba, 0x77, 0xda, 0x2c, 0x65, 0x99, 0x3c, - 0x28, 0xcc, 0x39, 0x6d, 0x3c, 0x88, 0xe3, 0xc2, 0xd9, 0x20, 0xde, 0xeb, 0xa5, 0xd6, 0xf8, 0x49, - 0x0f, 0x1e, 0x58, 0x24, 0x6e, 0xfd, 0x92, 0xeb, 0x6d, 0x2a, 0x69, 0xbc, 0xe7, 0x2b, 0xfe, 0x34, - 0xa8, 0xae, 0x0b, 0xc2, 0xb9, 0xdb, 0xc9, 0x94, 0x2f, 0xd5, 0xe7, 0xc1, 0xa8, 0xf8, 0x76, 0x21, - 0x61, 0xd6, 0x6c, 0x02, 0x2e, 0xd9, 0xae, 0x97, 0x4f, 0xb6, 0x8b, 0x3a, 0xad, 0x8f, 0xef, 0x34, - 0x3e, 0xea, 0xdf, 0x1f, 0x8b, 0xfa, 0x93, 0xd9, 0x20, 0xcd, 0x7a, 0x51, 0x08, 0x82, 0xe4, 0x5e, - 0xfe, 0xc1, 0xb6, 0x69, 0xb6, 0xcd, 0xba, 0x45, 0xb8, 0x88, 0x67, 0xb0, 0x74, 0x8b, 0x26, 0x4e, - 0x38, 0x9f, 0x6b, 0x78, 0x27, 0x2b, 0x52, 0xaf, 0x74, 0x1b, 0x0d, 0xe8, 0xfb, 0xfb, 0x9c, 0xc3, - 0x49, 0x95, 0x29, 0x09, 0xca, 0xd4, 0x71, 0xae, 0x75, 0x2a, 0xbc, 0x4c, 0x9d, 0x3e, 0x21, 0xdb, - 0x0a, 0x12, 0x8e, 0x39, 0x18, 0xbf, 0x49, 0x0b, 0x12, 0x3d, 0x46, 0x0b, 0x76, 0x44, 0x54, 0xcc, - 0xd7, 0xbf, 0x4f, 0x23, 0xc4, 0xb1, 0xf4, 0x7c, 0xb5, 0x6d, 0xdc, 0x9e, 0x2b, 0x90, 0x1f, 0x74, - 0xa2, 0xc1, 0xe2, 0x6c, 0xb8, 0x4c, 0xb3, 0x8f, 0x48, 0xc6, 0xe6, 0x8d, 0x0d, 0xab, 0x6d, 0xc3, - 0xd7, 0xb0, 0xef, 0xee, 0xef, 0x81, 0x28, 0xb9, 0x9a, 0x84, 0xa9, 0x3f, 0x11, 0x24, 0x86, 0xf6, - 0x47, 0xfc, 0xbd, 0x6e, 0xd4, 0xfa, 0x0d, 0xb7, 0xd5, 0xb2, 0xd6, 0x5c, 0x2f, 0xac, 0x32, 0xda, - 0x47, 0x4f, 0xea, 0xfa, 0x0c, 0x3d, 0xfe, 0x8d, 0xde, 0xb1, 0xa4, 0xbc, 0x0a, 0xcd, 0xb7, 0xe3, - 0x2f, 0x7e, 0xd3, 0x51, 0xf3, 0xd7, 0x2a, 0xd1, 0x3e, 0xec, 0xa1, 0xd4, 0x90, 0x6a, 0x23, 0x43, - 0xc8, 0xb4, 0xf9, 0x99, 0x26, 0x64, 0xff, 0x84, 0xb4, 0x78, 0x53, 0x74, 0xc0, 0x43, 0x1e, 0xf9, - 0x5e, 0xc3, 0x6d, 0xb9, 0xe1, 0x8d, 0x37, 0x79, 0x88, 0x8f, 0xad, 0xde, 0xe4, 0xd8, 0x22, 0xb3, - 0x5e, 0xaa, 0x4a, 0x99, 0xb3, 0xde, 0xaf, 0x35, 0x21, 0x89, 0xe7, 0xc0, 0xec, 0x50, 0x03, 0xfd, - 0x74, 0xab, 0x4a, 0xa7, 0xf2, 0xf0, 0x91, 0x59, 0xa8, 0x9c, 0x66, 0xa1, 0x5e, 0x89, 0x85, 0x92, - 0xf9, 0x51, 0xb4, 0x06, 0x27, 0x55, 0x59, 0xbe, 0xc4, 0x93, 0x4f, 0x3e, 0x7a, 0xf8, 0x2c, 0x22, - 0x54, 0x12, 0x65, 0x69, 0xf1, 0x9e, 0xc6, 0xd5, 0x81, 0x46, 0x44, 0x68, 0x49, 0x74, 0xda, 0xfb, - 0x99, 0x46, 0x6d, 0xbc, 0x82, 0xaf, 0xaf, 0x32, 0x80, 0x30, 0xbf, 0x34, 0xc0, 0x61, 0xab, 0xd5, - 0x72, 0xef, 0xd0, 0xf7, 0x18, 0xd5, 0x80, 0x29, 0xbc, 0x33, 0xde, 0x26, 0xb9, 0x1c, 0xa4, 0xa9, - 0x39, 0xef, 0x0e, 0xb4, 0xb6, 0x21, 0x29, 0xc0, 0xda, 0x4f, 0x7d, 0x4c, 0xbc, 0xe0, 0xa6, 0x80, - 0x60, 0xba, 0x5c, 0x02, 0x23, 0xb0, 0x6d, 0xad, 0xc5, 0x3e, 0x53, 0x95, 0xd2, 0x3e, 0x19, 0xff, - 0x44, 0xf6, 0x1e, 0xf1, 0x2e, 0xdd, 0x4f, 0xb5, 0xc8, 0x3e, 0x23, 0x8e, 0x80, 0xf9, 0xd3, 0xbf, - 0xf0, 0xe5, 0xa7, 0xb7, 0x7d, 0xe9, 0x62, 0xac, 0x83, 0x01, 0x34, 0x1d, 0x73, 0x27, 0x34, 0xf6, - 0x9c, 0x3a, 0xdf, 0xc9, 0x6f, 0xf4, 0x86, 0x41, 0x69, 0xcd, 0x71, 0xe9, 0x48, 0x47, 0x3f, 0x85, - 0x1a, 0x54, 0x04, 0x25, 0xf3, 0xba, 0x6e, 0x99, 0xcb, 0x30, 0x46, 0x84, 0xb7, 0x43, 0x14, 0xbb, - 0xc2, 0x2e, 0x64, 0x15, 0xf3, 0xcd, 0x31, 0x23, 0xcd, 0xe1, 0x73, 0x47, 0x44, 0xf0, 0xaa, 0x5c, - 0x56, 0xca, 0x29, 0x96, 0x06, 0x12, 0xc4, 0x26, 0x58, 0xfb, 0xd7, 0xb9, 0x7b, 0x05, 0xf4, 0x71, - 0xde, 0x91, 0x5d, 0x19, 0x51, 0xc3, 0xf5, 0x44, 0x86, 0xe3, 0x83, 0xed, 0x94, 0x9f, 0xc3, 0x3e, - 0x22, 0x7c, 0xcb, 0xbd, 0xfb, 0xa2, 0x77, 0x5d, 0x3d, 0xe9, 0x57, 0x7b, 0x51, 0x13, 0xa9, 0x85, - 0xb6, 0x39, 0x1e, 0x14, 0xbf, 0xed, 0xe2, 0x8b, 0x2a, 0xf9, 0x1e, 0xbf, 0x30, 0x0b, 0xaa, 0x29, - 0x55, 0xec, 0x43, 0x00, 0xbc, 0xbc, 0xb4, 0xfa, 0xd7, 0x2b, 0x8b, 0xe6, 0x9f, 0x2d, 0x9a, 0xc3, - 0x87, 0xaa, 0x83, 0xa0, 0x7f, 0x65, 0xf5, 0x35, 0x73, 0xee, 0xe5, 0xc5, 0x61, 0xad, 0xfe, 0xe9, - 0xab, 0xa0, 0xb4, 0xec, 0xdb, 0x55, 0x1f, 0x3c, 0x1a, 0x2f, 0xe3, 0x97, 0x16, 0xe6, 0xc4, 0x88, - 0xf5, 0xcb, 0x05, 0x88, 0x99, 0x87, 0xfe, 0x9b, 0x06, 0x6a, 0x99, 0xc5, 0xf7, 0x4f, 0xc9, 0x5a, - 0xcc, 0xe2, 0xd2, 0x9f, 0xdf, 0x0d, 0x17, 0x03, 0xb4, 0x03, 0x8e, 0x24, 0x0b, 0xe5, 0xa7, 0x64, - 0x4d, 0x26, 0xc8, 0xf5, 0x2b, 0x85, 0xc8, 0x99, 0xe8, 0x26, 0x00, 0x5c, 0x35, 0xbb, 0xb4, 0x2a, - 0x2c, 0xa2, 0xd3, 0xa7, 0xd5, 0xe8, 0x78, 0x29, 0x5c, 0x0d, 0xba, 0x54, 0x4a, 0x44, 0x27, 0x97, - 0x92, 0x2c, 0x22, 0x47, 0x52, 0xb8, 0x0a, 0x72, 0xa9, 0x94, 0x88, 0x4e, 0x2e, 0x25, 0x59, 0x42, - 0x5c, 0xb5, 0x40, 0x25, 0xaa, 0x25, 0x3d, 0xa3, 0x54, 0x9f, 0xab, 0x4f, 0x29, 0x91, 0x31, 0x11, - 0x1d, 0x30, 0x14, 0xab, 0x59, 0xbd, 0xa0, 0x5e, 0x36, 0xaa, 0xd7, 0xd5, 0x69, 0x99, 0xc4, 0xbf, - 0x05, 0x87, 0x85, 0x5a, 0xca, 0x89, 0x7c, 0xa3, 0x50, 0x69, 0x97, 0x54, 0x29, 0x79, 0x6f, 0x4f, - 0x16, 0x6f, 0x4e, 0xe5, 0x82, 0x16, 0xa4, 0x5e, 0x29, 0x44, 0xce, 0x44, 0xff, 0x39, 0xe8, 0xa3, - 0x75, 0x87, 0x46, 0x7e, 0xfd, 0xa3, 0x7e, 0x21, 0x9f, 0x86, 0xb5, 0x6c, 0x83, 0x41, 0xbe, 0xac, - 0xf1, 0x9c, 0x62, 0x75, 0xa1, 0x3e, 0xa3, 0x48, 0xc8, 0xbb, 0x5f, 0x54, 0x88, 0x77, 0x46, 0xc5, - 0x77, 0x6d, 0xb9, 0xfb, 0x25, 0x4a, 0xe8, 0x98, 0xfb, 0x45, 0x72, 0x2e, 0x28, 0x9a, 0x1b, 0x09, - 0xab, 0xab, 0xd3, 0xf2, 0x4a, 0x45, 0x05, 0x7b, 0x52, 0xa5, 0x18, 0x99, 0x5c, 0xa9, 0x44, 0xb5, - 0x5d, 0x75, 0x1b, 0x0c, 0x27, 0x2a, 0xed, 0x26, 0xf3, 0x27, 0x98, 0x88, 0x5a, 0x7f, 0xaa, 0x08, - 0x35, 0x3f, 0xb2, 0x84, 0x52, 0xb9, 0x09, 0xf9, 0x4a, 0x11, 0x51, 0xca, 0x47, 0x56, 0x5a, 0x8d, - 0x1c, 0x92, 0x25, 0xd4, 0xc7, 0x4d, 0xe4, 0x4f, 0xd3, 0x84, 0x52, 0x2e, 0x2b, 0xb5, 0x90, 0xec, - 0x1f, 0x41, 0x35, 0xa5, 0x6a, 0x4c, 0x61, 0xca, 0xe6, 0xe9, 0xf5, 0xa7, 0x8b, 0xd1, 0xf3, 0xc3, - 0x8d, 0xaf, 0x1b, 0x93, 0x0e, 0x37, 0x8e, 0x50, 0x3e, 0xdc, 0x52, 0xaa, 0xc9, 0xb8, 0x89, 0x51, - 0xc1, 0xa4, 0x3c, 0xa5, 0xd2, 0xc4, 0x28, 0xca, 0xfa, 0x2b, 0x30, 0xc0, 0xfe, 0x23, 0xa6, 0x27, - 0x65, 0xdc, 0x21, 0x95, 0x3e, 0xa9, 0x42, 0xc5, 0xda, 0xdf, 0x02, 0x8f, 0x88, 0xd5, 0x6b, 0xe7, - 0xf3, 0x7b, 0x9d, 0x92, 0xea, 0xb3, 0xca, 0xa4, 0xbc, 0x38, 0xb1, 0x54, 0xeb, 0x7c, 0x7e, 0x67, - 0x2b, 0x89, 0x4b, 0x2d, 0x76, 0x42, 0xe2, 0xc4, 0x4a, 0xa7, 0xf3, 0xf9, 0x1d, 0xa0, 0x24, 0x2e, - 0xb5, 0x02, 0x0a, 0xad, 0x62, 0xc9, 0xea, 0xa7, 0xa9, 0x7c, 0x2b, 0x71, 0xe4, 0xf2, 0x55, 0x2c, - 0xbb, 0x12, 0xe7, 0x7d, 0x0d, 0x1c, 0xcf, 0x28, 0xb2, 0xa9, 0xe7, 0xdb, 0x2d, 0xce, 0xa3, 0x5f, - 0x2b, 0xce, 0xc3, 0xa0, 0x7c, 0xa6, 0x81, 0x53, 0xd2, 0x32, 0x9a, 0xab, 0x85, 0x1a, 0xe7, 0x38, - 0xf5, 0x17, 0x77, 0xcb, 0x29, 0xd8, 0x29, 0xa3, 0x44, 0x46, 0x6a, 0xa7, 0x74, 0x1e, 0xb9, 0x9d, - 0xe4, 0x15, 0x30, 0xd5, 0x37, 0xc1, 0x48, 0x5a, 0xf5, 0xcb, 0x4c, 0xce, 0x0e, 0x23, 0xce, 0xa0, - 0x3f, 0x53, 0x90, 0x81, 0x01, 0xf8, 0x40, 0x03, 0x27, 0xb2, 0x8a, 0x4c, 0x2e, 0xe7, 0xac, 0xa4, - 0x69, 0x4c, 0xfa, 0x73, 0xbb, 0x60, 0x62, 0x68, 0x3e, 0xd1, 0x80, 0x2e, 0xa9, 0x1f, 0x79, 0x3a, - 0x7f, 0xe5, 0x4b, 0xc5, 0x74, 0x7d, 0x77, 0x7c, 0x12, 0x23, 0x45, 0xe9, 0x16, 0x05, 0x8c, 0xc4, - 0x98, 0x8a, 0x18, 0x29, 0x91, 0x4f, 0x91, 0x6e, 0xa4, 0x08, 0x50, 0x31, 0x23, 0x45, 0x98, 0xae, - 0xef, 0x8e, 0x8f, 0xc1, 0xfa, 0x48, 0x03, 0xa3, 0xd9, 0x65, 0x1d, 0xd2, 0x29, 0x2d, 0x93, 0x4d, - 0x7f, 0x61, 0x57, 0x6c, 0x0c, 0xd3, 0x7f, 0x69, 0xe0, 0xa4, 0xac, 0x3e, 0x43, 0x3a, 0x6c, 0x24, - 0x8c, 0xfa, 0x1f, 0xed, 0x92, 0x91, 0x21, 0x7b, 0x4b, 0x03, 0x47, 0x53, 0x4b, 0x2d, 0x2e, 0xa9, - 0xbb, 0x06, 0xe1, 0xd0, 0xaf, 0x16, 0xe5, 0x10, 0xfc, 0x3a, 0xab, 0x88, 0xe2, 0x72, 0x21, 0x77, - 0xa0, 0x50, 0x9e, 0xdb, 0x05, 0x13, 0xbf, 0x72, 0x26, 0x2b, 0x24, 0x14, 0x8e, 0x28, 0xca, 0x2b, - 0x67, 0x66, 0x5d, 0x04, 0x3a, 0x67, 0x44, 0x35, 0x11, 0x67, 0xf2, 0x57, 0xdf, 0x05, 0xcb, 0xd5, - 0xa7, 0x94, 0xc8, 0x78, 0x11, 0x51, 0x69, 0xc2, 0x19, 0xb9, 0x9d, 0x28, 0x99, 0x5c, 0x44, 0xa2, - 0x34, 0x01, 0xfb, 0x54, 0x6a, 0x61, 0xc2, 0xa5, 0xfc, 0x25, 0x53, 0xe4, 0xd0, 0xaf, 0x16, 0xe5, - 0x48, 0x9e, 0xa7, 0xb8, 0x92, 0x84, 0x49, 0xa5, 0xd6, 0x28, 0xb5, 0xca, 0x79, 0x2a, 0x59, 0x9b, - 0x80, 0xbc, 0x27, 0x59, 0x98, 0x30, 0xa5, 0xd4, 0x54, 0x48, 0x2e, 0xf7, 0x9e, 0xcc, 0xc2, 0x84, - 0xaa, 0x0f, 0x1e, 0x8d, 0x57, 0x25, 0x5c, 0x54, 0x6a, 0x89, 0x10, 0xcb, 0x83, 0x95, 0x19, 0xd5, - 0x09, 0xd1, 0x79, 0x3f, 0xd7, 0x9f, 0x18, 0x99, 0xca, 0x79, 0x9f, 0xf7, 0x27, 0x76, 0x2e, 0x08, - 0xd3, 0xbb, 0x15, 0xce, 0x05, 0x94, 0x54, 0xe5, 0x5c, 0x10, 0xcf, 0xd4, 0x67, 0xe7, 0x02, 0x25, - 0x71, 0x02, 0xa9, 0xca, 0xb9, 0x20, 0x45, 0x9c, 0x98, 0xbc, 0xae, 0x70, 0x2e, 0x50, 0x12, 0x97, - 0x9a, 0x42, 0x8e, 0x4f, 0xa6, 0x5c, 0xfa, 0xf8, 0xb9, 0x7c, 0xfb, 0x60, 0xc2, 0x9c, 0x93, 0x69, - 0x4a, 0xd2, 0x33, 0x1b, 0x80, 0x5c, 0x3e, 0xb3, 0xc2, 0x00, 0x8c, 0xa8, 0x55, 0x06, 0x60, 0x32, - 0x5d, 0x99, 0x3b, 0x7d, 0x24, 0x72, 0x95, 0xeb, 0x8a, 0x0d, 0xf2, 0x33, 0xd0, 0xb5, 0xe2, 0x3c, - 0xbc, 0x09, 0x12, 0x09, 0xc8, 0x93, 0xf9, 0x37, 0x02, 0x11, 0xb5, 0xdc, 0x04, 0x99, 0x39, 0xc5, - 0x3b, 0xe0, 0x48, 0x32, 0x73, 0x38, 0x2f, 0x1e, 0x25, 0x92, 0xe7, 0xc4, 0xeb, 0xb3, 0x32, 0x82, - 0xf1, 0xdc, 0x9f, 0x9a, 0x0e, 0xac, 0x10, 0x2d, 0x8a, 0x21, 0xb8, 0x5a, 0x94, 0x83, 0x0f, 0x10, - 0xc6, 0xd2, 0x7c, 0x2f, 0xa8, 0x68, 0x43, 0x37, 0x0f, 0x75, 0x75, 0x5a, 0xde, 0xe2, 0xc9, 0xcc, - 0xdd, 0x29, 0x45, 0x05, 0xa8, 0xdc, 0x2b, 0x85, 0xc8, 0xf9, 0x01, 0xcd, 0x27, 0xe4, 0x9e, 0xcb, - 0x9f, 0x12, 0x14, 0x06, 0x74, 0x4a, 0x02, 0x2e, 0xf2, 0xe6, 0x44, 0xf6, 0xed, 0xa4, 0x4a, 0xd8, - 0x25, 0xa4, 0x96, 0x7b, 0x73, 0x66, 0x72, 0x2d, 0x72, 0xa9, 0xd4, 0x44, 0xd8, 0x4b, 0xf9, 0x07, - 0x5e, 0x91, 0x43, 0xee, 0x52, 0xb2, 0x74, 0x51, 0xe4, 0x52, 0x31, 0xe9, 0x52, 0x97, 0x8a, 0xc9, - 0xad, 0xab, 0xd3, 0x32, 0x89, 0xef, 0x6a, 0xe0, 0x58, 0x7a, 0xee, 0xe4, 0xac, 0x7a, 0x6b, 0x94, - 0x45, 0x7f, 0xb6, 0x30, 0x0b, 0xdf, 0xed, 0x89, 0x74, 0xc7, 0xc9, 0xfc, 0x0d, 0xa1, 0x6a, 0xb7, - 0x67, 0x25, 0x2d, 0x92, 0x33, 0x93, 0x24, 0x63, 0xf1, 0x19, 0x95, 0x10, 0x5c, 0x0a, 0x63, 0xce, - 0x99, 0x29, 0x3f, 0xe9, 0x10, 0x2f, 0xa1, 0x5c, 0xc2, 0xa1, 0x7c, 0x09, 0x8d, 0x08, 0x73, 0x96, - 0xd0, 0x64, 0xbe, 0x20, 0x17, 0xbd, 0xca, 0x48, 0xa5, 0xbb, 0x5a, 0x44, 0x15, 0x9e, 0x53, 0x25, - 0x7a, 0x25, 0x4f, 0x8e, 0xc3, 0xe0, 0xa4, 0x79, 0x7e, 0x0a, 0xf3, 0xf7, 0x6e, 0xc0, 0xa9, 0x64, - 0xee, 0xe1, 0xc1, 0x93, 0x9e, 0xb6, 0x37, 0x5b, 0x64, 0x0e, 0xc2, 0x2c, 0xf2, 0xc1, 0x23, 0xcf, - 0xa4, 0x43, 0x38, 0xd2, 0xd3, 0xe6, 0x66, 0x8b, 0x74, 0x80, 0x02, 0x0e, 0x69, 0xbe, 0x1a, 0xc6, - 0x91, 0x9e, 0xac, 0xa6, 0x14, 0x5a, 0x2e, 0x80, 0x43, 0x9a, 0x71, 0x86, 0x26, 0x93, 0xc4, 0xff, - 0xd3, 0x9c, 0xf7, 0x7f, 0x48, 0x0b, 0xd4, 0xf2, 0xc9, 0x24, 0xeb, 0x7f, 0x5a, 0xc6, 0x11, 0x86, - 0xac, 0x34, 0x37, 0x85, 0x1c, 0x8d, 0x04, 0x93, 0x3c, 0xc2, 0x90, 0x97, 0xc7, 0xf6, 0x26, 0x18, - 0x49, 0xcb, 0x4f, 0x9b, 0xc9, 0x6f, 0x53, 0x60, 0x90, 0x47, 0x5b, 0x65, 0xc9, 0x67, 0xdb, 0x60, - 0x38, 0x91, 0x46, 0x36, 0x59, 0xa4, 0x57, 0xe5, 0xdd, 0x90, 0x95, 0x20, 0x16, 0x65, 0x73, 0xe0, - 0xd4, 0x1e, 0x85, 0x6c, 0x0e, 0x44, 0xa7, 0x92, 0xcd, 0x21, 0x64, 0x78, 0xb1, 0xab, 0x3f, 0x21, - 0x9d, 0x4b, 0xe1, 0xea, 0x8f, 0xa7, 0x57, 0xb9, 0xfa, 0x4b, 0xcb, 0xef, 0x42, 0x3b, 0x85, 0x58, - 0x72, 0xd7, 0x05, 0xb5, 0x96, 0x10, 0xad, 0x5e, 0x57, 0xa7, 0x4d, 0x1e, 0x58, 0xc3, 0x74, 0xaf, - 0xf3, 0x6a, 0x8d, 0xcc, 0x3b, 0xae, 0xca, 0x81, 0x35, 0x96, 0x04, 0x16, 0x1d, 0xec, 0xb8, 0x0c, - 0xb0, 0x49, 0xb5, 0x66, 0x68, 0xa0, 0xe1, 0xa9, 0x22, 0xd4, 0xc9, 0xf4, 0x99, 0x7c, 0xe7, 0x89, - 0xe8, 0x54, 0xd2, 0x67, 0x04, 0xe7, 0xf9, 0x48, 0x03, 0xa3, 0xd9, 0x7f, 0xab, 0xe1, 0x4a, 0x91, - 0x29, 0x98, 0xb1, 0xc9, 0xc3, 0xc7, 0xb9, 0x7f, 0x35, 0x01, 0x1f, 0x69, 0x33, 0xfe, 0x64, 0x42, - 0xde, 0x61, 0x25, 0x0d, 0xcd, 0xb5, 0xe2, 0x3c, 0x21, 0x94, 0xf9, 0x97, 0xbf, 0xbc, 0x37, 0xa6, - 0x7d, 0x75, 0x6f, 0x4c, 0xfb, 0xe6, 0xde, 0x98, 0xf6, 0x1f, 0xf7, 0xc7, 0x0e, 0x7d, 0x75, 0x7f, - 0xec, 0xd0, 0x2f, 0xef, 0x8f, 0x1d, 0xfa, 0x8b, 0x29, 0xae, 0xb4, 0x3a, 0xfc, 0x6b, 0x3e, 0xe1, - 0xbf, 0xdb, 0xf5, 0x99, 0xbb, 0xec, 0x01, 0x57, 0x59, 0xaf, 0xf5, 0xe1, 0x3f, 0xf0, 0x73, 0xf9, - 0x77, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa2, 0x65, 0x54, 0x15, 0x7e, 0x69, 0x00, 0x00, + 0xa1, 0xc4, 0x24, 0x80, 0x13, 0x7f, 0xc0, 0x4e, 0x0c, 0x27, 0xb1, 0x63, 0x24, 0x81, 0x03, 0x23, + 0x41, 0x90, 0x8b, 0x03, 0x04, 0x01, 0x92, 0x9c, 0x82, 0xfc, 0x01, 0x3e, 0x2d, 0xbc, 0x58, 0xec, + 0x62, 0x4f, 0x6b, 0x43, 0x3a, 0xee, 0x61, 0x4f, 0x7b, 0x5f, 0xd4, 0x47, 0x57, 0x57, 0xf5, 0x47, + 0x75, 0x35, 0x4d, 0x91, 0xb2, 0xb1, 0x27, 0x4e, 0xf7, 0xbc, 0x57, 0xef, 0xf7, 0x5e, 0xbd, 0xfa, + 0x7a, 0xf5, 0xde, 0x10, 0x0c, 0xdb, 0x4e, 0xe0, 0x76, 0x1c, 0x6b, 0x26, 0xb8, 0x37, 0xdd, 0xf1, + 0xdc, 0xc0, 0xad, 0x9e, 0xa0, 0x6f, 0xa6, 0x63, 0x7f, 0xf5, 0xa3, 0xb6, 0x6b, 0xbb, 0x98, 0x66, + 0x06, 0x7d, 0x22, 0xe4, 0x7a, 0x95, 0x35, 0x60, 0xf9, 0x9b, 0xf4, 0xdd, 0xd1, 0xf0, 0xdd, 0x9a, + 0x67, 0xb5, 0x1b, 0x1b, 0xf4, 0xed, 0x91, 0x88, 0xd2, 0x8e, 0x13, 0x6e, 0xc1, 0xad, 0x35, 0xe8, + 0x25, 0xd8, 0xdd, 0x6e, 0x3b, 0xd8, 0xa1, 0x6f, 0x8f, 0x85, 0x6f, 0x3d, 0xd8, 0x82, 0x96, 0x0f, + 0xe9, 0xeb, 0xd1, 0xf0, 0x75, 0xa7, 0xdb, 0x6a, 0x99, 0xf0, 0x4f, 0xba, 0xd0, 0x0f, 0xe2, 0x02, + 0x9b, 0x96, 0x1b, 0x6f, 0xa4, 0xe1, 0x6e, 0x6d, 0xc1, 0x76, 0x48, 0x39, 0x12, 0xbe, 0x76, 0x7c, + 0xbf, 0x1b, 0xb6, 0x5c, 0x8b, 0x04, 0x76, 0x5c, 0xdf, 0x09, 0x5c, 0x6f, 0x27, 0x4e, 0x7e, 0x77, + 0xc3, 0x75, 0x7c, 0xfa, 0x72, 0xac, 0xe1, 0xfa, 0x5b, 0xae, 0x3f, 0xb3, 0x66, 0xf9, 0x70, 0x66, + 0x7b, 0x76, 0x0d, 0x06, 0xd6, 0xec, 0x4c, 0xc3, 0x75, 0xda, 0xf1, 0xe6, 0xac, 0x20, 0xb0, 0x1a, + 0x1b, 0x9c, 0xf4, 0xe3, 0x91, 0x20, 0xab, 0x11, 0x38, 0x2e, 0xe5, 0x30, 0xfe, 0x59, 0x03, 0x83, + 0xcb, 0xbe, 0xbd, 0x78, 0x0f, 0x7a, 0x0d, 0xc7, 0x87, 0xd5, 0x1a, 0xe8, 0x6f, 0x78, 0xd0, 0x0a, + 0x5c, 0xaf, 0xa6, 0x8d, 0x6b, 0x13, 0x15, 0x33, 0x7c, 0xac, 0xae, 0x81, 0x3e, 0x6b, 0x0b, 0x19, + 0xab, 0xd6, 0x33, 0xae, 0x4d, 0x0c, 0xd6, 0x47, 0xa7, 0x09, 0x98, 0x69, 0x04, 0x66, 0x9a, 0x82, + 0x99, 0xbe, 0xe9, 0x3a, 0xed, 0xf9, 0x99, 0x2f, 0x7f, 0x76, 0xfa, 0xd0, 0xdb, 0x5f, 0x9f, 0x3e, + 0x67, 0x3b, 0xc1, 0x46, 0x77, 0x6d, 0xba, 0xe1, 0x6e, 0xcd, 0x50, 0xe4, 0xe4, 0xcf, 0x94, 0xdf, + 0xdc, 0x9c, 0x09, 0x76, 0x3a, 0xd0, 0xc7, 0x0c, 0x26, 0x6d, 0xb9, 0x3a, 0x04, 0x7a, 0x02, 0xb7, + 0x56, 0xc2, 0x82, 0x7b, 0x02, 0xd7, 0x38, 0x06, 0x46, 0x38, 0x70, 0x26, 0xf4, 0x3b, 0x6e, 0xdb, + 0x87, 0xc6, 0xbf, 0x68, 0xa0, 0xba, 0xec, 0xdb, 0xab, 0xae, 0x6d, 0xb7, 0xe0, 0xcb, 0xae, 0xd7, + 0x80, 0xb7, 0xbb, 0xfe, 0x86, 0x04, 0xfb, 0xeb, 0xe0, 0x70, 0x64, 0xe0, 0xa5, 0x26, 0xd5, 0xe0, + 0xcc, 0x74, 0x86, 0x1b, 0x4e, 0x9b, 0x1c, 0xf1, 0x7c, 0x19, 0x69, 0x63, 0x0a, 0x0d, 0x54, 0xc7, + 0x00, 0x20, 0x7e, 0xf7, 0x9a, 0xb5, 0x05, 0x29, 0x60, 0xee, 0x8d, 0x71, 0x0a, 0xe8, 0x49, 0x80, + 0x0c, 0xff, 0xff, 0x69, 0xe0, 0xe4, 0xb2, 0x6f, 0x9b, 0x70, 0xdb, 0xdd, 0x84, 0xb7, 0x3d, 0x77, + 0xdb, 0x69, 0x42, 0xef, 0x36, 0xf4, 0xb6, 0x1c, 0xdf, 0x77, 0xdc, 0xb6, 0x44, 0x91, 0x1a, 0xe8, + 0xb7, 0x3d, 0xab, 0x1d, 0x40, 0x0f, 0xeb, 0x50, 0x31, 0xc3, 0xc7, 0xaa, 0x0e, 0x06, 0x3a, 0xb4, + 0x25, 0x8a, 0x87, 0x3d, 0x57, 0x7f, 0x0b, 0x80, 0x0e, 0x6b, 0xbd, 0x56, 0x1e, 0xd7, 0x26, 0x86, + 0xea, 0x17, 0x33, 0x95, 0x4f, 0x02, 0x32, 0x39, 0x76, 0xe3, 0x0c, 0x78, 0x4a, 0x82, 0x9d, 0xe9, + 0xf8, 0x3f, 0x1a, 0x38, 0xba, 0xec, 0xdb, 0x73, 0xdd, 0x60, 0xc3, 0xf5, 0x9c, 0x3f, 0x65, 0xa4, + 0x8f, 0xb6, 0x72, 0x63, 0xe0, 0x54, 0x1a, 0x68, 0xa6, 0xd5, 0xbb, 0x1a, 0x78, 0x6c, 0xd9, 0xb7, + 0x6f, 0x22, 0xc4, 0x70, 0xd5, 0xf2, 0x37, 0x25, 0xea, 0xbc, 0x08, 0x06, 0xd0, 0x7c, 0xb5, 0xba, + 0xd3, 0x81, 0x58, 0x9f, 0xa1, 0xfa, 0x93, 0x99, 0xb0, 0x56, 0x29, 0xa1, 0xc9, 0x58, 0x64, 0x3a, + 0x1b, 0xe7, 0xc0, 0x31, 0x01, 0x45, 0x88, 0x0f, 0x0d, 0x20, 0xa7, 0x89, 0x81, 0x94, 0xcd, 0x1e, + 0xa7, 0x69, 0x7c, 0x44, 0xf0, 0xde, 0xe9, 0x34, 0xf3, 0xf1, 0x12, 0xde, 0x9e, 0x90, 0xb7, 0x7a, + 0x0d, 0xf4, 0xfa, 0x81, 0x15, 0x10, 0xf7, 0x1e, 0xaa, 0x1b, 0x52, 0xf0, 0x2b, 0x88, 0xd2, 0x24, + 0x0c, 0x48, 0xc6, 0x16, 0xf4, 0x7d, 0xcb, 0x86, 0xb8, 0x3f, 0x2a, 0x66, 0xf8, 0x68, 0x9c, 0xc0, + 0xc0, 0x23, 0x38, 0xcc, 0xb0, 0xcf, 0x61, 0x9c, 0x0b, 0xb0, 0x05, 0x8b, 0xe2, 0x34, 0xee, 0x6b, + 0xb8, 0xd3, 0x48, 0xa3, 0xd1, 0xc8, 0x9d, 0xb7, 0x1a, 0x9b, 0xdd, 0x8e, 0x09, 0xd7, 0xf7, 0x73, + 0x5e, 0x58, 0x44, 0x36, 0x73, 0xbd, 0xd0, 0x66, 0x33, 0x0a, 0x2d, 0x11, 0x9c, 0xd3, 0x2b, 0x88, + 0xcd, 0x24, 0xdc, 0xd5, 0x61, 0x50, 0xf2, 0xe0, 0x3a, 0x35, 0x1e, 0xfa, 0x68, 0x9c, 0x05, 0x4f, + 0xcb, 0x74, 0x64, 0x76, 0xfc, 0x5a, 0x03, 0xa3, 0xc8, 0x83, 0x9b, 0xcd, 0xef, 0xab, 0x25, 0x9e, + 0x02, 0x4f, 0x66, 0x2a, 0xc8, 0xcc, 0x40, 0xfc, 0x2c, 0x72, 0x27, 0xf6, 0x85, 0x01, 0xc6, 0xd9, + 0x17, 0x48, 0x90, 0x65, 0x27, 0x07, 0xf9, 0x2f, 0x35, 0x70, 0x78, 0xd9, 0xb7, 0x57, 0x60, 0x30, + 0x8f, 0x67, 0xf4, 0xfd, 0x34, 0xdb, 0x6f, 0x82, 0x3e, 0xb2, 0x8c, 0x60, 0xbb, 0x0d, 0xd6, 0x27, + 0x33, 0x9b, 0xe2, 0x11, 0x4e, 0x93, 0x3f, 0xb4, 0x45, 0xda, 0x82, 0x3e, 0x0d, 0xfa, 0xa8, 0x02, + 0x55, 0x50, 0x6e, 0xa3, 0x85, 0x8a, 0xa0, 0xc7, 0x9f, 0x91, 0x65, 0xfd, 0x0d, 0x8b, 0xce, 0xb4, + 0xe8, 0xa3, 0x71, 0x1c, 0xcf, 0xd8, 0xac, 0x51, 0x66, 0x8f, 0x7f, 0xd2, 0xf0, 0x32, 0xbc, 0x02, + 0x83, 0x05, 0xb8, 0x6e, 0x75, 0x5b, 0x07, 0x60, 0x96, 0xe3, 0x82, 0x59, 0x2a, 0xa1, 0x8a, 0xc6, + 0x13, 0x78, 0x21, 0x8d, 0x23, 0x63, 0xc8, 0xdf, 0xe9, 0x01, 0x47, 0x96, 0x7d, 0x7b, 0xb9, 0xdb, + 0x0a, 0x9c, 0x03, 0xe9, 0xce, 0x15, 0x30, 0x40, 0x90, 0x42, 0xbf, 0x56, 0x1a, 0x2f, 0x4d, 0x0c, + 0xd6, 0x67, 0x65, 0x1d, 0x2a, 0x02, 0x15, 0x7b, 0x95, 0x35, 0x54, 0xb8, 0x5f, 0x4f, 0xe2, 0x29, + 0x41, 0x6c, 0x9b, 0x99, 0xe8, 0x53, 0x0d, 0x3c, 0xce, 0x46, 0xc4, 0xa3, 0xd3, 0xb1, 0xa3, 0xe0, + 0x44, 0x0c, 0x15, 0x43, 0xfc, 0x39, 0xd9, 0x59, 0x60, 0x7d, 0x0e, 0x0a, 0xb6, 0x1e, 0xeb, 0xd7, + 0x4a, 0xd4, 0x3d, 0x74, 0x0f, 0x91, 0x80, 0xc7, 0xf0, 0x3f, 0xd0, 0x40, 0x85, 0x38, 0xed, 0xaa, + 0x65, 0xef, 0x27, 0xe8, 0x1b, 0xa0, 0x14, 0x58, 0x36, 0x9d, 0x58, 0xce, 0xe6, 0x4c, 0x2c, 0xab, + 0x96, 0x3d, 0xbd, 0x6a, 0xd9, 0xb4, 0x21, 0xc4, 0xa8, 0x5f, 0x04, 0x25, 0x84, 0x58, 0xcd, 0xe9, + 0x46, 0xf0, 0xc8, 0x23, 0x0d, 0x31, 0xd5, 0x7f, 0xa1, 0x81, 0x21, 0xce, 0x15, 0xf7, 0x59, 0xff, + 0x45, 0x50, 0x0e, 0x2c, 0x3b, 0x1c, 0x88, 0x17, 0x55, 0x06, 0xa2, 0x68, 0x05, 0xcc, 0x5e, 0xcc, + 0x0c, 0x35, 0x70, 0x5c, 0x6c, 0x8e, 0xd9, 0xe2, 0x43, 0xb2, 0xca, 0x84, 0x6b, 0xd4, 0xbe, 0x5a, + 0x62, 0x38, 0xf2, 0x84, 0x0a, 0xee, 0x5b, 0x3a, 0xf7, 0x33, 0x30, 0x0c, 0xe5, 0x27, 0x5a, 0x34, + 0x83, 0x1e, 0x08, 0xd4, 0x2a, 0xd7, 0x69, 0x15, 0xd2, 0x03, 0xfc, 0x84, 0x96, 0x44, 0xfc, 0xb7, + 0xc4, 0xae, 0x73, 0xcd, 0xe6, 0x32, 0x3e, 0xf0, 0x4b, 0xc0, 0x1e, 0x05, 0xbd, 0x4d, 0xcb, 0xa5, + 0x28, 0x2b, 0x26, 0x79, 0x40, 0x53, 0x52, 0xd7, 0x87, 0xde, 0x52, 0x33, 0x9c, 0x92, 0xc8, 0x53, + 0xf5, 0x59, 0x50, 0xf6, 0xdc, 0x16, 0xa4, 0x47, 0x8c, 0xa7, 0xb2, 0xdd, 0x07, 0x8b, 0x35, 0xdd, + 0x16, 0x34, 0x31, 0x03, 0xb5, 0x2d, 0x03, 0xc4, 0x90, 0xfe, 0x03, 0x59, 0x57, 0xc9, 0xa6, 0x2e, + 0xe2, 0x3a, 0x78, 0xc0, 0x64, 0x55, 0x8d, 0xe3, 0x62, 0xb8, 0xdf, 0xc4, 0x2b, 0x86, 0x09, 0xb7, + 0xdc, 0x6d, 0xb8, 0xb7, 0x36, 0xa6, 0xd3, 0x3e, 0xdf, 0x34, 0x93, 0xfa, 0x45, 0x0f, 0x16, 0x4b, + 0x0e, 0x3d, 0xf3, 0x38, 0x6a, 0x23, 0x11, 0xdb, 0xe0, 0xa2, 0x15, 0x25, 0x79, 0xb4, 0xe2, 0x12, + 0xf2, 0xba, 0xff, 0xf8, 0xfa, 0xf4, 0x84, 0x62, 0xb4, 0xc2, 0x67, 0xe1, 0x8a, 0xe3, 0xa0, 0x0f, + 0xde, 0xeb, 0x38, 0xde, 0x0e, 0xd6, 0xa2, 0x64, 0xd2, 0xa7, 0xaa, 0x11, 0x1b, 0x04, 0x65, 0x7c, + 0x56, 0x11, 0xfd, 0xfa, 0x14, 0xa8, 0x74, 0x2c, 0x0f, 0xb6, 0x83, 0x25, 0xa7, 0x59, 0xeb, 0xc5, + 0x04, 0xd1, 0x8b, 0xea, 0x8b, 0xa0, 0x8f, 0x3c, 0xd4, 0xfa, 0x70, 0xe7, 0x65, 0x0f, 0x20, 0x62, + 0x89, 0xdb, 0x98, 0xd8, 0xa4, 0x4c, 0xc6, 0x79, 0x6c, 0x46, 0xde, 0x54, 0x99, 0x27, 0xc4, 0x37, + 0xb9, 0x13, 0x19, 0x21, 0x5d, 0x24, 0x4a, 0xa8, 0x1f, 0x14, 0x33, 0xcc, 0x60, 0x9c, 0x06, 0x4f, + 0xa4, 0x36, 0xcd, 0xba, 0xf4, 0x3a, 0x5e, 0x0d, 0x6e, 0xb6, 0x5c, 0x3f, 0xbf, 0x43, 0xe3, 0xa7, + 0x3e, 0x32, 0xb1, 0x72, 0xbc, 0xac, 0xd5, 0xe7, 0xf9, 0x0d, 0x4d, 0xd1, 0x66, 0x85, 0x7d, 0x87, + 0xd8, 0xee, 0x8f, 0x7a, 0xc0, 0x30, 0xb3, 0xaa, 0x49, 0x02, 0x84, 0xfb, 0x39, 0x13, 0xd6, 0x40, + 0x7f, 0x60, 0xd9, 0x5c, 0xc0, 0x29, 0x7c, 0x44, 0x1d, 0x10, 0x58, 0x9e, 0x0d, 0x03, 0x7a, 0x4e, + 0xa2, 0x4f, 0x6c, 0x89, 0xea, 0xe5, 0x96, 0xa8, 0x71, 0x30, 0xd8, 0x84, 0x7e, 0xc3, 0x73, 0x3a, + 0x81, 0xe3, 0xb6, 0xb1, 0x7b, 0x55, 0x4c, 0xfe, 0x15, 0xa2, 0x88, 0xc2, 0x87, 0x7e, 0xad, 0x9f, + 0x50, 0x70, 0xaf, 0xf0, 0x98, 0xf6, 0xac, 0xf5, 0xa0, 0x36, 0x30, 0xae, 0x4d, 0x0c, 0x98, 0xe4, + 0xa1, 0x3a, 0x06, 0x40, 0xc7, 0x0b, 0x0d, 0x53, 0xab, 0xe0, 0xaf, 0xb8, 0x37, 0x88, 0xcb, 0xf1, + 0x57, 0x2d, 0xbb, 0x06, 0x08, 0x17, 0x7e, 0x30, 0x2e, 0x80, 0x5a, 0xdc, 0xa8, 0x99, 0xbe, 0xfa, + 0x09, 0xe9, 0x81, 0xf0, 0x14, 0x9c, 0xd7, 0x03, 0x71, 0x3f, 0xfd, 0x7e, 0x1a, 0x50, 0xc7, 0x06, + 0x14, 0x6c, 0xc2, 0x5c, 0xf6, 0x05, 0x6c, 0x2f, 0xe2, 0xcd, 0x85, 0xed, 0x45, 0x5b, 0x16, 0xb8, + 0x59, 0xcb, 0x5f, 0x95, 0xf0, 0xa2, 0x46, 0xfa, 0xed, 0x76, 0x14, 0x16, 0x97, 0xaf, 0x04, 0x81, + 0x13, 0xb4, 0x60, 0xb8, 0x12, 0xe0, 0x87, 0xb8, 0x39, 0x4b, 0x49, 0x73, 0x8e, 0x01, 0xb0, 0x01, + 0xad, 0x26, 0xd9, 0x45, 0xd3, 0x0e, 0xe2, 0xde, 0x54, 0xdf, 0x00, 0xc3, 0xe8, 0x89, 0x1f, 0x3f, + 0xb8, 0xc3, 0x0a, 0x0e, 0xb6, 0x44, 0x23, 0x38, 0xc8, 0x6b, 0xf9, 0x74, 0xfb, 0x4e, 0x3b, 0x9a, + 0x7b, 0x83, 0x04, 0xaf, 0x61, 0x9b, 0x70, 0x82, 0xfb, 0x77, 0x21, 0x38, 0xde, 0x08, 0x5a, 0x1b, + 0x3c, 0xb8, 0xed, 0xc0, 0xbb, 0xd0, 0xf3, 0x6b, 0x03, 0x78, 0xe3, 0x13, 0xbd, 0x40, 0xdf, 0x5a, + 0xbe, 0xef, 0xd8, 0x6d, 0x08, 0xfd, 0x5a, 0x85, 0x7c, 0xcb, 0x5e, 0xa0, 0x93, 0x49, 0xcb, 0x5a, + 0x83, 0xad, 0xa5, 0xa6, 0x5f, 0x03, 0xe3, 0xa5, 0x89, 0xb2, 0xc9, 0x9e, 0x11, 0x27, 0xbe, 0x7c, + 0x58, 0x72, 0x9a, 0x7e, 0x6d, 0x10, 0x7f, 0x19, 0xbd, 0x30, 0x5e, 0xc2, 0xe7, 0x96, 0x44, 0x8f, + 0x66, 0x8d, 0x46, 0xb4, 0x89, 0x74, 0x98, 0xbf, 0xa0, 0x8f, 0xc6, 0x5f, 0x92, 0xe0, 0x13, 0xf1, + 0x45, 0xae, 0x89, 0x55, 0xdc, 0xd3, 0xd9, 0x9e, 0x61, 0xa4, 0x4c, 0x95, 0xe5, 0xe4, 0x96, 0x15, + 0x49, 0x2b, 0x31, 0x69, 0x91, 0x3f, 0x95, 0x39, 0x7f, 0xa2, 0xe1, 0xa1, 0x74, 0x08, 0xcc, 0x7b, + 0xff, 0x5e, 0x03, 0xa7, 0xd3, 0xa8, 0x16, 0x38, 0xb7, 0xdb, 0x6b, 0xb8, 0x31, 0x47, 0x2f, 0x27, + 0x1c, 0xdd, 0x38, 0x0f, 0xce, 0xe5, 0x80, 0x62, 0x0a, 0xbc, 0x4f, 0x2c, 0xbd, 0xd4, 0xde, 0x76, + 0x37, 0xe1, 0x32, 0xf4, 0x6c, 0xc5, 0x31, 0xb8, 0x3b, 0xe8, 0x7c, 0x28, 0xba, 0x1c, 0x0b, 0x45, + 0x13, 0x7b, 0xa7, 0x03, 0x61, 0x70, 0xbf, 0xd1, 0xf0, 0x6a, 0xbd, 0x02, 0x03, 0xee, 0xdb, 0x95, + 0x30, 0x56, 0xbc, 0xd7, 0x5e, 0x41, 0xa2, 0xd6, 0xd4, 0x2b, 0x48, 0x44, 0xfa, 0x2c, 0x18, 0xda, + 0x42, 0xe0, 0x6e, 0xba, 0x5b, 0x5b, 0x4e, 0xb0, 0xb2, 0x61, 0xd1, 0x29, 0x3d, 0xf6, 0x16, 0x75, + 0x12, 0xbd, 0xb5, 0x9b, 0x77, 0x9b, 0x3b, 0xe1, 0xe4, 0xce, 0xbd, 0x22, 0x4b, 0x85, 0xbf, 0x49, + 0x87, 0x7a, 0xd9, 0xa4, 0x4f, 0xc6, 0x33, 0x60, 0x2c, 0x5d, 0x43, 0x36, 0x7e, 0x18, 0x32, 0x8d, + 0x43, 0x66, 0xfc, 0xb5, 0x86, 0xaf, 0x8a, 0xe6, 0x9a, 0x4d, 0xc1, 0x70, 0xe1, 0x60, 0xdf, 0x6b, + 0xf3, 0x08, 0x53, 0x4b, 0x39, 0x36, 0xb5, 0x18, 0x4f, 0x03, 0x23, 0x1b, 0x0b, 0xeb, 0xcd, 0x8f, + 0x34, 0xbc, 0xb1, 0x23, 0xbb, 0xf4, 0x47, 0x00, 0xf5, 0x39, 0x70, 0x46, 0x0a, 0x87, 0x01, 0x4f, + 0xb5, 0xf5, 0x1c, 0x9b, 0x3a, 0x1f, 0x02, 0xea, 0x68, 0xa2, 0x2e, 0xc7, 0x26, 0xea, 0x54, 0x5b, + 0x33, 0x2c, 0xb9, 0xb6, 0x3e, 0x28, 0xd4, 0x19, 0xb6, 0x4e, 0x02, 0xff, 0x57, 0x72, 0x2b, 0x73, + 0xcb, 0x69, 0x6f, 0x72, 0x74, 0x4b, 0x68, 0xb5, 0x99, 0xdf, 0x59, 0x22, 0xbb, 0xb1, 0x6f, 0x81, + 0xfb, 0x2c, 0x18, 0xe2, 0x2e, 0xe3, 0x97, 0x98, 0x0a, 0xb1, 0xb7, 0x68, 0xea, 0x0a, 0x57, 0x38, + 0x7a, 0x0c, 0x63, 0xcf, 0xf4, 0x4e, 0x25, 0x13, 0x21, 0x53, 0xe5, 0xdf, 0x34, 0x3c, 0xb6, 0xef, + 0xb4, 0x5b, 0x8f, 0xb0, 0x32, 0x13, 0xe0, 0xac, 0x1c, 0x23, 0x53, 0xe7, 0x3d, 0x0d, 0x9f, 0x71, + 0x44, 0xcf, 0xbb, 0x85, 0xf6, 0x08, 0xfe, 0xc3, 0x58, 0x39, 0xd8, 0x6e, 0xa4, 0x2c, 0xee, 0x46, + 0x8c, 0x27, 0xf1, 0x1a, 0x9c, 0x06, 0x83, 0x41, 0xfd, 0x80, 0x0c, 0xd8, 0x84, 0xbb, 0x1d, 0x00, + 0x5a, 0x32, 0x5c, 0x33, 0x90, 0x30, 0xc0, 0xeb, 0x5c, 0x18, 0xed, 0x21, 0xae, 0xc8, 0x34, 0xc6, + 0x9c, 0x90, 0xc3, 0x70, 0xfc, 0x37, 0x09, 0x82, 0x91, 0xcd, 0xdc, 0x82, 0xe5, 0x4a, 0x00, 0x84, + 0x67, 0x9c, 0x9e, 0xec, 0x33, 0x4e, 0xca, 0xa6, 0x1c, 0xcd, 0x12, 0xdb, 0x56, 0x60, 0x79, 0x77, + 0xbc, 0x16, 0x5d, 0x6a, 0xa3, 0x17, 0xd8, 0x90, 0x6e, 0xc3, 0xc2, 0xcc, 0x64, 0xa1, 0x65, 0xcf, + 0x08, 0xc9, 0x5d, 0xb8, 0xe6, 0x3b, 0x01, 0xa4, 0xcb, 0x6b, 0xf8, 0x68, 0x9c, 0xe5, 0x8e, 0x14, + 0x0b, 0x96, 0x9b, 0xb2, 0xf1, 0xac, 0xe0, 0x73, 0xc9, 0x2d, 0xac, 0x9b, 0x09, 0x11, 0x54, 0xb9, + 0x6e, 0xd1, 0x89, 0x06, 0x73, 0x32, 0x5d, 0x4b, 0x91, 0xae, 0x34, 0x3a, 0xc7, 0x5a, 0x63, 0x26, + 0x84, 0x78, 0x94, 0x90, 0xdd, 0xd8, 0x82, 0xe5, 0xaa, 0x6d, 0x0d, 0xe3, 0x02, 0x73, 0x0d, 0x49, + 0x47, 0x41, 0x9a, 0x18, 0x86, 0xe4, 0xb7, 0xb9, 0x30, 0xe1, 0x82, 0xe5, 0xbe, 0x41, 0xcc, 0x55, + 0x00, 0xc5, 0x30, 0x28, 0x75, 0xbd, 0x56, 0x18, 0xee, 0xed, 0x7a, 0x2d, 0x21, 0xc2, 0x17, 0x35, + 0xc9, 0x24, 0xfe, 0x3e, 0xb6, 0x09, 0xfb, 0xfa, 0x16, 0xd7, 0x77, 0x8a, 0x22, 0x79, 0x0f, 0x28, + 0x89, 0x1e, 0x40, 0x9d, 0x37, 0xd1, 0x3a, 0x93, 0x7e, 0x1b, 0x67, 0xf7, 0xb0, 0xef, 0xe7, 0xb0, + 0x5b, 0x7d, 0x2b, 0x75, 0x49, 0x3a, 0x4e, 0xac, 0x45, 0x26, 0xef, 0x1a, 0x17, 0x88, 0x2f, 0xe4, + 0x4f, 0x42, 0xd4, 0x9c, 0xf7, 0x9d, 0x1f, 0xf3, 0xa1, 0xa2, 0x9b, 0x64, 0xf7, 0xf8, 0x2d, 0xe7, + 0x00, 0x21, 0x5e, 0x58, 0x8a, 0xc7, 0x0b, 0x6f, 0xb0, 0x78, 0x21, 0x09, 0xf6, 0x66, 0xdf, 0xee, + 0x50, 0x34, 0x62, 0xc0, 0x10, 0x0d, 0x8c, 0x35, 0xb4, 0xe1, 0xa5, 0x81, 0x0e, 0xf4, 0xb9, 0xba, + 0x28, 0x86, 0x31, 0xfa, 0x70, 0x1c, 0x35, 0x3b, 0x8a, 0x3c, 0xc7, 0x68, 0xc5, 0x58, 0x87, 0x0e, + 0x06, 0x9a, 0xce, 0xfa, 0xfa, 0xab, 0xdd, 0xf6, 0x26, 0x0d, 0x85, 0xb0, 0x67, 0x24, 0xb6, 0x63, + 0x05, 0x1b, 0x38, 0x0c, 0x52, 0x31, 0xf1, 0x67, 0x7c, 0xd8, 0x40, 0x6a, 0x23, 0xcf, 0xa9, 0x90, + 0x45, 0x2e, 0x7c, 0x16, 0x82, 0x45, 0x54, 0x91, 0xcc, 0x60, 0xd1, 0x17, 0x7c, 0xb0, 0xe8, 0xbb, + 0xd0, 0x07, 0x63, 0x00, 0xd0, 0x83, 0x46, 0x14, 0x12, 0xe6, 0xde, 0xb0, 0x3e, 0xea, 0xcb, 0xee, + 0xa3, 0xfe, 0xdd, 0xf5, 0x91, 0x10, 0x43, 0x8a, 0xd9, 0xd5, 0xf8, 0x81, 0xc6, 0x05, 0x91, 0xbe, + 0x07, 0x76, 0x14, 0xc2, 0x5a, 0x71, 0x65, 0x7f, 0xa2, 0xe1, 0x2f, 0x49, 0xe2, 0x5e, 0xf4, 0xa5, + 0xdb, 0xda, 0x86, 0xcd, 0xef, 0xb4, 0xd2, 0x37, 0x70, 0xde, 0x4b, 0xaa, 0x5e, 0x6c, 0x04, 0xe9, + 0x60, 0xc0, 0xa3, 0xef, 0xb0, 0x82, 0x03, 0x26, 0x7b, 0x36, 0x3e, 0x2b, 0x91, 0x58, 0x3d, 0x1e, + 0x7a, 0x78, 0x53, 0xb9, 0x9f, 0xa1, 0x6f, 0x16, 0xea, 0x29, 0x49, 0x42, 0x87, 0xc9, 0x88, 0x8a, + 0xb0, 0xa1, 0xeb, 0x8d, 0x05, 0xc3, 0x8e, 0x83, 0xbe, 0xbb, 0xd0, 0xb1, 0x37, 0xc8, 0x15, 0x4b, + 0xd9, 0xa4, 0x4f, 0xe2, 0xf9, 0xa7, 0x3f, 0x1e, 0x5e, 0x73, 0xc1, 0x61, 0x92, 0x31, 0x3c, 0x47, + 0x6e, 0x97, 0x06, 0xf6, 0xfe, 0x76, 0x49, 0x10, 0x80, 0x5c, 0x6b, 0x8d, 0xbb, 0x3b, 0xc1, 0x53, + 0x62, 0xc9, 0x14, 0xde, 0x19, 0xd7, 0xc9, 0x5d, 0x48, 0xd4, 0x37, 0x05, 0x62, 0x76, 0x7f, 0xc6, + 0x6d, 0x2e, 0x30, 0xef, 0x7e, 0x06, 0xeb, 0xf8, 0x6d, 0x48, 0x24, 0x9c, 0x3f, 0xfc, 0x8e, 0x8a, + 0xdf, 0x1f, 0x6c, 0x80, 0x8e, 0x8f, 0x2d, 0xc6, 0xe1, 0xf0, 0xa1, 0xb9, 0x11, 0x36, 0xd4, 0x30, + 0xd5, 0xc3, 0x09, 0x74, 0xc5, 0x42, 0x55, 0xe5, 0x44, 0xa8, 0xca, 0xb8, 0x8c, 0xad, 0x1b, 0x07, + 0x92, 0x13, 0x8f, 0x7a, 0x57, 0x0b, 0x6f, 0xab, 0x31, 0xcb, 0x41, 0xc5, 0x19, 0x68, 0x22, 0x6e, + 0x1c, 0x05, 0x6f, 0xe5, 0xe8, 0xa6, 0xf8, 0x40, 0x91, 0x92, 0x0d, 0x7c, 0x1a, 0x10, 0x06, 0xf6, + 0x2d, 0x9c, 0x43, 0x11, 0x2a, 0x73, 0x00, 0x87, 0xd7, 0x93, 0x61, 0x52, 0x28, 0x07, 0x80, 0xa1, + 0x7b, 0x5b, 0xa3, 0x27, 0x20, 0xa6, 0xc1, 0x01, 0x20, 0x24, 0xfd, 0x9d, 0xc0, 0xc0, 0x40, 0xfe, + 0x11, 0x5e, 0x7e, 0xc8, 0xa2, 0x9d, 0xb7, 0xfc, 0xec, 0xee, 0x48, 0x4d, 0x2e, 0x94, 0x39, 0x09, + 0x4c, 0x36, 0x99, 0x22, 0xc3, 0x2b, 0xca, 0xb0, 0x91, 0x82, 0x47, 0xea, 0xa3, 0xa0, 0xd7, 0xbd, + 0xdb, 0x66, 0xb9, 0xdc, 0xe4, 0x41, 0x61, 0xce, 0x69, 0xe3, 0x41, 0x1c, 0x17, 0xce, 0x06, 0xf1, + 0x5e, 0x2f, 0xb5, 0xc6, 0xff, 0xf7, 0xe0, 0x81, 0x45, 0x02, 0xfa, 0x2f, 0xbb, 0xde, 0xa6, 0x92, + 0xc6, 0x7b, 0xbe, 0xe2, 0x4f, 0x83, 0xea, 0xba, 0x20, 0x9c, 0xbb, 0xb6, 0x4d, 0xf9, 0xa6, 0xfa, + 0x02, 0x18, 0x15, 0xdf, 0x2e, 0x24, 0xcc, 0x9a, 0x4d, 0xc0, 0x65, 0x21, 0xf6, 0xf2, 0x59, 0x88, + 0x51, 0xa7, 0xf5, 0xf1, 0x9d, 0xc6, 0x5f, 0x87, 0xf4, 0xc7, 0xae, 0x43, 0xc8, 0x6c, 0x90, 0x66, + 0xbd, 0x28, 0x36, 0x43, 0x92, 0x52, 0x7f, 0x6d, 0xdb, 0x34, 0xdb, 0x66, 0x5d, 0xaf, 0x5c, 0xc4, + 0x33, 0x58, 0xba, 0x45, 0x13, 0x47, 0xbf, 0xcf, 0xc9, 0x2e, 0x5e, 0xa4, 0x5e, 0xe9, 0x36, 0x1a, + 0xd0, 0xf7, 0xf7, 0x39, 0xb9, 0x95, 0x2a, 0x53, 0x12, 0x94, 0xa9, 0xe3, 0xcd, 0x78, 0x2a, 0xbc, + 0x4c, 0x9d, 0x3e, 0x25, 0xdb, 0x0a, 0x12, 0xa7, 0x3a, 0x18, 0xbf, 0x49, 0x8b, 0x9e, 0x3d, 0x41, + 0x2b, 0x99, 0x44, 0x54, 0xcc, 0xd7, 0xff, 0x93, 0x86, 0xce, 0x63, 0x75, 0x0b, 0x6a, 0xdb, 0xb8, + 0x3d, 0x57, 0x20, 0x3f, 0x1a, 0x47, 0xa3, 0xe8, 0xd9, 0x70, 0x99, 0x66, 0xff, 0xae, 0x71, 0x7b, + 0xd7, 0x88, 0x74, 0xce, 0x6b, 0x6c, 0x38, 0xf2, 0xc3, 0xe2, 0xc3, 0x48, 0x46, 0xb6, 0xa8, 0x58, + 0xac, 0xd3, 0x80, 0xc9, 0x9e, 0x69, 0xb5, 0x56, 0x16, 0x4a, 0xa6, 0xcd, 0xc7, 0x24, 0x31, 0xf7, + 0xe6, 0x86, 0xd5, 0xb6, 0xe1, 0xeb, 0x78, 0x24, 0xee, 0xef, 0xf1, 0x2e, 0xb9, 0x36, 0x86, 0x19, + 0x5e, 0x11, 0x24, 0x86, 0xf6, 0x7f, 0xf9, 0xeb, 0xfb, 0xa8, 0xf5, 0x9b, 0x6e, 0xab, 0x65, 0xad, + 0xb9, 0x5e, 0x58, 0x4c, 0xb6, 0x8f, 0xe3, 0xa2, 0xeb, 0x33, 0xf4, 0xf8, 0x33, 0x7a, 0xc7, 0x72, + 0x2f, 0x2b, 0x34, 0xad, 0x92, 0xbf, 0xdf, 0x4f, 0x47, 0xcd, 0xdf, 0x9e, 0x45, 0xbb, 0xca, 0x47, + 0x52, 0x43, 0xaa, 0x8d, 0x0c, 0x21, 0xd3, 0xe6, 0x87, 0x9a, 0x90, 0xe4, 0x15, 0xd2, 0xe2, 0x2d, + 0xde, 0x01, 0x4f, 0x60, 0xc8, 0xf7, 0x1a, 0x6e, 0xcb, 0x0d, 0x13, 0x1b, 0xc8, 0x43, 0x7c, 0xa6, + 0xe8, 0x4d, 0xce, 0x14, 0x64, 0x0e, 0x4f, 0x55, 0x29, 0x73, 0x0e, 0xff, 0xb9, 0x26, 0xe4, 0x6a, + 0x1d, 0x98, 0x1d, 0x6a, 0xa0, 0x9f, 0x6e, 0xbc, 0xe9, 0xc2, 0x14, 0x3e, 0x32, 0x0b, 0x95, 0xd3, + 0x2c, 0xd4, 0x2b, 0xb1, 0x50, 0x32, 0x0d, 0x8e, 0x96, 0x5a, 0xa5, 0x2a, 0xcb, 0x57, 0xf2, 0xf2, + 0x39, 0x66, 0x8f, 0x9e, 0x45, 0x84, 0x82, 0xb1, 0x2c, 0x2d, 0xde, 0xd7, 0xb8, 0x72, 0xdf, 0x88, + 0x08, 0x2d, 0xf0, 0x4e, 0x7b, 0x3f, 0xb3, 0xe5, 0x8d, 0x57, 0xf1, 0x2d, 0x65, 0x06, 0x10, 0xe6, + 0x97, 0x06, 0x38, 0x6c, 0xb5, 0x5a, 0xee, 0x5d, 0xfa, 0x9e, 0x06, 0xfb, 0x84, 0x77, 0xc6, 0x3b, + 0x24, 0x65, 0x87, 0x34, 0x35, 0xe7, 0xdd, 0x85, 0xd6, 0x36, 0x24, 0x75, 0x76, 0xfb, 0xa9, 0x8f, + 0x89, 0xb7, 0x0f, 0x29, 0x20, 0x98, 0x2e, 0x97, 0xc0, 0x08, 0x6c, 0x5b, 0x6b, 0xb1, 0xaf, 0xa9, + 0x4a, 0x69, 0x5f, 0x19, 0x7f, 0x41, 0x76, 0x52, 0xf1, 0x2e, 0xdd, 0x4f, 0xb5, 0xc8, 0xae, 0x29, + 0x8e, 0x80, 0xf9, 0xd3, 0x5f, 0xf1, 0x55, 0xc6, 0x77, 0x7c, 0xe9, 0x62, 0xac, 0x83, 0x01, 0x34, + 0x1d, 0x73, 0xe7, 0x4d, 0xf6, 0x9c, 0x3a, 0xdf, 0xc9, 0x2f, 0x6e, 0x87, 0x41, 0x69, 0xcd, 0x71, + 0xe9, 0x48, 0x47, 0x1f, 0x85, 0x52, 0x63, 0x04, 0x25, 0xf3, 0x56, 0x76, 0x99, 0x4b, 0x24, 0x47, + 0x84, 0x77, 0x42, 0x14, 0xbb, 0xc2, 0x2e, 0x24, 0x8f, 0xf3, 0xcd, 0x31, 0x23, 0xcd, 0xe1, 0x53, + 0x54, 0x44, 0xf0, 0x9a, 0x5c, 0x56, 0xca, 0x99, 0x9c, 0x86, 0x45, 0xc4, 0x26, 0x58, 0xfb, 0x37, + 0xb8, 0xeb, 0x23, 0xf4, 0xe5, 0xbc, 0x23, 0xbb, 0x19, 0xa4, 0x86, 0xeb, 0x89, 0x0c, 0xc7, 0xdf, + 0xa9, 0x50, 0x7e, 0x0e, 0xfb, 0x88, 0xf0, 0x5d, 0xee, 0x15, 0x27, 0xbd, 0xd2, 0xec, 0x49, 0xbf, + 0xc1, 0x8d, 0x9a, 0x48, 0xad, 0xa7, 0xce, 0xf1, 0xa0, 0xf8, 0xa5, 0x26, 0x5f, 0x3b, 0xcb, 0xf7, + 0xf8, 0x85, 0x59, 0x50, 0x4d, 0xf9, 0xb1, 0x82, 0x21, 0x00, 0x5e, 0x59, 0x5a, 0xfd, 0xc3, 0x95, + 0x45, 0xf3, 0x77, 0x16, 0xcd, 0xe1, 0x43, 0xd5, 0x41, 0xd0, 0xbf, 0xb2, 0xfa, 0xba, 0x39, 0xf7, + 0xca, 0xe2, 0xb0, 0x56, 0xff, 0xaf, 0xdb, 0xa0, 0xb4, 0xec, 0xdb, 0x55, 0x1f, 0x3c, 0x1e, 0xff, + 0xb5, 0x06, 0x69, 0xfd, 0x55, 0x8c, 0x58, 0xbf, 0x5c, 0x80, 0x98, 0x79, 0xe8, 0xdf, 0x68, 0xa0, + 0x96, 0xf9, 0x1b, 0x0b, 0x57, 0x64, 0x2d, 0x66, 0x71, 0xe9, 0x2f, 0xec, 0x86, 0x8b, 0x01, 0xda, + 0x01, 0x47, 0x92, 0xbf, 0x87, 0x30, 0x25, 0x6b, 0x32, 0x41, 0xae, 0x5f, 0x2d, 0x44, 0xce, 0x44, + 0x37, 0x01, 0xe0, 0x7e, 0xb4, 0x40, 0x5a, 0xfc, 0x17, 0xd1, 0xe9, 0xd3, 0x6a, 0x74, 0xbc, 0x14, + 0xee, 0xa7, 0x06, 0xa4, 0x52, 0x22, 0x3a, 0xb9, 0x94, 0xe4, 0x6f, 0x05, 0x20, 0x29, 0xdc, 0x0f, + 0x05, 0x48, 0xa5, 0x44, 0x74, 0x72, 0x29, 0xc9, 0x4a, 0xf1, 0xaa, 0x05, 0x2a, 0x51, 0xc9, 0xf0, + 0x19, 0xa5, 0x32, 0x6c, 0x7d, 0x4a, 0x89, 0x8c, 0x89, 0xe8, 0x80, 0xa1, 0x58, 0x69, 0xf2, 0x05, + 0xf5, 0xea, 0x60, 0xbd, 0xae, 0x4e, 0xcb, 0x24, 0xfe, 0x31, 0x38, 0x2c, 0x94, 0xcc, 0x4e, 0xe4, + 0x1b, 0x85, 0x4a, 0xbb, 0xa4, 0x4a, 0xc9, 0x7b, 0x7b, 0xb2, 0x46, 0x77, 0x2a, 0x17, 0xb4, 0x20, + 0xf5, 0x6a, 0x21, 0x72, 0x26, 0xfa, 0x77, 0x41, 0x1f, 0x2d, 0x2f, 0x35, 0xf2, 0xcb, 0x5c, 0xf5, + 0x0b, 0xf9, 0x34, 0xac, 0x65, 0x1b, 0x0c, 0xf2, 0xd5, 0xab, 0xe7, 0x14, 0x8b, 0x48, 0xf5, 0x19, + 0x45, 0x42, 0xde, 0xfd, 0xa2, 0x7a, 0xcb, 0x33, 0x2a, 0xbe, 0x6b, 0xcb, 0xdd, 0x2f, 0x51, 0x29, + 0xc9, 0xdc, 0x2f, 0x92, 0x73, 0x41, 0xd1, 0xdc, 0x48, 0x58, 0x5d, 0x9d, 0x96, 0x57, 0x2a, 0xaa, + 0xcb, 0x94, 0x2a, 0xc5, 0xc8, 0xe4, 0x4a, 0x25, 0x8a, 0x2a, 0xab, 0xdb, 0x60, 0x38, 0x51, 0x50, + 0x39, 0x99, 0x3f, 0xc1, 0x44, 0xd4, 0xfa, 0x95, 0x22, 0xd4, 0xfc, 0xc8, 0x12, 0x2a, 0x22, 0x27, + 0xe4, 0x2b, 0x45, 0x44, 0x29, 0x1f, 0x59, 0x69, 0xa5, 0x90, 0x48, 0x96, 0x50, 0x06, 0x39, 0x91, + 0x3f, 0x4d, 0x13, 0x4a, 0xb9, 0xac, 0xd4, 0x7a, 0xc1, 0x3f, 0x07, 0xd5, 0x94, 0xe2, 0x40, 0x85, + 0x29, 0x9b, 0xa7, 0xd7, 0x9f, 0x29, 0x46, 0xcf, 0x0f, 0x37, 0xbe, 0x3c, 0x50, 0x3a, 0xdc, 0x38, + 0x42, 0xf9, 0x70, 0x4b, 0x29, 0x1a, 0xe4, 0x26, 0x46, 0x05, 0x93, 0xf2, 0x94, 0x4a, 0x13, 0xa3, + 0x28, 0xeb, 0x0f, 0xc0, 0x00, 0xfb, 0xbd, 0xad, 0xa7, 0x65, 0xdc, 0x21, 0x95, 0x3e, 0xa9, 0x42, + 0xc5, 0xda, 0xdf, 0x02, 0x8f, 0x89, 0x45, 0x8a, 0xe7, 0xf3, 0x7b, 0x9d, 0x92, 0xea, 0xb3, 0xca, + 0xa4, 0xbc, 0x38, 0xb1, 0x22, 0xef, 0x7c, 0x7e, 0x67, 0x2b, 0x89, 0x4b, 0xad, 0x69, 0x43, 0xe2, + 0xc4, 0x82, 0xb6, 0xf3, 0xf9, 0x1d, 0xa0, 0x24, 0x2e, 0xb5, 0xd0, 0x0d, 0xad, 0x62, 0xc9, 0x22, + 0xb7, 0xa9, 0x7c, 0x2b, 0x71, 0xe4, 0xf2, 0x55, 0x2c, 0xbb, 0xe0, 0xea, 0x03, 0x0d, 0x1c, 0xcf, + 0xa8, 0xa5, 0xaa, 0xe7, 0xdb, 0x2d, 0xce, 0xa3, 0x5f, 0x2f, 0xce, 0xc3, 0xa0, 0x7c, 0xa6, 0x81, + 0x53, 0xd2, 0x6a, 0xa9, 0x6b, 0x85, 0x1a, 0xe7, 0x38, 0xf5, 0x97, 0x76, 0xcb, 0x29, 0xd8, 0x29, + 0xa3, 0x12, 0x4a, 0x6a, 0xa7, 0x74, 0x1e, 0xb9, 0x9d, 0xe4, 0x85, 0x4e, 0xd5, 0xb7, 0xc0, 0x48, + 0x5a, 0x91, 0xd3, 0x4c, 0xce, 0x0e, 0x23, 0xce, 0xa0, 0x3f, 0x5b, 0x90, 0x81, 0x01, 0xf8, 0x50, + 0x03, 0x27, 0xb2, 0x6a, 0x89, 0x2e, 0xe7, 0xac, 0xa4, 0x69, 0x4c, 0xfa, 0xf3, 0xbb, 0x60, 0x62, + 0x68, 0x3e, 0xd5, 0x80, 0x2e, 0x29, 0x13, 0x7a, 0x26, 0x7f, 0xe5, 0x4b, 0xc5, 0x74, 0x63, 0x77, + 0x7c, 0x12, 0x23, 0x45, 0xc9, 0x23, 0x05, 0x8c, 0xc4, 0x98, 0x8a, 0x18, 0x29, 0x91, 0x1d, 0x92, + 0x6e, 0xa4, 0x08, 0x50, 0x31, 0x23, 0x45, 0x98, 0x6e, 0xec, 0x8e, 0x8f, 0xc1, 0xfa, 0x58, 0x03, + 0xa3, 0xd9, 0xd5, 0x3b, 0xd2, 0x29, 0x2d, 0x93, 0x4d, 0x7f, 0x71, 0x57, 0x6c, 0x0c, 0xd3, 0x3f, + 0x6a, 0xe0, 0xa4, 0xac, 0x0c, 0x47, 0x3a, 0x6c, 0x24, 0x8c, 0xfa, 0x6f, 0xec, 0x92, 0x91, 0x21, + 0x7b, 0x5b, 0x03, 0x47, 0x53, 0x2b, 0x6a, 0x2e, 0xa9, 0xbb, 0x06, 0xe1, 0xd0, 0xaf, 0x15, 0xe5, + 0x10, 0xfc, 0x3a, 0xab, 0x56, 0xe6, 0x72, 0x21, 0x77, 0xa0, 0x50, 0x9e, 0xdf, 0x05, 0x13, 0xbf, + 0x72, 0x26, 0x0b, 0x61, 0x14, 0x8e, 0x28, 0xca, 0x2b, 0x67, 0x66, 0xf9, 0x0b, 0x3a, 0x67, 0x44, + 0xa5, 0x2f, 0x67, 0xf2, 0x57, 0xdf, 0x05, 0xcb, 0xd5, 0xa7, 0x94, 0xc8, 0x78, 0x11, 0x51, 0x05, + 0xca, 0x19, 0xb9, 0x9d, 0x28, 0x99, 0x5c, 0x44, 0xa2, 0x02, 0x05, 0xfb, 0x54, 0x6a, 0xfd, 0xc9, + 0xa5, 0xfc, 0x25, 0x53, 0xe4, 0xd0, 0xaf, 0x15, 0xe5, 0x48, 0x9e, 0xa7, 0xb8, 0xca, 0x93, 0x49, + 0xa5, 0xd6, 0x28, 0xb5, 0xca, 0x79, 0x2a, 0x59, 0x82, 0x82, 0xbc, 0x27, 0x59, 0x7f, 0x32, 0xa5, + 0xd4, 0x54, 0x48, 0x2e, 0xf7, 0x9e, 0xcc, 0xfa, 0x93, 0xaa, 0x0f, 0x1e, 0x8f, 0x17, 0x9f, 0x5c, + 0x54, 0x6a, 0x89, 0x10, 0xcb, 0x83, 0x95, 0x19, 0x45, 0x28, 0xd1, 0x79, 0x3f, 0xd7, 0x9f, 0x18, + 0x99, 0xca, 0x79, 0x9f, 0xf7, 0x27, 0x76, 0x2e, 0x08, 0xb3, 0xf8, 0x15, 0xce, 0x05, 0x94, 0x54, + 0xe5, 0x5c, 0x10, 0x2f, 0xc8, 0x60, 0xe7, 0x02, 0x25, 0x71, 0x02, 0xa9, 0xca, 0xb9, 0x20, 0x45, + 0x9c, 0x58, 0xa3, 0xa0, 0x70, 0x2e, 0x50, 0x12, 0x97, 0x5a, 0x29, 0x50, 0x7d, 0x4f, 0x03, 0xc7, + 0xd2, 0xcb, 0x04, 0x66, 0xf3, 0x63, 0xd5, 0x31, 0x16, 0xfd, 0xb9, 0xc2, 0x2c, 0xc2, 0x09, 0x99, + 0x4b, 0xca, 0x3f, 0x97, 0xdf, 0x4f, 0x98, 0x30, 0xe7, 0x84, 0x9c, 0x92, 0x4a, 0xce, 0x26, 0x02, + 0x2e, 0x4b, 0x5c, 0x61, 0x22, 0x88, 0xa8, 0x55, 0x26, 0x82, 0x64, 0x12, 0x38, 0x77, 0x0a, 0x4a, + 0x64, 0x80, 0xd7, 0x15, 0x1b, 0xe4, 0x67, 0xc2, 0xeb, 0xc5, 0x79, 0x78, 0x13, 0x24, 0xd2, 0xba, + 0x27, 0xf3, 0xbb, 0x2e, 0xa2, 0x96, 0x9b, 0x20, 0x33, 0x53, 0x7b, 0x07, 0x1c, 0x49, 0xe6, 0x63, + 0xe7, 0xc5, 0xc5, 0x44, 0xf2, 0x9c, 0x7b, 0x83, 0xac, 0x3c, 0x6b, 0xbc, 0x06, 0xa5, 0x26, 0x59, + 0x2b, 0x44, 0xad, 0x62, 0x08, 0xae, 0x15, 0xe5, 0xe0, 0x03, 0x95, 0xb1, 0xe4, 0xe9, 0x0b, 0x2a, + 0xda, 0xd0, 0x4d, 0x4c, 0x5d, 0x9d, 0x96, 0xb7, 0x78, 0x32, 0x1f, 0x7a, 0x4a, 0x51, 0x01, 0x2a, + 0xf7, 0x6a, 0x21, 0x72, 0x7e, 0x40, 0xf3, 0x69, 0xce, 0xe7, 0xf2, 0xa7, 0x26, 0x85, 0x01, 0x9d, + 0x92, 0xd6, 0x8c, 0xbc, 0x39, 0x91, 0xd3, 0x3c, 0xa9, 0x12, 0xfe, 0x09, 0xa9, 0xe5, 0xde, 0x9c, + 0x99, 0xb2, 0x8c, 0x5c, 0x2a, 0x35, 0xbd, 0xf8, 0x52, 0xfe, 0xc1, 0x5b, 0xe4, 0x90, 0xbb, 0x94, + 0x2c, 0x09, 0x17, 0xb9, 0x54, 0x4c, 0xba, 0xd4, 0xa5, 0x62, 0x72, 0xeb, 0xea, 0xb4, 0xc2, 0x82, + 0x91, 0x9e, 0x91, 0x3a, 0xab, 0xde, 0x1a, 0x65, 0x91, 0x2f, 0x18, 0xf2, 0xc4, 0xd2, 0x6d, 0x30, + 0x9c, 0x48, 0x22, 0x9d, 0xcc, 0xdf, 0x98, 0xaa, 0x76, 0x7b, 0x56, 0x2a, 0x28, 0x39, 0xbb, 0x49, + 0xf2, 0x40, 0x9f, 0x55, 0x09, 0x05, 0xa6, 0x30, 0xe6, 0x9c, 0xdd, 0xf2, 0x53, 0x39, 0xf1, 0x3d, + 0x71, 0x66, 0x1e, 0xe7, 0x95, 0x22, 0xad, 0x87, 0x5c, 0xf2, 0x7b, 0xe2, 0xbc, 0x6c, 0x4c, 0xbc, + 0xa6, 0x73, 0x99, 0x98, 0xf2, 0x35, 0x3d, 0x22, 0xcc, 0x59, 0xd3, 0x93, 0x89, 0x94, 0x5c, 0x58, + 0x2f, 0x23, 0xc7, 0xf0, 0x5a, 0x11, 0x3d, 0x78, 0x4e, 0x95, 0xb0, 0x9e, 0x3c, 0x6b, 0x10, 0x83, + 0x93, 0x26, 0x40, 0x2a, 0x2c, 0x28, 0xbb, 0x01, 0xa7, 0x92, 0xd2, 0x88, 0x47, 0x73, 0x7a, 0x3e, + 0xe3, 0x6c, 0x91, 0x49, 0x11, 0xb3, 0xc8, 0x47, 0xb3, 0x3c, 0xc5, 0x10, 0xe1, 0x48, 0xcf, 0x27, + 0x9c, 0x2d, 0xd2, 0x01, 0x0a, 0x38, 0xa4, 0x89, 0x7c, 0x18, 0x47, 0x7a, 0x16, 0x9f, 0x52, 0xcc, + 0xbd, 0x00, 0x0e, 0x69, 0x2a, 0x1e, 0x9a, 0xdd, 0x12, 0xbf, 0x53, 0x9e, 0xf7, 0x1b, 0xea, 0x02, + 0xb5, 0x7c, 0x76, 0xcb, 0xfa, 0xa5, 0x71, 0x1c, 0x7a, 0xc9, 0xca, 0xff, 0x53, 0x48, 0x5e, 0x49, + 0x30, 0xc9, 0x43, 0x2f, 0x79, 0x09, 0x7e, 0x6f, 0x81, 0x91, 0xb4, 0xc4, 0xbd, 0x99, 0xfc, 0x36, + 0x05, 0x06, 0x79, 0x18, 0x5a, 0x96, 0x95, 0xb7, 0x0d, 0x86, 0x13, 0xf9, 0x75, 0x93, 0x45, 0x7a, + 0x55, 0xde, 0x0d, 0x59, 0x99, 0x73, 0x51, 0x9a, 0x0b, 0xce, 0x79, 0x52, 0x48, 0x73, 0x41, 0x74, + 0x2a, 0x69, 0x2e, 0x42, 0xea, 0x1b, 0xbb, 0x13, 0x15, 0xf2, 0xdc, 0x14, 0xee, 0x44, 0x79, 0x7a, + 0x95, 0x3b, 0xd1, 0xb4, 0xc4, 0x37, 0xb4, 0x75, 0x89, 0x65, 0xbd, 0x5d, 0x50, 0x6b, 0x09, 0xd1, + 0xea, 0x75, 0x75, 0xda, 0xe4, 0x49, 0x3e, 0xcc, 0x83, 0x3b, 0xaf, 0xd6, 0xc8, 0xbc, 0xe3, 0xaa, + 0x9c, 0xe4, 0x63, 0xd9, 0x71, 0xd1, 0x49, 0x93, 0x4b, 0x8d, 0x9b, 0x54, 0x6b, 0x86, 0x46, 0x60, + 0xae, 0x14, 0xa1, 0x4e, 0xe6, 0x15, 0xe5, 0x3b, 0x4f, 0x44, 0xa7, 0x92, 0x57, 0x24, 0x38, 0xcf, + 0xc7, 0x1a, 0x18, 0xcd, 0xfe, 0x5f, 0x25, 0x57, 0x8b, 0x4c, 0xc1, 0x8c, 0x4d, 0x1e, 0x57, 0xcf, + 0xfd, 0xaf, 0x21, 0xf8, 0x8c, 0x9d, 0xf1, 0x2f, 0x43, 0xf2, 0x4e, 0x4f, 0x69, 0x68, 0xae, 0x17, + 0xe7, 0x09, 0xa1, 0xcc, 0xbf, 0xf2, 0xe5, 0xfd, 0x31, 0xed, 0xab, 0xfb, 0x63, 0xda, 0x37, 0xf7, + 0xc7, 0xb4, 0xbf, 0x7b, 0x30, 0x76, 0xe8, 0xab, 0x07, 0x63, 0x87, 0x7e, 0xfa, 0x60, 0xec, 0xd0, + 0xef, 0x4d, 0x71, 0x15, 0xf4, 0xe1, 0x7f, 0xb3, 0x0a, 0xff, 0x6e, 0xd7, 0x67, 0xee, 0xb1, 0x07, + 0x5c, 0x4c, 0xbf, 0xd6, 0x87, 0xff, 0xc1, 0xd5, 0xe5, 0x5f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x21, + 0xed, 0x75, 0xc3, 0x7e, 0x6c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -12564,6 +12571,10 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ MethodName: "DeleteComment", Handler: _Msg_DeleteComment_Handler, }, + { + MethodName: "ToggleCommentResolved", + Handler: _Msg_ToggleCommentResolved_Handler, + }, { MethodName: "CreateIssue", Handler: _Msg_CreateIssue_Handler, @@ -34214,7 +34225,6 @@ func (m *MsgDeleteCommentResponse) Unmarshal(dAtA []byte) error { } return nil } - func (m *MsgToggleCommentResolved) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -34404,7 +34414,7 @@ func (m *MsgToggleCommentResolvedResponse) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AllowForking", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Resolved", wireType) } var v int for shift := uint(0); ; shift += 7 { @@ -34443,7 +34453,6 @@ func (m *MsgToggleCommentResolvedResponse) Unmarshal(dAtA []byte) error { } return nil } - func (m *MsgCreateIssue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 From 6980a5ee3284c684899416dd7ec72fd8c0396ecc Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Tue, 27 Jun 2023 23:58:48 +0700 Subject: [PATCH 18/26] proto gen by ignite --- x/offchain/types/offchain.pb.go | 38 ++++++------ x/rewards/types/genesis.pb.go | 42 ++++++------- x/rewards/types/params.pb.go | 104 ++++++++++++++++---------------- x/rewards/types/query.pb.go | 104 ++++++++++++++++---------------- x/rewards/types/query.pb.gw.go | 6 +- x/rewards/types/rewards.pb.go | 48 +++++++-------- x/rewards/types/task.pb.go | 56 ++++++++--------- x/rewards/types/tx.pb.go | 62 +++++++++---------- 8 files changed, 230 insertions(+), 230 deletions(-) diff --git a/x/offchain/types/offchain.pb.go b/x/offchain/types/offchain.pb.go index cadaa797..8d74770d 100644 --- a/x/offchain/types/offchain.pb.go +++ b/x/offchain/types/offchain.pb.go @@ -35,7 +35,7 @@ func (m *MsgSignData) Reset() { *m = MsgSignData{} } func (m *MsgSignData) String() string { return proto.CompactTextString(m) } func (*MsgSignData) ProtoMessage() {} func (*MsgSignData) Descriptor() ([]byte, []int) { - return fileDescriptor_83bb407f794592d0, []int{0} + return fileDescriptor_18e0ff16bccd9e76, []int{0} } func (m *MsgSignData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *ListOfMsgSignData) Reset() { *m = ListOfMsgSignData{} } func (m *ListOfMsgSignData) String() string { return proto.CompactTextString(m) } func (*ListOfMsgSignData) ProtoMessage() {} func (*ListOfMsgSignData) Descriptor() ([]byte, []int) { - return fileDescriptor_83bb407f794592d0, []int{1} + return fileDescriptor_18e0ff16bccd9e76, []int{1} } func (m *ListOfMsgSignData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,24 +129,24 @@ func init() { proto.RegisterType((*ListOfMsgSignData)(nil), "gitopia.gitopia.offchain.ListOfMsgSignData") } -func init() { proto.RegisterFile("gitopia/offchain/offchain.proto", fileDescriptor_83bb407f794592d0) } +func init() { proto.RegisterFile("offchain/offchain.proto", fileDescriptor_18e0ff16bccd9e76) } -var fileDescriptor_83bb407f794592d0 = []byte{ - // 217 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0xcf, 0x4f, 0x4b, 0x4b, 0xce, 0x48, 0xcc, 0xcc, 0x83, 0x33, 0xf4, 0x0a, - 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x24, 0xa0, 0x0a, 0xf4, 0x60, 0x34, 0x4c, 0x5e, 0x4a, 0x24, 0x3d, - 0x3f, 0x3d, 0x1f, 0xac, 0x48, 0x1f, 0xc4, 0x82, 0xa8, 0x57, 0xb2, 0xe4, 0xe2, 0xf6, 0x2d, 0x4e, - 0x0f, 0xce, 0x4c, 0xcf, 0x73, 0x49, 0x2c, 0x49, 0x14, 0x12, 0xe3, 0x62, 0x2b, 0xce, 0x4c, 0xcf, - 0x4b, 0x2d, 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0xf2, 0x84, 0x84, 0xb8, 0x58, 0x52, - 0x12, 0x4b, 0x12, 0x25, 0x98, 0x14, 0x18, 0x35, 0x78, 0x82, 0xc0, 0x6c, 0x25, 0x3f, 0x2e, 0x41, - 0x9f, 0xcc, 0xe2, 0x12, 0xff, 0x34, 0x64, 0x03, 0x2c, 0xb9, 0x58, 0x72, 0x8b, 0xd3, 0x8b, 0x25, - 0x18, 0x15, 0x98, 0x35, 0xb8, 0x8d, 0x54, 0xf5, 0x70, 0x39, 0x47, 0x0f, 0x49, 0x53, 0x10, 0x58, - 0x8b, 0x93, 0xeb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, - 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa7, 0x67, - 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xc3, 0x02, 0x00, 0x46, 0x57, 0x20, 0x82, - 0xa2, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x31, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x0f, 0x6f, 0x6b, 0x0e, 0x2b, 0x01, 0x00, 0x00, +var fileDescriptor_18e0ff16bccd9e76 = []byte{ + // 215 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcf, 0x4f, 0x4b, 0x4b, + 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0x87, 0x31, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x24, 0xd2, + 0x33, 0x4b, 0xf2, 0x0b, 0x32, 0x13, 0xf5, 0x60, 0x34, 0x4c, 0x5e, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, + 0x1f, 0xac, 0x48, 0x1f, 0xc4, 0x82, 0xa8, 0x57, 0xb2, 0xe4, 0xe2, 0xf6, 0x2d, 0x4e, 0x0f, 0xce, + 0x4c, 0xcf, 0x73, 0x49, 0x2c, 0x49, 0x14, 0x12, 0xe3, 0x62, 0x2b, 0xce, 0x4c, 0xcf, 0x4b, 0x2d, + 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0xf2, 0x84, 0x84, 0xb8, 0x58, 0x52, 0x12, 0x4b, + 0x12, 0x25, 0x98, 0x14, 0x18, 0x35, 0x78, 0x82, 0xc0, 0x6c, 0x25, 0x3f, 0x2e, 0x41, 0x9f, 0xcc, + 0xe2, 0x12, 0xff, 0x34, 0x64, 0x03, 0x2c, 0xb9, 0x58, 0x72, 0x8b, 0xd3, 0x8b, 0x25, 0x18, 0x15, + 0x98, 0x35, 0xb8, 0x8d, 0x54, 0xf5, 0x70, 0x39, 0x47, 0x0f, 0x49, 0x53, 0x10, 0x58, 0x8b, 0x93, + 0xeb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, + 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa7, 0x67, 0x96, 0x64, + 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x0d, 0x82, 0xd3, 0x15, 0xf0, 0x10, 0xd0, 0x2f, + 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x7b, 0xcc, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x97, + 0xc0, 0x43, 0xb2, 0x23, 0x01, 0x00, 0x00, } func (m *MsgSignData) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/genesis.pb.go b/x/rewards/types/genesis.pb.go index c170c2e1..de2cb391 100644 --- a/x/rewards/types/genesis.pb.go +++ b/x/rewards/types/genesis.pb.go @@ -35,7 +35,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_af1ac91d1464842a, []int{0} + return fileDescriptor_04e261dd19d07881, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -82,26 +82,26 @@ func init() { proto.RegisterType((*GenesisState)(nil), "gitopia.gitopia.rewards.GenesisState") } -func init() { proto.RegisterFile("rewards/genesis.proto", fileDescriptor_af1ac91d1464842a) } +func init() { proto.RegisterFile("rewards/genesis.proto", fileDescriptor_04e261dd19d07881) } -var fileDescriptor_af1ac91d1464842a = []byte{ - // 247 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xcf, 0x2c, 0xc9, - 0x2f, 0xc8, 0x4c, 0xd4, 0x2f, 0x4a, 0x2d, 0x4f, 0x2c, 0x4a, 0x29, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, - 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0x4a, 0xeb, 0xc1, 0x68, - 0xa8, 0x32, 0x29, 0x91, 0xf4, 0xfc, 0xf4, 0x7c, 0xb0, 0x1a, 0x7d, 0x10, 0x0b, 0xa2, 0x5c, 0x4a, - 0x06, 0xdd, 0xb4, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0x61, 0x52, 0x18, 0x76, 0x41, 0x69, 0xa8, - 0xb4, 0x5c, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0xb1, 0x7e, 0x52, 0x62, 0x71, 0xaa, 0x7e, 0x99, 0x61, - 0x52, 0x6a, 0x49, 0xa2, 0xa1, 0x7e, 0x72, 0x7e, 0x66, 0x1e, 0x44, 0x5e, 0x69, 0x1a, 0x23, 0x17, - 0x8f, 0x3b, 0xc4, 0x75, 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x42, 0xee, 0x5c, 0xdc, 0x50, 0x13, 0x7c, - 0x32, 0x8b, 0x4b, 0x24, 0x98, 0x14, 0x98, 0x35, 0xb8, 0x8d, 0xe4, 0xf5, 0x70, 0x38, 0x59, 0x2f, - 0x08, 0x4c, 0x3b, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x84, 0xac, 0x53, 0xc8, 0x96, 0x8b, 0x0d, - 0xe2, 0x50, 0x09, 0x46, 0x05, 0x46, 0xbc, 0x66, 0x04, 0x80, 0x95, 0x41, 0xcd, 0x80, 0x6a, 0x72, - 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xad, 0xf4, 0xcc, 0x92, - 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x98, 0xe7, 0x61, 0x74, 0x05, 0x3c, 0x18, 0x4a, - 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xbe, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x95, - 0x20, 0x47, 0x4f, 0x92, 0x01, 0x00, 0x00, +var fileDescriptor_04e261dd19d07881 = []byte{ + // 245 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2d, 0x4a, 0x2d, 0x4f, + 0x2c, 0x4a, 0x29, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, + 0xc9, 0x17, 0x12, 0x4f, 0xcf, 0x2c, 0xc9, 0x2f, 0xc8, 0x4c, 0xd4, 0x83, 0xd1, 0x50, 0x65, 0x52, + 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x35, 0xfa, 0x20, 0x16, 0x44, 0xb9, 0x94, 0x08, 0xcc, 0x94, + 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0x21, 0x52, 0x70, 0xb3, 0xa1, 0x34, 0x54, 0x58, 0x2e, 0x39, + 0xbf, 0x38, 0x37, 0xbf, 0x58, 0x3f, 0x29, 0xb1, 0x38, 0x55, 0xbf, 0xcc, 0x30, 0x29, 0xb5, 0x24, + 0xd1, 0x50, 0x3f, 0x39, 0x3f, 0x33, 0x0f, 0x22, 0xaf, 0x34, 0x8d, 0x91, 0x8b, 0xc7, 0x1d, 0xe2, + 0x9a, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x77, 0x2e, 0x6e, 0xa8, 0x09, 0x3e, 0x99, 0xc5, 0x25, + 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0xf2, 0x7a, 0x38, 0x9c, 0xa8, 0x17, 0x04, 0xa6, 0x9d, + 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x42, 0xd6, 0x29, 0x64, 0xcb, 0xc5, 0x06, 0x71, 0xa0, 0x04, + 0xa3, 0x02, 0x23, 0x5e, 0x33, 0x02, 0xc0, 0xca, 0xa0, 0x66, 0x40, 0x35, 0x39, 0xb9, 0x9c, 0x78, + 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, + 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x56, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, + 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x28, 0x38, 0x5d, 0x01, 0xf3, 0xbe, 0x7e, 0x49, 0x65, 0x41, + 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x97, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa0, 0xe2, 0xf6, + 0x82, 0x7a, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { @@ -385,4 +385,4 @@ var ( ErrInvalidLengthGenesis = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGenesis = fmt.Errorf("proto: integer overflow") ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group") -) +) \ No newline at end of file diff --git a/x/rewards/types/params.pb.go b/x/rewards/types/params.pb.go index aba62130..3e721209 100644 --- a/x/rewards/types/params.pb.go +++ b/x/rewards/types/params.pb.go @@ -8,7 +8,7 @@ import ( types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - github_com_cosmos_gogoproto_types "github.com/gogo/protobuf/types" + github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -39,7 +39,7 @@ func (m *RewardPool) Reset() { *m = RewardPool{} } func (m *RewardPool) String() string { return proto.CompactTextString(m) } func (*RewardPool) ProtoMessage() {} func (*RewardPool) Descriptor() ([]byte, []int) { - return fileDescriptor_fe21394d7c37f32a, []int{0} + return fileDescriptor_d4f6e2be212d3b23, []int{0} } func (m *RewardPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -110,7 +110,7 @@ func (m *RewardSeries) Reset() { *m = RewardSeries{} } func (m *RewardSeries) String() string { return proto.CompactTextString(m) } func (*RewardSeries) ProtoMessage() {} func (*RewardSeries) Descriptor() ([]byte, []int) { - return fileDescriptor_fe21394d7c37f32a, []int{1} + return fileDescriptor_d4f6e2be212d3b23, []int{1} } func (m *RewardSeries) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -198,7 +198,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_fe21394d7c37f32a, []int{2} + return fileDescriptor_d4f6e2be212d3b23, []int{2} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -247,49 +247,49 @@ func init() { proto.RegisterType((*Params)(nil), "gitopia.gitopia.rewards.Params") } -func init() { proto.RegisterFile("rewards/params.proto", fileDescriptor_fe21394d7c37f32a) } +func init() { proto.RegisterFile("rewards/params.proto", fileDescriptor_d4f6e2be212d3b23) } -var fileDescriptor_fe21394d7c37f32a = []byte{ - // 624 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0xc1, 0x6e, 0xd3, 0x30, - 0x18, 0xc7, 0x1b, 0xc6, 0x36, 0xe6, 0x75, 0xc0, 0xc2, 0xc6, 0xc2, 0x18, 0x09, 0x0a, 0x42, 0x20, - 0x24, 0x1c, 0x0d, 0x6e, 0xdc, 0x56, 0xd0, 0x04, 0x27, 0xa6, 0x6c, 0x07, 0x40, 0x48, 0x91, 0xdb, - 0x78, 0x99, 0x45, 0x12, 0x57, 0xb6, 0x93, 0x76, 0x57, 0xc4, 0x89, 0xd3, 0x5e, 0x80, 0x07, 0xe1, - 0x0d, 0x76, 0x42, 0x3b, 0x72, 0xea, 0xd0, 0xfa, 0x06, 0x7d, 0x02, 0x14, 0xdb, 0x49, 0x53, 0x24, - 0xd4, 0x41, 0x4f, 0xae, 0xed, 0xef, 0xfb, 0x7d, 0xff, 0xfe, 0xfd, 0xe5, 0x03, 0x5b, 0x11, 0x11, - 0xb4, 0x4b, 0x90, 0xc7, 0x70, 0x0f, 0xb1, 0x90, 0x7b, 0x5d, 0xc4, 0x50, 0xc2, 0x61, 0x97, 0x51, - 0x41, 0xcd, 0x0d, 0x7d, 0x0b, 0xcb, 0x55, 0x47, 0x6d, 0xae, 0x45, 0x34, 0xa2, 0x32, 0xc6, 0x2b, - 0x7e, 0xa9, 0xf0, 0x4d, 0xbb, 0x43, 0x79, 0x42, 0xb9, 0xd7, 0x46, 0x1c, 0x7b, 0xf9, 0x76, 0x1b, - 0x0b, 0xb4, 0xed, 0x75, 0x28, 0x49, 0xf5, 0xbd, 0x13, 0x51, 0x1a, 0xc5, 0xd8, 0x93, 0xbb, 0x76, - 0x76, 0xe8, 0x09, 0x92, 0x60, 0x2e, 0x50, 0xd2, 0x55, 0x01, 0xee, 0x8f, 0x39, 0x00, 0x7c, 0x59, - 0x62, 0x8f, 0xd2, 0xd8, 0xfc, 0x62, 0x80, 0xa6, 0xa0, 0x02, 0xc5, 0x01, 0x4a, 0x68, 0x96, 0x0a, - 0xcb, 0xb8, 0x6f, 0x3c, 0x5e, 0x7e, 0x76, 0x07, 0xaa, 0x3a, 0xb0, 0xa8, 0x03, 0x75, 0x1d, 0xf8, - 0x92, 0x92, 0xb4, 0xb5, 0x7b, 0x3a, 0x70, 0x1a, 0xa3, 0x81, 0x73, 0xeb, 0x18, 0x25, 0xf1, 0x0b, - 0xb7, 0x9e, 0xec, 0x7e, 0x3e, 0x77, 0x1e, 0x45, 0x44, 0x1c, 0x65, 0x6d, 0xd8, 0xa1, 0x89, 0xa7, - 0xb5, 0xaa, 0xe5, 0x29, 0x0f, 0x3f, 0x79, 0xe2, 0xb8, 0x8b, 0xb9, 0xe4, 0xf8, 0xcb, 0x32, 0x73, - 0x47, 0x26, 0x9a, 0x5f, 0x0d, 0x70, 0xbd, 0x13, 0x23, 0x92, 0xe0, 0xb0, 0x14, 0x72, 0x65, 0x9a, - 0x90, 0xd7, 0x5a, 0xc8, 0xba, 0x12, 0x32, 0x99, 0xfe, 0x4f, 0x52, 0x56, 0x74, 0xae, 0x16, 0xf3, - 0x0e, 0x00, 0x2e, 0x10, 0x13, 0x41, 0xe1, 0x9d, 0x35, 0x27, 0x75, 0x6c, 0x42, 0x65, 0x2c, 0x2c, - 0x8d, 0x85, 0x07, 0xa5, 0xb1, 0xad, 0x7b, 0x5a, 0xc8, 0xaa, 0x12, 0x32, 0xce, 0x75, 0x4f, 0xce, - 0x1d, 0xc3, 0x5f, 0x92, 0x07, 0x45, 0xb8, 0xe9, 0x83, 0x6b, 0x38, 0x0d, 0x15, 0xf7, 0xea, 0x54, - 0xee, 0x5d, 0xcd, 0xbd, 0xa1, 0xb8, 0x65, 0xa6, 0xa2, 0x2e, 0xe2, 0x34, 0x2c, 0x42, 0xdd, 0x6f, - 0xf3, 0xa0, 0xa9, 0x1e, 0x74, 0x1f, 0x33, 0x82, 0xb9, 0xf9, 0x1e, 0x00, 0x2e, 0x7f, 0x05, 0x34, - 0xc5, 0xfa, 0x3d, 0x1f, 0xc0, 0xbf, 0xb4, 0x19, 0x1c, 0xf7, 0x42, 0x6b, 0xbd, 0xf6, 0x1f, 0x2a, - 0x80, 0xeb, 0x2f, 0xa9, 0xcd, 0xdb, 0x14, 0xd7, 0xd0, 0xa2, 0x47, 0xf5, 0x0b, 0xfd, 0x27, 0x5a, - 0xf4, 0x68, 0x85, 0x3e, 0xe8, 0x51, 0x33, 0x00, 0xcd, 0xf2, 0xe6, 0x88, 0xe1, 0xd2, 0xf6, 0x4b, - 0xc1, 0x37, 0xc6, 0xdd, 0x58, 0x47, 0xb8, 0xfe, 0xb2, 0xc6, 0x17, 0x3b, 0xf3, 0x23, 0xd0, 0xdb, - 0xe0, 0x90, 0x66, 0x4c, 0xdb, 0x7f, 0x29, 0xfe, 0xed, 0xd1, 0xc0, 0x31, 0x27, 0xf8, 0x05, 0xc1, - 0xf5, 0xb5, 0x17, 0xbb, 0x34, 0x63, 0x75, 0x3a, 0xc9, 0xb1, 0x35, 0x3f, 0x13, 0x9d, 0xe4, 0x78, - 0x4c, 0x27, 0x79, 0xdd, 0x77, 0x4e, 0xfa, 0xd6, 0xc2, 0x2c, 0xbe, 0x73, 0xd2, 0xaf, 0x7c, 0xdf, - 0x27, 0xfd, 0x9a, 0xef, 0x1c, 0xe7, 0x38, 0xb5, 0x16, 0x67, 0xf1, 0x5d, 0x22, 0x2a, 0xdf, 0xf7, - 0xe5, 0xee, 0xbb, 0x01, 0x16, 0xf6, 0xe4, 0xc4, 0x33, 0xdf, 0x80, 0x55, 0x9c, 0xa3, 0x38, 0x43, - 0x82, 0xb2, 0x00, 0x85, 0x21, 0xc3, 0x9c, 0xcb, 0x06, 0x5d, 0x6a, 0x6d, 0x8d, 0x06, 0x8e, 0xa5, - 0xfb, 0xfc, 0xcf, 0x10, 0xd7, 0xbf, 0x59, 0x9d, 0xed, 0xa8, 0x23, 0x33, 0x04, 0x2b, 0x4a, 0x51, - 0xa0, 0x6a, 0xe9, 0x66, 0x7c, 0x38, 0x45, 0xb7, 0xfa, 0x44, 0x5a, 0xd6, 0x68, 0xe0, 0xac, 0xa9, - 0x6a, 0x13, 0x14, 0xd7, 0x6f, 0xb2, 0x7a, 0xdc, 0xab, 0xd3, 0x0b, 0xdb, 0x38, 0xbb, 0xb0, 0x8d, - 0x5f, 0x17, 0xb6, 0x71, 0x32, 0xb4, 0x1b, 0x67, 0x43, 0xbb, 0xf1, 0x73, 0x68, 0x37, 0x3e, 0x3c, - 0xa9, 0xcd, 0x96, 0x72, 0xbe, 0x97, 0x6b, 0xbf, 0x9a, 0xf4, 0x72, 0xc6, 0xb4, 0x17, 0xe4, 0xb7, - 0xfd, 0xfc, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x37, 0xfb, 0x38, 0xa7, 0x09, 0x06, 0x00, 0x00, +var fileDescriptor_d4f6e2be212d3b23 = []byte{ + // 623 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0x41, 0x6f, 0xd3, 0x3c, + 0x18, 0xc7, 0x9b, 0x77, 0xef, 0x36, 0xe6, 0x75, 0xc0, 0xc2, 0xc6, 0xc2, 0x80, 0x04, 0x05, 0x21, + 0x10, 0x12, 0x8e, 0x06, 0x37, 0x6e, 0x2b, 0x68, 0x82, 0x13, 0x53, 0xb6, 0x03, 0x20, 0xa4, 0xc8, + 0x6d, 0xbc, 0xcc, 0x22, 0x89, 0x2b, 0xdb, 0x49, 0xbb, 0x2b, 0xe2, 0xc4, 0x69, 0x5f, 0x80, 0x0f, + 0xc2, 0x37, 0xd8, 0x09, 0xed, 0xc8, 0xa9, 0x43, 0xed, 0x37, 0xe8, 0x27, 0x40, 0xb1, 0x9d, 0x34, + 0x45, 0x42, 0x1d, 0xf4, 0xe4, 0x3c, 0xce, 0xf3, 0xfc, 0x9e, 0x7f, 0xfe, 0x7e, 0x62, 0xb0, 0xc1, + 0x70, 0x0f, 0xb1, 0x90, 0x7b, 0x5d, 0xc4, 0x50, 0xc2, 0x61, 0x97, 0x51, 0x41, 0xcd, 0xad, 0x88, + 0x08, 0xda, 0x25, 0x08, 0x96, 0xab, 0xce, 0xda, 0xde, 0x88, 0x68, 0x44, 0x65, 0x8e, 0x57, 0x3c, + 0xa9, 0xf4, 0x6d, 0xbb, 0x43, 0x79, 0x42, 0xb9, 0xd7, 0x46, 0x1c, 0x7b, 0xf9, 0x4e, 0x1b, 0x0b, + 0xb4, 0xe3, 0x75, 0x28, 0x49, 0xf5, 0x7b, 0x27, 0xa2, 0x34, 0x8a, 0xb1, 0x27, 0xa3, 0x76, 0x76, + 0xe4, 0x09, 0x92, 0x60, 0x2e, 0x50, 0xd2, 0x55, 0x09, 0xee, 0xf7, 0x05, 0x00, 0x7c, 0xd9, 0x62, + 0x9f, 0xd2, 0xd8, 0xfc, 0x6c, 0x80, 0xa6, 0xa0, 0x02, 0xc5, 0x01, 0x4a, 0x68, 0x96, 0x0a, 0xcb, + 0xb8, 0x67, 0x3c, 0x5a, 0x7d, 0x7a, 0x0b, 0xaa, 0x3e, 0xb0, 0xe8, 0x03, 0x75, 0x1f, 0xf8, 0x82, + 0x92, 0xb4, 0xb5, 0x77, 0x36, 0x70, 0x1a, 0xe3, 0x81, 0x73, 0xe3, 0x04, 0x25, 0xf1, 0x73, 0xb7, + 0x5e, 0xec, 0x7e, 0xba, 0x70, 0x1e, 0x46, 0x44, 0x1c, 0x67, 0x6d, 0xd8, 0xa1, 0x89, 0xa7, 0xb5, + 0xaa, 0xe5, 0x09, 0x0f, 0x3f, 0x7a, 0xe2, 0xa4, 0x8b, 0xb9, 0xe4, 0xf8, 0xab, 0xb2, 0x72, 0x57, + 0x16, 0x9a, 0x5f, 0x0c, 0x70, 0xb5, 0x13, 0x23, 0x92, 0xe0, 0xb0, 0x14, 0xf2, 0xdf, 0x2c, 0x21, + 0xaf, 0xb4, 0x90, 0x4d, 0x25, 0x64, 0xba, 0xfc, 0xaf, 0xa4, 0xac, 0xe9, 0x5a, 0x2d, 0xe6, 0x2d, + 0x00, 0x5c, 0x20, 0x26, 0x82, 0xc2, 0x3b, 0x6b, 0x41, 0xea, 0xd8, 0x86, 0xca, 0x58, 0x58, 0x1a, + 0x0b, 0x0f, 0x4b, 0x63, 0x5b, 0x77, 0xb5, 0x90, 0x75, 0x25, 0x64, 0x52, 0xeb, 0x9e, 0x5e, 0x38, + 0x86, 0xbf, 0x22, 0x37, 0x8a, 0x74, 0xd3, 0x07, 0x57, 0x70, 0x1a, 0x2a, 0xee, 0xff, 0x33, 0xb9, + 0xb7, 0x35, 0xf7, 0x9a, 0xe2, 0x96, 0x95, 0x8a, 0xba, 0x8c, 0xd3, 0xb0, 0x48, 0x75, 0xbf, 0x2e, + 0x82, 0xa6, 0x3a, 0xd0, 0x03, 0xcc, 0x08, 0xe6, 0xe6, 0x3b, 0x00, 0xb8, 0x7c, 0x0a, 0x68, 0x8a, + 0xf5, 0x79, 0xde, 0x87, 0x7f, 0x18, 0x33, 0x38, 0x99, 0x85, 0xd6, 0x66, 0xed, 0x1b, 0x2a, 0x80, + 0xeb, 0xaf, 0xa8, 0xe0, 0x4d, 0x8a, 0x6b, 0x68, 0xd1, 0xa3, 0xfa, 0x84, 0xfe, 0x11, 0x2d, 0x7a, + 0xb4, 0x42, 0x1f, 0xf6, 0xa8, 0x19, 0x80, 0x66, 0xf9, 0xe6, 0x98, 0xe1, 0xd2, 0xf6, 0x4b, 0xc1, + 0xb7, 0x26, 0xd3, 0x58, 0x47, 0xb8, 0xfe, 0xaa, 0xc6, 0x17, 0x91, 0xf9, 0x01, 0xe8, 0x30, 0x38, + 0xa2, 0x19, 0xd3, 0xf6, 0x5f, 0x8a, 0x7f, 0x73, 0x3c, 0x70, 0xcc, 0x29, 0x7e, 0x41, 0x70, 0x7d, + 0xed, 0xc5, 0x1e, 0xcd, 0x58, 0x9d, 0x4e, 0x72, 0x6c, 0x2d, 0xce, 0x45, 0x27, 0x39, 0x9e, 0xd0, + 0x49, 0x5e, 0xf7, 0x9d, 0x93, 0xbe, 0xb5, 0x34, 0x8f, 0xef, 0x9c, 0xf4, 0x2b, 0xdf, 0x0f, 0x48, + 0xbf, 0xe6, 0x3b, 0xc7, 0x39, 0x4e, 0xad, 0xe5, 0x79, 0x7c, 0x97, 0x88, 0xca, 0xf7, 0x03, 0x19, + 0x7d, 0x33, 0xc0, 0xd2, 0xbe, 0xbc, 0xf1, 0xcc, 0xd7, 0x60, 0x1d, 0xe7, 0x28, 0xce, 0x90, 0xa0, + 0x2c, 0x40, 0x61, 0xc8, 0x30, 0xe7, 0x72, 0x40, 0x57, 0x5a, 0x77, 0xc6, 0x03, 0xc7, 0xd2, 0x73, + 0xfe, 0x7b, 0x8a, 0xeb, 0x5f, 0xaf, 0xf6, 0x76, 0xd5, 0x96, 0x19, 0x82, 0x35, 0xa5, 0x28, 0x50, + 0xbd, 0xf4, 0x30, 0x3e, 0x98, 0xa1, 0x5b, 0xfd, 0x22, 0x2d, 0x6b, 0x3c, 0x70, 0x36, 0x54, 0xb7, + 0x29, 0x8a, 0xeb, 0x37, 0x59, 0x3d, 0xef, 0xe5, 0xd9, 0xd0, 0x36, 0xce, 0x87, 0xb6, 0xf1, 0x73, + 0x68, 0x1b, 0xa7, 0x23, 0xbb, 0x71, 0x3e, 0xb2, 0x1b, 0x3f, 0x46, 0x76, 0xe3, 0xfd, 0xe3, 0xda, + 0xdd, 0xa2, 0x5b, 0x55, 0x6b, 0xdf, 0x2b, 0x6f, 0x7a, 0x79, 0xc7, 0xb4, 0x97, 0xe4, 0xbf, 0xfd, + 0xec, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x44, 0x52, 0x68, 0x0d, 0x01, 0x06, 0x00, 0x00, } func (m *RewardPool) Marshal() (dAtA []byte, err error) { @@ -312,7 +312,7 @@ func (m *RewardPool) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime):]) + n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime):]) if err1 != nil { return 0, err1 } @@ -320,7 +320,7 @@ func (m *RewardPool) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintParams(dAtA, i, uint64(n1)) i-- dAtA[i] = 0x22 - n2, err2 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime):]) + n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime):]) if err2 != nil { return 0, err2 } @@ -521,9 +521,9 @@ func (m *RewardPool) Size() (n int) { n += 1 + l + sovParams(uint64(l)) l = m.ClaimedAmount.Size() n += 1 + l + sovParams(uint64(l)) - l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime) + l = github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime) n += 1 + l + sovParams(uint64(l)) - l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime) + l = github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime) n += 1 + l + sovParams(uint64(l)) return n } @@ -712,7 +712,7 @@ func (m *RewardPool) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -745,7 +745,7 @@ func (m *RewardPool) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/rewards/types/query.pb.go b/x/rewards/types/query.pb.go index cf37c177..30e4da73 100644 --- a/x/rewards/types/query.pb.go +++ b/x/rewards/types/query.pb.go @@ -39,7 +39,7 @@ func (m *QueryTasksRequest) Reset() { *m = QueryTasksRequest{} } func (m *QueryTasksRequest) String() string { return proto.CompactTextString(m) } func (*QueryTasksRequest) ProtoMessage() {} func (*QueryTasksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16b85c5f22209df1, []int{0} + return fileDescriptor_5ddc078ee02fb5e8, []int{0} } func (m *QueryTasksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ func (m *QueryTasksResponse) Reset() { *m = QueryTasksResponse{} } func (m *QueryTasksResponse) String() string { return proto.CompactTextString(m) } func (*QueryTasksResponse) ProtoMessage() {} func (*QueryTasksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16b85c5f22209df1, []int{1} + return fileDescriptor_5ddc078ee02fb5e8, []int{1} } func (m *QueryTasksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,7 +127,7 @@ func (m *QueryGetRewardRequest) Reset() { *m = QueryGetRewardRequest{} } func (m *QueryGetRewardRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardRequest) ProtoMessage() {} func (*QueryGetRewardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16b85c5f22209df1, []int{2} + return fileDescriptor_5ddc078ee02fb5e8, []int{2} } func (m *QueryGetRewardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -176,7 +176,7 @@ func (m *QueryGetRewardResponseReward) Reset() { *m = QueryGetRewardResp func (m *QueryGetRewardResponseReward) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardResponseReward) ProtoMessage() {} func (*QueryGetRewardResponseReward) Descriptor() ([]byte, []int) { - return fileDescriptor_16b85c5f22209df1, []int{3} + return fileDescriptor_5ddc078ee02fb5e8, []int{3} } func (m *QueryGetRewardResponseReward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -255,7 +255,7 @@ func (m *QueryGetRewardResponse) Reset() { *m = QueryGetRewardResponse{} func (m *QueryGetRewardResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardResponse) ProtoMessage() {} func (*QueryGetRewardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16b85c5f22209df1, []int{4} + return fileDescriptor_5ddc078ee02fb5e8, []int{4} } func (m *QueryGetRewardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -299,7 +299,7 @@ func (m *QueryAllRewardsRequest) Reset() { *m = QueryAllRewardsRequest{} func (m *QueryAllRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRewardsRequest) ProtoMessage() {} func (*QueryAllRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16b85c5f22209df1, []int{5} + return fileDescriptor_5ddc078ee02fb5e8, []int{5} } func (m *QueryAllRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -344,7 +344,7 @@ func (m *QueryAllRewardsResponse) Reset() { *m = QueryAllRewardsResponse func (m *QueryAllRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRewardsResponse) ProtoMessage() {} func (*QueryAllRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16b85c5f22209df1, []int{6} + return fileDescriptor_5ddc078ee02fb5e8, []int{6} } func (m *QueryAllRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -397,54 +397,54 @@ func init() { proto.RegisterType((*QueryAllRewardsResponse)(nil), "gitopia.gitopia.rewards.QueryAllRewardsResponse") } -func init() { proto.RegisterFile("rewards/query.proto", fileDescriptor_16b85c5f22209df1) } +func init() { proto.RegisterFile("rewards/query.proto", fileDescriptor_5ddc078ee02fb5e8) } -var fileDescriptor_16b85c5f22209df1 = []byte{ - // 694 bytes of a gzipped FileDescriptorProto +var fileDescriptor_5ddc078ee02fb5e8 = []byte{ + // 691 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xcf, 0x4f, 0x13, 0x41, - 0x14, 0xc7, 0xbb, 0x40, 0x4b, 0x18, 0x82, 0x3f, 0x26, 0x22, 0xb5, 0xc2, 0x96, 0xec, 0x41, 0x9a, + 0x14, 0xc7, 0xbb, 0x40, 0x4b, 0x18, 0x82, 0x3f, 0x46, 0x91, 0xda, 0xe0, 0x96, 0xec, 0x41, 0x9a, 0x2a, 0x3b, 0x50, 0xe5, 0xa0, 0x17, 0x43, 0x31, 0x72, 0x54, 0x37, 0x9e, 0xbc, 0xe0, 0xb4, 0x9d, - 0xac, 0x13, 0xb6, 0x3b, 0xcb, 0xce, 0x54, 0x25, 0x04, 0x0f, 0x9c, 0x3c, 0x1a, 0x3d, 0x79, 0xf2, - 0xe0, 0x1f, 0xe0, 0xbf, 0xc1, 0x91, 0xc4, 0x8b, 0xf1, 0x80, 0x06, 0xfc, 0x0b, 0xfc, 0x0b, 0xcc, - 0xce, 0xbc, 0x2d, 0x4b, 0xa1, 0x80, 0x49, 0x4f, 0xd3, 0xdd, 0x79, 0xdf, 0xf9, 0x7e, 0xe6, 0xed, - 0x7b, 0xaf, 0xe8, 0xa6, 0xcf, 0x95, 0x88, 0x38, 0x25, 0x31, 0x7b, 0x43, 0xe3, 0x96, 0x24, 0x1b, - 0x1d, 0x16, 0x6f, 0xba, 0x51, 0x2c, 0x94, 0xc0, 0x53, 0xb0, 0xe9, 0xa6, 0x2b, 0x04, 0x95, 0xae, - 0xf9, 0xc2, 0x17, 0x3a, 0x86, 0x24, 0xbf, 0x4c, 0x78, 0x69, 0xda, 0x17, 0xc2, 0x0f, 0x18, 0xa1, - 0x11, 0x27, 0x34, 0x0c, 0x85, 0xa2, 0x8a, 0x8b, 0x50, 0xc2, 0x6e, 0xb5, 0x29, 0x64, 0x5b, 0x48, - 0xd2, 0xa0, 0x92, 0x19, 0x17, 0xf2, 0x7a, 0xb1, 0xc1, 0x14, 0x5d, 0x24, 0x11, 0xf5, 0x79, 0xa8, - 0x83, 0x21, 0xb6, 0xd4, 0x4b, 0xa5, 0xa8, 0x5c, 0x87, 0xbd, 0x99, 0xde, 0x3d, 0x58, 0x61, 0xdb, - 0xce, 0xda, 0xa4, 0x06, 0x4d, 0xc1, 0xe1, 0x68, 0x67, 0x1e, 0x5d, 0x7d, 0x96, 0x98, 0x3f, 0xa7, - 0x72, 0x5d, 0x7a, 0x6c, 0xa3, 0xc3, 0xa4, 0xc2, 0x45, 0x34, 0x4a, 0x5b, 0xad, 0x98, 0x49, 0x59, - 0xb4, 0x66, 0xad, 0xca, 0x98, 0x97, 0x3e, 0x3a, 0x4f, 0x10, 0xce, 0x86, 0xcb, 0x48, 0x84, 0x92, - 0xe1, 0xfb, 0x28, 0x9f, 0x10, 0x25, 0xd1, 0xc3, 0x95, 0xf1, 0xda, 0x8c, 0xdb, 0x27, 0x51, 0x6e, - 0x22, 0xab, 0x8f, 0xec, 0xee, 0x97, 0x73, 0x9e, 0x51, 0x38, 0x4b, 0x68, 0x52, 0x1f, 0xb8, 0xca, - 0x94, 0xa7, 0x83, 0x52, 0x86, 0x69, 0x34, 0x16, 0xb3, 0x26, 0x8f, 0x38, 0x0b, 0x15, 0x50, 0x1c, - 0xbd, 0x70, 0xbe, 0x8d, 0xa0, 0xe9, 0x5e, 0x9d, 0x81, 0x31, 0x4f, 0x67, 0xcb, 0x71, 0x03, 0x15, - 0x68, 0x5b, 0x74, 0x42, 0x55, 0x1c, 0x9a, 0xb5, 0x2a, 0xe3, 0xb5, 0x1b, 0xae, 0x49, 0x93, 0x9b, - 0xa4, 0xc9, 0x85, 0x34, 0xb9, 0x2b, 0x82, 0x87, 0x75, 0x92, 0xd0, 0xee, 0xfc, 0x2a, 0xcf, 0xf9, - 0x5c, 0xbd, 0xea, 0x34, 0xdc, 0xa6, 0x68, 0x13, 0xc8, 0xa9, 0x59, 0xe6, 0x65, 0x6b, 0x9d, 0xa8, - 0xcd, 0x88, 0x49, 0x2d, 0xf0, 0xe0, 0xe4, 0x24, 0x89, 0xcd, 0x98, 0x51, 0x25, 0xe2, 0xe2, 0xb0, - 0x49, 0x22, 0x3c, 0xe2, 0x0d, 0x74, 0xa9, 0x19, 0x50, 0xde, 0x66, 0xad, 0x35, 0xa0, 0x18, 0x19, - 0x38, 0xc5, 0x04, 0x38, 0x2c, 0x1b, 0x98, 0x0e, 0xba, 0xa2, 0x5f, 0xd0, 0x46, 0xc0, 0x52, 0xd3, - 0xfc, 0xc0, 0x4d, 0x2f, 0x77, 0x3d, 0xc0, 0xf6, 0xbd, 0x85, 0x4a, 0x31, 0x6b, 0x53, 0x1e, 0xf2, - 0xd0, 0x5f, 0x3b, 0x41, 0x50, 0x18, 0x38, 0x41, 0xb1, 0xeb, 0xb6, 0x72, 0x1c, 0xc5, 0x79, 0x87, - 0xae, 0x9f, 0x5e, 0x30, 0xb8, 0x85, 0x0a, 0xa6, 0x3e, 0x75, 0x9d, 0x8c, 0xd7, 0x96, 0xfa, 0x96, - 0xef, 0x59, 0x15, 0x57, 0x9f, 0x4c, 0x58, 0xff, 0xee, 0x97, 0x27, 0x36, 0x69, 0x3b, 0x78, 0xe0, - 0x18, 0x8d, 0xe3, 0xc1, 0xd9, 0xce, 0x4b, 0xf0, 0x5f, 0x0e, 0x02, 0x23, 0xe8, 0x76, 0xdb, 0x63, - 0x84, 0x8e, 0x3a, 0x1e, 0x18, 0x6e, 0x1d, 0xcb, 0x89, 0x19, 0x42, 0x69, 0x66, 0x9e, 0x52, 0x9f, - 0x81, 0xd6, 0xcb, 0x28, 0x9d, 0xaf, 0x16, 0x9a, 0x3a, 0x61, 0x01, 0x77, 0x7c, 0x88, 0x46, 0xe1, - 0x12, 0xd0, 0xa3, 0xe5, 0xbe, 0x97, 0x84, 0xeb, 0x98, 0x2e, 0x4d, 0x55, 0x78, 0xf5, 0x18, 0xa4, - 0xe9, 0x9a, 0xb9, 0x73, 0x21, 0x21, 0x41, 0x19, 0x69, 0xed, 0xe7, 0x30, 0xca, 0x6b, 0x4a, 0xfc, - 0xd1, 0x42, 0x79, 0x3d, 0x47, 0x70, 0xf5, 0xec, 0x8c, 0x67, 0x67, 0x53, 0xe9, 0xf6, 0x85, 0x62, - 0x8d, 0xb1, 0xb3, 0xb0, 0xf3, 0xfd, 0xcf, 0xa7, 0xa1, 0x2a, 0xae, 0x90, 0x74, 0x4a, 0x9e, 0x36, - 0x49, 0x25, 0xd9, 0x82, 0xf9, 0xb6, 0x8d, 0xbf, 0x58, 0xa8, 0x00, 0x23, 0xc4, 0xbd, 0x70, 0x1d, - 0x18, 0x32, 0xf2, 0x9f, 0x75, 0xe3, 0xdc, 0xd3, 0x74, 0x2e, 0xbe, 0xd3, 0x97, 0x2e, 0x5d, 0xb7, - 0xba, 0xa3, 0x6b, 0x1b, 0x7f, 0xb6, 0x10, 0x82, 0xcf, 0xbb, 0x1c, 0x04, 0xf8, 0x1c, 0xd7, 0x13, - 0xe5, 0x56, 0x5a, 0xb8, 0xb8, 0x00, 0x38, 0x2b, 0x9a, 0xd3, 0xc1, 0xb3, 0xe7, 0x71, 0xd6, 0x1f, - 0xed, 0x1e, 0xd8, 0xd6, 0xde, 0x81, 0x6d, 0xfd, 0x3e, 0xb0, 0xad, 0x0f, 0x87, 0x76, 0x6e, 0xef, - 0xd0, 0xce, 0xfd, 0x38, 0xb4, 0x73, 0x2f, 0xaa, 0x99, 0x0e, 0xee, 0x3d, 0xe5, 0xed, 0xd1, 0xd7, - 0x48, 0x3a, 0xb9, 0x51, 0xd0, 0x7f, 0x4d, 0x77, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xe4, - 0xcc, 0x96, 0x8d, 0x07, 0x00, 0x00, + 0xac, 0x13, 0x76, 0x77, 0x96, 0x9d, 0xa9, 0x4a, 0x08, 0x1e, 0x38, 0x79, 0x34, 0x7a, 0xf2, 0xe4, + 0xc1, 0x3f, 0xc0, 0x7f, 0x83, 0x23, 0x89, 0x17, 0xe3, 0x01, 0x0d, 0xf8, 0x17, 0xf8, 0x17, 0x98, + 0x9d, 0x79, 0x5b, 0x16, 0xb0, 0x80, 0x49, 0x4f, 0xc3, 0x0e, 0xef, 0xfb, 0xbe, 0x9f, 0x7d, 0xfb, + 0xde, 0x2b, 0xba, 0x92, 0xb0, 0xd7, 0x34, 0xe9, 0x48, 0xb2, 0xde, 0x65, 0xc9, 0x86, 0x1b, 0x27, + 0x42, 0x09, 0x3c, 0xe5, 0x73, 0x25, 0x62, 0x4e, 0xdd, 0xec, 0x84, 0xa0, 0xca, 0x55, 0x5f, 0xf8, + 0x42, 0xc7, 0x90, 0xf4, 0x2f, 0x13, 0x5e, 0x99, 0xf6, 0x85, 0xf0, 0x03, 0x46, 0x68, 0xcc, 0x09, + 0x8d, 0x22, 0xa1, 0xa8, 0xe2, 0x22, 0x92, 0xf0, 0xdf, 0x7a, 0x5b, 0xc8, 0x50, 0x48, 0xd2, 0xa2, + 0x92, 0x19, 0x17, 0xf2, 0x6a, 0xa1, 0xc5, 0x14, 0x5d, 0x20, 0x31, 0xf5, 0x79, 0xa4, 0x83, 0x21, + 0x16, 0x67, 0x34, 0x8a, 0xca, 0x35, 0xb8, 0x9b, 0xcc, 0xee, 0xe0, 0x84, 0x6b, 0x3b, 0x9f, 0x36, + 0x4b, 0xd8, 0x16, 0x1c, 0x52, 0x39, 0x73, 0xe8, 0xf2, 0xd3, 0xd4, 0xec, 0x19, 0x95, 0x6b, 0xd2, + 0x63, 0xeb, 0x5d, 0x26, 0x15, 0x2e, 0xa3, 0x51, 0xda, 0xe9, 0x24, 0x4c, 0xca, 0xb2, 0x35, 0x63, + 0xd5, 0xc6, 0xbc, 0xec, 0xd1, 0x79, 0x8c, 0x70, 0x3e, 0x5c, 0xc6, 0x22, 0x92, 0x0c, 0xdf, 0x43, + 0xc5, 0x94, 0x24, 0x8d, 0x1e, 0xae, 0x8d, 0x37, 0x6e, 0xb8, 0x7d, 0x0a, 0xe3, 0xa6, 0xb2, 0xe6, + 0xc8, 0xce, 0x5e, 0xb5, 0xe0, 0x19, 0x85, 0xb3, 0x88, 0x26, 0x75, 0xc2, 0x15, 0xa6, 0x3c, 0x1d, + 0x94, 0x31, 0x4c, 0xa3, 0xb1, 0x84, 0xb5, 0x79, 0xcc, 0x59, 0xa4, 0x80, 0xe2, 0xf0, 0xc2, 0xf9, + 0x3a, 0x82, 0xa6, 0x8f, 0xeb, 0x0c, 0x8c, 0x79, 0x3a, 0x5d, 0x8e, 0x5b, 0xa8, 0x44, 0x43, 0xd1, + 0x8d, 0x54, 0x79, 0x68, 0xc6, 0xaa, 0x8d, 0x37, 0xae, 0xbb, 0xa6, 0x4c, 0x6e, 0x5a, 0x26, 0x17, + 0xca, 0xe4, 0x2e, 0x0b, 0x1e, 0x35, 0x49, 0x4a, 0xbb, 0xfd, 0xb3, 0x3a, 0xeb, 0x73, 0xf5, 0xb2, + 0xdb, 0x72, 0xdb, 0x22, 0x24, 0x50, 0x53, 0x73, 0xcc, 0xc9, 0xce, 0x1a, 0x51, 0x1b, 0x31, 0x93, + 0x5a, 0xe0, 0x41, 0xe6, 0xb4, 0x88, 0xed, 0x84, 0x51, 0x25, 0x92, 0xf2, 0xb0, 0x29, 0x22, 0x3c, + 0xe2, 0x75, 0x74, 0xa1, 0x1d, 0x50, 0x1e, 0xb2, 0xce, 0x2a, 0x50, 0x8c, 0x0c, 0x9c, 0x62, 0x02, + 0x1c, 0x96, 0x0c, 0x4c, 0x17, 0x5d, 0xd2, 0x17, 0xb4, 0x15, 0xb0, 0xcc, 0xb4, 0x38, 0x70, 0xd3, + 0x8b, 0x3d, 0x0f, 0xb0, 0x7d, 0x67, 0xa1, 0x4a, 0xc2, 0x42, 0xca, 0x23, 0x1e, 0xf9, 0xab, 0x27, + 0x08, 0x4a, 0x03, 0x27, 0x28, 0xf7, 0xdc, 0x96, 0x8f, 0xa2, 0x38, 0x6f, 0xd1, 0xb5, 0x7f, 0x37, + 0x0c, 0xee, 0xa0, 0x92, 0xe9, 0x4f, 0xdd, 0x27, 0xe3, 0x8d, 0xc5, 0xbe, 0xed, 0x7b, 0x5a, 0xc7, + 0x35, 0x27, 0x53, 0xd6, 0x3f, 0x7b, 0xd5, 0x89, 0x0d, 0x1a, 0x06, 0xf7, 0x1d, 0xa3, 0x71, 0x3c, + 0xc8, 0xed, 0xbc, 0x00, 0xff, 0xa5, 0x20, 0x30, 0x82, 0xde, 0xb4, 0x3d, 0x42, 0xe8, 0x70, 0xc2, + 0x81, 0xe1, 0xe6, 0x91, 0x9a, 0x98, 0xa5, 0x93, 0x55, 0xe6, 0x09, 0xf5, 0x19, 0x68, 0xbd, 0x9c, + 0xd2, 0xf9, 0x62, 0xa1, 0xa9, 0x13, 0x16, 0xf0, 0x8e, 0x0f, 0xd0, 0x28, 0xbc, 0x04, 0xcc, 0x68, + 0xb5, 0xef, 0x4b, 0xc2, 0xeb, 0x98, 0x29, 0xcd, 0x54, 0x78, 0xe5, 0x08, 0xa4, 0x99, 0x9a, 0xd9, + 0x33, 0x21, 0xa1, 0x40, 0x39, 0x69, 0xe3, 0xc7, 0x30, 0x2a, 0x6a, 0x4a, 0xfc, 0xc1, 0x42, 0x45, + 0xbd, 0x47, 0x70, 0xfd, 0xf4, 0x8a, 0xe7, 0x77, 0x53, 0xe5, 0xd6, 0xb9, 0x62, 0x8d, 0xb1, 0x33, + 0xbf, 0xfd, 0xed, 0xf7, 0xc7, 0xa1, 0x3a, 0xae, 0x11, 0x08, 0xee, 0x9d, 0xf9, 0x0d, 0x2a, 0xc9, + 0x26, 0xec, 0xb7, 0x2d, 0xfc, 0xd9, 0x42, 0x25, 0x58, 0x21, 0xee, 0xb9, 0xfb, 0xc0, 0x90, 0x91, + 0xff, 0xec, 0x1b, 0xe7, 0xae, 0xa6, 0x73, 0xf1, 0xed, 0xbe, 0x74, 0xd9, 0xb9, 0xd9, 0x5b, 0x5d, + 0x5b, 0xf8, 0x93, 0x85, 0x10, 0x7c, 0xde, 0xa5, 0x20, 0xc0, 0x67, 0xb8, 0x9e, 0x68, 0xb7, 0xca, + 0xfc, 0xf9, 0x05, 0xc0, 0x59, 0xd3, 0x9c, 0x0e, 0x9e, 0x39, 0x8b, 0xb3, 0xf9, 0x70, 0x67, 0xdf, + 0xb6, 0x76, 0xf7, 0x6d, 0xeb, 0xd7, 0xbe, 0x6d, 0xbd, 0x3f, 0xb0, 0x0b, 0xbb, 0x07, 0x76, 0xe1, + 0xfb, 0x81, 0x5d, 0x78, 0x5e, 0xcf, 0x4d, 0xf0, 0xf1, 0x2c, 0x6f, 0x0e, 0xbf, 0x46, 0x3a, 0xc9, + 0xad, 0x92, 0xfe, 0x69, 0xba, 0xf3, 0x37, 0x00, 0x00, 0xff, 0xff, 0x90, 0x32, 0x84, 0x2d, 0x75, + 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/rewards/types/query.pb.gw.go b/x/rewards/types/query.pb.gw.go index 8ae89bac..401baa84 100644 --- a/x/rewards/types/query.pb.gw.go +++ b/x/rewards/types/query.pb.gw.go @@ -357,11 +357,11 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Tasks_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"gitopia", "rewards", "tasks", "address"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Tasks_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"gitopia", "rewards", "tasks", "address"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_Reward_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "rewards", "recipient"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Reward_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"gitopia", "rewards", "recipient"}, "", runtime.AssumeColonVerbOpt(true))) - pattern_Query_RewardsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1}, []string{"gitopia", "rewards"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_RewardsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 2, 1}, []string{"gitopia", "rewards"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( diff --git a/x/rewards/types/rewards.pb.go b/x/rewards/types/rewards.pb.go index f8aa59bb..f6ebc887 100644 --- a/x/rewards/types/rewards.pb.go +++ b/x/rewards/types/rewards.pb.go @@ -36,7 +36,7 @@ func (m *Reward) Reset() { *m = Reward{} } func (m *Reward) String() string { return proto.CompactTextString(m) } func (*Reward) ProtoMessage() {} func (*Reward) Descriptor() ([]byte, []int) { - return fileDescriptor_02cca378d543f1ef, []int{0} + return fileDescriptor_35285a44c4c54379, []int{0} } func (m *Reward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -104,30 +104,30 @@ func init() { proto.RegisterType((*Reward)(nil), "gitopia.gitopia.rewards.Reward") } -func init() { proto.RegisterFile("rewards/rewards.proto", fileDescriptor_02cca378d543f1ef) } +func init() { proto.RegisterFile("rewards/rewards.proto", fileDescriptor_35285a44c4c54379) } -var fileDescriptor_02cca378d543f1ef = []byte{ - // 320 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xb1, 0x4e, 0xf3, 0x30, - 0x14, 0x85, 0xe3, 0xbf, 0x3f, 0x45, 0x35, 0x82, 0x21, 0x42, 0x90, 0x56, 0xe0, 0x56, 0x2c, 0x54, - 0x48, 0xd8, 0x2a, 0x3c, 0x01, 0xa5, 0x4f, 0xd0, 0x05, 0x89, 0xa5, 0x72, 0x1c, 0x2b, 0xb5, 0x20, - 0xb9, 0x21, 0x76, 0x29, 0x5d, 0x91, 0xd8, 0x79, 0x03, 0x5e, 0xa7, 0x63, 0x47, 0x26, 0x40, 0xed, - 0x8b, 0xa0, 0x38, 0x0e, 0xd0, 0xbd, 0xd3, 0x49, 0x7c, 0xae, 0xcf, 0x77, 0x24, 0x5f, 0x7c, 0x1c, - 0x2b, 0x03, 0x99, 0xe2, 0x2c, 0x97, 0x53, 0x9e, 0x47, 0xba, 0x52, 0x9a, 0xe5, 0x60, 0xc0, 0x3f, - 0x74, 0x36, 0xad, 0xd4, 0xd9, 0xad, 0xfd, 0x18, 0x62, 0xb0, 0x33, 0xac, 0xf8, 0x2a, 0xc7, 0x5b, - 0x44, 0x80, 0x4e, 0x40, 0xb3, 0x90, 0x6b, 0xc9, 0x1e, 0x7b, 0xa1, 0x34, 0xbc, 0xc7, 0x04, 0xa8, - 0xb4, 0xf4, 0x4f, 0xde, 0x6a, 0xb8, 0x3e, 0xb4, 0x09, 0xfe, 0x11, 0x6e, 0xe4, 0x52, 0xa8, 0x4c, - 0xc9, 0xd4, 0x04, 0xa8, 0x83, 0xba, 0x8d, 0xe1, 0xef, 0x81, 0x1f, 0xe2, 0x3a, 0x4f, 0x60, 0x92, - 0x9a, 0xe0, 0x5f, 0x07, 0x75, 0x77, 0x2e, 0x9a, 0xb4, 0x4c, 0xa6, 0x45, 0x32, 0x75, 0xc9, 0xf4, - 0x1a, 0x54, 0xda, 0x67, 0xf3, 0x8f, 0xb6, 0xf7, 0xfc, 0xd9, 0x3e, 0x8d, 0x95, 0x19, 0x4f, 0x42, - 0x2a, 0x20, 0x61, 0xae, 0x46, 0x29, 0xe7, 0x3a, 0xba, 0x63, 0x66, 0x96, 0x49, 0x6d, 0x2f, 0x0c, - 0x5d, 0xb2, 0x1f, 0xe0, 0x6d, 0x91, 0x4b, 0x6e, 0x20, 0x0f, 0x6a, 0x96, 0x5f, 0xfd, 0xfa, 0x0f, - 0x78, 0x4f, 0xdc, 0x73, 0x95, 0xc8, 0x68, 0xe4, 0x5a, 0xfc, 0xdf, 0x78, 0x8b, 0x5d, 0x47, 0xb8, - 0x2a, 0xcb, 0xbc, 0x20, 0xdc, 0x5c, 0x67, 0x8e, 0xa6, 0xca, 0x8c, 0x47, 0x91, 0x14, 0x7c, 0x16, - 0x6c, 0x6d, 0x1c, 0x7f, 0xb0, 0x86, 0xbf, 0x51, 0x66, 0x3c, 0x28, 0x48, 0xfd, 0xc1, 0x7c, 0x49, - 0xd0, 0x62, 0x49, 0xd0, 0xd7, 0x92, 0xa0, 0xd7, 0x15, 0xf1, 0x16, 0x2b, 0xe2, 0xbd, 0xaf, 0x88, - 0x77, 0x7b, 0xf6, 0x27, 0xba, 0x5a, 0x9a, 0x4a, 0x9f, 0x7e, 0xd6, 0xc7, 0x22, 0xc2, 0xba, 0x7d, - 0xee, 0xcb, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3b, 0xfe, 0x08, 0xfa, 0x5e, 0x02, 0x00, 0x00, +var fileDescriptor_35285a44c4c54379 = []byte{ + // 318 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xcf, 0x4e, 0x32, 0x31, + 0x14, 0xc5, 0xa7, 0x1f, 0x9f, 0x18, 0x6a, 0x74, 0x31, 0xf1, 0xcf, 0x40, 0x4c, 0x21, 0x6e, 0x24, + 0x26, 0xb6, 0x41, 0x9f, 0x40, 0xe4, 0x09, 0xd8, 0x98, 0xb8, 0x21, 0x9d, 0x4e, 0x33, 0x34, 0x3a, + 0x73, 0xc7, 0xb6, 0x88, 0x6c, 0x4d, 0xdc, 0xfb, 0x06, 0xbe, 0x0e, 0x4b, 0x96, 0xae, 0xd4, 0xc0, + 0x8b, 0x18, 0xa6, 0x45, 0x65, 0xcf, 0xea, 0xb4, 0xbd, 0xb7, 0xe7, 0x77, 0x92, 0x7b, 0xf1, 0x81, + 0x96, 0x63, 0xae, 0x13, 0xc3, 0xbc, 0xd2, 0x42, 0x83, 0x85, 0xf0, 0x28, 0x55, 0x16, 0x0a, 0xc5, + 0xe9, 0x4a, 0x7d, 0xb9, 0xb1, 0x9f, 0x42, 0x0a, 0x65, 0x0f, 0x5b, 0x9e, 0x5c, 0x7b, 0x83, 0x08, + 0x30, 0x19, 0x18, 0x16, 0x73, 0x23, 0xd9, 0x63, 0x27, 0x96, 0x96, 0x77, 0x98, 0x00, 0x95, 0xbb, + 0xfa, 0xc9, 0x5b, 0x05, 0x57, 0xfb, 0xa5, 0x43, 0x78, 0x8c, 0x6b, 0x5a, 0x0a, 0x55, 0x28, 0x99, + 0xdb, 0x08, 0xb5, 0x50, 0xbb, 0xd6, 0xff, 0x7d, 0x08, 0x63, 0x5c, 0xe5, 0x19, 0x8c, 0x72, 0x1b, + 0xfd, 0x6b, 0xa1, 0xf6, 0xce, 0x45, 0x9d, 0x3a, 0x67, 0xba, 0x74, 0xa6, 0xde, 0x99, 0x5e, 0x83, + 0xca, 0xbb, 0x6c, 0xfa, 0xd1, 0x0c, 0x9e, 0x3f, 0x9b, 0xa7, 0xa9, 0xb2, 0xc3, 0x51, 0x4c, 0x05, + 0x64, 0xcc, 0xc7, 0x70, 0x72, 0x6e, 0x92, 0x3b, 0x66, 0x27, 0x85, 0x34, 0xe5, 0x87, 0xbe, 0x77, + 0x0e, 0x23, 0xbc, 0x2d, 0xb4, 0xe4, 0x16, 0x74, 0x54, 0x29, 0xf9, 0xab, 0x6b, 0xf8, 0x80, 0xf7, + 0xc4, 0x3d, 0x57, 0x99, 0x4c, 0x06, 0x3e, 0xc5, 0xff, 0x8d, 0xa7, 0xd8, 0xf5, 0x84, 0x2b, 0x17, + 0xe6, 0x05, 0xe1, 0xfa, 0x3a, 0x73, 0x30, 0x56, 0x76, 0x38, 0x48, 0xa4, 0xe0, 0x93, 0x68, 0x6b, + 0xe3, 0xf8, 0xc3, 0x35, 0xfc, 0x8d, 0xb2, 0xc3, 0xde, 0x92, 0xd4, 0xed, 0x4d, 0xe7, 0x04, 0xcd, + 0xe6, 0x04, 0x7d, 0xcd, 0x09, 0x7a, 0x5d, 0x90, 0x60, 0xb6, 0x20, 0xc1, 0xfb, 0x82, 0x04, 0xb7, + 0x67, 0x7f, 0xac, 0xfd, 0x36, 0xfc, 0xe8, 0xd3, 0x6a, 0x6d, 0x1c, 0x22, 0xae, 0x96, 0xe3, 0xbe, + 0xfc, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xec, 0xd2, 0x84, 0x56, 0x02, 0x00, 0x00, } func (m *Reward) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/task.pb.go b/x/rewards/types/task.pb.go index f34f192f..6d8bf70f 100644 --- a/x/rewards/types/task.pb.go +++ b/x/rewards/types/task.pb.go @@ -71,7 +71,7 @@ func (x TaskType) String() string { } func (TaskType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_e0552f51de1f8bcf, []int{0} + return fileDescriptor_a5798f12b06d3b25, []int{0} } type Task struct { @@ -84,7 +84,7 @@ func (m *Task) Reset() { *m = Task{} } func (m *Task) String() string { return proto.CompactTextString(m) } func (*Task) ProtoMessage() {} func (*Task) Descriptor() ([]byte, []int) { - return fileDescriptor_e0552f51de1f8bcf, []int{0} + return fileDescriptor_a5798f12b06d3b25, []int{0} } func (m *Task) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -139,34 +139,34 @@ func init() { proto.RegisterType((*Task)(nil), "gitopia.gitopia.rewards.Task") } -func init() { proto.RegisterFile("rewards/task.proto", fileDescriptor_e0552f51de1f8bcf) } +func init() { proto.RegisterFile("rewards/task.proto", fileDescriptor_a5798f12b06d3b25) } -var fileDescriptor_e0552f51de1f8bcf = []byte{ - // 374 bytes of a gzipped FileDescriptorProto +var fileDescriptor_a5798f12b06d3b25 = []byte{ + // 372 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xcf, 0xae, 0xd2, 0x40, - 0x14, 0x87, 0x3b, 0x5c, 0x2e, 0x17, 0xcf, 0xf5, 0xcf, 0x30, 0x09, 0x5a, 0x89, 0x99, 0x80, 0x89, - 0x86, 0xb0, 0x28, 0x89, 0xc6, 0x07, 0x00, 0x3a, 0x6a, 0x03, 0x74, 0x9a, 0xe9, 0x14, 0x82, 0x9b, - 0x49, 0xd1, 0x06, 0x1a, 0x24, 0x6d, 0x68, 0x09, 0xf2, 0x16, 0xbe, 0x82, 0x6f, 0xe3, 0x92, 0xa5, - 0x4b, 0x03, 0x2f, 0x62, 0xc0, 0x36, 0x17, 0x16, 0xac, 0x4e, 0xe6, 0xf7, 0x7d, 0x39, 0x33, 0x93, - 0x73, 0xa0, 0x36, 0x0b, 0xd3, 0x28, 0x0e, 0xfd, 0xf6, 0x2a, 0xd8, 0xf8, 0xab, 0x6f, 0x49, 0x3b, - 0xf5, 0x93, 0x85, 0x11, 0xaf, 0xa2, 0x34, 0x22, 0x2f, 0x32, 0x66, 0xe4, 0x35, 0x73, 0x5e, 0xaf, - 0xa1, 0x28, 0xfd, 0x64, 0x41, 0x3e, 0x40, 0x31, 0xdd, 0xc6, 0x81, 0x8e, 0xea, 0xa8, 0xf9, 0xf4, - 0x5d, 0xc3, 0xb8, 0xe2, 0x1b, 0xc7, 0x9e, 0x72, 0x1b, 0x07, 0xe2, 0xa4, 0x13, 0x0a, 0x10, 0x26, - 0xbd, 0x68, 0x19, 0x7f, 0x0f, 0xd2, 0x40, 0x2f, 0xd4, 0x51, 0xb3, 0x2c, 0xce, 0x12, 0xf2, 0x1c, - 0x4a, 0x9b, 0x20, 0x9c, 0xcd, 0x53, 0xfd, 0xa6, 0x8e, 0x9a, 0xb7, 0x22, 0x3b, 0xb5, 0x7e, 0x15, - 0xa0, 0x9c, 0xb7, 0x22, 0xf7, 0x70, 0xe7, 0xd9, 0x7d, 0x9b, 0x8f, 0x6d, 0xac, 0x91, 0x67, 0x70, - 0xdf, 0x13, 0xac, 0x23, 0x99, 0xf2, 0x5c, 0x26, 0x30, 0x22, 0x2f, 0xa1, 0x9a, 0x05, 0x36, 0xb7, - 0x15, 0x1b, 0x3a, 0x72, 0xa2, 0x04, 0x73, 0x38, 0x2e, 0x10, 0x0c, 0x8f, 0x33, 0x64, 0xb9, 0xae, - 0xc7, 0xf0, 0x0d, 0x79, 0x05, 0xfa, 0x79, 0xa2, 0xc6, 0x96, 0xfc, 0xac, 0xba, 0xdc, 0xb3, 0xe5, - 0x04, 0x17, 0xc9, 0x1b, 0x68, 0x5c, 0xa3, 0x6a, 0xc4, 0x84, 0xf5, 0xd1, 0x62, 0x26, 0xbe, 0x25, - 0x55, 0xa8, 0x38, 0x42, 0x49, 0x7e, 0xba, 0x46, 0x0d, 0x99, 0xf8, 0xc4, 0x4c, 0x5c, 0x22, 0x14, - 0x6a, 0xff, 0xe3, 0x5c, 0xbd, 0xe0, 0x77, 0xa4, 0x05, 0x6f, 0xaf, 0xf3, 0x8b, 0x97, 0x94, 0x8f, - 0xbf, 0x1c, 0x70, 0xc1, 0x94, 0x2b, 0x3b, 0x7d, 0x66, 0xe2, 0x47, 0xa4, 0x02, 0x4f, 0x46, 0x5c, - 0x32, 0xe5, 0x08, 0xee, 0x70, 0xb7, 0x33, 0xc0, 0xd0, 0x35, 0x7f, 0xef, 0x29, 0xda, 0xed, 0x29, - 0xfa, 0xbb, 0xa7, 0xe8, 0xe7, 0x81, 0x6a, 0xbb, 0x03, 0xd5, 0xfe, 0x1c, 0xa8, 0xf6, 0xa5, 0x35, - 0x0b, 0xd3, 0xf9, 0x7a, 0x6a, 0x7c, 0x8d, 0x96, 0xed, 0x7c, 0xe8, 0x79, 0xfd, 0xf1, 0x30, 0xfe, - 0x6d, 0x1c, 0x24, 0xd3, 0xd2, 0x69, 0x01, 0xde, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x67, - 0xd2, 0x9b, 0x1e, 0x02, 0x00, 0x00, + 0x14, 0x87, 0x3b, 0x5c, 0x2e, 0xe0, 0xc1, 0x3f, 0xc3, 0x24, 0x68, 0x35, 0x66, 0x02, 0x26, 0x1a, + 0xc2, 0xa2, 0x24, 0x1a, 0x1f, 0x00, 0xe8, 0xa8, 0x0d, 0xd0, 0x69, 0xa6, 0x53, 0x08, 0x6e, 0x26, + 0x45, 0x1b, 0x68, 0x90, 0xb4, 0xa1, 0x25, 0xc8, 0x5b, 0xf8, 0x0a, 0xbe, 0x8d, 0x4b, 0x96, 0x2e, + 0x0d, 0xbc, 0x88, 0x81, 0x5b, 0x08, 0x2c, 0x58, 0x9d, 0xcc, 0xef, 0xfb, 0x72, 0x66, 0x26, 0xe7, + 0x00, 0x59, 0x06, 0x6b, 0x7f, 0xf9, 0x3d, 0x69, 0xa5, 0x7e, 0x32, 0x37, 0xe2, 0x65, 0x94, 0x46, + 0xe4, 0xc5, 0x34, 0x4c, 0xa3, 0x38, 0xf4, 0x8d, 0x53, 0xcd, 0x9c, 0x37, 0x2b, 0xc8, 0x4b, 0x3f, + 0x99, 0x93, 0x8f, 0x90, 0x4f, 0x37, 0x71, 0xa0, 0xa3, 0x1a, 0x6a, 0x3c, 0x7d, 0x5f, 0x37, 0x6e, + 0xf8, 0xc6, 0xa1, 0xa7, 0xdc, 0xc4, 0x81, 0x38, 0xea, 0x84, 0x02, 0x84, 0x49, 0x37, 0x5a, 0xc4, + 0x3f, 0x82, 0x34, 0xd0, 0x73, 0x35, 0xd4, 0x28, 0x89, 0x8b, 0x84, 0x3c, 0x87, 0xc2, 0x3a, 0x08, + 0xa7, 0xb3, 0x54, 0xbf, 0xab, 0xa1, 0xc6, 0xbd, 0xc8, 0x4e, 0xcd, 0xdf, 0x39, 0x28, 0x9d, 0x5a, + 0x91, 0x32, 0x14, 0x3d, 0xbb, 0x67, 0xf3, 0x91, 0x8d, 0x35, 0xf2, 0x0c, 0xca, 0x5d, 0xc1, 0xda, + 0x92, 0x29, 0xcf, 0x65, 0x02, 0x23, 0xf2, 0x12, 0xaa, 0x59, 0x60, 0x73, 0x5b, 0xb1, 0x81, 0x23, + 0xc7, 0x4a, 0x30, 0x87, 0xe3, 0x1c, 0xc1, 0xf0, 0x38, 0x43, 0x96, 0xeb, 0x7a, 0x0c, 0xdf, 0x91, + 0xd7, 0xa0, 0x5f, 0x26, 0x6a, 0x64, 0xc9, 0x2f, 0xaa, 0xc3, 0x3d, 0x5b, 0x8e, 0x71, 0x9e, 0xbc, + 0x85, 0xfa, 0x2d, 0xaa, 0x86, 0x4c, 0x58, 0x9f, 0x2c, 0x66, 0xe2, 0x7b, 0x52, 0x85, 0x8a, 0x23, + 0x94, 0xe4, 0xc7, 0x6b, 0xd4, 0x80, 0x89, 0xcf, 0xcc, 0xc4, 0x05, 0x42, 0xe1, 0xd5, 0x43, 0x7c, + 0x52, 0xaf, 0x78, 0x91, 0x34, 0xe1, 0xdd, 0x6d, 0x7e, 0xf5, 0x92, 0xd2, 0xe1, 0x97, 0x7d, 0x2e, + 0x98, 0x72, 0x65, 0xbb, 0xc7, 0x4c, 0xfc, 0x88, 0x54, 0xe0, 0xc9, 0x90, 0x4b, 0xa6, 0x1c, 0xc1, + 0x1d, 0xee, 0xb6, 0xfb, 0x18, 0x3a, 0xe6, 0x9f, 0x1d, 0x45, 0xdb, 0x1d, 0x45, 0xff, 0x76, 0x14, + 0xfd, 0xda, 0x53, 0x6d, 0xbb, 0xa7, 0xda, 0xdf, 0x3d, 0xd5, 0xbe, 0x36, 0xa7, 0x61, 0x3a, 0x5b, + 0x4d, 0x8c, 0x6f, 0xd1, 0xa2, 0x95, 0x0d, 0xe8, 0x5c, 0x7f, 0xb6, 0xce, 0xe3, 0xdf, 0xc4, 0x41, + 0x32, 0x29, 0x1c, 0x17, 0xe0, 0xc3, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x46, 0x0f, 0x63, 0xa6, + 0x16, 0x02, 0x00, 0x00, } func (m *Task) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/tx.pb.go b/x/rewards/types/tx.pb.go index e57c8e17..6b04dcd2 100644 --- a/x/rewards/types/tx.pb.go +++ b/x/rewards/types/tx.pb.go @@ -39,7 +39,7 @@ func (m *MsgCreateReward) Reset() { *m = MsgCreateReward{} } func (m *MsgCreateReward) String() string { return proto.CompactTextString(m) } func (*MsgCreateReward) ProtoMessage() {} func (*MsgCreateReward) Descriptor() ([]byte, []int) { - return fileDescriptor_7c381979139f2588, []int{0} + return fileDescriptor_4c0d543e6be8610a, []int{0} } func (m *MsgCreateReward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -98,7 +98,7 @@ func (m *MsgCreateRewardResponse) Reset() { *m = MsgCreateRewardResponse func (m *MsgCreateRewardResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRewardResponse) ProtoMessage() {} func (*MsgCreateRewardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_7c381979139f2588, []int{1} + return fileDescriptor_4c0d543e6be8610a, []int{1} } func (m *MsgCreateRewardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -143,7 +143,7 @@ func (m *MsgClaim) Reset() { *m = MsgClaim{} } func (m *MsgClaim) String() string { return proto.CompactTextString(m) } func (*MsgClaim) ProtoMessage() {} func (*MsgClaim) Descriptor() ([]byte, []int) { - return fileDescriptor_7c381979139f2588, []int{2} + return fileDescriptor_4c0d543e6be8610a, []int{2} } func (m *MsgClaim) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -186,7 +186,7 @@ func (m *MsgClaimResponse) Reset() { *m = MsgClaimResponse{} } func (m *MsgClaimResponse) String() string { return proto.CompactTextString(m) } func (*MsgClaimResponse) ProtoMessage() {} func (*MsgClaimResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_7c381979139f2588, []int{3} + return fileDescriptor_4c0d543e6be8610a, []int{3} } func (m *MsgClaimResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -222,33 +222,33 @@ func init() { proto.RegisterType((*MsgClaimResponse)(nil), "gitopia.gitopia.rewards.MsgClaimResponse") } -func init() { proto.RegisterFile("rewards/tx.proto", fileDescriptor_7c381979139f2588) } - -var fileDescriptor_7c381979139f2588 = []byte{ - // 362 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0xb1, 0x4e, 0xeb, 0x30, - 0x14, 0x8d, 0x5f, 0xf5, 0x0a, 0x35, 0x48, 0xa0, 0x08, 0xa9, 0x21, 0x02, 0xb7, 0x54, 0x48, 0x14, - 0x24, 0x6c, 0x5a, 0xfe, 0xa0, 0x65, 0xed, 0x12, 0x89, 0x85, 0xcd, 0x49, 0xad, 0x60, 0x20, 0x71, - 0x14, 0xbb, 0x50, 0x06, 0x16, 0xbe, 0x80, 0x1f, 0xe1, 0x3f, 0x3a, 0x76, 0x64, 0x02, 0xd4, 0xfe, - 0x08, 0x4a, 0x62, 0xd3, 0x52, 0xa9, 0xc0, 0xc2, 0x74, 0xe2, 0x9c, 0x73, 0x7c, 0xae, 0xef, 0xbd, - 0xd0, 0x09, 0xb9, 0x12, 0x09, 0xa7, 0x24, 0x65, 0x77, 0x34, 0xed, 0x4b, 0xa2, 0x86, 0x38, 0x49, - 0x85, 0x12, 0x76, 0x55, 0x33, 0xd8, 0xa0, 0x56, 0xb8, 0x5b, 0xa1, 0x08, 0x45, 0xae, 0x21, 0xd9, - 0x57, 0x21, 0x77, 0x77, 0x17, 0x2f, 0xd2, 0xa8, 0x69, 0x14, 0x08, 0x19, 0x09, 0x49, 0x7c, 0x2a, - 0x19, 0xb9, 0x6d, 0xf9, 0x4c, 0xd1, 0x16, 0x09, 0x04, 0x8f, 0x0b, 0xbe, 0xf1, 0x0c, 0xe0, 0x46, - 0x4f, 0x86, 0xdd, 0x94, 0x51, 0xc5, 0xbc, 0xdc, 0x6a, 0x3b, 0x70, 0x25, 0xc8, 0xce, 0x22, 0x75, - 0x40, 0x1d, 0x34, 0x2b, 0x9e, 0x39, 0xda, 0x3b, 0xb0, 0x92, 0xb2, 0x80, 0x27, 0x9c, 0xc5, 0xca, - 0xf9, 0x97, 0x73, 0xb3, 0x1f, 0xb6, 0x0f, 0xcb, 0x34, 0x12, 0x83, 0x58, 0x39, 0xa5, 0x3a, 0x68, - 0xae, 0xb5, 0xb7, 0x71, 0x11, 0x8e, 0xb3, 0x70, 0xac, 0xc3, 0x71, 0x57, 0xf0, 0xb8, 0x43, 0x46, - 0xaf, 0x35, 0xeb, 0xf1, 0xad, 0x76, 0x10, 0x72, 0x75, 0x39, 0xf0, 0x71, 0x20, 0x22, 0xa2, 0x2b, - 0x2d, 0xe0, 0x58, 0xf6, 0xaf, 0x89, 0xba, 0x4f, 0x98, 0xcc, 0x0d, 0x9e, 0xbe, 0xb9, 0xf1, 0x00, - 0xab, 0x0b, 0xe5, 0x7a, 0x4c, 0x26, 0x22, 0x96, 0x6c, 0x2e, 0x1e, 0xfc, 0x59, 0xfc, 0x3e, 0x5c, - 0xcd, 0xe2, 0x6f, 0x28, 0x8f, 0x96, 0xb7, 0xa9, 0x61, 0xc3, 0x4d, 0xa3, 0x32, 0xd5, 0xb5, 0x47, - 0x00, 0x96, 0x7a, 0x32, 0xb4, 0xcf, 0xe1, 0xff, 0xc2, 0xbe, 0x87, 0x97, 0x0c, 0x1a, 0x1b, 0xaf, - 0x7b, 0xf8, 0xa3, 0xe4, 0xf3, 0xf1, 0x57, 0x70, 0xfd, 0xcb, 0x0c, 0x9b, 0xdf, 0x5a, 0xe7, 0x94, - 0xee, 0xc9, 0x6f, 0x95, 0x26, 0xab, 0x73, 0x36, 0x9a, 0x20, 0x30, 0x9e, 0x20, 0xf0, 0x3e, 0x41, - 0xe0, 0x69, 0x8a, 0xac, 0xf1, 0x14, 0x59, 0x2f, 0x53, 0x64, 0x5d, 0x1c, 0xcd, 0xf5, 0xd3, 0xec, - 0xa5, 0xc1, 0xe1, 0x6c, 0xd5, 0xb3, 0xbe, 0xfa, 0xe5, 0x7c, 0x01, 0x4f, 0x3f, 0x02, 0x00, 0x00, - 0xff, 0xff, 0x57, 0xa5, 0x66, 0x66, 0x0a, 0x03, 0x00, 0x00, +func init() { proto.RegisterFile("rewards/tx.proto", fileDescriptor_4c0d543e6be8610a) } + +var fileDescriptor_4c0d543e6be8610a = []byte{ + // 361 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0xb1, 0x4e, 0xf3, 0x30, + 0x10, 0x8e, 0xff, 0xea, 0x2f, 0xd4, 0x20, 0x51, 0x45, 0xa0, 0x86, 0x08, 0xb9, 0xa5, 0x42, 0xa2, + 0x20, 0x61, 0xd3, 0xf2, 0x06, 0x2d, 0x6b, 0x97, 0x48, 0x2c, 0x6c, 0x4e, 0x6a, 0x05, 0x03, 0x89, + 0xa3, 0xd8, 0x85, 0x32, 0xb0, 0xf0, 0x04, 0xbc, 0x08, 0xef, 0xd1, 0xb1, 0x23, 0x13, 0xa0, 0xf6, + 0x45, 0x50, 0x12, 0xbb, 0x14, 0xa4, 0x02, 0x0b, 0xd3, 0x17, 0xdf, 0x7d, 0xdf, 0x7d, 0x97, 0xbb, + 0x83, 0xd5, 0x94, 0xdd, 0xd2, 0x74, 0x20, 0x89, 0x1a, 0xe1, 0x24, 0x15, 0x4a, 0xd8, 0xb5, 0x90, + 0x2b, 0x91, 0x70, 0x8a, 0x0d, 0x6a, 0x86, 0xbb, 0x19, 0x8a, 0x50, 0xe4, 0x1c, 0x92, 0x7d, 0x15, + 0x74, 0x77, 0xcb, 0x14, 0xd0, 0xa8, 0xc3, 0x28, 0x10, 0x32, 0x12, 0x92, 0xf8, 0x54, 0x32, 0x72, + 0xd3, 0xf6, 0x99, 0xa2, 0x6d, 0x12, 0x08, 0x1e, 0x17, 0xf9, 0xe6, 0x13, 0x80, 0x1b, 0x7d, 0x19, + 0xf6, 0x52, 0x46, 0x15, 0xf3, 0x72, 0xa9, 0xed, 0xc0, 0x95, 0x20, 0x7b, 0x8b, 0xd4, 0x01, 0x0d, + 0xd0, 0xaa, 0x78, 0xe6, 0x69, 0xef, 0xc0, 0x4a, 0xca, 0x02, 0x9e, 0x70, 0x16, 0x2b, 0xe7, 0x5f, + 0x9e, 0xfb, 0x08, 0xd8, 0x3e, 0x2c, 0xd3, 0x48, 0x0c, 0x63, 0xe5, 0x94, 0x1a, 0xa0, 0xb5, 0xd6, + 0xd9, 0xc6, 0x85, 0x39, 0xce, 0xcc, 0xb1, 0x36, 0xc7, 0x3d, 0xc1, 0xe3, 0x2e, 0x19, 0xbf, 0xd4, + 0xad, 0x87, 0xd7, 0xfa, 0x7e, 0xc8, 0xd5, 0xc5, 0xd0, 0xc7, 0x81, 0x88, 0x88, 0xee, 0xb4, 0x80, + 0x23, 0x39, 0xb8, 0x22, 0xea, 0x2e, 0x61, 0x32, 0x17, 0x78, 0xba, 0x72, 0xf3, 0x1e, 0xd6, 0xbe, + 0xb4, 0xeb, 0x31, 0x99, 0x88, 0x58, 0xb2, 0x05, 0x7b, 0xf0, 0x67, 0xf6, 0x7b, 0x70, 0x35, 0xb3, + 0xbf, 0xa6, 0x3c, 0x5a, 0x3e, 0xa6, 0xa6, 0x0d, 0xab, 0x86, 0x65, 0xba, 0xeb, 0x8c, 0x01, 0x2c, + 0xf5, 0x65, 0x68, 0x9f, 0xc1, 0xff, 0x85, 0x7c, 0x17, 0x2f, 0x59, 0x30, 0x36, 0x5a, 0xf7, 0xe0, + 0x47, 0xca, 0xfc, 0xe7, 0x2f, 0xe1, 0xfa, 0xa7, 0x1d, 0xb6, 0xbe, 0x95, 0x2e, 0x30, 0xdd, 0xe3, + 0xdf, 0x32, 0x8d, 0x57, 0xf7, 0x74, 0x3c, 0x45, 0x60, 0x32, 0x45, 0xe0, 0x6d, 0x8a, 0xc0, 0xe3, + 0x0c, 0x59, 0x93, 0x19, 0xb2, 0x9e, 0x67, 0xc8, 0x3a, 0x3f, 0x5c, 0x98, 0xa7, 0xae, 0x36, 0xc7, + 0x11, 0x99, 0x9f, 0x78, 0x36, 0x57, 0xbf, 0x9c, 0x1f, 0xe0, 0xc9, 0x7b, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x49, 0x29, 0x2b, 0xe3, 0xfa, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From 625b792896f836f91f4029c3326ad7907187ac35 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Wed, 28 Jun 2023 00:04:11 +0700 Subject: [PATCH 19/26] lint --- Makefile | 3 ++- x/rewards/types/genesis.pb.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6ec31fbd..f6f6461b 100644 --- a/Makefile +++ b/Makefile @@ -150,4 +150,5 @@ test: mocks: go install github.com/vektra/mockery/v2@latest mockery --name MsgClient --inpackage --case snake --dir ./x/gitopia/types - mockery --name QueryClient --inpackage --case snake --dir ./x/gitopia/types \ No newline at end of file + mockery --name QueryClient --inpackage --case snake --dir ./x/gitopia/types + \ No newline at end of file diff --git a/x/rewards/types/genesis.pb.go b/x/rewards/types/genesis.pb.go index de2cb391..74d4ed74 100644 --- a/x/rewards/types/genesis.pb.go +++ b/x/rewards/types/genesis.pb.go @@ -385,4 +385,4 @@ var ( ErrInvalidLengthGenesis = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGenesis = fmt.Errorf("proto: integer overflow") ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group") -) \ No newline at end of file +) From 0d2862ae9883a6590d1257a058d4f0a11f72ab2f Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Wed, 28 Jun 2023 00:06:12 +0700 Subject: [PATCH 20/26] go mod tidy --- go.mod | 3 --- go.sum | 9 --------- 2 files changed, 12 deletions(-) diff --git a/go.mod b/go.mod index 66198ee5..37f2c1d1 100644 --- a/go.mod +++ b/go.mod @@ -146,8 +146,6 @@ require ( ) require ( - github.com/cosmos/gogoproto v1.4.10 - github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 github.com/ipfs/go-cid v0.3.2 golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0 google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc @@ -163,7 +161,6 @@ require ( github.com/cometbft/cometbft-db v0.7.0 // indirect github.com/creachadair/taskgroup v0.3.2 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect - github.com/ghodss/yaml v1.0.0 // indirect github.com/klauspost/cpuid/v2 v2.0.4 // indirect github.com/manifoldco/promptui v0.9.0 // indirect github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect diff --git a/go.sum b/go.sum index 05039d4b..409b7198 100644 --- a/go.sum +++ b/go.sum @@ -223,15 +223,12 @@ github.com/cosmos/cosmos-sdk v0.46.13/go.mod h1:EfY521ATNEla8eJ6oJuZBdgP5+p360s7 github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= -github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoKuI= -github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek= github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y= github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw= github.com/cosmos/iavl v0.19.6 h1:XY78yEeNPrEYyNCKlqr9chrwoeSDJ0bV2VjocTk//OU= github.com/cosmos/iavl v0.19.6/go.mod h1:X9PKD3J0iFxdmgNLa7b2LYWdsGd90ToV5cAONApkEPw= github.com/cosmos/ledger-cosmos-go v0.12.2 h1:/XYaBlE2BJxtvpkHiBm97gFGSGmYGKunKyF3nNqAXZA= github.com/cosmos/ledger-cosmos-go v0.12.2/go.mod h1:ZcqYgnfNJ6lAXe4HPtWgarNEY+B74i+2/8MhZw4ziiI= -github.com/cosmos/ledger-go v0.9.2/go.mod h1:oZJ2hHAZROdlHiwTg4t7kP+GKIIkBT+o6c9QWFanOyI= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= @@ -317,7 +314,6 @@ github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbS github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= -github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= @@ -390,7 +386,6 @@ github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -491,8 +486,6 @@ github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 h1:YBftPWNWd4WwGqtY2yeZL2ef8rHAxPBD8KFhJpmcqms= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0/go.mod h1:YN5jB8ie0yfIUg6VvR9Kz84aCaG7AsGZnLjhHbUqwPg= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/gtank/merlin v0.1.1-0.20191105220539-8318aed1a79f/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= @@ -590,7 +583,6 @@ github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/u github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= @@ -707,7 +699,6 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= github.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8= github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= From 60199c5acb843676febdcb8e2ecf86fcafe92d3d Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Wed, 28 Jun 2023 00:08:03 +0700 Subject: [PATCH 21/26] lint --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index f6f6461b..06f7d062 100644 --- a/Makefile +++ b/Makefile @@ -151,4 +151,3 @@ mocks: go install github.com/vektra/mockery/v2@latest mockery --name MsgClient --inpackage --case snake --dir ./x/gitopia/types mockery --name QueryClient --inpackage --case snake --dir ./x/gitopia/types - \ No newline at end of file From c7b769d733b56b003af9fe63799a2e5184c91a8f Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Thu, 29 Jun 2023 22:34:08 +0700 Subject: [PATCH 22/26] ToggleRepositoryArchived --- .gitignore | 2 +- docs/static/openapi.yml | 2 +- proto/gitopia/tx.proto | 6 +- x/gitopia/client/cli/tx.go | 2 +- x/gitopia/client/cli/txRepository.go | 4 +- x/gitopia/handler.go | 4 +- x/gitopia/keeper/msg_server_repository.go | 6 +- .../keeper/msg_server_repository_test.go | 14 +- x/gitopia/types/codec.go | 4 +- x/gitopia/types/messages_repository.go | 16 +-- x/gitopia/types/messages_repository_test.go | 10 +- x/gitopia/types/mock_msg_client.go | 12 +- x/gitopia/types/permission.go | 2 +- x/gitopia/types/tx.pb.go | 122 +++++++++--------- 14 files changed, 103 insertions(+), 103 deletions(-) diff --git a/.gitignore b/.gitignore index a1b05b4a..f5d29627 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,4 @@ build cmd/gitopiad/__debug_bin .DS_Store .lfsconfig -x/client/cli/test +x/rewards/client/cli/test diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 3d1d2910..d634d4b2 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -76839,7 +76839,7 @@ definitions: type: object gitopia.gitopia.gitopia.MsgUpdateRepositoryDescriptionResponse: type: object - gitopia.gitopia.gitopia.MsgUpdateRepositoryArchivedResponse: + gitopia.gitopia.gitopia.MsgToggleRepositoryArchivedResponse: type: object gitopia.gitopia.gitopia.MsgUpdateRepositoryLabelResponse: type: object diff --git a/proto/gitopia/tx.proto b/proto/gitopia/tx.proto index b2b794f1..fde5c380 100644 --- a/proto/gitopia/tx.proto +++ b/proto/gitopia/tx.proto @@ -90,7 +90,7 @@ service Msg { rpc ForkRepositorySuccess(MsgForkRepositorySuccess) returns (MsgForkRepositorySuccessResponse); rpc RenameRepository(MsgRenameRepository) returns (MsgRenameRepositoryResponse); rpc UpdateRepositoryDescription(MsgUpdateRepositoryDescription) returns (MsgUpdateRepositoryDescriptionResponse); - rpc UpdateRepositoryArchived(MsgUpdateRepositoryArchived) returns (MsgUpdateRepositoryArchivedResponse); + rpc ToggleRepositoryArchived(MsgToggleRepositoryArchived) returns (MsgToggleRepositoryArchivedResponse); rpc ChangeOwner(MsgChangeOwner) returns (MsgChangeOwnerResponse); rpc UpdateRepositoryCollaborator(MsgUpdateRepositoryCollaborator) returns (MsgUpdateRepositoryCollaboratorResponse); rpc RemoveRepositoryCollaborator(MsgRemoveRepositoryCollaborator) returns (MsgRemoveRepositoryCollaboratorResponse); @@ -792,13 +792,13 @@ message MsgUpdateRepositoryDescription { message MsgUpdateRepositoryDescriptionResponse { } -message MsgUpdateRepositoryArchived { +message MsgToggleRepositoryArchived { string creator = 1; RepositoryId repositoryId = 2 [(gogoproto.nullable) = false]; bool archived = 3; } -message MsgUpdateRepositoryArchivedResponse { } +message MsgToggleRepositoryArchivedResponse { } message MsgChangeOwner { string creator = 1; diff --git a/x/gitopia/client/cli/tx.go b/x/gitopia/client/cli/tx.go index ce08c13d..39e1250d 100644 --- a/x/gitopia/client/cli/tx.go +++ b/x/gitopia/client/cli/tx.go @@ -107,7 +107,7 @@ func GetTxCmd() *cobra.Command { cmd.AddCommand(CmdForkRepository()) cmd.AddCommand(CmdRenameRepository()) cmd.AddCommand(CmdUpdateRepositoryDescription()) - cmd.AddCommand(CmdUpdateRepositoryArchived()) + cmd.AddCommand(CmdToggleRepositoryArchived()) cmd.AddCommand(CmdChangeOwner()) cmd.AddCommand(CmdUpdateRepositoryCollaborator()) cmd.AddCommand(CmdRemoveRepositoryCollaborator()) diff --git a/x/gitopia/client/cli/txRepository.go b/x/gitopia/client/cli/txRepository.go index d96baaee..67ed2718 100644 --- a/x/gitopia/client/cli/txRepository.go +++ b/x/gitopia/client/cli/txRepository.go @@ -195,7 +195,7 @@ func CmdUpdateRepositoryDescription() *cobra.Command { return cmd } -func CmdUpdateRepositoryArchived() *cobra.Command { +func CmdToggleRepositoryArchived() *cobra.Command { cmd := &cobra.Command{ Use: "update-archive-state [owner-id] [repository-name] [archived]", Short: "Update archive state", @@ -210,7 +210,7 @@ func CmdUpdateRepositoryArchived() *cobra.Command { return err } archived, _ := strconv.ParseBool(argArchived) - msg := types.NewMsgUpdateRepositoryArchived( + msg := types.NewMsgToggleRepositoryArchived( clientCtx.GetFromAddress().String(), types.RepositoryId{Id: argOwnerid, Name: argRepositoryName}, archived, diff --git a/x/gitopia/handler.go b/x/gitopia/handler.go index 4304ba4e..92e3b6fb 100644 --- a/x/gitopia/handler.go +++ b/x/gitopia/handler.go @@ -288,8 +288,8 @@ func NewHandler(k keeper.Keeper) sdk.Handler { res, err := msgServer.RenameRepository(sdk.WrapSDKContext(ctx), msg) return sdk.WrapServiceResult(ctx, res, err) - case *types.MsgUpdateRepositoryArchived: - res, err := msgServer.UpdateRepositoryArchived(sdk.WrapSDKContext(ctx), msg) + case *types.MsgToggleRepositoryArchived: + res, err := msgServer.ToggleRepositoryArchived(sdk.WrapSDKContext(ctx), msg) return sdk.WrapServiceResult(ctx, res, err) case *types.MsgUpdateRepositoryDescription: diff --git a/x/gitopia/keeper/msg_server_repository.go b/x/gitopia/keeper/msg_server_repository.go index 5ebca2ab..ff159c7a 100644 --- a/x/gitopia/keeper/msg_server_repository.go +++ b/x/gitopia/keeper/msg_server_repository.go @@ -504,7 +504,7 @@ func (k msgServer) UpdateRepositoryDescription(goCtx context.Context, msg *types return &types.MsgUpdateRepositoryDescriptionResponse{}, nil } -func (k msgServer) UpdateRepositoryArchived(goCtx context.Context, msg *types.MsgUpdateRepositoryArchived) (*types.MsgUpdateRepositoryArchivedResponse, error) { +func (k msgServer) ToggleRepositoryArchived(goCtx context.Context, msg *types.MsgToggleRepositoryArchived) (*types.MsgToggleRepositoryArchivedResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) _, found := k.GetUser(ctx, msg.Creator) @@ -526,7 +526,7 @@ func (k msgServer) UpdateRepositoryArchived(goCtx context.Context, msg *types.Ms return nil, sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, fmt.Sprintf("archived state not modified")) } - if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryUpdateRepositoryArchivedPermission) { + if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryToggleRepositoryArchivedPermission) { return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, fmt.Sprintf("user (%v) doesn't have permission to perform this operation", msg.Creator)) } @@ -546,7 +546,7 @@ func (k msgServer) UpdateRepositoryArchived(goCtx context.Context, msg *types.Ms ), ) - return &types.MsgUpdateRepositoryArchivedResponse{}, nil + return &types.MsgToggleRepositoryArchivedResponse{}, nil } func (k msgServer) UpdateRepositoryCollaborator(goCtx context.Context, msg *types.MsgUpdateRepositoryCollaborator) (*types.MsgUpdateRepositoryCollaboratorResponse, error) { diff --git a/x/gitopia/keeper/msg_server_repository_test.go b/x/gitopia/keeper/msg_server_repository_test.go index 629e71dd..60581402 100644 --- a/x/gitopia/keeper/msg_server_repository_test.go +++ b/x/gitopia/keeper/msg_server_repository_test.go @@ -591,36 +591,36 @@ func TestRepositoryMsgServerUpdateArchived(t *testing.T) { for _, tc := range []struct { desc string - request *types.MsgUpdateRepositoryArchived + request *types.MsgToggleRepositoryArchived err error }{ { desc: "Creator Not Exists", - request: &types.MsgUpdateRepositoryArchived{Creator: "X", RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: "X", RepositoryId: repositoryId, Archived: true}, err: sdkerrors.ErrKeyNotFound, }, { desc: "Repository Not Exists", - request: &types.MsgUpdateRepositoryArchived{Creator: users[0], RepositoryId: types.RepositoryId{Id: users[0], Name: "name"}, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[0], RepositoryId: types.RepositoryId{Id: users[0], Name: "name"}, Archived: true}, err: sdkerrors.ErrKeyNotFound, }, { desc: "Unauthorized", - request: &types.MsgUpdateRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, err: sdkerrors.ErrUnauthorized, }, { desc: "Unauthorized Self", - request: &types.MsgUpdateRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, err: sdkerrors.ErrUnauthorized, }, { desc: "Completed", - request: &types.MsgUpdateRepositoryArchived{Creator: users[0], RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[0], RepositoryId: repositoryId, Archived: true}, }, } { t.Run(tc.desc, func(t *testing.T) { - _, err = srv.UpdateRepositoryArchived(ctx, tc.request) + _, err = srv.ToggleRepositoryArchived(ctx, tc.request) if tc.err != nil { require.ErrorIs(t, err, tc.err) } else { diff --git a/x/gitopia/types/codec.go b/x/gitopia/types/codec.go index 59b759d5..ff23f096 100644 --- a/x/gitopia/types/codec.go +++ b/x/gitopia/types/codec.go @@ -88,7 +88,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) { cdc.RegisterConcrete(&MsgForkRepositorySuccess{}, "gitopia/ForkRepositorySuccess", nil) cdc.RegisterConcrete(&MsgRenameRepository{}, "gitopia/RenameRepository", nil) cdc.RegisterConcrete(&MsgUpdateRepositoryDescription{}, "gitopia/UpdateRepositoryDescription", nil) - cdc.RegisterConcrete(&MsgUpdateRepositoryArchived{}, "gitopia/UpdateRepositoryArchived", nil) + cdc.RegisterConcrete(&MsgToggleRepositoryArchived{}, "gitopia/ToggleRepositoryArchived", nil) cdc.RegisterConcrete(&MsgChangeOwner{}, "gitopia/ChangeOwner", nil) cdc.RegisterConcrete(&MsgUpdateRepositoryCollaborator{}, "gitopia/UpdateRepositoryCollaborator", nil) cdc.RegisterConcrete(&MsgRemoveRepositoryCollaborator{}, "gitopia/RemoveRepositoryCollaborator", nil) @@ -210,7 +210,7 @@ func RegisterInterfaces(registry cdctypes.InterfaceRegistry) { &MsgUpdateRepositoryDescription{}, &MsgChangeOwner{}, &MsgUpdateRepositoryCollaborator{}, - &MsgUpdateRepositoryArchived{}, + &MsgToggleRepositoryArchived{}, &MsgRemoveRepositoryCollaborator{}, &MsgCreateRepositoryLabel{}, &MsgUpdateRepositoryLabel{}, diff --git a/x/gitopia/types/messages_repository.go b/x/gitopia/types/messages_repository.go index 06f353a9..f6ca4363 100644 --- a/x/gitopia/types/messages_repository.go +++ b/x/gitopia/types/messages_repository.go @@ -749,25 +749,25 @@ func (msg *MsgUpdateRepositoryDescription) ValidateBasic() error { return nil } -var _ sdk.Msg = &MsgUpdateRepositoryArchived{} +var _ sdk.Msg = &MsgToggleRepositoryArchived{} -func NewMsgUpdateRepositoryArchived(creator string, repositoryId RepositoryId, archived bool) *MsgUpdateRepositoryArchived { - return &MsgUpdateRepositoryArchived{ +func NewMsgToggleRepositoryArchived(creator string, repositoryId RepositoryId, archived bool) *MsgToggleRepositoryArchived { + return &MsgToggleRepositoryArchived{ Creator: creator, RepositoryId: repositoryId, Archived: archived, } } -func (msg *MsgUpdateRepositoryArchived) Route() string { +func (msg *MsgToggleRepositoryArchived) Route() string { return RouterKey } -func (msg *MsgUpdateRepositoryArchived) Type() string { +func (msg *MsgToggleRepositoryArchived) Type() string { return "UpdateArchivedState" } -func (msg *MsgUpdateRepositoryArchived) GetSigners() []sdk.AccAddress { +func (msg *MsgToggleRepositoryArchived) GetSigners() []sdk.AccAddress { creator, err := sdk.AccAddressFromBech32(msg.Creator) if err != nil { panic(err) @@ -775,12 +775,12 @@ func (msg *MsgUpdateRepositoryArchived) GetSigners() []sdk.AccAddress { return []sdk.AccAddress{creator} } -func (msg *MsgUpdateRepositoryArchived) GetSignBytes() []byte { +func (msg *MsgToggleRepositoryArchived) GetSignBytes() []byte { bz := ModuleCdc.MustMarshalJSON(msg) return sdk.MustSortJSON(bz) } -func (msg *MsgUpdateRepositoryArchived) ValidateBasic() error { +func (msg *MsgToggleRepositoryArchived) ValidateBasic() error { _, err := sdk.AccAddressFromBech32(msg.Creator) if err != nil { return sdkerrors.Wrapf(sdkerrors.ErrInvalidAddress, "invalid creator address (%s)", err) diff --git a/x/gitopia/types/messages_repository_test.go b/x/gitopia/types/messages_repository_test.go index a26202b2..8f672f0b 100644 --- a/x/gitopia/types/messages_repository_test.go +++ b/x/gitopia/types/messages_repository_test.go @@ -240,7 +240,7 @@ func TestMsgUpdateRepositoryCollaborator_ValidateBasic(t *testing.T) { } } -func TestMsgUpdateRepositoryArchived_ValidateBasic(t *testing.T) { +func TestMsgToggleRepositoryArchived_ValidateBasic(t *testing.T) { repositoryId := RepositoryId{ Id: sample.AccAddress(), Name: "repository", @@ -248,20 +248,20 @@ func TestMsgUpdateRepositoryArchived_ValidateBasic(t *testing.T) { tests := []struct { name string - msg MsgUpdateRepositoryArchived + msg MsgToggleRepositoryArchived err error }{ { name: "invalid creator address", - msg: MsgUpdateRepositoryArchived{ + msg: MsgToggleRepositoryArchived{ Creator: "invalid_address", RepositoryId: repositoryId, Archived: true, }, err: sdkerrors.ErrInvalidAddress, }, { - name: "valid MsgUpdateRepositoryArchived", - msg: MsgUpdateRepositoryArchived{ + name: "valid MsgToggleRepositoryArchived", + msg: MsgToggleRepositoryArchived{ Creator: sample.AccAddress(), RepositoryId: repositoryId, Archived: true, diff --git a/x/gitopia/types/mock_msg_client.go b/x/gitopia/types/mock_msg_client.go index 63a5f4ea..aed3071d 100644 --- a/x/gitopia/types/mock_msg_client.go +++ b/x/gitopia/types/mock_msg_client.go @@ -2265,8 +2265,8 @@ func (_m *MockMsgClient) UpdateRepositoryDescription(ctx context.Context, in *Ms return r0, r1 } -// UpdateRepositoryArchived provides a mock function with given fields: ctx, in, opts -func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgUpdateRepositoryArchived, opts ...grpc.CallOption) (*MsgUpdateRepositoryArchivedResponse, error) { +// ToggleRepositoryArchived provides a mock function with given fields: ctx, in, opts +func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgToggleRepositoryArchived, opts ...grpc.CallOption) (*MsgToggleRepositoryArchivedResponse, error) { _va := make([]interface{}, len(opts)) for _i := range opts { _va[_i] = opts[_i] @@ -2276,17 +2276,17 @@ func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgUpdateR _ca = append(_ca, _va...) ret := _m.Called(_ca...) - var r0 *MsgUpdateRepositoryArchivedResponse - if rf, ok := ret.Get(0).(func(context.Context, *MsgUpdateRepositoryArchived, ...grpc.CallOption) *MsgUpdateRepositoryArchivedResponse); ok { + var r0 *MsgToggleRepositoryArchivedResponse + if rf, ok := ret.Get(0).(func(context.Context, *MsgToggleRepositoryArchived, ...grpc.CallOption) *MsgToggleRepositoryArchivedResponse); ok { r0 = rf(ctx, in, opts...) } else { if ret.Get(0) != nil { - r0 = ret.Get(0).(*MsgUpdateRepositoryArchivedResponse) + r0 = ret.Get(0).(*MsgToggleRepositoryArchivedResponse) } } var r1 error - if rf, ok := ret.Get(1).(func(context.Context, *MsgUpdateRepositoryArchived, ...grpc.CallOption) error); ok { + if rf, ok := ret.Get(1).(func(context.Context, *MsgToggleRepositoryArchived, ...grpc.CallOption) error); ok { r1 = rf(ctx, in, opts...) } else { r1 = ret.Error(1) diff --git a/x/gitopia/types/permission.go b/x/gitopia/types/permission.go index 23dcdd77..0f18a221 100644 --- a/x/gitopia/types/permission.go +++ b/x/gitopia/types/permission.go @@ -19,7 +19,7 @@ const ( RepositoryRenamePermission = RepositoryCollaborator_ADMIN RepositoryTransferOwnershipPermission = RepositoryCollaborator_ADMIN RepositoryUpdateDescriptionPermission = RepositoryCollaborator_MAINTAIN - RepositoryUpdateRepositoryArchivedPermission = RepositoryCollaborator_MAINTAIN + RepositoryToggleRepositoryArchivedPermission = RepositoryCollaborator_MAINTAIN ToggleRepositoryForkingPermission = RepositoryCollaborator_ADMIN ToggleIssueStatePermission = RepositoryCollaborator_TRIAGE RepositoryBackupPermission = RepositoryCollaborator_ADMIN diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index 97332bef..8d098b30 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -7602,24 +7602,24 @@ func (m *MsgUpdateRepositoryDescriptionResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateRepositoryDescriptionResponse proto.InternalMessageInfo -type MsgUpdateRepositoryArchived struct { +type MsgToggleRepositoryArchived struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` RepositoryId RepositoryId `protobuf:"bytes,2,opt,name=repositoryId,proto3" json:"repositoryId"` Archived bool `protobuf:"varint,3,opt,name=archived,proto3" json:"archived,omitempty"` } -func (m *MsgUpdateRepositoryArchived) Reset() { *m = MsgUpdateRepositoryArchived{} } -func (m *MsgUpdateRepositoryArchived) String() string { return proto.CompactTextString(m) } -func (*MsgUpdateRepositoryArchived) ProtoMessage() {} -func (*MsgUpdateRepositoryArchived) Descriptor() ([]byte, []int) { +func (m *MsgToggleRepositoryArchived) Reset() { *m = MsgToggleRepositoryArchived{} } +func (m *MsgToggleRepositoryArchived) String() string { return proto.CompactTextString(m) } +func (*MsgToggleRepositoryArchived) ProtoMessage() {} +func (*MsgToggleRepositoryArchived) Descriptor() ([]byte, []int) { return fileDescriptor_a62a3f7fe5854081, []int{137} } -func (m *MsgUpdateRepositoryArchived) XXX_Unmarshal(b []byte) error { +func (m *MsgToggleRepositoryArchived) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *MsgUpdateRepositoryArchived) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *MsgToggleRepositoryArchived) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_MsgUpdateRepositoryArchived.Marshal(b, m, deterministic) + return xxx_messageInfo_MsgToggleRepositoryArchived.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -7629,54 +7629,54 @@ func (m *MsgUpdateRepositoryArchived) XXX_Marshal(b []byte, deterministic bool) return b[:n], nil } } -func (m *MsgUpdateRepositoryArchived) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgUpdateRepositoryArchived.Merge(m, src) +func (m *MsgToggleRepositoryArchived) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgToggleRepositoryArchived.Merge(m, src) } -func (m *MsgUpdateRepositoryArchived) XXX_Size() int { +func (m *MsgToggleRepositoryArchived) XXX_Size() int { return m.Size() } -func (m *MsgUpdateRepositoryArchived) XXX_DiscardUnknown() { - xxx_messageInfo_MsgUpdateRepositoryArchived.DiscardUnknown(m) +func (m *MsgToggleRepositoryArchived) XXX_DiscardUnknown() { + xxx_messageInfo_MsgToggleRepositoryArchived.DiscardUnknown(m) } -var xxx_messageInfo_MsgUpdateRepositoryArchived proto.InternalMessageInfo +var xxx_messageInfo_MsgToggleRepositoryArchived proto.InternalMessageInfo -func (m *MsgUpdateRepositoryArchived) GetCreator() string { +func (m *MsgToggleRepositoryArchived) GetCreator() string { if m != nil { return m.Creator } return "" } -func (m *MsgUpdateRepositoryArchived) GetRepositoryId() RepositoryId { +func (m *MsgToggleRepositoryArchived) GetRepositoryId() RepositoryId { if m != nil { return m.RepositoryId } return RepositoryId{} } -func (m *MsgUpdateRepositoryArchived) GetArchived() bool { +func (m *MsgToggleRepositoryArchived) GetArchived() bool { if m != nil { return m.Archived } return false } -type MsgUpdateRepositoryArchivedResponse struct { +type MsgToggleRepositoryArchivedResponse struct { } -func (m *MsgUpdateRepositoryArchivedResponse) Reset() { *m = MsgUpdateRepositoryArchivedResponse{} } -func (m *MsgUpdateRepositoryArchivedResponse) String() string { return proto.CompactTextString(m) } -func (*MsgUpdateRepositoryArchivedResponse) ProtoMessage() {} -func (*MsgUpdateRepositoryArchivedResponse) Descriptor() ([]byte, []int) { +func (m *MsgToggleRepositoryArchivedResponse) Reset() { *m = MsgToggleRepositoryArchivedResponse{} } +func (m *MsgToggleRepositoryArchivedResponse) String() string { return proto.CompactTextString(m) } +func (*MsgToggleRepositoryArchivedResponse) ProtoMessage() {} +func (*MsgToggleRepositoryArchivedResponse) Descriptor() ([]byte, []int) { return fileDescriptor_a62a3f7fe5854081, []int{138} } -func (m *MsgUpdateRepositoryArchivedResponse) XXX_Unmarshal(b []byte) error { +func (m *MsgToggleRepositoryArchivedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *MsgUpdateRepositoryArchivedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *MsgToggleRepositoryArchivedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_MsgUpdateRepositoryArchivedResponse.Marshal(b, m, deterministic) + return xxx_messageInfo_MsgToggleRepositoryArchivedResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -7686,17 +7686,17 @@ func (m *MsgUpdateRepositoryArchivedResponse) XXX_Marshal(b []byte, deterministi return b[:n], nil } } -func (m *MsgUpdateRepositoryArchivedResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgUpdateRepositoryArchivedResponse.Merge(m, src) +func (m *MsgToggleRepositoryArchivedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgToggleRepositoryArchivedResponse.Merge(m, src) } -func (m *MsgUpdateRepositoryArchivedResponse) XXX_Size() int { +func (m *MsgToggleRepositoryArchivedResponse) XXX_Size() int { return m.Size() } -func (m *MsgUpdateRepositoryArchivedResponse) XXX_DiscardUnknown() { - xxx_messageInfo_MsgUpdateRepositoryArchivedResponse.DiscardUnknown(m) +func (m *MsgToggleRepositoryArchivedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgToggleRepositoryArchivedResponse.DiscardUnknown(m) } -var xxx_messageInfo_MsgUpdateRepositoryArchivedResponse proto.InternalMessageInfo +var xxx_messageInfo_MsgToggleRepositoryArchivedResponse proto.InternalMessageInfo type MsgChangeOwner struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` @@ -9317,8 +9317,8 @@ func init() { proto.RegisterType((*MsgRenameRepositoryResponse)(nil), "gitopia.gitopia.gitopia.MsgRenameRepositoryResponse") proto.RegisterType((*MsgUpdateRepositoryDescription)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryDescription") proto.RegisterType((*MsgUpdateRepositoryDescriptionResponse)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryDescriptionResponse") - proto.RegisterType((*MsgUpdateRepositoryArchived)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryArchived") - proto.RegisterType((*MsgUpdateRepositoryArchivedResponse)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryArchivedResponse") + proto.RegisterType((*MsgToggleRepositoryArchived)(nil), "gitopia.gitopia.gitopia.MsgToggleRepositoryArchived") + proto.RegisterType((*MsgToggleRepositoryArchivedResponse)(nil), "gitopia.gitopia.gitopia.MsgToggleRepositoryArchivedResponse") proto.RegisterType((*MsgChangeOwner)(nil), "gitopia.gitopia.gitopia.MsgChangeOwner") proto.RegisterType((*MsgChangeOwnerResponse)(nil), "gitopia.gitopia.gitopia.MsgChangeOwnerResponse") proto.RegisterType((*MsgUpdateRepositoryCollaborator)(nil), "gitopia.gitopia.gitopia.MsgUpdateRepositoryCollaborator") @@ -9721,7 +9721,7 @@ type MsgClient interface { ForkRepositorySuccess(ctx context.Context, in *MsgForkRepositorySuccess, opts ...grpc.CallOption) (*MsgForkRepositorySuccessResponse, error) RenameRepository(ctx context.Context, in *MsgRenameRepository, opts ...grpc.CallOption) (*MsgRenameRepositoryResponse, error) UpdateRepositoryDescription(ctx context.Context, in *MsgUpdateRepositoryDescription, opts ...grpc.CallOption) (*MsgUpdateRepositoryDescriptionResponse, error) - UpdateRepositoryArchived(ctx context.Context, in *MsgUpdateRepositoryArchived, opts ...grpc.CallOption) (*MsgUpdateRepositoryArchivedResponse, error) + ToggleRepositoryArchived(ctx context.Context, in *MsgToggleRepositoryArchived, opts ...grpc.CallOption) (*MsgToggleRepositoryArchivedResponse, error) ChangeOwner(ctx context.Context, in *MsgChangeOwner, opts ...grpc.CallOption) (*MsgChangeOwnerResponse, error) UpdateRepositoryCollaborator(ctx context.Context, in *MsgUpdateRepositoryCollaborator, opts ...grpc.CallOption) (*MsgUpdateRepositoryCollaboratorResponse, error) RemoveRepositoryCollaborator(ctx context.Context, in *MsgRemoveRepositoryCollaborator, opts ...grpc.CallOption) (*MsgRemoveRepositoryCollaboratorResponse, error) @@ -10336,9 +10336,9 @@ func (c *msgClient) UpdateRepositoryDescription(ctx context.Context, in *MsgUpda return out, nil } -func (c *msgClient) UpdateRepositoryArchived(ctx context.Context, in *MsgUpdateRepositoryArchived, opts ...grpc.CallOption) (*MsgUpdateRepositoryArchivedResponse, error) { - out := new(MsgUpdateRepositoryArchivedResponse) - err := c.cc.Invoke(ctx, "/gitopia.gitopia.gitopia.Msg/UpdateRepositoryArchived", in, out, opts...) +func (c *msgClient) ToggleRepositoryArchived(ctx context.Context, in *MsgToggleRepositoryArchived, opts ...grpc.CallOption) (*MsgToggleRepositoryArchivedResponse, error) { + out := new(MsgToggleRepositoryArchivedResponse) + err := c.cc.Invoke(ctx, "/gitopia.gitopia.gitopia.Msg/ToggleRepositoryArchived", in, out, opts...) if err != nil { return nil, err } @@ -10576,7 +10576,7 @@ type MsgServer interface { ForkRepositorySuccess(context.Context, *MsgForkRepositorySuccess) (*MsgForkRepositorySuccessResponse, error) RenameRepository(context.Context, *MsgRenameRepository) (*MsgRenameRepositoryResponse, error) UpdateRepositoryDescription(context.Context, *MsgUpdateRepositoryDescription) (*MsgUpdateRepositoryDescriptionResponse, error) - UpdateRepositoryArchived(context.Context, *MsgUpdateRepositoryArchived) (*MsgUpdateRepositoryArchivedResponse, error) + ToggleRepositoryArchived(context.Context, *MsgToggleRepositoryArchived) (*MsgToggleRepositoryArchivedResponse, error) ChangeOwner(context.Context, *MsgChangeOwner) (*MsgChangeOwnerResponse, error) UpdateRepositoryCollaborator(context.Context, *MsgUpdateRepositoryCollaborator) (*MsgUpdateRepositoryCollaboratorResponse, error) RemoveRepositoryCollaborator(context.Context, *MsgRemoveRepositoryCollaborator) (*MsgRemoveRepositoryCollaboratorResponse, error) @@ -10797,8 +10797,8 @@ func (*UnimplementedMsgServer) RenameRepository(ctx context.Context, req *MsgRen func (*UnimplementedMsgServer) UpdateRepositoryDescription(ctx context.Context, req *MsgUpdateRepositoryDescription) (*MsgUpdateRepositoryDescriptionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateRepositoryDescription not implemented") } -func (*UnimplementedMsgServer) UpdateRepositoryArchived(ctx context.Context, req *MsgUpdateRepositoryArchived) (*MsgUpdateRepositoryArchivedResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method UpdateRepositoryArchived not implemented") +func (*UnimplementedMsgServer) ToggleRepositoryArchived(ctx context.Context, req *MsgToggleRepositoryArchived) (*MsgToggleRepositoryArchivedResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ToggleRepositoryArchived not implemented") } func (*UnimplementedMsgServer) ChangeOwner(ctx context.Context, req *MsgChangeOwner) (*MsgChangeOwnerResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ChangeOwner not implemented") @@ -12029,20 +12029,20 @@ func _Msg_UpdateRepositoryDescription_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } -func _Msg_UpdateRepositoryArchived_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(MsgUpdateRepositoryArchived) +func _Msg_ToggleRepositoryArchived_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgToggleRepositoryArchived) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(MsgServer).UpdateRepositoryArchived(ctx, in) + return srv.(MsgServer).ToggleRepositoryArchived(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/gitopia.gitopia.gitopia.Msg/UpdateRepositoryArchived", + FullMethod: "/gitopia.gitopia.gitopia.Msg/ToggleRepositoryArchived", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(MsgServer).UpdateRepositoryArchived(ctx, req.(*MsgUpdateRepositoryArchived)) + return srv.(MsgServer).ToggleRepositoryArchived(ctx, req.(*MsgToggleRepositoryArchived)) } return interceptor(ctx, in, info, handler) } @@ -12636,8 +12636,8 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ Handler: _Msg_UpdateRepositoryDescription_Handler, }, { - MethodName: "UpdateRepositoryArchived", - Handler: _Msg_UpdateRepositoryArchived_Handler, + MethodName: "ToggleRepositoryArchived", + Handler: _Msg_ToggleRepositoryArchived_Handler, }, { MethodName: "ChangeOwner", @@ -18162,7 +18162,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) MarshalToSizedBuffer(dAtA []byt return len(dAtA) - i, nil } -func (m *MsgUpdateRepositoryArchived) Marshal() (dAtA []byte, err error) { +func (m *MsgToggleRepositoryArchived) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -18172,12 +18172,12 @@ func (m *MsgUpdateRepositoryArchived) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *MsgUpdateRepositoryArchived) MarshalTo(dAtA []byte) (int, error) { +func (m *MsgToggleRepositoryArchived) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *MsgUpdateRepositoryArchived) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *MsgToggleRepositoryArchived) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -18212,7 +18212,7 @@ func (m *MsgUpdateRepositoryArchived) MarshalToSizedBuffer(dAtA []byte) (int, er return len(dAtA) - i, nil } -func (m *MsgUpdateRepositoryArchivedResponse) Marshal() (dAtA []byte, err error) { +func (m *MsgToggleRepositoryArchivedResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -18222,12 +18222,12 @@ func (m *MsgUpdateRepositoryArchivedResponse) Marshal() (dAtA []byte, err error) return dAtA[:n], nil } -func (m *MsgUpdateRepositoryArchivedResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *MsgToggleRepositoryArchivedResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *MsgUpdateRepositoryArchivedResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *MsgToggleRepositoryArchivedResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -21710,7 +21710,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Size() (n int) { return n } -func (m *MsgUpdateRepositoryArchived) Size() (n int) { +func (m *MsgToggleRepositoryArchived) Size() (n int) { if m == nil { return 0 } @@ -21728,7 +21728,7 @@ func (m *MsgUpdateRepositoryArchived) Size() (n int) { return n } -func (m *MsgUpdateRepositoryArchivedResponse) Size() (n int) { +func (m *MsgToggleRepositoryArchivedResponse) Size() (n int) { if m == nil { return 0 } @@ -38118,7 +38118,7 @@ func (m *MsgUpdateRepositoryDescriptionResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgUpdateRepositoryArchived) Unmarshal(dAtA []byte) error { +func (m *MsgToggleRepositoryArchived) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -38141,10 +38141,10 @@ func (m *MsgUpdateRepositoryArchived) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MsgUpdateRepositoryArchived: wiretype end group for non-group") + return fmt.Errorf("proto: MsgToggleRepositoryArchived: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MsgUpdateRepositoryArchived: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MsgToggleRepositoryArchived: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -38253,7 +38253,7 @@ func (m *MsgUpdateRepositoryArchived) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgUpdateRepositoryArchivedResponse) Unmarshal(dAtA []byte) error { +func (m *MsgToggleRepositoryArchivedResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -38276,10 +38276,10 @@ func (m *MsgUpdateRepositoryArchivedResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MsgUpdateRepositoryArchivedResponse: wiretype end group for non-group") + return fmt.Errorf("proto: MsgToggleRepositoryArchivedResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MsgUpdateRepositoryArchivedResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MsgToggleRepositoryArchivedResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: From 3510332d0fa7dee4fa8d451f1ad7482a030e11e0 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Thu, 29 Jun 2023 22:48:14 +0700 Subject: [PATCH 23/26] proto --- proto/gitopia/tx.proto | 1 - x/gitopia/keeper/msg_server_repository.go | 9 +- .../keeper/msg_server_repository_test.go | 10 +- x/gitopia/types/keys.go | 3 +- x/gitopia/types/messages_repository.go | 3 +- x/gitopia/types/messages_repository_test.go | 2 - x/gitopia/types/mock_msg_client.go | 2 +- x/gitopia/types/tx.pb.go | 604 ++++++++---------- 8 files changed, 293 insertions(+), 341 deletions(-) diff --git a/proto/gitopia/tx.proto b/proto/gitopia/tx.proto index fde5c380..606944cd 100644 --- a/proto/gitopia/tx.proto +++ b/proto/gitopia/tx.proto @@ -795,7 +795,6 @@ message MsgUpdateRepositoryDescriptionResponse { } message MsgToggleRepositoryArchived { string creator = 1; RepositoryId repositoryId = 2 [(gogoproto.nullable) = false]; - bool archived = 3; } message MsgToggleRepositoryArchivedResponse { } diff --git a/x/gitopia/keeper/msg_server_repository.go b/x/gitopia/keeper/msg_server_repository.go index ff159c7a..29e756f9 100644 --- a/x/gitopia/keeper/msg_server_repository.go +++ b/x/gitopia/keeper/msg_server_repository.go @@ -522,15 +522,11 @@ func (k msgServer) ToggleRepositoryArchived(goCtx context.Context, msg *types.Ms return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, fmt.Sprintf("repository (%v/%v) doesn't exist", msg.RepositoryId.Id, msg.RepositoryId.Name)) } - if msg.Archived == repository.Archived { - return nil, sdkerrors.Wrap(sdkerrors.ErrInvalidRequest, fmt.Sprintf("archived state not modified")) - } - if !k.HavePermission(ctx, msg.Creator, repository, types.RepositoryToggleRepositoryArchivedPermission) { return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, fmt.Sprintf("user (%v) doesn't have permission to perform this operation", msg.Creator)) } - repository.Archived = msg.Archived + repository.Archived = !repository.Archived repository.UpdatedAt = ctx.BlockTime().Unix() k.SetRepository(ctx, repository) @@ -538,10 +534,11 @@ func (k msgServer) ToggleRepositoryArchived(goCtx context.Context, msg *types.Ms ctx.EventManager().EmitEvent( sdk.NewEvent(sdk.EventTypeMessage, sdk.NewAttribute(sdk.AttributeKeyModule, types.ModuleName), - sdk.NewAttribute(sdk.AttributeKeyAction, types.UpdateArchivedStateEventKey), + sdk.NewAttribute(sdk.AttributeKeyAction, types.ToggleRepositoryArchivedEventKey), sdk.NewAttribute(types.EventAttributeCreatorKey, msg.Creator), sdk.NewAttribute(types.EventAttributeRepoIdKey, strconv.FormatUint(repository.Id, 10)), sdk.NewAttribute(types.EventAttributeRepoNameKey, repository.Name), + sdk.NewAttribute(types.EventAttributeToggleRepositoryArchived, strconv.FormatBool(repository.Archived)), sdk.NewAttribute(types.EventAttributeUpdatedAtKey, strconv.FormatInt(repository.UpdatedAt, 10)), ), ) diff --git a/x/gitopia/keeper/msg_server_repository_test.go b/x/gitopia/keeper/msg_server_repository_test.go index 60581402..0eed6326 100644 --- a/x/gitopia/keeper/msg_server_repository_test.go +++ b/x/gitopia/keeper/msg_server_repository_test.go @@ -596,27 +596,27 @@ func TestRepositoryMsgServerUpdateArchived(t *testing.T) { }{ { desc: "Creator Not Exists", - request: &types.MsgToggleRepositoryArchived{Creator: "X", RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: "X", RepositoryId: repositoryId}, err: sdkerrors.ErrKeyNotFound, }, { desc: "Repository Not Exists", - request: &types.MsgToggleRepositoryArchived{Creator: users[0], RepositoryId: types.RepositoryId{Id: users[0], Name: "name"}, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[0], RepositoryId: types.RepositoryId{Id: users[0], Name: "name"}}, err: sdkerrors.ErrKeyNotFound, }, { desc: "Unauthorized", - request: &types.MsgToggleRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[1], RepositoryId: repositoryId}, err: sdkerrors.ErrUnauthorized, }, { desc: "Unauthorized Self", - request: &types.MsgToggleRepositoryArchived{Creator: users[1], RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[1], RepositoryId: repositoryId}, err: sdkerrors.ErrUnauthorized, }, { desc: "Completed", - request: &types.MsgToggleRepositoryArchived{Creator: users[0], RepositoryId: repositoryId, Archived: true}, + request: &types.MsgToggleRepositoryArchived{Creator: users[0], RepositoryId: repositoryId}, }, } { t.Run(tc.desc, func(t *testing.T) { diff --git a/x/gitopia/types/keys.go b/x/gitopia/types/keys.go index 069e6e4d..77e5bc28 100644 --- a/x/gitopia/types/keys.go +++ b/x/gitopia/types/keys.go @@ -106,7 +106,7 @@ const ( ChangeOwnerEventKey = "ChangeOwner" RenameRepositoryEventKey = "RenameRepository" UpdateRepositoryDescriptionEventKey = "UpdateRepositoryDescription" - UpdateArchivedStateEventKey = "UpdateArchivedState" + ToggleRepositoryArchivedEventKey = "ToggleRepositoryArchived" UpdateRepositoryCollaboratorEventKey = "UpdateRepositoryCollaborator" RemoveRepositoryCollaboratorEventKey = "RemoveRepositoryCollaborator" CreateRepositoryLabelEventKey = "CreateRepositoryLabel" @@ -231,6 +231,7 @@ const ( EventAttributeRepoBranchKey = "RepositoryBranch" EventAttributeRepoTagKey = "RepositoryTag" EventAttributeRepoDefaultBranchKey = "RepositoryDefaultBranch" + EventAttributeToggleRepositoryArchived = "ToggleRepositoryArchived" ) const ( diff --git a/x/gitopia/types/messages_repository.go b/x/gitopia/types/messages_repository.go index f6ca4363..ab49c2e9 100644 --- a/x/gitopia/types/messages_repository.go +++ b/x/gitopia/types/messages_repository.go @@ -755,7 +755,6 @@ func NewMsgToggleRepositoryArchived(creator string, repositoryId RepositoryId, a return &MsgToggleRepositoryArchived{ Creator: creator, RepositoryId: repositoryId, - Archived: archived, } } @@ -764,7 +763,7 @@ func (msg *MsgToggleRepositoryArchived) Route() string { } func (msg *MsgToggleRepositoryArchived) Type() string { - return "UpdateArchivedState" + return "ToggleRepositoryArchived" } func (msg *MsgToggleRepositoryArchived) GetSigners() []sdk.AccAddress { diff --git a/x/gitopia/types/messages_repository_test.go b/x/gitopia/types/messages_repository_test.go index 8f672f0b..4104194f 100644 --- a/x/gitopia/types/messages_repository_test.go +++ b/x/gitopia/types/messages_repository_test.go @@ -256,7 +256,6 @@ func TestMsgToggleRepositoryArchived_ValidateBasic(t *testing.T) { msg: MsgToggleRepositoryArchived{ Creator: "invalid_address", RepositoryId: repositoryId, - Archived: true, }, err: sdkerrors.ErrInvalidAddress, }, { @@ -264,7 +263,6 @@ func TestMsgToggleRepositoryArchived_ValidateBasic(t *testing.T) { msg: MsgToggleRepositoryArchived{ Creator: sample.AccAddress(), RepositoryId: repositoryId, - Archived: true, }, }, } diff --git a/x/gitopia/types/mock_msg_client.go b/x/gitopia/types/mock_msg_client.go index aed3071d..d4de0766 100644 --- a/x/gitopia/types/mock_msg_client.go +++ b/x/gitopia/types/mock_msg_client.go @@ -2266,7 +2266,7 @@ func (_m *MockMsgClient) UpdateRepositoryDescription(ctx context.Context, in *Ms } // ToggleRepositoryArchived provides a mock function with given fields: ctx, in, opts -func (_m *MockMsgClient) UpdateArchivedState(ctx context.Context, in *MsgToggleRepositoryArchived, opts ...grpc.CallOption) (*MsgToggleRepositoryArchivedResponse, error) { +func (_m *MockMsgClient) ToggleRepositoryArchived(ctx context.Context, in *MsgToggleRepositoryArchived, opts ...grpc.CallOption) (*MsgToggleRepositoryArchivedResponse, error) { _va := make([]interface{}, len(opts)) for _i := range opts { _va[_i] = opts[_i] diff --git a/x/gitopia/types/tx.pb.go b/x/gitopia/types/tx.pb.go index 8d098b30..7b07eeab 100644 --- a/x/gitopia/types/tx.pb.go +++ b/x/gitopia/types/tx.pb.go @@ -7605,7 +7605,6 @@ var xxx_messageInfo_MsgUpdateRepositoryDescriptionResponse proto.InternalMessage type MsgToggleRepositoryArchived struct { Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` RepositoryId RepositoryId `protobuf:"bytes,2,opt,name=repositoryId,proto3" json:"repositoryId"` - Archived bool `protobuf:"varint,3,opt,name=archived,proto3" json:"archived,omitempty"` } func (m *MsgToggleRepositoryArchived) Reset() { *m = MsgToggleRepositoryArchived{} } @@ -7655,13 +7654,6 @@ func (m *MsgToggleRepositoryArchived) GetRepositoryId() RepositoryId { return RepositoryId{} } -func (m *MsgToggleRepositoryArchived) GetArchived() bool { - if m != nil { - return m.Archived - } - return false -} - type MsgToggleRepositoryArchivedResponse struct { } @@ -9354,292 +9346,291 @@ func init() { func init() { proto.RegisterFile("gitopia/tx.proto", fileDescriptor_a62a3f7fe5854081) } var fileDescriptor_a62a3f7fe5854081 = []byte{ - // 4551 bytes of a gzipped FileDescriptorProto + // 4541 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5d, 0xcd, 0x6f, 0x1c, 0x47, 0x76, 0x57, 0x73, 0x86, 0x1f, 0x53, 0x94, 0x69, 0x6a, 0xa8, 0x8f, 0x61, 0x4b, 0xa6, 0xe8, 0xb6, - 0x25, 0x51, 0x12, 0x3f, 0xc4, 0x91, 0x64, 0xcb, 0xb2, 0xad, 0x98, 0x14, 0x69, 0x9b, 0x89, 0x68, + 0x25, 0x51, 0x12, 0x3f, 0xc4, 0x91, 0x65, 0xcb, 0xb2, 0xad, 0x98, 0x14, 0x69, 0x9b, 0x89, 0x68, 0x2b, 0x4d, 0x2a, 0x8e, 0x83, 0x20, 0x49, 0x73, 0xa6, 0xd8, 0xec, 0x70, 0x38, 0x3d, 0xe9, 0xee, 0xa1, 0xc4, 0x24, 0x80, 0x13, 0x7f, 0xc0, 0x4e, 0x0c, 0x27, 0xb1, 0x63, 0x24, 0x81, 0x03, 0x23, - 0x41, 0x90, 0x8b, 0x03, 0x04, 0x01, 0x92, 0x9c, 0x82, 0xfc, 0x01, 0x3e, 0x2d, 0xbc, 0x58, 0xec, - 0x62, 0x4f, 0x6b, 0x43, 0x3a, 0xee, 0x61, 0x4f, 0x7b, 0x5f, 0xd4, 0x47, 0x57, 0x57, 0xf5, 0x47, - 0x75, 0x35, 0x4d, 0x91, 0xb2, 0xb1, 0x27, 0x4e, 0xf7, 0xbc, 0x57, 0xef, 0xf7, 0x5e, 0xbd, 0xfa, - 0x7a, 0xf5, 0xde, 0x10, 0x0c, 0xdb, 0x4e, 0xe0, 0x76, 0x1c, 0x6b, 0x26, 0xb8, 0x37, 0xdd, 0xf1, - 0xdc, 0xc0, 0xad, 0x9e, 0xa0, 0x6f, 0xa6, 0x63, 0x7f, 0xf5, 0xa3, 0xb6, 0x6b, 0xbb, 0x98, 0x66, - 0x06, 0x7d, 0x22, 0xe4, 0x7a, 0x95, 0x35, 0x60, 0xf9, 0x9b, 0xf4, 0xdd, 0xd1, 0xf0, 0xdd, 0x9a, - 0x67, 0xb5, 0x1b, 0x1b, 0xf4, 0xed, 0x91, 0x88, 0xd2, 0x8e, 0x13, 0x6e, 0xc1, 0xad, 0x35, 0xe8, - 0x25, 0xd8, 0xdd, 0x6e, 0x3b, 0xd8, 0xa1, 0x6f, 0x8f, 0x85, 0x6f, 0x3d, 0xd8, 0x82, 0x96, 0x0f, - 0xe9, 0xeb, 0xd1, 0xf0, 0x75, 0xa7, 0xdb, 0x6a, 0x99, 0xf0, 0x4f, 0xba, 0xd0, 0x0f, 0xe2, 0x02, - 0x9b, 0x96, 0x1b, 0x6f, 0xa4, 0xe1, 0x6e, 0x6d, 0xc1, 0x76, 0x48, 0x39, 0x12, 0xbe, 0x76, 0x7c, - 0xbf, 0x1b, 0xb6, 0x5c, 0x8b, 0x04, 0x76, 0x5c, 0xdf, 0x09, 0x5c, 0x6f, 0x27, 0x4e, 0x7e, 0x77, - 0xc3, 0x75, 0x7c, 0xfa, 0x72, 0xac, 0xe1, 0xfa, 0x5b, 0xae, 0x3f, 0xb3, 0x66, 0xf9, 0x70, 0x66, - 0x7b, 0x76, 0x0d, 0x06, 0xd6, 0xec, 0x4c, 0xc3, 0x75, 0xda, 0xf1, 0xe6, 0xac, 0x20, 0xb0, 0x1a, - 0x1b, 0x9c, 0xf4, 0xe3, 0x91, 0x20, 0xab, 0x11, 0x38, 0x2e, 0xe5, 0x30, 0xfe, 0x59, 0x03, 0x83, - 0xcb, 0xbe, 0xbd, 0x78, 0x0f, 0x7a, 0x0d, 0xc7, 0x87, 0xd5, 0x1a, 0xe8, 0x6f, 0x78, 0xd0, 0x0a, - 0x5c, 0xaf, 0xa6, 0x8d, 0x6b, 0x13, 0x15, 0x33, 0x7c, 0xac, 0xae, 0x81, 0x3e, 0x6b, 0x0b, 0x19, - 0xab, 0xd6, 0x33, 0xae, 0x4d, 0x0c, 0xd6, 0x47, 0xa7, 0x09, 0x98, 0x69, 0x04, 0x66, 0x9a, 0x82, - 0x99, 0xbe, 0xe9, 0x3a, 0xed, 0xf9, 0x99, 0x2f, 0x7f, 0x76, 0xfa, 0xd0, 0xdb, 0x5f, 0x9f, 0x3e, - 0x67, 0x3b, 0xc1, 0x46, 0x77, 0x6d, 0xba, 0xe1, 0x6e, 0xcd, 0x50, 0xe4, 0xe4, 0xcf, 0x94, 0xdf, - 0xdc, 0x9c, 0x09, 0x76, 0x3a, 0xd0, 0xc7, 0x0c, 0x26, 0x6d, 0xb9, 0x3a, 0x04, 0x7a, 0x02, 0xb7, - 0x56, 0xc2, 0x82, 0x7b, 0x02, 0xd7, 0x38, 0x06, 0x46, 0x38, 0x70, 0x26, 0xf4, 0x3b, 0x6e, 0xdb, - 0x87, 0xc6, 0xbf, 0x68, 0xa0, 0xba, 0xec, 0xdb, 0xab, 0xae, 0x6d, 0xb7, 0xe0, 0xcb, 0xae, 0xd7, - 0x80, 0xb7, 0xbb, 0xfe, 0x86, 0x04, 0xfb, 0xeb, 0xe0, 0x70, 0x64, 0xe0, 0xa5, 0x26, 0xd5, 0xe0, - 0xcc, 0x74, 0x86, 0x1b, 0x4e, 0x9b, 0x1c, 0xf1, 0x7c, 0x19, 0x69, 0x63, 0x0a, 0x0d, 0x54, 0xc7, - 0x00, 0x20, 0x7e, 0xf7, 0x9a, 0xb5, 0x05, 0x29, 0x60, 0xee, 0x8d, 0x71, 0x0a, 0xe8, 0x49, 0x80, - 0x0c, 0xff, 0xff, 0x69, 0xe0, 0xe4, 0xb2, 0x6f, 0x9b, 0x70, 0xdb, 0xdd, 0x84, 0xb7, 0x3d, 0x77, - 0xdb, 0x69, 0x42, 0xef, 0x36, 0xf4, 0xb6, 0x1c, 0xdf, 0x77, 0xdc, 0xb6, 0x44, 0x91, 0x1a, 0xe8, - 0xb7, 0x3d, 0xab, 0x1d, 0x40, 0x0f, 0xeb, 0x50, 0x31, 0xc3, 0xc7, 0xaa, 0x0e, 0x06, 0x3a, 0xb4, - 0x25, 0x8a, 0x87, 0x3d, 0x57, 0x7f, 0x0b, 0x80, 0x0e, 0x6b, 0xbd, 0x56, 0x1e, 0xd7, 0x26, 0x86, - 0xea, 0x17, 0x33, 0x95, 0x4f, 0x02, 0x32, 0x39, 0x76, 0xe3, 0x0c, 0x78, 0x4a, 0x82, 0x9d, 0xe9, - 0xf8, 0x3f, 0x1a, 0x38, 0xba, 0xec, 0xdb, 0x73, 0xdd, 0x60, 0xc3, 0xf5, 0x9c, 0x3f, 0x65, 0xa4, - 0x8f, 0xb6, 0x72, 0x63, 0xe0, 0x54, 0x1a, 0x68, 0xa6, 0xd5, 0xbb, 0x1a, 0x78, 0x6c, 0xd9, 0xb7, - 0x6f, 0x22, 0xc4, 0x70, 0xd5, 0xf2, 0x37, 0x25, 0xea, 0xbc, 0x08, 0x06, 0xd0, 0x7c, 0xb5, 0xba, - 0xd3, 0x81, 0x58, 0x9f, 0xa1, 0xfa, 0x93, 0x99, 0xb0, 0x56, 0x29, 0xa1, 0xc9, 0x58, 0x64, 0x3a, - 0x1b, 0xe7, 0xc0, 0x31, 0x01, 0x45, 0x88, 0x0f, 0x0d, 0x20, 0xa7, 0x89, 0x81, 0x94, 0xcd, 0x1e, - 0xa7, 0x69, 0x7c, 0x44, 0xf0, 0xde, 0xe9, 0x34, 0xf3, 0xf1, 0x12, 0xde, 0x9e, 0x90, 0xb7, 0x7a, - 0x0d, 0xf4, 0xfa, 0x81, 0x15, 0x10, 0xf7, 0x1e, 0xaa, 0x1b, 0x52, 0xf0, 0x2b, 0x88, 0xd2, 0x24, - 0x0c, 0x48, 0xc6, 0x16, 0xf4, 0x7d, 0xcb, 0x86, 0xb8, 0x3f, 0x2a, 0x66, 0xf8, 0x68, 0x9c, 0xc0, - 0xc0, 0x23, 0x38, 0xcc, 0xb0, 0xcf, 0x61, 0x9c, 0x0b, 0xb0, 0x05, 0x8b, 0xe2, 0x34, 0xee, 0x6b, - 0xb8, 0xd3, 0x48, 0xa3, 0xd1, 0xc8, 0x9d, 0xb7, 0x1a, 0x9b, 0xdd, 0x8e, 0x09, 0xd7, 0xf7, 0x73, - 0x5e, 0x58, 0x44, 0x36, 0x73, 0xbd, 0xd0, 0x66, 0x33, 0x0a, 0x2d, 0x11, 0x9c, 0xd3, 0x2b, 0x88, - 0xcd, 0x24, 0xdc, 0xd5, 0x61, 0x50, 0xf2, 0xe0, 0x3a, 0x35, 0x1e, 0xfa, 0x68, 0x9c, 0x05, 0x4f, - 0xcb, 0x74, 0x64, 0x76, 0xfc, 0x5a, 0x03, 0xa3, 0xc8, 0x83, 0x9b, 0xcd, 0xef, 0xab, 0x25, 0x9e, - 0x02, 0x4f, 0x66, 0x2a, 0xc8, 0xcc, 0x40, 0xfc, 0x2c, 0x72, 0x27, 0xf6, 0x85, 0x01, 0xc6, 0xd9, - 0x17, 0x48, 0x90, 0x65, 0x27, 0x07, 0xf9, 0x2f, 0x35, 0x70, 0x78, 0xd9, 0xb7, 0x57, 0x60, 0x30, - 0x8f, 0x67, 0xf4, 0xfd, 0x34, 0xdb, 0x6f, 0x82, 0x3e, 0xb2, 0x8c, 0x60, 0xbb, 0x0d, 0xd6, 0x27, - 0x33, 0x9b, 0xe2, 0x11, 0x4e, 0x93, 0x3f, 0xb4, 0x45, 0xda, 0x82, 0x3e, 0x0d, 0xfa, 0xa8, 0x02, - 0x55, 0x50, 0x6e, 0xa3, 0x85, 0x8a, 0xa0, 0xc7, 0x9f, 0x91, 0x65, 0xfd, 0x0d, 0x8b, 0xce, 0xb4, - 0xe8, 0xa3, 0x71, 0x1c, 0xcf, 0xd8, 0xac, 0x51, 0x66, 0x8f, 0x7f, 0xd2, 0xf0, 0x32, 0xbc, 0x02, - 0x83, 0x05, 0xb8, 0x6e, 0x75, 0x5b, 0x07, 0x60, 0x96, 0xe3, 0x82, 0x59, 0x2a, 0xa1, 0x8a, 0xc6, - 0x13, 0x78, 0x21, 0x8d, 0x23, 0x63, 0xc8, 0xdf, 0xe9, 0x01, 0x47, 0x96, 0x7d, 0x7b, 0xb9, 0xdb, - 0x0a, 0x9c, 0x03, 0xe9, 0xce, 0x15, 0x30, 0x40, 0x90, 0x42, 0xbf, 0x56, 0x1a, 0x2f, 0x4d, 0x0c, - 0xd6, 0x67, 0x65, 0x1d, 0x2a, 0x02, 0x15, 0x7b, 0x95, 0x35, 0x54, 0xb8, 0x5f, 0x4f, 0xe2, 0x29, - 0x41, 0x6c, 0x9b, 0x99, 0xe8, 0x53, 0x0d, 0x3c, 0xce, 0x46, 0xc4, 0xa3, 0xd3, 0xb1, 0xa3, 0xe0, - 0x44, 0x0c, 0x15, 0x43, 0xfc, 0x39, 0xd9, 0x59, 0x60, 0x7d, 0x0e, 0x0a, 0xb6, 0x1e, 0xeb, 0xd7, - 0x4a, 0xd4, 0x3d, 0x74, 0x0f, 0x91, 0x80, 0xc7, 0xf0, 0x3f, 0xd0, 0x40, 0x85, 0x38, 0xed, 0xaa, - 0x65, 0xef, 0x27, 0xe8, 0x1b, 0xa0, 0x14, 0x58, 0x36, 0x9d, 0x58, 0xce, 0xe6, 0x4c, 0x2c, 0xab, - 0x96, 0x3d, 0xbd, 0x6a, 0xd9, 0xb4, 0x21, 0xc4, 0xa8, 0x5f, 0x04, 0x25, 0x84, 0x58, 0xcd, 0xe9, - 0x46, 0xf0, 0xc8, 0x23, 0x0d, 0x31, 0xd5, 0x7f, 0xa1, 0x81, 0x21, 0xce, 0x15, 0xf7, 0x59, 0xff, - 0x45, 0x50, 0x0e, 0x2c, 0x3b, 0x1c, 0x88, 0x17, 0x55, 0x06, 0xa2, 0x68, 0x05, 0xcc, 0x5e, 0xcc, - 0x0c, 0x35, 0x70, 0x5c, 0x6c, 0x8e, 0xd9, 0xe2, 0x43, 0xb2, 0xca, 0x84, 0x6b, 0xd4, 0xbe, 0x5a, - 0x62, 0x38, 0xf2, 0x84, 0x0a, 0xee, 0x5b, 0x3a, 0xf7, 0x33, 0x30, 0x0c, 0xe5, 0x27, 0x5a, 0x34, - 0x83, 0x1e, 0x08, 0xd4, 0x2a, 0xd7, 0x69, 0x15, 0xd2, 0x03, 0xfc, 0x84, 0x96, 0x44, 0xfc, 0xb7, - 0xc4, 0xae, 0x73, 0xcd, 0xe6, 0x32, 0x3e, 0xf0, 0x4b, 0xc0, 0x1e, 0x05, 0xbd, 0x4d, 0xcb, 0xa5, - 0x28, 0x2b, 0x26, 0x79, 0x40, 0x53, 0x52, 0xd7, 0x87, 0xde, 0x52, 0x33, 0x9c, 0x92, 0xc8, 0x53, - 0xf5, 0x59, 0x50, 0xf6, 0xdc, 0x16, 0xa4, 0x47, 0x8c, 0xa7, 0xb2, 0xdd, 0x07, 0x8b, 0x35, 0xdd, - 0x16, 0x34, 0x31, 0x03, 0xb5, 0x2d, 0x03, 0xc4, 0x90, 0xfe, 0x03, 0x59, 0x57, 0xc9, 0xa6, 0x2e, - 0xe2, 0x3a, 0x78, 0xc0, 0x64, 0x55, 0x8d, 0xe3, 0x62, 0xb8, 0xdf, 0xc4, 0x2b, 0x86, 0x09, 0xb7, - 0xdc, 0x6d, 0xb8, 0xb7, 0x36, 0xa6, 0xd3, 0x3e, 0xdf, 0x34, 0x93, 0xfa, 0x45, 0x0f, 0x16, 0x4b, - 0x0e, 0x3d, 0xf3, 0x38, 0x6a, 0x23, 0x11, 0xdb, 0xe0, 0xa2, 0x15, 0x25, 0x79, 0xb4, 0xe2, 0x12, - 0xf2, 0xba, 0xff, 0xf8, 0xfa, 0xf4, 0x84, 0x62, 0xb4, 0xc2, 0x67, 0xe1, 0x8a, 0xe3, 0xa0, 0x0f, - 0xde, 0xeb, 0x38, 0xde, 0x0e, 0xd6, 0xa2, 0x64, 0xd2, 0xa7, 0xaa, 0x11, 0x1b, 0x04, 0x65, 0x7c, - 0x56, 0x11, 0xfd, 0xfa, 0x14, 0xa8, 0x74, 0x2c, 0x0f, 0xb6, 0x83, 0x25, 0xa7, 0x59, 0xeb, 0xc5, - 0x04, 0xd1, 0x8b, 0xea, 0x8b, 0xa0, 0x8f, 0x3c, 0xd4, 0xfa, 0x70, 0xe7, 0x65, 0x0f, 0x20, 0x62, - 0x89, 0xdb, 0x98, 0xd8, 0xa4, 0x4c, 0xc6, 0x79, 0x6c, 0x46, 0xde, 0x54, 0x99, 0x27, 0xc4, 0x37, - 0xb9, 0x13, 0x19, 0x21, 0x5d, 0x24, 0x4a, 0xa8, 0x1f, 0x14, 0x33, 0xcc, 0x60, 0x9c, 0x06, 0x4f, - 0xa4, 0x36, 0xcd, 0xba, 0xf4, 0x3a, 0x5e, 0x0d, 0x6e, 0xb6, 0x5c, 0x3f, 0xbf, 0x43, 0xe3, 0xa7, - 0x3e, 0x32, 0xb1, 0x72, 0xbc, 0xac, 0xd5, 0xe7, 0xf9, 0x0d, 0x4d, 0xd1, 0x66, 0x85, 0x7d, 0x87, - 0xd8, 0xee, 0x8f, 0x7a, 0xc0, 0x30, 0xb3, 0xaa, 0x49, 0x02, 0x84, 0xfb, 0x39, 0x13, 0xd6, 0x40, - 0x7f, 0x60, 0xd9, 0x5c, 0xc0, 0x29, 0x7c, 0x44, 0x1d, 0x10, 0x58, 0x9e, 0x0d, 0x03, 0x7a, 0x4e, - 0xa2, 0x4f, 0x6c, 0x89, 0xea, 0xe5, 0x96, 0xa8, 0x71, 0x30, 0xd8, 0x84, 0x7e, 0xc3, 0x73, 0x3a, - 0x81, 0xe3, 0xb6, 0xb1, 0x7b, 0x55, 0x4c, 0xfe, 0x15, 0xa2, 0x88, 0xc2, 0x87, 0x7e, 0xad, 0x9f, - 0x50, 0x70, 0xaf, 0xf0, 0x98, 0xf6, 0xac, 0xf5, 0xa0, 0x36, 0x30, 0xae, 0x4d, 0x0c, 0x98, 0xe4, - 0xa1, 0x3a, 0x06, 0x40, 0xc7, 0x0b, 0x0d, 0x53, 0xab, 0xe0, 0xaf, 0xb8, 0x37, 0x88, 0xcb, 0xf1, - 0x57, 0x2d, 0xbb, 0x06, 0x08, 0x17, 0x7e, 0x30, 0x2e, 0x80, 0x5a, 0xdc, 0xa8, 0x99, 0xbe, 0xfa, - 0x09, 0xe9, 0x81, 0xf0, 0x14, 0x9c, 0xd7, 0x03, 0x71, 0x3f, 0xfd, 0x7e, 0x1a, 0x50, 0xc7, 0x06, - 0x14, 0x6c, 0xc2, 0x5c, 0xf6, 0x05, 0x6c, 0x2f, 0xe2, 0xcd, 0x85, 0xed, 0x45, 0x5b, 0x16, 0xb8, - 0x59, 0xcb, 0x5f, 0x95, 0xf0, 0xa2, 0x46, 0xfa, 0xed, 0x76, 0x14, 0x16, 0x97, 0xaf, 0x04, 0x81, - 0x13, 0xb4, 0x60, 0xb8, 0x12, 0xe0, 0x87, 0xb8, 0x39, 0x4b, 0x49, 0x73, 0x8e, 0x01, 0xb0, 0x01, - 0xad, 0x26, 0xd9, 0x45, 0xd3, 0x0e, 0xe2, 0xde, 0x54, 0xdf, 0x00, 0xc3, 0xe8, 0x89, 0x1f, 0x3f, - 0xb8, 0xc3, 0x0a, 0x0e, 0xb6, 0x44, 0x23, 0x38, 0xc8, 0x6b, 0xf9, 0x74, 0xfb, 0x4e, 0x3b, 0x9a, - 0x7b, 0x83, 0x04, 0xaf, 0x61, 0x9b, 0x70, 0x82, 0xfb, 0x77, 0x21, 0x38, 0xde, 0x08, 0x5a, 0x1b, - 0x3c, 0xb8, 0xed, 0xc0, 0xbb, 0xd0, 0xf3, 0x6b, 0x03, 0x78, 0xe3, 0x13, 0xbd, 0x40, 0xdf, 0x5a, - 0xbe, 0xef, 0xd8, 0x6d, 0x08, 0xfd, 0x5a, 0x85, 0x7c, 0xcb, 0x5e, 0xa0, 0x93, 0x49, 0xcb, 0x5a, - 0x83, 0xad, 0xa5, 0xa6, 0x5f, 0x03, 0xe3, 0xa5, 0x89, 0xb2, 0xc9, 0x9e, 0x11, 0x27, 0xbe, 0x7c, - 0x58, 0x72, 0x9a, 0x7e, 0x6d, 0x10, 0x7f, 0x19, 0xbd, 0x30, 0x5e, 0xc2, 0xe7, 0x96, 0x44, 0x8f, - 0x66, 0x8d, 0x46, 0xb4, 0x89, 0x74, 0x98, 0xbf, 0xa0, 0x8f, 0xc6, 0x5f, 0x92, 0xe0, 0x13, 0xf1, - 0x45, 0xae, 0x89, 0x55, 0xdc, 0xd3, 0xd9, 0x9e, 0x61, 0xa4, 0x4c, 0x95, 0xe5, 0xe4, 0x96, 0x15, - 0x49, 0x2b, 0x31, 0x69, 0x91, 0x3f, 0x95, 0x39, 0x7f, 0xa2, 0xe1, 0xa1, 0x74, 0x08, 0xcc, 0x7b, - 0xff, 0x5e, 0x03, 0xa7, 0xd3, 0xa8, 0x16, 0x38, 0xb7, 0xdb, 0x6b, 0xb8, 0x31, 0x47, 0x2f, 0x27, - 0x1c, 0xdd, 0x38, 0x0f, 0xce, 0xe5, 0x80, 0x62, 0x0a, 0xbc, 0x4f, 0x2c, 0xbd, 0xd4, 0xde, 0x76, - 0x37, 0xe1, 0x32, 0xf4, 0x6c, 0xc5, 0x31, 0xb8, 0x3b, 0xe8, 0x7c, 0x28, 0xba, 0x1c, 0x0b, 0x45, - 0x13, 0x7b, 0xa7, 0x03, 0x61, 0x70, 0xbf, 0xd1, 0xf0, 0x6a, 0xbd, 0x02, 0x03, 0xee, 0xdb, 0x95, - 0x30, 0x56, 0xbc, 0xd7, 0x5e, 0x41, 0xa2, 0xd6, 0xd4, 0x2b, 0x48, 0x44, 0xfa, 0x2c, 0x18, 0xda, - 0x42, 0xe0, 0x6e, 0xba, 0x5b, 0x5b, 0x4e, 0xb0, 0xb2, 0x61, 0xd1, 0x29, 0x3d, 0xf6, 0x16, 0x75, - 0x12, 0xbd, 0xb5, 0x9b, 0x77, 0x9b, 0x3b, 0xe1, 0xe4, 0xce, 0xbd, 0x22, 0x4b, 0x85, 0xbf, 0x49, - 0x87, 0x7a, 0xd9, 0xa4, 0x4f, 0xc6, 0x33, 0x60, 0x2c, 0x5d, 0x43, 0x36, 0x7e, 0x18, 0x32, 0x8d, - 0x43, 0x66, 0xfc, 0xb5, 0x86, 0xaf, 0x8a, 0xe6, 0x9a, 0x4d, 0xc1, 0x70, 0xe1, 0x60, 0xdf, 0x6b, - 0xf3, 0x08, 0x53, 0x4b, 0x39, 0x36, 0xb5, 0x18, 0x4f, 0x03, 0x23, 0x1b, 0x0b, 0xeb, 0xcd, 0x8f, - 0x34, 0xbc, 0xb1, 0x23, 0xbb, 0xf4, 0x47, 0x00, 0xf5, 0x39, 0x70, 0x46, 0x0a, 0x87, 0x01, 0x4f, - 0xb5, 0xf5, 0x1c, 0x9b, 0x3a, 0x1f, 0x02, 0xea, 0x68, 0xa2, 0x2e, 0xc7, 0x26, 0xea, 0x54, 0x5b, - 0x33, 0x2c, 0xb9, 0xb6, 0x3e, 0x28, 0xd4, 0x19, 0xb6, 0x4e, 0x02, 0xff, 0x57, 0x72, 0x2b, 0x73, - 0xcb, 0x69, 0x6f, 0x72, 0x74, 0x4b, 0x68, 0xb5, 0x99, 0xdf, 0x59, 0x22, 0xbb, 0xb1, 0x6f, 0x81, - 0xfb, 0x2c, 0x18, 0xe2, 0x2e, 0xe3, 0x97, 0x98, 0x0a, 0xb1, 0xb7, 0x68, 0xea, 0x0a, 0x57, 0x38, - 0x7a, 0x0c, 0x63, 0xcf, 0xf4, 0x4e, 0x25, 0x13, 0x21, 0x53, 0xe5, 0xdf, 0x34, 0x3c, 0xb6, 0xef, - 0xb4, 0x5b, 0x8f, 0xb0, 0x32, 0x13, 0xe0, 0xac, 0x1c, 0x23, 0x53, 0xe7, 0x3d, 0x0d, 0x9f, 0x71, - 0x44, 0xcf, 0xbb, 0x85, 0xf6, 0x08, 0xfe, 0xc3, 0x58, 0x39, 0xd8, 0x6e, 0xa4, 0x2c, 0xee, 0x46, - 0x8c, 0x27, 0xf1, 0x1a, 0x9c, 0x06, 0x83, 0x41, 0xfd, 0x80, 0x0c, 0xd8, 0x84, 0xbb, 0x1d, 0x00, - 0x5a, 0x32, 0x5c, 0x33, 0x90, 0x30, 0xc0, 0xeb, 0x5c, 0x18, 0xed, 0x21, 0xae, 0xc8, 0x34, 0xc6, - 0x9c, 0x90, 0xc3, 0x70, 0xfc, 0x37, 0x09, 0x82, 0x91, 0xcd, 0xdc, 0x82, 0xe5, 0x4a, 0x00, 0x84, - 0x67, 0x9c, 0x9e, 0xec, 0x33, 0x4e, 0xca, 0xa6, 0x1c, 0xcd, 0x12, 0xdb, 0x56, 0x60, 0x79, 0x77, - 0xbc, 0x16, 0x5d, 0x6a, 0xa3, 0x17, 0xd8, 0x90, 0x6e, 0xc3, 0xc2, 0xcc, 0x64, 0xa1, 0x65, 0xcf, - 0x08, 0xc9, 0x5d, 0xb8, 0xe6, 0x3b, 0x01, 0xa4, 0xcb, 0x6b, 0xf8, 0x68, 0x9c, 0xe5, 0x8e, 0x14, - 0x0b, 0x96, 0x9b, 0xb2, 0xf1, 0xac, 0xe0, 0x73, 0xc9, 0x2d, 0xac, 0x9b, 0x09, 0x11, 0x54, 0xb9, - 0x6e, 0xd1, 0x89, 0x06, 0x73, 0x32, 0x5d, 0x4b, 0x91, 0xae, 0x34, 0x3a, 0xc7, 0x5a, 0x63, 0x26, - 0x84, 0x78, 0x94, 0x90, 0xdd, 0xd8, 0x82, 0xe5, 0xaa, 0x6d, 0x0d, 0xe3, 0x02, 0x73, 0x0d, 0x49, - 0x47, 0x41, 0x9a, 0x18, 0x86, 0xe4, 0xb7, 0xb9, 0x30, 0xe1, 0x82, 0xe5, 0xbe, 0x41, 0xcc, 0x55, - 0x00, 0xc5, 0x30, 0x28, 0x75, 0xbd, 0x56, 0x18, 0xee, 0xed, 0x7a, 0x2d, 0x21, 0xc2, 0x17, 0x35, - 0xc9, 0x24, 0xfe, 0x3e, 0xb6, 0x09, 0xfb, 0xfa, 0x16, 0xd7, 0x77, 0x8a, 0x22, 0x79, 0x0f, 0x28, - 0x89, 0x1e, 0x40, 0x9d, 0x37, 0xd1, 0x3a, 0x93, 0x7e, 0x1b, 0x67, 0xf7, 0xb0, 0xef, 0xe7, 0xb0, - 0x5b, 0x7d, 0x2b, 0x75, 0x49, 0x3a, 0x4e, 0xac, 0x45, 0x26, 0xef, 0x1a, 0x17, 0x88, 0x2f, 0xe4, - 0x4f, 0x42, 0xd4, 0x9c, 0xf7, 0x9d, 0x1f, 0xf3, 0xa1, 0xa2, 0x9b, 0x64, 0xf7, 0xf8, 0x2d, 0xe7, - 0x00, 0x21, 0x5e, 0x58, 0x8a, 0xc7, 0x0b, 0x6f, 0xb0, 0x78, 0x21, 0x09, 0xf6, 0x66, 0xdf, 0xee, - 0x50, 0x34, 0x62, 0xc0, 0x10, 0x0d, 0x8c, 0x35, 0xb4, 0xe1, 0xa5, 0x81, 0x0e, 0xf4, 0xb9, 0xba, - 0x28, 0x86, 0x31, 0xfa, 0x70, 0x1c, 0x35, 0x3b, 0x8a, 0x3c, 0xc7, 0x68, 0xc5, 0x58, 0x87, 0x0e, - 0x06, 0x9a, 0xce, 0xfa, 0xfa, 0xab, 0xdd, 0xf6, 0x26, 0x0d, 0x85, 0xb0, 0x67, 0x24, 0xb6, 0x63, - 0x05, 0x1b, 0x38, 0x0c, 0x52, 0x31, 0xf1, 0x67, 0x7c, 0xd8, 0x40, 0x6a, 0x23, 0xcf, 0xa9, 0x90, - 0x45, 0x2e, 0x7c, 0x16, 0x82, 0x45, 0x54, 0x91, 0xcc, 0x60, 0xd1, 0x17, 0x7c, 0xb0, 0xe8, 0xbb, - 0xd0, 0x07, 0x63, 0x00, 0xd0, 0x83, 0x46, 0x14, 0x12, 0xe6, 0xde, 0xb0, 0x3e, 0xea, 0xcb, 0xee, - 0xa3, 0xfe, 0xdd, 0xf5, 0x91, 0x10, 0x43, 0x8a, 0xd9, 0xd5, 0xf8, 0x81, 0xc6, 0x05, 0x91, 0xbe, - 0x07, 0x76, 0x14, 0xc2, 0x5a, 0x71, 0x65, 0x7f, 0xa2, 0xe1, 0x2f, 0x49, 0xe2, 0x5e, 0xf4, 0xa5, - 0xdb, 0xda, 0x86, 0xcd, 0xef, 0xb4, 0xd2, 0x37, 0x70, 0xde, 0x4b, 0xaa, 0x5e, 0x6c, 0x04, 0xe9, - 0x60, 0xc0, 0xa3, 0xef, 0xb0, 0x82, 0x03, 0x26, 0x7b, 0x36, 0x3e, 0x2b, 0x91, 0x58, 0x3d, 0x1e, - 0x7a, 0x78, 0x53, 0xb9, 0x9f, 0xa1, 0x6f, 0x16, 0xea, 0x29, 0x49, 0x42, 0x87, 0xc9, 0x88, 0x8a, - 0xb0, 0xa1, 0xeb, 0x8d, 0x05, 0xc3, 0x8e, 0x83, 0xbe, 0xbb, 0xd0, 0xb1, 0x37, 0xc8, 0x15, 0x4b, - 0xd9, 0xa4, 0x4f, 0xe2, 0xf9, 0xa7, 0x3f, 0x1e, 0x5e, 0x73, 0xc1, 0x61, 0x92, 0x31, 0x3c, 0x47, - 0x6e, 0x97, 0x06, 0xf6, 0xfe, 0x76, 0x49, 0x10, 0x80, 0x5c, 0x6b, 0x8d, 0xbb, 0x3b, 0xc1, 0x53, - 0x62, 0xc9, 0x14, 0xde, 0x19, 0xd7, 0xc9, 0x5d, 0x48, 0xd4, 0x37, 0x05, 0x62, 0x76, 0x7f, 0xc6, - 0x6d, 0x2e, 0x30, 0xef, 0x7e, 0x06, 0xeb, 0xf8, 0x6d, 0x48, 0x24, 0x9c, 0x3f, 0xfc, 0x8e, 0x8a, - 0xdf, 0x1f, 0x6c, 0x80, 0x8e, 0x8f, 0x2d, 0xc6, 0xe1, 0xf0, 0xa1, 0xb9, 0x11, 0x36, 0xd4, 0x30, - 0xd5, 0xc3, 0x09, 0x74, 0xc5, 0x42, 0x55, 0xe5, 0x44, 0xa8, 0xca, 0xb8, 0x8c, 0xad, 0x1b, 0x07, - 0x92, 0x13, 0x8f, 0x7a, 0x57, 0x0b, 0x6f, 0xab, 0x31, 0xcb, 0x41, 0xc5, 0x19, 0x68, 0x22, 0x6e, - 0x1c, 0x05, 0x6f, 0xe5, 0xe8, 0xa6, 0xf8, 0x40, 0x91, 0x92, 0x0d, 0x7c, 0x1a, 0x10, 0x06, 0xf6, - 0x2d, 0x9c, 0x43, 0x11, 0x2a, 0x73, 0x00, 0x87, 0xd7, 0x93, 0x61, 0x52, 0x28, 0x07, 0x80, 0xa1, - 0x7b, 0x5b, 0xa3, 0x27, 0x20, 0xa6, 0xc1, 0x01, 0x20, 0x24, 0xfd, 0x9d, 0xc0, 0xc0, 0x40, 0xfe, - 0x11, 0x5e, 0x7e, 0xc8, 0xa2, 0x9d, 0xb7, 0xfc, 0xec, 0xee, 0x48, 0x4d, 0x2e, 0x94, 0x39, 0x09, - 0x4c, 0x36, 0x99, 0x22, 0xc3, 0x2b, 0xca, 0xb0, 0x91, 0x82, 0x47, 0xea, 0xa3, 0xa0, 0xd7, 0xbd, - 0xdb, 0x66, 0xb9, 0xdc, 0xe4, 0x41, 0x61, 0xce, 0x69, 0xe3, 0x41, 0x1c, 0x17, 0xce, 0x06, 0xf1, - 0x5e, 0x2f, 0xb5, 0xc6, 0xff, 0xf7, 0xe0, 0x81, 0x45, 0x02, 0xfa, 0x2f, 0xbb, 0xde, 0xa6, 0x92, - 0xc6, 0x7b, 0xbe, 0xe2, 0x4f, 0x83, 0xea, 0xba, 0x20, 0x9c, 0xbb, 0xb6, 0x4d, 0xf9, 0xa6, 0xfa, - 0x02, 0x18, 0x15, 0xdf, 0x2e, 0x24, 0xcc, 0x9a, 0x4d, 0xc0, 0x65, 0x21, 0xf6, 0xf2, 0x59, 0x88, - 0x51, 0xa7, 0xf5, 0xf1, 0x9d, 0xc6, 0x5f, 0x87, 0xf4, 0xc7, 0xae, 0x43, 0xc8, 0x6c, 0x90, 0x66, - 0xbd, 0x28, 0x36, 0x43, 0x92, 0x52, 0x7f, 0x6d, 0xdb, 0x34, 0xdb, 0x66, 0x5d, 0xaf, 0x5c, 0xc4, - 0x33, 0x58, 0xba, 0x45, 0x13, 0x47, 0xbf, 0xcf, 0xc9, 0x2e, 0x5e, 0xa4, 0x5e, 0xe9, 0x36, 0x1a, - 0xd0, 0xf7, 0xf7, 0x39, 0xb9, 0x95, 0x2a, 0x53, 0x12, 0x94, 0xa9, 0xe3, 0xcd, 0x78, 0x2a, 0xbc, - 0x4c, 0x9d, 0x3e, 0x25, 0xdb, 0x0a, 0x12, 0xa7, 0x3a, 0x18, 0xbf, 0x49, 0x8b, 0x9e, 0x3d, 0x41, - 0x2b, 0x99, 0x44, 0x54, 0xcc, 0xd7, 0xff, 0x93, 0x86, 0xce, 0x63, 0x75, 0x0b, 0x6a, 0xdb, 0xb8, - 0x3d, 0x57, 0x20, 0x3f, 0x1a, 0x47, 0xa3, 0xe8, 0xd9, 0x70, 0x99, 0x66, 0xff, 0xae, 0x71, 0x7b, - 0xd7, 0x88, 0x74, 0xce, 0x6b, 0x6c, 0x38, 0xf2, 0xc3, 0xe2, 0xc3, 0x48, 0x46, 0xb6, 0xa8, 0x58, - 0xac, 0xd3, 0x80, 0xc9, 0x9e, 0x69, 0xb5, 0x56, 0x16, 0x4a, 0xa6, 0xcd, 0xc7, 0x24, 0x31, 0xf7, - 0xe6, 0x86, 0xd5, 0xb6, 0xe1, 0xeb, 0x78, 0x24, 0xee, 0xef, 0xf1, 0x2e, 0xb9, 0x36, 0x86, 0x19, - 0x5e, 0x11, 0x24, 0x86, 0xf6, 0x7f, 0xf9, 0xeb, 0xfb, 0xa8, 0xf5, 0x9b, 0x6e, 0xab, 0x65, 0xad, - 0xb9, 0x5e, 0x58, 0x4c, 0xb6, 0x8f, 0xe3, 0xa2, 0xeb, 0x33, 0xf4, 0xf8, 0x33, 0x7a, 0xc7, 0x72, - 0x2f, 0x2b, 0x34, 0xad, 0x92, 0xbf, 0xdf, 0x4f, 0x47, 0xcd, 0xdf, 0x9e, 0x45, 0xbb, 0xca, 0x47, - 0x52, 0x43, 0xaa, 0x8d, 0x0c, 0x21, 0xd3, 0xe6, 0x87, 0x9a, 0x90, 0xe4, 0x15, 0xd2, 0xe2, 0x2d, - 0xde, 0x01, 0x4f, 0x60, 0xc8, 0xf7, 0x1a, 0x6e, 0xcb, 0x0d, 0x13, 0x1b, 0xc8, 0x43, 0x7c, 0xa6, - 0xe8, 0x4d, 0xce, 0x14, 0x64, 0x0e, 0x4f, 0x55, 0x29, 0x73, 0x0e, 0xff, 0xb9, 0x26, 0xe4, 0x6a, - 0x1d, 0x98, 0x1d, 0x6a, 0xa0, 0x9f, 0x6e, 0xbc, 0xe9, 0xc2, 0x14, 0x3e, 0x32, 0x0b, 0x95, 0xd3, - 0x2c, 0xd4, 0x2b, 0xb1, 0x50, 0x32, 0x0d, 0x8e, 0x96, 0x5a, 0xa5, 0x2a, 0xcb, 0x57, 0xf2, 0xf2, - 0x39, 0x66, 0x8f, 0x9e, 0x45, 0x84, 0x82, 0xb1, 0x2c, 0x2d, 0xde, 0xd7, 0xb8, 0x72, 0xdf, 0x88, - 0x08, 0x2d, 0xf0, 0x4e, 0x7b, 0x3f, 0xb3, 0xe5, 0x8d, 0x57, 0xf1, 0x2d, 0x65, 0x06, 0x10, 0xe6, - 0x97, 0x06, 0x38, 0x6c, 0xb5, 0x5a, 0xee, 0x5d, 0xfa, 0x9e, 0x06, 0xfb, 0x84, 0x77, 0xc6, 0x3b, - 0x24, 0x65, 0x87, 0x34, 0x35, 0xe7, 0xdd, 0x85, 0xd6, 0x36, 0x24, 0x75, 0x76, 0xfb, 0xa9, 0x8f, - 0x89, 0xb7, 0x0f, 0x29, 0x20, 0x98, 0x2e, 0x97, 0xc0, 0x08, 0x6c, 0x5b, 0x6b, 0xb1, 0xaf, 0xa9, - 0x4a, 0x69, 0x5f, 0x19, 0x7f, 0x41, 0x76, 0x52, 0xf1, 0x2e, 0xdd, 0x4f, 0xb5, 0xc8, 0xae, 0x29, - 0x8e, 0x80, 0xf9, 0xd3, 0x5f, 0xf1, 0x55, 0xc6, 0x77, 0x7c, 0xe9, 0x62, 0xac, 0x83, 0x01, 0x34, - 0x1d, 0x73, 0xe7, 0x4d, 0xf6, 0x9c, 0x3a, 0xdf, 0xc9, 0x2f, 0x6e, 0x87, 0x41, 0x69, 0xcd, 0x71, - 0xe9, 0x48, 0x47, 0x1f, 0x85, 0x52, 0x63, 0x04, 0x25, 0xf3, 0x56, 0x76, 0x99, 0x4b, 0x24, 0x47, - 0x84, 0x77, 0x42, 0x14, 0xbb, 0xc2, 0x2e, 0x24, 0x8f, 0xf3, 0xcd, 0x31, 0x23, 0xcd, 0xe1, 0x53, - 0x54, 0x44, 0xf0, 0x9a, 0x5c, 0x56, 0xca, 0x99, 0x9c, 0x86, 0x45, 0xc4, 0x26, 0x58, 0xfb, 0x37, - 0xb8, 0xeb, 0x23, 0xf4, 0xe5, 0xbc, 0x23, 0xbb, 0x19, 0xa4, 0x86, 0xeb, 0x89, 0x0c, 0xc7, 0xdf, - 0xa9, 0x50, 0x7e, 0x0e, 0xfb, 0x88, 0xf0, 0x5d, 0xee, 0x15, 0x27, 0xbd, 0xd2, 0xec, 0x49, 0xbf, - 0xc1, 0x8d, 0x9a, 0x48, 0xad, 0xa7, 0xce, 0xf1, 0xa0, 0xf8, 0xa5, 0x26, 0x5f, 0x3b, 0xcb, 0xf7, - 0xf8, 0x85, 0x59, 0x50, 0x4d, 0xf9, 0xb1, 0x82, 0x21, 0x00, 0x5e, 0x59, 0x5a, 0xfd, 0xc3, 0x95, - 0x45, 0xf3, 0x77, 0x16, 0xcd, 0xe1, 0x43, 0xd5, 0x41, 0xd0, 0xbf, 0xb2, 0xfa, 0xba, 0x39, 0xf7, - 0xca, 0xe2, 0xb0, 0x56, 0xff, 0xaf, 0xdb, 0xa0, 0xb4, 0xec, 0xdb, 0x55, 0x1f, 0x3c, 0x1e, 0xff, - 0xb5, 0x06, 0x69, 0xfd, 0x55, 0x8c, 0x58, 0xbf, 0x5c, 0x80, 0x98, 0x79, 0xe8, 0xdf, 0x68, 0xa0, - 0x96, 0xf9, 0x1b, 0x0b, 0x57, 0x64, 0x2d, 0x66, 0x71, 0xe9, 0x2f, 0xec, 0x86, 0x8b, 0x01, 0xda, - 0x01, 0x47, 0x92, 0xbf, 0x87, 0x30, 0x25, 0x6b, 0x32, 0x41, 0xae, 0x5f, 0x2d, 0x44, 0xce, 0x44, - 0x37, 0x01, 0xe0, 0x7e, 0xb4, 0x40, 0x5a, 0xfc, 0x17, 0xd1, 0xe9, 0xd3, 0x6a, 0x74, 0xbc, 0x14, - 0xee, 0xa7, 0x06, 0xa4, 0x52, 0x22, 0x3a, 0xb9, 0x94, 0xe4, 0x6f, 0x05, 0x20, 0x29, 0xdc, 0x0f, - 0x05, 0x48, 0xa5, 0x44, 0x74, 0x72, 0x29, 0xc9, 0x4a, 0xf1, 0xaa, 0x05, 0x2a, 0x51, 0xc9, 0xf0, - 0x19, 0xa5, 0x32, 0x6c, 0x7d, 0x4a, 0x89, 0x8c, 0x89, 0xe8, 0x80, 0xa1, 0x58, 0x69, 0xf2, 0x05, - 0xf5, 0xea, 0x60, 0xbd, 0xae, 0x4e, 0xcb, 0x24, 0xfe, 0x31, 0x38, 0x2c, 0x94, 0xcc, 0x4e, 0xe4, - 0x1b, 0x85, 0x4a, 0xbb, 0xa4, 0x4a, 0xc9, 0x7b, 0x7b, 0xb2, 0x46, 0x77, 0x2a, 0x17, 0xb4, 0x20, - 0xf5, 0x6a, 0x21, 0x72, 0x26, 0xfa, 0x77, 0x41, 0x1f, 0x2d, 0x2f, 0x35, 0xf2, 0xcb, 0x5c, 0xf5, - 0x0b, 0xf9, 0x34, 0xac, 0x65, 0x1b, 0x0c, 0xf2, 0xd5, 0xab, 0xe7, 0x14, 0x8b, 0x48, 0xf5, 0x19, - 0x45, 0x42, 0xde, 0xfd, 0xa2, 0x7a, 0xcb, 0x33, 0x2a, 0xbe, 0x6b, 0xcb, 0xdd, 0x2f, 0x51, 0x29, - 0xc9, 0xdc, 0x2f, 0x92, 0x73, 0x41, 0xd1, 0xdc, 0x48, 0x58, 0x5d, 0x9d, 0x96, 0x57, 0x2a, 0xaa, - 0xcb, 0x94, 0x2a, 0xc5, 0xc8, 0xe4, 0x4a, 0x25, 0x8a, 0x2a, 0xab, 0xdb, 0x60, 0x38, 0x51, 0x50, - 0x39, 0x99, 0x3f, 0xc1, 0x44, 0xd4, 0xfa, 0x95, 0x22, 0xd4, 0xfc, 0xc8, 0x12, 0x2a, 0x22, 0x27, - 0xe4, 0x2b, 0x45, 0x44, 0x29, 0x1f, 0x59, 0x69, 0xa5, 0x90, 0x48, 0x96, 0x50, 0x06, 0x39, 0x91, - 0x3f, 0x4d, 0x13, 0x4a, 0xb9, 0xac, 0xd4, 0x7a, 0xc1, 0x3f, 0x07, 0xd5, 0x94, 0xe2, 0x40, 0x85, - 0x29, 0x9b, 0xa7, 0xd7, 0x9f, 0x29, 0x46, 0xcf, 0x0f, 0x37, 0xbe, 0x3c, 0x50, 0x3a, 0xdc, 0x38, - 0x42, 0xf9, 0x70, 0x4b, 0x29, 0x1a, 0xe4, 0x26, 0x46, 0x05, 0x93, 0xf2, 0x94, 0x4a, 0x13, 0xa3, - 0x28, 0xeb, 0x0f, 0xc0, 0x00, 0xfb, 0xbd, 0xad, 0xa7, 0x65, 0xdc, 0x21, 0x95, 0x3e, 0xa9, 0x42, - 0xc5, 0xda, 0xdf, 0x02, 0x8f, 0x89, 0x45, 0x8a, 0xe7, 0xf3, 0x7b, 0x9d, 0x92, 0xea, 0xb3, 0xca, - 0xa4, 0xbc, 0x38, 0xb1, 0x22, 0xef, 0x7c, 0x7e, 0x67, 0x2b, 0x89, 0x4b, 0xad, 0x69, 0x43, 0xe2, - 0xc4, 0x82, 0xb6, 0xf3, 0xf9, 0x1d, 0xa0, 0x24, 0x2e, 0xb5, 0xd0, 0x0d, 0xad, 0x62, 0xc9, 0x22, - 0xb7, 0xa9, 0x7c, 0x2b, 0x71, 0xe4, 0xf2, 0x55, 0x2c, 0xbb, 0xe0, 0xea, 0x03, 0x0d, 0x1c, 0xcf, - 0xa8, 0xa5, 0xaa, 0xe7, 0xdb, 0x2d, 0xce, 0xa3, 0x5f, 0x2f, 0xce, 0xc3, 0xa0, 0x7c, 0xa6, 0x81, - 0x53, 0xd2, 0x6a, 0xa9, 0x6b, 0x85, 0x1a, 0xe7, 0x38, 0xf5, 0x97, 0x76, 0xcb, 0x29, 0xd8, 0x29, - 0xa3, 0x12, 0x4a, 0x6a, 0xa7, 0x74, 0x1e, 0xb9, 0x9d, 0xe4, 0x85, 0x4e, 0xd5, 0xb7, 0xc0, 0x48, - 0x5a, 0x91, 0xd3, 0x4c, 0xce, 0x0e, 0x23, 0xce, 0xa0, 0x3f, 0x5b, 0x90, 0x81, 0x01, 0xf8, 0x50, - 0x03, 0x27, 0xb2, 0x6a, 0x89, 0x2e, 0xe7, 0xac, 0xa4, 0x69, 0x4c, 0xfa, 0xf3, 0xbb, 0x60, 0x62, - 0x68, 0x3e, 0xd5, 0x80, 0x2e, 0x29, 0x13, 0x7a, 0x26, 0x7f, 0xe5, 0x4b, 0xc5, 0x74, 0x63, 0x77, - 0x7c, 0x12, 0x23, 0x45, 0xc9, 0x23, 0x05, 0x8c, 0xc4, 0x98, 0x8a, 0x18, 0x29, 0x91, 0x1d, 0x92, - 0x6e, 0xa4, 0x08, 0x50, 0x31, 0x23, 0x45, 0x98, 0x6e, 0xec, 0x8e, 0x8f, 0xc1, 0xfa, 0x58, 0x03, - 0xa3, 0xd9, 0xd5, 0x3b, 0xd2, 0x29, 0x2d, 0x93, 0x4d, 0x7f, 0x71, 0x57, 0x6c, 0x0c, 0xd3, 0x3f, - 0x6a, 0xe0, 0xa4, 0xac, 0x0c, 0x47, 0x3a, 0x6c, 0x24, 0x8c, 0xfa, 0x6f, 0xec, 0x92, 0x91, 0x21, - 0x7b, 0x5b, 0x03, 0x47, 0x53, 0x2b, 0x6a, 0x2e, 0xa9, 0xbb, 0x06, 0xe1, 0xd0, 0xaf, 0x15, 0xe5, - 0x10, 0xfc, 0x3a, 0xab, 0x56, 0xe6, 0x72, 0x21, 0x77, 0xa0, 0x50, 0x9e, 0xdf, 0x05, 0x13, 0xbf, - 0x72, 0x26, 0x0b, 0x61, 0x14, 0x8e, 0x28, 0xca, 0x2b, 0x67, 0x66, 0xf9, 0x0b, 0x3a, 0x67, 0x44, - 0xa5, 0x2f, 0x67, 0xf2, 0x57, 0xdf, 0x05, 0xcb, 0xd5, 0xa7, 0x94, 0xc8, 0x78, 0x11, 0x51, 0x05, - 0xca, 0x19, 0xb9, 0x9d, 0x28, 0x99, 0x5c, 0x44, 0xa2, 0x02, 0x05, 0xfb, 0x54, 0x6a, 0xfd, 0xc9, - 0xa5, 0xfc, 0x25, 0x53, 0xe4, 0xd0, 0xaf, 0x15, 0xe5, 0x48, 0x9e, 0xa7, 0xb8, 0xca, 0x93, 0x49, - 0xa5, 0xd6, 0x28, 0xb5, 0xca, 0x79, 0x2a, 0x59, 0x82, 0x82, 0xbc, 0x27, 0x59, 0x7f, 0x32, 0xa5, - 0xd4, 0x54, 0x48, 0x2e, 0xf7, 0x9e, 0xcc, 0xfa, 0x93, 0xaa, 0x0f, 0x1e, 0x8f, 0x17, 0x9f, 0x5c, - 0x54, 0x6a, 0x89, 0x10, 0xcb, 0x83, 0x95, 0x19, 0x45, 0x28, 0xd1, 0x79, 0x3f, 0xd7, 0x9f, 0x18, - 0x99, 0xca, 0x79, 0x9f, 0xf7, 0x27, 0x76, 0x2e, 0x08, 0xb3, 0xf8, 0x15, 0xce, 0x05, 0x94, 0x54, - 0xe5, 0x5c, 0x10, 0x2f, 0xc8, 0x60, 0xe7, 0x02, 0x25, 0x71, 0x02, 0xa9, 0xca, 0xb9, 0x20, 0x45, - 0x9c, 0x58, 0xa3, 0xa0, 0x70, 0x2e, 0x50, 0x12, 0x97, 0x5a, 0x29, 0x50, 0x7d, 0x4f, 0x03, 0xc7, - 0xd2, 0xcb, 0x04, 0x66, 0xf3, 0x63, 0xd5, 0x31, 0x16, 0xfd, 0xb9, 0xc2, 0x2c, 0xc2, 0x09, 0x99, - 0x4b, 0xca, 0x3f, 0x97, 0xdf, 0x4f, 0x98, 0x30, 0xe7, 0x84, 0x9c, 0x92, 0x4a, 0xce, 0x26, 0x02, - 0x2e, 0x4b, 0x5c, 0x61, 0x22, 0x88, 0xa8, 0x55, 0x26, 0x82, 0x64, 0x12, 0x38, 0x77, 0x0a, 0x4a, - 0x64, 0x80, 0xd7, 0x15, 0x1b, 0xe4, 0x67, 0xc2, 0xeb, 0xc5, 0x79, 0x78, 0x13, 0x24, 0xd2, 0xba, - 0x27, 0xf3, 0xbb, 0x2e, 0xa2, 0x96, 0x9b, 0x20, 0x33, 0x53, 0x7b, 0x07, 0x1c, 0x49, 0xe6, 0x63, - 0xe7, 0xc5, 0xc5, 0x44, 0xf2, 0x9c, 0x7b, 0x83, 0xac, 0x3c, 0x6b, 0xbc, 0x06, 0xa5, 0x26, 0x59, - 0x2b, 0x44, 0xad, 0x62, 0x08, 0xae, 0x15, 0xe5, 0xe0, 0x03, 0x95, 0xb1, 0xe4, 0xe9, 0x0b, 0x2a, - 0xda, 0xd0, 0x4d, 0x4c, 0x5d, 0x9d, 0x96, 0xb7, 0x78, 0x32, 0x1f, 0x7a, 0x4a, 0x51, 0x01, 0x2a, - 0xf7, 0x6a, 0x21, 0x72, 0x7e, 0x40, 0xf3, 0x69, 0xce, 0xe7, 0xf2, 0xa7, 0x26, 0x85, 0x01, 0x9d, - 0x92, 0xd6, 0x8c, 0xbc, 0x39, 0x91, 0xd3, 0x3c, 0xa9, 0x12, 0xfe, 0x09, 0xa9, 0xe5, 0xde, 0x9c, - 0x99, 0xb2, 0x8c, 0x5c, 0x2a, 0x35, 0xbd, 0xf8, 0x52, 0xfe, 0xc1, 0x5b, 0xe4, 0x90, 0xbb, 0x94, - 0x2c, 0x09, 0x17, 0xb9, 0x54, 0x4c, 0xba, 0xd4, 0xa5, 0x62, 0x72, 0xeb, 0xea, 0xb4, 0xc2, 0x82, - 0x91, 0x9e, 0x91, 0x3a, 0xab, 0xde, 0x1a, 0x65, 0x91, 0x2f, 0x18, 0xf2, 0xc4, 0xd2, 0x6d, 0x30, - 0x9c, 0x48, 0x22, 0x9d, 0xcc, 0xdf, 0x98, 0xaa, 0x76, 0x7b, 0x56, 0x2a, 0x28, 0x39, 0xbb, 0x49, - 0xf2, 0x40, 0x9f, 0x55, 0x09, 0x05, 0xa6, 0x30, 0xe6, 0x9c, 0xdd, 0xf2, 0x53, 0x39, 0xf1, 0x3d, - 0x71, 0x66, 0x1e, 0xe7, 0x95, 0x22, 0xad, 0x87, 0x5c, 0xf2, 0x7b, 0xe2, 0xbc, 0x6c, 0x4c, 0xbc, - 0xa6, 0x73, 0x99, 0x98, 0xf2, 0x35, 0x3d, 0x22, 0xcc, 0x59, 0xd3, 0x93, 0x89, 0x94, 0x5c, 0x58, - 0x2f, 0x23, 0xc7, 0xf0, 0x5a, 0x11, 0x3d, 0x78, 0x4e, 0x95, 0xb0, 0x9e, 0x3c, 0x6b, 0x10, 0x83, - 0x93, 0x26, 0x40, 0x2a, 0x2c, 0x28, 0xbb, 0x01, 0xa7, 0x92, 0xd2, 0x88, 0x47, 0x73, 0x7a, 0x3e, - 0xe3, 0x6c, 0x91, 0x49, 0x11, 0xb3, 0xc8, 0x47, 0xb3, 0x3c, 0xc5, 0x10, 0xe1, 0x48, 0xcf, 0x27, - 0x9c, 0x2d, 0xd2, 0x01, 0x0a, 0x38, 0xa4, 0x89, 0x7c, 0x18, 0x47, 0x7a, 0x16, 0x9f, 0x52, 0xcc, - 0xbd, 0x00, 0x0e, 0x69, 0x2a, 0x1e, 0x9a, 0xdd, 0x12, 0xbf, 0x53, 0x9e, 0xf7, 0x1b, 0xea, 0x02, - 0xb5, 0x7c, 0x76, 0xcb, 0xfa, 0xa5, 0x71, 0x1c, 0x7a, 0xc9, 0xca, 0xff, 0x53, 0x48, 0x5e, 0x49, - 0x30, 0xc9, 0x43, 0x2f, 0x79, 0x09, 0x7e, 0x6f, 0x81, 0x91, 0xb4, 0xc4, 0xbd, 0x99, 0xfc, 0x36, - 0x05, 0x06, 0x79, 0x18, 0x5a, 0x96, 0x95, 0xb7, 0x0d, 0x86, 0x13, 0xf9, 0x75, 0x93, 0x45, 0x7a, - 0x55, 0xde, 0x0d, 0x59, 0x99, 0x73, 0x51, 0x9a, 0x0b, 0xce, 0x79, 0x52, 0x48, 0x73, 0x41, 0x74, - 0x2a, 0x69, 0x2e, 0x42, 0xea, 0x1b, 0xbb, 0x13, 0x15, 0xf2, 0xdc, 0x14, 0xee, 0x44, 0x79, 0x7a, - 0x95, 0x3b, 0xd1, 0xb4, 0xc4, 0x37, 0xb4, 0x75, 0x89, 0x65, 0xbd, 0x5d, 0x50, 0x6b, 0x09, 0xd1, - 0xea, 0x75, 0x75, 0xda, 0xe4, 0x49, 0x3e, 0xcc, 0x83, 0x3b, 0xaf, 0xd6, 0xc8, 0xbc, 0xe3, 0xaa, - 0x9c, 0xe4, 0x63, 0xd9, 0x71, 0xd1, 0x49, 0x93, 0x4b, 0x8d, 0x9b, 0x54, 0x6b, 0x86, 0x46, 0x60, - 0xae, 0x14, 0xa1, 0x4e, 0xe6, 0x15, 0xe5, 0x3b, 0x4f, 0x44, 0xa7, 0x92, 0x57, 0x24, 0x38, 0xcf, - 0xc7, 0x1a, 0x18, 0xcd, 0xfe, 0x5f, 0x25, 0x57, 0x8b, 0x4c, 0xc1, 0x8c, 0x4d, 0x1e, 0x57, 0xcf, - 0xfd, 0xaf, 0x21, 0xf8, 0x8c, 0x9d, 0xf1, 0x2f, 0x43, 0xf2, 0x4e, 0x4f, 0x69, 0x68, 0xae, 0x17, - 0xe7, 0x09, 0xa1, 0xcc, 0xbf, 0xf2, 0xe5, 0xfd, 0x31, 0xed, 0xab, 0xfb, 0x63, 0xda, 0x37, 0xf7, - 0xc7, 0xb4, 0xbf, 0x7b, 0x30, 0x76, 0xe8, 0xab, 0x07, 0x63, 0x87, 0x7e, 0xfa, 0x60, 0xec, 0xd0, - 0xef, 0x4d, 0x71, 0x15, 0xf4, 0xe1, 0x7f, 0xb3, 0x0a, 0xff, 0x6e, 0xd7, 0x67, 0xee, 0xb1, 0x07, - 0x5c, 0x4c, 0xbf, 0xd6, 0x87, 0xff, 0xc1, 0xd5, 0xe5, 0x5f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x21, - 0xed, 0x75, 0xc3, 0x7e, 0x6c, 0x00, 0x00, + 0x41, 0x6e, 0x0e, 0x10, 0x04, 0xd8, 0xdd, 0xd3, 0x62, 0xff, 0x00, 0x9f, 0x16, 0x5e, 0x2c, 0x76, + 0xb1, 0xa7, 0xb5, 0x21, 0x1d, 0xf7, 0xb0, 0xa7, 0xbd, 0x2f, 0xea, 0xa3, 0xab, 0xab, 0xfa, 0xa3, + 0xba, 0x9a, 0xa6, 0x48, 0xd9, 0xd8, 0x13, 0xa7, 0xab, 0xdf, 0xab, 0xf7, 0xab, 0x57, 0xaf, 0xbe, + 0x5e, 0xbd, 0xd7, 0x04, 0xc3, 0xb6, 0x13, 0xb8, 0x1d, 0xc7, 0x9a, 0x09, 0xee, 0x4e, 0x77, 0x3c, + 0x37, 0x70, 0xab, 0x27, 0x68, 0xc9, 0x74, 0xec, 0xaf, 0x7e, 0xd4, 0x76, 0x6d, 0x17, 0xd3, 0xcc, + 0xa0, 0x5f, 0x84, 0x5c, 0xaf, 0xb2, 0x0a, 0x2c, 0x7f, 0x93, 0x96, 0x1d, 0x0d, 0xcb, 0xd6, 0x3c, + 0xab, 0xdd, 0xd8, 0xa0, 0xa5, 0x47, 0x22, 0x4a, 0x3b, 0x4e, 0xb8, 0x05, 0xb7, 0xd6, 0xa0, 0x97, + 0x60, 0x77, 0xbb, 0xed, 0x60, 0x87, 0x96, 0x1e, 0x0b, 0x4b, 0x3d, 0xd8, 0x82, 0x96, 0x0f, 0x69, + 0xf1, 0x68, 0x58, 0xdc, 0xe9, 0xb6, 0x5a, 0x26, 0xfc, 0xab, 0x2e, 0xf4, 0x83, 0xb8, 0xc0, 0xa6, + 0xe5, 0xc6, 0x2b, 0x69, 0xb8, 0x5b, 0x5b, 0xb0, 0x1d, 0x52, 0x8e, 0x84, 0xc5, 0x8e, 0xef, 0x77, + 0xc3, 0x9a, 0x6b, 0x91, 0xc0, 0x8e, 0xeb, 0x3b, 0x81, 0xeb, 0xed, 0xc4, 0xc9, 0xef, 0x6c, 0xb8, + 0x8e, 0x4f, 0x0b, 0xc7, 0x1a, 0xae, 0xbf, 0xe5, 0xfa, 0x33, 0x6b, 0x96, 0x0f, 0x67, 0xb6, 0x67, + 0xd7, 0x60, 0x60, 0xcd, 0xce, 0x34, 0x5c, 0xa7, 0x1d, 0xaf, 0xce, 0x0a, 0x02, 0xab, 0xb1, 0xc1, + 0x49, 0x3f, 0x1e, 0x09, 0xb2, 0x1a, 0x81, 0xe3, 0x52, 0x0e, 0xe3, 0x3f, 0x35, 0x30, 0xb8, 0xec, + 0xdb, 0x8b, 0x77, 0xa1, 0xd7, 0x70, 0x7c, 0x58, 0xad, 0x81, 0xfe, 0x86, 0x07, 0xad, 0xc0, 0xf5, + 0x6a, 0xda, 0xb8, 0x36, 0x51, 0x31, 0xc3, 0xc7, 0xea, 0x1a, 0xe8, 0xb3, 0xb6, 0x90, 0xb2, 0x6a, + 0x3d, 0xe3, 0xda, 0xc4, 0x60, 0x7d, 0x74, 0x9a, 0x80, 0x99, 0x46, 0x60, 0xa6, 0x29, 0x98, 0xe9, + 0x1b, 0xae, 0xd3, 0x9e, 0x9f, 0xf9, 0xe2, 0x97, 0xa7, 0x0f, 0xbd, 0xf5, 0xd5, 0xe9, 0x73, 0xb6, + 0x13, 0x6c, 0x74, 0xd7, 0xa6, 0x1b, 0xee, 0xd6, 0x0c, 0x45, 0x4e, 0xfe, 0x4c, 0xf9, 0xcd, 0xcd, + 0x99, 0x60, 0xa7, 0x03, 0x7d, 0xcc, 0x60, 0xd2, 0x9a, 0xab, 0x43, 0xa0, 0x27, 0x70, 0x6b, 0x25, + 0x2c, 0xb8, 0x27, 0x70, 0x8d, 0x63, 0x60, 0x84, 0x03, 0x67, 0x42, 0xbf, 0xe3, 0xb6, 0x7d, 0x68, + 0xfc, 0x97, 0x06, 0xaa, 0xcb, 0xbe, 0xbd, 0xea, 0xda, 0x76, 0x0b, 0xbe, 0xe4, 0x7a, 0x0d, 0x78, + 0xab, 0xeb, 0x6f, 0x48, 0xb0, 0xbf, 0x06, 0x0e, 0x47, 0x0a, 0x5e, 0x6a, 0xd2, 0x16, 0x9c, 0x99, + 0xce, 0x30, 0xc3, 0x69, 0x93, 0x23, 0x9e, 0x2f, 0xa3, 0xd6, 0x98, 0x42, 0x05, 0xd5, 0x31, 0x00, + 0x88, 0xdd, 0xbd, 0x6a, 0x6d, 0x41, 0x0a, 0x98, 0x2b, 0x31, 0x4e, 0x01, 0x3d, 0x09, 0x90, 0xe1, + 0xff, 0xa1, 0x06, 0x4e, 0x2e, 0xfb, 0xb6, 0x09, 0xb7, 0xdd, 0x4d, 0x78, 0xcb, 0x73, 0xb7, 0x9d, + 0x26, 0xf4, 0x6e, 0x41, 0x6f, 0xcb, 0xf1, 0x7d, 0xc7, 0x6d, 0x4b, 0x1a, 0x52, 0x03, 0xfd, 0xb6, + 0x67, 0xb5, 0x03, 0xe8, 0xe1, 0x36, 0x54, 0xcc, 0xf0, 0xb1, 0xaa, 0x83, 0x81, 0x0e, 0xad, 0x89, + 0xe2, 0x61, 0xcf, 0xd5, 0x3f, 0x00, 0xa0, 0xc3, 0x6a, 0xaf, 0x95, 0xc7, 0xb5, 0x89, 0xa1, 0xfa, + 0xc5, 0xcc, 0xc6, 0x27, 0x01, 0x99, 0x1c, 0xbb, 0x71, 0x06, 0x3c, 0x21, 0xc1, 0xce, 0xda, 0xf8, + 0x7d, 0x0d, 0x1c, 0x5d, 0xf6, 0xed, 0xb9, 0x6e, 0xb0, 0xe1, 0x7a, 0xce, 0x5f, 0x33, 0xd2, 0x87, + 0xbb, 0x71, 0x63, 0xe0, 0x54, 0x1a, 0x68, 0xd6, 0xaa, 0x77, 0x34, 0xf0, 0xc8, 0xb2, 0x6f, 0xdf, + 0x40, 0x88, 0xe1, 0xaa, 0xe5, 0x6f, 0x4a, 0x9a, 0xf3, 0x02, 0x18, 0x40, 0xf3, 0xd5, 0xea, 0x4e, + 0x07, 0xe2, 0xf6, 0x0c, 0xd5, 0x1f, 0xcf, 0x84, 0xb5, 0x4a, 0x09, 0x4d, 0xc6, 0x22, 0x6b, 0xb3, + 0x71, 0x0e, 0x1c, 0x13, 0x50, 0x84, 0xf8, 0xd0, 0x00, 0x72, 0x9a, 0x18, 0x48, 0xd9, 0xec, 0x71, + 0x9a, 0xc6, 0x87, 0x04, 0xef, 0xed, 0x4e, 0x33, 0x1f, 0x2f, 0xe1, 0xed, 0x09, 0x79, 0xab, 0x57, + 0x41, 0xaf, 0x1f, 0x58, 0x01, 0x31, 0xef, 0xa1, 0xba, 0x21, 0x05, 0xbf, 0x82, 0x28, 0x4d, 0xc2, + 0x80, 0x64, 0x6c, 0x41, 0xdf, 0xb7, 0x6c, 0x88, 0xfb, 0xa3, 0x62, 0x86, 0x8f, 0xc6, 0x09, 0x0c, + 0x3c, 0x82, 0xc3, 0x14, 0xfb, 0x2c, 0xc6, 0xb9, 0x00, 0x5b, 0xb0, 0x28, 0x4e, 0xe3, 0x9e, 0x86, + 0x3b, 0x8d, 0x54, 0x1a, 0x8d, 0xdc, 0x79, 0xab, 0xb1, 0xd9, 0xed, 0x98, 0x70, 0x7d, 0x3f, 0xe7, + 0x85, 0x45, 0xa4, 0x33, 0xd7, 0x0b, 0x75, 0x36, 0xa3, 0x50, 0x13, 0xc1, 0x39, 0xbd, 0x82, 0xd8, + 0x4c, 0xc2, 0x5d, 0x1d, 0x06, 0x25, 0x0f, 0xae, 0x53, 0xe5, 0xa1, 0x9f, 0xc6, 0x59, 0xf0, 0xa4, + 0xac, 0x8d, 0x4c, 0x8f, 0x5f, 0x69, 0x60, 0x14, 0x59, 0x70, 0xb3, 0xf9, 0x5d, 0xd5, 0xc4, 0x13, + 0xe0, 0xf1, 0xcc, 0x06, 0x32, 0x35, 0x10, 0x3b, 0x8b, 0xcc, 0x89, 0xbd, 0x30, 0xc0, 0x38, 0x7b, + 0x81, 0x04, 0x59, 0x76, 0x72, 0x90, 0xff, 0x46, 0x03, 0x87, 0x97, 0x7d, 0x7b, 0x05, 0x06, 0xf3, + 0x78, 0x46, 0xdf, 0x4f, 0xb5, 0xfd, 0x3e, 0xe8, 0x23, 0xcb, 0x08, 0xd6, 0xdb, 0x60, 0x7d, 0x32, + 0xb3, 0x2a, 0x1e, 0xe1, 0x34, 0xf9, 0x43, 0x6b, 0xa4, 0x35, 0xe8, 0xd3, 0xa0, 0x8f, 0x36, 0xa0, + 0x0a, 0xca, 0x6d, 0xb4, 0x50, 0x11, 0xf4, 0xf8, 0x37, 0xd2, 0xac, 0xbf, 0x61, 0xd1, 0x99, 0x16, + 0xfd, 0x34, 0x8e, 0xe3, 0x19, 0x9b, 0x55, 0xca, 0xf4, 0xf1, 0x1f, 0x1a, 0x5e, 0x86, 0x57, 0x60, + 0xb0, 0x00, 0xd7, 0xad, 0x6e, 0xeb, 0x00, 0xd4, 0x72, 0x5c, 0x50, 0x4b, 0x25, 0x6c, 0xa2, 0xf1, + 0x18, 0x5e, 0x48, 0xe3, 0xc8, 0x18, 0xf2, 0xb7, 0x7b, 0xc0, 0x91, 0x65, 0xdf, 0x5e, 0xee, 0xb6, + 0x02, 0xe7, 0x40, 0xba, 0x73, 0x05, 0x0c, 0x10, 0xa4, 0xd0, 0xaf, 0x95, 0xc6, 0x4b, 0x13, 0x83, + 0xf5, 0x59, 0x59, 0x87, 0x8a, 0x40, 0xc5, 0x5e, 0x65, 0x15, 0x15, 0xee, 0xd7, 0x93, 0x78, 0x4a, + 0x10, 0xeb, 0x66, 0x2a, 0xfa, 0x44, 0x03, 0x8f, 0xb2, 0x11, 0xf1, 0xf0, 0x74, 0xec, 0x28, 0x38, + 0x11, 0x43, 0xc5, 0x10, 0x7f, 0x46, 0x76, 0x16, 0xb8, 0x3d, 0x07, 0x05, 0x5b, 0x8f, 0xf5, 0x6b, + 0x25, 0xea, 0x1e, 0xba, 0x87, 0x48, 0xc0, 0x63, 0xf8, 0xef, 0x6b, 0xa0, 0x42, 0x8c, 0x76, 0xd5, + 0xb2, 0xf7, 0x13, 0xf4, 0x75, 0x50, 0x0a, 0x2c, 0x9b, 0x4e, 0x2c, 0x67, 0x73, 0x26, 0x96, 0x55, + 0xcb, 0x9e, 0x5e, 0xb5, 0x6c, 0x5a, 0x11, 0x62, 0xd4, 0x2f, 0x82, 0x12, 0x42, 0xac, 0x66, 0x74, + 0x23, 0x78, 0xe4, 0x91, 0x8a, 0x58, 0xd3, 0x7f, 0xad, 0x81, 0x21, 0xce, 0x14, 0xf7, 0xb9, 0xfd, + 0x8b, 0xa0, 0x1c, 0x58, 0x76, 0x38, 0x10, 0x2f, 0xaa, 0x0c, 0x44, 0x51, 0x0b, 0x98, 0xbd, 0x98, + 0x1a, 0x6a, 0xe0, 0xb8, 0x58, 0x1d, 0xd3, 0xc5, 0x07, 0x64, 0x95, 0x09, 0xd7, 0xa8, 0x7d, 0xd5, + 0xc4, 0x70, 0x64, 0x09, 0x15, 0xdc, 0xb7, 0x74, 0xee, 0x67, 0x60, 0x18, 0xca, 0x8f, 0xb5, 0x68, + 0x06, 0x3d, 0x10, 0xa8, 0x55, 0xae, 0xd3, 0x2a, 0xa4, 0x07, 0xf8, 0x09, 0x2d, 0x89, 0xf8, 0x9f, + 0x89, 0x5e, 0xe7, 0x9a, 0xcd, 0x65, 0x7c, 0xe0, 0x97, 0x80, 0x3d, 0x0a, 0x7a, 0x9b, 0x96, 0x4b, + 0x51, 0x56, 0x4c, 0xf2, 0x80, 0xa6, 0xa4, 0xae, 0x0f, 0xbd, 0xa5, 0x66, 0x38, 0x25, 0x91, 0xa7, + 0xea, 0x33, 0xa0, 0xec, 0xb9, 0x2d, 0x48, 0x8f, 0x18, 0x4f, 0x64, 0x9b, 0x0f, 0x16, 0x6b, 0xba, + 0x2d, 0x68, 0x62, 0x06, 0xaa, 0x5b, 0x06, 0x88, 0x21, 0xfd, 0x37, 0xb2, 0xae, 0x92, 0x4d, 0x5d, + 0xc4, 0x75, 0xf0, 0x80, 0xc9, 0xaa, 0x1a, 0xc7, 0xc5, 0x70, 0xbf, 0x81, 0x57, 0x0c, 0x13, 0x6e, + 0xb9, 0xdb, 0x70, 0x6f, 0x75, 0x4c, 0xa7, 0x7d, 0xbe, 0x6a, 0x26, 0xf5, 0xf3, 0x1e, 0x2c, 0x96, + 0x1c, 0x7a, 0xe6, 0xb1, 0xd7, 0x46, 0x22, 0xb6, 0xc1, 0x79, 0x2b, 0x4a, 0x72, 0x6f, 0xc5, 0x25, + 0x64, 0x75, 0xff, 0xfb, 0xd5, 0xe9, 0x09, 0x45, 0x6f, 0x85, 0xcf, 0xdc, 0x15, 0xc7, 0x41, 0x1f, + 0xbc, 0xdb, 0x71, 0xbc, 0x1d, 0xdc, 0x8a, 0x92, 0x49, 0x9f, 0xaa, 0x46, 0x6c, 0x10, 0x94, 0xf1, + 0x59, 0x45, 0xb4, 0xeb, 0x53, 0xa0, 0xd2, 0xb1, 0x3c, 0xd8, 0x0e, 0x96, 0x9c, 0x66, 0xad, 0x17, + 0x13, 0x44, 0x05, 0xd5, 0x17, 0x40, 0x1f, 0x79, 0xa8, 0xf5, 0xe1, 0xce, 0xcb, 0x1e, 0x40, 0x44, + 0x13, 0xb7, 0x30, 0xb1, 0x49, 0x99, 0x8c, 0xf3, 0x58, 0x8d, 0xbc, 0xaa, 0x32, 0x4f, 0x88, 0x6f, + 0x70, 0x27, 0x32, 0x42, 0xba, 0x48, 0x1a, 0xa1, 0x7e, 0x50, 0xcc, 0x50, 0x83, 0x71, 0x1a, 0x3c, + 0x96, 0x5a, 0x35, 0xeb, 0xd2, 0x6b, 0x78, 0x35, 0xb8, 0xd1, 0x72, 0xfd, 0xfc, 0x0e, 0x8d, 0x9f, + 0xfa, 0xc8, 0xc4, 0xca, 0xf1, 0xb2, 0x5a, 0x9f, 0xe3, 0x37, 0x34, 0x45, 0xab, 0x15, 0xf6, 0x1d, + 0x62, 0xbd, 0x3f, 0xed, 0x01, 0xc3, 0x4c, 0xab, 0x26, 0x71, 0x10, 0xee, 0xe7, 0x4c, 0x58, 0x03, + 0xfd, 0x81, 0x65, 0x73, 0x0e, 0xa7, 0xf0, 0x11, 0x75, 0x40, 0x60, 0x79, 0x36, 0x0c, 0xe8, 0x39, + 0x89, 0x3e, 0xb1, 0x25, 0xaa, 0x97, 0x5b, 0xa2, 0xc6, 0xc1, 0x60, 0x13, 0xfa, 0x0d, 0xcf, 0xe9, + 0x04, 0x8e, 0xdb, 0xc6, 0xe6, 0x55, 0x31, 0xf9, 0x22, 0x44, 0x11, 0xb9, 0x0f, 0xfd, 0x5a, 0x3f, + 0xa1, 0xe0, 0x8a, 0xf0, 0x98, 0xf6, 0xac, 0xf5, 0xa0, 0x36, 0x30, 0xae, 0x4d, 0x0c, 0x98, 0xe4, + 0xa1, 0x3a, 0x06, 0x40, 0xc7, 0x0b, 0x15, 0x53, 0xab, 0xe0, 0x57, 0x5c, 0x09, 0xe2, 0x72, 0xfc, + 0x55, 0xcb, 0xae, 0x01, 0xc2, 0x85, 0x1f, 0x8c, 0x0b, 0xa0, 0x16, 0x57, 0x6a, 0xa6, 0xad, 0x7e, + 0x4c, 0x7a, 0x20, 0x3c, 0x05, 0xe7, 0xf5, 0x40, 0xdc, 0x4e, 0xbf, 0x9b, 0x0a, 0xd4, 0xb1, 0x02, + 0x05, 0x9d, 0x30, 0x93, 0x7d, 0x1e, 0xeb, 0x8b, 0x58, 0x73, 0x61, 0x7d, 0xd1, 0x9a, 0x05, 0x6e, + 0x56, 0xf3, 0x97, 0x25, 0xbc, 0xa8, 0x91, 0x7e, 0xbb, 0x15, 0xb9, 0xc5, 0xe5, 0x2b, 0x41, 0xe0, + 0x04, 0x2d, 0x18, 0xae, 0x04, 0xf8, 0x21, 0xae, 0xce, 0x52, 0x52, 0x9d, 0x63, 0x00, 0x6c, 0x40, + 0xab, 0x49, 0x76, 0xd1, 0xb4, 0x83, 0xb8, 0x92, 0xea, 0xeb, 0x60, 0x18, 0x3d, 0xf1, 0xe3, 0x07, + 0x77, 0x58, 0xc1, 0xc1, 0x96, 0xa8, 0x04, 0x3b, 0x79, 0x2d, 0x9f, 0x6e, 0xdf, 0x69, 0x47, 0x73, + 0x25, 0x48, 0xf0, 0x1a, 0xd6, 0x09, 0x27, 0xb8, 0x7f, 0x17, 0x82, 0xe3, 0x95, 0xa0, 0xb5, 0xc1, + 0x83, 0xdb, 0x0e, 0xbc, 0x03, 0x3d, 0xbf, 0x36, 0x80, 0x37, 0x3e, 0x51, 0x01, 0x7a, 0x6b, 0xf9, + 0xbe, 0x63, 0xb7, 0x21, 0xf4, 0x6b, 0x15, 0xf2, 0x96, 0x15, 0xa0, 0x93, 0x49, 0xcb, 0x5a, 0x83, + 0xad, 0xa5, 0xa6, 0x5f, 0x03, 0xe3, 0xa5, 0x89, 0xb2, 0xc9, 0x9e, 0x11, 0x27, 0xbe, 0x7c, 0x58, + 0x72, 0x9a, 0x7e, 0x6d, 0x10, 0xbf, 0x8c, 0x0a, 0x8c, 0x17, 0xf1, 0xb9, 0x25, 0xd1, 0xa3, 0x59, + 0xa3, 0x11, 0x6d, 0x22, 0x1d, 0x66, 0x2f, 0xe8, 0xa7, 0xf1, 0xf7, 0xc4, 0xf9, 0x44, 0x6c, 0x91, + 0xab, 0x62, 0x15, 0xf7, 0x74, 0xb6, 0x65, 0x18, 0x29, 0x53, 0x65, 0x39, 0xb9, 0x65, 0x45, 0xd2, + 0x4a, 0x4c, 0x5a, 0x64, 0x4f, 0x65, 0xce, 0x9e, 0xa8, 0x7b, 0x28, 0x1d, 0x02, 0xb3, 0xde, 0x7f, + 0xd5, 0xc0, 0xe9, 0x34, 0xaa, 0x05, 0xce, 0xec, 0xf6, 0x1a, 0x6e, 0xcc, 0xd0, 0xcb, 0x09, 0x43, + 0x37, 0xce, 0x83, 0x73, 0x39, 0xa0, 0x58, 0x03, 0xde, 0x23, 0x9a, 0x5e, 0x6a, 0x6f, 0xbb, 0x9b, + 0x70, 0x19, 0x7a, 0xb6, 0xe2, 0x18, 0xdc, 0x1d, 0x74, 0xde, 0x15, 0x5d, 0x8e, 0xb9, 0xa2, 0x89, + 0xbe, 0xd3, 0x81, 0x30, 0xb8, 0x5f, 0x6b, 0x78, 0xb5, 0x5e, 0x81, 0x01, 0xf7, 0x76, 0x25, 0xf4, + 0x15, 0xef, 0xb5, 0x55, 0x10, 0xaf, 0x35, 0xb5, 0x0a, 0xe2, 0x91, 0x3e, 0x0b, 0x86, 0xb6, 0x10, + 0xb8, 0x1b, 0xee, 0xd6, 0x96, 0x13, 0xac, 0x6c, 0x58, 0x74, 0x4a, 0x8f, 0x95, 0xa2, 0x4e, 0xa2, + 0xb7, 0x76, 0xf3, 0x6e, 0x73, 0x27, 0x9c, 0xdc, 0xb9, 0x22, 0xb2, 0x54, 0xf8, 0x9b, 0x74, 0xa8, + 0x97, 0x4d, 0xfa, 0x64, 0x3c, 0x0d, 0xc6, 0xd2, 0x5b, 0xc8, 0xc6, 0x0f, 0x43, 0xa6, 0x71, 0xc8, + 0x8c, 0x7f, 0xd4, 0xf0, 0x55, 0xd1, 0x5c, 0xb3, 0x29, 0x28, 0x2e, 0x1c, 0xec, 0x7b, 0xad, 0x1e, + 0x61, 0x6a, 0x29, 0xc7, 0xa6, 0x16, 0xe3, 0x49, 0x60, 0x64, 0x63, 0x61, 0xbd, 0xf9, 0xa1, 0x86, + 0x37, 0x76, 0x64, 0x97, 0xfe, 0x10, 0xa0, 0x3e, 0x07, 0xce, 0x48, 0xe1, 0x30, 0xe0, 0xa9, 0xba, + 0x9e, 0x63, 0x53, 0xe7, 0x03, 0x40, 0x1d, 0x4d, 0xd4, 0xe5, 0xd8, 0x44, 0x9d, 0xaa, 0x6b, 0x86, + 0x25, 0x57, 0xd7, 0x07, 0x85, 0x3a, 0x43, 0xd7, 0x49, 0xe0, 0xff, 0x4d, 0x6e, 0x65, 0x6e, 0x3a, + 0xed, 0x4d, 0x8e, 0x6e, 0x09, 0xad, 0x36, 0xf3, 0x3b, 0x4b, 0x64, 0x37, 0xf6, 0x0d, 0x70, 0x9f, + 0x05, 0x43, 0xdc, 0x65, 0xfc, 0x12, 0x6b, 0x42, 0xac, 0x14, 0x4d, 0x5d, 0xe1, 0x0a, 0x47, 0x8f, + 0x61, 0xec, 0x99, 0xde, 0xa9, 0x64, 0x22, 0x64, 0x4d, 0xf9, 0x1f, 0x0d, 0x8f, 0xed, 0xdb, 0xed, + 0xd6, 0x43, 0xdc, 0x98, 0x09, 0x70, 0x56, 0x8e, 0x91, 0x35, 0xe7, 0x5d, 0x0d, 0x9f, 0x71, 0x44, + 0xcb, 0xbb, 0x89, 0xf6, 0x08, 0xfe, 0x83, 0x58, 0x39, 0xd8, 0x6e, 0xa4, 0x2c, 0xee, 0x46, 0x8c, + 0xc7, 0xf1, 0x1a, 0x9c, 0x06, 0x83, 0x41, 0x7d, 0x9f, 0x0c, 0xd8, 0x84, 0xb9, 0x1d, 0x00, 0x5a, + 0x32, 0x5c, 0x33, 0x90, 0x30, 0xc0, 0xeb, 0x9c, 0x1b, 0xed, 0x01, 0xae, 0xc8, 0xd4, 0xc7, 0x9c, + 0x90, 0xc3, 0x70, 0x7c, 0x8f, 0x38, 0xc1, 0xc8, 0x66, 0x6e, 0xc1, 0x72, 0x25, 0x00, 0xc2, 0x33, + 0x4e, 0x4f, 0xf6, 0x19, 0x27, 0x65, 0x53, 0x8e, 0x66, 0x89, 0x6d, 0x2b, 0xb0, 0xbc, 0xdb, 0x5e, + 0x8b, 0x2e, 0xb5, 0x51, 0x01, 0x56, 0xa4, 0xdb, 0xb0, 0x30, 0x33, 0x59, 0x68, 0xd9, 0x33, 0x42, + 0x72, 0x07, 0xae, 0xf9, 0x4e, 0x00, 0xe9, 0xf2, 0x1a, 0x3e, 0x1a, 0x67, 0xb9, 0x23, 0xc5, 0x82, + 0xe5, 0xa6, 0x6c, 0x3c, 0x2b, 0xf8, 0x5c, 0x72, 0x13, 0xb7, 0xcd, 0x84, 0x08, 0xaa, 0xbc, 0x6d, + 0xd1, 0x89, 0x06, 0x73, 0xb2, 0xb6, 0x96, 0xa2, 0xb6, 0x52, 0xef, 0x1c, 0xab, 0x8d, 0xa9, 0x10, + 0xe2, 0x51, 0x42, 0x76, 0x63, 0x0b, 0x96, 0xab, 0xb6, 0x35, 0x8c, 0x0b, 0xcc, 0x55, 0x24, 0x1d, + 0x05, 0x69, 0x62, 0x18, 0x92, 0x3f, 0xe4, 0xdc, 0x84, 0x0b, 0x96, 0xfb, 0x3a, 0x51, 0x57, 0x01, + 0x14, 0xc3, 0xa0, 0xd4, 0xf5, 0x5a, 0xa1, 0xbb, 0xb7, 0xeb, 0xb5, 0x04, 0x0f, 0x5f, 0x54, 0x25, + 0x93, 0xf8, 0xa7, 0x58, 0x27, 0xec, 0xf5, 0x4d, 0xae, 0xef, 0x14, 0x45, 0xf2, 0x16, 0x50, 0x12, + 0x2d, 0x80, 0x1a, 0x6f, 0xa2, 0x76, 0x26, 0xfd, 0x16, 0x8e, 0xee, 0x61, 0xef, 0xe7, 0xb0, 0x59, + 0x7d, 0xa3, 0xe6, 0x92, 0x70, 0x9c, 0x58, 0x8d, 0x4c, 0xde, 0x55, 0xce, 0x11, 0x5f, 0xc8, 0x9e, + 0x04, 0xaf, 0x39, 0x6f, 0x3b, 0x3f, 0xe3, 0x5d, 0x45, 0x37, 0xc8, 0xee, 0xf1, 0x1b, 0xce, 0x01, + 0x82, 0xbf, 0xb0, 0x14, 0xf7, 0x17, 0x5e, 0x67, 0xfe, 0x42, 0xe2, 0xec, 0xcd, 0xbe, 0xdd, 0xa1, + 0x68, 0x44, 0x87, 0x21, 0x1a, 0x18, 0x6b, 0x68, 0xc3, 0x4b, 0x1d, 0x1d, 0xe8, 0x77, 0x75, 0x51, + 0x74, 0x63, 0xf4, 0x61, 0x3f, 0x6a, 0xb6, 0x17, 0x79, 0x8e, 0xd1, 0x8a, 0xbe, 0x0e, 0x1d, 0x0c, + 0x34, 0x9d, 0xf5, 0xf5, 0x57, 0xba, 0xed, 0x4d, 0xea, 0x0a, 0x61, 0xcf, 0x48, 0x6c, 0xc7, 0x0a, + 0x36, 0xb0, 0x1b, 0xa4, 0x62, 0xe2, 0xdf, 0xf8, 0xb0, 0x81, 0x9a, 0x8d, 0x2c, 0xa7, 0x42, 0x16, + 0xb9, 0xf0, 0x59, 0x70, 0x16, 0xd1, 0x86, 0x64, 0x3a, 0x8b, 0x3e, 0xe7, 0x9d, 0x45, 0xdf, 0x86, + 0x3e, 0x18, 0x03, 0x80, 0x1e, 0x34, 0x22, 0x97, 0x30, 0x57, 0xc2, 0xfa, 0xa8, 0x2f, 0xbb, 0x8f, + 0xfa, 0x77, 0xd7, 0x47, 0x82, 0x0f, 0x29, 0xa6, 0x57, 0xe3, 0xc7, 0x1a, 0xe7, 0x44, 0xfa, 0x0e, + 0xe8, 0x51, 0x70, 0x6b, 0xc5, 0x1b, 0xfb, 0x73, 0x0d, 0xbf, 0x24, 0x81, 0x7b, 0xd1, 0x4b, 0xb7, + 0xb5, 0x0d, 0x9b, 0xdf, 0xea, 0x46, 0x5f, 0xc7, 0x71, 0x2f, 0xa9, 0xed, 0x62, 0x23, 0x48, 0x07, + 0x03, 0x1e, 0x2d, 0xc3, 0x0d, 0x1c, 0x30, 0xd9, 0xb3, 0xf1, 0x69, 0x89, 0xf8, 0xea, 0xf1, 0xd0, + 0xc3, 0x9b, 0xca, 0xfd, 0x74, 0x7d, 0x33, 0x57, 0x4f, 0x49, 0xe2, 0x3a, 0x4c, 0x7a, 0x54, 0x84, + 0x0d, 0x5d, 0x6f, 0xcc, 0x19, 0x76, 0x1c, 0xf4, 0xdd, 0x81, 0x8e, 0xbd, 0x41, 0xae, 0x58, 0xca, + 0x26, 0x7d, 0x12, 0xcf, 0x3f, 0xfd, 0x71, 0xf7, 0x9a, 0x0b, 0x0e, 0x93, 0x88, 0xe1, 0x39, 0x72, + 0xbb, 0x34, 0xb0, 0xf7, 0xb7, 0x4b, 0x82, 0x00, 0x64, 0x5a, 0x6b, 0xdc, 0xdd, 0x09, 0x9e, 0x12, + 0x4b, 0xa6, 0x50, 0x66, 0x5c, 0x23, 0x77, 0x21, 0x51, 0xdf, 0x14, 0xf0, 0xd9, 0xfd, 0x0d, 0xb7, + 0xb9, 0xc0, 0xbc, 0xfb, 0xe9, 0xac, 0xe3, 0xb7, 0x21, 0x91, 0x70, 0xfe, 0xf0, 0x3b, 0x2a, 0xbe, + 0x3f, 0x58, 0x07, 0x1d, 0xef, 0x5b, 0x8c, 0xc3, 0xe1, 0x5d, 0x73, 0x23, 0x6c, 0xa8, 0x61, 0xaa, + 0x07, 0xe3, 0xe8, 0x8a, 0xb9, 0xaa, 0xca, 0x09, 0x57, 0x95, 0x71, 0x19, 0x6b, 0x37, 0x0e, 0x24, + 0xc7, 0x1f, 0xf5, 0x8e, 0x16, 0xde, 0x56, 0x63, 0x96, 0x83, 0xf2, 0x33, 0xd0, 0x40, 0xdc, 0x38, + 0x0a, 0x5e, 0xcb, 0xd1, 0x4d, 0xf1, 0x81, 0x22, 0x25, 0x1b, 0xf8, 0x34, 0x20, 0x0c, 0xec, 0x9b, + 0x38, 0x86, 0x22, 0x6c, 0xcc, 0x01, 0x1c, 0x5e, 0x4f, 0x86, 0x41, 0xa1, 0x1c, 0x00, 0x86, 0xee, + 0x2d, 0x8d, 0x9e, 0x80, 0x58, 0x0b, 0x0e, 0x00, 0x21, 0xe9, 0xef, 0x04, 0x06, 0x06, 0xf2, 0x2f, + 0xf0, 0xf2, 0x43, 0x16, 0xed, 0xbc, 0xe5, 0x67, 0x77, 0x47, 0x6a, 0x72, 0xa1, 0xcc, 0x49, 0x60, + 0xb2, 0xc9, 0x14, 0x19, 0x5e, 0x51, 0x86, 0x95, 0x14, 0x3c, 0x52, 0x1f, 0x05, 0xbd, 0xee, 0x9d, + 0x36, 0x8b, 0xe5, 0x26, 0x0f, 0x0a, 0x73, 0x4e, 0x1b, 0x0f, 0xe2, 0xb8, 0x70, 0x36, 0x88, 0xf7, + 0x7a, 0xa9, 0x35, 0x7e, 0xd4, 0x83, 0x07, 0x16, 0x71, 0xe8, 0xbf, 0xe4, 0x7a, 0x9b, 0x4a, 0x2d, + 0xde, 0xf3, 0x15, 0x7f, 0x1a, 0x54, 0xd7, 0x05, 0xe1, 0xdc, 0xb5, 0x6d, 0xca, 0x9b, 0xea, 0xf3, + 0x60, 0x54, 0x2c, 0x5d, 0x48, 0xa8, 0x35, 0x9b, 0x80, 0x8b, 0x42, 0xec, 0xe5, 0xa3, 0x10, 0xa3, + 0x4e, 0xeb, 0xe3, 0x3b, 0x8d, 0xbf, 0x0e, 0xe9, 0x8f, 0x5d, 0x87, 0x90, 0xd9, 0x20, 0x4d, 0x7b, + 0x91, 0x6f, 0x86, 0x04, 0xa5, 0xfe, 0x4e, 0xb7, 0x69, 0xba, 0xcd, 0xba, 0x5e, 0xb9, 0x88, 0x67, + 0xb0, 0x74, 0x8d, 0x26, 0x8e, 0x7e, 0x9f, 0x91, 0x5d, 0xbc, 0x48, 0xbd, 0xd2, 0x6d, 0x34, 0xa0, + 0xef, 0xef, 0x73, 0x70, 0x2b, 0x6d, 0x4c, 0x49, 0x68, 0x4c, 0x1d, 0x6f, 0xc6, 0x53, 0xe1, 0x65, + 0xb6, 0xe9, 0x13, 0xb2, 0xad, 0x20, 0x7e, 0xaa, 0x83, 0xb1, 0x9b, 0x34, 0xef, 0xd9, 0x63, 0x34, + 0x93, 0x49, 0x44, 0xc5, 0x6c, 0xfd, 0xff, 0xa8, 0xeb, 0x3c, 0x96, 0xb7, 0xa0, 0xb6, 0x8d, 0xdb, + 0xf3, 0x06, 0xe4, 0x7b, 0xe3, 0xa8, 0x17, 0x3d, 0x1b, 0x2e, 0xef, 0x9a, 0x8e, 0x76, 0x57, 0x11, + 0xe9, 0x9c, 0xd7, 0xd8, 0x70, 0xe4, 0x87, 0xc5, 0x3d, 0x9f, 0xb2, 0x49, 0x46, 0x56, 0x16, 0x12, + 0x86, 0xf8, 0x23, 0x12, 0x7c, 0x7b, 0x63, 0xc3, 0x6a, 0xdb, 0xf0, 0x35, 0x3c, 0xda, 0xf6, 0xf7, + 0x08, 0x97, 0x5c, 0xff, 0xc2, 0x28, 0xae, 0x08, 0x12, 0x43, 0xfb, 0x03, 0xfe, 0x8a, 0x3e, 0xaa, + 0xfd, 0x86, 0xdb, 0x6a, 0x59, 0x6b, 0xae, 0x17, 0x26, 0x8c, 0xed, 0xa3, 0xed, 0x77, 0x7d, 0x86, + 0x1e, 0xff, 0x46, 0x65, 0x2c, 0xbe, 0xb2, 0x42, 0x43, 0x27, 0xf9, 0x3b, 0xfc, 0x74, 0xd4, 0xfc, + 0x0d, 0x59, 0xb4, 0x73, 0x7c, 0x28, 0x5b, 0x48, 0x5b, 0x23, 0x43, 0xc8, 0x5a, 0xf3, 0x13, 0x4d, + 0x08, 0xe4, 0x0a, 0x69, 0xf1, 0x36, 0xee, 0x80, 0x27, 0x29, 0x64, 0x7b, 0x0d, 0xb7, 0xe5, 0x86, + 0xc1, 0x0b, 0xe4, 0x21, 0x3e, 0x1b, 0xf4, 0x26, 0x67, 0x03, 0x32, 0x4f, 0xa7, 0x36, 0x29, 0x73, + 0x9e, 0xfe, 0x95, 0x26, 0xc4, 0x63, 0x1d, 0x98, 0x1e, 0x6a, 0xa0, 0x9f, 0x6e, 0xae, 0xe9, 0xe2, + 0x13, 0x3e, 0x32, 0x0d, 0x95, 0xd3, 0x34, 0xd4, 0x2b, 0xd1, 0x50, 0x32, 0xd4, 0x8d, 0xa6, 0x53, + 0xa5, 0x36, 0x96, 0xcf, 0xd6, 0xe5, 0xe3, 0xc8, 0x1e, 0x3e, 0x8d, 0x08, 0x49, 0x61, 0x59, 0xad, + 0x78, 0x4f, 0xe3, 0x52, 0x7a, 0x23, 0x22, 0xb4, 0x88, 0x3b, 0xed, 0xfd, 0x8c, 0x88, 0x37, 0x5e, + 0xc1, 0x37, 0x91, 0x19, 0x40, 0x98, 0x5d, 0x1a, 0xe0, 0xb0, 0xd5, 0x6a, 0xb9, 0x77, 0x68, 0x39, + 0x75, 0xe8, 0x09, 0x65, 0xc6, 0xdb, 0x24, 0x2c, 0x87, 0x54, 0x35, 0xe7, 0xdd, 0x81, 0xd6, 0x36, + 0x24, 0xb9, 0x74, 0xfb, 0xd9, 0x1e, 0x13, 0x6f, 0x11, 0x52, 0x40, 0xb0, 0xb6, 0x5c, 0x02, 0x23, + 0xb0, 0x6d, 0xad, 0xc5, 0x5e, 0xd3, 0x26, 0xa5, 0xbd, 0x32, 0xfe, 0x8e, 0xec, 0x96, 0xe2, 0x5d, + 0xba, 0x9f, 0xcd, 0x22, 0x3b, 0xa3, 0x38, 0x02, 0x66, 0x4f, 0xff, 0xc0, 0x67, 0x12, 0xdf, 0xf6, + 0xa5, 0x8b, 0xb1, 0x0e, 0x06, 0xd0, 0x74, 0xcc, 0x9d, 0x29, 0xd9, 0x73, 0xea, 0x7c, 0x27, 0xbf, + 0x9c, 0x1d, 0x06, 0xa5, 0x35, 0xc7, 0xa5, 0x23, 0x1d, 0xfd, 0x14, 0xd2, 0x89, 0x11, 0x94, 0xcc, + 0x9b, 0xd7, 0x65, 0x2e, 0x58, 0x1c, 0x11, 0xde, 0x0e, 0x51, 0xec, 0x0a, 0xbb, 0x10, 0x20, 0xce, + 0x57, 0xc7, 0x94, 0x34, 0x87, 0x4f, 0x4a, 0x11, 0xc1, 0xab, 0x72, 0x59, 0x29, 0xe7, 0x6e, 0xea, + 0xfa, 0x10, 0xab, 0x60, 0xf5, 0x5f, 0xe7, 0xae, 0x88, 0xd0, 0xcb, 0x79, 0x47, 0x76, 0xfb, 0x47, + 0x15, 0xd7, 0x13, 0x29, 0x8e, 0xbf, 0x37, 0xa1, 0xfc, 0x1c, 0xf6, 0x11, 0xe1, 0x5d, 0xee, 0x35, + 0x26, 0xbd, 0xb6, 0xec, 0x49, 0xbf, 0xa5, 0x8d, 0xaa, 0x48, 0xcd, 0x99, 0xce, 0xb1, 0xa0, 0xf8, + 0xc5, 0x25, 0x9f, 0x1f, 0xcb, 0xf7, 0xf8, 0x85, 0x59, 0x50, 0x4d, 0xf9, 0x20, 0xc1, 0x10, 0x00, + 0x2f, 0x2f, 0xad, 0xfe, 0xf9, 0xca, 0xa2, 0xf9, 0x47, 0x8b, 0xe6, 0xf0, 0xa1, 0xea, 0x20, 0xe8, + 0x5f, 0x59, 0x7d, 0xcd, 0x9c, 0x7b, 0x79, 0x71, 0x58, 0xab, 0xff, 0xff, 0x2d, 0x50, 0x5a, 0xf6, + 0xed, 0xaa, 0x0f, 0x1e, 0x8d, 0x7f, 0x91, 0x41, 0x9a, 0x63, 0x15, 0x23, 0xd6, 0x2f, 0x17, 0x20, + 0x66, 0x16, 0xfa, 0x4f, 0x1a, 0xa8, 0x65, 0x7e, 0x47, 0xe1, 0x29, 0x59, 0x8d, 0x59, 0x5c, 0xfa, + 0xf3, 0xbb, 0xe1, 0x62, 0x80, 0x76, 0xc0, 0x91, 0xe4, 0x37, 0x0f, 0xa6, 0x64, 0x55, 0x26, 0xc8, + 0xf5, 0x2b, 0x85, 0xc8, 0x99, 0xe8, 0x26, 0x00, 0xdc, 0x87, 0x09, 0xa4, 0x09, 0x7e, 0x11, 0x9d, + 0x3e, 0xad, 0x46, 0xc7, 0x4b, 0xe1, 0x3e, 0x27, 0x20, 0x95, 0x12, 0xd1, 0xc9, 0xa5, 0x24, 0xbf, + 0x07, 0x80, 0xa4, 0x70, 0x1f, 0x03, 0x90, 0x4a, 0x89, 0xe8, 0xe4, 0x52, 0x92, 0xd9, 0xe0, 0x55, + 0x0b, 0x54, 0xa2, 0xb4, 0xe0, 0x33, 0x4a, 0xa9, 0xd6, 0xfa, 0x94, 0x12, 0x19, 0x13, 0xd1, 0x01, + 0x43, 0xb1, 0xf4, 0xe3, 0x0b, 0xea, 0x19, 0xc0, 0x7a, 0x5d, 0x9d, 0x96, 0x49, 0xfc, 0x4b, 0x70, + 0x58, 0x48, 0x8b, 0x9d, 0xc8, 0x57, 0x0a, 0x95, 0x76, 0x49, 0x95, 0x92, 0xb7, 0xf6, 0x64, 0x1e, + 0xee, 0x54, 0x2e, 0x68, 0x41, 0xea, 0x95, 0x42, 0xe4, 0x4c, 0xf4, 0x1f, 0x83, 0x3e, 0x9a, 0x42, + 0x6a, 0xe4, 0xa7, 0xb2, 0xea, 0x17, 0xf2, 0x69, 0x58, 0xcd, 0x36, 0x18, 0xe4, 0x33, 0x54, 0xcf, + 0x29, 0x26, 0x8a, 0xea, 0x33, 0x8a, 0x84, 0xbc, 0xf9, 0x45, 0x39, 0x95, 0x67, 0x54, 0x6c, 0xd7, + 0x96, 0x9b, 0x5f, 0x22, 0x1b, 0x92, 0x99, 0x5f, 0x24, 0xe7, 0x82, 0xa2, 0xba, 0x91, 0xb0, 0xba, + 0x3a, 0x2d, 0xdf, 0xa8, 0x28, 0xf7, 0x52, 0xda, 0x28, 0x46, 0x26, 0x6f, 0x54, 0x22, 0x71, 0xb2, + 0xba, 0x0d, 0x86, 0x13, 0x49, 0x93, 0x93, 0xf9, 0x13, 0x4c, 0x44, 0xad, 0x3f, 0x55, 0x84, 0x9a, + 0x1f, 0x59, 0x42, 0xd6, 0xe3, 0x84, 0x7c, 0xa5, 0x88, 0x28, 0xe5, 0x23, 0x2b, 0x2d, 0xdd, 0x11, + 0xc9, 0x12, 0x52, 0x1d, 0x27, 0xf2, 0xa7, 0x69, 0x42, 0x29, 0x97, 0x95, 0x9a, 0x13, 0xf8, 0xb7, + 0xa0, 0x9a, 0x92, 0x00, 0xa8, 0x30, 0x65, 0xf3, 0xf4, 0xfa, 0xd3, 0xc5, 0xe8, 0xf9, 0xe1, 0xc6, + 0xa7, 0x00, 0x4a, 0x87, 0x1b, 0x47, 0x28, 0x1f, 0x6e, 0x29, 0x89, 0x81, 0xdc, 0xc4, 0xa8, 0xa0, + 0x52, 0x9e, 0x52, 0x69, 0x62, 0x14, 0x65, 0xfd, 0x19, 0x18, 0x60, 0xdf, 0xd4, 0x7a, 0x52, 0xc6, + 0x1d, 0x52, 0xe9, 0x93, 0x2a, 0x54, 0xac, 0xfe, 0x2d, 0xf0, 0x88, 0x98, 0x88, 0x78, 0x3e, 0xbf, + 0xd7, 0x29, 0xa9, 0x3e, 0xab, 0x4c, 0xca, 0x8b, 0x13, 0xb3, 0xee, 0xce, 0xe7, 0x77, 0xb6, 0x92, + 0xb8, 0xd4, 0xbc, 0x35, 0x24, 0x4e, 0x4c, 0x5a, 0x3b, 0x9f, 0xdf, 0x01, 0x4a, 0xe2, 0x52, 0x93, + 0xd9, 0xd0, 0x2a, 0x96, 0x4c, 0x64, 0x9b, 0xca, 0xd7, 0x12, 0x47, 0x2e, 0x5f, 0xc5, 0xb2, 0x93, + 0xaa, 0xde, 0xd7, 0xc0, 0xf1, 0x8c, 0x7c, 0xa9, 0x7a, 0xbe, 0xde, 0xe2, 0x3c, 0xfa, 0xb5, 0xe2, + 0x3c, 0x0c, 0xca, 0xa7, 0x1a, 0x38, 0x25, 0xcd, 0x88, 0xba, 0x5a, 0xa8, 0x72, 0x8e, 0x53, 0x7f, + 0x71, 0xb7, 0x9c, 0x82, 0x9e, 0x32, 0xb2, 0x9d, 0xa4, 0x7a, 0x4a, 0xe7, 0x91, 0xeb, 0x49, 0x9e, + 0xcc, 0x54, 0x7d, 0x13, 0x8c, 0xa4, 0x25, 0x32, 0xcd, 0xe4, 0xec, 0x30, 0xe2, 0x0c, 0xfa, 0x33, + 0x05, 0x19, 0x18, 0x80, 0x0f, 0x34, 0x70, 0x22, 0x2b, 0x5f, 0xe8, 0x72, 0xce, 0x4a, 0x9a, 0xc6, + 0xa4, 0x3f, 0xb7, 0x0b, 0x26, 0x86, 0xe6, 0x13, 0x0d, 0xe8, 0x92, 0x54, 0xa0, 0xa7, 0xf3, 0x57, + 0xbe, 0x54, 0x4c, 0xd7, 0x77, 0xc7, 0x27, 0x51, 0x52, 0x14, 0x20, 0x52, 0x40, 0x49, 0x8c, 0xa9, + 0x88, 0x92, 0x12, 0x11, 0x20, 0xe9, 0x4a, 0x8a, 0x00, 0x15, 0x53, 0x52, 0x84, 0xe9, 0xfa, 0xee, + 0xf8, 0x18, 0xac, 0x8f, 0x34, 0x30, 0x9a, 0x9d, 0xa1, 0x23, 0x9d, 0xd2, 0x32, 0xd9, 0xf4, 0x17, + 0x76, 0xc5, 0xc6, 0x30, 0xfd, 0xbb, 0x06, 0x4e, 0xca, 0x52, 0x6d, 0xa4, 0xc3, 0x46, 0xc2, 0xa8, + 0xff, 0xde, 0x2e, 0x19, 0x19, 0xb2, 0xb7, 0x34, 0x70, 0x34, 0x35, 0x6b, 0xe6, 0x92, 0xba, 0x69, + 0x10, 0x0e, 0xfd, 0x6a, 0x51, 0x0e, 0xc1, 0xae, 0xb3, 0xf2, 0x61, 0x2e, 0x17, 0x32, 0x07, 0x0a, + 0xe5, 0xb9, 0x5d, 0x30, 0xf1, 0x2b, 0x67, 0x32, 0xd9, 0x45, 0xe1, 0x88, 0xa2, 0xbc, 0x72, 0x66, + 0xa6, 0xb8, 0xa0, 0x73, 0x46, 0x94, 0xde, 0x72, 0x26, 0x7f, 0xf5, 0x5d, 0xb0, 0x5c, 0x7d, 0x4a, + 0x89, 0x8c, 0x17, 0x11, 0x65, 0x99, 0x9c, 0x91, 0xeb, 0x89, 0x92, 0xc9, 0x45, 0x24, 0xb2, 0x4c, + 0xb0, 0x4d, 0xa5, 0xe6, 0x98, 0x5c, 0xca, 0x5f, 0x32, 0x45, 0x0e, 0xfd, 0x6a, 0x51, 0x8e, 0xe4, + 0x79, 0x8a, 0xcb, 0x2e, 0x99, 0x54, 0xaa, 0x8d, 0x52, 0xab, 0x9c, 0xa7, 0x92, 0x69, 0x26, 0xc8, + 0x7a, 0x92, 0x39, 0x26, 0x53, 0x4a, 0x55, 0x85, 0xe4, 0x72, 0xeb, 0xc9, 0xcc, 0x31, 0xa9, 0xfa, + 0xe0, 0xd1, 0x78, 0x82, 0xc9, 0x45, 0xa5, 0x9a, 0x08, 0xb1, 0xdc, 0x59, 0x99, 0x91, 0x68, 0x12, + 0x9d, 0xf7, 0x73, 0xed, 0x89, 0x91, 0xa9, 0x9c, 0xf7, 0x79, 0x7b, 0x62, 0xe7, 0x82, 0x30, 0x52, + 0x5f, 0xe1, 0x5c, 0x40, 0x49, 0x55, 0xce, 0x05, 0xf1, 0xa4, 0x0b, 0x76, 0x2e, 0x50, 0x12, 0x27, + 0x90, 0xaa, 0x9c, 0x0b, 0x52, 0xc4, 0x89, 0x79, 0x08, 0x0a, 0xe7, 0x02, 0x25, 0x71, 0xa9, 0xd9, + 0x00, 0xd5, 0x77, 0x35, 0x70, 0x2c, 0x3d, 0x15, 0x60, 0x36, 0xdf, 0x57, 0x1d, 0x63, 0xd1, 0x9f, + 0x2d, 0xcc, 0x22, 0x9c, 0x90, 0xb9, 0xc0, 0xfb, 0x73, 0xf9, 0xfd, 0x84, 0x09, 0x73, 0x4e, 0xc8, + 0x29, 0xe1, 0xe2, 0x6c, 0x22, 0xe0, 0x22, 0xc1, 0x15, 0x26, 0x82, 0x88, 0x5a, 0x65, 0x22, 0x48, + 0x06, 0x7a, 0x73, 0xa7, 0xa0, 0x44, 0x94, 0x77, 0x5d, 0xb1, 0x42, 0x7e, 0x26, 0xbc, 0x56, 0x9c, + 0x87, 0x57, 0x41, 0x22, 0x74, 0x7b, 0x32, 0xbf, 0xeb, 0x22, 0x6a, 0xb9, 0x0a, 0x32, 0xa3, 0xb1, + 0x77, 0xc0, 0x91, 0x64, 0xcc, 0x75, 0x9e, 0x5f, 0x4c, 0x24, 0xcf, 0xb9, 0x37, 0xc8, 0x8a, 0xa5, + 0xc6, 0x6b, 0x50, 0x6a, 0x20, 0xb5, 0x82, 0xd7, 0x2a, 0x86, 0xe0, 0x6a, 0x51, 0x0e, 0xde, 0x51, + 0x19, 0x0b, 0x90, 0xbe, 0xa0, 0xd2, 0x1a, 0xba, 0x89, 0xa9, 0xab, 0xd3, 0xf2, 0x1a, 0x4f, 0xc6, + 0x3c, 0x4f, 0x29, 0x36, 0x80, 0xca, 0xbd, 0x52, 0x88, 0x9c, 0x1f, 0xd0, 0x7c, 0x28, 0xf3, 0xb9, + 0xfc, 0xa9, 0x49, 0x61, 0x40, 0xa7, 0x84, 0x2e, 0x23, 0x6b, 0x4e, 0xc4, 0x2d, 0x4f, 0xaa, 0xb8, + 0x7f, 0x42, 0x6a, 0xb9, 0x35, 0x67, 0x86, 0x25, 0x23, 0x93, 0x4a, 0x0d, 0x21, 0xbe, 0x94, 0x7f, + 0xf0, 0x16, 0x39, 0xe4, 0x26, 0x25, 0x0b, 0xb4, 0x45, 0x26, 0x15, 0x93, 0x2e, 0x35, 0xa9, 0x98, + 0xdc, 0xba, 0x3a, 0xad, 0xb0, 0x60, 0xa4, 0x47, 0x9d, 0xce, 0xaa, 0xd7, 0x46, 0x59, 0xe4, 0x0b, + 0x86, 0x3c, 0x78, 0x74, 0x1b, 0x0c, 0x27, 0x02, 0x45, 0x27, 0xf3, 0x37, 0xa6, 0xaa, 0xdd, 0x9e, + 0x15, 0xee, 0x49, 0xce, 0x6e, 0x92, 0x58, 0xcf, 0x67, 0x54, 0x5c, 0x81, 0x29, 0x8c, 0x39, 0x67, + 0xb7, 0xfc, 0x70, 0x4d, 0x7c, 0x4f, 0x9c, 0x19, 0xab, 0xa9, 0x30, 0x63, 0x27, 0xb9, 0xe4, 0xf7, + 0xc4, 0x79, 0xd1, 0x98, 0x78, 0x4d, 0xe7, 0x22, 0x31, 0xe5, 0x6b, 0x7a, 0x44, 0x98, 0xb3, 0xa6, + 0x27, 0x03, 0x29, 0x39, 0xb7, 0x5e, 0x46, 0x8c, 0xe1, 0xd5, 0x22, 0xba, 0xe5, 0x39, 0x55, 0xdc, + 0x7a, 0xf2, 0xa8, 0x41, 0x0c, 0x4e, 0x1a, 0x00, 0xa9, 0xb0, 0xa0, 0xec, 0x06, 0x9c, 0x4a, 0x48, + 0x23, 0x1e, 0xcd, 0xe9, 0xf1, 0x8c, 0xb3, 0x45, 0x26, 0x45, 0xcc, 0x22, 0x1f, 0xcd, 0xf2, 0x10, + 0x43, 0x84, 0x23, 0x3d, 0x9e, 0x70, 0xb6, 0x48, 0x07, 0x28, 0xe0, 0x90, 0x06, 0xf2, 0x61, 0x1c, + 0xe9, 0x51, 0x7c, 0x4a, 0x3e, 0xf7, 0x02, 0x38, 0xa4, 0xa1, 0x78, 0x68, 0x76, 0x4b, 0x7c, 0x8b, + 0x3c, 0xef, 0x3b, 0xe9, 0x02, 0xb5, 0x7c, 0x76, 0xcb, 0xfa, 0x9a, 0x38, 0x76, 0xbd, 0x64, 0xc5, + 0xff, 0x5d, 0x2e, 0x32, 0x19, 0x50, 0x26, 0xb9, 0xeb, 0x25, 0x2f, 0xc0, 0xef, 0x4d, 0x30, 0x92, + 0x16, 0xb8, 0x37, 0x93, 0x5f, 0xa7, 0xc0, 0x20, 0x77, 0x43, 0xcb, 0xa2, 0xf2, 0xb6, 0xc1, 0x70, + 0x22, 0xbe, 0x6e, 0xb2, 0x48, 0xaf, 0xca, 0xbb, 0x21, 0x2b, 0x72, 0x2e, 0x0a, 0x73, 0xc1, 0x31, + 0x4f, 0x0a, 0x61, 0x2e, 0x88, 0x4e, 0x25, 0xcc, 0x45, 0x08, 0x7d, 0x63, 0x77, 0xa2, 0x42, 0x9c, + 0x9b, 0xc2, 0x9d, 0x28, 0x4f, 0xaf, 0x72, 0x27, 0x9a, 0x16, 0xf8, 0x86, 0xb6, 0x2e, 0xb1, 0xa8, + 0xb7, 0x0b, 0x6a, 0x35, 0x21, 0x5a, 0xbd, 0xae, 0x4e, 0x9b, 0x3c, 0xc9, 0x87, 0x71, 0x70, 0xe7, + 0xd5, 0x2a, 0x99, 0x77, 0x5c, 0x95, 0x93, 0x7c, 0x2c, 0x3a, 0x2e, 0x3a, 0x69, 0x72, 0xa1, 0x71, + 0x93, 0x6a, 0xd5, 0x50, 0x0f, 0xcc, 0x53, 0x45, 0xa8, 0x93, 0x71, 0x45, 0xf9, 0xc6, 0x13, 0xd1, + 0xa9, 0xc4, 0x15, 0x09, 0xc6, 0xf3, 0x91, 0x06, 0x46, 0xb3, 0xff, 0x1f, 0xc9, 0x95, 0x22, 0x53, + 0x30, 0x63, 0x93, 0xfb, 0xd5, 0x73, 0xff, 0x33, 0x08, 0x3e, 0x63, 0x67, 0xfc, 0x5b, 0x90, 0xbc, + 0xd3, 0x53, 0x1a, 0x9a, 0x6b, 0xc5, 0x79, 0x42, 0x28, 0xf3, 0x2f, 0x7f, 0x71, 0x6f, 0x4c, 0xfb, + 0xf2, 0xde, 0x98, 0xf6, 0xf5, 0xbd, 0x31, 0xed, 0x5f, 0xee, 0x8f, 0x1d, 0xfa, 0xf2, 0xfe, 0xd8, + 0xa1, 0x5f, 0xdc, 0x1f, 0x3b, 0xf4, 0x27, 0x53, 0x5c, 0x96, 0x7c, 0xf8, 0x1f, 0xab, 0xc2, 0xbf, + 0xdb, 0xf5, 0x99, 0xbb, 0xec, 0x01, 0x27, 0xcc, 0xaf, 0xf5, 0xe1, 0x7f, 0x62, 0x75, 0xf9, 0xb7, + 0x01, 0x00, 0x00, 0xff, 0xff, 0x35, 0x22, 0xb1, 0x03, 0x62, 0x6c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -18182,16 +18173,6 @@ func (m *MsgToggleRepositoryArchived) MarshalToSizedBuffer(dAtA []byte) (int, er _ = i var l int _ = l - if m.Archived { - i-- - if m.Archived { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } - i-- - dAtA[i] = 0x18 - } { size, err := m.RepositoryId.MarshalToSizedBuffer(dAtA[:i]) if err != nil { @@ -21722,9 +21703,6 @@ func (m *MsgToggleRepositoryArchived) Size() (n int) { } l = m.RepositoryId.Size() n += 1 + l + sovTx(uint64(l)) - if m.Archived { - n += 2 - } return n } @@ -38212,26 +38190,6 @@ func (m *MsgToggleRepositoryArchived) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Archived", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTx - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Archived = bool(v != 0) default: iNdEx = preIndex skippy, err := skipTx(dAtA[iNdEx:]) From c29a62b9b108139553a9d9953265fc378886cd72 Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Thu, 29 Jun 2023 22:54:26 +0700 Subject: [PATCH 24/26] cli --- x/gitopia/client/cli/txRepository.go | 7 ++----- x/gitopia/types/messages_repository.go | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/x/gitopia/client/cli/txRepository.go b/x/gitopia/client/cli/txRepository.go index 67ed2718..3fb2f758 100644 --- a/x/gitopia/client/cli/txRepository.go +++ b/x/gitopia/client/cli/txRepository.go @@ -197,23 +197,20 @@ func CmdUpdateRepositoryDescription() *cobra.Command { func CmdToggleRepositoryArchived() *cobra.Command { cmd := &cobra.Command{ - Use: "update-archive-state [owner-id] [repository-name] [archived]", - Short: "Update archive state", + Use: "toggle-repository-archived [owner-id] [repository-name]", + Short: "toggle repository archived", Args: cobra.ExactArgs(3), RunE: func(cmd *cobra.Command, args []string) error { argOwnerid := args[0] argRepositoryName := args[1] - argArchived := args[2] clientCtx, err := client.GetClientTxContext(cmd) if err != nil { return err } - archived, _ := strconv.ParseBool(argArchived) msg := types.NewMsgToggleRepositoryArchived( clientCtx.GetFromAddress().String(), types.RepositoryId{Id: argOwnerid, Name: argRepositoryName}, - archived, ) if err := msg.ValidateBasic(); err != nil { return err diff --git a/x/gitopia/types/messages_repository.go b/x/gitopia/types/messages_repository.go index ab49c2e9..531d96b3 100644 --- a/x/gitopia/types/messages_repository.go +++ b/x/gitopia/types/messages_repository.go @@ -751,7 +751,7 @@ func (msg *MsgUpdateRepositoryDescription) ValidateBasic() error { var _ sdk.Msg = &MsgToggleRepositoryArchived{} -func NewMsgToggleRepositoryArchived(creator string, repositoryId RepositoryId, archived bool) *MsgToggleRepositoryArchived { +func NewMsgToggleRepositoryArchived(creator string, repositoryId RepositoryId) *MsgToggleRepositoryArchived { return &MsgToggleRepositoryArchived{ Creator: creator, RepositoryId: repositoryId, From 1908165f434ace2bd880726e5e5334f461c8c1ef Mon Sep 17 00:00:00 2001 From: anhductn2001 Date: Fri, 30 Jun 2023 08:17:38 +0700 Subject: [PATCH 25/26] arg is 2 --- x/gitopia/client/cli/txRepository.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/gitopia/client/cli/txRepository.go b/x/gitopia/client/cli/txRepository.go index 3fb2f758..28df5a01 100644 --- a/x/gitopia/client/cli/txRepository.go +++ b/x/gitopia/client/cli/txRepository.go @@ -199,7 +199,7 @@ func CmdToggleRepositoryArchived() *cobra.Command { cmd := &cobra.Command{ Use: "toggle-repository-archived [owner-id] [repository-name]", Short: "toggle repository archived", - Args: cobra.ExactArgs(3), + Args: cobra.ExactArgs(2), RunE: func(cmd *cobra.Command, args []string) error { argOwnerid := args[0] argRepositoryName := args[1] From 8bbb7f0e4543b2b260dbc08dea8a72a31460d3b2 Mon Sep 17 00:00:00 2001 From: Janani Anbarasan Date: Mon, 10 Jul 2023 23:46:11 -0500 Subject: [PATCH 26/26] t --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 7bcb0f71..3c87a764 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,5 @@ # Gitopia +test ![Gitopia](https://github.com/gitopia/gitopia-web/blob/master/public/og-gitopia.jpg) [Gitopia](https://gitopia.com/) is a platform for developers and web3 communities to collaborate on open-source projects in a decentralized and censorship-free environment by using permanent storage through Filecoin, Arweave, and IPFS. Additionally, it offers web3-specific features such as Bounties and Proposals, which Gitopia supports through its native LORE token, as well as familiar collaboration tools like Issues and Pull-Requests.