// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.30.0 // protoc v4.23.2 // source: slot.proto package slot import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) // 免费游戏开局的参数,比如阿里巴巴的转盘结果 type SpinStructFreeStartStruct struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 免费游戏开始时候的转盘数据 TurnTable int32 `protobuf:"varint,1,opt,name=TurnTable,proto3" json:"TurnTable,omitempty"` // 触发免费游戏的spin次数 SpinCount int32 `protobuf:"varint,2,opt,name=SpinCount,proto3" json:"SpinCount,omitempty"` } func (x *SpinStructFreeStartStruct) Reset() { *x = SpinStructFreeStartStruct{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStructFreeStartStruct) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStructFreeStartStruct) ProtoMessage() {} func (x *SpinStructFreeStartStruct) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStructFreeStartStruct.ProtoReflect.Descriptor instead. func (*SpinStructFreeStartStruct) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{0} } func (x *SpinStructFreeStartStruct) GetTurnTable() int32 { if x != nil { return x.TurnTable } return 0 } func (x *SpinStructFreeStartStruct) GetSpinCount() int32 { if x != nil { return x.SpinCount } return 0 } type SpinStruct struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 一次spin结果可以由次spin组成(普通游戏一般为一次,免费游戏则为免费游戏的多次,玩家触发免费游戏,服务器会一次返回全部免费游戏的spin结果,再由客户端分开展示) Spins []*SpinStruct_Spin `protobuf:"bytes,1,rep,name=spins,proto3" json:"spins,omitempty"` FreeStart *SpinStructFreeStartStruct `protobuf:"bytes,2,opt,name=freeStart,proto3" json:"freeStart,omitempty"` } func (x *SpinStruct) Reset() { *x = SpinStruct{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct) ProtoMessage() {} func (x *SpinStruct) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct.ProtoReflect.Descriptor instead. func (*SpinStruct) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1} } func (x *SpinStruct) GetSpins() []*SpinStruct_Spin { if x != nil { return x.Spins } return nil } func (x *SpinStruct) GetFreeStart() *SpinStructFreeStartStruct { if x != nil { return x.FreeStart } return nil } type GetInfoReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields AuthInfo string `protobuf:"bytes,1,opt,name=authInfo,proto3" json:"authInfo,omitempty"` } func (x *GetInfoReq) Reset() { *x = GetInfoReq{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetInfoReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetInfoReq) ProtoMessage() {} func (x *GetInfoReq) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetInfoReq.ProtoReflect.Descriptor instead. func (*GetInfoReq) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{2} } func (x *GetInfoReq) GetAuthInfo() string { if x != nil { return x.AuthInfo } return "" } type GetInfoRet struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // uid Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` // 余额 Balance float64 `protobuf:"fixed64,2,opt,name=balance,proto3" json:"balance,omitempty"` // 购买免费 FreeSpCount int64 `protobuf:"varint,3,opt,name=freeSpCount,proto3" json:"freeSpCount,omitempty"` // 下注额 Bet float64 `protobuf:"fixed64,4,opt,name=bet,proto3" json:"bet,omitempty"` // 购买免费价格 BuyBonus float64 `protobuf:"fixed64,5,opt,name=buyBonus,proto3" json:"buyBonus,omitempty"` // 汇率 Rate float64 `protobuf:"fixed64,6,opt,name=rate,proto3" json:"rate,omitempty"` // 货币 Currency string `protobuf:"bytes,7,opt,name=currency,proto3" json:"currency,omitempty"` BetOption *GetInfoRet_BetOptions `protobuf:"bytes,8,opt,name=betOption,proto3" json:"betOption,omitempty"` // 图(仅埃及寻宝用) Pic string `protobuf:"bytes,9,opt,name=pic,proto3" json:"pic,omitempty"` // 下注配置 BetInfo string `protobuf:"bytes,10,opt,name=betInfo,proto3" json:"betInfo,omitempty"` // 用户自定义数据 CustomData string `protobuf:"bytes,11,opt,name=customData,proto3" json:"customData,omitempty"` // 免费选择索引 Select int32 `protobuf:"varint,12,opt,name=select,proto3" json:"select,omitempty"` // 免费剩余次数 FreeTimes int32 `protobuf:"varint,13,opt,name=freeTimes,proto3" json:"freeTimes,omitempty"` // 免费次数下注额 FreeBet float64 `protobuf:"fixed64,14,opt,name=freeBet,proto3" json:"freeBet,omitempty"` } func (x *GetInfoRet) Reset() { *x = GetInfoRet{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetInfoRet) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetInfoRet) ProtoMessage() {} func (x *GetInfoRet) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetInfoRet.ProtoReflect.Descriptor instead. func (*GetInfoRet) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{3} } func (x *GetInfoRet) GetUid() string { if x != nil { return x.Uid } return "" } func (x *GetInfoRet) GetBalance() float64 { if x != nil { return x.Balance } return 0 } func (x *GetInfoRet) GetFreeSpCount() int64 { if x != nil { return x.FreeSpCount } return 0 } func (x *GetInfoRet) GetBet() float64 { if x != nil { return x.Bet } return 0 } func (x *GetInfoRet) GetBuyBonus() float64 { if x != nil { return x.BuyBonus } return 0 } func (x *GetInfoRet) GetRate() float64 { if x != nil { return x.Rate } return 0 } func (x *GetInfoRet) GetCurrency() string { if x != nil { return x.Currency } return "" } func (x *GetInfoRet) GetBetOption() *GetInfoRet_BetOptions { if x != nil { return x.BetOption } return nil } func (x *GetInfoRet) GetPic() string { if x != nil { return x.Pic } return "" } func (x *GetInfoRet) GetBetInfo() string { if x != nil { return x.BetInfo } return "" } func (x *GetInfoRet) GetCustomData() string { if x != nil { return x.CustomData } return "" } func (x *GetInfoRet) GetSelect() int32 { if x != nil { return x.Select } return 0 } func (x *GetInfoRet) GetFreeTimes() int32 { if x != nil { return x.FreeTimes } return 0 } func (x *GetInfoRet) GetFreeBet() float64 { if x != nil { return x.FreeBet } return 0 } type SpinReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 下注额 Bet float64 `protobuf:"fixed64,1,opt,name=bet,proto3" json:"bet,omitempty"` // 模式 Mode int32 `protobuf:"varint,2,opt,name=mode,proto3" json:"mode,omitempty"` // 规则模式 (仅埃及寻宝用) RuleMode int32 `protobuf:"varint,3,opt,name=ruleMode,proto3" json:"ruleMode,omitempty"` // 赔率 (仅埃及寻宝用) Muls []*SpinReq_Muls `protobuf:"bytes,4,rep,name=muls,proto3" json:"muls,omitempty"` } func (x *SpinReq) Reset() { *x = SpinReq{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinReq) ProtoMessage() {} func (x *SpinReq) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinReq.ProtoReflect.Descriptor instead. func (*SpinReq) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{4} } func (x *SpinReq) GetBet() float64 { if x != nil { return x.Bet } return 0 } func (x *SpinReq) GetMode() int32 { if x != nil { return x.Mode } return 0 } func (x *SpinReq) GetRuleMode() int32 { if x != nil { return x.RuleMode } return 0 } func (x *SpinReq) GetMuls() []*SpinReq_Muls { if x != nil { return x.Muls } return nil } type SpinRet struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 图 SpinList []byte `protobuf:"bytes,1,opt,name=spinList,proto3" json:"spinList,omitempty"` // 免费图 FreeSpinList []byte `protobuf:"bytes,2,opt,name=freeSpinList,proto3" json:"freeSpinList,omitempty"` // 余额 Balance float64 `protobuf:"fixed64,3,opt,name=balance,proto3" json:"balance,omitempty"` // 错误 Err string `protobuf:"bytes,4,opt,name=err,proto3" json:"err,omitempty"` // 下注额 Bet float32 `protobuf:"fixed32,5,opt,name=bet,proto3" json:"bet,omitempty"` // *获得免费游戏次数 Free int32 `protobuf:"varint,6,opt,name=free,proto3" json:"free,omitempty"` // *spin log 唯一id OrderID string `protobuf:"bytes,7,opt,name=OrderID,proto3" json:"OrderID,omitempty"` // 彩金 Jackpot float64 `protobuf:"fixed64,8,opt,name=Jackpot,proto3" json:"Jackpot,omitempty"` // 彩金id JackpotIdx string `protobuf:"bytes,9,opt,name=JackpotIdx,proto3" json:"JackpotIdx,omitempty"` // 倍率 Mul float64 `protobuf:"fixed64,10,opt,name=mul,proto3" json:"mul,omitempty"` // 免费游戏剩余次数 FreeTimes int32 `protobuf:"varint,11,opt,name=freeTimes,proto3" json:"freeTimes,omitempty"` // 免费次数下注额 FreeBet float64 `protobuf:"fixed64,12,opt,name=freeBet,proto3" json:"freeBet,omitempty"` TotalWin float64 `protobuf:"fixed64,13,opt,name=totalWin,proto3" json:"totalWin,omitempty"` JsonData string `protobuf:"bytes,14,opt,name=jsonData,proto3" json:"jsonData,omitempty"` } func (x *SpinRet) Reset() { *x = SpinRet{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinRet) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinRet) ProtoMessage() {} func (x *SpinRet) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinRet.ProtoReflect.Descriptor instead. func (*SpinRet) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{5} } func (x *SpinRet) GetSpinList() []byte { if x != nil { return x.SpinList } return nil } func (x *SpinRet) GetFreeSpinList() []byte { if x != nil { return x.FreeSpinList } return nil } func (x *SpinRet) GetBalance() float64 { if x != nil { return x.Balance } return 0 } func (x *SpinRet) GetErr() string { if x != nil { return x.Err } return "" } func (x *SpinRet) GetBet() float32 { if x != nil { return x.Bet } return 0 } func (x *SpinRet) GetFree() int32 { if x != nil { return x.Free } return 0 } func (x *SpinRet) GetOrderID() string { if x != nil { return x.OrderID } return "" } func (x *SpinRet) GetJackpot() float64 { if x != nil { return x.Jackpot } return 0 } func (x *SpinRet) GetJackpotIdx() string { if x != nil { return x.JackpotIdx } return "" } func (x *SpinRet) GetMul() float64 { if x != nil { return x.Mul } return 0 } func (x *SpinRet) GetFreeTimes() int32 { if x != nil { return x.FreeTimes } return 0 } func (x *SpinRet) GetFreeBet() float64 { if x != nil { return x.FreeBet } return 0 } func (x *SpinRet) GetTotalWin() float64 { if x != nil { return x.TotalWin } return 0 } func (x *SpinRet) GetJsonData() string { if x != nil { return x.JsonData } return "" } type BuyFreeReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 下注额 Bet float64 `protobuf:"fixed64,1,opt,name=bet,proto3" json:"bet,omitempty"` // 次数 Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"` // 购买免费价格 BuyBonus float64 `protobuf:"fixed64,3,opt,name=buyBonus,proto3" json:"buyBonus,omitempty"` } func (x *BuyFreeReq) Reset() { *x = BuyFreeReq{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *BuyFreeReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*BuyFreeReq) ProtoMessage() {} func (x *BuyFreeReq) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use BuyFreeReq.ProtoReflect.Descriptor instead. func (*BuyFreeReq) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{6} } func (x *BuyFreeReq) GetBet() float64 { if x != nil { return x.Bet } return 0 } func (x *BuyFreeReq) GetCount() int64 { if x != nil { return x.Count } return 0 } func (x *BuyFreeReq) GetBuyBonus() float64 { if x != nil { return x.BuyBonus } return 0 } type BuyFreeRet struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 下注额 Bet float64 `protobuf:"fixed64,1,opt,name=bet,proto3" json:"bet,omitempty"` // 次数 Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"` // 购买免费价格 BuyBonus float64 `protobuf:"fixed64,3,opt,name=buyBonus,proto3" json:"buyBonus,omitempty"` } func (x *BuyFreeRet) Reset() { *x = BuyFreeRet{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *BuyFreeRet) String() string { return protoimpl.X.MessageStringOf(x) } func (*BuyFreeRet) ProtoMessage() {} func (x *BuyFreeRet) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use BuyFreeRet.ProtoReflect.Descriptor instead. func (*BuyFreeRet) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{7} } func (x *BuyFreeRet) GetBet() float64 { if x != nil { return x.Bet } return 0 } func (x *BuyFreeRet) GetCount() int64 { if x != nil { return x.Count } return 0 } func (x *BuyFreeRet) GetBuyBonus() float64 { if x != nil { return x.BuyBonus } return 0 } type HeartReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields } func (x *HeartReq) Reset() { *x = HeartReq{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *HeartReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*HeartReq) ProtoMessage() {} func (x *HeartReq) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use HeartReq.ProtoReflect.Descriptor instead. func (*HeartReq) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{8} } type HeartRet struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` Info *GetInfoRet `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"` } func (x *HeartRet) Reset() { *x = HeartRet{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *HeartRet) String() string { return protoimpl.X.MessageStringOf(x) } func (*HeartRet) ProtoMessage() {} func (x *HeartRet) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use HeartRet.ProtoReflect.Descriptor instead. func (*HeartRet) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{9} } func (x *HeartRet) GetCode() int64 { if x != nil { return x.Code } return 0 } func (x *HeartRet) GetInfo() *GetInfoRet { if x != nil { return x.Info } return nil } type GetFreeInfoReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields } func (x *GetFreeInfoReq) Reset() { *x = GetFreeInfoReq{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetFreeInfoReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetFreeInfoReq) ProtoMessage() {} func (x *GetFreeInfoReq) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetFreeInfoReq.ProtoReflect.Descriptor instead. func (*GetFreeInfoReq) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{10} } type GetFreeInfoRet struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 图 SpinList []byte `protobuf:"bytes,1,opt,name=spinList,proto3" json:"spinList,omitempty"` // 余额 Balance float64 `protobuf:"fixed64,2,opt,name=balance,proto3" json:"balance,omitempty"` // 下注额 Bet float64 `protobuf:"fixed64,3,opt,name=bet,proto3" json:"bet,omitempty"` // 订单号 OrderID string `protobuf:"bytes,4,opt,name=OrderID,proto3" json:"OrderID,omitempty"` // 状态 Status int32 `protobuf:"varint,5,opt,name=status,proto3" json:"status,omitempty"` } func (x *GetFreeInfoRet) Reset() { *x = GetFreeInfoRet{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetFreeInfoRet) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetFreeInfoRet) ProtoMessage() {} func (x *GetFreeInfoRet) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetFreeInfoRet.ProtoReflect.Descriptor instead. func (*GetFreeInfoRet) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{11} } func (x *GetFreeInfoRet) GetSpinList() []byte { if x != nil { return x.SpinList } return nil } func (x *GetFreeInfoRet) GetBalance() float64 { if x != nil { return x.Balance } return 0 } func (x *GetFreeInfoRet) GetBet() float64 { if x != nil { return x.Bet } return 0 } func (x *GetFreeInfoRet) GetOrderID() string { if x != nil { return x.OrderID } return "" } func (x *GetFreeInfoRet) GetStatus() int32 { if x != nil { return x.Status } return 0 } type SpinLogData struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields GameType string `protobuf:"bytes,1,opt,name=GameType,proto3" json:"GameType,omitempty"` Uid string `protobuf:"bytes,2,opt,name=Uid,proto3" json:"Uid,omitempty"` Bet float64 `protobuf:"fixed64,3,opt,name=Bet,proto3" json:"Bet,omitempty"` Balance float64 `protobuf:"fixed64,4,opt,name=Balance,proto3" json:"Balance,omitempty"` Mul float64 `protobuf:"fixed64,5,opt,name=Mul,proto3" json:"Mul,omitempty"` FreeMul float64 `protobuf:"fixed64,6,opt,name=FreeMul,proto3" json:"FreeMul,omitempty"` SpinType int64 `protobuf:"varint,7,opt,name=SpinType,proto3" json:"SpinType,omitempty"` Win float64 `protobuf:"fixed64,8,opt,name=Win,proto3" json:"Win,omitempty"` Ops string `protobuf:"bytes,9,opt,name=Ops,proto3" json:"Ops,omitempty"` Opid string `protobuf:"bytes,10,opt,name=Opid,proto3" json:"Opid,omitempty"` OrderID string `protobuf:"bytes,11,opt,name=OrderID,proto3" json:"OrderID,omitempty"` SpinList []byte `protobuf:"bytes,12,opt,name=spinList,proto3" json:"spinList,omitempty"` FreeSpinList []byte `protobuf:"bytes,13,opt,name=freeSpinList,proto3" json:"freeSpinList,omitempty"` Custom string `protobuf:"bytes,14,opt,name=custom,proto3" json:"custom,omitempty"` InBet float64 `protobuf:"fixed64,15,opt,name=InBet,proto3" json:"InBet,omitempty"` // 品牌 Brand string `protobuf:"bytes,16,opt,name=Brand,proto3" json:"Brand,omitempty"` // 彩金 Jackpot float64 `protobuf:"fixed64,17,opt,name=Jackpot,proto3" json:"Jackpot,omitempty"` // 免费游戏次数 Free int32 `protobuf:"varint,18,opt,name=Free,proto3" json:"Free,omitempty"` // 模式 Mode int32 `protobuf:"varint,19,opt,name=Mode,proto3" json:"Mode,omitempty"` } func (x *SpinLogData) Reset() { *x = SpinLogData{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinLogData) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinLogData) ProtoMessage() {} func (x *SpinLogData) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinLogData.ProtoReflect.Descriptor instead. func (*SpinLogData) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{12} } func (x *SpinLogData) GetGameType() string { if x != nil { return x.GameType } return "" } func (x *SpinLogData) GetUid() string { if x != nil { return x.Uid } return "" } func (x *SpinLogData) GetBet() float64 { if x != nil { return x.Bet } return 0 } func (x *SpinLogData) GetBalance() float64 { if x != nil { return x.Balance } return 0 } func (x *SpinLogData) GetMul() float64 { if x != nil { return x.Mul } return 0 } func (x *SpinLogData) GetFreeMul() float64 { if x != nil { return x.FreeMul } return 0 } func (x *SpinLogData) GetSpinType() int64 { if x != nil { return x.SpinType } return 0 } func (x *SpinLogData) GetWin() float64 { if x != nil { return x.Win } return 0 } func (x *SpinLogData) GetOps() string { if x != nil { return x.Ops } return "" } func (x *SpinLogData) GetOpid() string { if x != nil { return x.Opid } return "" } func (x *SpinLogData) GetOrderID() string { if x != nil { return x.OrderID } return "" } func (x *SpinLogData) GetSpinList() []byte { if x != nil { return x.SpinList } return nil } func (x *SpinLogData) GetFreeSpinList() []byte { if x != nil { return x.FreeSpinList } return nil } func (x *SpinLogData) GetCustom() string { if x != nil { return x.Custom } return "" } func (x *SpinLogData) GetInBet() float64 { if x != nil { return x.InBet } return 0 } func (x *SpinLogData) GetBrand() string { if x != nil { return x.Brand } return "" } func (x *SpinLogData) GetJackpot() float64 { if x != nil { return x.Jackpot } return 0 } func (x *SpinLogData) GetFree() int32 { if x != nil { return x.Free } return 0 } func (x *SpinLogData) GetMode() int32 { if x != nil { return x.Mode } return 0 } type PlayerSelectReq struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 选择索引 Select int32 `protobuf:"varint,1,opt,name=select,proto3" json:"select,omitempty"` // 订单号 Orderid string `protobuf:"bytes,2,opt,name=orderid,proto3" json:"orderid,omitempty"` } func (x *PlayerSelectReq) Reset() { *x = PlayerSelectReq{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *PlayerSelectReq) String() string { return protoimpl.X.MessageStringOf(x) } func (*PlayerSelectReq) ProtoMessage() {} func (x *PlayerSelectReq) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use PlayerSelectReq.ProtoReflect.Descriptor instead. func (*PlayerSelectReq) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{13} } func (x *PlayerSelectReq) GetSelect() int32 { if x != nil { return x.Select } return 0 } func (x *PlayerSelectReq) GetOrderid() string { if x != nil { return x.Orderid } return "" } type PlayerSelectRet struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // 选择 Select int32 `protobuf:"varint,1,opt,name=select,proto3" json:"select,omitempty"` // 订单号 Orderid string `protobuf:"bytes,2,opt,name=orderid,proto3" json:"orderid,omitempty"` // 自定义数据 Custom string `protobuf:"bytes,3,opt,name=custom,proto3" json:"custom,omitempty"` // 错误 Err string `protobuf:"bytes,4,opt,name=err,proto3" json:"err,omitempty"` } func (x *PlayerSelectRet) Reset() { *x = PlayerSelectRet{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *PlayerSelectRet) String() string { return protoimpl.X.MessageStringOf(x) } func (*PlayerSelectRet) ProtoMessage() {} func (x *PlayerSelectRet) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use PlayerSelectRet.ProtoReflect.Descriptor instead. func (*PlayerSelectRet) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{14} } func (x *PlayerSelectRet) GetSelect() int32 { if x != nil { return x.Select } return 0 } func (x *PlayerSelectRet) GetOrderid() string { if x != nil { return x.Orderid } return "" } func (x *PlayerSelectRet) GetCustom() string { if x != nil { return x.Custom } return "" } func (x *PlayerSelectRet) GetErr() string { if x != nil { return x.Err } return "" } type SpinStruct_Spin struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Combos []*SpinStruct_Spin_Combo `protobuf:"bytes,1,rep,name=Combos,proto3" json:"Combos,omitempty"` } func (x *SpinStruct_Spin) Reset() { *x = SpinStruct_Spin{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct_Spin) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct_Spin) ProtoMessage() {} func (x *SpinStruct_Spin) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct_Spin.ProtoReflect.Descriptor instead. func (*SpinStruct_Spin) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1, 0} } func (x *SpinStruct_Spin) GetCombos() []*SpinStruct_Spin_Combo { if x != nil { return x.Combos } return nil } // 每次停止下来的图 type SpinStruct_Spin_Combo struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Wp map[int32]*SpinStruct_Spin_Combo_Matrix `protobuf:"bytes,1,rep,name=wp,proto3" json:"wp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // 中奖的位置信息 Lw map[int32]float32 `protobuf:"bytes,2,rep,name=lw,proto3" json:"lw,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"fixed32,2,opt,name=value,proto3"` // 中奖线的信息-分数 Sw map[int32]*SpinStruct_Spin_ComboIntLi `protobuf:"bytes,3,rep,name=sw,proto3" json:"sw,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // 赢钱符号赢的多少 {"5": [0.30, 0.30]} Wsc map[int32]int32 `protobuf:"bytes,4,rep,name=wsc,proto3" json:"wsc,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // 赢钱符号的数量 {"5": 6} Wpl *SpinStruct_Spin_ComboIntLi `protobuf:"bytes,5,opt,name=wpl,proto3" json:"wpl,omitempty"` // 赢钱符号的索引(win position list) Orl *SpinStruct_Spin_ComboIntLi `protobuf:"bytes,6,opt,name=orl,proto3" json:"orl,omitempty"` // 原始滚轮 Rl *SpinStruct_Spin_ComboIntLi `protobuf:"bytes,7,opt,name=rl,proto3" json:"rl,omitempty"` // 滚轮的信息 Rns *SpinStruct_Spin_Combo_Matrix `protobuf:"bytes,8,opt,name=rns,proto3" json:"rns,omitempty"` // 重摇信息 Gsp *SpinStruct_Spin_ComboIntLi `protobuf:"bytes,9,opt,name=gsp,proto3" json:"gsp,omitempty"` // 金色符号的位置(gold symbol position)-消除变化后 Cgsp *SpinStruct_Spin_Combo_Matrix `protobuf:"bytes,10,opt,name=cgsp,proto3" json:"cgsp,omitempty"` // 消除的金色符号位置?(collapse gold symbol position) Ngsp *SpinStruct_Spin_ComboIntLi `protobuf:"bytes,11,opt,name=ngsp,proto3" json:"ngsp,omitempty"` // 新的金色符号位置(new gold symbol position) Wgsp *SpinStruct_Spin_ComboIntLi `protobuf:"bytes,12,opt,name=wgsp,proto3" json:"wgsp,omitempty"` // 赢钱的金色符号位置(win gold symbol position) Cwsp *SpinStruct_Spin_Combo_Matrix `protobuf:"bytes,13,opt,name=cwsp,proto3" json:"cwsp,omitempty"` // 消除的百搭符号位置?(cluster wild symbol position) Gpps *SpinStruct_Spin_Combo_Matrix `protobuf:"bytes,14,opt,name=gpps,proto3" json:"gpps,omitempty"` // 金色符号之前的位置?(gold previous position symbol) Wsm int32 `protobuf:"varint,15,opt,name=wsm,proto3" json:"wsm,omitempty"` // 百搭符号倍数(wild symbol multiplier) Am int32 `protobuf:"varint,16,opt,name=am,proto3" json:"am,omitempty"` // 总倍数 Ptbr *SpinStruct_Spin_ComboIntLi `protobuf:"bytes,17,opt,name=ptbr,proto3" json:"ptbr,omitempty"` // 被消除的坐标 Cp map[int32]*SpinStruct_Spin_Combo_Matrix `protobuf:"bytes,18,rep,name=cp,proto3" json:"cp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // 翻倍前收入,翻倍后收入{num:[base, gm]}(cluster Pay) Sc int32 `protobuf:"varint,19,opt,name=sc,proto3" json:"sc,omitempty"` // 夺宝符号数量 Fs *SpinStruct_Spin_Combo_Fs `protobuf:"bytes,20,opt,name=fs,proto3" json:"fs,omitempty"` Ctw float32 `protobuf:"fixed32,21,opt,name=ctw,proto3" json:"ctw,omitempty"` // 总赢分数 Cwc int32 `protobuf:"varint,22,opt,name=cwc,proto3" json:"cwc,omitempty"` // 获奖为1,不获奖为0 Fstc map[int32]int32 `protobuf:"bytes,23,rep,name=fstc,proto3" json:"fstc,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // feature 统计 Rwsp map[int32]*SpinStruct_Spin_ComboFloatLi `protobuf:"bytes,24,rep,name=rwsp,proto3" json:"rwsp,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // 获奖牌初始分数 St int32 `protobuf:"varint,25,opt,name=st,proto3" json:"st,omitempty"` // state transition from Nst int32 `protobuf:"varint,26,opt,name=nst,proto3" json:"nst,omitempty"` // state transition to Aw float32 `protobuf:"fixed32,27,opt,name=aw,proto3" json:"aw,omitempty"` // 累积赢得的金额 Tw float32 `protobuf:"fixed32,28,opt,name=tw,proto3" json:"tw,omitempty"` // 总赢金额 } func (x *SpinStruct_Spin_Combo) Reset() { *x = SpinStruct_Spin_Combo{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct_Spin_Combo) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct_Spin_Combo) ProtoMessage() {} func (x *SpinStruct_Spin_Combo) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct_Spin_Combo.ProtoReflect.Descriptor instead. func (*SpinStruct_Spin_Combo) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1, 0, 0} } func (x *SpinStruct_Spin_Combo) GetWp() map[int32]*SpinStruct_Spin_Combo_Matrix { if x != nil { return x.Wp } return nil } func (x *SpinStruct_Spin_Combo) GetLw() map[int32]float32 { if x != nil { return x.Lw } return nil } func (x *SpinStruct_Spin_Combo) GetSw() map[int32]*SpinStruct_Spin_ComboIntLi { if x != nil { return x.Sw } return nil } func (x *SpinStruct_Spin_Combo) GetWsc() map[int32]int32 { if x != nil { return x.Wsc } return nil } func (x *SpinStruct_Spin_Combo) GetWpl() *SpinStruct_Spin_ComboIntLi { if x != nil { return x.Wpl } return nil } func (x *SpinStruct_Spin_Combo) GetOrl() *SpinStruct_Spin_ComboIntLi { if x != nil { return x.Orl } return nil } func (x *SpinStruct_Spin_Combo) GetRl() *SpinStruct_Spin_ComboIntLi { if x != nil { return x.Rl } return nil } func (x *SpinStruct_Spin_Combo) GetRns() *SpinStruct_Spin_Combo_Matrix { if x != nil { return x.Rns } return nil } func (x *SpinStruct_Spin_Combo) GetGsp() *SpinStruct_Spin_ComboIntLi { if x != nil { return x.Gsp } return nil } func (x *SpinStruct_Spin_Combo) GetCgsp() *SpinStruct_Spin_Combo_Matrix { if x != nil { return x.Cgsp } return nil } func (x *SpinStruct_Spin_Combo) GetNgsp() *SpinStruct_Spin_ComboIntLi { if x != nil { return x.Ngsp } return nil } func (x *SpinStruct_Spin_Combo) GetWgsp() *SpinStruct_Spin_ComboIntLi { if x != nil { return x.Wgsp } return nil } func (x *SpinStruct_Spin_Combo) GetCwsp() *SpinStruct_Spin_Combo_Matrix { if x != nil { return x.Cwsp } return nil } func (x *SpinStruct_Spin_Combo) GetGpps() *SpinStruct_Spin_Combo_Matrix { if x != nil { return x.Gpps } return nil } func (x *SpinStruct_Spin_Combo) GetWsm() int32 { if x != nil { return x.Wsm } return 0 } func (x *SpinStruct_Spin_Combo) GetAm() int32 { if x != nil { return x.Am } return 0 } func (x *SpinStruct_Spin_Combo) GetPtbr() *SpinStruct_Spin_ComboIntLi { if x != nil { return x.Ptbr } return nil } func (x *SpinStruct_Spin_Combo) GetCp() map[int32]*SpinStruct_Spin_Combo_Matrix { if x != nil { return x.Cp } return nil } func (x *SpinStruct_Spin_Combo) GetSc() int32 { if x != nil { return x.Sc } return 0 } func (x *SpinStruct_Spin_Combo) GetFs() *SpinStruct_Spin_Combo_Fs { if x != nil { return x.Fs } return nil } func (x *SpinStruct_Spin_Combo) GetCtw() float32 { if x != nil { return x.Ctw } return 0 } func (x *SpinStruct_Spin_Combo) GetCwc() int32 { if x != nil { return x.Cwc } return 0 } func (x *SpinStruct_Spin_Combo) GetFstc() map[int32]int32 { if x != nil { return x.Fstc } return nil } func (x *SpinStruct_Spin_Combo) GetRwsp() map[int32]*SpinStruct_Spin_ComboFloatLi { if x != nil { return x.Rwsp } return nil } func (x *SpinStruct_Spin_Combo) GetSt() int32 { if x != nil { return x.St } return 0 } func (x *SpinStruct_Spin_Combo) GetNst() int32 { if x != nil { return x.Nst } return 0 } func (x *SpinStruct_Spin_Combo) GetAw() float32 { if x != nil { return x.Aw } return 0 } func (x *SpinStruct_Spin_Combo) GetTw() float32 { if x != nil { return x.Tw } return 0 } type SpinStruct_Spin_ComboIntLi struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields A []int32 `protobuf:"varint,1,rep,packed,name=a,proto3" json:"a,omitempty"` } func (x *SpinStruct_Spin_ComboIntLi) Reset() { *x = SpinStruct_Spin_ComboIntLi{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct_Spin_ComboIntLi) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct_Spin_ComboIntLi) ProtoMessage() {} func (x *SpinStruct_Spin_ComboIntLi) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[17] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct_Spin_ComboIntLi.ProtoReflect.Descriptor instead. func (*SpinStruct_Spin_ComboIntLi) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1, 0, 0, 0} } func (x *SpinStruct_Spin_ComboIntLi) GetA() []int32 { if x != nil { return x.A } return nil } type SpinStruct_Spin_ComboFloatLi struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields A []int32 `protobuf:"varint,1,rep,packed,name=a,proto3" json:"a,omitempty"` } func (x *SpinStruct_Spin_ComboFloatLi) Reset() { *x = SpinStruct_Spin_ComboFloatLi{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct_Spin_ComboFloatLi) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct_Spin_ComboFloatLi) ProtoMessage() {} func (x *SpinStruct_Spin_ComboFloatLi) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[18] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct_Spin_ComboFloatLi.ProtoReflect.Descriptor instead. func (*SpinStruct_Spin_ComboFloatLi) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1, 0, 0, 1} } func (x *SpinStruct_Spin_ComboFloatLi) GetA() []int32 { if x != nil { return x.A } return nil } type SpinStruct_Spin_Combo_Matrix struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Rows []*SpinStruct_Spin_Combo_Row `protobuf:"bytes,1,rep,name=rows,proto3" json:"rows,omitempty"` } func (x *SpinStruct_Spin_Combo_Matrix) Reset() { *x = SpinStruct_Spin_Combo_Matrix{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct_Spin_Combo_Matrix) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct_Spin_Combo_Matrix) ProtoMessage() {} func (x *SpinStruct_Spin_Combo_Matrix) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[19] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct_Spin_Combo_Matrix.ProtoReflect.Descriptor instead. func (*SpinStruct_Spin_Combo_Matrix) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1, 0, 0, 2} } func (x *SpinStruct_Spin_Combo_Matrix) GetRows() []*SpinStruct_Spin_Combo_Row { if x != nil { return x.Rows } return nil } type SpinStruct_Spin_Combo_Row struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Elements []int32 `protobuf:"varint,1,rep,packed,name=elements,proto3" json:"elements,omitempty"` } func (x *SpinStruct_Spin_Combo_Row) Reset() { *x = SpinStruct_Spin_Combo_Row{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct_Spin_Combo_Row) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct_Spin_Combo_Row) ProtoMessage() {} func (x *SpinStruct_Spin_Combo_Row) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[20] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct_Spin_Combo_Row.ProtoReflect.Descriptor instead. func (*SpinStruct_Spin_Combo_Row) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1, 0, 0, 3} } func (x *SpinStruct_Spin_Combo_Row) GetElements() []int32 { if x != nil { return x.Elements } return nil } type SpinStruct_Spin_Combo_Fs struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields S int32 `protobuf:"varint,1,opt,name=s,proto3" json:"s,omitempty"` Ts int32 `protobuf:"varint,2,opt,name=ts,proto3" json:"ts,omitempty"` As int32 `protobuf:"varint,3,opt,name=as,proto3" json:"as,omitempty"` Aw float32 `protobuf:"fixed32,4,opt,name=aw,proto3" json:"aw,omitempty"` } func (x *SpinStruct_Spin_Combo_Fs) Reset() { *x = SpinStruct_Spin_Combo_Fs{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinStruct_Spin_Combo_Fs) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinStruct_Spin_Combo_Fs) ProtoMessage() {} func (x *SpinStruct_Spin_Combo_Fs) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[21] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinStruct_Spin_Combo_Fs.ProtoReflect.Descriptor instead. func (*SpinStruct_Spin_Combo_Fs) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{1, 0, 0, 4} } func (x *SpinStruct_Spin_Combo_Fs) GetS() int32 { if x != nil { return x.S } return 0 } func (x *SpinStruct_Spin_Combo_Fs) GetTs() int32 { if x != nil { return x.Ts } return 0 } func (x *SpinStruct_Spin_Combo_Fs) GetAs() int32 { if x != nil { return x.As } return 0 } func (x *SpinStruct_Spin_Combo_Fs) GetAw() float32 { if x != nil { return x.Aw } return 0 } type GetInfoRet_BetOptions struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields BetSize []float32 `protobuf:"fixed32,1,rep,packed,name=betSize,proto3" json:"betSize,omitempty"` BetMul []float32 `protobuf:"fixed32,2,rep,packed,name=betMul,proto3" json:"betMul,omitempty"` BetBase []float32 `protobuf:"fixed32,3,rep,packed,name=betBase,proto3" json:"betBase,omitempty"` } func (x *GetInfoRet_BetOptions) Reset() { *x = GetInfoRet_BetOptions{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GetInfoRet_BetOptions) String() string { return protoimpl.X.MessageStringOf(x) } func (*GetInfoRet_BetOptions) ProtoMessage() {} func (x *GetInfoRet_BetOptions) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[29] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GetInfoRet_BetOptions.ProtoReflect.Descriptor instead. func (*GetInfoRet_BetOptions) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{3, 0} } func (x *GetInfoRet_BetOptions) GetBetSize() []float32 { if x != nil { return x.BetSize } return nil } func (x *GetInfoRet_BetOptions) GetBetMul() []float32 { if x != nil { return x.BetMul } return nil } func (x *GetInfoRet_BetOptions) GetBetBase() []float32 { if x != nil { return x.BetBase } return nil } type SpinReq_Muls struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Mul float64 `protobuf:"fixed64,1,opt,name=mul,proto3" json:"mul,omitempty"` Pic string `protobuf:"bytes,2,opt,name=pic,proto3" json:"pic,omitempty"` } func (x *SpinReq_Muls) Reset() { *x = SpinReq_Muls{} if protoimpl.UnsafeEnabled { mi := &file_slot_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *SpinReq_Muls) String() string { return protoimpl.X.MessageStringOf(x) } func (*SpinReq_Muls) ProtoMessage() {} func (x *SpinReq_Muls) ProtoReflect() protoreflect.Message { mi := &file_slot_proto_msgTypes[30] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use SpinReq_Muls.ProtoReflect.Descriptor instead. func (*SpinReq_Muls) Descriptor() ([]byte, []int) { return file_slot_proto_rawDescGZIP(), []int{4, 0} } func (x *SpinReq_Muls) GetMul() float64 { if x != nil { return x.Mul } return 0 } func (x *SpinReq_Muls) GetPic() string { if x != nil { return x.Pic } return "" } var File_slot_proto protoreflect.FileDescriptor var file_slot_proto_rawDesc = []byte{ 0x0a, 0x0a, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x04, 0x73, 0x6c, 0x6f, 0x74, 0x22, 0x57, 0x0a, 0x19, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x46, 0x72, 0x65, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x75, 0x72, 0x6e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x54, 0x75, 0x72, 0x6e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x70, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x53, 0x70, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xcb, 0x10, 0x0a, 0x0a, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x05, 0x73, 0x70, 0x69, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x52, 0x05, 0x73, 0x70, 0x69, 0x6e, 0x73, 0x12, 0x3d, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x46, 0x72, 0x65, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x09, 0x66, 0x72, 0x65, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x1a, 0xd0, 0x0f, 0x0a, 0x04, 0x53, 0x70, 0x69, 0x6e, 0x12, 0x33, 0x0a, 0x06, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x52, 0x06, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x73, 0x1a, 0x92, 0x0f, 0x0a, 0x05, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x12, 0x33, 0x0a, 0x02, 0x77, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x57, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x02, 0x77, 0x70, 0x12, 0x33, 0x0a, 0x02, 0x6c, 0x77, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x4c, 0x77, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x02, 0x6c, 0x77, 0x12, 0x33, 0x0a, 0x02, 0x73, 0x77, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x53, 0x77, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x02, 0x73, 0x77, 0x12, 0x36, 0x0a, 0x03, 0x77, 0x73, 0x63, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x57, 0x73, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x03, 0x77, 0x73, 0x63, 0x12, 0x33, 0x0a, 0x03, 0x77, 0x70, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x03, 0x77, 0x70, 0x6c, 0x12, 0x33, 0x0a, 0x03, 0x6f, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x03, 0x6f, 0x72, 0x6c, 0x12, 0x31, 0x0a, 0x02, 0x72, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x02, 0x72, 0x6c, 0x12, 0x34, 0x0a, 0x03, 0x72, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x52, 0x03, 0x72, 0x6e, 0x73, 0x12, 0x33, 0x0a, 0x03, 0x67, 0x73, 0x70, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x03, 0x67, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x04, 0x63, 0x67, 0x73, 0x70, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x52, 0x04, 0x63, 0x67, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x04, 0x6e, 0x67, 0x73, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x04, 0x6e, 0x67, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x04, 0x77, 0x67, 0x73, 0x70, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x04, 0x77, 0x67, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x04, 0x63, 0x77, 0x73, 0x70, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x52, 0x04, 0x63, 0x77, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x04, 0x67, 0x70, 0x70, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x52, 0x04, 0x67, 0x70, 0x70, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x77, 0x73, 0x6d, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x77, 0x73, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x6d, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x61, 0x6d, 0x12, 0x35, 0x0a, 0x04, 0x70, 0x74, 0x62, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x04, 0x70, 0x74, 0x62, 0x72, 0x12, 0x33, 0x0a, 0x02, 0x63, 0x70, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x43, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x02, 0x63, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x63, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x73, 0x63, 0x12, 0x2e, 0x0a, 0x02, 0x66, 0x73, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x46, 0x73, 0x52, 0x02, 0x66, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x74, 0x77, 0x18, 0x15, 0x20, 0x01, 0x28, 0x02, 0x52, 0x03, 0x63, 0x74, 0x77, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x77, 0x63, 0x18, 0x16, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x63, 0x77, 0x63, 0x12, 0x39, 0x0a, 0x04, 0x66, 0x73, 0x74, 0x63, 0x18, 0x17, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x46, 0x73, 0x74, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x66, 0x73, 0x74, 0x63, 0x12, 0x39, 0x0a, 0x04, 0x72, 0x77, 0x73, 0x70, 0x18, 0x18, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x52, 0x77, 0x73, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x72, 0x77, 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x73, 0x74, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6e, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x77, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x61, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x77, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x74, 0x77, 0x1a, 0x15, 0x0a, 0x05, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x17, 0x0a, 0x07, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x4c, 0x69, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x3d, 0x0a, 0x06, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x12, 0x33, 0x0a, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x1a, 0x21, 0x0a, 0x03, 0x52, 0x6f, 0x77, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x08, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x1a, 0x42, 0x0a, 0x02, 0x46, 0x73, 0x12, 0x0c, 0x0a, 0x01, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x74, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x61, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x61, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x61, 0x77, 0x1a, 0x59, 0x0a, 0x07, 0x57, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x38, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x35, 0x0a, 0x07, 0x4c, 0x77, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x58, 0x0a, 0x07, 0x53, 0x77, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x37, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x36, 0x0a, 0x08, 0x57, 0x73, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x59, 0x0a, 0x07, 0x43, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x38, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x4d, 0x61, 0x74, 0x72, 0x69, 0x78, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x37, 0x0a, 0x09, 0x46, 0x73, 0x74, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x5c, 0x0a, 0x09, 0x52, 0x77, 0x73, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x39, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x6f, 0x2e, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x4c, 0x69, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x28, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xe9, 0x03, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x66, 0x72, 0x65, 0x65, 0x53, 0x70, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x72, 0x65, 0x65, 0x53, 0x70, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x62, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x79, 0x42, 0x6f, 0x6e, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x62, 0x75, 0x79, 0x42, 0x6f, 0x6e, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x72, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x39, 0x0a, 0x09, 0x62, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x74, 0x2e, 0x42, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x09, 0x62, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x63, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x66, 0x72, 0x65, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x72, 0x65, 0x65, 0x42, 0x65, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x72, 0x65, 0x65, 0x42, 0x65, 0x74, 0x1a, 0x58, 0x0a, 0x0a, 0x42, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x65, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x02, 0x52, 0x07, 0x62, 0x65, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x65, 0x74, 0x4d, 0x75, 0x6c, 0x18, 0x02, 0x20, 0x03, 0x28, 0x02, 0x52, 0x06, 0x62, 0x65, 0x74, 0x4d, 0x75, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x65, 0x74, 0x42, 0x61, 0x73, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x02, 0x52, 0x07, 0x62, 0x65, 0x74, 0x42, 0x61, 0x73, 0x65, 0x22, 0x9f, 0x01, 0x0a, 0x07, 0x53, 0x70, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x62, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x75, 0x6c, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72, 0x75, 0x6c, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x04, 0x6d, 0x75, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x2e, 0x4d, 0x75, 0x6c, 0x73, 0x52, 0x04, 0x6d, 0x75, 0x6c, 0x73, 0x1a, 0x2a, 0x0a, 0x04, 0x4d, 0x75, 0x6c, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x75, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d, 0x75, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x63, 0x22, 0xf1, 0x02, 0x0a, 0x07, 0x53, 0x70, 0x69, 0x6e, 0x52, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x73, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x65, 0x65, 0x53, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x66, 0x72, 0x65, 0x65, 0x53, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x72, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x72, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x03, 0x62, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x4a, 0x61, 0x63, 0x6b, 0x70, 0x6f, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x4a, 0x61, 0x63, 0x6b, 0x70, 0x6f, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x4a, 0x61, 0x63, 0x6b, 0x70, 0x6f, 0x74, 0x49, 0x64, 0x78, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x4a, 0x61, 0x63, 0x6b, 0x70, 0x6f, 0x74, 0x49, 0x64, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x75, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x6d, 0x75, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x66, 0x72, 0x65, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x72, 0x65, 0x65, 0x42, 0x65, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x72, 0x65, 0x65, 0x42, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x57, 0x69, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x57, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6a, 0x73, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6a, 0x73, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x22, 0x50, 0x0a, 0x0a, 0x42, 0x75, 0x79, 0x46, 0x72, 0x65, 0x65, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x62, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x79, 0x42, 0x6f, 0x6e, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x62, 0x75, 0x79, 0x42, 0x6f, 0x6e, 0x75, 0x73, 0x22, 0x50, 0x0a, 0x0a, 0x42, 0x75, 0x79, 0x46, 0x72, 0x65, 0x65, 0x52, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x62, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x79, 0x42, 0x6f, 0x6e, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x62, 0x75, 0x79, 0x42, 0x6f, 0x6e, 0x75, 0x73, 0x22, 0x0a, 0x0a, 0x08, 0x48, 0x65, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x22, 0x44, 0x0a, 0x08, 0x48, 0x65, 0x61, 0x72, 0x74, 0x52, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x24, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x74, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x10, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x46, 0x72, 0x65, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x22, 0x8a, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x46, 0x72, 0x65, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x73, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x62, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xc7, 0x03, 0x0a, 0x0b, 0x53, 0x70, 0x69, 0x6e, 0x4c, 0x6f, 0x67, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x47, 0x61, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x47, 0x61, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x55, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x55, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x42, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x42, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x4d, 0x75, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x4d, 0x75, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x46, 0x72, 0x65, 0x65, 0x4d, 0x75, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x46, 0x72, 0x65, 0x65, 0x4d, 0x75, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x70, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x53, 0x70, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x57, 0x69, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x57, 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x4f, 0x70, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x4f, 0x70, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x4f, 0x70, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4f, 0x70, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x73, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x65, 0x65, 0x53, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x66, 0x72, 0x65, 0x65, 0x53, 0x70, 0x69, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x49, 0x6e, 0x42, 0x65, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x49, 0x6e, 0x42, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x4a, 0x61, 0x63, 0x6b, 0x70, 0x6f, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x4a, 0x61, 0x63, 0x6b, 0x70, 0x6f, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x46, 0x72, 0x65, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x46, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x4d, 0x6f, 0x64, 0x65, 0x22, 0x43, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x64, 0x22, 0x6d, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x72, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x72, 0x72, 0x32, 0xb8, 0x02, 0x0a, 0x04, 0x47, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x74, 0x22, 0x00, 0x12, 0x26, 0x0a, 0x04, 0x53, 0x70, 0x69, 0x6e, 0x12, 0x0d, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x53, 0x70, 0x69, 0x6e, 0x52, 0x65, 0x74, 0x22, 0x00, 0x12, 0x2f, 0x0a, 0x07, 0x42, 0x75, 0x79, 0x46, 0x72, 0x65, 0x65, 0x12, 0x10, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x42, 0x75, 0x79, 0x46, 0x72, 0x65, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x42, 0x75, 0x79, 0x46, 0x72, 0x65, 0x65, 0x52, 0x65, 0x74, 0x22, 0x00, 0x12, 0x29, 0x0a, 0x05, 0x48, 0x65, 0x61, 0x72, 0x74, 0x12, 0x0e, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x48, 0x65, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x48, 0x65, 0x61, 0x72, 0x74, 0x52, 0x65, 0x74, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x46, 0x72, 0x65, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x72, 0x65, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x72, 0x65, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x74, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0c, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x15, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x74, 0x22, 0x00, 0x42, 0x09, 0x5a, 0x07, 0x70, 0x62, 0x2f, 0x73, 0x6c, 0x6f, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_slot_proto_rawDescOnce sync.Once file_slot_proto_rawDescData = file_slot_proto_rawDesc ) func file_slot_proto_rawDescGZIP() []byte { file_slot_proto_rawDescOnce.Do(func() { file_slot_proto_rawDescData = protoimpl.X.CompressGZIP(file_slot_proto_rawDescData) }) return file_slot_proto_rawDescData } var file_slot_proto_msgTypes = make([]protoimpl.MessageInfo, 31) var file_slot_proto_goTypes = []interface{}{ (*SpinStructFreeStartStruct)(nil), // 0: slot.SpinStructFreeStartStruct (*SpinStruct)(nil), // 1: slot.SpinStruct (*GetInfoReq)(nil), // 2: slot.GetInfoReq (*GetInfoRet)(nil), // 3: slot.GetInfoRet (*SpinReq)(nil), // 4: slot.SpinReq (*SpinRet)(nil), // 5: slot.SpinRet (*BuyFreeReq)(nil), // 6: slot.BuyFreeReq (*BuyFreeRet)(nil), // 7: slot.BuyFreeRet (*HeartReq)(nil), // 8: slot.HeartReq (*HeartRet)(nil), // 9: slot.HeartRet (*GetFreeInfoReq)(nil), // 10: slot.GetFreeInfoReq (*GetFreeInfoRet)(nil), // 11: slot.GetFreeInfoRet (*SpinLogData)(nil), // 12: slot.SpinLogData (*PlayerSelectReq)(nil), // 13: slot.PlayerSelectReq (*PlayerSelectRet)(nil), // 14: slot.PlayerSelectRet (*SpinStruct_Spin)(nil), // 15: slot.SpinStruct.Spin (*SpinStruct_Spin_Combo)(nil), // 16: slot.SpinStruct.Spin.Combo (*SpinStruct_Spin_ComboIntLi)(nil), // 17: slot.SpinStruct.Spin.Combo.intLi (*SpinStruct_Spin_ComboFloatLi)(nil), // 18: slot.SpinStruct.Spin.Combo.floatLi (*SpinStruct_Spin_Combo_Matrix)(nil), // 19: slot.SpinStruct.Spin.Combo.Matrix (*SpinStruct_Spin_Combo_Row)(nil), // 20: slot.SpinStruct.Spin.Combo.Row (*SpinStruct_Spin_Combo_Fs)(nil), // 21: slot.SpinStruct.Spin.Combo.Fs nil, // 22: slot.SpinStruct.Spin.Combo.WpEntry nil, // 23: slot.SpinStruct.Spin.Combo.LwEntry nil, // 24: slot.SpinStruct.Spin.Combo.SwEntry nil, // 25: slot.SpinStruct.Spin.Combo.WscEntry nil, // 26: slot.SpinStruct.Spin.Combo.CpEntry nil, // 27: slot.SpinStruct.Spin.Combo.FstcEntry nil, // 28: slot.SpinStruct.Spin.Combo.RwspEntry (*GetInfoRet_BetOptions)(nil), // 29: slot.GetInfoRet.BetOptions (*SpinReq_Muls)(nil), // 30: slot.SpinReq.Muls } var file_slot_proto_depIdxs = []int32{ 15, // 0: slot.SpinStruct.spins:type_name -> slot.SpinStruct.Spin 0, // 1: slot.SpinStruct.freeStart:type_name -> slot.SpinStructFreeStartStruct 29, // 2: slot.GetInfoRet.betOption:type_name -> slot.GetInfoRet.BetOptions 30, // 3: slot.SpinReq.muls:type_name -> slot.SpinReq.Muls 3, // 4: slot.HeartRet.info:type_name -> slot.GetInfoRet 16, // 5: slot.SpinStruct.Spin.Combos:type_name -> slot.SpinStruct.Spin.Combo 22, // 6: slot.SpinStruct.Spin.Combo.wp:type_name -> slot.SpinStruct.Spin.Combo.WpEntry 23, // 7: slot.SpinStruct.Spin.Combo.lw:type_name -> slot.SpinStruct.Spin.Combo.LwEntry 24, // 8: slot.SpinStruct.Spin.Combo.sw:type_name -> slot.SpinStruct.Spin.Combo.SwEntry 25, // 9: slot.SpinStruct.Spin.Combo.wsc:type_name -> slot.SpinStruct.Spin.Combo.WscEntry 17, // 10: slot.SpinStruct.Spin.Combo.wpl:type_name -> slot.SpinStruct.Spin.Combo.intLi 17, // 11: slot.SpinStruct.Spin.Combo.orl:type_name -> slot.SpinStruct.Spin.Combo.intLi 17, // 12: slot.SpinStruct.Spin.Combo.rl:type_name -> slot.SpinStruct.Spin.Combo.intLi 19, // 13: slot.SpinStruct.Spin.Combo.rns:type_name -> slot.SpinStruct.Spin.Combo.Matrix 17, // 14: slot.SpinStruct.Spin.Combo.gsp:type_name -> slot.SpinStruct.Spin.Combo.intLi 19, // 15: slot.SpinStruct.Spin.Combo.cgsp:type_name -> slot.SpinStruct.Spin.Combo.Matrix 17, // 16: slot.SpinStruct.Spin.Combo.ngsp:type_name -> slot.SpinStruct.Spin.Combo.intLi 17, // 17: slot.SpinStruct.Spin.Combo.wgsp:type_name -> slot.SpinStruct.Spin.Combo.intLi 19, // 18: slot.SpinStruct.Spin.Combo.cwsp:type_name -> slot.SpinStruct.Spin.Combo.Matrix 19, // 19: slot.SpinStruct.Spin.Combo.gpps:type_name -> slot.SpinStruct.Spin.Combo.Matrix 17, // 20: slot.SpinStruct.Spin.Combo.ptbr:type_name -> slot.SpinStruct.Spin.Combo.intLi 26, // 21: slot.SpinStruct.Spin.Combo.cp:type_name -> slot.SpinStruct.Spin.Combo.CpEntry 21, // 22: slot.SpinStruct.Spin.Combo.fs:type_name -> slot.SpinStruct.Spin.Combo.Fs 27, // 23: slot.SpinStruct.Spin.Combo.fstc:type_name -> slot.SpinStruct.Spin.Combo.FstcEntry 28, // 24: slot.SpinStruct.Spin.Combo.rwsp:type_name -> slot.SpinStruct.Spin.Combo.RwspEntry 20, // 25: slot.SpinStruct.Spin.Combo.Matrix.rows:type_name -> slot.SpinStruct.Spin.Combo.Row 19, // 26: slot.SpinStruct.Spin.Combo.WpEntry.value:type_name -> slot.SpinStruct.Spin.Combo.Matrix 17, // 27: slot.SpinStruct.Spin.Combo.SwEntry.value:type_name -> slot.SpinStruct.Spin.Combo.intLi 19, // 28: slot.SpinStruct.Spin.Combo.CpEntry.value:type_name -> slot.SpinStruct.Spin.Combo.Matrix 18, // 29: slot.SpinStruct.Spin.Combo.RwspEntry.value:type_name -> slot.SpinStruct.Spin.Combo.floatLi 2, // 30: slot.Game.GetInfo:input_type -> slot.GetInfoReq 4, // 31: slot.Game.Spin:input_type -> slot.SpinReq 6, // 32: slot.Game.BuyFree:input_type -> slot.BuyFreeReq 8, // 33: slot.Game.Heart:input_type -> slot.HeartReq 10, // 34: slot.Game.GetFreeInfo:input_type -> slot.GetFreeInfoReq 13, // 35: slot.Game.PlayerSelect:input_type -> slot.PlayerSelectReq 3, // 36: slot.Game.GetInfo:output_type -> slot.GetInfoRet 5, // 37: slot.Game.Spin:output_type -> slot.SpinRet 7, // 38: slot.Game.BuyFree:output_type -> slot.BuyFreeRet 9, // 39: slot.Game.Heart:output_type -> slot.HeartRet 11, // 40: slot.Game.GetFreeInfo:output_type -> slot.GetFreeInfoRet 14, // 41: slot.Game.PlayerSelect:output_type -> slot.PlayerSelectRet 36, // [36:42] is the sub-list for method output_type 30, // [30:36] is the sub-list for method input_type 30, // [30:30] is the sub-list for extension type_name 30, // [30:30] is the sub-list for extension extendee 0, // [0:30] is the sub-list for field type_name } func init() { file_slot_proto_init() } func file_slot_proto_init() { if File_slot_proto != nil { return } if !protoimpl.UnsafeEnabled { file_slot_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStructFreeStartStruct); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetInfoReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetInfoRet); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinRet); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BuyFreeReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BuyFreeRet); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HeartReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HeartRet); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetFreeInfoReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetFreeInfoRet); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinLogData); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PlayerSelectReq); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PlayerSelectRet); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct_Spin); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct_Spin_Combo); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct_Spin_ComboIntLi); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct_Spin_ComboFloatLi); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct_Spin_Combo_Matrix); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct_Spin_Combo_Row); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinStruct_Spin_Combo_Fs); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetInfoRet_BetOptions); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_slot_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SpinReq_Muls); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_slot_proto_rawDesc, NumEnums: 0, NumMessages: 31, NumExtensions: 0, NumServices: 1, }, GoTypes: file_slot_proto_goTypes, DependencyIndexes: file_slot_proto_depIdxs, MessageInfos: file_slot_proto_msgTypes, }.Build() File_slot_proto = out.File file_slot_proto_rawDesc = nil file_slot_proto_goTypes = nil file_slot_proto_depIdxs = nil }