ticket.pb.go 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: app/service/openplatform/ticket-item/api/grpc/v1/ticket.proto
  3. package v1
  4. import proto "github.com/gogo/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "github.com/gogo/protobuf/gogoproto"
  8. import io "io"
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // The response message containing the TicketInfo
  14. type TicketInfo struct {
  15. ID int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id" validate:"min=1"`
  16. Desc string `protobuf:"bytes,2,opt,name=desc,proto3" json:"name"`
  17. // 票类型:1-单场票 2-通票 3-联票
  18. Type int32 `protobuf:"varint,3,opt,name=type,proto3" json:"type" validate:"min=0"`
  19. // 售卖类型 1-预售票 2-现场票
  20. SaleType int32 `protobuf:"varint,4,opt,name=sale_type,json=saleType,proto3" json:"stype" validate:"min=0"`
  21. LinkSc string `protobuf:"bytes,5,opt,name=link_sc,json=linkSc,proto3" json:"lk_screen"`
  22. LinkTicketID string `protobuf:"bytes,6,opt,name=link_ticket_id,json=linkTicketId,proto3" json:"lk_ticket"`
  23. Symbol string `protobuf:"bytes,7,opt,name=symbol,proto3" json:"symbol"`
  24. Color string `protobuf:"bytes,8,opt,name=color,proto3" json:"color"`
  25. BuyLimit int32 `protobuf:"varint,9,opt,name=buy_limit,json=buyLimit,proto3" json:"buy_limit" validate:"min=0"`
  26. DescDetail string `protobuf:"bytes,10,opt,name=desc_detail,json=descDetail,proto3" json:"desc"`
  27. SaleFlag int32 `protobuf:"varint,11,opt,name=sale_flag,json=saleFlag,proto3" json:"sale_flag" validate:"min=0"`
  28. PriceList *TicketPriceList `protobuf:"bytes,12,opt,name=price_list,json=priceList" json:"price"`
  29. StatusList *TicketStatus `protobuf:"bytes,13,opt,name=status_list,json=statusList" json:"status"`
  30. Time *TicketTime `protobuf:"bytes,14,opt,name=time" json:"time"`
  31. BuyNumLimit *TicketBuyNumLimit `protobuf:"bytes,15,opt,name=buy_num_limit,json=buyNumLimit" json:"buy_num_limit"`
  32. }
  33. func (m *TicketInfo) Reset() { *m = TicketInfo{} }
  34. func (m *TicketInfo) String() string { return proto.CompactTextString(m) }
  35. func (*TicketInfo) ProtoMessage() {}
  36. func (*TicketInfo) Descriptor() ([]byte, []int) { return fileDescriptorTicket, []int{0} }
  37. func (m *TicketInfo) GetID() int64 {
  38. if m != nil {
  39. return m.ID
  40. }
  41. return 0
  42. }
  43. func (m *TicketInfo) GetDesc() string {
  44. if m != nil {
  45. return m.Desc
  46. }
  47. return ""
  48. }
  49. func (m *TicketInfo) GetType() int32 {
  50. if m != nil {
  51. return m.Type
  52. }
  53. return 0
  54. }
  55. func (m *TicketInfo) GetSaleType() int32 {
  56. if m != nil {
  57. return m.SaleType
  58. }
  59. return 0
  60. }
  61. func (m *TicketInfo) GetLinkSc() string {
  62. if m != nil {
  63. return m.LinkSc
  64. }
  65. return ""
  66. }
  67. func (m *TicketInfo) GetLinkTicketID() string {
  68. if m != nil {
  69. return m.LinkTicketID
  70. }
  71. return ""
  72. }
  73. func (m *TicketInfo) GetSymbol() string {
  74. if m != nil {
  75. return m.Symbol
  76. }
  77. return ""
  78. }
  79. func (m *TicketInfo) GetColor() string {
  80. if m != nil {
  81. return m.Color
  82. }
  83. return ""
  84. }
  85. func (m *TicketInfo) GetBuyLimit() int32 {
  86. if m != nil {
  87. return m.BuyLimit
  88. }
  89. return 0
  90. }
  91. func (m *TicketInfo) GetDescDetail() string {
  92. if m != nil {
  93. return m.DescDetail
  94. }
  95. return ""
  96. }
  97. func (m *TicketInfo) GetSaleFlag() int32 {
  98. if m != nil {
  99. return m.SaleFlag
  100. }
  101. return 0
  102. }
  103. func (m *TicketInfo) GetPriceList() *TicketPriceList {
  104. if m != nil {
  105. return m.PriceList
  106. }
  107. return nil
  108. }
  109. func (m *TicketInfo) GetStatusList() *TicketStatus {
  110. if m != nil {
  111. return m.StatusList
  112. }
  113. return nil
  114. }
  115. func (m *TicketInfo) GetTime() *TicketTime {
  116. if m != nil {
  117. return m.Time
  118. }
  119. return nil
  120. }
  121. func (m *TicketInfo) GetBuyNumLimit() *TicketBuyNumLimit {
  122. if m != nil {
  123. return m.BuyNumLimit
  124. }
  125. return nil
  126. }
  127. type TicketBuyNumLimit struct {
  128. Normal map[int32]int64 `protobuf:"bytes,1,rep,name=normal" json:"normal" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  129. Vip map[int32]int64 `protobuf:"bytes,2,rep,name=vip" json:"vip" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  130. AnnualVip map[int32]int64 `protobuf:"bytes,3,rep,name=annual_vip,json=annualVip" json:"annual_vip" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  131. }
  132. func (m *TicketBuyNumLimit) Reset() { *m = TicketBuyNumLimit{} }
  133. func (m *TicketBuyNumLimit) String() string { return proto.CompactTextString(m) }
  134. func (*TicketBuyNumLimit) ProtoMessage() {}
  135. func (*TicketBuyNumLimit) Descriptor() ([]byte, []int) { return fileDescriptorTicket, []int{1} }
  136. func (m *TicketBuyNumLimit) GetNormal() map[int32]int64 {
  137. if m != nil {
  138. return m.Normal
  139. }
  140. return nil
  141. }
  142. func (m *TicketBuyNumLimit) GetVip() map[int32]int64 {
  143. if m != nil {
  144. return m.Vip
  145. }
  146. return nil
  147. }
  148. func (m *TicketBuyNumLimit) GetAnnualVip() map[int32]int64 {
  149. if m != nil {
  150. return m.AnnualVip
  151. }
  152. return nil
  153. }
  154. // The response message containing the IsSale IsVisible IsRefund
  155. type TicketStatus struct {
  156. IsSale int32 `protobuf:"varint,1,opt,name=is_sale,json=isSale,proto3" json:"is_sale" validate:"min=0"`
  157. IsVisible int32 `protobuf:"varint,2,opt,name=is_visible,json=isVisible,proto3" json:"is_visible" validate:"min=0"`
  158. IsRefund int32 `protobuf:"varint,3,opt,name=is_refund,json=isRefund,proto3" json:"is_refund" validate:"min=0"`
  159. }
  160. func (m *TicketStatus) Reset() { *m = TicketStatus{} }
  161. func (m *TicketStatus) String() string { return proto.CompactTextString(m) }
  162. func (*TicketStatus) ProtoMessage() {}
  163. func (*TicketStatus) Descriptor() ([]byte, []int) { return fileDescriptorTicket, []int{2} }
  164. func (m *TicketStatus) GetIsSale() int32 {
  165. if m != nil {
  166. return m.IsSale
  167. }
  168. return 0
  169. }
  170. func (m *TicketStatus) GetIsVisible() int32 {
  171. if m != nil {
  172. return m.IsVisible
  173. }
  174. return 0
  175. }
  176. func (m *TicketStatus) GetIsRefund() int32 {
  177. if m != nil {
  178. return m.IsRefund
  179. }
  180. return 0
  181. }
  182. // The response message containing the Price OriginPrice MarketPrice
  183. type TicketPriceList struct {
  184. Price int32 `protobuf:"varint,1,opt,name=price,proto3" json:"price" validate:"min=0"`
  185. OriPrice int32 `protobuf:"varint,2,opt,name=ori_price,json=oriPrice,proto3" json:"oprice" validate:"min=0"`
  186. MktPrice int32 `protobuf:"varint,3,opt,name=mkt_price,json=mktPrice,proto3" json:"mprice" validate:"min=0"`
  187. }
  188. func (m *TicketPriceList) Reset() { *m = TicketPriceList{} }
  189. func (m *TicketPriceList) String() string { return proto.CompactTextString(m) }
  190. func (*TicketPriceList) ProtoMessage() {}
  191. func (*TicketPriceList) Descriptor() ([]byte, []int) { return fileDescriptorTicket, []int{3} }
  192. func (m *TicketPriceList) GetPrice() int32 {
  193. if m != nil {
  194. return m.Price
  195. }
  196. return 0
  197. }
  198. func (m *TicketPriceList) GetOriPrice() int32 {
  199. if m != nil {
  200. return m.OriPrice
  201. }
  202. return 0
  203. }
  204. func (m *TicketPriceList) GetMktPrice() int32 {
  205. if m != nil {
  206. return m.MktPrice
  207. }
  208. return 0
  209. }
  210. func init() {
  211. proto.RegisterType((*TicketInfo)(nil), "ticket.service.item.v1.TicketInfo")
  212. proto.RegisterType((*TicketBuyNumLimit)(nil), "ticket.service.item.v1.TicketBuyNumLimit")
  213. proto.RegisterType((*TicketStatus)(nil), "ticket.service.item.v1.TicketStatus")
  214. proto.RegisterType((*TicketPriceList)(nil), "ticket.service.item.v1.TicketPriceList")
  215. }
  216. func (m *TicketInfo) Marshal() (dAtA []byte, err error) {
  217. size := m.Size()
  218. dAtA = make([]byte, size)
  219. n, err := m.MarshalTo(dAtA)
  220. if err != nil {
  221. return nil, err
  222. }
  223. return dAtA[:n], nil
  224. }
  225. func (m *TicketInfo) MarshalTo(dAtA []byte) (int, error) {
  226. var i int
  227. _ = i
  228. var l int
  229. _ = l
  230. if m.ID != 0 {
  231. dAtA[i] = 0x8
  232. i++
  233. i = encodeVarintTicket(dAtA, i, uint64(m.ID))
  234. }
  235. if len(m.Desc) > 0 {
  236. dAtA[i] = 0x12
  237. i++
  238. i = encodeVarintTicket(dAtA, i, uint64(len(m.Desc)))
  239. i += copy(dAtA[i:], m.Desc)
  240. }
  241. if m.Type != 0 {
  242. dAtA[i] = 0x18
  243. i++
  244. i = encodeVarintTicket(dAtA, i, uint64(m.Type))
  245. }
  246. if m.SaleType != 0 {
  247. dAtA[i] = 0x20
  248. i++
  249. i = encodeVarintTicket(dAtA, i, uint64(m.SaleType))
  250. }
  251. if len(m.LinkSc) > 0 {
  252. dAtA[i] = 0x2a
  253. i++
  254. i = encodeVarintTicket(dAtA, i, uint64(len(m.LinkSc)))
  255. i += copy(dAtA[i:], m.LinkSc)
  256. }
  257. if len(m.LinkTicketID) > 0 {
  258. dAtA[i] = 0x32
  259. i++
  260. i = encodeVarintTicket(dAtA, i, uint64(len(m.LinkTicketID)))
  261. i += copy(dAtA[i:], m.LinkTicketID)
  262. }
  263. if len(m.Symbol) > 0 {
  264. dAtA[i] = 0x3a
  265. i++
  266. i = encodeVarintTicket(dAtA, i, uint64(len(m.Symbol)))
  267. i += copy(dAtA[i:], m.Symbol)
  268. }
  269. if len(m.Color) > 0 {
  270. dAtA[i] = 0x42
  271. i++
  272. i = encodeVarintTicket(dAtA, i, uint64(len(m.Color)))
  273. i += copy(dAtA[i:], m.Color)
  274. }
  275. if m.BuyLimit != 0 {
  276. dAtA[i] = 0x48
  277. i++
  278. i = encodeVarintTicket(dAtA, i, uint64(m.BuyLimit))
  279. }
  280. if len(m.DescDetail) > 0 {
  281. dAtA[i] = 0x52
  282. i++
  283. i = encodeVarintTicket(dAtA, i, uint64(len(m.DescDetail)))
  284. i += copy(dAtA[i:], m.DescDetail)
  285. }
  286. if m.SaleFlag != 0 {
  287. dAtA[i] = 0x58
  288. i++
  289. i = encodeVarintTicket(dAtA, i, uint64(m.SaleFlag))
  290. }
  291. if m.PriceList != nil {
  292. dAtA[i] = 0x62
  293. i++
  294. i = encodeVarintTicket(dAtA, i, uint64(m.PriceList.Size()))
  295. n1, err := m.PriceList.MarshalTo(dAtA[i:])
  296. if err != nil {
  297. return 0, err
  298. }
  299. i += n1
  300. }
  301. if m.StatusList != nil {
  302. dAtA[i] = 0x6a
  303. i++
  304. i = encodeVarintTicket(dAtA, i, uint64(m.StatusList.Size()))
  305. n2, err := m.StatusList.MarshalTo(dAtA[i:])
  306. if err != nil {
  307. return 0, err
  308. }
  309. i += n2
  310. }
  311. if m.Time != nil {
  312. dAtA[i] = 0x72
  313. i++
  314. i = encodeVarintTicket(dAtA, i, uint64(m.Time.Size()))
  315. n3, err := m.Time.MarshalTo(dAtA[i:])
  316. if err != nil {
  317. return 0, err
  318. }
  319. i += n3
  320. }
  321. if m.BuyNumLimit != nil {
  322. dAtA[i] = 0x7a
  323. i++
  324. i = encodeVarintTicket(dAtA, i, uint64(m.BuyNumLimit.Size()))
  325. n4, err := m.BuyNumLimit.MarshalTo(dAtA[i:])
  326. if err != nil {
  327. return 0, err
  328. }
  329. i += n4
  330. }
  331. return i, nil
  332. }
  333. func (m *TicketBuyNumLimit) Marshal() (dAtA []byte, err error) {
  334. size := m.Size()
  335. dAtA = make([]byte, size)
  336. n, err := m.MarshalTo(dAtA)
  337. if err != nil {
  338. return nil, err
  339. }
  340. return dAtA[:n], nil
  341. }
  342. func (m *TicketBuyNumLimit) MarshalTo(dAtA []byte) (int, error) {
  343. var i int
  344. _ = i
  345. var l int
  346. _ = l
  347. if len(m.Normal) > 0 {
  348. for k, _ := range m.Normal {
  349. dAtA[i] = 0xa
  350. i++
  351. v := m.Normal[k]
  352. mapSize := 1 + sovTicket(uint64(k)) + 1 + sovTicket(uint64(v))
  353. i = encodeVarintTicket(dAtA, i, uint64(mapSize))
  354. dAtA[i] = 0x8
  355. i++
  356. i = encodeVarintTicket(dAtA, i, uint64(k))
  357. dAtA[i] = 0x10
  358. i++
  359. i = encodeVarintTicket(dAtA, i, uint64(v))
  360. }
  361. }
  362. if len(m.Vip) > 0 {
  363. for k, _ := range m.Vip {
  364. dAtA[i] = 0x12
  365. i++
  366. v := m.Vip[k]
  367. mapSize := 1 + sovTicket(uint64(k)) + 1 + sovTicket(uint64(v))
  368. i = encodeVarintTicket(dAtA, i, uint64(mapSize))
  369. dAtA[i] = 0x8
  370. i++
  371. i = encodeVarintTicket(dAtA, i, uint64(k))
  372. dAtA[i] = 0x10
  373. i++
  374. i = encodeVarintTicket(dAtA, i, uint64(v))
  375. }
  376. }
  377. if len(m.AnnualVip) > 0 {
  378. for k, _ := range m.AnnualVip {
  379. dAtA[i] = 0x1a
  380. i++
  381. v := m.AnnualVip[k]
  382. mapSize := 1 + sovTicket(uint64(k)) + 1 + sovTicket(uint64(v))
  383. i = encodeVarintTicket(dAtA, i, uint64(mapSize))
  384. dAtA[i] = 0x8
  385. i++
  386. i = encodeVarintTicket(dAtA, i, uint64(k))
  387. dAtA[i] = 0x10
  388. i++
  389. i = encodeVarintTicket(dAtA, i, uint64(v))
  390. }
  391. }
  392. return i, nil
  393. }
  394. func (m *TicketStatus) Marshal() (dAtA []byte, err error) {
  395. size := m.Size()
  396. dAtA = make([]byte, size)
  397. n, err := m.MarshalTo(dAtA)
  398. if err != nil {
  399. return nil, err
  400. }
  401. return dAtA[:n], nil
  402. }
  403. func (m *TicketStatus) MarshalTo(dAtA []byte) (int, error) {
  404. var i int
  405. _ = i
  406. var l int
  407. _ = l
  408. if m.IsSale != 0 {
  409. dAtA[i] = 0x8
  410. i++
  411. i = encodeVarintTicket(dAtA, i, uint64(m.IsSale))
  412. }
  413. if m.IsVisible != 0 {
  414. dAtA[i] = 0x10
  415. i++
  416. i = encodeVarintTicket(dAtA, i, uint64(m.IsVisible))
  417. }
  418. if m.IsRefund != 0 {
  419. dAtA[i] = 0x18
  420. i++
  421. i = encodeVarintTicket(dAtA, i, uint64(m.IsRefund))
  422. }
  423. return i, nil
  424. }
  425. func (m *TicketPriceList) Marshal() (dAtA []byte, err error) {
  426. size := m.Size()
  427. dAtA = make([]byte, size)
  428. n, err := m.MarshalTo(dAtA)
  429. if err != nil {
  430. return nil, err
  431. }
  432. return dAtA[:n], nil
  433. }
  434. func (m *TicketPriceList) MarshalTo(dAtA []byte) (int, error) {
  435. var i int
  436. _ = i
  437. var l int
  438. _ = l
  439. if m.Price != 0 {
  440. dAtA[i] = 0x8
  441. i++
  442. i = encodeVarintTicket(dAtA, i, uint64(m.Price))
  443. }
  444. if m.OriPrice != 0 {
  445. dAtA[i] = 0x10
  446. i++
  447. i = encodeVarintTicket(dAtA, i, uint64(m.OriPrice))
  448. }
  449. if m.MktPrice != 0 {
  450. dAtA[i] = 0x18
  451. i++
  452. i = encodeVarintTicket(dAtA, i, uint64(m.MktPrice))
  453. }
  454. return i, nil
  455. }
  456. func encodeVarintTicket(dAtA []byte, offset int, v uint64) int {
  457. for v >= 1<<7 {
  458. dAtA[offset] = uint8(v&0x7f | 0x80)
  459. v >>= 7
  460. offset++
  461. }
  462. dAtA[offset] = uint8(v)
  463. return offset + 1
  464. }
  465. func (m *TicketInfo) Size() (n int) {
  466. var l int
  467. _ = l
  468. if m.ID != 0 {
  469. n += 1 + sovTicket(uint64(m.ID))
  470. }
  471. l = len(m.Desc)
  472. if l > 0 {
  473. n += 1 + l + sovTicket(uint64(l))
  474. }
  475. if m.Type != 0 {
  476. n += 1 + sovTicket(uint64(m.Type))
  477. }
  478. if m.SaleType != 0 {
  479. n += 1 + sovTicket(uint64(m.SaleType))
  480. }
  481. l = len(m.LinkSc)
  482. if l > 0 {
  483. n += 1 + l + sovTicket(uint64(l))
  484. }
  485. l = len(m.LinkTicketID)
  486. if l > 0 {
  487. n += 1 + l + sovTicket(uint64(l))
  488. }
  489. l = len(m.Symbol)
  490. if l > 0 {
  491. n += 1 + l + sovTicket(uint64(l))
  492. }
  493. l = len(m.Color)
  494. if l > 0 {
  495. n += 1 + l + sovTicket(uint64(l))
  496. }
  497. if m.BuyLimit != 0 {
  498. n += 1 + sovTicket(uint64(m.BuyLimit))
  499. }
  500. l = len(m.DescDetail)
  501. if l > 0 {
  502. n += 1 + l + sovTicket(uint64(l))
  503. }
  504. if m.SaleFlag != 0 {
  505. n += 1 + sovTicket(uint64(m.SaleFlag))
  506. }
  507. if m.PriceList != nil {
  508. l = m.PriceList.Size()
  509. n += 1 + l + sovTicket(uint64(l))
  510. }
  511. if m.StatusList != nil {
  512. l = m.StatusList.Size()
  513. n += 1 + l + sovTicket(uint64(l))
  514. }
  515. if m.Time != nil {
  516. l = m.Time.Size()
  517. n += 1 + l + sovTicket(uint64(l))
  518. }
  519. if m.BuyNumLimit != nil {
  520. l = m.BuyNumLimit.Size()
  521. n += 1 + l + sovTicket(uint64(l))
  522. }
  523. return n
  524. }
  525. func (m *TicketBuyNumLimit) Size() (n int) {
  526. var l int
  527. _ = l
  528. if len(m.Normal) > 0 {
  529. for k, v := range m.Normal {
  530. _ = k
  531. _ = v
  532. mapEntrySize := 1 + sovTicket(uint64(k)) + 1 + sovTicket(uint64(v))
  533. n += mapEntrySize + 1 + sovTicket(uint64(mapEntrySize))
  534. }
  535. }
  536. if len(m.Vip) > 0 {
  537. for k, v := range m.Vip {
  538. _ = k
  539. _ = v
  540. mapEntrySize := 1 + sovTicket(uint64(k)) + 1 + sovTicket(uint64(v))
  541. n += mapEntrySize + 1 + sovTicket(uint64(mapEntrySize))
  542. }
  543. }
  544. if len(m.AnnualVip) > 0 {
  545. for k, v := range m.AnnualVip {
  546. _ = k
  547. _ = v
  548. mapEntrySize := 1 + sovTicket(uint64(k)) + 1 + sovTicket(uint64(v))
  549. n += mapEntrySize + 1 + sovTicket(uint64(mapEntrySize))
  550. }
  551. }
  552. return n
  553. }
  554. func (m *TicketStatus) Size() (n int) {
  555. var l int
  556. _ = l
  557. if m.IsSale != 0 {
  558. n += 1 + sovTicket(uint64(m.IsSale))
  559. }
  560. if m.IsVisible != 0 {
  561. n += 1 + sovTicket(uint64(m.IsVisible))
  562. }
  563. if m.IsRefund != 0 {
  564. n += 1 + sovTicket(uint64(m.IsRefund))
  565. }
  566. return n
  567. }
  568. func (m *TicketPriceList) Size() (n int) {
  569. var l int
  570. _ = l
  571. if m.Price != 0 {
  572. n += 1 + sovTicket(uint64(m.Price))
  573. }
  574. if m.OriPrice != 0 {
  575. n += 1 + sovTicket(uint64(m.OriPrice))
  576. }
  577. if m.MktPrice != 0 {
  578. n += 1 + sovTicket(uint64(m.MktPrice))
  579. }
  580. return n
  581. }
  582. func sovTicket(x uint64) (n int) {
  583. for {
  584. n++
  585. x >>= 7
  586. if x == 0 {
  587. break
  588. }
  589. }
  590. return n
  591. }
  592. func sozTicket(x uint64) (n int) {
  593. return sovTicket(uint64((x << 1) ^ uint64((int64(x) >> 63))))
  594. }
  595. func (m *TicketInfo) Unmarshal(dAtA []byte) error {
  596. l := len(dAtA)
  597. iNdEx := 0
  598. for iNdEx < l {
  599. preIndex := iNdEx
  600. var wire uint64
  601. for shift := uint(0); ; shift += 7 {
  602. if shift >= 64 {
  603. return ErrIntOverflowTicket
  604. }
  605. if iNdEx >= l {
  606. return io.ErrUnexpectedEOF
  607. }
  608. b := dAtA[iNdEx]
  609. iNdEx++
  610. wire |= (uint64(b) & 0x7F) << shift
  611. if b < 0x80 {
  612. break
  613. }
  614. }
  615. fieldNum := int32(wire >> 3)
  616. wireType := int(wire & 0x7)
  617. if wireType == 4 {
  618. return fmt.Errorf("proto: TicketInfo: wiretype end group for non-group")
  619. }
  620. if fieldNum <= 0 {
  621. return fmt.Errorf("proto: TicketInfo: illegal tag %d (wire type %d)", fieldNum, wire)
  622. }
  623. switch fieldNum {
  624. case 1:
  625. if wireType != 0 {
  626. return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
  627. }
  628. m.ID = 0
  629. for shift := uint(0); ; shift += 7 {
  630. if shift >= 64 {
  631. return ErrIntOverflowTicket
  632. }
  633. if iNdEx >= l {
  634. return io.ErrUnexpectedEOF
  635. }
  636. b := dAtA[iNdEx]
  637. iNdEx++
  638. m.ID |= (int64(b) & 0x7F) << shift
  639. if b < 0x80 {
  640. break
  641. }
  642. }
  643. case 2:
  644. if wireType != 2 {
  645. return fmt.Errorf("proto: wrong wireType = %d for field Desc", wireType)
  646. }
  647. var stringLen uint64
  648. for shift := uint(0); ; shift += 7 {
  649. if shift >= 64 {
  650. return ErrIntOverflowTicket
  651. }
  652. if iNdEx >= l {
  653. return io.ErrUnexpectedEOF
  654. }
  655. b := dAtA[iNdEx]
  656. iNdEx++
  657. stringLen |= (uint64(b) & 0x7F) << shift
  658. if b < 0x80 {
  659. break
  660. }
  661. }
  662. intStringLen := int(stringLen)
  663. if intStringLen < 0 {
  664. return ErrInvalidLengthTicket
  665. }
  666. postIndex := iNdEx + intStringLen
  667. if postIndex > l {
  668. return io.ErrUnexpectedEOF
  669. }
  670. m.Desc = string(dAtA[iNdEx:postIndex])
  671. iNdEx = postIndex
  672. case 3:
  673. if wireType != 0 {
  674. return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
  675. }
  676. m.Type = 0
  677. for shift := uint(0); ; shift += 7 {
  678. if shift >= 64 {
  679. return ErrIntOverflowTicket
  680. }
  681. if iNdEx >= l {
  682. return io.ErrUnexpectedEOF
  683. }
  684. b := dAtA[iNdEx]
  685. iNdEx++
  686. m.Type |= (int32(b) & 0x7F) << shift
  687. if b < 0x80 {
  688. break
  689. }
  690. }
  691. case 4:
  692. if wireType != 0 {
  693. return fmt.Errorf("proto: wrong wireType = %d for field SaleType", wireType)
  694. }
  695. m.SaleType = 0
  696. for shift := uint(0); ; shift += 7 {
  697. if shift >= 64 {
  698. return ErrIntOverflowTicket
  699. }
  700. if iNdEx >= l {
  701. return io.ErrUnexpectedEOF
  702. }
  703. b := dAtA[iNdEx]
  704. iNdEx++
  705. m.SaleType |= (int32(b) & 0x7F) << shift
  706. if b < 0x80 {
  707. break
  708. }
  709. }
  710. case 5:
  711. if wireType != 2 {
  712. return fmt.Errorf("proto: wrong wireType = %d for field LinkSc", wireType)
  713. }
  714. var stringLen uint64
  715. for shift := uint(0); ; shift += 7 {
  716. if shift >= 64 {
  717. return ErrIntOverflowTicket
  718. }
  719. if iNdEx >= l {
  720. return io.ErrUnexpectedEOF
  721. }
  722. b := dAtA[iNdEx]
  723. iNdEx++
  724. stringLen |= (uint64(b) & 0x7F) << shift
  725. if b < 0x80 {
  726. break
  727. }
  728. }
  729. intStringLen := int(stringLen)
  730. if intStringLen < 0 {
  731. return ErrInvalidLengthTicket
  732. }
  733. postIndex := iNdEx + intStringLen
  734. if postIndex > l {
  735. return io.ErrUnexpectedEOF
  736. }
  737. m.LinkSc = string(dAtA[iNdEx:postIndex])
  738. iNdEx = postIndex
  739. case 6:
  740. if wireType != 2 {
  741. return fmt.Errorf("proto: wrong wireType = %d for field LinkTicketID", wireType)
  742. }
  743. var stringLen uint64
  744. for shift := uint(0); ; shift += 7 {
  745. if shift >= 64 {
  746. return ErrIntOverflowTicket
  747. }
  748. if iNdEx >= l {
  749. return io.ErrUnexpectedEOF
  750. }
  751. b := dAtA[iNdEx]
  752. iNdEx++
  753. stringLen |= (uint64(b) & 0x7F) << shift
  754. if b < 0x80 {
  755. break
  756. }
  757. }
  758. intStringLen := int(stringLen)
  759. if intStringLen < 0 {
  760. return ErrInvalidLengthTicket
  761. }
  762. postIndex := iNdEx + intStringLen
  763. if postIndex > l {
  764. return io.ErrUnexpectedEOF
  765. }
  766. m.LinkTicketID = string(dAtA[iNdEx:postIndex])
  767. iNdEx = postIndex
  768. case 7:
  769. if wireType != 2 {
  770. return fmt.Errorf("proto: wrong wireType = %d for field Symbol", wireType)
  771. }
  772. var stringLen uint64
  773. for shift := uint(0); ; shift += 7 {
  774. if shift >= 64 {
  775. return ErrIntOverflowTicket
  776. }
  777. if iNdEx >= l {
  778. return io.ErrUnexpectedEOF
  779. }
  780. b := dAtA[iNdEx]
  781. iNdEx++
  782. stringLen |= (uint64(b) & 0x7F) << shift
  783. if b < 0x80 {
  784. break
  785. }
  786. }
  787. intStringLen := int(stringLen)
  788. if intStringLen < 0 {
  789. return ErrInvalidLengthTicket
  790. }
  791. postIndex := iNdEx + intStringLen
  792. if postIndex > l {
  793. return io.ErrUnexpectedEOF
  794. }
  795. m.Symbol = string(dAtA[iNdEx:postIndex])
  796. iNdEx = postIndex
  797. case 8:
  798. if wireType != 2 {
  799. return fmt.Errorf("proto: wrong wireType = %d for field Color", wireType)
  800. }
  801. var stringLen uint64
  802. for shift := uint(0); ; shift += 7 {
  803. if shift >= 64 {
  804. return ErrIntOverflowTicket
  805. }
  806. if iNdEx >= l {
  807. return io.ErrUnexpectedEOF
  808. }
  809. b := dAtA[iNdEx]
  810. iNdEx++
  811. stringLen |= (uint64(b) & 0x7F) << shift
  812. if b < 0x80 {
  813. break
  814. }
  815. }
  816. intStringLen := int(stringLen)
  817. if intStringLen < 0 {
  818. return ErrInvalidLengthTicket
  819. }
  820. postIndex := iNdEx + intStringLen
  821. if postIndex > l {
  822. return io.ErrUnexpectedEOF
  823. }
  824. m.Color = string(dAtA[iNdEx:postIndex])
  825. iNdEx = postIndex
  826. case 9:
  827. if wireType != 0 {
  828. return fmt.Errorf("proto: wrong wireType = %d for field BuyLimit", wireType)
  829. }
  830. m.BuyLimit = 0
  831. for shift := uint(0); ; shift += 7 {
  832. if shift >= 64 {
  833. return ErrIntOverflowTicket
  834. }
  835. if iNdEx >= l {
  836. return io.ErrUnexpectedEOF
  837. }
  838. b := dAtA[iNdEx]
  839. iNdEx++
  840. m.BuyLimit |= (int32(b) & 0x7F) << shift
  841. if b < 0x80 {
  842. break
  843. }
  844. }
  845. case 10:
  846. if wireType != 2 {
  847. return fmt.Errorf("proto: wrong wireType = %d for field DescDetail", wireType)
  848. }
  849. var stringLen uint64
  850. for shift := uint(0); ; shift += 7 {
  851. if shift >= 64 {
  852. return ErrIntOverflowTicket
  853. }
  854. if iNdEx >= l {
  855. return io.ErrUnexpectedEOF
  856. }
  857. b := dAtA[iNdEx]
  858. iNdEx++
  859. stringLen |= (uint64(b) & 0x7F) << shift
  860. if b < 0x80 {
  861. break
  862. }
  863. }
  864. intStringLen := int(stringLen)
  865. if intStringLen < 0 {
  866. return ErrInvalidLengthTicket
  867. }
  868. postIndex := iNdEx + intStringLen
  869. if postIndex > l {
  870. return io.ErrUnexpectedEOF
  871. }
  872. m.DescDetail = string(dAtA[iNdEx:postIndex])
  873. iNdEx = postIndex
  874. case 11:
  875. if wireType != 0 {
  876. return fmt.Errorf("proto: wrong wireType = %d for field SaleFlag", wireType)
  877. }
  878. m.SaleFlag = 0
  879. for shift := uint(0); ; shift += 7 {
  880. if shift >= 64 {
  881. return ErrIntOverflowTicket
  882. }
  883. if iNdEx >= l {
  884. return io.ErrUnexpectedEOF
  885. }
  886. b := dAtA[iNdEx]
  887. iNdEx++
  888. m.SaleFlag |= (int32(b) & 0x7F) << shift
  889. if b < 0x80 {
  890. break
  891. }
  892. }
  893. case 12:
  894. if wireType != 2 {
  895. return fmt.Errorf("proto: wrong wireType = %d for field PriceList", wireType)
  896. }
  897. var msglen int
  898. for shift := uint(0); ; shift += 7 {
  899. if shift >= 64 {
  900. return ErrIntOverflowTicket
  901. }
  902. if iNdEx >= l {
  903. return io.ErrUnexpectedEOF
  904. }
  905. b := dAtA[iNdEx]
  906. iNdEx++
  907. msglen |= (int(b) & 0x7F) << shift
  908. if b < 0x80 {
  909. break
  910. }
  911. }
  912. if msglen < 0 {
  913. return ErrInvalidLengthTicket
  914. }
  915. postIndex := iNdEx + msglen
  916. if postIndex > l {
  917. return io.ErrUnexpectedEOF
  918. }
  919. if m.PriceList == nil {
  920. m.PriceList = &TicketPriceList{}
  921. }
  922. if err := m.PriceList.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  923. return err
  924. }
  925. iNdEx = postIndex
  926. case 13:
  927. if wireType != 2 {
  928. return fmt.Errorf("proto: wrong wireType = %d for field StatusList", wireType)
  929. }
  930. var msglen int
  931. for shift := uint(0); ; shift += 7 {
  932. if shift >= 64 {
  933. return ErrIntOverflowTicket
  934. }
  935. if iNdEx >= l {
  936. return io.ErrUnexpectedEOF
  937. }
  938. b := dAtA[iNdEx]
  939. iNdEx++
  940. msglen |= (int(b) & 0x7F) << shift
  941. if b < 0x80 {
  942. break
  943. }
  944. }
  945. if msglen < 0 {
  946. return ErrInvalidLengthTicket
  947. }
  948. postIndex := iNdEx + msglen
  949. if postIndex > l {
  950. return io.ErrUnexpectedEOF
  951. }
  952. if m.StatusList == nil {
  953. m.StatusList = &TicketStatus{}
  954. }
  955. if err := m.StatusList.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  956. return err
  957. }
  958. iNdEx = postIndex
  959. case 14:
  960. if wireType != 2 {
  961. return fmt.Errorf("proto: wrong wireType = %d for field Time", wireType)
  962. }
  963. var msglen int
  964. for shift := uint(0); ; shift += 7 {
  965. if shift >= 64 {
  966. return ErrIntOverflowTicket
  967. }
  968. if iNdEx >= l {
  969. return io.ErrUnexpectedEOF
  970. }
  971. b := dAtA[iNdEx]
  972. iNdEx++
  973. msglen |= (int(b) & 0x7F) << shift
  974. if b < 0x80 {
  975. break
  976. }
  977. }
  978. if msglen < 0 {
  979. return ErrInvalidLengthTicket
  980. }
  981. postIndex := iNdEx + msglen
  982. if postIndex > l {
  983. return io.ErrUnexpectedEOF
  984. }
  985. if m.Time == nil {
  986. m.Time = &TicketTime{}
  987. }
  988. if err := m.Time.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  989. return err
  990. }
  991. iNdEx = postIndex
  992. case 15:
  993. if wireType != 2 {
  994. return fmt.Errorf("proto: wrong wireType = %d for field BuyNumLimit", wireType)
  995. }
  996. var msglen int
  997. for shift := uint(0); ; shift += 7 {
  998. if shift >= 64 {
  999. return ErrIntOverflowTicket
  1000. }
  1001. if iNdEx >= l {
  1002. return io.ErrUnexpectedEOF
  1003. }
  1004. b := dAtA[iNdEx]
  1005. iNdEx++
  1006. msglen |= (int(b) & 0x7F) << shift
  1007. if b < 0x80 {
  1008. break
  1009. }
  1010. }
  1011. if msglen < 0 {
  1012. return ErrInvalidLengthTicket
  1013. }
  1014. postIndex := iNdEx + msglen
  1015. if postIndex > l {
  1016. return io.ErrUnexpectedEOF
  1017. }
  1018. if m.BuyNumLimit == nil {
  1019. m.BuyNumLimit = &TicketBuyNumLimit{}
  1020. }
  1021. if err := m.BuyNumLimit.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
  1022. return err
  1023. }
  1024. iNdEx = postIndex
  1025. default:
  1026. iNdEx = preIndex
  1027. skippy, err := skipTicket(dAtA[iNdEx:])
  1028. if err != nil {
  1029. return err
  1030. }
  1031. if skippy < 0 {
  1032. return ErrInvalidLengthTicket
  1033. }
  1034. if (iNdEx + skippy) > l {
  1035. return io.ErrUnexpectedEOF
  1036. }
  1037. iNdEx += skippy
  1038. }
  1039. }
  1040. if iNdEx > l {
  1041. return io.ErrUnexpectedEOF
  1042. }
  1043. return nil
  1044. }
  1045. func (m *TicketBuyNumLimit) Unmarshal(dAtA []byte) error {
  1046. l := len(dAtA)
  1047. iNdEx := 0
  1048. for iNdEx < l {
  1049. preIndex := iNdEx
  1050. var wire uint64
  1051. for shift := uint(0); ; shift += 7 {
  1052. if shift >= 64 {
  1053. return ErrIntOverflowTicket
  1054. }
  1055. if iNdEx >= l {
  1056. return io.ErrUnexpectedEOF
  1057. }
  1058. b := dAtA[iNdEx]
  1059. iNdEx++
  1060. wire |= (uint64(b) & 0x7F) << shift
  1061. if b < 0x80 {
  1062. break
  1063. }
  1064. }
  1065. fieldNum := int32(wire >> 3)
  1066. wireType := int(wire & 0x7)
  1067. if wireType == 4 {
  1068. return fmt.Errorf("proto: TicketBuyNumLimit: wiretype end group for non-group")
  1069. }
  1070. if fieldNum <= 0 {
  1071. return fmt.Errorf("proto: TicketBuyNumLimit: illegal tag %d (wire type %d)", fieldNum, wire)
  1072. }
  1073. switch fieldNum {
  1074. case 1:
  1075. if wireType != 2 {
  1076. return fmt.Errorf("proto: wrong wireType = %d for field Normal", wireType)
  1077. }
  1078. var msglen int
  1079. for shift := uint(0); ; shift += 7 {
  1080. if shift >= 64 {
  1081. return ErrIntOverflowTicket
  1082. }
  1083. if iNdEx >= l {
  1084. return io.ErrUnexpectedEOF
  1085. }
  1086. b := dAtA[iNdEx]
  1087. iNdEx++
  1088. msglen |= (int(b) & 0x7F) << shift
  1089. if b < 0x80 {
  1090. break
  1091. }
  1092. }
  1093. if msglen < 0 {
  1094. return ErrInvalidLengthTicket
  1095. }
  1096. postIndex := iNdEx + msglen
  1097. if postIndex > l {
  1098. return io.ErrUnexpectedEOF
  1099. }
  1100. if m.Normal == nil {
  1101. m.Normal = make(map[int32]int64)
  1102. }
  1103. var mapkey int32
  1104. var mapvalue int64
  1105. for iNdEx < postIndex {
  1106. entryPreIndex := iNdEx
  1107. var wire uint64
  1108. for shift := uint(0); ; shift += 7 {
  1109. if shift >= 64 {
  1110. return ErrIntOverflowTicket
  1111. }
  1112. if iNdEx >= l {
  1113. return io.ErrUnexpectedEOF
  1114. }
  1115. b := dAtA[iNdEx]
  1116. iNdEx++
  1117. wire |= (uint64(b) & 0x7F) << shift
  1118. if b < 0x80 {
  1119. break
  1120. }
  1121. }
  1122. fieldNum := int32(wire >> 3)
  1123. if fieldNum == 1 {
  1124. for shift := uint(0); ; shift += 7 {
  1125. if shift >= 64 {
  1126. return ErrIntOverflowTicket
  1127. }
  1128. if iNdEx >= l {
  1129. return io.ErrUnexpectedEOF
  1130. }
  1131. b := dAtA[iNdEx]
  1132. iNdEx++
  1133. mapkey |= (int32(b) & 0x7F) << shift
  1134. if b < 0x80 {
  1135. break
  1136. }
  1137. }
  1138. } else if fieldNum == 2 {
  1139. for shift := uint(0); ; shift += 7 {
  1140. if shift >= 64 {
  1141. return ErrIntOverflowTicket
  1142. }
  1143. if iNdEx >= l {
  1144. return io.ErrUnexpectedEOF
  1145. }
  1146. b := dAtA[iNdEx]
  1147. iNdEx++
  1148. mapvalue |= (int64(b) & 0x7F) << shift
  1149. if b < 0x80 {
  1150. break
  1151. }
  1152. }
  1153. } else {
  1154. iNdEx = entryPreIndex
  1155. skippy, err := skipTicket(dAtA[iNdEx:])
  1156. if err != nil {
  1157. return err
  1158. }
  1159. if skippy < 0 {
  1160. return ErrInvalidLengthTicket
  1161. }
  1162. if (iNdEx + skippy) > postIndex {
  1163. return io.ErrUnexpectedEOF
  1164. }
  1165. iNdEx += skippy
  1166. }
  1167. }
  1168. m.Normal[mapkey] = mapvalue
  1169. iNdEx = postIndex
  1170. case 2:
  1171. if wireType != 2 {
  1172. return fmt.Errorf("proto: wrong wireType = %d for field Vip", wireType)
  1173. }
  1174. var msglen int
  1175. for shift := uint(0); ; shift += 7 {
  1176. if shift >= 64 {
  1177. return ErrIntOverflowTicket
  1178. }
  1179. if iNdEx >= l {
  1180. return io.ErrUnexpectedEOF
  1181. }
  1182. b := dAtA[iNdEx]
  1183. iNdEx++
  1184. msglen |= (int(b) & 0x7F) << shift
  1185. if b < 0x80 {
  1186. break
  1187. }
  1188. }
  1189. if msglen < 0 {
  1190. return ErrInvalidLengthTicket
  1191. }
  1192. postIndex := iNdEx + msglen
  1193. if postIndex > l {
  1194. return io.ErrUnexpectedEOF
  1195. }
  1196. if m.Vip == nil {
  1197. m.Vip = make(map[int32]int64)
  1198. }
  1199. var mapkey int32
  1200. var mapvalue int64
  1201. for iNdEx < postIndex {
  1202. entryPreIndex := iNdEx
  1203. var wire uint64
  1204. for shift := uint(0); ; shift += 7 {
  1205. if shift >= 64 {
  1206. return ErrIntOverflowTicket
  1207. }
  1208. if iNdEx >= l {
  1209. return io.ErrUnexpectedEOF
  1210. }
  1211. b := dAtA[iNdEx]
  1212. iNdEx++
  1213. wire |= (uint64(b) & 0x7F) << shift
  1214. if b < 0x80 {
  1215. break
  1216. }
  1217. }
  1218. fieldNum := int32(wire >> 3)
  1219. if fieldNum == 1 {
  1220. for shift := uint(0); ; shift += 7 {
  1221. if shift >= 64 {
  1222. return ErrIntOverflowTicket
  1223. }
  1224. if iNdEx >= l {
  1225. return io.ErrUnexpectedEOF
  1226. }
  1227. b := dAtA[iNdEx]
  1228. iNdEx++
  1229. mapkey |= (int32(b) & 0x7F) << shift
  1230. if b < 0x80 {
  1231. break
  1232. }
  1233. }
  1234. } else if fieldNum == 2 {
  1235. for shift := uint(0); ; shift += 7 {
  1236. if shift >= 64 {
  1237. return ErrIntOverflowTicket
  1238. }
  1239. if iNdEx >= l {
  1240. return io.ErrUnexpectedEOF
  1241. }
  1242. b := dAtA[iNdEx]
  1243. iNdEx++
  1244. mapvalue |= (int64(b) & 0x7F) << shift
  1245. if b < 0x80 {
  1246. break
  1247. }
  1248. }
  1249. } else {
  1250. iNdEx = entryPreIndex
  1251. skippy, err := skipTicket(dAtA[iNdEx:])
  1252. if err != nil {
  1253. return err
  1254. }
  1255. if skippy < 0 {
  1256. return ErrInvalidLengthTicket
  1257. }
  1258. if (iNdEx + skippy) > postIndex {
  1259. return io.ErrUnexpectedEOF
  1260. }
  1261. iNdEx += skippy
  1262. }
  1263. }
  1264. m.Vip[mapkey] = mapvalue
  1265. iNdEx = postIndex
  1266. case 3:
  1267. if wireType != 2 {
  1268. return fmt.Errorf("proto: wrong wireType = %d for field AnnualVip", wireType)
  1269. }
  1270. var msglen int
  1271. for shift := uint(0); ; shift += 7 {
  1272. if shift >= 64 {
  1273. return ErrIntOverflowTicket
  1274. }
  1275. if iNdEx >= l {
  1276. return io.ErrUnexpectedEOF
  1277. }
  1278. b := dAtA[iNdEx]
  1279. iNdEx++
  1280. msglen |= (int(b) & 0x7F) << shift
  1281. if b < 0x80 {
  1282. break
  1283. }
  1284. }
  1285. if msglen < 0 {
  1286. return ErrInvalidLengthTicket
  1287. }
  1288. postIndex := iNdEx + msglen
  1289. if postIndex > l {
  1290. return io.ErrUnexpectedEOF
  1291. }
  1292. if m.AnnualVip == nil {
  1293. m.AnnualVip = make(map[int32]int64)
  1294. }
  1295. var mapkey int32
  1296. var mapvalue int64
  1297. for iNdEx < postIndex {
  1298. entryPreIndex := iNdEx
  1299. var wire uint64
  1300. for shift := uint(0); ; shift += 7 {
  1301. if shift >= 64 {
  1302. return ErrIntOverflowTicket
  1303. }
  1304. if iNdEx >= l {
  1305. return io.ErrUnexpectedEOF
  1306. }
  1307. b := dAtA[iNdEx]
  1308. iNdEx++
  1309. wire |= (uint64(b) & 0x7F) << shift
  1310. if b < 0x80 {
  1311. break
  1312. }
  1313. }
  1314. fieldNum := int32(wire >> 3)
  1315. if fieldNum == 1 {
  1316. for shift := uint(0); ; shift += 7 {
  1317. if shift >= 64 {
  1318. return ErrIntOverflowTicket
  1319. }
  1320. if iNdEx >= l {
  1321. return io.ErrUnexpectedEOF
  1322. }
  1323. b := dAtA[iNdEx]
  1324. iNdEx++
  1325. mapkey |= (int32(b) & 0x7F) << shift
  1326. if b < 0x80 {
  1327. break
  1328. }
  1329. }
  1330. } else if fieldNum == 2 {
  1331. for shift := uint(0); ; shift += 7 {
  1332. if shift >= 64 {
  1333. return ErrIntOverflowTicket
  1334. }
  1335. if iNdEx >= l {
  1336. return io.ErrUnexpectedEOF
  1337. }
  1338. b := dAtA[iNdEx]
  1339. iNdEx++
  1340. mapvalue |= (int64(b) & 0x7F) << shift
  1341. if b < 0x80 {
  1342. break
  1343. }
  1344. }
  1345. } else {
  1346. iNdEx = entryPreIndex
  1347. skippy, err := skipTicket(dAtA[iNdEx:])
  1348. if err != nil {
  1349. return err
  1350. }
  1351. if skippy < 0 {
  1352. return ErrInvalidLengthTicket
  1353. }
  1354. if (iNdEx + skippy) > postIndex {
  1355. return io.ErrUnexpectedEOF
  1356. }
  1357. iNdEx += skippy
  1358. }
  1359. }
  1360. m.AnnualVip[mapkey] = mapvalue
  1361. iNdEx = postIndex
  1362. default:
  1363. iNdEx = preIndex
  1364. skippy, err := skipTicket(dAtA[iNdEx:])
  1365. if err != nil {
  1366. return err
  1367. }
  1368. if skippy < 0 {
  1369. return ErrInvalidLengthTicket
  1370. }
  1371. if (iNdEx + skippy) > l {
  1372. return io.ErrUnexpectedEOF
  1373. }
  1374. iNdEx += skippy
  1375. }
  1376. }
  1377. if iNdEx > l {
  1378. return io.ErrUnexpectedEOF
  1379. }
  1380. return nil
  1381. }
  1382. func (m *TicketStatus) Unmarshal(dAtA []byte) error {
  1383. l := len(dAtA)
  1384. iNdEx := 0
  1385. for iNdEx < l {
  1386. preIndex := iNdEx
  1387. var wire uint64
  1388. for shift := uint(0); ; shift += 7 {
  1389. if shift >= 64 {
  1390. return ErrIntOverflowTicket
  1391. }
  1392. if iNdEx >= l {
  1393. return io.ErrUnexpectedEOF
  1394. }
  1395. b := dAtA[iNdEx]
  1396. iNdEx++
  1397. wire |= (uint64(b) & 0x7F) << shift
  1398. if b < 0x80 {
  1399. break
  1400. }
  1401. }
  1402. fieldNum := int32(wire >> 3)
  1403. wireType := int(wire & 0x7)
  1404. if wireType == 4 {
  1405. return fmt.Errorf("proto: TicketStatus: wiretype end group for non-group")
  1406. }
  1407. if fieldNum <= 0 {
  1408. return fmt.Errorf("proto: TicketStatus: illegal tag %d (wire type %d)", fieldNum, wire)
  1409. }
  1410. switch fieldNum {
  1411. case 1:
  1412. if wireType != 0 {
  1413. return fmt.Errorf("proto: wrong wireType = %d for field IsSale", wireType)
  1414. }
  1415. m.IsSale = 0
  1416. for shift := uint(0); ; shift += 7 {
  1417. if shift >= 64 {
  1418. return ErrIntOverflowTicket
  1419. }
  1420. if iNdEx >= l {
  1421. return io.ErrUnexpectedEOF
  1422. }
  1423. b := dAtA[iNdEx]
  1424. iNdEx++
  1425. m.IsSale |= (int32(b) & 0x7F) << shift
  1426. if b < 0x80 {
  1427. break
  1428. }
  1429. }
  1430. case 2:
  1431. if wireType != 0 {
  1432. return fmt.Errorf("proto: wrong wireType = %d for field IsVisible", wireType)
  1433. }
  1434. m.IsVisible = 0
  1435. for shift := uint(0); ; shift += 7 {
  1436. if shift >= 64 {
  1437. return ErrIntOverflowTicket
  1438. }
  1439. if iNdEx >= l {
  1440. return io.ErrUnexpectedEOF
  1441. }
  1442. b := dAtA[iNdEx]
  1443. iNdEx++
  1444. m.IsVisible |= (int32(b) & 0x7F) << shift
  1445. if b < 0x80 {
  1446. break
  1447. }
  1448. }
  1449. case 3:
  1450. if wireType != 0 {
  1451. return fmt.Errorf("proto: wrong wireType = %d for field IsRefund", wireType)
  1452. }
  1453. m.IsRefund = 0
  1454. for shift := uint(0); ; shift += 7 {
  1455. if shift >= 64 {
  1456. return ErrIntOverflowTicket
  1457. }
  1458. if iNdEx >= l {
  1459. return io.ErrUnexpectedEOF
  1460. }
  1461. b := dAtA[iNdEx]
  1462. iNdEx++
  1463. m.IsRefund |= (int32(b) & 0x7F) << shift
  1464. if b < 0x80 {
  1465. break
  1466. }
  1467. }
  1468. default:
  1469. iNdEx = preIndex
  1470. skippy, err := skipTicket(dAtA[iNdEx:])
  1471. if err != nil {
  1472. return err
  1473. }
  1474. if skippy < 0 {
  1475. return ErrInvalidLengthTicket
  1476. }
  1477. if (iNdEx + skippy) > l {
  1478. return io.ErrUnexpectedEOF
  1479. }
  1480. iNdEx += skippy
  1481. }
  1482. }
  1483. if iNdEx > l {
  1484. return io.ErrUnexpectedEOF
  1485. }
  1486. return nil
  1487. }
  1488. func (m *TicketPriceList) Unmarshal(dAtA []byte) error {
  1489. l := len(dAtA)
  1490. iNdEx := 0
  1491. for iNdEx < l {
  1492. preIndex := iNdEx
  1493. var wire uint64
  1494. for shift := uint(0); ; shift += 7 {
  1495. if shift >= 64 {
  1496. return ErrIntOverflowTicket
  1497. }
  1498. if iNdEx >= l {
  1499. return io.ErrUnexpectedEOF
  1500. }
  1501. b := dAtA[iNdEx]
  1502. iNdEx++
  1503. wire |= (uint64(b) & 0x7F) << shift
  1504. if b < 0x80 {
  1505. break
  1506. }
  1507. }
  1508. fieldNum := int32(wire >> 3)
  1509. wireType := int(wire & 0x7)
  1510. if wireType == 4 {
  1511. return fmt.Errorf("proto: TicketPriceList: wiretype end group for non-group")
  1512. }
  1513. if fieldNum <= 0 {
  1514. return fmt.Errorf("proto: TicketPriceList: illegal tag %d (wire type %d)", fieldNum, wire)
  1515. }
  1516. switch fieldNum {
  1517. case 1:
  1518. if wireType != 0 {
  1519. return fmt.Errorf("proto: wrong wireType = %d for field Price", wireType)
  1520. }
  1521. m.Price = 0
  1522. for shift := uint(0); ; shift += 7 {
  1523. if shift >= 64 {
  1524. return ErrIntOverflowTicket
  1525. }
  1526. if iNdEx >= l {
  1527. return io.ErrUnexpectedEOF
  1528. }
  1529. b := dAtA[iNdEx]
  1530. iNdEx++
  1531. m.Price |= (int32(b) & 0x7F) << shift
  1532. if b < 0x80 {
  1533. break
  1534. }
  1535. }
  1536. case 2:
  1537. if wireType != 0 {
  1538. return fmt.Errorf("proto: wrong wireType = %d for field OriPrice", wireType)
  1539. }
  1540. m.OriPrice = 0
  1541. for shift := uint(0); ; shift += 7 {
  1542. if shift >= 64 {
  1543. return ErrIntOverflowTicket
  1544. }
  1545. if iNdEx >= l {
  1546. return io.ErrUnexpectedEOF
  1547. }
  1548. b := dAtA[iNdEx]
  1549. iNdEx++
  1550. m.OriPrice |= (int32(b) & 0x7F) << shift
  1551. if b < 0x80 {
  1552. break
  1553. }
  1554. }
  1555. case 3:
  1556. if wireType != 0 {
  1557. return fmt.Errorf("proto: wrong wireType = %d for field MktPrice", wireType)
  1558. }
  1559. m.MktPrice = 0
  1560. for shift := uint(0); ; shift += 7 {
  1561. if shift >= 64 {
  1562. return ErrIntOverflowTicket
  1563. }
  1564. if iNdEx >= l {
  1565. return io.ErrUnexpectedEOF
  1566. }
  1567. b := dAtA[iNdEx]
  1568. iNdEx++
  1569. m.MktPrice |= (int32(b) & 0x7F) << shift
  1570. if b < 0x80 {
  1571. break
  1572. }
  1573. }
  1574. default:
  1575. iNdEx = preIndex
  1576. skippy, err := skipTicket(dAtA[iNdEx:])
  1577. if err != nil {
  1578. return err
  1579. }
  1580. if skippy < 0 {
  1581. return ErrInvalidLengthTicket
  1582. }
  1583. if (iNdEx + skippy) > l {
  1584. return io.ErrUnexpectedEOF
  1585. }
  1586. iNdEx += skippy
  1587. }
  1588. }
  1589. if iNdEx > l {
  1590. return io.ErrUnexpectedEOF
  1591. }
  1592. return nil
  1593. }
  1594. func skipTicket(dAtA []byte) (n int, err error) {
  1595. l := len(dAtA)
  1596. iNdEx := 0
  1597. for iNdEx < l {
  1598. var wire uint64
  1599. for shift := uint(0); ; shift += 7 {
  1600. if shift >= 64 {
  1601. return 0, ErrIntOverflowTicket
  1602. }
  1603. if iNdEx >= l {
  1604. return 0, io.ErrUnexpectedEOF
  1605. }
  1606. b := dAtA[iNdEx]
  1607. iNdEx++
  1608. wire |= (uint64(b) & 0x7F) << shift
  1609. if b < 0x80 {
  1610. break
  1611. }
  1612. }
  1613. wireType := int(wire & 0x7)
  1614. switch wireType {
  1615. case 0:
  1616. for shift := uint(0); ; shift += 7 {
  1617. if shift >= 64 {
  1618. return 0, ErrIntOverflowTicket
  1619. }
  1620. if iNdEx >= l {
  1621. return 0, io.ErrUnexpectedEOF
  1622. }
  1623. iNdEx++
  1624. if dAtA[iNdEx-1] < 0x80 {
  1625. break
  1626. }
  1627. }
  1628. return iNdEx, nil
  1629. case 1:
  1630. iNdEx += 8
  1631. return iNdEx, nil
  1632. case 2:
  1633. var length int
  1634. for shift := uint(0); ; shift += 7 {
  1635. if shift >= 64 {
  1636. return 0, ErrIntOverflowTicket
  1637. }
  1638. if iNdEx >= l {
  1639. return 0, io.ErrUnexpectedEOF
  1640. }
  1641. b := dAtA[iNdEx]
  1642. iNdEx++
  1643. length |= (int(b) & 0x7F) << shift
  1644. if b < 0x80 {
  1645. break
  1646. }
  1647. }
  1648. iNdEx += length
  1649. if length < 0 {
  1650. return 0, ErrInvalidLengthTicket
  1651. }
  1652. return iNdEx, nil
  1653. case 3:
  1654. for {
  1655. var innerWire uint64
  1656. var start int = iNdEx
  1657. for shift := uint(0); ; shift += 7 {
  1658. if shift >= 64 {
  1659. return 0, ErrIntOverflowTicket
  1660. }
  1661. if iNdEx >= l {
  1662. return 0, io.ErrUnexpectedEOF
  1663. }
  1664. b := dAtA[iNdEx]
  1665. iNdEx++
  1666. innerWire |= (uint64(b) & 0x7F) << shift
  1667. if b < 0x80 {
  1668. break
  1669. }
  1670. }
  1671. innerWireType := int(innerWire & 0x7)
  1672. if innerWireType == 4 {
  1673. break
  1674. }
  1675. next, err := skipTicket(dAtA[start:])
  1676. if err != nil {
  1677. return 0, err
  1678. }
  1679. iNdEx = start + next
  1680. }
  1681. return iNdEx, nil
  1682. case 4:
  1683. return iNdEx, nil
  1684. case 5:
  1685. iNdEx += 4
  1686. return iNdEx, nil
  1687. default:
  1688. return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
  1689. }
  1690. }
  1691. panic("unreachable")
  1692. }
  1693. var (
  1694. ErrInvalidLengthTicket = fmt.Errorf("proto: negative length found during unmarshaling")
  1695. ErrIntOverflowTicket = fmt.Errorf("proto: integer overflow")
  1696. )
  1697. func init() {
  1698. proto.RegisterFile("app/service/openplatform/ticket-item/api/grpc/v1/ticket.proto", fileDescriptorTicket)
  1699. }
  1700. var fileDescriptorTicket = []byte{
  1701. // 864 bytes of a gzipped FileDescriptorProto
  1702. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0xcf, 0x6f, 0xdb, 0x36,
  1703. 0x14, 0xc7, 0x21, 0xff, 0x8a, 0xf5, 0x9c, 0xa4, 0x29, 0x31, 0x0c, 0x42, 0xd0, 0x44, 0x9e, 0x30,
  1704. 0x6c, 0xee, 0xa1, 0x76, 0x92, 0x62, 0x43, 0x96, 0xae, 0xc3, 0xea, 0x65, 0x03, 0x0a, 0x64, 0x45,
  1705. 0xcb, 0x04, 0x05, 0xb6, 0x8b, 0x26, 0x4b, 0xb4, 0x47, 0x98, 0xfa, 0x01, 0x51, 0x32, 0xe0, 0xff,
  1706. 0x6e, 0xc7, 0x01, 0xbb, 0xec, 0xb6, 0x9b, 0x30, 0xf8, 0xa8, 0xdb, 0xf6, 0x17, 0x0c, 0x7c, 0x94,
  1707. 0xed, 0x74, 0x75, 0x82, 0xa4, 0x17, 0x51, 0x7c, 0xef, 0x7d, 0x3f, 0xe4, 0x7b, 0xe2, 0xa3, 0xe0,
  1708. 0xb9, 0x97, 0x24, 0x03, 0xc9, 0xd2, 0x19, 0xf7, 0xd9, 0x20, 0x4e, 0x58, 0x94, 0x08, 0x2f, 0x1b,
  1709. 0xc7, 0x69, 0x38, 0xc8, 0xb8, 0x3f, 0x65, 0xd9, 0x13, 0x9e, 0xb1, 0x70, 0xe0, 0x25, 0x7c, 0x30,
  1710. 0x49, 0x13, 0x7f, 0x30, 0x3b, 0xae, 0xec, 0xfd, 0x24, 0x8d, 0xb3, 0x98, 0x7c, 0x5c, 0xcd, 0x2a,
  1711. 0x42, 0x5f, 0x45, 0xf7, 0x67, 0xc7, 0xfb, 0x4f, 0x26, 0x3c, 0xfb, 0x35, 0x1f, 0xf5, 0xfd, 0x38,
  1712. 0x1c, 0x4c, 0xe2, 0x49, 0x3c, 0xc0, 0xf0, 0x51, 0x3e, 0xc6, 0x19, 0x4e, 0xf0, 0x4d, 0x63, 0xf6,
  1713. 0x9f, 0x7d, 0xc0, 0x2e, 0x42, 0xa6, 0xc5, 0xce, 0x3f, 0x2d, 0x80, 0x2b, 0x0c, 0x7b, 0x19, 0x8d,
  1714. 0x63, 0x72, 0x04, 0x35, 0x1e, 0x58, 0x46, 0xd7, 0xe8, 0xd5, 0x87, 0xdd, 0x45, 0x61, 0xd7, 0x5e,
  1715. 0x9e, 0x97, 0x85, 0x5d, 0xe3, 0xc1, 0xbf, 0x85, 0xbd, 0x37, 0xf3, 0x04, 0x0f, 0xbc, 0x8c, 0x9d,
  1716. 0x39, 0x21, 0x8f, 0x9e, 0x1f, 0x3b, 0xb4, 0xc6, 0x03, 0xf2, 0x08, 0x1a, 0x01, 0x93, 0xbe, 0x55,
  1717. 0xeb, 0x1a, 0x3d, 0x73, 0xd8, 0x2e, 0x0b, 0xbb, 0x11, 0x79, 0x21, 0xa3, 0x68, 0x25, 0x47, 0xd0,
  1718. 0xc8, 0xe6, 0x09, 0xb3, 0xea, 0x5d, 0xa3, 0xd7, 0x1c, 0x3e, 0x52, 0x5e, 0x35, 0x7f, 0x9f, 0x76,
  1719. 0xe4, 0x50, 0xf4, 0x90, 0x33, 0x30, 0xa5, 0x27, 0x98, 0x8b, 0xb2, 0x06, 0xca, 0x0e, 0xca, 0xc2,
  1720. 0x6e, 0xca, 0x1b, 0x75, 0x6d, 0x15, 0x7f, 0xa5, 0xb4, 0x9f, 0xc1, 0x96, 0xe0, 0xd1, 0xd4, 0x95,
  1721. 0xbe, 0xd5, 0xc4, 0xed, 0xec, 0x94, 0x85, 0x6d, 0x0a, 0x65, 0x48, 0x19, 0x8b, 0x68, 0x4b, 0x79,
  1722. 0x2f, 0x7d, 0xf2, 0x1d, 0xec, 0x62, 0x9c, 0xae, 0x8f, 0xcb, 0x03, 0xab, 0x85, 0xe1, 0x07, 0x8b,
  1723. 0xc2, 0xde, 0xbe, 0xe0, 0xd1, 0xb4, 0xaa, 0xc8, 0x79, 0x25, 0xd7, 0x71, 0x74, 0x5b, 0xac, 0x5d,
  1724. 0x01, 0x71, 0xa0, 0x25, 0xe7, 0xe1, 0x28, 0x16, 0xd6, 0x16, 0x8a, 0xa1, 0x2c, 0xec, 0xca, 0x42,
  1725. 0xab, 0x91, 0xd8, 0xd0, 0xf4, 0x63, 0x11, 0xa7, 0x56, 0x1b, 0x43, 0x4c, 0x95, 0x08, 0x1a, 0xa8,
  1726. 0x1e, 0xc8, 0x37, 0x60, 0x8e, 0xf2, 0xb9, 0x2b, 0x78, 0xc8, 0x33, 0xcb, 0xc4, 0x6c, 0x3f, 0x51,
  1727. 0x8b, 0xae, 0x8c, 0x9b, 0x33, 0x1e, 0xe5, 0xf3, 0x0b, 0xe5, 0x25, 0x8f, 0xa1, 0xa3, 0xea, 0xec,
  1728. 0x06, 0x2c, 0xf3, 0xb8, 0xb0, 0x60, 0xfd, 0x11, 0x94, 0x99, 0x82, 0x7a, 0x9e, 0xa3, 0x4f, 0x2d,
  1729. 0x85, 0x85, 0x1d, 0x0b, 0x6f, 0x62, 0x75, 0xd6, 0x4b, 0xad, 0x8c, 0x37, 0x17, 0xf7, 0x07, 0xe1,
  1730. 0x4d, 0xc8, 0x1b, 0x80, 0x24, 0xe5, 0x3e, 0x73, 0x05, 0x97, 0x99, 0xb5, 0xdd, 0x35, 0x7a, 0x9d,
  1731. 0x93, 0xcf, 0xfb, 0x9b, 0x8f, 0x70, 0x5f, 0x57, 0xe9, 0xb5, 0x8a, 0xbf, 0xe0, 0x32, 0xd3, 0x99,
  1732. 0xa3, 0x9c, 0x9a, 0xc9, 0xd2, 0x4a, 0xde, 0x40, 0x47, 0x66, 0x5e, 0x96, 0x4b, 0xcd, 0xdc, 0x41,
  1733. 0xe6, 0xa7, 0xb7, 0x33, 0x2f, 0x51, 0x50, 0x55, 0x1b, 0xdf, 0x29, 0xe8, 0x11, 0x91, 0xdf, 0x42,
  1734. 0x43, 0x9d, 0x6e, 0x6b, 0x17, 0x59, 0xce, 0xed, 0xac, 0x2b, 0x1e, 0x32, 0x5d, 0x2d, 0xa5, 0xa1,
  1735. 0xf8, 0x24, 0xbf, 0xc0, 0x8e, 0xaa, 0x7e, 0x94, 0x87, 0xd5, 0x67, 0x79, 0x80, 0xa8, 0xc7, 0xb7,
  1736. 0xa3, 0x86, 0xf9, 0xfc, 0x55, 0x1e, 0xe2, 0x47, 0x19, 0x3e, 0x2c, 0x0b, 0xfb, 0x5d, 0x06, 0xed,
  1737. 0x8c, 0xd6, 0x7e, 0xe7, 0xaf, 0x3a, 0x3c, 0x7c, 0x4f, 0x45, 0x7e, 0x82, 0x56, 0x14, 0xa7, 0xa1,
  1738. 0x27, 0x2c, 0xa3, 0x5b, 0xef, 0x75, 0x4e, 0xbe, 0xb8, 0xf3, 0x82, 0xfd, 0x57, 0xa8, 0xfb, 0x3e,
  1739. 0xca, 0xd2, 0xb9, 0x2e, 0x8c, 0x06, 0xd1, 0x6a, 0x24, 0x3f, 0x42, 0x7d, 0xc6, 0x13, 0xab, 0x86,
  1740. 0xdc, 0x93, 0xbb, 0x73, 0xdf, 0xf2, 0x44, 0x43, 0xb7, 0xca, 0xc2, 0x56, 0x08, 0xaa, 0x1e, 0x64,
  1741. 0x02, 0xe0, 0x45, 0x51, 0xee, 0x09, 0x57, 0x51, 0xeb, 0x48, 0x3d, 0xbd, 0x3b, 0xf5, 0x05, 0x6a,
  1742. 0x57, 0xec, 0xdd, 0xb2, 0xb0, 0xaf, 0xf1, 0xa8, 0xe9, 0x2d, 0xfd, 0xfb, 0x5f, 0x41, 0xe7, 0x5a,
  1743. 0x6a, 0x64, 0x0f, 0xea, 0x53, 0x36, 0xc7, 0xdb, 0xa9, 0x49, 0xd5, 0x2b, 0xf9, 0x08, 0x9a, 0x33,
  1744. 0x4f, 0xe4, 0x0c, 0x6f, 0x9f, 0x3a, 0xd5, 0x93, 0xb3, 0xda, 0xa9, 0xb1, 0xff, 0x25, 0xb4, 0x97,
  1745. 0x2b, 0xdc, 0x4b, 0xf7, 0x35, 0xec, 0xbe, 0xbb, 0xbf, 0xfb, 0xa8, 0x9d, 0x3f, 0x0c, 0xd8, 0xbe,
  1746. 0x7e, 0x4c, 0xc9, 0x29, 0x6c, 0x71, 0xe9, 0xaa, 0x1e, 0xd2, 0x80, 0xa1, 0x5d, 0x16, 0xf6, 0xd2,
  1747. 0xb4, 0xb1, 0xe1, 0x5a, 0x5c, 0x5e, 0x7a, 0x82, 0x91, 0x17, 0x00, 0x5c, 0xba, 0x33, 0x2e, 0xf9,
  1748. 0x48, 0xe8, 0x95, 0x9a, 0x43, 0x47, 0x95, 0x6a, 0x6d, 0xdd, 0xa8, 0x37, 0xb9, 0x7c, 0xab, 0xdd,
  1749. 0xaa, 0xe3, 0xb9, 0x74, 0x53, 0x36, 0xce, 0xa3, 0xa0, 0xba, 0x81, 0xb1, 0xe3, 0x57, 0xc6, 0xcd,
  1750. 0x1d, 0xcf, 0x25, 0x45, 0xaf, 0xf3, 0x9b, 0x01, 0x0f, 0xfe, 0xd7, 0xc8, 0xe4, 0x29, 0xe8, 0x36,
  1751. 0xae, 0xd2, 0x39, 0x58, 0xf5, 0xf5, 0x46, 0x96, 0x76, 0x91, 0x67, 0x60, 0xc6, 0x29, 0x77, 0xb5,
  1752. 0x50, 0xa7, 0x72, 0xa8, 0x8e, 0x69, 0x7c, 0xb3, 0xb2, 0x1d, 0xa7, 0xfc, 0xf5, 0x52, 0x1c, 0x4e,
  1753. 0xb3, 0x4a, 0x5c, 0x5f, 0x8b, 0xc3, 0x5b, 0xc4, 0xe1, 0x54, 0x6f, 0x79, 0xb8, 0xf7, 0xfb, 0xe2,
  1754. 0xd0, 0xf8, 0x73, 0x71, 0x68, 0xfc, 0xbd, 0x38, 0x34, 0x7e, 0xae, 0xcd, 0x8e, 0x47, 0x2d, 0xfc,
  1755. 0xef, 0x3d, 0xfd, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x75, 0x94, 0xa6, 0xda, 0xbc, 0x07, 0x00, 0x00,
  1756. }