From 5a9a5c340a8dfb933549d99ba3945c79b6f588fa Mon Sep 17 00:00:00 2001 From: Shawn <44221603+smarshall-spitzbart@users.noreply.github.com> Date: Thu, 25 May 2023 14:00:26 -0700 Subject: [PATCH 1/5] proto-check makefile target --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Makefile b/Makefile index 63c606981d..dea1c4566b 100644 --- a/Makefile +++ b/Makefile @@ -114,6 +114,22 @@ proto-gen: @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoGen}$$"; then docker start -a $(containerProtoGen); else docker run --name $(containerProtoGen) -v $(CURDIR):/workspace --workdir /workspace $(containerProtoImage) \ sh ./scripts/protocgen.sh; fi +proto-check: + @if git diff --quiet; then \ + echo "No files were modified before running 'make proto-gen'."; \ + else \ + echo "Error: Uncommitted changes exist before running 'make proto-gen'. Please commit or stash your changes."; \ + exit 1; \ + fi + @$(MAKE) proto-gen + @if git diff --quiet; then \ + echo "No files were modified after running 'make proto-gen'. Pass!"; \ + else \ + echo "Error: Files were modified after running 'make proto-gen'. Please commit or stash your changes."; \ + exit 1; \ + fi + + proto-format: @echo "Formatting Protobuf files" @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoFmt}$$"; then docker start -a $(containerProtoFmt); else docker run --name $(containerProtoFmt) -v $(CURDIR):/workspace --workdir /workspace tendermintdev/docker-build-proto \ From 5c9c89402ccddab8e44fecfdb829de3817019374 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+smarshall-spitzbart@users.noreply.github.com> Date: Thu, 25 May 2023 14:02:11 -0700 Subject: [PATCH 2/5] comment --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dea1c4566b..600c617d70 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,7 @@ proto-check: @if git diff --quiet; then \ echo "No files were modified after running 'make proto-gen'. Pass!"; \ else \ - echo "Error: Files were modified after running 'make proto-gen'. Please commit or stash your changes."; \ + echo "Error: Files were modified after running 'make proto-gen'. Please commit changes to .pb files"; \ exit 1; \ fi From 689da8799656ad21218f350d303370747e90271f Mon Sep 17 00:00:00 2001 From: Shawn <44221603+smarshall-spitzbart@users.noreply.github.com> Date: Thu, 25 May 2023 14:09:21 -0700 Subject: [PATCH 3/5] add to GH actions workflow --- .github/workflows/automated-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automated-tests.yml b/.github/workflows/automated-tests.yml index edff66d593..8ce5ad64b3 100644 --- a/.github/workflows/automated-tests.yml +++ b/.github/workflows/automated-tests.yml @@ -24,9 +24,9 @@ jobs: uses: actions/setup-go@v4 with: go-version: "1.19" # The Go version to download (if necessary) and use. - - name: Unit, integration and difference tests run: go test ./... - - name: E2E tests run: make test-e2e-short + - name: Proto Check + run: make proto-check From 84b573f59372e779bbbf3ca71573e1c2219c69c2 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+smarshall-spitzbart@users.noreply.github.com> Date: Thu, 25 May 2023 14:21:19 -0700 Subject: [PATCH 4/5] put proto check before other tests --- .github/workflows/automated-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automated-tests.yml b/.github/workflows/automated-tests.yml index 8ce5ad64b3..0a4a8fc6a0 100644 --- a/.github/workflows/automated-tests.yml +++ b/.github/workflows/automated-tests.yml @@ -24,9 +24,9 @@ jobs: uses: actions/setup-go@v4 with: go-version: "1.19" # The Go version to download (if necessary) and use. + - name: Proto Check + run: make proto-check - name: Unit, integration and difference tests run: go test ./... - name: E2E tests run: make test-e2e-short - - name: Proto Check - run: make proto-check From 76c93e761d70790192c1bc7b75402ac7bb3501d6 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+smarshall-spitzbart@users.noreply.github.com> Date: Tue, 30 May 2023 08:27:02 -0700 Subject: [PATCH 5/5] gotta regenerate protos --- x/ccv/provider/types/provider.pb.go | 378 ++++++++++++++-------------- 1 file changed, 189 insertions(+), 189 deletions(-) diff --git a/x/ccv/provider/types/provider.pb.go b/x/ccv/provider/types/provider.pb.go index d7d5b5fc08..37e175acea 100644 --- a/x/ccv/provider/types/provider.pb.go +++ b/x/ccv/provider/types/provider.pb.go @@ -591,23 +591,24 @@ func (m *ConsumerAdditionProposals) GetPending() []*ConsumerAdditionProposal { return nil } -// AddressList contains a list of consensus addresses -type AddressList struct { - Addresses [][]byte `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"` +// ConsumerRemovalProposals holds pending governance proposals on the provider chain to remove (and stop) a consumer chain. +type ConsumerRemovalProposals struct { + // proposals waiting for stop_time to pass + Pending []*ConsumerRemovalProposal `protobuf:"bytes,1,rep,name=pending,proto3" json:"pending,omitempty"` } -func (m *AddressList) Reset() { *m = AddressList{} } -func (m *AddressList) String() string { return proto.CompactTextString(m) } -func (*AddressList) ProtoMessage() {} -func (*AddressList) Descriptor() ([]byte, []int) { +func (m *ConsumerRemovalProposals) Reset() { *m = ConsumerRemovalProposals{} } +func (m *ConsumerRemovalProposals) String() string { return proto.CompactTextString(m) } +func (*ConsumerRemovalProposals) ProtoMessage() {} +func (*ConsumerRemovalProposals) Descriptor() ([]byte, []int) { return fileDescriptor_f22ec409a72b7b72, []int{8} } -func (m *AddressList) XXX_Unmarshal(b []byte) error { +func (m *ConsumerRemovalProposals) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *AddressList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *ConsumerRemovalProposals) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_AddressList.Marshal(b, m, deterministic) + return xxx_messageInfo_ConsumerRemovalProposals.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -617,43 +618,42 @@ func (m *AddressList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (m *AddressList) XXX_Merge(src proto.Message) { - xxx_messageInfo_AddressList.Merge(m, src) +func (m *ConsumerRemovalProposals) XXX_Merge(src proto.Message) { + xxx_messageInfo_ConsumerRemovalProposals.Merge(m, src) } -func (m *AddressList) XXX_Size() int { +func (m *ConsumerRemovalProposals) XXX_Size() int { return m.Size() } -func (m *AddressList) XXX_DiscardUnknown() { - xxx_messageInfo_AddressList.DiscardUnknown(m) +func (m *ConsumerRemovalProposals) XXX_DiscardUnknown() { + xxx_messageInfo_ConsumerRemovalProposals.DiscardUnknown(m) } -var xxx_messageInfo_AddressList proto.InternalMessageInfo +var xxx_messageInfo_ConsumerRemovalProposals proto.InternalMessageInfo -func (m *AddressList) GetAddresses() [][]byte { +func (m *ConsumerRemovalProposals) GetPending() []*ConsumerRemovalProposal { if m != nil { - return m.Addresses + return m.Pending } return nil } -// ConsumerRemovalProposals holds pending governance proposals on the provider chain to remove (and stop) a consumer chain. -type ConsumerRemovalProposals struct { - // proposals waiting for stop_time to pass - Pending []*ConsumerRemovalProposal `protobuf:"bytes,1,rep,name=pending,proto3" json:"pending,omitempty"` +// AddressList contains a list of consensus addresses +type AddressList struct { + Addresses [][]byte `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"` } -func (m *ConsumerRemovalProposals) Reset() { *m = ConsumerRemovalProposals{} } -func (m *ConsumerRemovalProposals) String() string { return proto.CompactTextString(m) } -func (*ConsumerRemovalProposals) ProtoMessage() {} -func (*ConsumerRemovalProposals) Descriptor() ([]byte, []int) { +func (m *AddressList) Reset() { *m = AddressList{} } +func (m *AddressList) String() string { return proto.CompactTextString(m) } +func (*AddressList) ProtoMessage() {} +func (*AddressList) Descriptor() ([]byte, []int) { return fileDescriptor_f22ec409a72b7b72, []int{9} } -func (m *ConsumerRemovalProposals) XXX_Unmarshal(b []byte) error { +func (m *AddressList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *ConsumerRemovalProposals) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *AddressList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_ConsumerRemovalProposals.Marshal(b, m, deterministic) + return xxx_messageInfo_AddressList.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -663,21 +663,21 @@ func (m *ConsumerRemovalProposals) XXX_Marshal(b []byte, deterministic bool) ([] return b[:n], nil } } -func (m *ConsumerRemovalProposals) XXX_Merge(src proto.Message) { - xxx_messageInfo_ConsumerRemovalProposals.Merge(m, src) +func (m *AddressList) XXX_Merge(src proto.Message) { + xxx_messageInfo_AddressList.Merge(m, src) } -func (m *ConsumerRemovalProposals) XXX_Size() int { +func (m *AddressList) XXX_Size() int { return m.Size() } -func (m *ConsumerRemovalProposals) XXX_DiscardUnknown() { - xxx_messageInfo_ConsumerRemovalProposals.DiscardUnknown(m) +func (m *AddressList) XXX_DiscardUnknown() { + xxx_messageInfo_AddressList.DiscardUnknown(m) } -var xxx_messageInfo_ConsumerRemovalProposals proto.InternalMessageInfo +var xxx_messageInfo_AddressList proto.InternalMessageInfo -func (m *ConsumerRemovalProposals) GetPending() []*ConsumerRemovalProposal { +func (m *AddressList) GetAddresses() [][]byte { if m != nil { - return m.Pending + return m.Addresses } return nil } @@ -1202,8 +1202,8 @@ func init() { proto.RegisterType((*HandshakeMetadata)(nil), "interchain_security.ccv.provider.v1.HandshakeMetadata") proto.RegisterType((*SlashAcks)(nil), "interchain_security.ccv.provider.v1.SlashAcks") proto.RegisterType((*ConsumerAdditionProposals)(nil), "interchain_security.ccv.provider.v1.ConsumerAdditionProposals") - proto.RegisterType((*AddressList)(nil), "interchain_security.ccv.provider.v1.AddressList") proto.RegisterType((*ConsumerRemovalProposals)(nil), "interchain_security.ccv.provider.v1.ConsumerRemovalProposals") + proto.RegisterType((*AddressList)(nil), "interchain_security.ccv.provider.v1.AddressList") proto.RegisterType((*ChannelToChain)(nil), "interchain_security.ccv.provider.v1.ChannelToChain") proto.RegisterType((*VscUnbondingOps)(nil), "interchain_security.ccv.provider.v1.VscUnbondingOps") proto.RegisterType((*UnbondingOp)(nil), "interchain_security.ccv.provider.v1.UnbondingOp") @@ -1220,106 +1220,106 @@ func init() { } var fileDescriptor_f22ec409a72b7b72 = []byte{ - // 1576 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x4b, 0x73, 0x1c, 0x47, - 0x1d, 0xd7, 0x68, 0xf5, 0xda, 0x5e, 0x3d, 0xec, 0xb1, 0x1c, 0xaf, 0x8c, 0x58, 0x6d, 0x26, 0x90, - 0x12, 0x95, 0xca, 0x2c, 0x52, 0x2e, 0x94, 0x8b, 0x54, 0x4a, 0x5a, 0xc7, 0xb1, 0x10, 0x89, 0x37, - 0x23, 0x21, 0x17, 0x70, 0x98, 0xea, 0xe9, 0xf9, 0x7b, 0xb7, 0x4b, 0x33, 0xd3, 0xe3, 0xee, 0x9e, - 0xb1, 0xf7, 0xc2, 0x99, 0x63, 0x28, 0x2e, 0x29, 0xb8, 0x84, 0x4f, 0xc0, 0xd7, 0xc8, 0x31, 0x47, - 0x4e, 0x81, 0x92, 0x0f, 0x1c, 0xf8, 0x12, 0x54, 0xf7, 0xbc, 0x57, 0xb2, 0x59, 0x17, 0x70, 0x9b, - 0xfe, 0x3f, 0x7e, 0xfd, 0xeb, 0xfe, 0xbf, 0x7a, 0xd0, 0x21, 0x8d, 0x24, 0x70, 0x32, 0xc1, 0x34, - 0x72, 0x05, 0x90, 0x84, 0x53, 0x39, 0x1d, 0x10, 0x92, 0x0e, 0x62, 0xce, 0x52, 0xea, 0x03, 0x1f, - 0xa4, 0x07, 0xe5, 0xb7, 0x1d, 0x73, 0x26, 0x99, 0xf9, 0xde, 0x0d, 0x3e, 0x36, 0x21, 0xa9, 0x5d, - 0xda, 0xa5, 0x07, 0xf7, 0xb7, 0xc7, 0x6c, 0xcc, 0xb4, 0xfd, 0x40, 0x7d, 0x65, 0xae, 0xf7, 0xf7, - 0xc6, 0x8c, 0x8d, 0x03, 0x18, 0xe8, 0x95, 0x97, 0x3c, 0x1b, 0x48, 0x1a, 0x82, 0x90, 0x38, 0x8c, - 0x73, 0x83, 0xde, 0xac, 0x81, 0x9f, 0x70, 0x2c, 0x29, 0x8b, 0x0a, 0x00, 0xea, 0x91, 0x01, 0x61, - 0x1c, 0x06, 0x24, 0xa0, 0x10, 0x49, 0x45, 0x2f, 0xfb, 0xca, 0x0d, 0x06, 0xca, 0x20, 0xa0, 0xe3, - 0x89, 0xcc, 0xc4, 0x62, 0x20, 0x21, 0xf2, 0x81, 0x87, 0x34, 0x33, 0xae, 0x56, 0xb9, 0xc3, 0x6e, - 0x4d, 0x4f, 0xf8, 0x34, 0x96, 0x6c, 0x70, 0x09, 0x53, 0x91, 0x6b, 0xdf, 0x27, 0x4c, 0x84, 0x4c, - 0x0c, 0x40, 0x1d, 0x2c, 0x22, 0x30, 0x48, 0x0f, 0x3c, 0x90, 0xf8, 0xa0, 0x14, 0x14, 0xbc, 0x73, - 0x3b, 0x0f, 0x8b, 0xca, 0x86, 0x30, 0x9a, 0xf3, 0xb6, 0xfe, 0xb8, 0x82, 0xba, 0x43, 0x16, 0x89, - 0x24, 0x04, 0x7e, 0xe4, 0xfb, 0x54, 0x1d, 0x69, 0xc4, 0x59, 0xcc, 0x04, 0x0e, 0xcc, 0x6d, 0xb4, - 0x2c, 0xa9, 0x0c, 0xa0, 0x6b, 0xf4, 0x8d, 0xfd, 0xb6, 0x93, 0x2d, 0xcc, 0x3e, 0xea, 0xf8, 0x20, - 0x08, 0xa7, 0xb1, 0x32, 0xee, 0x2e, 0x6a, 0x5d, 0x5d, 0x64, 0xee, 0xa0, 0xb5, 0x2c, 0x0a, 0xd4, - 0xef, 0xb6, 0xb4, 0x7a, 0x55, 0xaf, 0x4f, 0x7c, 0xf3, 0x33, 0xb4, 0x49, 0x23, 0x2a, 0x29, 0x0e, - 0xdc, 0x09, 0xa8, 0xdb, 0xe8, 0x2e, 0xf5, 0x8d, 0xfd, 0xce, 0xe1, 0x7d, 0x9b, 0x7a, 0xc4, 0x56, - 0x17, 0x68, 0xe7, 0xd7, 0x96, 0x1e, 0xd8, 0x8f, 0xb5, 0xc5, 0xf1, 0xd2, 0xb7, 0xdf, 0xef, 0x2d, - 0x38, 0x1b, 0xb9, 0x5f, 0x26, 0x34, 0xdf, 0x45, 0xeb, 0x63, 0x88, 0x40, 0x50, 0xe1, 0x4e, 0xb0, - 0x98, 0x74, 0x97, 0xfb, 0xc6, 0xfe, 0xba, 0xd3, 0xc9, 0x65, 0x8f, 0xb1, 0x98, 0x98, 0x7b, 0xa8, - 0xe3, 0xd1, 0x08, 0xf3, 0x69, 0x66, 0xb1, 0xa2, 0x2d, 0x50, 0x26, 0xd2, 0x06, 0x43, 0x84, 0x44, - 0x8c, 0x5f, 0x44, 0xae, 0x8a, 0x76, 0x77, 0x35, 0x27, 0x92, 0x45, 0xda, 0x2e, 0x22, 0x6d, 0x9f, - 0x17, 0xa9, 0x70, 0xbc, 0xa6, 0x88, 0x7c, 0xf5, 0xf7, 0x3d, 0xc3, 0x69, 0x6b, 0x3f, 0xa5, 0x31, - 0xbf, 0x40, 0xb7, 0x92, 0xc8, 0x63, 0x91, 0x4f, 0xa3, 0xb1, 0x1b, 0x03, 0xa7, 0xcc, 0xef, 0xae, - 0x69, 0xa8, 0x9d, 0x6b, 0x50, 0x0f, 0xf3, 0xa4, 0xc9, 0x90, 0xbe, 0x56, 0x48, 0x5b, 0xa5, 0xf3, - 0x48, 0xfb, 0x9a, 0x5f, 0x22, 0x93, 0x90, 0x54, 0x53, 0x62, 0x89, 0x2c, 0x10, 0xdb, 0xf3, 0x23, - 0xde, 0x22, 0x24, 0x3d, 0xcf, 0xbc, 0x73, 0xc8, 0xdf, 0xa2, 0x7b, 0x92, 0xe3, 0x48, 0x3c, 0x03, - 0x3e, 0x8b, 0x8b, 0xe6, 0xc7, 0xbd, 0x5b, 0x60, 0x34, 0xc1, 0x1f, 0xa3, 0x3e, 0xc9, 0x13, 0xc8, - 0xe5, 0xe0, 0x53, 0x21, 0x39, 0xf5, 0x12, 0xe5, 0xeb, 0x3e, 0xe3, 0x98, 0xe8, 0x1c, 0xe9, 0xe8, - 0x24, 0xe8, 0x15, 0x76, 0x4e, 0xc3, 0xec, 0x51, 0x6e, 0x65, 0x3e, 0x41, 0x3f, 0xf2, 0x02, 0x46, - 0x2e, 0x85, 0x22, 0xe7, 0x36, 0x90, 0xf4, 0xd6, 0x21, 0x15, 0x42, 0xa1, 0xad, 0xf7, 0x8d, 0xfd, - 0x96, 0xf3, 0x6e, 0x66, 0x3b, 0x02, 0xfe, 0xb0, 0x66, 0x79, 0x5e, 0x33, 0x34, 0x3f, 0x44, 0xe6, - 0x84, 0x0a, 0xc9, 0x38, 0x25, 0x38, 0x70, 0x21, 0x92, 0x9c, 0x82, 0xe8, 0x6e, 0x68, 0xf7, 0xdb, - 0x95, 0xe6, 0xd3, 0x4c, 0xf1, 0x60, 0xed, 0xf7, 0xdf, 0xec, 0x2d, 0x7c, 0xfd, 0xcd, 0xde, 0x82, - 0xf5, 0x57, 0x03, 0xdd, 0x1b, 0x96, 0x64, 0x43, 0x96, 0xe2, 0xe0, 0xff, 0x59, 0x14, 0x47, 0xa8, - 0x2d, 0x24, 0x8b, 0xb3, 0x34, 0x5c, 0x7a, 0x8b, 0x34, 0x5c, 0x53, 0x6e, 0x4a, 0x61, 0xfd, 0xd9, - 0x40, 0xdb, 0x9f, 0x3e, 0x4f, 0x68, 0xca, 0x08, 0xfe, 0x9f, 0xd4, 0xf0, 0x29, 0xda, 0x80, 0x1a, - 0x9e, 0xe8, 0xb6, 0xfa, 0xad, 0xfd, 0xce, 0xe1, 0x8f, 0xed, 0xac, 0xa1, 0xd8, 0x65, 0x9f, 0xc9, - 0x9b, 0x8a, 0x5d, 0xdf, 0xdd, 0x69, 0xfa, 0x5a, 0xff, 0x32, 0xd0, 0xad, 0xcf, 0x02, 0xe6, 0xe1, - 0xe0, 0x2c, 0xc0, 0x62, 0xa2, 0x2e, 0x7c, 0xaa, 0x4e, 0xcd, 0x21, 0xcf, 0x74, 0xcd, 0x6e, 0xee, - 0x53, 0x2b, 0x37, 0x5d, 0x7b, 0x9f, 0xa0, 0xdb, 0x65, 0xee, 0x95, 0x97, 0xab, 0x0f, 0x73, 0x7c, - 0xe7, 0xea, 0xfb, 0xbd, 0xad, 0x22, 0x86, 0x43, 0x7d, 0xd1, 0x0f, 0x9d, 0x2d, 0xd2, 0x10, 0xf8, - 0x66, 0x0f, 0x75, 0xa8, 0x47, 0x5c, 0x01, 0xcf, 0xdd, 0x28, 0x09, 0x75, 0x5c, 0x96, 0x9c, 0x36, - 0xf5, 0xc8, 0x19, 0x3c, 0xff, 0x22, 0x09, 0xcd, 0x8f, 0xd0, 0x3b, 0xc5, 0xf0, 0x70, 0x53, 0x1c, - 0xb8, 0xca, 0xdf, 0xc5, 0xbe, 0xcf, 0x75, 0x98, 0xd6, 0x9d, 0x3b, 0x85, 0xf6, 0x02, 0x07, 0x6a, - 0xb3, 0x23, 0xdf, 0xe7, 0xd6, 0x3f, 0x97, 0xd1, 0xca, 0x08, 0x73, 0x1c, 0x0a, 0xf3, 0x1c, 0x6d, - 0x49, 0x08, 0xe3, 0x00, 0x4b, 0x70, 0xb3, 0xbe, 0x96, 0x9f, 0xf4, 0x03, 0xdd, 0xef, 0xea, 0xf3, - 0xc0, 0xae, 0x4d, 0x80, 0xf4, 0xc0, 0x1e, 0x6a, 0xe9, 0x99, 0xc4, 0x12, 0x9c, 0xcd, 0x02, 0x23, - 0x13, 0x9a, 0x3f, 0x43, 0x5d, 0xc9, 0x13, 0x21, 0xab, 0x8e, 0x53, 0x95, 0x5a, 0x16, 0xca, 0x77, - 0x0a, 0x7d, 0x56, 0xa4, 0x65, 0x89, 0xdd, 0xdc, 0x5c, 0x5a, 0xff, 0x4d, 0x73, 0x39, 0x43, 0x77, - 0x54, 0x67, 0x9e, 0xc5, 0x5c, 0x9a, 0x1f, 0xf3, 0xb6, 0xf2, 0x6f, 0x82, 0x7e, 0x89, 0xcc, 0x54, - 0x90, 0x59, 0xcc, 0xe5, 0xb7, 0xe0, 0x99, 0x0a, 0xd2, 0x84, 0xf4, 0xd1, 0xae, 0x50, 0xc9, 0xe7, - 0x86, 0x20, 0x75, 0xab, 0x8a, 0x03, 0x88, 0xa8, 0x98, 0x14, 0xe0, 0x2b, 0xf3, 0x83, 0xef, 0x68, - 0xa0, 0xcf, 0x15, 0x8e, 0x53, 0xc0, 0xe4, 0xbb, 0x0c, 0x51, 0xef, 0xe6, 0x5d, 0xca, 0x00, 0xad, - 0xea, 0x00, 0xfd, 0xe0, 0x06, 0x88, 0x32, 0x4a, 0x87, 0xe8, 0x6e, 0x88, 0x5f, 0xba, 0x72, 0xc2, - 0x99, 0x94, 0x01, 0xf8, 0x6e, 0x8c, 0xc9, 0x25, 0x48, 0xa1, 0xe7, 0x4a, 0xcb, 0xb9, 0x13, 0xe2, - 0x97, 0xe7, 0x85, 0x6e, 0x94, 0xa9, 0x4c, 0x81, 0xde, 0xaf, 0xb5, 0xe1, 0x17, 0x98, 0xfb, 0xae, - 0x0f, 0x11, 0x0b, 0x5d, 0x0e, 0x63, 0xd5, 0x1f, 0x71, 0xd6, 0x91, 0x01, 0xca, 0x51, 0x92, 0x17, - 0xb2, 0x7a, 0x19, 0x94, 0x45, 0x3c, 0x64, 0x34, 0xca, 0xe7, 0xad, 0x55, 0x75, 0x6b, 0x85, 0xf6, - 0x50, 0x81, 0x39, 0x35, 0xac, 0x47, 0x00, 0x96, 0x87, 0x6e, 0x3f, 0xc6, 0x91, 0x2f, 0x26, 0xf8, - 0x12, 0x3e, 0x07, 0x89, 0x7d, 0x2c, 0x71, 0xa3, 0x66, 0x9e, 0x01, 0xb8, 0x31, 0x63, 0x41, 0x56, - 0x33, 0x59, 0x0b, 0x2a, 0x6b, 0xe6, 0x11, 0xc0, 0x88, 0xb1, 0x40, 0xd5, 0x8c, 0xd9, 0x45, 0xab, - 0x29, 0x70, 0x51, 0x65, 0x70, 0xb1, 0xb4, 0x7e, 0x82, 0xda, 0xba, 0x69, 0x1c, 0x91, 0x4b, 0x61, - 0xee, 0xa2, 0xb6, 0x42, 0x02, 0x21, 0x40, 0x74, 0x8d, 0x7e, 0x6b, 0xbf, 0xed, 0x54, 0x02, 0x4b, - 0xa2, 0x9d, 0xd7, 0xbd, 0x65, 0x84, 0xf9, 0x14, 0xad, 0xc6, 0xa0, 0x07, 0xad, 0x76, 0xec, 0x1c, - 0x7e, 0x6c, 0xcf, 0xf1, 0x5e, 0xb4, 0x5f, 0x07, 0xe8, 0x14, 0x68, 0xd6, 0x07, 0xa8, 0x73, 0x94, - 0x51, 0xf8, 0x25, 0x15, 0xf2, 0x3a, 0xc5, 0xf5, 0x3a, 0x45, 0x5e, 0x3d, 0xb7, 0x66, 0x06, 0x8b, - 0x30, 0x2f, 0x66, 0x19, 0xfe, 0xfc, 0xad, 0x18, 0xce, 0xe0, 0x55, 0x04, 0x7f, 0x81, 0x36, 0x87, - 0x13, 0x1c, 0x45, 0x10, 0x9c, 0x33, 0xdd, 0xf8, 0xcc, 0x1f, 0x22, 0x44, 0x32, 0x89, 0x6a, 0x98, - 0x59, 0x58, 0xda, 0xb9, 0xe4, 0xc4, 0x6f, 0x8c, 0xaa, 0xc5, 0xc6, 0xa8, 0xb2, 0x1c, 0xb4, 0x75, - 0x21, 0xc8, 0xaf, 0x8a, 0x37, 0xcb, 0x93, 0x58, 0x98, 0x77, 0xd1, 0x8a, 0xaa, 0xd5, 0x1c, 0x68, - 0xc9, 0x59, 0x4e, 0x05, 0x39, 0xf1, 0xcd, 0xfd, 0xfa, 0xbb, 0x88, 0xc5, 0x2e, 0xf5, 0x45, 0x77, - 0xb1, 0xdf, 0xda, 0x5f, 0x72, 0x36, 0x93, 0xca, 0xfd, 0xc4, 0x17, 0xd6, 0xaf, 0x51, 0xa7, 0x06, - 0x68, 0x6e, 0xa2, 0xc5, 0x12, 0x6b, 0x91, 0xfa, 0xe6, 0x03, 0xb4, 0x53, 0x01, 0x35, 0xdb, 0x7d, - 0x86, 0xd8, 0x76, 0xee, 0x95, 0x06, 0x8d, 0x8e, 0x2f, 0xac, 0x27, 0x68, 0xfb, 0xa4, 0x6a, 0x2e, - 0xe5, 0x30, 0x69, 0x9c, 0xd0, 0x68, 0x0e, 0xe3, 0x5d, 0xd4, 0x2e, 0x1f, 0xff, 0xfa, 0xf4, 0x4b, - 0x4e, 0x25, 0xb0, 0x42, 0x74, 0xeb, 0x42, 0x90, 0x33, 0x88, 0xfc, 0x0a, 0xec, 0x35, 0x17, 0x70, - 0x3c, 0x0b, 0x34, 0xf7, 0xe3, 0xb2, 0xda, 0xee, 0x0f, 0x06, 0xea, 0x9e, 0xc2, 0xf4, 0x48, 0x08, - 0x3a, 0x8e, 0x42, 0x88, 0xa4, 0x6a, 0x16, 0x98, 0x80, 0xfa, 0x34, 0xdf, 0x43, 0x1b, 0x65, 0xa1, - 0x95, 0xf5, 0xb5, 0xee, 0xac, 0x17, 0x42, 0x5d, 0x58, 0x0f, 0x10, 0x8a, 0x39, 0xa4, 0x2e, 0x71, - 0x2f, 0x61, 0x9a, 0xd3, 0xd8, 0xad, 0xcf, 0x9a, 0xec, 0xdf, 0xc2, 0x1e, 0x25, 0x5e, 0x40, 0xc9, - 0x29, 0x4c, 0x9d, 0x35, 0x65, 0x3f, 0x3c, 0x85, 0xa9, 0x7a, 0x3b, 0xc4, 0xec, 0x05, 0x70, 0x3d, - 0x20, 0x5a, 0x4e, 0xb6, 0xb0, 0xfe, 0x64, 0xa0, 0x7b, 0x17, 0x38, 0xa0, 0x3e, 0x96, 0x8c, 0x17, - 0xf7, 0x3d, 0x4a, 0x3c, 0xe5, 0xf1, 0x86, 0x7b, 0xbd, 0xc6, 0x76, 0xf1, 0x06, 0xb6, 0x9f, 0xa0, - 0xf5, 0x32, 0xc2, 0x8a, 0x6f, 0x6b, 0x0e, 0xbe, 0x9d, 0xc2, 0xe3, 0x14, 0xa6, 0xd6, 0xef, 0x6a, - 0xdc, 0x8e, 0xa7, 0xb5, 0xe2, 0xe5, 0xff, 0x81, 0x5b, 0xb9, 0x6d, 0x9d, 0x1b, 0xa9, 0xfb, 0x5f, - 0x3b, 0x40, 0xeb, 0xfa, 0x01, 0xac, 0xbf, 0x18, 0x68, 0xbb, 0xbe, 0xab, 0x38, 0x67, 0x23, 0x9e, - 0x44, 0xf0, 0xa6, 0xdd, 0xab, 0xfc, 0x59, 0xac, 0xe7, 0xcf, 0x53, 0xb4, 0xd9, 0x20, 0x25, 0xf2, - 0xdb, 0xf8, 0xe9, 0x5c, 0x5d, 0xa1, 0xd6, 0x92, 0x9c, 0x8d, 0xfa, 0x39, 0xc4, 0xf1, 0xd3, 0x6f, - 0xaf, 0x7a, 0xc6, 0x77, 0x57, 0x3d, 0xe3, 0x1f, 0x57, 0x3d, 0xe3, 0xab, 0x57, 0xbd, 0x85, 0xef, - 0x5e, 0xf5, 0x16, 0xfe, 0xf6, 0xaa, 0xb7, 0xf0, 0x9b, 0x8f, 0xc7, 0x54, 0x4e, 0x12, 0xcf, 0x26, - 0x2c, 0x1c, 0xe4, 0x3f, 0x8e, 0xd5, 0x5e, 0x1f, 0x96, 0xff, 0xe1, 0xe9, 0xe1, 0xe0, 0x65, 0xf3, - 0x67, 0x5c, 0x4e, 0x63, 0x10, 0xde, 0x8a, 0x4e, 0xeb, 0x8f, 0xfe, 0x1d, 0x00, 0x00, 0xff, 0xff, - 0x40, 0xf6, 0xbb, 0xdd, 0xbd, 0x0f, 0x00, 0x00, + // 1579 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcd, 0x72, 0xdc, 0xc6, + 0x11, 0x26, 0xb8, 0xfc, 0xdb, 0x59, 0xfe, 0x48, 0x10, 0x65, 0x2d, 0x15, 0x66, 0xb9, 0x86, 0x13, + 0x17, 0x53, 0x2e, 0x63, 0x43, 0xfa, 0x92, 0x52, 0xc5, 0xe5, 0x22, 0x57, 0x96, 0xc5, 0x30, 0xb6, + 0xd6, 0x20, 0x43, 0x55, 0x92, 0x03, 0x6a, 0x30, 0x68, 0xed, 0x4e, 0x11, 0xc0, 0x40, 0x33, 0x03, + 0x48, 0x7b, 0xc9, 0x39, 0x47, 0xa7, 0x72, 0x71, 0x25, 0x17, 0xe7, 0x09, 0xf2, 0x1a, 0x3e, 0xfa, + 0x98, 0x93, 0x93, 0xa2, 0x0e, 0x39, 0xe4, 0x25, 0x52, 0x33, 0xf8, 0x5f, 0x52, 0xca, 0xaa, 0x92, + 0xdc, 0x30, 0x3d, 0xdd, 0x5f, 0xf7, 0x4c, 0x77, 0x7f, 0x3d, 0x40, 0x87, 0x34, 0x92, 0xc0, 0xc9, + 0x04, 0xd3, 0xc8, 0x15, 0x40, 0x12, 0x4e, 0xe5, 0x74, 0x40, 0x48, 0x3a, 0x88, 0x39, 0x4b, 0xa9, + 0x0f, 0x7c, 0x90, 0x1e, 0x94, 0xdf, 0x76, 0xcc, 0x99, 0x64, 0xe6, 0x7b, 0x37, 0xd8, 0xd8, 0x84, + 0xa4, 0x76, 0xa9, 0x97, 0x1e, 0xdc, 0xdf, 0x1e, 0xb3, 0x31, 0xd3, 0xfa, 0x03, 0xf5, 0x95, 0x99, + 0xde, 0xdf, 0x1b, 0x33, 0x36, 0x0e, 0x60, 0xa0, 0x57, 0x5e, 0xf2, 0x6c, 0x20, 0x69, 0x08, 0x42, + 0xe2, 0x30, 0xce, 0x15, 0x7a, 0xb3, 0x0a, 0x7e, 0xc2, 0xb1, 0xa4, 0x2c, 0x2a, 0x00, 0xa8, 0x47, + 0x06, 0x84, 0x71, 0x18, 0x90, 0x80, 0x42, 0x24, 0x55, 0x78, 0xd9, 0x57, 0xae, 0x30, 0x50, 0x0a, + 0x01, 0x1d, 0x4f, 0x64, 0x26, 0x16, 0x03, 0x09, 0x91, 0x0f, 0x3c, 0xa4, 0x99, 0x72, 0xb5, 0xca, + 0x0d, 0x76, 0x6b, 0xfb, 0x84, 0x4f, 0x63, 0xc9, 0x06, 0x97, 0x30, 0x15, 0xf9, 0xee, 0xfb, 0x84, + 0x89, 0x90, 0x89, 0x01, 0xa8, 0x83, 0x45, 0x04, 0x06, 0xe9, 0x81, 0x07, 0x12, 0x1f, 0x94, 0x82, + 0x22, 0xee, 0x5c, 0xcf, 0xc3, 0xa2, 0xd2, 0x21, 0x8c, 0xe6, 0x71, 0x5b, 0x7f, 0x5c, 0x41, 0xdd, + 0x21, 0x8b, 0x44, 0x12, 0x02, 0x3f, 0xf2, 0x7d, 0xaa, 0x8e, 0x34, 0xe2, 0x2c, 0x66, 0x02, 0x07, + 0xe6, 0x36, 0x5a, 0x96, 0x54, 0x06, 0xd0, 0x35, 0xfa, 0xc6, 0x7e, 0xdb, 0xc9, 0x16, 0x66, 0x1f, + 0x75, 0x7c, 0x10, 0x84, 0xd3, 0x58, 0x29, 0x77, 0x17, 0xf5, 0x5e, 0x5d, 0x64, 0xee, 0xa0, 0xb5, + 0x2c, 0x0b, 0xd4, 0xef, 0xb6, 0xf4, 0xf6, 0xaa, 0x5e, 0x9f, 0xf8, 0xe6, 0x67, 0x68, 0x93, 0x46, + 0x54, 0x52, 0x1c, 0xb8, 0x13, 0x50, 0xb7, 0xd1, 0x5d, 0xea, 0x1b, 0xfb, 0x9d, 0xc3, 0xfb, 0x36, + 0xf5, 0x88, 0xad, 0x2e, 0xd0, 0xce, 0xaf, 0x2d, 0x3d, 0xb0, 0x1f, 0x6b, 0x8d, 0xe3, 0xa5, 0x6f, + 0xbf, 0xdf, 0x5b, 0x70, 0x36, 0x72, 0xbb, 0x4c, 0x68, 0xbe, 0x8b, 0xd6, 0xc7, 0x10, 0x81, 0xa0, + 0xc2, 0x9d, 0x60, 0x31, 0xe9, 0x2e, 0xf7, 0x8d, 0xfd, 0x75, 0xa7, 0x93, 0xcb, 0x1e, 0x63, 0x31, + 0x31, 0xf7, 0x50, 0xc7, 0xa3, 0x11, 0xe6, 0xd3, 0x4c, 0x63, 0x45, 0x6b, 0xa0, 0x4c, 0xa4, 0x15, + 0x86, 0x08, 0x89, 0x18, 0xbf, 0x88, 0x5c, 0x95, 0xed, 0xee, 0x6a, 0x1e, 0x48, 0x96, 0x69, 0xbb, + 0xc8, 0xb4, 0x7d, 0x5e, 0x94, 0xc2, 0xf1, 0x9a, 0x0a, 0xe4, 0xab, 0xbf, 0xef, 0x19, 0x4e, 0x5b, + 0xdb, 0xa9, 0x1d, 0xf3, 0x0b, 0x74, 0x2b, 0x89, 0x3c, 0x16, 0xf9, 0x34, 0x1a, 0xbb, 0x31, 0x70, + 0xca, 0xfc, 0xee, 0x9a, 0x86, 0xda, 0xb9, 0x06, 0xf5, 0x30, 0x2f, 0x9a, 0x0c, 0xe9, 0x6b, 0x85, + 0xb4, 0x55, 0x1a, 0x8f, 0xb4, 0xad, 0xf9, 0x25, 0x32, 0x09, 0x49, 0x75, 0x48, 0x2c, 0x91, 0x05, + 0x62, 0x7b, 0x7e, 0xc4, 0x5b, 0x84, 0xa4, 0xe7, 0x99, 0x75, 0x0e, 0xf9, 0x5b, 0x74, 0x4f, 0x72, + 0x1c, 0x89, 0x67, 0xc0, 0x67, 0x71, 0xd1, 0xfc, 0xb8, 0x77, 0x0b, 0x8c, 0x26, 0xf8, 0x63, 0xd4, + 0x27, 0x79, 0x01, 0xb9, 0x1c, 0x7c, 0x2a, 0x24, 0xa7, 0x5e, 0xa2, 0x6c, 0xdd, 0x67, 0x1c, 0x13, + 0x5d, 0x23, 0x1d, 0x5d, 0x04, 0xbd, 0x42, 0xcf, 0x69, 0xa8, 0x3d, 0xca, 0xb5, 0xcc, 0x27, 0xe8, + 0x47, 0x5e, 0xc0, 0xc8, 0xa5, 0x50, 0xc1, 0xb9, 0x0d, 0x24, 0xed, 0x3a, 0xa4, 0x42, 0x28, 0xb4, + 0xf5, 0xbe, 0xb1, 0xdf, 0x72, 0xde, 0xcd, 0x74, 0x47, 0xc0, 0x1f, 0xd6, 0x34, 0xcf, 0x6b, 0x8a, + 0xe6, 0x87, 0xc8, 0x9c, 0x50, 0x21, 0x19, 0xa7, 0x04, 0x07, 0x2e, 0x44, 0x92, 0x53, 0x10, 0xdd, + 0x0d, 0x6d, 0x7e, 0xbb, 0xda, 0xf9, 0x34, 0xdb, 0x78, 0xb0, 0xf6, 0xfb, 0x6f, 0xf6, 0x16, 0xbe, + 0xfe, 0x66, 0x6f, 0xc1, 0xfa, 0xab, 0x81, 0xee, 0x0d, 0xcb, 0x60, 0x43, 0x96, 0xe2, 0xe0, 0xff, + 0xd9, 0x14, 0x47, 0xa8, 0x2d, 0x24, 0x8b, 0xb3, 0x32, 0x5c, 0x7a, 0x8b, 0x32, 0x5c, 0x53, 0x66, + 0x6a, 0xc3, 0xfa, 0xb3, 0x81, 0xb6, 0x3f, 0x7d, 0x9e, 0xd0, 0x94, 0x11, 0xfc, 0x3f, 0xe9, 0xe1, + 0x53, 0xb4, 0x01, 0x35, 0x3c, 0xd1, 0x6d, 0xf5, 0x5b, 0xfb, 0x9d, 0xc3, 0x1f, 0xdb, 0x19, 0xa1, + 0xd8, 0x25, 0xcf, 0xe4, 0xa4, 0x62, 0xd7, 0xbd, 0x3b, 0x4d, 0x5b, 0xeb, 0x5f, 0x06, 0xba, 0xf5, + 0x59, 0xc0, 0x3c, 0x1c, 0x9c, 0x05, 0x58, 0x4c, 0xd4, 0x85, 0x4f, 0xd5, 0xa9, 0x39, 0xe4, 0x95, + 0xae, 0xa3, 0x9b, 0xfb, 0xd4, 0xca, 0x4c, 0xf7, 0xde, 0x27, 0xe8, 0x76, 0x59, 0x7b, 0xe5, 0xe5, + 0xea, 0xc3, 0x1c, 0xdf, 0xb9, 0xfa, 0x7e, 0x6f, 0xab, 0xc8, 0xe1, 0x50, 0x5f, 0xf4, 0x43, 0x67, + 0x8b, 0x34, 0x04, 0xbe, 0xd9, 0x43, 0x1d, 0xea, 0x11, 0x57, 0xc0, 0x73, 0x37, 0x4a, 0x42, 0x9d, + 0x97, 0x25, 0xa7, 0x4d, 0x3d, 0x72, 0x06, 0xcf, 0xbf, 0x48, 0x42, 0xf3, 0x23, 0xf4, 0x4e, 0x31, + 0x3c, 0xdc, 0x14, 0x07, 0xae, 0xb2, 0x77, 0xb1, 0xef, 0x73, 0x9d, 0xa6, 0x75, 0xe7, 0x4e, 0xb1, + 0x7b, 0x81, 0x03, 0xe5, 0xec, 0xc8, 0xf7, 0xb9, 0xf5, 0xcf, 0x65, 0xb4, 0x32, 0xc2, 0x1c, 0x87, + 0xc2, 0x3c, 0x47, 0x5b, 0x12, 0xc2, 0x38, 0xc0, 0x12, 0xdc, 0x8c, 0xd7, 0xf2, 0x93, 0x7e, 0xa0, + 0xf9, 0xae, 0x3e, 0x0f, 0xec, 0xda, 0x04, 0x48, 0x0f, 0xec, 0xa1, 0x96, 0x9e, 0x49, 0x2c, 0xc1, + 0xd9, 0x2c, 0x30, 0x32, 0xa1, 0xf9, 0x33, 0xd4, 0x95, 0x3c, 0x11, 0xb2, 0x62, 0x9c, 0xaa, 0xd5, + 0xb2, 0x54, 0xbe, 0x53, 0xec, 0x67, 0x4d, 0x5a, 0xb6, 0xd8, 0xcd, 0xe4, 0xd2, 0xfa, 0x6f, 0xc8, + 0xe5, 0x0c, 0xdd, 0x51, 0xcc, 0x3c, 0x8b, 0xb9, 0x34, 0x3f, 0xe6, 0x6d, 0x65, 0xdf, 0x04, 0xfd, + 0x12, 0x99, 0xa9, 0x20, 0xb3, 0x98, 0xcb, 0x6f, 0x11, 0x67, 0x2a, 0x48, 0x13, 0xd2, 0x47, 0xbb, + 0x42, 0x15, 0x9f, 0x1b, 0x82, 0xd4, 0x54, 0x15, 0x07, 0x10, 0x51, 0x31, 0x29, 0xc0, 0x57, 0xe6, + 0x07, 0xdf, 0xd1, 0x40, 0x9f, 0x2b, 0x1c, 0xa7, 0x80, 0xc9, 0xbd, 0x0c, 0x51, 0xef, 0x66, 0x2f, + 0x65, 0x82, 0x56, 0x75, 0x82, 0x7e, 0x70, 0x03, 0x44, 0x99, 0xa5, 0x43, 0x74, 0x37, 0xc4, 0x2f, + 0x5d, 0x39, 0xe1, 0x4c, 0xca, 0x00, 0x7c, 0x37, 0xc6, 0xe4, 0x12, 0xa4, 0xd0, 0x73, 0xa5, 0xe5, + 0xdc, 0x09, 0xf1, 0xcb, 0xf3, 0x62, 0x6f, 0x94, 0x6d, 0x99, 0x02, 0xbd, 0x5f, 0xa3, 0xe1, 0x17, + 0x98, 0xfb, 0xae, 0x0f, 0x11, 0x0b, 0x5d, 0x0e, 0x63, 0xc5, 0x8f, 0x38, 0x63, 0x64, 0x80, 0x72, + 0x94, 0xe4, 0x8d, 0xac, 0x5e, 0x06, 0x65, 0x13, 0x0f, 0x19, 0x8d, 0xf2, 0x79, 0x6b, 0x55, 0x6c, + 0xad, 0xd0, 0x1e, 0x2a, 0x30, 0xa7, 0x86, 0xf5, 0x08, 0xc0, 0xf2, 0xd0, 0xed, 0xc7, 0x38, 0xf2, + 0xc5, 0x04, 0x5f, 0xc2, 0xe7, 0x20, 0xb1, 0x8f, 0x25, 0x6e, 0xf4, 0xcc, 0x33, 0x00, 0x37, 0x66, + 0x2c, 0xc8, 0x7a, 0x26, 0xa3, 0xa0, 0xb2, 0x67, 0x1e, 0x01, 0x8c, 0x18, 0x0b, 0x54, 0xcf, 0x98, + 0x5d, 0xb4, 0x9a, 0x02, 0x17, 0x55, 0x05, 0x17, 0x4b, 0xeb, 0x27, 0xa8, 0xad, 0x49, 0xe3, 0x88, + 0x5c, 0x0a, 0x73, 0x17, 0xb5, 0x15, 0x12, 0x08, 0x01, 0xa2, 0x6b, 0xf4, 0x5b, 0xfb, 0x6d, 0xa7, + 0x12, 0x58, 0x12, 0xed, 0xbc, 0xee, 0x2d, 0x23, 0xcc, 0xa7, 0x68, 0x35, 0x06, 0x3d, 0x68, 0xb5, + 0x61, 0xe7, 0xf0, 0x63, 0x7b, 0x8e, 0xf7, 0xa2, 0xfd, 0x3a, 0x40, 0xa7, 0x40, 0xb3, 0x78, 0xf5, + 0x82, 0x9a, 0x99, 0x15, 0xc2, 0xbc, 0x98, 0x75, 0xfa, 0xf3, 0xb7, 0x72, 0x3a, 0x83, 0x57, 0xf9, + 0xfc, 0x00, 0x75, 0x8e, 0xb2, 0x63, 0xff, 0x92, 0x0a, 0x79, 0xfd, 0x5a, 0xd6, 0xeb, 0xd7, 0xf2, + 0x0b, 0xb4, 0x39, 0x9c, 0xe0, 0x28, 0x82, 0xe0, 0x9c, 0x69, 0xe2, 0x33, 0x7f, 0x88, 0x10, 0xc9, + 0x24, 0x8a, 0x30, 0xb3, 0xb4, 0xb4, 0x73, 0xc9, 0x89, 0xdf, 0x18, 0x55, 0x8b, 0x8d, 0x51, 0x65, + 0x39, 0x68, 0xeb, 0x42, 0x90, 0x5f, 0x15, 0x6f, 0x96, 0x27, 0xb1, 0x30, 0xef, 0xa2, 0x15, 0xd5, + 0xab, 0x39, 0xd0, 0x92, 0xb3, 0x9c, 0x0a, 0x72, 0xe2, 0x9b, 0xfb, 0xf5, 0x77, 0x11, 0x8b, 0x5d, + 0xea, 0x8b, 0xee, 0x62, 0xbf, 0xb5, 0xbf, 0xe4, 0x6c, 0x26, 0x95, 0xf9, 0x89, 0x2f, 0xac, 0x5f, + 0xa3, 0x4e, 0x0d, 0xd0, 0xdc, 0x44, 0x8b, 0x25, 0xd6, 0x22, 0xf5, 0xcd, 0x07, 0x68, 0xa7, 0x02, + 0x6a, 0xd2, 0x7d, 0x86, 0xd8, 0x76, 0xee, 0x95, 0x0a, 0x0d, 0xc6, 0x17, 0xd6, 0x13, 0xb4, 0x7d, + 0x52, 0x91, 0x4b, 0x39, 0x4c, 0x1a, 0x27, 0x34, 0x9a, 0xc3, 0x78, 0x17, 0xb5, 0xcb, 0xc7, 0xbf, + 0x3e, 0xfd, 0x92, 0x53, 0x09, 0xac, 0x10, 0xdd, 0xba, 0x10, 0xe4, 0x0c, 0x22, 0xbf, 0x02, 0x7b, + 0xcd, 0x05, 0x1c, 0xcf, 0x02, 0xcd, 0xfd, 0xb8, 0xac, 0xdc, 0xfd, 0xc1, 0x40, 0xdd, 0x53, 0x98, + 0x1e, 0x09, 0x41, 0xc7, 0x51, 0x08, 0x91, 0x54, 0x64, 0x81, 0x09, 0xa8, 0x4f, 0xf3, 0x3d, 0xb4, + 0x51, 0x36, 0x5a, 0xd9, 0x5f, 0xeb, 0xce, 0x7a, 0x21, 0xd4, 0x8d, 0xf5, 0x00, 0xa1, 0x98, 0x43, + 0xea, 0x12, 0xf7, 0x12, 0xa6, 0x79, 0x18, 0xbb, 0xf5, 0x59, 0x93, 0xfd, 0x5b, 0xd8, 0xa3, 0xc4, + 0x0b, 0x28, 0x39, 0x85, 0xa9, 0xb3, 0xa6, 0xf4, 0x87, 0xa7, 0x30, 0x55, 0x6f, 0x87, 0x98, 0xbd, + 0x00, 0xae, 0x07, 0x44, 0xcb, 0xc9, 0x16, 0xd6, 0x9f, 0x0c, 0x74, 0xef, 0x02, 0x07, 0xd4, 0xc7, + 0x92, 0xf1, 0xe2, 0xbe, 0x47, 0x89, 0xa7, 0x2c, 0xde, 0x70, 0xaf, 0xd7, 0xa2, 0x5d, 0xbc, 0x21, + 0xda, 0x4f, 0xd0, 0x7a, 0x99, 0x61, 0x15, 0x6f, 0x6b, 0x8e, 0x78, 0x3b, 0x85, 0xc5, 0x29, 0x4c, + 0xad, 0xdf, 0xd5, 0x62, 0x3b, 0x9e, 0xd6, 0x9a, 0x97, 0xff, 0x87, 0xd8, 0x4a, 0xb7, 0xf5, 0xd8, + 0x48, 0xdd, 0xfe, 0xda, 0x01, 0x5a, 0xd7, 0x0f, 0x60, 0xfd, 0xc5, 0x40, 0xdb, 0x75, 0xaf, 0xe2, + 0x9c, 0x8d, 0x78, 0x12, 0xc1, 0x9b, 0xbc, 0x57, 0xf5, 0xb3, 0x58, 0xaf, 0x9f, 0xa7, 0x68, 0xb3, + 0x11, 0x94, 0xc8, 0x6f, 0xe3, 0xa7, 0x73, 0x51, 0x48, 0x8d, 0x1e, 0x9c, 0x8d, 0xfa, 0x39, 0xc4, + 0xf1, 0xd3, 0x6f, 0xaf, 0x7a, 0xc6, 0x77, 0x57, 0x3d, 0xe3, 0x1f, 0x57, 0x3d, 0xe3, 0xab, 0x57, + 0xbd, 0x85, 0xef, 0x5e, 0xf5, 0x16, 0xfe, 0xf6, 0xaa, 0xb7, 0xf0, 0x9b, 0x8f, 0xc7, 0x54, 0x4e, + 0x12, 0xcf, 0x26, 0x2c, 0x1c, 0xe4, 0x3f, 0x8e, 0x95, 0xaf, 0x0f, 0xcb, 0xff, 0xf0, 0xf4, 0x70, + 0xf0, 0xb2, 0xf9, 0x33, 0x2e, 0xa7, 0x31, 0x08, 0x6f, 0x45, 0x97, 0xf5, 0x47, 0xff, 0x0e, 0x00, + 0x00, 0xff, 0xff, 0x50, 0x7d, 0x10, 0xbd, 0xbd, 0x0f, 0x00, 0x00, } func (m *ConsumerAdditionProposal) Marshal() (dAtA []byte, err error) { @@ -1794,7 +1794,7 @@ func (m *ConsumerAdditionProposals) MarshalToSizedBuffer(dAtA []byte) (int, erro return len(dAtA) - i, nil } -func (m *AddressList) Marshal() (dAtA []byte, err error) { +func (m *ConsumerRemovalProposals) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -1804,21 +1804,26 @@ func (m *AddressList) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *AddressList) MarshalTo(dAtA []byte) (int, error) { +func (m *ConsumerRemovalProposals) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *AddressList) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ConsumerRemovalProposals) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if len(m.Addresses) > 0 { - for iNdEx := len(m.Addresses) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.Addresses[iNdEx]) - copy(dAtA[i:], m.Addresses[iNdEx]) - i = encodeVarintProvider(dAtA, i, uint64(len(m.Addresses[iNdEx]))) + if len(m.Pending) > 0 { + for iNdEx := len(m.Pending) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Pending[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintProvider(dAtA, i, uint64(size)) + } i-- dAtA[i] = 0xa } @@ -1826,7 +1831,7 @@ func (m *AddressList) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *ConsumerRemovalProposals) Marshal() (dAtA []byte, err error) { +func (m *AddressList) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -1836,26 +1841,21 @@ func (m *ConsumerRemovalProposals) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ConsumerRemovalProposals) MarshalTo(dAtA []byte) (int, error) { +func (m *AddressList) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ConsumerRemovalProposals) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *AddressList) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if len(m.Pending) > 0 { - for iNdEx := len(m.Pending) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Pending[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintProvider(dAtA, i, uint64(size)) - } + if len(m.Addresses) > 0 { + for iNdEx := len(m.Addresses) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Addresses[iNdEx]) + copy(dAtA[i:], m.Addresses[iNdEx]) + i = encodeVarintProvider(dAtA, i, uint64(len(m.Addresses[iNdEx]))) i-- dAtA[i] = 0xa } @@ -2450,30 +2450,30 @@ func (m *ConsumerAdditionProposals) Size() (n int) { return n } -func (m *AddressList) Size() (n int) { +func (m *ConsumerRemovalProposals) Size() (n int) { if m == nil { return 0 } var l int _ = l - if len(m.Addresses) > 0 { - for _, b := range m.Addresses { - l = len(b) + if len(m.Pending) > 0 { + for _, e := range m.Pending { + l = e.Size() n += 1 + l + sovProvider(uint64(l)) } } return n } -func (m *ConsumerRemovalProposals) Size() (n int) { +func (m *AddressList) Size() (n int) { if m == nil { return 0 } var l int _ = l - if len(m.Pending) > 0 { - for _, e := range m.Pending { - l = e.Size() + if len(m.Addresses) > 0 { + for _, b := range m.Addresses { + l = len(b) n += 1 + l + sovProvider(uint64(l)) } } @@ -4210,7 +4210,7 @@ func (m *ConsumerAdditionProposals) Unmarshal(dAtA []byte) error { } return nil } -func (m *AddressList) Unmarshal(dAtA []byte) error { +func (m *ConsumerRemovalProposals) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -4233,17 +4233,17 @@ func (m *AddressList) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: AddressList: wiretype end group for non-group") + return fmt.Errorf("proto: ConsumerRemovalProposals: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: AddressList: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ConsumerRemovalProposals: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Pending", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProvider @@ -4253,23 +4253,25 @@ func (m *AddressList) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthProvider } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthProvider } if postIndex > l { return io.ErrUnexpectedEOF } - m.Addresses = append(m.Addresses, make([]byte, postIndex-iNdEx)) - copy(m.Addresses[len(m.Addresses)-1], dAtA[iNdEx:postIndex]) + m.Pending = append(m.Pending, &ConsumerRemovalProposal{}) + if err := m.Pending[len(m.Pending)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex default: iNdEx = preIndex @@ -4292,7 +4294,7 @@ func (m *AddressList) Unmarshal(dAtA []byte) error { } return nil } -func (m *ConsumerRemovalProposals) Unmarshal(dAtA []byte) error { +func (m *AddressList) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -4315,17 +4317,17 @@ func (m *ConsumerRemovalProposals) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ConsumerRemovalProposals: wiretype end group for non-group") + return fmt.Errorf("proto: AddressList: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ConsumerRemovalProposals: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: AddressList: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Pending", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowProvider @@ -4335,25 +4337,23 @@ func (m *ConsumerRemovalProposals) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthProvider } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthProvider } if postIndex > l { return io.ErrUnexpectedEOF } - m.Pending = append(m.Pending, &ConsumerRemovalProposal{}) - if err := m.Pending[len(m.Pending)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.Addresses = append(m.Addresses, make([]byte, postIndex-iNdEx)) + copy(m.Addresses[len(m.Addresses)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex