@ -22,41 +22,6 @@ var _ = math.Inf
// proto package needs to be updated.
const _ = proto . ProtoPackageIsVersion3 // please upgrade the proto package
// ReceiverType indicates who is the receiver of this message.
type ReceiverType int32
const (
ReceiverType_NEWNODE ReceiverType = 0
ReceiverType_LEADER ReceiverType = 1
ReceiverType_VALIDATOR ReceiverType = 2
ReceiverType_CLIENT ReceiverType = 3
ReceiverType_LEADER_OR_VALIDATOR ReceiverType = 4
)
var ReceiverType_name = map [ int32 ] string {
0 : "NEWNODE" ,
1 : "LEADER" ,
2 : "VALIDATOR" ,
3 : "CLIENT" ,
4 : "LEADER_OR_VALIDATOR" ,
}
var ReceiverType_value = map [ string ] int32 {
"NEWNODE" : 0 ,
"LEADER" : 1 ,
"VALIDATOR" : 2 ,
"CLIENT" : 3 ,
"LEADER_OR_VALIDATOR" : 4 ,
}
func ( x ReceiverType ) String ( ) string {
return proto . EnumName ( ReceiverType_name , int32 ( x ) )
}
func ( ReceiverType ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return fileDescriptor_33c57e4bae7b9afd , [ ] int { 0 }
}
// ServiceType indicates which service used to generate this message.
type ServiceType int32
@ -86,7 +51,7 @@ func (x ServiceType) String() string {
}
func ( ServiceType ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return fileDescriptor_33c57e4bae7b9afd , [ ] int { 1 }
return fileDescriptor_33c57e4bae7b9afd , [ ] int { 0 }
}
// MessageType indicates what is the type of this message.
@ -139,7 +104,7 @@ func (x MessageType) String() string {
}
func ( MessageType ) EnumDescriptor ( ) ( [ ] byte , [ ] int ) {
return fileDescriptor_33c57e4bae7b9afd , [ ] int { 2 }
return fileDescriptor_33c57e4bae7b9afd , [ ] int { 1 }
}
type LotteryRequest_Type int32
@ -176,14 +141,14 @@ func (LotteryRequest_Type) EnumDescriptor() ([]byte, []int) {
//
// The request field will be either one of the structure corresponding to the MessageType type.
type Message struct {
ReceiverType ReceiverType ` protobuf:"varint,1,opt,name=receiver_type,json=receiverType,proto3,enum=message.ReceiverType" json:"receiver_type,omitempty" `
ServiceType ServiceType ` protobuf:"varint,2,opt,name=service_type,json=serviceType,proto3,enum=message.ServiceType" json:"service_type,omitempty" `
Type MessageType ` protobuf:"varint,3,opt,name=type,proto3,enum=message.MessageType" json:"type,omitempty" `
Signature [ ] byte ` protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty" `
ServiceType ServiceType ` protobuf:"varint,1,opt,name=service_type,json=serviceType,proto3,enum=message.ServiceType" json:"service_type,omitempty" `
Type MessageType ` protobuf:"varint,2,opt,name=type,proto3,enum=message.MessageType" json:"type,omitempty" `
Signature [ ] byte ` protobuf:"bytes,3,opt,name=signature,proto3" json:"signature,omitempty" `
// Types that are valid to be assigned to Request:
// *Message_Staking
// *Message_Consensus
// *Message_Drand
// *Message_Viewchange
// *Message_LotteryRequest
Request isMessage_Request ` protobuf_oneof:"request" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
@ -216,13 +181,6 @@ func (m *Message) XXX_DiscardUnknown() {
var xxx_messageInfo_Message proto . InternalMessageInfo
func ( m * Message ) GetReceiverType ( ) ReceiverType {
if m != nil {
return m . ReceiverType
}
return ReceiverType_NEWNODE
}
func ( m * Message ) GetServiceType ( ) ServiceType {
if m != nil {
return m . ServiceType
@ -249,15 +207,19 @@ type isMessage_Request interface {
}
type Message_Staking struct {
Staking * StakingRequest ` protobuf:"bytes,5 ,opt,name=staking,proto3,oneof" `
Staking * StakingRequest ` protobuf:"bytes,4 ,opt,name=staking,proto3,oneof" `
}
type Message_Consensus struct {
Consensus * ConsensusRequest ` protobuf:"bytes,6 ,opt,name=consensus,proto3,oneof" `
Consensus * ConsensusRequest ` protobuf:"bytes,5 ,opt,name=consensus,proto3,oneof" `
}
type Message_Drand struct {
Drand * DrandRequest ` protobuf:"bytes,7,opt,name=drand,proto3,oneof" `
Drand * DrandRequest ` protobuf:"bytes,6,opt,name=drand,proto3,oneof" `
}
type Message_Viewchange struct {
Viewchange * ViewChangeRequest ` protobuf:"bytes,7,opt,name=viewchange,proto3,oneof" `
}
type Message_LotteryRequest struct {
@ -270,6 +232,8 @@ func (*Message_Consensus) isMessage_Request() {}
func ( * Message_Drand ) isMessage_Request ( ) { }
func ( * Message_Viewchange ) isMessage_Request ( ) { }
func ( * Message_LotteryRequest ) isMessage_Request ( ) { }
func ( m * Message ) GetRequest ( ) isMessage_Request {
@ -300,6 +264,13 @@ func (m *Message) GetDrand() *DrandRequest {
return nil
}
func ( m * Message ) GetViewchange ( ) * ViewChangeRequest {
if x , ok := m . GetRequest ( ) . ( * Message_Viewchange ) ; ok {
return x . Viewchange
}
return nil
}
func ( m * Message ) GetLotteryRequest ( ) * LotteryRequest {
if x , ok := m . GetRequest ( ) . ( * Message_LotteryRequest ) ; ok {
return x . LotteryRequest
@ -313,14 +284,14 @@ func (*Message) XXX_OneofWrappers() []interface{} {
( * Message_Staking ) ( nil ) ,
( * Message_Consensus ) ( nil ) ,
( * Message_Drand ) ( nil ) ,
( * Message_Viewchange ) ( nil ) ,
( * Message_LotteryRequest ) ( nil ) ,
}
}
type Response struct {
ReceiverType ReceiverType ` protobuf:"varint,1,opt,name=receiver_type,json=receiverType,proto3,enum=message.ReceiverType" json:"receiver_type,omitempty" `
ServiceType ServiceType ` protobuf:"varint,2,opt,name=service_type,json=serviceType,proto3,enum=message.ServiceType" json:"service_type,omitempty" `
Type MessageType ` protobuf:"varint,3,opt,name=type,proto3,enum=message.MessageType" json:"type,omitempty" `
ServiceType ServiceType ` protobuf:"varint,1,opt,name=service_type,json=serviceType,proto3,enum=message.ServiceType" json:"service_type,omitempty" `
Type MessageType ` protobuf:"varint,2,opt,name=type,proto3,enum=message.MessageType" json:"type,omitempty" `
// Types that are valid to be assigned to Response:
// *Response_LotteryResponse
Response isResponse_Response ` protobuf_oneof:"response" `
@ -354,13 +325,6 @@ func (m *Response) XXX_DiscardUnknown() {
var xxx_messageInfo_Response proto . InternalMessageInfo
func ( m * Response ) GetReceiverType ( ) ReceiverType {
if m != nil {
return m . ReceiverType
}
return ReceiverType_NEWNODE
}
func ( m * Response ) GetServiceType ( ) ServiceType {
if m != nil {
return m . ServiceType
@ -380,7 +344,7 @@ type isResponse_Response interface {
}
type Response_LotteryResponse struct {
LotteryResponse * LotteryResponse ` protobuf:"bytes,4 ,opt,name=lottery_response,json=lotteryResponse,proto3,oneof" `
LotteryResponse * LotteryResponse ` protobuf:"bytes,3 ,opt,name=lottery_response,json=lotteryResponse,proto3,oneof" `
}
func ( * Response_LotteryResponse ) isResponse_Response ( ) { }
@ -682,8 +646,119 @@ func (m *DrandRequest) GetPayload() []byte {
return nil
}
type ViewChangeRequest struct {
ConsensusId uint32 ` protobuf:"varint,1,opt,name=consensus_id,json=consensusId,proto3" json:"consensus_id,omitempty" `
SeqNum uint64 ` protobuf:"varint,2,opt,name=seq_num,json=seqNum,proto3" json:"seq_num,omitempty" `
SenderPubkey [ ] byte ` protobuf:"bytes,3,opt,name=sender_pubkey,json=senderPubkey,proto3" json:"sender_pubkey,omitempty" `
LeaderPubkey [ ] byte ` protobuf:"bytes,4,opt,name=leader_pubkey,json=leaderPubkey,proto3" json:"leader_pubkey,omitempty" `
Payload [ ] byte ` protobuf:"bytes,5,opt,name=payload,proto3" json:"payload,omitempty" `
ViewchangeSig [ ] byte ` protobuf:"bytes,6,opt,name=viewchange_sig,json=viewchangeSig,proto3" json:"viewchange_sig,omitempty" `
// below is for newview message only
M1Aggsigs [ ] byte ` protobuf:"bytes,7,opt,name=m1_aggsigs,json=m1Aggsigs,proto3" json:"m1_aggsigs,omitempty" `
M1Bitmap [ ] byte ` protobuf:"bytes,8,opt,name=m1_bitmap,json=m1Bitmap,proto3" json:"m1_bitmap,omitempty" `
M2Aggsigs [ ] byte ` protobuf:"bytes,9,opt,name=m2_aggsigs,json=m2Aggsigs,proto3" json:"m2_aggsigs,omitempty" `
M2Bitmap [ ] byte ` protobuf:"bytes,10,opt,name=m2_bitmap,json=m2Bitmap,proto3" json:"m2_bitmap,omitempty" `
XXX_NoUnkeyedLiteral struct { } ` json:"-" `
XXX_unrecognized [ ] byte ` json:"-" `
XXX_sizecache int32 ` json:"-" `
}
func ( m * ViewChangeRequest ) Reset ( ) { * m = ViewChangeRequest { } }
func ( m * ViewChangeRequest ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * ViewChangeRequest ) ProtoMessage ( ) { }
func ( * ViewChangeRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return fileDescriptor_33c57e4bae7b9afd , [ ] int { 7 }
}
func ( m * ViewChangeRequest ) XXX_Unmarshal ( b [ ] byte ) error {
return xxx_messageInfo_ViewChangeRequest . Unmarshal ( m , b )
}
func ( m * ViewChangeRequest ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
return xxx_messageInfo_ViewChangeRequest . Marshal ( b , m , deterministic )
}
func ( m * ViewChangeRequest ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_ViewChangeRequest . Merge ( m , src )
}
func ( m * ViewChangeRequest ) XXX_Size ( ) int {
return xxx_messageInfo_ViewChangeRequest . Size ( m )
}
func ( m * ViewChangeRequest ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_ViewChangeRequest . DiscardUnknown ( m )
}
var xxx_messageInfo_ViewChangeRequest proto . InternalMessageInfo
func ( m * ViewChangeRequest ) GetConsensusId ( ) uint32 {
if m != nil {
return m . ConsensusId
}
return 0
}
func ( m * ViewChangeRequest ) GetSeqNum ( ) uint64 {
if m != nil {
return m . SeqNum
}
return 0
}
func ( m * ViewChangeRequest ) GetSenderPubkey ( ) [ ] byte {
if m != nil {
return m . SenderPubkey
}
return nil
}
func ( m * ViewChangeRequest ) GetLeaderPubkey ( ) [ ] byte {
if m != nil {
return m . LeaderPubkey
}
return nil
}
func ( m * ViewChangeRequest ) GetPayload ( ) [ ] byte {
if m != nil {
return m . Payload
}
return nil
}
func ( m * ViewChangeRequest ) GetViewchangeSig ( ) [ ] byte {
if m != nil {
return m . ViewchangeSig
}
return nil
}
func ( m * ViewChangeRequest ) GetM1Aggsigs ( ) [ ] byte {
if m != nil {
return m . M1Aggsigs
}
return nil
}
func ( m * ViewChangeRequest ) GetM1Bitmap ( ) [ ] byte {
if m != nil {
return m . M1Bitmap
}
return nil
}
func ( m * ViewChangeRequest ) GetM2Aggsigs ( ) [ ] byte {
if m != nil {
return m . M2Aggsigs
}
return nil
}
func ( m * ViewChangeRequest ) GetM2Bitmap ( ) [ ] byte {
if m != nil {
return m . M2Bitmap
}
return nil
}
func init ( ) {
proto . RegisterEnum ( "message.ReceiverType" , ReceiverType_name , ReceiverType_value )
proto . RegisterEnum ( "message.ServiceType" , ServiceType_name , ServiceType_value )
proto . RegisterEnum ( "message.MessageType" , MessageType_name , MessageType_value )
proto . RegisterEnum ( "message.LotteryRequest_Type" , LotteryRequest_Type_name , LotteryRequest_Type_value )
@ -694,65 +769,70 @@ func init() {
proto . RegisterType ( ( * StakingRequest ) ( nil ) , "message.StakingRequest" )
proto . RegisterType ( ( * ConsensusRequest ) ( nil ) , "message.ConsensusRequest" )
proto . RegisterType ( ( * DrandRequest ) ( nil ) , "message.DrandRequest" )
proto . RegisterType ( ( * ViewChangeRequest ) ( nil ) , "message.ViewChangeRequest" )
}
func init ( ) { proto . RegisterFile ( "message.proto" , fileDescriptor_33c57e4bae7b9afd ) }
var fileDescriptor_33c57e4bae7b9afd = [ ] byte {
// 841 bytes of a gzipped FileDescriptorProto
0x1f , 0x8b , 0x08 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x02 , 0xff , 0xcc , 0x55 , 0x41 , 0x6f , 0xea , 0x46 ,
0x10 , 0xc6 , 0x40 , 0x30 , 0x8c , 0x0d , 0x6c , 0xf7 , 0xb5 , 0x2f , 0x6e , 0xf4 , 0xaa , 0x52 , 0x7a , 0x41 ,
0x91 , 0x1a , 0x3d , 0xe5 , 0x1d , 0xaa , 0xf6 , 0xe6 , 0xc0 , 0x2a , 0x58 , 0x21 , 0x6b , 0xba , 0x98 , 0x17 ,
0x55 , 0x3d , 0x58 , 0x0e , 0xac , 0x12 , 0x14 , 0xc7 , 0x26 , 0x5e , 0x13 , 0x89 , 0xdf , 0xd4 , 0x1e , 0xfb ,
0x07 , 0xfa , 0xbf , 0x7a , 0xa8 , 0xbc , 0x6b , 0xb0 , 0x21 , 0xed , 0xbd , 0x37 , 0xcf , 0x37 , 0xf3 , 0xcd ,
0x7e , 0x33 , 0xb3 , 0xb3 , 0x86 , 0xf6 , 0x33 , 0x17 , 0x22 , 0x78 , 0xe0 , 0x17 , 0xeb , 0x24 , 0x4e , 0x63 ,
0xac , 0xe7 , 0x66 , 0xff , 0xcf , 0x1a , 0xe8 , 0xb7 , 0xea , 0x1b , 0xff , 0x0c , 0xed , 0x84 , 0x2f , 0xf8 ,
0xea , 0x95 , 0x27 , 0x7e , 0xba , 0x5d , 0x73 , 0x4b , 0xeb , 0x69 , 0x83 , 0xce , 0xe5 , 0x57 , 0x17 , 0x3b ,
0x2e , 0xcb , 0xbd , 0xde , 0x76 , 0xcd , 0x99 , 0x99 , 0x94 , 0x2c , 0xfc , 0x23 , 0x98 , 0x82 , 0x27 , 0xaf ,
0xab , 0x05 , 0x57 , 0xd4 , 0xaa , 0xa4 , 0x7e , 0xb9 , 0xa7 , 0xce , 0x94 , 0x53 , 0x32 , 0x0d , 0x51 , 0x18 ,
0x78 , 0x00 , 0x75 , 0x49 , 0xa8 , 0x1d , 0x11 , 0x72 , 0x51 , 0x92 , 0x20 , 0x23 , 0xf0 , 0x07 , 0x68 , 0x89 ,
0xd5 , 0x43 , 0x14 , 0xa4 , 0x9b , 0x84 , 0x5b , 0xf5 , 0x9e , 0x36 , 0x30 , 0x59 , 0x01 , 0xe0 , 0x4f , 0xa0 ,
0x8b , 0x34 , 0x78 , 0x5a , 0x45 , 0x0f , 0xd6 , 0x49 , 0x4f , 0x1b , 0x18 , 0x97 , 0xa7 , 0xc5 , 0xd9 , 0x0a ,
0x67 , 0xfc , 0x65 , 0xc3 , 0x45 , 0x3a , 0xae , 0xb0 , 0x5d , 0x24 , 0xfe , 0x09 , 0x5a , 0x8b , 0x38 , 0x12 ,
0x3c , 0x12 , 0x1b , 0x61 , 0x35 , 0x24 , 0xed , 0xeb , 0x3d , 0x6d , 0xb8 , 0xf3 , 0x14 , 0xc4 , 0x22 , 0x1a ,
0xff , 0x00 , 0x27 , 0xcb , 0x24 , 0x88 , 0x96 , 0x96 , 0x2e , 0x69 , 0x45 , 0x93 , 0x46 , 0x19 , 0x5a , 0x50 ,
0x54 , 0x14 , 0xbe , 0x82 , 0x6e , 0x18 , 0xa7 , 0x29 , 0x4f , 0xb6 , 0x7e , 0xa2 , 0x7c , 0x56 , 0xf3 , 0x48 ,
0xe6 , 0x44 , 0xf9 , 0x0b , 0x6a , 0x27 , 0x3c , 0x40 , 0xae , 0x5a , 0xa0 , 0xe7 , 0xdc , 0xfe , 0xdf , 0x1a ,
0x34 , 0x19 , 0x17 , 0xeb , 0x4c , 0xce , 0xff , 0x7d , 0x6e , 0x04 , 0x50 , 0x51 , 0xba , 0x92 , 0x2c , 0xc7 ,
0x67 , 0x5c , 0x5a , 0x6f , 0x6b , 0x57 , 0xfe , 0x71 , 0x85 , 0x75 , 0xc3 , 0x43 , 0xe8 , 0x0a , 0xa0 , 0xb9 ,
0xa3 , 0xf7 , 0xaf , 0xa1 , 0x7b , 0xc4 , 0xc0 , 0x16 , 0xe8 , 0xeb , 0x30 , 0xd8 , 0xf2 , 0x44 , 0x58 , 0xd5 ,
0x5e , 0x6d , 0xd0 , 0x62 , 0x3b , 0x13 , 0x9f , 0x41 , 0xf3 , 0x3e , 0x08 , 0x83 , 0x68 , 0xc1 , 0x85 , 0x55 ,
0x93 , 0xae , 0xbd , 0xdd , 0xff , 0x5d , 0x83 , 0xce , 0x61 , 0xdf , 0xf1 , 0xc7 , 0xbc , 0x30 , 0xd5 , 0xc4 ,
0x0f , 0xff , 0x31 , 0x9e , 0x8b , 0x52 , 0x81 , 0xdf , 0x82 , 0xb1 , 0x4e , 0x56 , 0xaf , 0x41 , 0xca , 0xfd ,
0x27 , 0xbe , 0x95 , 0x2d , 0x6c , 0x31 , 0xc8 , 0xa1 , 0x1b , 0xbe , 0xc5 , 0xef , 0xa1 , 0x11 , 0x3c , 0xc7 ,
0x9b , 0x28 , 0x95 , 0xdd , 0xaa , 0xb1 , 0xdc , 0xea , 0x5f , 0x40 , 0x5d , 0xf6 , 0xb2 , 0x05 , 0x27 , 0x84 ,
0x7a , 0x84 , 0xa1 , 0x0a , 0x06 , 0x68 , 0x30 , 0x32 , 0x9b , 0x4f , 0x3c , 0xa4 , 0xe1 , 0x2e , 0x18 , 0x53 ,
0x67 , 0x78 , 0xe3 , 0xdf , 0x39 , 0x94 , 0x12 , 0x86 , 0xaa , 0xfd , 0x1b , 0xe8 , 0x1c , 0xde , 0x65 , 0xdc ,
0x03 , 0x23 , 0x4d , 0x82 , 0x48 , 0x04 , 0x8b , 0x74 , 0x15 , 0x47 , 0x52 , 0xb3 , 0xc9 , 0xca , 0x10 , 0x3e ,
0x05 , 0x3d , 0x8a , 0x97 , 0xdc , 0x5f , 0x2d , 0x73 , 0x61 , 0x8d , 0xcc , 0x74 , 0x96 , 0xfd , 0x3f , 0x34 ,
0x40 , 0xc7 , 0x57 , 0x1c , 0x7f , 0x07 , 0xe6 , 0xfe , 0x8a , 0x67 , 0x94 , 0x2c , 0x61 , 0x9b , 0x19 , 0x7b ,
0xcc , 0x59 , 0x66 , 0x09 , 0x05 , 0x7f , 0xf1 , 0xa3 , 0xcd , 0xb3 , 0x4c , 0x58 , 0x67 , 0x0d , 0xc1 , 0x5f ,
0xe8 , 0xe6 , 0x19 , 0x7f , 0x03 , 0x70 , 0x1f , 0xc6 , 0x8b , 0x27 , 0xff , 0x31 , 0x10 , 0x8f , 0xb2 , 0x52 ,
0x93 , 0xb5 , 0x24 , 0x32 , 0x0e , 0xc4 , 0x23 , 0xfe , 0x1e , 0xda , 0x82 , 0x47 , 0x4b , 0x9e , 0xf8 , 0xeb ,
0xcd , 0x7d , 0xd6 , 0x27 , 0xb5 , 0xc2 , 0xa6 , 0x02 , 0xa7 , 0x12 , 0x93 , 0x53 , 0x0c , 0xb6 , 0x61 , 0x1c ,
0x2c , 0xe5 , 0x16 , 0x9b , 0x6c , 0x67 , 0xf6 , 0x43 , 0x30 , 0xcb , 0x9b , 0xf5 , 0x36 , 0x9d , 0xf6 , 0x2f ,
0xe9 , 0x0e , 0x25 , 0x55 , 0x8f , 0x25 , 0x95 , 0x4e , 0xab , 0x1d , 0x9c , 0x76 , 0xfe , 0x1b , 0x98 , 0xe5 ,
0xa5 , 0xc1 , 0x06 , 0xe8 , 0x94 , 0xdc , 0x51 , 0x77 , 0x44 , 0xd4 , 0x8c , 0x26 , 0xc4 , 0x1e , 0x11 , 0x86 ,
0x34 , 0xdc , 0x86 , 0xd6 , 0x67 , 0x7b , 0xe2 , 0x8c , 0x6c , 0xcf , 0x65 , 0xa8 , 0x9a , 0xb9 , 0x86 , 0x13 ,
0x87 , 0x50 , 0x0f , 0xd5 , 0xf0 , 0x29 , 0xbc , 0x53 , 0x61 , 0xbe , 0xcb , 0xfc , 0x22 , 0xa8 , 0x7e , 0x3e ,
0x06 , 0xa3 , 0xb4 , 0x56 , 0x59 , 0x8a , 0xa1 , 0x4b , 0x67 , 0x84 , 0xce , 0xe6 , 0x33 , 0x54 , 0xc9 , 0x8e ,
0x9a , 0x79 , 0xf6 , 0x8d , 0x43 , 0xaf , 0x91 , 0x96 , 0xdd , 0x8c , 0x11 , 0xb3 , 0xe9 , 0x08 , 0x55 , 0x31 ,
0x86 , 0x8e , 0x4a , 0xed , 0xcf , 0xe6 , 0xd3 , 0xa9 , 0xcb , 0x3c , 0x54 , 0x3b , 0xff , 0x4b , 0x03 , 0xa3 ,
0xb4 , 0x70 , 0xf8 , 0x0c , 0xde , 0xe7 , 0x32 , 0xfd , 0x2b , 0x62 , 0x0f , 0x5d , 0xea , 0xef , 0x52 , 0x55 ,
0xb0 , 0x09 , 0x4d , 0x9b , 0x52 , 0x77 , 0x4e , 0x87 , 0x04 , 0x69 , 0xd9 , 0x29 , 0x53 , 0x46 , 0xa6 , 0x36 ,
0x23 , 0xa8 , 0x9a , 0xb9 , 0x72 , 0x63 , 0x84 , 0x6a , 0xb2 , 0x06 , 0xf7 , 0xf6 , 0xd6 , 0xf1 , 0x50 , 0x5d ,
0x69 , 0xcb , 0xbe , 0x3d , 0x32 , 0x42 , 0x27 , 0xb8 , 0x03 , 0xf0 , 0xd9 , 0x21 , 0x77 , 0xc3 , 0xb1 , 0x4d ,
0xaf , 0x09 , 0x6a , 0xe4 , 0x6d , 0xc9 , 0x20 , 0xa4 , 0x67 , 0x4e , 0xa9 , 0xd5 , 0x77 , 0xa8 , 0xe3 , 0x21 ,
0xc0 , 0x08 , 0x4c , 0x65 , 0xe7 , 0xd9 , 0x0c , 0xfc , 0x0e , 0xba , 0x13 , 0xd7 , 0xf3 , 0x08 , 0xfb , 0xd5 ,
0x67 , 0xe4 , 0x97 , 0x39 , 0x99 , 0x79 , 0xc8 , 0xbc , 0xb4 , 0xa1 , 0x3d , 0x0c , 0x57 , 0x3c , 0x4a , 0xf3 ,
0x9e , 0xe0 , 0x8f , 0xa0 , 0x4f , 0x93 , 0x78 , 0xc1 , 0x85 , 0xc0 , 0xe8 , 0xf8 , 0x59 , 0x39 , 0xfb , 0xa2 ,
0xf4 , 0xa8 , 0xe5 , 0x8f , 0x41 , 0xe5 , 0xbe , 0x21 , 0x7f , 0x6a , 0x9f , 0xfe , 0x09 , 0x00 , 0x00 , 0xff ,
0xff , 0x68 , 0xca , 0xac , 0xdf , 0xe5 , 0x06 , 0x00 , 0x00 ,
// 907 bytes of a gzipped FileDescriptorProto
0x1f , 0x8b , 0x08 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x02 , 0xff , 0xbc , 0x95 , 0xdf , 0x6f , 0xe2 , 0x46 ,
0x10 , 0xc7 , 0x31 , 0x10 , 0x8c , 0xc7 , 0x86 , 0xec , 0x6d , 0xdb , 0x3b , 0x37 , 0xbd , 0xaa , 0x94 , 0x53 ,
0x25 , 0x74 , 0x52 , 0xa3 , 0x0b , 0xf7 , 0x50 , 0x55 , 0xea , 0x0b , 0x98 , 0x55 , 0xb0 , 0x92 , 0x18 , 0xba ,
0x98 , 0x8b , 0xfa , 0x64 , 0x19 , 0x58 , 0x11 , 0x2b , 0xc6 , 0x26 , 0x5e , 0x93 , 0x13 , 0x7f , 0x53 , 0xfb ,
0xdc , 0xe7 , 0xf6 , 0x5f , 0xe8 , 0x5f , 0x54 , 0x79 , 0x6d , 0x63 , 0x7e , 0x5c , 0xd5 , 0x87 , 0x4a , 0x7d ,
0x63 , 0xbe , 0x33 , 0x9f , 0xd9 , 0xd9 , 0xf1 , 0xce , 0x00 , 0x8d , 0x15 , 0xe3 , 0xdc , 0x5d , 0xb2 , 0xcb ,
0x75 , 0x14 , 0xc6 , 0x21 , 0x96 , 0x33 , 0xb3 , 0xfd , 0x7b , 0x05 , 0xe4 , 0xbb , 0xf4 , 0x37 , 0xfe , 0x01 ,
0x34 , 0xce , 0xa2 , 0x67 , 0x6f , 0xce , 0x9c , 0x78 , 0xbb , 0x66 , 0xba , 0xd4 , 0x92 , 0x3a , 0xcd , 0xee ,
0xe7 , 0x97 , 0x39 , 0x3a , 0x49 , 0x9d , 0xf6 , 0x76 , 0xcd , 0xa8 , 0xca , 0x0b , 0x03 , 0x77 , 0xa0 , 0x2a ,
0x80 , 0xf2 , 0x11 , 0x90 , 0x25 , 0x16 , 0x80 , 0x88 , 0xc0 , 0xaf , 0x41 , 0xe1 , 0xde , 0x32 , 0x70 , 0xe3 ,
0x4d , 0xc4 , 0xf4 , 0x4a , 0x4b , 0xea , 0x68 , 0xb4 , 0x10 , 0xf0 , 0x7b , 0x90 , 0x79 , 0xec , 0x3e , 0x7a ,
0xc1 , 0x52 , 0xaf , 0xb6 , 0xa4 , 0x8e , 0xda , 0x7d , 0x55 , 0x9c , 0x9d , 0xea , 0x94 , 0x3d , 0x6d , 0x18 ,
0x8f , 0x87 , 0x25 , 0x9a , 0x47 , 0xe2 , 0x1f , 0x41 , 0x99 , 0x87 , 0x01 , 0x67 , 0x01 , 0xdf , 0x70 , 0xfd ,
0x4c , 0x60 , 0x5f , 0xee , 0x30 , 0x23 , 0xf7 , 0x14 , 0x60 , 0x11 , 0x8d , 0xbf , 0x87 , 0xb3 , 0x45 , 0xe4 ,
0x06 , 0x0b , 0xbd , 0x26 , 0xb0 , 0x2f , 0x76 , 0xd8 , 0x20 , 0x51 , 0x0b , 0x24 , 0x8d , 0xc2 , 0x3f , 0x01 ,
0x3c , 0x7b , 0xec , 0xe3 , 0xfc , 0xc1 , 0x0d , 0x96 , 0x4c , 0x97 , 0x05 , 0x73 , 0xb1 , 0x63 , 0x3e , 0x78 ,
0xec , 0xa3 , 0x21 , 0x5c , 0x05 , 0xb8 , 0x17 , 0x8f , 0xfb , 0x70 , 0xee , 0x87 , 0x71 , 0xcc , 0xa2 , 0xad ,
0x13 , 0xa5 , 0x01 , 0x7a , 0xfd , 0xe8 , 0x92 , 0xb7 , 0xa9 , 0xbf , 0xe0 , 0x9b , 0xfe , 0x81 , 0xd2 , 0x57 ,
0x40 , 0xce , 0xd8 , 0xf6 , 0x1f , 0x12 , 0xd4 , 0x29 , 0xe3 , 0xeb , 0xe4 , 0x32 , 0xff , 0xc7 , 0x97 , 0x23 ,
0x80 , 0x8a , 0xf2 , 0xd3 , 0x63 , 0xc5 , 0x07 , 0x54 , 0xbb , 0xfa , 0x69 , 0xfd , 0xa9 , 0x7f , 0x58 , 0xa2 ,
0xe7 , 0xfe , 0xa1 , 0xd4 , 0x07 , 0xa8 , 0xe7 , 0x78 , 0xfb , 0x1a , 0xce , 0x8f , 0x08 , 0xac , 0x83 , 0xbc ,
0xf6 , 0xdd , 0x2d , 0x8b , 0xb8 , 0x5e , 0x6e , 0x55 , 0x3a , 0x0a , 0xcd , 0x4d , 0x7c , 0x01 , 0xf5 , 0x99 ,
0xeb , 0xbb , 0xc1 , 0x9c , 0x71 , 0xbd , 0x22 , 0x5c , 0x3b , 0xbb , 0xfd , 0xab , 0x04 , 0xcd , 0xc3 , 0xde ,
0xe1 , 0x77 , 0xd9 , 0xc5 , 0xd2 , 0x4e , 0xbc , 0xfe , 0x87 , 0x16 , 0x5f , 0xee , 0x5d , 0xf0 , 0x1b , 0x50 ,
0xd7 , 0x91 , 0xf7 , 0xec , 0xc6 , 0xcc , 0x79 , 0x64 , 0x5b , 0xd1 , 0x11 , 0x85 , 0x42 , 0x26 , 0xdd , 0xb0 ,
0x2d , 0x7e , 0x09 , 0x35 , 0x77 , 0x15 , 0x6e , 0x82 , 0x58 , 0xdc , 0xbb , 0x42 , 0x33 , 0xab , 0x7d , 0x09 ,
0x55 , 0xd1 , 0x4b , 0x05 , 0xce , 0x88 , 0x65 , 0x13 , 0x8a , 0x4a , 0x18 , 0xa0 , 0x46 , 0xc9 , 0x64 , 0x7a ,
0x6b , 0x23 , 0x09 , 0x9f , 0x83 , 0x3a , 0x36 , 0x8d , 0x1b , 0xe7 , 0xde , 0xb4 , 0x2c , 0x42 , 0x51 , 0xb9 ,
0x7d , 0x03 , 0xcd , 0xc3 , 0xd7 , 0x8c , 0x5b , 0xa0 , 0xc6 , 0x91 , 0x1b , 0x70 , 0x77 , 0x1e , 0x7b , 0x61 ,
0x20 , 0x6a , 0xd6 , 0xe8 , 0xbe , 0x84 , 0x5f , 0x81 , 0x1c , 0x84 , 0x0b , 0xe6 , 0x78 , 0x8b , 0xac , 0xb0 ,
0x5a , 0x62 , 0x9a , 0x8b , 0xf6 , 0x6f , 0x12 , 0xa0 , 0xe3 , 0x47 , 0x8e , 0xbf , 0x05 , 0x6d , 0xf7 , 0xc8 ,
0x13 , 0x24 , 0x49 , 0xd8 , 0xa0 , 0xea , 0x4e , 0x33 , 0x17 , 0x49 , 0x42 , 0xce , 0x9e , 0x9c , 0x60 , 0xb3 ,
0x12 , 0x09 , 0xab , 0xb4 , 0xc6 , 0xd9 , 0x93 , 0xb5 , 0x59 , 0xe1 , 0xaf , 0x01 , 0x66 , 0x7e , 0x38 , 0x7f ,
0x74 , 0x1e , 0x5c , 0xfe , 0x90 , 0x8f , 0xa8 , 0x50 , 0x86 , 0x2e , 0x7f , 0xc0 , 0x6f , 0xa0 , 0xc1 , 0x59 ,
0xb0 , 0x60 , 0x91 , 0xb3 , 0xde , 0xcc , 0x92 , 0x3e , 0x55 , 0x45 , 0x84 , 0x96 , 0x8a , 0x63 , 0xa1 , 0x89 ,
0xaf , 0xe8 , 0x6e , 0xfd , 0xd0 , 0x5d , 0x88 , 0x81 , 0xd4 , 0x68 , 0x6e , 0xb6 , 0x7d , 0xd0 , 0xf6 , 0x67 ,
0xeb , 0x34 , 0x9d , 0xf4 , 0x89 , 0x74 , 0x87 , 0x25 , 0x95 , 0x8f , 0x4b , 0xda , 0x3b , 0xad , 0x72 , 0x78 ,
0xda , 0x5f , 0x65 , 0x78 , 0x71 , 0x32 , 0x96 , 0xff , 0xa9 , 0x3b , 0x27 , 0xf5 , 0x56 , 0x3e , 0x51 , 0xef ,
0x1b , 0x68 , 0xf8 , 0xcc , 0x3d , 0xed , 0x51 , 0x2a , 0xfe , 0x5b , 0x8f , 0xf0 , 0x77 , 0xd0 , 0x2c , 0xd6 ,
0x86 , 0xc3 , 0xbd , 0xa5 , 0x58 , 0x4f , 0x1a , 0x6d , 0x14 , 0xea , 0xc4 , 0x5b , 0x26 , 0x5d , 0x59 , 0x5d ,
0x39 , 0xee , 0x72 , 0xc9 , 0xbd , 0x25 , 0x17 , 0xdb , 0x48 , 0xa3 , 0xca , 0xea , 0xaa , 0x97 , 0x0a , 0xf8 ,
0x2b , 0x50 , 0x56 , 0x57 , 0xce , 0xcc , 0x8b , 0x57 , 0xee , 0x5a , 0x2c , 0x1a , 0x8d , 0xd6 , 0x57 , 0x57 ,
0x7d , 0x61 , 0x0b , 0xb6 , 0xbb , 0x63 , 0x95 , 0x8c , 0xed , 0xee , 0xb3 , 0xdd , 0x9c , 0x85 , 0x8c , 0xed ,
0xa6 , 0xec , 0xdb , 0x21 , 0xa8 , 0x7b , 0xeb , 0x04 , 0x37 , 0x40 , 0x31 , 0x46 , 0xd6 , 0x84 , 0x58 , 0x93 ,
0xe9 , 0x04 , 0x95 , 0xb0 , 0x0a , 0xf2 , 0xc4 , 0xee , 0xdd , 0x98 , 0xd6 , 0x35 , 0x92 , 0x92 , 0x89 , 0x18 ,
0xd0 , 0x9e , 0x35 , 0x40 , 0x65 , 0x8c , 0xa1 , 0x69 , 0xdc , 0x9a , 0xc4 , 0xb2 , 0x9d , 0xc9 , 0x74 , 0x3c ,
0x1e , 0x51 , 0x1b , 0x55 , 0xde , 0xfe , 0x29 , 0x81 , 0xba , 0xb7 , 0x68 , 0xf0 , 0x05 , 0xbc , 0xb4 , 0xc8 ,
0xbd , 0x35 , 0x1a , 0x10 , 0xa7 , 0x4f , 0x7a , 0xc6 , 0xc8 , 0x72 , 0xf2 , 0x54 , 0x25 , 0xac , 0x41 , 0xbd ,
0x67 , 0x59 , 0xa3 , 0xa9 , 0x65 , 0x10 , 0x24 , 0x25 , 0xa7 , 0x8c , 0x29 , 0x19 , 0xf7 , 0x28 , 0x41 , 0xe5 ,
0xc4 , 0x95 , 0x19 , 0x03 , 0x54 , 0x49 , 0x46 , 0xcf , 0x18 , 0xdd , 0xdd , 0x99 , 0x36 , 0xaa , 0xa6 , 0xb5 ,
0x25 , 0xbf , 0x6d , 0x32 , 0x40 , 0x67 , 0xb8 , 0x09 , 0xf0 , 0xc1 , 0x24 , 0xf7 , 0xc6 , 0xb0 , 0x67 , 0x5d ,
0x13 , 0x54 , 0x4b , 0xb2 , 0x58 , 0xe4 , 0x3e , 0x91 , 0x90 , 0x9c , 0x38 , 0x45 , 0xad , 0x8e , 0x69 , 0x99 ,
0x36 , 0x02 , 0x8c , 0x40 , 0x4b , 0xed , 0x2c , 0x9b , 0x8a , 0x3f , 0x83 , 0xf3 , 0xdb , 0x91 , 0x6d , 0x13 ,
0xfa , 0x8b , 0x43 , 0xc9 , 0xcf , 0x53 , 0x32 , 0xb1 , 0x91 , 0xd6 , 0xed , 0x41 , 0xc3 , 0xf0 , 0x3d , 0x16 ,
0xc4 , 0x59 , 0x4f , 0xf0 , 0x3b , 0x90 , 0xc7 , 0x51 , 0x38 , 0x67 , 0x9c , 0x63 , 0x74 , 0xbc , 0x4e , 0x2f ,
0x5e , 0xec , 0x94 , 0x7c , 0xe3 , 0xb5 , 0x4b , 0xb3 , 0x9a , 0xf8 , 0x4b , 0x7e , 0xff , 0x77 , 0x00 , 0x00 ,
0x00 , 0xff , 0xff , 0x18 , 0x64 , 0xa1 , 0x49 , 0xa3 , 0x07 , 0x00 , 0x00 ,
}
// Reference imports to suppress errors if they are not otherwise used.