storj/private/multinodepb/multinode.pb.go
Yaroslav Vorobiov 23f9beb635 multinode/console: held amount summary
Change-Id: Ia800748343e363d930ce0a0b9ab286b5abdc96af
2021-05-28 20:05:16 +03:00

2244 lines
92 KiB
Go

// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: multinode.proto
package multinodepb
import (
fmt "fmt"
math "math"
time "time"
proto "github.com/gogo/protobuf/proto"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
var _ = time.Kitchen
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
type RequestHeader struct {
ApiKey []byte `protobuf:"bytes,1,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RequestHeader) Reset() { *m = RequestHeader{} }
func (m *RequestHeader) String() string { return proto.CompactTextString(m) }
func (*RequestHeader) ProtoMessage() {}
func (*RequestHeader) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{0}
}
func (m *RequestHeader) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RequestHeader.Unmarshal(m, b)
}
func (m *RequestHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RequestHeader.Marshal(b, m, deterministic)
}
func (m *RequestHeader) XXX_Merge(src proto.Message) {
xxx_messageInfo_RequestHeader.Merge(m, src)
}
func (m *RequestHeader) XXX_Size() int {
return xxx_messageInfo_RequestHeader.Size(m)
}
func (m *RequestHeader) XXX_DiscardUnknown() {
xxx_messageInfo_RequestHeader.DiscardUnknown(m)
}
var xxx_messageInfo_RequestHeader proto.InternalMessageInfo
func (m *RequestHeader) GetApiKey() []byte {
if m != nil {
return m.ApiKey
}
return nil
}
type DiskSpaceRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiskSpaceRequest) Reset() { *m = DiskSpaceRequest{} }
func (m *DiskSpaceRequest) String() string { return proto.CompactTextString(m) }
func (*DiskSpaceRequest) ProtoMessage() {}
func (*DiskSpaceRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{1}
}
func (m *DiskSpaceRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiskSpaceRequest.Unmarshal(m, b)
}
func (m *DiskSpaceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiskSpaceRequest.Marshal(b, m, deterministic)
}
func (m *DiskSpaceRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiskSpaceRequest.Merge(m, src)
}
func (m *DiskSpaceRequest) XXX_Size() int {
return xxx_messageInfo_DiskSpaceRequest.Size(m)
}
func (m *DiskSpaceRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DiskSpaceRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DiskSpaceRequest proto.InternalMessageInfo
func (m *DiskSpaceRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type DiskSpaceResponse struct {
Allocated int64 `protobuf:"varint,1,opt,name=allocated,proto3" json:"allocated,omitempty"`
UsedPieces int64 `protobuf:"varint,2,opt,name=used_pieces,json=usedPieces,proto3" json:"used_pieces,omitempty"`
UsedTrash int64 `protobuf:"varint,3,opt,name=used_trash,json=usedTrash,proto3" json:"used_trash,omitempty"`
Free int64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
Available int64 `protobuf:"varint,5,opt,name=available,proto3" json:"available,omitempty"`
Overused int64 `protobuf:"varint,6,opt,name=overused,proto3" json:"overused,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiskSpaceResponse) Reset() { *m = DiskSpaceResponse{} }
func (m *DiskSpaceResponse) String() string { return proto.CompactTextString(m) }
func (*DiskSpaceResponse) ProtoMessage() {}
func (*DiskSpaceResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{2}
}
func (m *DiskSpaceResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiskSpaceResponse.Unmarshal(m, b)
}
func (m *DiskSpaceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiskSpaceResponse.Marshal(b, m, deterministic)
}
func (m *DiskSpaceResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiskSpaceResponse.Merge(m, src)
}
func (m *DiskSpaceResponse) XXX_Size() int {
return xxx_messageInfo_DiskSpaceResponse.Size(m)
}
func (m *DiskSpaceResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DiskSpaceResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DiskSpaceResponse proto.InternalMessageInfo
func (m *DiskSpaceResponse) GetAllocated() int64 {
if m != nil {
return m.Allocated
}
return 0
}
func (m *DiskSpaceResponse) GetUsedPieces() int64 {
if m != nil {
return m.UsedPieces
}
return 0
}
func (m *DiskSpaceResponse) GetUsedTrash() int64 {
if m != nil {
return m.UsedTrash
}
return 0
}
func (m *DiskSpaceResponse) GetFree() int64 {
if m != nil {
return m.Free
}
return 0
}
func (m *DiskSpaceResponse) GetAvailable() int64 {
if m != nil {
return m.Available
}
return 0
}
func (m *DiskSpaceResponse) GetOverused() int64 {
if m != nil {
return m.Overused
}
return 0
}
type BandwidthMonthSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthMonthSummaryRequest) Reset() { *m = BandwidthMonthSummaryRequest{} }
func (m *BandwidthMonthSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*BandwidthMonthSummaryRequest) ProtoMessage() {}
func (*BandwidthMonthSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{3}
}
func (m *BandwidthMonthSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthMonthSummaryRequest.Unmarshal(m, b)
}
func (m *BandwidthMonthSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthMonthSummaryRequest.Marshal(b, m, deterministic)
}
func (m *BandwidthMonthSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthMonthSummaryRequest.Merge(m, src)
}
func (m *BandwidthMonthSummaryRequest) XXX_Size() int {
return xxx_messageInfo_BandwidthMonthSummaryRequest.Size(m)
}
func (m *BandwidthMonthSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthMonthSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthMonthSummaryRequest proto.InternalMessageInfo
func (m *BandwidthMonthSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type BandwidthMonthSummaryResponse struct {
Used int64 `protobuf:"varint,1,opt,name=used,proto3" json:"used,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthMonthSummaryResponse) Reset() { *m = BandwidthMonthSummaryResponse{} }
func (m *BandwidthMonthSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*BandwidthMonthSummaryResponse) ProtoMessage() {}
func (*BandwidthMonthSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{4}
}
func (m *BandwidthMonthSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthMonthSummaryResponse.Unmarshal(m, b)
}
func (m *BandwidthMonthSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthMonthSummaryResponse.Marshal(b, m, deterministic)
}
func (m *BandwidthMonthSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthMonthSummaryResponse.Merge(m, src)
}
func (m *BandwidthMonthSummaryResponse) XXX_Size() int {
return xxx_messageInfo_BandwidthMonthSummaryResponse.Size(m)
}
func (m *BandwidthMonthSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthMonthSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthMonthSummaryResponse proto.InternalMessageInfo
func (m *BandwidthMonthSummaryResponse) GetUsed() int64 {
if m != nil {
return m.Used
}
return 0
}
type VersionRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *VersionRequest) Reset() { *m = VersionRequest{} }
func (m *VersionRequest) String() string { return proto.CompactTextString(m) }
func (*VersionRequest) ProtoMessage() {}
func (*VersionRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{5}
}
func (m *VersionRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_VersionRequest.Unmarshal(m, b)
}
func (m *VersionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_VersionRequest.Marshal(b, m, deterministic)
}
func (m *VersionRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_VersionRequest.Merge(m, src)
}
func (m *VersionRequest) XXX_Size() int {
return xxx_messageInfo_VersionRequest.Size(m)
}
func (m *VersionRequest) XXX_DiscardUnknown() {
xxx_messageInfo_VersionRequest.DiscardUnknown(m)
}
var xxx_messageInfo_VersionRequest proto.InternalMessageInfo
func (m *VersionRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type VersionResponse struct {
Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *VersionResponse) Reset() { *m = VersionResponse{} }
func (m *VersionResponse) String() string { return proto.CompactTextString(m) }
func (*VersionResponse) ProtoMessage() {}
func (*VersionResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{6}
}
func (m *VersionResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_VersionResponse.Unmarshal(m, b)
}
func (m *VersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_VersionResponse.Marshal(b, m, deterministic)
}
func (m *VersionResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_VersionResponse.Merge(m, src)
}
func (m *VersionResponse) XXX_Size() int {
return xxx_messageInfo_VersionResponse.Size(m)
}
func (m *VersionResponse) XXX_DiscardUnknown() {
xxx_messageInfo_VersionResponse.DiscardUnknown(m)
}
var xxx_messageInfo_VersionResponse proto.InternalMessageInfo
func (m *VersionResponse) GetVersion() string {
if m != nil {
return m.Version
}
return ""
}
type LastContactRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LastContactRequest) Reset() { *m = LastContactRequest{} }
func (m *LastContactRequest) String() string { return proto.CompactTextString(m) }
func (*LastContactRequest) ProtoMessage() {}
func (*LastContactRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{7}
}
func (m *LastContactRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LastContactRequest.Unmarshal(m, b)
}
func (m *LastContactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LastContactRequest.Marshal(b, m, deterministic)
}
func (m *LastContactRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_LastContactRequest.Merge(m, src)
}
func (m *LastContactRequest) XXX_Size() int {
return xxx_messageInfo_LastContactRequest.Size(m)
}
func (m *LastContactRequest) XXX_DiscardUnknown() {
xxx_messageInfo_LastContactRequest.DiscardUnknown(m)
}
var xxx_messageInfo_LastContactRequest proto.InternalMessageInfo
func (m *LastContactRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type LastContactResponse struct {
LastContact time.Time `protobuf:"bytes,1,opt,name=last_contact,json=lastContact,proto3,stdtime" json:"last_contact"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LastContactResponse) Reset() { *m = LastContactResponse{} }
func (m *LastContactResponse) String() string { return proto.CompactTextString(m) }
func (*LastContactResponse) ProtoMessage() {}
func (*LastContactResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{8}
}
func (m *LastContactResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LastContactResponse.Unmarshal(m, b)
}
func (m *LastContactResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LastContactResponse.Marshal(b, m, deterministic)
}
func (m *LastContactResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_LastContactResponse.Merge(m, src)
}
func (m *LastContactResponse) XXX_Size() int {
return xxx_messageInfo_LastContactResponse.Size(m)
}
func (m *LastContactResponse) XXX_DiscardUnknown() {
xxx_messageInfo_LastContactResponse.DiscardUnknown(m)
}
var xxx_messageInfo_LastContactResponse proto.InternalMessageInfo
func (m *LastContactResponse) GetLastContact() time.Time {
if m != nil {
return m.LastContact
}
return time.Time{}
}
type ReputationRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationRequest) Reset() { *m = ReputationRequest{} }
func (m *ReputationRequest) String() string { return proto.CompactTextString(m) }
func (*ReputationRequest) ProtoMessage() {}
func (*ReputationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{9}
}
func (m *ReputationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationRequest.Unmarshal(m, b)
}
func (m *ReputationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationRequest.Marshal(b, m, deterministic)
}
func (m *ReputationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationRequest.Merge(m, src)
}
func (m *ReputationRequest) XXX_Size() int {
return xxx_messageInfo_ReputationRequest.Size(m)
}
func (m *ReputationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationRequest proto.InternalMessageInfo
func (m *ReputationRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type ReputationResponse struct {
Online *ReputationResponse_Online `protobuf:"bytes,1,opt,name=online,proto3" json:"online,omitempty"`
Audit *ReputationResponse_Audit `protobuf:"bytes,2,opt,name=audit,proto3" json:"audit,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationResponse) Reset() { *m = ReputationResponse{} }
func (m *ReputationResponse) String() string { return proto.CompactTextString(m) }
func (*ReputationResponse) ProtoMessage() {}
func (*ReputationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{10}
}
func (m *ReputationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationResponse.Unmarshal(m, b)
}
func (m *ReputationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationResponse.Marshal(b, m, deterministic)
}
func (m *ReputationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationResponse.Merge(m, src)
}
func (m *ReputationResponse) XXX_Size() int {
return xxx_messageInfo_ReputationResponse.Size(m)
}
func (m *ReputationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationResponse proto.InternalMessageInfo
func (m *ReputationResponse) GetOnline() *ReputationResponse_Online {
if m != nil {
return m.Online
}
return nil
}
func (m *ReputationResponse) GetAudit() *ReputationResponse_Audit {
if m != nil {
return m.Audit
}
return nil
}
type ReputationResponse_Online struct {
Score float64 `protobuf:"fixed64,1,opt,name=score,proto3" json:"score,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationResponse_Online) Reset() { *m = ReputationResponse_Online{} }
func (m *ReputationResponse_Online) String() string { return proto.CompactTextString(m) }
func (*ReputationResponse_Online) ProtoMessage() {}
func (*ReputationResponse_Online) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{10, 0}
}
func (m *ReputationResponse_Online) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationResponse_Online.Unmarshal(m, b)
}
func (m *ReputationResponse_Online) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationResponse_Online.Marshal(b, m, deterministic)
}
func (m *ReputationResponse_Online) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationResponse_Online.Merge(m, src)
}
func (m *ReputationResponse_Online) XXX_Size() int {
return xxx_messageInfo_ReputationResponse_Online.Size(m)
}
func (m *ReputationResponse_Online) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationResponse_Online.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationResponse_Online proto.InternalMessageInfo
func (m *ReputationResponse_Online) GetScore() float64 {
if m != nil {
return m.Score
}
return 0
}
type ReputationResponse_Audit struct {
Score float64 `protobuf:"fixed64,1,opt,name=score,proto3" json:"score,omitempty"`
SuspensionScore float64 `protobuf:"fixed64,2,opt,name=suspension_score,json=suspensionScore,proto3" json:"suspension_score,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationResponse_Audit) Reset() { *m = ReputationResponse_Audit{} }
func (m *ReputationResponse_Audit) String() string { return proto.CompactTextString(m) }
func (*ReputationResponse_Audit) ProtoMessage() {}
func (*ReputationResponse_Audit) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{10, 1}
}
func (m *ReputationResponse_Audit) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationResponse_Audit.Unmarshal(m, b)
}
func (m *ReputationResponse_Audit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationResponse_Audit.Marshal(b, m, deterministic)
}
func (m *ReputationResponse_Audit) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationResponse_Audit.Merge(m, src)
}
func (m *ReputationResponse_Audit) XXX_Size() int {
return xxx_messageInfo_ReputationResponse_Audit.Size(m)
}
func (m *ReputationResponse_Audit) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationResponse_Audit.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationResponse_Audit proto.InternalMessageInfo
func (m *ReputationResponse_Audit) GetScore() float64 {
if m != nil {
return m.Score
}
return 0
}
func (m *ReputationResponse_Audit) GetSuspensionScore() float64 {
if m != nil {
return m.SuspensionScore
}
return 0
}
type TrustedSatellitesRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TrustedSatellitesRequest) Reset() { *m = TrustedSatellitesRequest{} }
func (m *TrustedSatellitesRequest) String() string { return proto.CompactTextString(m) }
func (*TrustedSatellitesRequest) ProtoMessage() {}
func (*TrustedSatellitesRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{11}
}
func (m *TrustedSatellitesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TrustedSatellitesRequest.Unmarshal(m, b)
}
func (m *TrustedSatellitesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TrustedSatellitesRequest.Marshal(b, m, deterministic)
}
func (m *TrustedSatellitesRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_TrustedSatellitesRequest.Merge(m, src)
}
func (m *TrustedSatellitesRequest) XXX_Size() int {
return xxx_messageInfo_TrustedSatellitesRequest.Size(m)
}
func (m *TrustedSatellitesRequest) XXX_DiscardUnknown() {
xxx_messageInfo_TrustedSatellitesRequest.DiscardUnknown(m)
}
var xxx_messageInfo_TrustedSatellitesRequest proto.InternalMessageInfo
func (m *TrustedSatellitesRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type TrustedSatellitesResponse struct {
TrustedSatellites []*TrustedSatellitesResponse_NodeURL `protobuf:"bytes,1,rep,name=trusted_satellites,json=trustedSatellites,proto3" json:"trusted_satellites,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TrustedSatellitesResponse) Reset() { *m = TrustedSatellitesResponse{} }
func (m *TrustedSatellitesResponse) String() string { return proto.CompactTextString(m) }
func (*TrustedSatellitesResponse) ProtoMessage() {}
func (*TrustedSatellitesResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{12}
}
func (m *TrustedSatellitesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TrustedSatellitesResponse.Unmarshal(m, b)
}
func (m *TrustedSatellitesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TrustedSatellitesResponse.Marshal(b, m, deterministic)
}
func (m *TrustedSatellitesResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_TrustedSatellitesResponse.Merge(m, src)
}
func (m *TrustedSatellitesResponse) XXX_Size() int {
return xxx_messageInfo_TrustedSatellitesResponse.Size(m)
}
func (m *TrustedSatellitesResponse) XXX_DiscardUnknown() {
xxx_messageInfo_TrustedSatellitesResponse.DiscardUnknown(m)
}
var xxx_messageInfo_TrustedSatellitesResponse proto.InternalMessageInfo
func (m *TrustedSatellitesResponse) GetTrustedSatellites() []*TrustedSatellitesResponse_NodeURL {
if m != nil {
return m.TrustedSatellites
}
return nil
}
type TrustedSatellitesResponse_NodeURL struct {
NodeId NodeID `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3,customtype=NodeID" json:"node_id"`
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TrustedSatellitesResponse_NodeURL) Reset() { *m = TrustedSatellitesResponse_NodeURL{} }
func (m *TrustedSatellitesResponse_NodeURL) String() string { return proto.CompactTextString(m) }
func (*TrustedSatellitesResponse_NodeURL) ProtoMessage() {}
func (*TrustedSatellitesResponse_NodeURL) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{12, 0}
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Unmarshal(m, b)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Marshal(b, m, deterministic)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Merge(src proto.Message) {
xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Merge(m, src)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Size() int {
return xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Size(m)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_DiscardUnknown() {
xxx_messageInfo_TrustedSatellitesResponse_NodeURL.DiscardUnknown(m)
}
var xxx_messageInfo_TrustedSatellitesResponse_NodeURL proto.InternalMessageInfo
func (m *TrustedSatellitesResponse_NodeURL) GetAddress() string {
if m != nil {
return m.Address
}
return ""
}
type EstimatedPayoutSatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutSatelliteRequest) Reset() { *m = EstimatedPayoutSatelliteRequest{} }
func (m *EstimatedPayoutSatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutSatelliteRequest) ProtoMessage() {}
func (*EstimatedPayoutSatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{13}
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutSatelliteRequest.Unmarshal(m, b)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutSatelliteRequest.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutSatelliteRequest.Merge(m, src)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutSatelliteRequest.Size(m)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutSatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutSatelliteRequest proto.InternalMessageInfo
func (m *EstimatedPayoutSatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EstimatedPayoutSatelliteResponse struct {
EstimatedEarnings int64 `protobuf:"varint,1,opt,name=estimated_earnings,json=estimatedEarnings,proto3" json:"estimated_earnings,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutSatelliteResponse) Reset() { *m = EstimatedPayoutSatelliteResponse{} }
func (m *EstimatedPayoutSatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutSatelliteResponse) ProtoMessage() {}
func (*EstimatedPayoutSatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{14}
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutSatelliteResponse.Unmarshal(m, b)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutSatelliteResponse.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutSatelliteResponse.Merge(m, src)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutSatelliteResponse.Size(m)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutSatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutSatelliteResponse proto.InternalMessageInfo
func (m *EstimatedPayoutSatelliteResponse) GetEstimatedEarnings() int64 {
if m != nil {
return m.EstimatedEarnings
}
return 0
}
type EstimatedPayoutTotalRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutTotalRequest) Reset() { *m = EstimatedPayoutTotalRequest{} }
func (m *EstimatedPayoutTotalRequest) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutTotalRequest) ProtoMessage() {}
func (*EstimatedPayoutTotalRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{15}
}
func (m *EstimatedPayoutTotalRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutTotalRequest.Unmarshal(m, b)
}
func (m *EstimatedPayoutTotalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutTotalRequest.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutTotalRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutTotalRequest.Merge(m, src)
}
func (m *EstimatedPayoutTotalRequest) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutTotalRequest.Size(m)
}
func (m *EstimatedPayoutTotalRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutTotalRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutTotalRequest proto.InternalMessageInfo
func (m *EstimatedPayoutTotalRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EstimatedPayoutTotalResponse struct {
EstimatedEarnings int64 `protobuf:"varint,1,opt,name=estimated_earnings,json=estimatedEarnings,proto3" json:"estimated_earnings,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutTotalResponse) Reset() { *m = EstimatedPayoutTotalResponse{} }
func (m *EstimatedPayoutTotalResponse) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutTotalResponse) ProtoMessage() {}
func (*EstimatedPayoutTotalResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{16}
}
func (m *EstimatedPayoutTotalResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutTotalResponse.Unmarshal(m, b)
}
func (m *EstimatedPayoutTotalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutTotalResponse.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutTotalResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutTotalResponse.Merge(m, src)
}
func (m *EstimatedPayoutTotalResponse) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutTotalResponse.Size(m)
}
func (m *EstimatedPayoutTotalResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutTotalResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutTotalResponse proto.InternalMessageInfo
func (m *EstimatedPayoutTotalResponse) GetEstimatedEarnings() int64 {
if m != nil {
return m.EstimatedEarnings
}
return 0
}
type AllSatellitesSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesSummaryRequest) Reset() { *m = AllSatellitesSummaryRequest{} }
func (m *AllSatellitesSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesSummaryRequest) ProtoMessage() {}
func (*AllSatellitesSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{17}
}
func (m *AllSatellitesSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesSummaryRequest.Unmarshal(m, b)
}
func (m *AllSatellitesSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesSummaryRequest.Marshal(b, m, deterministic)
}
func (m *AllSatellitesSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesSummaryRequest.Merge(m, src)
}
func (m *AllSatellitesSummaryRequest) XXX_Size() int {
return xxx_messageInfo_AllSatellitesSummaryRequest.Size(m)
}
func (m *AllSatellitesSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesSummaryRequest proto.InternalMessageInfo
func (m *AllSatellitesSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type AllSatellitesSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesSummaryResponse) Reset() { *m = AllSatellitesSummaryResponse{} }
func (m *AllSatellitesSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesSummaryResponse) ProtoMessage() {}
func (*AllSatellitesSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{18}
}
func (m *AllSatellitesSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesSummaryResponse.Unmarshal(m, b)
}
func (m *AllSatellitesSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesSummaryResponse.Marshal(b, m, deterministic)
}
func (m *AllSatellitesSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesSummaryResponse.Merge(m, src)
}
func (m *AllSatellitesSummaryResponse) XXX_Size() int {
return xxx_messageInfo_AllSatellitesSummaryResponse.Size(m)
}
func (m *AllSatellitesSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesSummaryResponse proto.InternalMessageInfo
func (m *AllSatellitesSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type AllSatellitesPeriodSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
Period string `protobuf:"bytes,2,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesPeriodSummaryRequest) Reset() { *m = AllSatellitesPeriodSummaryRequest{} }
func (m *AllSatellitesPeriodSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesPeriodSummaryRequest) ProtoMessage() {}
func (*AllSatellitesPeriodSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{19}
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Unmarshal(m, b)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Marshal(b, m, deterministic)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Merge(m, src)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Size() int {
return xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Size(m)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesPeriodSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesPeriodSummaryRequest proto.InternalMessageInfo
func (m *AllSatellitesPeriodSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *AllSatellitesPeriodSummaryRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type AllSatellitesPeriodSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesPeriodSummaryResponse) Reset() { *m = AllSatellitesPeriodSummaryResponse{} }
func (m *AllSatellitesPeriodSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesPeriodSummaryResponse) ProtoMessage() {}
func (*AllSatellitesPeriodSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{20}
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Unmarshal(m, b)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Marshal(b, m, deterministic)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Merge(m, src)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Size() int {
return xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Size(m)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesPeriodSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesPeriodSummaryResponse proto.InternalMessageInfo
func (m *AllSatellitesPeriodSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type SatelliteSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatelliteSummaryRequest) Reset() { *m = SatelliteSummaryRequest{} }
func (m *SatelliteSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*SatelliteSummaryRequest) ProtoMessage() {}
func (*SatelliteSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{21}
}
func (m *SatelliteSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatelliteSummaryRequest.Unmarshal(m, b)
}
func (m *SatelliteSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatelliteSummaryRequest.Marshal(b, m, deterministic)
}
func (m *SatelliteSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatelliteSummaryRequest.Merge(m, src)
}
func (m *SatelliteSummaryRequest) XXX_Size() int {
return xxx_messageInfo_SatelliteSummaryRequest.Size(m)
}
func (m *SatelliteSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatelliteSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatelliteSummaryRequest proto.InternalMessageInfo
func (m *SatelliteSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type SatelliteSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatelliteSummaryResponse) Reset() { *m = SatelliteSummaryResponse{} }
func (m *SatelliteSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*SatelliteSummaryResponse) ProtoMessage() {}
func (*SatelliteSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{22}
}
func (m *SatelliteSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatelliteSummaryResponse.Unmarshal(m, b)
}
func (m *SatelliteSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatelliteSummaryResponse.Marshal(b, m, deterministic)
}
func (m *SatelliteSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatelliteSummaryResponse.Merge(m, src)
}
func (m *SatelliteSummaryResponse) XXX_Size() int {
return xxx_messageInfo_SatelliteSummaryResponse.Size(m)
}
func (m *SatelliteSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatelliteSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatelliteSummaryResponse proto.InternalMessageInfo
func (m *SatelliteSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type SatellitePeriodSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
Period string `protobuf:"bytes,3,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodSummaryRequest) Reset() { *m = SatellitePeriodSummaryRequest{} }
func (m *SatellitePeriodSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodSummaryRequest) ProtoMessage() {}
func (*SatellitePeriodSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{23}
}
func (m *SatellitePeriodSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodSummaryRequest.Unmarshal(m, b)
}
func (m *SatellitePeriodSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodSummaryRequest.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodSummaryRequest.Merge(m, src)
}
func (m *SatellitePeriodSummaryRequest) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodSummaryRequest.Size(m)
}
func (m *SatellitePeriodSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodSummaryRequest proto.InternalMessageInfo
func (m *SatellitePeriodSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *SatellitePeriodSummaryRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type SatellitePeriodSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodSummaryResponse) Reset() { *m = SatellitePeriodSummaryResponse{} }
func (m *SatellitePeriodSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodSummaryResponse) ProtoMessage() {}
func (*SatellitePeriodSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{24}
}
func (m *SatellitePeriodSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodSummaryResponse.Unmarshal(m, b)
}
func (m *SatellitePeriodSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodSummaryResponse.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodSummaryResponse.Merge(m, src)
}
func (m *SatellitePeriodSummaryResponse) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodSummaryResponse.Size(m)
}
func (m *SatellitePeriodSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodSummaryResponse proto.InternalMessageInfo
func (m *SatellitePeriodSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type EarnedRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedRequest) Reset() { *m = EarnedRequest{} }
func (m *EarnedRequest) String() string { return proto.CompactTextString(m) }
func (*EarnedRequest) ProtoMessage() {}
func (*EarnedRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{25}
}
func (m *EarnedRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedRequest.Unmarshal(m, b)
}
func (m *EarnedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedRequest.Marshal(b, m, deterministic)
}
func (m *EarnedRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedRequest.Merge(m, src)
}
func (m *EarnedRequest) XXX_Size() int {
return xxx_messageInfo_EarnedRequest.Size(m)
}
func (m *EarnedRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedRequest proto.InternalMessageInfo
func (m *EarnedRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EarnedResponse struct {
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedResponse) Reset() { *m = EarnedResponse{} }
func (m *EarnedResponse) String() string { return proto.CompactTextString(m) }
func (*EarnedResponse) ProtoMessage() {}
func (*EarnedResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{26}
}
func (m *EarnedResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedResponse.Unmarshal(m, b)
}
func (m *EarnedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedResponse.Marshal(b, m, deterministic)
}
func (m *EarnedResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedResponse.Merge(m, src)
}
func (m *EarnedResponse) XXX_Size() int {
return xxx_messageInfo_EarnedResponse.Size(m)
}
func (m *EarnedResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedResponse proto.InternalMessageInfo
func (m *EarnedResponse) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
type EarnedPerSatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedPerSatelliteRequest) Reset() { *m = EarnedPerSatelliteRequest{} }
func (m *EarnedPerSatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*EarnedPerSatelliteRequest) ProtoMessage() {}
func (*EarnedPerSatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{27}
}
func (m *EarnedPerSatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedPerSatelliteRequest.Unmarshal(m, b)
}
func (m *EarnedPerSatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedPerSatelliteRequest.Marshal(b, m, deterministic)
}
func (m *EarnedPerSatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedPerSatelliteRequest.Merge(m, src)
}
func (m *EarnedPerSatelliteRequest) XXX_Size() int {
return xxx_messageInfo_EarnedPerSatelliteRequest.Size(m)
}
func (m *EarnedPerSatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedPerSatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedPerSatelliteRequest proto.InternalMessageInfo
func (m *EarnedPerSatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EarnedPerSatelliteResponse struct {
EarnedSatellite []*EarnedSatellite `protobuf:"bytes,1,rep,name=earned_satellite,json=earnedSatellite,proto3" json:"earned_satellite,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedPerSatelliteResponse) Reset() { *m = EarnedPerSatelliteResponse{} }
func (m *EarnedPerSatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*EarnedPerSatelliteResponse) ProtoMessage() {}
func (*EarnedPerSatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{28}
}
func (m *EarnedPerSatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedPerSatelliteResponse.Unmarshal(m, b)
}
func (m *EarnedPerSatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedPerSatelliteResponse.Marshal(b, m, deterministic)
}
func (m *EarnedPerSatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedPerSatelliteResponse.Merge(m, src)
}
func (m *EarnedPerSatelliteResponse) XXX_Size() int {
return xxx_messageInfo_EarnedPerSatelliteResponse.Size(m)
}
func (m *EarnedPerSatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedPerSatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedPerSatelliteResponse proto.InternalMessageInfo
func (m *EarnedPerSatelliteResponse) GetEarnedSatellite() []*EarnedSatellite {
if m != nil {
return m.EarnedSatellite
}
return nil
}
type EarnedSatellite struct {
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedSatellite) Reset() { *m = EarnedSatellite{} }
func (m *EarnedSatellite) String() string { return proto.CompactTextString(m) }
func (*EarnedSatellite) ProtoMessage() {}
func (*EarnedSatellite) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{29}
}
func (m *EarnedSatellite) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedSatellite.Unmarshal(m, b)
}
func (m *EarnedSatellite) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedSatellite.Marshal(b, m, deterministic)
}
func (m *EarnedSatellite) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedSatellite.Merge(m, src)
}
func (m *EarnedSatellite) XXX_Size() int {
return xxx_messageInfo_EarnedSatellite.Size(m)
}
func (m *EarnedSatellite) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedSatellite.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedSatellite proto.InternalMessageInfo
func (m *EarnedSatellite) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
type UndistributedRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UndistributedRequest) Reset() { *m = UndistributedRequest{} }
func (m *UndistributedRequest) String() string { return proto.CompactTextString(m) }
func (*UndistributedRequest) ProtoMessage() {}
func (*UndistributedRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{30}
}
func (m *UndistributedRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UndistributedRequest.Unmarshal(m, b)
}
func (m *UndistributedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UndistributedRequest.Marshal(b, m, deterministic)
}
func (m *UndistributedRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UndistributedRequest.Merge(m, src)
}
func (m *UndistributedRequest) XXX_Size() int {
return xxx_messageInfo_UndistributedRequest.Size(m)
}
func (m *UndistributedRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UndistributedRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UndistributedRequest proto.InternalMessageInfo
func (m *UndistributedRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type UndistributedResponse struct {
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UndistributedResponse) Reset() { *m = UndistributedResponse{} }
func (m *UndistributedResponse) String() string { return proto.CompactTextString(m) }
func (*UndistributedResponse) ProtoMessage() {}
func (*UndistributedResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{31}
}
func (m *UndistributedResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UndistributedResponse.Unmarshal(m, b)
}
func (m *UndistributedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UndistributedResponse.Marshal(b, m, deterministic)
}
func (m *UndistributedResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_UndistributedResponse.Merge(m, src)
}
func (m *UndistributedResponse) XXX_Size() int {
return xxx_messageInfo_UndistributedResponse.Size(m)
}
func (m *UndistributedResponse) XXX_DiscardUnknown() {
xxx_messageInfo_UndistributedResponse.DiscardUnknown(m)
}
var xxx_messageInfo_UndistributedResponse proto.InternalMessageInfo
func (m *UndistributedResponse) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
type SatellitePaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePaystubRequest) Reset() { *m = SatellitePaystubRequest{} }
func (m *SatellitePaystubRequest) String() string { return proto.CompactTextString(m) }
func (*SatellitePaystubRequest) ProtoMessage() {}
func (*SatellitePaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{32}
}
func (m *SatellitePaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePaystubRequest.Unmarshal(m, b)
}
func (m *SatellitePaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePaystubRequest.Marshal(b, m, deterministic)
}
func (m *SatellitePaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePaystubRequest.Merge(m, src)
}
func (m *SatellitePaystubRequest) XXX_Size() int {
return xxx_messageInfo_SatellitePaystubRequest.Size(m)
}
func (m *SatellitePaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePaystubRequest proto.InternalMessageInfo
func (m *SatellitePaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type SatellitePaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePaystubResponse) Reset() { *m = SatellitePaystubResponse{} }
func (m *SatellitePaystubResponse) String() string { return proto.CompactTextString(m) }
func (*SatellitePaystubResponse) ProtoMessage() {}
func (*SatellitePaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{33}
}
func (m *SatellitePaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePaystubResponse.Unmarshal(m, b)
}
func (m *SatellitePaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePaystubResponse.Marshal(b, m, deterministic)
}
func (m *SatellitePaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePaystubResponse.Merge(m, src)
}
func (m *SatellitePaystubResponse) XXX_Size() int {
return xxx_messageInfo_SatellitePaystubResponse.Size(m)
}
func (m *SatellitePaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePaystubResponse proto.InternalMessageInfo
func (m *SatellitePaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubRequest) Reset() { *m = PaystubRequest{} }
func (m *PaystubRequest) String() string { return proto.CompactTextString(m) }
func (*PaystubRequest) ProtoMessage() {}
func (*PaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{34}
}
func (m *PaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubRequest.Unmarshal(m, b)
}
func (m *PaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubRequest.Marshal(b, m, deterministic)
}
func (m *PaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubRequest.Merge(m, src)
}
func (m *PaystubRequest) XXX_Size() int {
return xxx_messageInfo_PaystubRequest.Size(m)
}
func (m *PaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubRequest proto.InternalMessageInfo
func (m *PaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type PaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubResponse) Reset() { *m = PaystubResponse{} }
func (m *PaystubResponse) String() string { return proto.CompactTextString(m) }
func (*PaystubResponse) ProtoMessage() {}
func (*PaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{35}
}
func (m *PaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubResponse.Unmarshal(m, b)
}
func (m *PaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubResponse.Marshal(b, m, deterministic)
}
func (m *PaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubResponse.Merge(m, src)
}
func (m *PaystubResponse) XXX_Size() int {
return xxx_messageInfo_PaystubResponse.Size(m)
}
func (m *PaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubResponse proto.InternalMessageInfo
func (m *PaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PeriodPaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
Period string `protobuf:"bytes,2,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PeriodPaystubRequest) Reset() { *m = PeriodPaystubRequest{} }
func (m *PeriodPaystubRequest) String() string { return proto.CompactTextString(m) }
func (*PeriodPaystubRequest) ProtoMessage() {}
func (*PeriodPaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{36}
}
func (m *PeriodPaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PeriodPaystubRequest.Unmarshal(m, b)
}
func (m *PeriodPaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PeriodPaystubRequest.Marshal(b, m, deterministic)
}
func (m *PeriodPaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_PeriodPaystubRequest.Merge(m, src)
}
func (m *PeriodPaystubRequest) XXX_Size() int {
return xxx_messageInfo_PeriodPaystubRequest.Size(m)
}
func (m *PeriodPaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_PeriodPaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_PeriodPaystubRequest proto.InternalMessageInfo
func (m *PeriodPaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *PeriodPaystubRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type PeriodPaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PeriodPaystubResponse) Reset() { *m = PeriodPaystubResponse{} }
func (m *PeriodPaystubResponse) String() string { return proto.CompactTextString(m) }
func (*PeriodPaystubResponse) ProtoMessage() {}
func (*PeriodPaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{37}
}
func (m *PeriodPaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PeriodPaystubResponse.Unmarshal(m, b)
}
func (m *PeriodPaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PeriodPaystubResponse.Marshal(b, m, deterministic)
}
func (m *PeriodPaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PeriodPaystubResponse.Merge(m, src)
}
func (m *PeriodPaystubResponse) XXX_Size() int {
return xxx_messageInfo_PeriodPaystubResponse.Size(m)
}
func (m *PeriodPaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PeriodPaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PeriodPaystubResponse proto.InternalMessageInfo
func (m *PeriodPaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type SatellitePeriodPaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
Period string `protobuf:"bytes,3,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodPaystubRequest) Reset() { *m = SatellitePeriodPaystubRequest{} }
func (m *SatellitePeriodPaystubRequest) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodPaystubRequest) ProtoMessage() {}
func (*SatellitePeriodPaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{38}
}
func (m *SatellitePeriodPaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodPaystubRequest.Unmarshal(m, b)
}
func (m *SatellitePeriodPaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodPaystubRequest.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodPaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodPaystubRequest.Merge(m, src)
}
func (m *SatellitePeriodPaystubRequest) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodPaystubRequest.Size(m)
}
func (m *SatellitePeriodPaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodPaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodPaystubRequest proto.InternalMessageInfo
func (m *SatellitePeriodPaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *SatellitePeriodPaystubRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type SatellitePeriodPaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodPaystubResponse) Reset() { *m = SatellitePeriodPaystubResponse{} }
func (m *SatellitePeriodPaystubResponse) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodPaystubResponse) ProtoMessage() {}
func (*SatellitePeriodPaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{39}
}
func (m *SatellitePeriodPaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodPaystubResponse.Unmarshal(m, b)
}
func (m *SatellitePeriodPaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodPaystubResponse.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodPaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodPaystubResponse.Merge(m, src)
}
func (m *SatellitePeriodPaystubResponse) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodPaystubResponse.Size(m)
}
func (m *SatellitePeriodPaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodPaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodPaystubResponse proto.InternalMessageInfo
func (m *SatellitePeriodPaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PayoutInfo struct {
Held int64 `protobuf:"varint,1,opt,name=held,proto3" json:"held,omitempty"`
Paid int64 `protobuf:"varint,2,opt,name=paid,proto3" json:"paid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PayoutInfo) Reset() { *m = PayoutInfo{} }
func (m *PayoutInfo) String() string { return proto.CompactTextString(m) }
func (*PayoutInfo) ProtoMessage() {}
func (*PayoutInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{40}
}
func (m *PayoutInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PayoutInfo.Unmarshal(m, b)
}
func (m *PayoutInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PayoutInfo.Marshal(b, m, deterministic)
}
func (m *PayoutInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_PayoutInfo.Merge(m, src)
}
func (m *PayoutInfo) XXX_Size() int {
return xxx_messageInfo_PayoutInfo.Size(m)
}
func (m *PayoutInfo) XXX_DiscardUnknown() {
xxx_messageInfo_PayoutInfo.DiscardUnknown(m)
}
var xxx_messageInfo_PayoutInfo proto.InternalMessageInfo
func (m *PayoutInfo) GetHeld() int64 {
if m != nil {
return m.Held
}
return 0
}
func (m *PayoutInfo) GetPaid() int64 {
if m != nil {
return m.Paid
}
return 0
}
type Paystub struct {
UsageAtRest float64 `protobuf:"fixed64,5,opt,name=usage_at_rest,json=usageAtRest,proto3" json:"usage_at_rest,omitempty"`
UsageGet int64 `protobuf:"varint,6,opt,name=usage_get,json=usageGet,proto3" json:"usage_get,omitempty"`
UsageGetRepair int64 `protobuf:"varint,8,opt,name=usage_get_repair,json=usageGetRepair,proto3" json:"usage_get_repair,omitempty"`
UsageGetAudit int64 `protobuf:"varint,10,opt,name=usage_get_audit,json=usageGetAudit,proto3" json:"usage_get_audit,omitempty"`
CompAtRest int64 `protobuf:"varint,11,opt,name=comp_at_rest,json=compAtRest,proto3" json:"comp_at_rest,omitempty"`
CompGet int64 `protobuf:"varint,12,opt,name=comp_get,json=compGet,proto3" json:"comp_get,omitempty"`
CompGetRepair int64 `protobuf:"varint,14,opt,name=comp_get_repair,json=compGetRepair,proto3" json:"comp_get_repair,omitempty"`
CompGetAudit int64 `protobuf:"varint,16,opt,name=comp_get_audit,json=compGetAudit,proto3" json:"comp_get_audit,omitempty"`
Held int64 `protobuf:"varint,18,opt,name=held,proto3" json:"held,omitempty"`
Paid int64 `protobuf:"varint,21,opt,name=paid,proto3" json:"paid,omitempty"`
Distributed int64 `protobuf:"varint,22,opt,name=distributed,proto3" json:"distributed,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Paystub) Reset() { *m = Paystub{} }
func (m *Paystub) String() string { return proto.CompactTextString(m) }
func (*Paystub) ProtoMessage() {}
func (*Paystub) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{41}
}
func (m *Paystub) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Paystub.Unmarshal(m, b)
}
func (m *Paystub) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Paystub.Marshal(b, m, deterministic)
}
func (m *Paystub) XXX_Merge(src proto.Message) {
xxx_messageInfo_Paystub.Merge(m, src)
}
func (m *Paystub) XXX_Size() int {
return xxx_messageInfo_Paystub.Size(m)
}
func (m *Paystub) XXX_DiscardUnknown() {
xxx_messageInfo_Paystub.DiscardUnknown(m)
}
var xxx_messageInfo_Paystub proto.InternalMessageInfo
func (m *Paystub) GetUsageAtRest() float64 {
if m != nil {
return m.UsageAtRest
}
return 0
}
func (m *Paystub) GetUsageGet() int64 {
if m != nil {
return m.UsageGet
}
return 0
}
func (m *Paystub) GetUsageGetRepair() int64 {
if m != nil {
return m.UsageGetRepair
}
return 0
}
func (m *Paystub) GetUsageGetAudit() int64 {
if m != nil {
return m.UsageGetAudit
}
return 0
}
func (m *Paystub) GetCompAtRest() int64 {
if m != nil {
return m.CompAtRest
}
return 0
}
func (m *Paystub) GetCompGet() int64 {
if m != nil {
return m.CompGet
}
return 0
}
func (m *Paystub) GetCompGetRepair() int64 {
if m != nil {
return m.CompGetRepair
}
return 0
}
func (m *Paystub) GetCompGetAudit() int64 {
if m != nil {
return m.CompGetAudit
}
return 0
}
func (m *Paystub) GetHeld() int64 {
if m != nil {
return m.Held
}
return 0
}
func (m *Paystub) GetPaid() int64 {
if m != nil {
return m.Paid
}
return 0
}
func (m *Paystub) GetDistributed() int64 {
if m != nil {
return m.Distributed
}
return 0
}
type HeldAmountHistoryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryRequest) Reset() { *m = HeldAmountHistoryRequest{} }
func (m *HeldAmountHistoryRequest) String() string { return proto.CompactTextString(m) }
func (*HeldAmountHistoryRequest) ProtoMessage() {}
func (*HeldAmountHistoryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{42}
}
func (m *HeldAmountHistoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryRequest.Unmarshal(m, b)
}
func (m *HeldAmountHistoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryRequest.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryRequest.Merge(m, src)
}
func (m *HeldAmountHistoryRequest) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryRequest.Size(m)
}
func (m *HeldAmountHistoryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryRequest proto.InternalMessageInfo
func (m *HeldAmountHistoryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type HeldAmountHistoryResponse struct {
History []*HeldAmountHistoryResponse_HeldAmountHistory `protobuf:"bytes,1,rep,name=history,proto3" json:"history,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryResponse) Reset() { *m = HeldAmountHistoryResponse{} }
func (m *HeldAmountHistoryResponse) String() string { return proto.CompactTextString(m) }
func (*HeldAmountHistoryResponse) ProtoMessage() {}
func (*HeldAmountHistoryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{43}
}
func (m *HeldAmountHistoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryResponse.Unmarshal(m, b)
}
func (m *HeldAmountHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryResponse.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryResponse.Merge(m, src)
}
func (m *HeldAmountHistoryResponse) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryResponse.Size(m)
}
func (m *HeldAmountHistoryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryResponse proto.InternalMessageInfo
func (m *HeldAmountHistoryResponse) GetHistory() []*HeldAmountHistoryResponse_HeldAmountHistory {
if m != nil {
return m.History
}
return nil
}
type HeldAmountHistoryResponse_HeldAmount struct {
Period string `protobuf:"bytes,1,opt,name=period,proto3" json:"period,omitempty"`
Amount int64 `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryResponse_HeldAmount) Reset() { *m = HeldAmountHistoryResponse_HeldAmount{} }
func (m *HeldAmountHistoryResponse_HeldAmount) String() string { return proto.CompactTextString(m) }
func (*HeldAmountHistoryResponse_HeldAmount) ProtoMessage() {}
func (*HeldAmountHistoryResponse_HeldAmount) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{43, 0}
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Unmarshal(m, b)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Merge(m, src)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Size(m)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount proto.InternalMessageInfo
func (m *HeldAmountHistoryResponse_HeldAmount) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
func (m *HeldAmountHistoryResponse_HeldAmount) GetAmount() int64 {
if m != nil {
return m.Amount
}
return 0
}
type HeldAmountHistoryResponse_HeldAmountHistory struct {
SatelliteId NodeID `protobuf:"bytes,1,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
HeldAmounts []*HeldAmountHistoryResponse_HeldAmount `protobuf:"bytes,2,rep,name=held_amounts,json=heldAmounts,proto3" json:"held_amounts,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) Reset() {
*m = HeldAmountHistoryResponse_HeldAmountHistory{}
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) String() string {
return proto.CompactTextString(m)
}
func (*HeldAmountHistoryResponse_HeldAmountHistory) ProtoMessage() {}
func (*HeldAmountHistoryResponse_HeldAmountHistory) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{43, 1}
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Unmarshal(m, b)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Merge(m, src)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Size(m)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory proto.InternalMessageInfo
func (m *HeldAmountHistoryResponse_HeldAmountHistory) GetHeldAmounts() []*HeldAmountHistoryResponse_HeldAmount {
if m != nil {
return m.HeldAmounts
}
return nil
}
func init() {
proto.RegisterType((*RequestHeader)(nil), "multinode.RequestHeader")
proto.RegisterType((*DiskSpaceRequest)(nil), "multinode.DiskSpaceRequest")
proto.RegisterType((*DiskSpaceResponse)(nil), "multinode.DiskSpaceResponse")
proto.RegisterType((*BandwidthMonthSummaryRequest)(nil), "multinode.BandwidthMonthSummaryRequest")
proto.RegisterType((*BandwidthMonthSummaryResponse)(nil), "multinode.BandwidthMonthSummaryResponse")
proto.RegisterType((*VersionRequest)(nil), "multinode.VersionRequest")
proto.RegisterType((*VersionResponse)(nil), "multinode.VersionResponse")
proto.RegisterType((*LastContactRequest)(nil), "multinode.LastContactRequest")
proto.RegisterType((*LastContactResponse)(nil), "multinode.LastContactResponse")
proto.RegisterType((*ReputationRequest)(nil), "multinode.ReputationRequest")
proto.RegisterType((*ReputationResponse)(nil), "multinode.ReputationResponse")
proto.RegisterType((*ReputationResponse_Online)(nil), "multinode.ReputationResponse.Online")
proto.RegisterType((*ReputationResponse_Audit)(nil), "multinode.ReputationResponse.Audit")
proto.RegisterType((*TrustedSatellitesRequest)(nil), "multinode.TrustedSatellitesRequest")
proto.RegisterType((*TrustedSatellitesResponse)(nil), "multinode.TrustedSatellitesResponse")
proto.RegisterType((*TrustedSatellitesResponse_NodeURL)(nil), "multinode.TrustedSatellitesResponse.NodeURL")
proto.RegisterType((*EstimatedPayoutSatelliteRequest)(nil), "multinode.EstimatedPayoutSatelliteRequest")
proto.RegisterType((*EstimatedPayoutSatelliteResponse)(nil), "multinode.EstimatedPayoutSatelliteResponse")
proto.RegisterType((*EstimatedPayoutTotalRequest)(nil), "multinode.EstimatedPayoutTotalRequest")
proto.RegisterType((*EstimatedPayoutTotalResponse)(nil), "multinode.EstimatedPayoutTotalResponse")
proto.RegisterType((*AllSatellitesSummaryRequest)(nil), "multinode.AllSatellitesSummaryRequest")
proto.RegisterType((*AllSatellitesSummaryResponse)(nil), "multinode.AllSatellitesSummaryResponse")
proto.RegisterType((*AllSatellitesPeriodSummaryRequest)(nil), "multinode.AllSatellitesPeriodSummaryRequest")
proto.RegisterType((*AllSatellitesPeriodSummaryResponse)(nil), "multinode.AllSatellitesPeriodSummaryResponse")
proto.RegisterType((*SatelliteSummaryRequest)(nil), "multinode.SatelliteSummaryRequest")
proto.RegisterType((*SatelliteSummaryResponse)(nil), "multinode.SatelliteSummaryResponse")
proto.RegisterType((*SatellitePeriodSummaryRequest)(nil), "multinode.SatellitePeriodSummaryRequest")
proto.RegisterType((*SatellitePeriodSummaryResponse)(nil), "multinode.SatellitePeriodSummaryResponse")
proto.RegisterType((*EarnedRequest)(nil), "multinode.EarnedRequest")
proto.RegisterType((*EarnedResponse)(nil), "multinode.EarnedResponse")
proto.RegisterType((*EarnedPerSatelliteRequest)(nil), "multinode.EarnedPerSatelliteRequest")
proto.RegisterType((*EarnedPerSatelliteResponse)(nil), "multinode.EarnedPerSatelliteResponse")
proto.RegisterType((*EarnedSatellite)(nil), "multinode.EarnedSatellite")
proto.RegisterType((*UndistributedRequest)(nil), "multinode.UndistributedRequest")
proto.RegisterType((*UndistributedResponse)(nil), "multinode.UndistributedResponse")
proto.RegisterType((*SatellitePaystubRequest)(nil), "multinode.SatellitePaystubRequest")
proto.RegisterType((*SatellitePaystubResponse)(nil), "multinode.SatellitePaystubResponse")
proto.RegisterType((*PaystubRequest)(nil), "multinode.PaystubRequest")
proto.RegisterType((*PaystubResponse)(nil), "multinode.PaystubResponse")
proto.RegisterType((*PeriodPaystubRequest)(nil), "multinode.PeriodPaystubRequest")
proto.RegisterType((*PeriodPaystubResponse)(nil), "multinode.PeriodPaystubResponse")
proto.RegisterType((*SatellitePeriodPaystubRequest)(nil), "multinode.SatellitePeriodPaystubRequest")
proto.RegisterType((*SatellitePeriodPaystubResponse)(nil), "multinode.SatellitePeriodPaystubResponse")
proto.RegisterType((*PayoutInfo)(nil), "multinode.PayoutInfo")
proto.RegisterType((*Paystub)(nil), "multinode.Paystub")
proto.RegisterType((*HeldAmountHistoryRequest)(nil), "multinode.HeldAmountHistoryRequest")
proto.RegisterType((*HeldAmountHistoryResponse)(nil), "multinode.HeldAmountHistoryResponse")
proto.RegisterType((*HeldAmountHistoryResponse_HeldAmount)(nil), "multinode.HeldAmountHistoryResponse.HeldAmount")
proto.RegisterType((*HeldAmountHistoryResponse_HeldAmountHistory)(nil), "multinode.HeldAmountHistoryResponse.HeldAmountHistory")
}
func init() { proto.RegisterFile("multinode.proto", fileDescriptor_9a45fd79b06f3a1b) }
var fileDescriptor_9a45fd79b06f3a1b = []byte{
// 1631 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x4f, 0x53, 0xdc, 0xc6,
0x12, 0x7f, 0xe2, 0xcf, 0x2e, 0xf4, 0x2e, 0x2c, 0xcc, 0x03, 0x5b, 0xc8, 0x60, 0x78, 0x82, 0x87,
0xf1, 0xb3, 0xbd, 0xbc, 0xe0, 0x94, 0xab, 0x52, 0xe5, 0x54, 0x0c, 0x31, 0x36, 0x54, 0xb0, 0x8d,
0x05, 0x76, 0xa5, 0x9c, 0x94, 0x37, 0xc3, 0x6a, 0x58, 0x14, 0x6b, 0x25, 0x45, 0x9a, 0x25, 0xe1,
0x92, 0x63, 0xce, 0x39, 0xa7, 0xf2, 0x5d, 0x52, 0xb9, 0xa4, 0x7c, 0xca, 0x07, 0xc8, 0xc1, 0xf9,
0x0c, 0x39, 0xe5, 0x9a, 0x9a, 0x3f, 0xd2, 0x4a, 0xbb, 0xa3, 0x05, 0xef, 0xa6, 0x9c, 0x9b, 0xa6,
0xfb, 0x37, 0xbf, 0xee, 0x99, 0xe9, 0x19, 0x75, 0x37, 0x54, 0x9a, 0x2d, 0x97, 0x3a, 0x9e, 0x6f,
0x93, 0x6a, 0x10, 0xfa, 0xd4, 0x47, 0xe3, 0x89, 0xc0, 0x80, 0x86, 0xdf, 0xf0, 0x85, 0xd8, 0x58,
0x6c, 0xf8, 0x7e, 0xc3, 0x25, 0xeb, 0x7c, 0x74, 0xd4, 0x3a, 0x5e, 0xa7, 0x4e, 0x93, 0x44, 0x14,
0x37, 0x03, 0x01, 0x30, 0xd7, 0x60, 0xc2, 0x22, 0x5f, 0xb5, 0x48, 0x44, 0x77, 0x08, 0xb6, 0x49,
0x88, 0x2e, 0x43, 0x11, 0x07, 0x4e, 0xed, 0x15, 0x39, 0xd3, 0xb5, 0x25, 0x6d, 0xad, 0x6c, 0x15,
0x70, 0xe0, 0x7c, 0x42, 0xce, 0xcc, 0xfb, 0x30, 0x75, 0xdf, 0x89, 0x5e, 0x1d, 0x04, 0xb8, 0x4e,
0xe4, 0x14, 0xf4, 0x7f, 0x28, 0x9c, 0xf0, 0x69, 0x1c, 0x5b, 0xda, 0xd0, 0xab, 0x6d, 0xbf, 0x32,
0xb4, 0x96, 0xc4, 0x99, 0x3f, 0x69, 0x30, 0x9d, 0xa2, 0x89, 0x02, 0xdf, 0x8b, 0x08, 0x9a, 0x87,
0x71, 0xec, 0xba, 0x7e, 0x1d, 0x53, 0x62, 0x73, 0xaa, 0x61, 0xab, 0x2d, 0x40, 0x8b, 0x50, 0x6a,
0x45, 0xc4, 0xae, 0x05, 0x0e, 0xa9, 0x93, 0x48, 0x1f, 0xe2, 0x7a, 0x60, 0xa2, 0x7d, 0x2e, 0x41,
0x0b, 0xc0, 0x47, 0x35, 0x1a, 0xe2, 0xe8, 0x44, 0x1f, 0x16, 0xf3, 0x99, 0xe4, 0x90, 0x09, 0x10,
0x82, 0x91, 0xe3, 0x90, 0x10, 0x7d, 0x84, 0x2b, 0xf8, 0x37, 0xb7, 0x78, 0x8a, 0x1d, 0x17, 0x1f,
0xb9, 0x44, 0x1f, 0x95, 0x16, 0x63, 0x01, 0x32, 0x60, 0xcc, 0x3f, 0x25, 0x21, 0xa3, 0xd0, 0x0b,
0x5c, 0x99, 0x8c, 0xcd, 0x7d, 0x98, 0xdf, 0xc2, 0x9e, 0xfd, 0xb5, 0x63, 0xd3, 0x93, 0x47, 0xbe,
0x47, 0x4f, 0x0e, 0x5a, 0xcd, 0x26, 0x0e, 0xcf, 0xfa, 0xdf, 0x93, 0xdb, 0xb0, 0x90, 0xc3, 0x28,
0xb7, 0x07, 0xc1, 0x08, 0x77, 0x45, 0xec, 0x0c, 0xff, 0x36, 0xb7, 0x60, 0xf2, 0x39, 0x09, 0x23,
0xc7, 0xf7, 0xfa, 0x37, 0x7c, 0x03, 0x2a, 0x09, 0x87, 0x34, 0xa5, 0x43, 0xf1, 0x54, 0x88, 0x38,
0xcb, 0xb8, 0x15, 0x0f, 0xcd, 0x07, 0x80, 0xf6, 0x70, 0x44, 0x3f, 0xf6, 0x3d, 0x8a, 0xeb, 0xb4,
0x7f, 0xa3, 0x2f, 0xe1, 0xdf, 0x19, 0x1e, 0x69, 0xf8, 0x21, 0x94, 0x5d, 0x1c, 0xd1, 0x5a, 0x5d,
0xc8, 0x25, 0x9d, 0x51, 0x15, 0x01, 0x5c, 0x8d, 0x03, 0xb8, 0x7a, 0x18, 0x07, 0xf0, 0xd6, 0xd8,
0xeb, 0x37, 0x8b, 0xff, 0xfa, 0xfe, 0xf7, 0x45, 0xcd, 0x2a, 0xb9, 0x6d, 0x42, 0xf3, 0x1b, 0x98,
0xb6, 0x48, 0xd0, 0xa2, 0x98, 0x0e, 0xb2, 0x37, 0xe8, 0x3d, 0x28, 0x47, 0x98, 0x12, 0xd7, 0x75,
0x28, 0xa9, 0x39, 0x36, 0x8f, 0xba, 0xf2, 0xd6, 0x24, 0xb3, 0xf9, 0xdb, 0x9b, 0xc5, 0xc2, 0x63,
0xdf, 0x26, 0xbb, 0xf7, 0xad, 0x52, 0x82, 0xd9, 0xb5, 0xcd, 0x3f, 0x35, 0x40, 0x69, 0xd3, 0x72,
0x65, 0x77, 0xa1, 0xe0, 0x7b, 0xae, 0xe3, 0x11, 0x69, 0x7b, 0x25, 0x63, 0xbb, 0x13, 0x5e, 0x7d,
0xc2, 0xb1, 0x96, 0x9c, 0x83, 0x3e, 0x80, 0x51, 0xdc, 0xb2, 0x1d, 0xca, 0x1d, 0x28, 0x6d, 0x2c,
0xf7, 0x9e, 0xbc, 0xc9, 0xa0, 0x96, 0x98, 0x61, 0x5c, 0x85, 0x82, 0x20, 0x43, 0x33, 0x30, 0x1a,
0xd5, 0xfd, 0x50, 0x78, 0xa0, 0x59, 0x62, 0x60, 0xec, 0xc0, 0x28, 0xc7, 0xab, 0xd5, 0xe8, 0x3a,
0x4c, 0x45, 0xad, 0x28, 0x20, 0x1e, 0x3b, 0xfe, 0x9a, 0x00, 0x0c, 0x71, 0x40, 0xa5, 0x2d, 0x3f,
0x60, 0x62, 0x73, 0x0f, 0xf4, 0xc3, 0xb0, 0x15, 0x51, 0x62, 0x1f, 0xc4, 0xfb, 0x11, 0xf5, 0x1f,
0x21, 0xbf, 0x68, 0x30, 0xa7, 0xa0, 0x93, 0xdb, 0xf9, 0x19, 0x20, 0x2a, 0x94, 0xb5, 0x64, 0xf3,
0x23, 0x5d, 0x5b, 0x1a, 0x5e, 0x2b, 0x6d, 0xdc, 0x4c, 0x71, 0xe7, 0x32, 0x54, 0xd9, 0xd9, 0x3d,
0xb3, 0xf6, 0xac, 0x69, 0xda, 0x09, 0x31, 0xf6, 0xa0, 0x28, 0xb5, 0xe8, 0x1a, 0x14, 0x19, 0x0f,
0x3b, 0x7b, 0x4d, 0x79, 0xf6, 0x05, 0xa6, 0xde, 0xb5, 0xd9, 0x95, 0xc1, 0xb6, 0x1d, 0x92, 0x48,
0x3c, 0x4d, 0xe3, 0x56, 0x3c, 0x34, 0xbf, 0xd3, 0x60, 0x71, 0x3b, 0xa2, 0x4e, 0x93, 0x3d, 0x63,
0xfb, 0xf8, 0xcc, 0x6f, 0xd1, 0xc4, 0xd6, 0x3b, 0x8d, 0xcc, 0xa7, 0xb0, 0x94, 0xef, 0x87, 0xdc,
0xd7, 0x5b, 0x80, 0x48, 0x8c, 0xa9, 0x11, 0x1c, 0x7a, 0x8e, 0xd7, 0x88, 0xe4, 0x93, 0x33, 0x9d,
0x68, 0xb6, 0xa5, 0xc2, 0x7c, 0x02, 0x57, 0x3a, 0x28, 0x0f, 0x7d, 0x8a, 0xdd, 0xfe, 0x4f, 0xfd,
0x11, 0xcc, 0xab, 0x09, 0xfb, 0xf6, 0x6f, 0xd3, 0x75, 0xdb, 0x47, 0x3b, 0xf0, 0x2b, 0xfd, 0x1c,
0xe6, 0xd5, 0x84, 0xd2, 0xbf, 0x3b, 0x50, 0x0a, 0xb8, 0xdb, 0x35, 0xc7, 0x3b, 0xf6, 0x25, 0xed,
0x6c, 0x8a, 0x56, 0x2c, 0x6a, 0xd7, 0x3b, 0xf6, 0x2d, 0x08, 0x92, 0x6f, 0xb3, 0x09, 0xff, 0xc9,
0xf0, 0xee, 0x93, 0xd0, 0xf1, 0xed, 0x41, 0xdd, 0x45, 0x97, 0xa0, 0x10, 0x70, 0x26, 0x19, 0x94,
0x72, 0x64, 0x7e, 0x0e, 0x66, 0x2f, 0x73, 0x03, 0x2e, 0xe6, 0x5b, 0xb8, 0x9c, 0x50, 0x0f, 0xbc,
0x84, 0x3e, 0x02, 0xdd, 0x02, 0xbd, 0xdb, 0xfe, 0x80, 0x6b, 0xfa, 0x51, 0x83, 0x85, 0x84, 0xf4,
0x6f, 0x3a, 0x9d, 0xb7, 0x5f, 0x5a, 0xea, 0x40, 0x87, 0x33, 0x07, 0xfa, 0x29, 0x5c, 0xcd, 0xf3,
0x6e, 0xc0, 0x85, 0x6f, 0xc2, 0x04, 0xbb, 0x4e, 0xc4, 0xee, 0xff, 0xd2, 0xac, 0xc2, 0x64, 0x4c,
0x21, 0x9d, 0x99, 0x81, 0x51, 0xca, 0xee, 0xb5, 0xbc, 0xb9, 0x62, 0x60, 0x3e, 0x82, 0x39, 0x81,
0xdb, 0x27, 0xe1, 0xe0, 0x4f, 0xa4, 0x59, 0x07, 0x43, 0x45, 0x27, 0x5d, 0xd8, 0x86, 0x29, 0xc2,
0xb5, 0xed, 0x1f, 0x88, 0xfc, 0x7f, 0x18, 0x29, 0x66, 0x41, 0xd0, 0x9e, 0x5d, 0x21, 0x59, 0x81,
0xf9, 0x02, 0x2a, 0x1d, 0x18, 0xf5, 0xe2, 0xfa, 0x89, 0xe3, 0x1d, 0x98, 0x79, 0xe6, 0xd9, 0x4e,
0x44, 0x43, 0xe7, 0xa8, 0x45, 0x07, 0x39, 0x81, 0x5b, 0x30, 0xdb, 0xc1, 0xd4, 0xf3, 0x20, 0xd2,
0x17, 0x78, 0x1f, 0x9f, 0x45, 0xb4, 0x75, 0xf4, 0x4e, 0x2f, 0xf0, 0x4e, 0xea, 0x02, 0x27, 0xf6,
0xa5, 0xc7, 0x37, 0xa1, 0x18, 0x08, 0x91, 0xf4, 0x00, 0x65, 0x63, 0x98, 0x83, 0x63, 0x08, 0x4b,
0x90, 0x07, 0x5d, 0x80, 0xf9, 0x11, 0x54, 0x06, 0x73, 0xe2, 0x0b, 0x98, 0x11, 0x77, 0x72, 0xe0,
0xbd, 0xcc, 0x7b, 0xcf, 0xb7, 0x61, 0xb6, 0xc3, 0x42, 0x5f, 0x8e, 0x2a, 0x1e, 0xb9, 0x7f, 0xe0,
0xf8, 0x73, 0x1f, 0xb9, 0xc7, 0x5d, 0x8f, 0xdc, 0x60, 0xcb, 0x7d, 0x1f, 0xa0, 0xfd, 0xe8, 0xb1,
0xfa, 0xea, 0x84, 0xb8, 0x49, 0x7d, 0xc5, 0xbe, 0x99, 0x2c, 0xc0, 0xd2, 0xe9, 0x61, 0x8b, 0x7f,
0x9b, 0x7f, 0x0c, 0x41, 0x51, 0x52, 0x21, 0x13, 0x26, 0x5a, 0x11, 0x6e, 0x90, 0x1a, 0xa6, 0xb5,
0x90, 0x44, 0x94, 0x17, 0x91, 0x9a, 0x55, 0xe2, 0xc2, 0x4d, 0x56, 0xd7, 0x50, 0x74, 0x05, 0xc6,
0x05, 0xa6, 0x41, 0x68, 0x5c, 0x47, 0x72, 0xc1, 0x43, 0x42, 0xd1, 0x1a, 0x4c, 0x25, 0xca, 0x5a,
0x48, 0x02, 0xec, 0x84, 0xfa, 0x18, 0xc7, 0x4c, 0xc6, 0x18, 0x8b, 0x4b, 0xd1, 0x2a, 0x54, 0xda,
0x48, 0x51, 0x0c, 0x00, 0x07, 0x4e, 0xc4, 0x40, 0x91, 0xc6, 0x2f, 0x41, 0xb9, 0xee, 0x37, 0x83,
0xc4, 0xa3, 0x92, 0x28, 0x94, 0x99, 0x4c, 0x3a, 0x34, 0x07, 0x63, 0x1c, 0xc1, 0xfc, 0x29, 0x73,
0x6d, 0x91, 0x8d, 0x99, 0x3b, 0xab, 0x50, 0x89, 0x55, 0xb1, 0x37, 0x93, 0xc2, 0x88, 0x44, 0x48,
0x67, 0x56, 0x60, 0x32, 0xc1, 0x09, 0x5f, 0xa6, 0x38, 0xac, 0x2c, 0x61, 0xc2, 0x95, 0x78, 0x47,
0x91, 0x62, 0x47, 0x67, 0xdb, 0x3b, 0x8a, 0x96, 0xa0, 0x94, 0x7a, 0x9b, 0xf4, 0x4b, 0x5c, 0x95,
0x16, 0xb1, 0xd2, 0x62, 0x87, 0xb8, 0xf6, 0x66, 0xd3, 0x6f, 0x79, 0x74, 0xc7, 0x89, 0xa8, 0x3f,
0x48, 0x12, 0xf7, 0x7a, 0x08, 0xe6, 0x14, 0x74, 0x32, 0x86, 0xf6, 0xa1, 0x78, 0x22, 0x44, 0xf2,
0x7f, 0x70, 0x27, 0x45, 0x98, 0x3b, 0x4d, 0xa1, 0x89, 0x69, 0x8c, 0xbb, 0x00, 0x6d, 0x6d, 0x2a,
0xba, 0xb5, 0x74, 0x74, 0x33, 0x39, 0xe6, 0x08, 0x19, 0x6d, 0x72, 0x64, 0xfc, 0xa0, 0xc1, 0x74,
0x17, 0x79, 0xd7, 0xb5, 0xd2, 0xce, 0xbf, 0x56, 0x16, 0x94, 0xd9, 0x11, 0xd4, 0x04, 0x2f, 0xab,
0x53, 0xd8, 0xea, 0xd6, 0xdf, 0x72, 0x75, 0x56, 0xe9, 0x24, 0xf9, 0x8e, 0x36, 0x9e, 0x42, 0xf1,
0x80, 0xfa, 0x21, 0x6e, 0x10, 0xf4, 0x00, 0xc6, 0x93, 0x9e, 0x0e, 0xba, 0x92, 0x62, 0xed, 0x6c,
0x18, 0x19, 0xf3, 0x6a, 0xa5, 0x30, 0xb5, 0xe1, 0xc1, 0x78, 0xd2, 0x08, 0x41, 0x18, 0xca, 0xe9,
0x66, 0x08, 0xba, 0x96, 0x9a, 0xda, 0xab, 0x01, 0x63, 0xac, 0x9d, 0x0f, 0x94, 0xf6, 0x7e, 0x1e,
0x82, 0x11, 0xb6, 0x5d, 0xe8, 0x1e, 0x14, 0x65, 0x23, 0x04, 0xcd, 0xa5, 0x66, 0x67, 0x1b, 0x2c,
0x86, 0xa1, 0x52, 0xc9, 0xd0, 0xd9, 0x83, 0x52, 0xaa, 0xab, 0x81, 0x16, 0x52, 0xd0, 0xee, 0xae,
0x89, 0x71, 0x35, 0x4f, 0x2d, 0xd9, 0x76, 0x01, 0xda, 0xc5, 0x3d, 0x9a, 0xcf, 0xa9, 0xf9, 0x05,
0xd7, 0x42, 0xcf, 0x8e, 0x00, 0x7a, 0x09, 0xd3, 0x5d, 0x95, 0x30, 0x5a, 0xee, 0x5d, 0x27, 0x0b,
0xe2, 0x95, 0x8b, 0x14, 0xd3, 0x1b, 0xbf, 0x02, 0x14, 0xc4, 0x53, 0x8a, 0x1a, 0x30, 0xa3, 0xaa,
0x90, 0xd0, 0x6a, 0x8a, 0xa8, 0x47, 0x4d, 0x66, 0x5c, 0x3b, 0x17, 0x27, 0xd7, 0x74, 0x06, 0x46,
0x7e, 0x0d, 0x83, 0x6e, 0xe6, 0xd1, 0xa8, 0x72, 0x77, 0xe3, 0xd6, 0x05, 0xd1, 0x49, 0xf7, 0x61,
0xaa, 0xb3, 0xc0, 0x40, 0x66, 0x8a, 0x22, 0xa7, 0xfa, 0x31, 0x96, 0x7b, 0x62, 0x24, 0x79, 0x13,
0x2e, 0xa9, 0x53, 0x79, 0xb4, 0xa6, 0x9a, 0xae, 0x5c, 0xcf, 0xf5, 0x0b, 0x20, 0xa5, 0xb9, 0x0f,
0xa1, 0x20, 0x12, 0x58, 0xa4, 0x77, 0xe5, 0xbd, 0x31, 0xdd, 0x9c, 0x42, 0x23, 0xa7, 0x63, 0x40,
0xdd, 0x49, 0x36, 0x5a, 0xe9, 0x9a, 0xa0, 0x48, 0xe9, 0x8d, 0xff, 0x9e, 0x83, 0x92, 0x26, 0x22,
0xd0, 0xf3, 0xfa, 0x16, 0xe8, 0x7f, 0x69, 0x8a, 0xde, 0x4d, 0x16, 0xe3, 0xc6, 0x85, 0xb0, 0xd2,
0x68, 0x03, 0x66, 0x54, 0x8d, 0x88, 0x4c, 0x18, 0xf7, 0x68, 0x7d, 0x64, 0xc2, 0xb8, 0x67, 0x47,
0xc3, 0x82, 0x89, 0x4c, 0x6a, 0x8e, 0x16, 0x53, 0x33, 0x55, 0xe9, 0xbf, 0xb1, 0x94, 0x0f, 0x50,
0xc4, 0x67, 0x92, 0xaa, 0x28, 0x43, 0x22, 0x93, 0xdd, 0xa9, 0xe3, 0xb3, 0x33, 0xc7, 0xba, 0xd7,
0x4e, 0x7f, 0xe6, 0x14, 0xd9, 0x95, 0xe2, 0x99, 0xec, 0x64, 0xb0, 0x60, 0x22, 0x93, 0xbe, 0x65,
0x96, 0xac, 0x4a, 0x3b, 0x33, 0x4b, 0x56, 0x67, 0x7e, 0xdd, 0xb7, 0x26, 0x26, 0xef, 0x71, 0x6b,
0x3a, 0xac, 0x5c, 0xbf, 0x00, 0xb2, 0xfd, 0xa0, 0x76, 0xff, 0x93, 0x97, 0x7b, 0xff, 0x4a, 0xbb,
0x1f, 0xd4, 0xdc, 0xff, 0xed, 0xd6, 0xca, 0x0b, 0x93, 0x09, 0xbe, 0xac, 0x3a, 0xfe, 0x3a, 0xff,
0x58, 0x0f, 0x42, 0xe7, 0x14, 0x53, 0xb2, 0x9e, 0xcc, 0x0e, 0x8e, 0x8e, 0x0a, 0xbc, 0x21, 0x7e,
0xfb, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xad, 0x32, 0x36, 0xd4, 0x09, 0x1a, 0x00, 0x00,
}