event.pb.go 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: event.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package v1
  5. import (
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. type EventAddRequest struct {
  20. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  21. // 标题
  22. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"`
  23. // 内容
  24. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"`
  25. // 活动开始时间
  26. Start int64 `protobuf:"varint,4,opt,name=start,proto3" json:"start"`
  27. // 活动结束时间
  28. End int64 `protobuf:"varint,5,opt,name=end,proto3" json:"end"`
  29. // 报名截止时间
  30. SignUpEnd int64 `protobuf:"varint,6,opt,name=sign_up_end,json=signUpEnd,proto3" json:"sign_up_end"`
  31. // 人数限制
  32. PeopleLimit int64 `protobuf:"varint,7,opt,name=people_limit,json=peopleLimit,proto3" json:"people_limit"`
  33. // 报名费用
  34. Fee int64 `protobuf:"varint,8,opt,name=fee,proto3" json:"fee"`
  35. // 活动地址
  36. Addr string `protobuf:"bytes,9,opt,name=addr,proto3" json:"addr"`
  37. // 图片
  38. Pic []string `protobuf:"bytes,10,rep,name=pic,proto3" json:"pic"`
  39. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  40. XXX_unrecognized []byte `json:"-"`
  41. XXX_sizecache int32 `json:"-"`
  42. }
  43. func (m *EventAddRequest) Reset() { *m = EventAddRequest{} }
  44. func (m *EventAddRequest) String() string { return proto.CompactTextString(m) }
  45. func (*EventAddRequest) ProtoMessage() {}
  46. func (*EventAddRequest) Descriptor() ([]byte, []int) {
  47. return fileDescriptor_2d17a9d3f0ddf27e, []int{0}
  48. }
  49. func (m *EventAddRequest) XXX_Unmarshal(b []byte) error {
  50. return xxx_messageInfo_EventAddRequest.Unmarshal(m, b)
  51. }
  52. func (m *EventAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  53. return xxx_messageInfo_EventAddRequest.Marshal(b, m, deterministic)
  54. }
  55. func (m *EventAddRequest) XXX_Merge(src proto.Message) {
  56. xxx_messageInfo_EventAddRequest.Merge(m, src)
  57. }
  58. func (m *EventAddRequest) XXX_Size() int {
  59. return xxx_messageInfo_EventAddRequest.Size(m)
  60. }
  61. func (m *EventAddRequest) XXX_DiscardUnknown() {
  62. xxx_messageInfo_EventAddRequest.DiscardUnknown(m)
  63. }
  64. var xxx_messageInfo_EventAddRequest proto.InternalMessageInfo
  65. func (m *EventAddRequest) GetGardenId() int64 {
  66. if m != nil {
  67. return m.GardenId
  68. }
  69. return 0
  70. }
  71. func (m *EventAddRequest) GetTitle() string {
  72. if m != nil {
  73. return m.Title
  74. }
  75. return ""
  76. }
  77. func (m *EventAddRequest) GetContent() string {
  78. if m != nil {
  79. return m.Content
  80. }
  81. return ""
  82. }
  83. func (m *EventAddRequest) GetStart() int64 {
  84. if m != nil {
  85. return m.Start
  86. }
  87. return 0
  88. }
  89. func (m *EventAddRequest) GetEnd() int64 {
  90. if m != nil {
  91. return m.End
  92. }
  93. return 0
  94. }
  95. func (m *EventAddRequest) GetSignUpEnd() int64 {
  96. if m != nil {
  97. return m.SignUpEnd
  98. }
  99. return 0
  100. }
  101. func (m *EventAddRequest) GetPeopleLimit() int64 {
  102. if m != nil {
  103. return m.PeopleLimit
  104. }
  105. return 0
  106. }
  107. func (m *EventAddRequest) GetFee() int64 {
  108. if m != nil {
  109. return m.Fee
  110. }
  111. return 0
  112. }
  113. func (m *EventAddRequest) GetAddr() string {
  114. if m != nil {
  115. return m.Addr
  116. }
  117. return ""
  118. }
  119. func (m *EventAddRequest) GetPic() []string {
  120. if m != nil {
  121. return m.Pic
  122. }
  123. return nil
  124. }
  125. type EventAddReply struct {
  126. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  127. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  128. XXX_unrecognized []byte `json:"-"`
  129. XXX_sizecache int32 `json:"-"`
  130. }
  131. func (m *EventAddReply) Reset() { *m = EventAddReply{} }
  132. func (m *EventAddReply) String() string { return proto.CompactTextString(m) }
  133. func (*EventAddReply) ProtoMessage() {}
  134. func (*EventAddReply) Descriptor() ([]byte, []int) {
  135. return fileDescriptor_2d17a9d3f0ddf27e, []int{1}
  136. }
  137. func (m *EventAddReply) XXX_Unmarshal(b []byte) error {
  138. return xxx_messageInfo_EventAddReply.Unmarshal(m, b)
  139. }
  140. func (m *EventAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  141. return xxx_messageInfo_EventAddReply.Marshal(b, m, deterministic)
  142. }
  143. func (m *EventAddReply) XXX_Merge(src proto.Message) {
  144. xxx_messageInfo_EventAddReply.Merge(m, src)
  145. }
  146. func (m *EventAddReply) XXX_Size() int {
  147. return xxx_messageInfo_EventAddReply.Size(m)
  148. }
  149. func (m *EventAddReply) XXX_DiscardUnknown() {
  150. xxx_messageInfo_EventAddReply.DiscardUnknown(m)
  151. }
  152. var xxx_messageInfo_EventAddReply proto.InternalMessageInfo
  153. func (m *EventAddReply) GetId() int64 {
  154. if m != nil {
  155. return m.Id
  156. }
  157. return 0
  158. }
  159. type EventUpdateRequest struct {
  160. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  161. // 标题
  162. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"`
  163. // 内容
  164. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"`
  165. // 活动开始时间
  166. Start int64 `protobuf:"varint,4,opt,name=start,proto3" json:"start"`
  167. // 活动结束时间
  168. End int64 `protobuf:"varint,5,opt,name=end,proto3" json:"end"`
  169. // 报名截止时间
  170. SignUpEnd int64 `protobuf:"varint,6,opt,name=sign_up_end,json=signUpEnd,proto3" json:"sign_up_end"`
  171. // 人数限制
  172. PeopleLimit int64 `protobuf:"varint,7,opt,name=people_limit,json=peopleLimit,proto3" json:"people_limit"`
  173. // 报名费用
  174. Fee int64 `protobuf:"varint,8,opt,name=fee,proto3" json:"fee"`
  175. // 活动地址
  176. Addr string `protobuf:"bytes,9,opt,name=addr,proto3" json:"addr"`
  177. // 图片
  178. Pic []string `protobuf:"bytes,10,rep,name=pic,proto3" json:"pic"`
  179. Id int64 `protobuf:"varint,11,opt,name=id,proto3" json:"id"`
  180. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  181. XXX_unrecognized []byte `json:"-"`
  182. XXX_sizecache int32 `json:"-"`
  183. }
  184. func (m *EventUpdateRequest) Reset() { *m = EventUpdateRequest{} }
  185. func (m *EventUpdateRequest) String() string { return proto.CompactTextString(m) }
  186. func (*EventUpdateRequest) ProtoMessage() {}
  187. func (*EventUpdateRequest) Descriptor() ([]byte, []int) {
  188. return fileDescriptor_2d17a9d3f0ddf27e, []int{2}
  189. }
  190. func (m *EventUpdateRequest) XXX_Unmarshal(b []byte) error {
  191. return xxx_messageInfo_EventUpdateRequest.Unmarshal(m, b)
  192. }
  193. func (m *EventUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  194. return xxx_messageInfo_EventUpdateRequest.Marshal(b, m, deterministic)
  195. }
  196. func (m *EventUpdateRequest) XXX_Merge(src proto.Message) {
  197. xxx_messageInfo_EventUpdateRequest.Merge(m, src)
  198. }
  199. func (m *EventUpdateRequest) XXX_Size() int {
  200. return xxx_messageInfo_EventUpdateRequest.Size(m)
  201. }
  202. func (m *EventUpdateRequest) XXX_DiscardUnknown() {
  203. xxx_messageInfo_EventUpdateRequest.DiscardUnknown(m)
  204. }
  205. var xxx_messageInfo_EventUpdateRequest proto.InternalMessageInfo
  206. func (m *EventUpdateRequest) GetGardenId() int64 {
  207. if m != nil {
  208. return m.GardenId
  209. }
  210. return 0
  211. }
  212. func (m *EventUpdateRequest) GetTitle() string {
  213. if m != nil {
  214. return m.Title
  215. }
  216. return ""
  217. }
  218. func (m *EventUpdateRequest) GetContent() string {
  219. if m != nil {
  220. return m.Content
  221. }
  222. return ""
  223. }
  224. func (m *EventUpdateRequest) GetStart() int64 {
  225. if m != nil {
  226. return m.Start
  227. }
  228. return 0
  229. }
  230. func (m *EventUpdateRequest) GetEnd() int64 {
  231. if m != nil {
  232. return m.End
  233. }
  234. return 0
  235. }
  236. func (m *EventUpdateRequest) GetSignUpEnd() int64 {
  237. if m != nil {
  238. return m.SignUpEnd
  239. }
  240. return 0
  241. }
  242. func (m *EventUpdateRequest) GetPeopleLimit() int64 {
  243. if m != nil {
  244. return m.PeopleLimit
  245. }
  246. return 0
  247. }
  248. func (m *EventUpdateRequest) GetFee() int64 {
  249. if m != nil {
  250. return m.Fee
  251. }
  252. return 0
  253. }
  254. func (m *EventUpdateRequest) GetAddr() string {
  255. if m != nil {
  256. return m.Addr
  257. }
  258. return ""
  259. }
  260. func (m *EventUpdateRequest) GetPic() []string {
  261. if m != nil {
  262. return m.Pic
  263. }
  264. return nil
  265. }
  266. func (m *EventUpdateRequest) GetId() int64 {
  267. if m != nil {
  268. return m.Id
  269. }
  270. return 0
  271. }
  272. type EventUpdateReply struct {
  273. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  274. XXX_unrecognized []byte `json:"-"`
  275. XXX_sizecache int32 `json:"-"`
  276. }
  277. func (m *EventUpdateReply) Reset() { *m = EventUpdateReply{} }
  278. func (m *EventUpdateReply) String() string { return proto.CompactTextString(m) }
  279. func (*EventUpdateReply) ProtoMessage() {}
  280. func (*EventUpdateReply) Descriptor() ([]byte, []int) {
  281. return fileDescriptor_2d17a9d3f0ddf27e, []int{3}
  282. }
  283. func (m *EventUpdateReply) XXX_Unmarshal(b []byte) error {
  284. return xxx_messageInfo_EventUpdateReply.Unmarshal(m, b)
  285. }
  286. func (m *EventUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  287. return xxx_messageInfo_EventUpdateReply.Marshal(b, m, deterministic)
  288. }
  289. func (m *EventUpdateReply) XXX_Merge(src proto.Message) {
  290. xxx_messageInfo_EventUpdateReply.Merge(m, src)
  291. }
  292. func (m *EventUpdateReply) XXX_Size() int {
  293. return xxx_messageInfo_EventUpdateReply.Size(m)
  294. }
  295. func (m *EventUpdateReply) XXX_DiscardUnknown() {
  296. xxx_messageInfo_EventUpdateReply.DiscardUnknown(m)
  297. }
  298. var xxx_messageInfo_EventUpdateReply proto.InternalMessageInfo
  299. type EventDelRequest struct {
  300. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  301. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
  302. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  303. XXX_unrecognized []byte `json:"-"`
  304. XXX_sizecache int32 `json:"-"`
  305. }
  306. func (m *EventDelRequest) Reset() { *m = EventDelRequest{} }
  307. func (m *EventDelRequest) String() string { return proto.CompactTextString(m) }
  308. func (*EventDelRequest) ProtoMessage() {}
  309. func (*EventDelRequest) Descriptor() ([]byte, []int) {
  310. return fileDescriptor_2d17a9d3f0ddf27e, []int{4}
  311. }
  312. func (m *EventDelRequest) XXX_Unmarshal(b []byte) error {
  313. return xxx_messageInfo_EventDelRequest.Unmarshal(m, b)
  314. }
  315. func (m *EventDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  316. return xxx_messageInfo_EventDelRequest.Marshal(b, m, deterministic)
  317. }
  318. func (m *EventDelRequest) XXX_Merge(src proto.Message) {
  319. xxx_messageInfo_EventDelRequest.Merge(m, src)
  320. }
  321. func (m *EventDelRequest) XXX_Size() int {
  322. return xxx_messageInfo_EventDelRequest.Size(m)
  323. }
  324. func (m *EventDelRequest) XXX_DiscardUnknown() {
  325. xxx_messageInfo_EventDelRequest.DiscardUnknown(m)
  326. }
  327. var xxx_messageInfo_EventDelRequest proto.InternalMessageInfo
  328. func (m *EventDelRequest) GetGardenId() int64 {
  329. if m != nil {
  330. return m.GardenId
  331. }
  332. return 0
  333. }
  334. func (m *EventDelRequest) GetId() int64 {
  335. if m != nil {
  336. return m.Id
  337. }
  338. return 0
  339. }
  340. type EventDelReply struct {
  341. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  342. XXX_unrecognized []byte `json:"-"`
  343. XXX_sizecache int32 `json:"-"`
  344. }
  345. func (m *EventDelReply) Reset() { *m = EventDelReply{} }
  346. func (m *EventDelReply) String() string { return proto.CompactTextString(m) }
  347. func (*EventDelReply) ProtoMessage() {}
  348. func (*EventDelReply) Descriptor() ([]byte, []int) {
  349. return fileDescriptor_2d17a9d3f0ddf27e, []int{5}
  350. }
  351. func (m *EventDelReply) XXX_Unmarshal(b []byte) error {
  352. return xxx_messageInfo_EventDelReply.Unmarshal(m, b)
  353. }
  354. func (m *EventDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  355. return xxx_messageInfo_EventDelReply.Marshal(b, m, deterministic)
  356. }
  357. func (m *EventDelReply) XXX_Merge(src proto.Message) {
  358. xxx_messageInfo_EventDelReply.Merge(m, src)
  359. }
  360. func (m *EventDelReply) XXX_Size() int {
  361. return xxx_messageInfo_EventDelReply.Size(m)
  362. }
  363. func (m *EventDelReply) XXX_DiscardUnknown() {
  364. xxx_messageInfo_EventDelReply.DiscardUnknown(m)
  365. }
  366. var xxx_messageInfo_EventDelReply proto.InternalMessageInfo
  367. type EventListRequest struct {
  368. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  369. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  370. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  371. HouseholdUid int64 `protobuf:"varint,5,opt,name=household_uid,json=householdUid,proto3" json:"household_uid"`
  372. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  373. XXX_unrecognized []byte `json:"-"`
  374. XXX_sizecache int32 `json:"-"`
  375. }
  376. func (m *EventListRequest) Reset() { *m = EventListRequest{} }
  377. func (m *EventListRequest) String() string { return proto.CompactTextString(m) }
  378. func (*EventListRequest) ProtoMessage() {}
  379. func (*EventListRequest) Descriptor() ([]byte, []int) {
  380. return fileDescriptor_2d17a9d3f0ddf27e, []int{6}
  381. }
  382. func (m *EventListRequest) XXX_Unmarshal(b []byte) error {
  383. return xxx_messageInfo_EventListRequest.Unmarshal(m, b)
  384. }
  385. func (m *EventListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  386. return xxx_messageInfo_EventListRequest.Marshal(b, m, deterministic)
  387. }
  388. func (m *EventListRequest) XXX_Merge(src proto.Message) {
  389. xxx_messageInfo_EventListRequest.Merge(m, src)
  390. }
  391. func (m *EventListRequest) XXX_Size() int {
  392. return xxx_messageInfo_EventListRequest.Size(m)
  393. }
  394. func (m *EventListRequest) XXX_DiscardUnknown() {
  395. xxx_messageInfo_EventListRequest.DiscardUnknown(m)
  396. }
  397. var xxx_messageInfo_EventListRequest proto.InternalMessageInfo
  398. func (m *EventListRequest) GetGardenId() int64 {
  399. if m != nil {
  400. return m.GardenId
  401. }
  402. return 0
  403. }
  404. func (m *EventListRequest) GetPage() int64 {
  405. if m != nil {
  406. return m.Page
  407. }
  408. return 0
  409. }
  410. func (m *EventListRequest) GetPageSize() int64 {
  411. if m != nil {
  412. return m.PageSize
  413. }
  414. return 0
  415. }
  416. func (m *EventListRequest) GetHouseholdUid() int64 {
  417. if m != nil {
  418. return m.HouseholdUid
  419. }
  420. return 0
  421. }
  422. type EventItem struct {
  423. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  424. // 标题
  425. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title"`
  426. // 内容
  427. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content"`
  428. // 活动开始时间
  429. Start int64 `protobuf:"varint,4,opt,name=start,proto3" json:"start"`
  430. // 活动结束时间
  431. End int64 `protobuf:"varint,5,opt,name=end,proto3" json:"end"`
  432. // 报名截止时间
  433. SignUpEnd int64 `protobuf:"varint,6,opt,name=sign_up_end,json=signUpEnd,proto3" json:"sign_up_end"`
  434. // 人数限制
  435. PeopleLimit int64 `protobuf:"varint,7,opt,name=people_limit,json=peopleLimit,proto3" json:"people_limit"`
  436. // 报名费用
  437. Fee int64 `protobuf:"varint,8,opt,name=fee,proto3" json:"fee"`
  438. // 活动地址
  439. Addr string `protobuf:"bytes,9,opt,name=addr,proto3" json:"addr"`
  440. // 已报名人数
  441. PeopleCount int64 `protobuf:"varint,10,opt,name=people_count,json=peopleCount,proto3" json:"people_count"`
  442. // 1 报名进行中 2 报名已截止
  443. Status int32 `protobuf:"varint,11,opt,name=status,proto3" json:"status"`
  444. CreatedAt string `protobuf:"bytes,12,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  445. // 图片
  446. Pic []string `protobuf:"bytes,13,rep,name=pic,proto3" json:"pic"`
  447. // 物业端不管该字段,小程序查询时该字段有效 是否报名
  448. Sign bool `protobuf:"varint,14,opt,name=sign,proto3" json:"sign"`
  449. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  450. XXX_unrecognized []byte `json:"-"`
  451. XXX_sizecache int32 `json:"-"`
  452. }
  453. func (m *EventItem) Reset() { *m = EventItem{} }
  454. func (m *EventItem) String() string { return proto.CompactTextString(m) }
  455. func (*EventItem) ProtoMessage() {}
  456. func (*EventItem) Descriptor() ([]byte, []int) {
  457. return fileDescriptor_2d17a9d3f0ddf27e, []int{7}
  458. }
  459. func (m *EventItem) XXX_Unmarshal(b []byte) error {
  460. return xxx_messageInfo_EventItem.Unmarshal(m, b)
  461. }
  462. func (m *EventItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  463. return xxx_messageInfo_EventItem.Marshal(b, m, deterministic)
  464. }
  465. func (m *EventItem) XXX_Merge(src proto.Message) {
  466. xxx_messageInfo_EventItem.Merge(m, src)
  467. }
  468. func (m *EventItem) XXX_Size() int {
  469. return xxx_messageInfo_EventItem.Size(m)
  470. }
  471. func (m *EventItem) XXX_DiscardUnknown() {
  472. xxx_messageInfo_EventItem.DiscardUnknown(m)
  473. }
  474. var xxx_messageInfo_EventItem proto.InternalMessageInfo
  475. func (m *EventItem) GetId() int64 {
  476. if m != nil {
  477. return m.Id
  478. }
  479. return 0
  480. }
  481. func (m *EventItem) GetTitle() string {
  482. if m != nil {
  483. return m.Title
  484. }
  485. return ""
  486. }
  487. func (m *EventItem) GetContent() string {
  488. if m != nil {
  489. return m.Content
  490. }
  491. return ""
  492. }
  493. func (m *EventItem) GetStart() int64 {
  494. if m != nil {
  495. return m.Start
  496. }
  497. return 0
  498. }
  499. func (m *EventItem) GetEnd() int64 {
  500. if m != nil {
  501. return m.End
  502. }
  503. return 0
  504. }
  505. func (m *EventItem) GetSignUpEnd() int64 {
  506. if m != nil {
  507. return m.SignUpEnd
  508. }
  509. return 0
  510. }
  511. func (m *EventItem) GetPeopleLimit() int64 {
  512. if m != nil {
  513. return m.PeopleLimit
  514. }
  515. return 0
  516. }
  517. func (m *EventItem) GetFee() int64 {
  518. if m != nil {
  519. return m.Fee
  520. }
  521. return 0
  522. }
  523. func (m *EventItem) GetAddr() string {
  524. if m != nil {
  525. return m.Addr
  526. }
  527. return ""
  528. }
  529. func (m *EventItem) GetPeopleCount() int64 {
  530. if m != nil {
  531. return m.PeopleCount
  532. }
  533. return 0
  534. }
  535. func (m *EventItem) GetStatus() int32 {
  536. if m != nil {
  537. return m.Status
  538. }
  539. return 0
  540. }
  541. func (m *EventItem) GetCreatedAt() string {
  542. if m != nil {
  543. return m.CreatedAt
  544. }
  545. return ""
  546. }
  547. func (m *EventItem) GetPic() []string {
  548. if m != nil {
  549. return m.Pic
  550. }
  551. return nil
  552. }
  553. func (m *EventItem) GetSign() bool {
  554. if m != nil {
  555. return m.Sign
  556. }
  557. return false
  558. }
  559. type EventListReply struct {
  560. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  561. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  562. List []*EventItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  563. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  564. XXX_unrecognized []byte `json:"-"`
  565. XXX_sizecache int32 `json:"-"`
  566. }
  567. func (m *EventListReply) Reset() { *m = EventListReply{} }
  568. func (m *EventListReply) String() string { return proto.CompactTextString(m) }
  569. func (*EventListReply) ProtoMessage() {}
  570. func (*EventListReply) Descriptor() ([]byte, []int) {
  571. return fileDescriptor_2d17a9d3f0ddf27e, []int{8}
  572. }
  573. func (m *EventListReply) XXX_Unmarshal(b []byte) error {
  574. return xxx_messageInfo_EventListReply.Unmarshal(m, b)
  575. }
  576. func (m *EventListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  577. return xxx_messageInfo_EventListReply.Marshal(b, m, deterministic)
  578. }
  579. func (m *EventListReply) XXX_Merge(src proto.Message) {
  580. xxx_messageInfo_EventListReply.Merge(m, src)
  581. }
  582. func (m *EventListReply) XXX_Size() int {
  583. return xxx_messageInfo_EventListReply.Size(m)
  584. }
  585. func (m *EventListReply) XXX_DiscardUnknown() {
  586. xxx_messageInfo_EventListReply.DiscardUnknown(m)
  587. }
  588. var xxx_messageInfo_EventListReply proto.InternalMessageInfo
  589. func (m *EventListReply) GetPage() int64 {
  590. if m != nil {
  591. return m.Page
  592. }
  593. return 0
  594. }
  595. func (m *EventListReply) GetTotal() int64 {
  596. if m != nil {
  597. return m.Total
  598. }
  599. return 0
  600. }
  601. func (m *EventListReply) GetList() []*EventItem {
  602. if m != nil {
  603. return m.List
  604. }
  605. return nil
  606. }
  607. type EventSignAddRequest struct {
  608. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  609. EventId int64 `protobuf:"varint,2,opt,name=event_id,json=eventId,proto3" json:"event_id"`
  610. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"`
  611. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
  612. Count int64 `protobuf:"varint,5,opt,name=count,proto3" json:"count"`
  613. Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
  614. HouseholdUid int64 `protobuf:"varint,7,opt,name=household_uid,json=householdUid,proto3" json:"household_uid"`
  615. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  616. XXX_unrecognized []byte `json:"-"`
  617. XXX_sizecache int32 `json:"-"`
  618. }
  619. func (m *EventSignAddRequest) Reset() { *m = EventSignAddRequest{} }
  620. func (m *EventSignAddRequest) String() string { return proto.CompactTextString(m) }
  621. func (*EventSignAddRequest) ProtoMessage() {}
  622. func (*EventSignAddRequest) Descriptor() ([]byte, []int) {
  623. return fileDescriptor_2d17a9d3f0ddf27e, []int{9}
  624. }
  625. func (m *EventSignAddRequest) XXX_Unmarshal(b []byte) error {
  626. return xxx_messageInfo_EventSignAddRequest.Unmarshal(m, b)
  627. }
  628. func (m *EventSignAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  629. return xxx_messageInfo_EventSignAddRequest.Marshal(b, m, deterministic)
  630. }
  631. func (m *EventSignAddRequest) XXX_Merge(src proto.Message) {
  632. xxx_messageInfo_EventSignAddRequest.Merge(m, src)
  633. }
  634. func (m *EventSignAddRequest) XXX_Size() int {
  635. return xxx_messageInfo_EventSignAddRequest.Size(m)
  636. }
  637. func (m *EventSignAddRequest) XXX_DiscardUnknown() {
  638. xxx_messageInfo_EventSignAddRequest.DiscardUnknown(m)
  639. }
  640. var xxx_messageInfo_EventSignAddRequest proto.InternalMessageInfo
  641. func (m *EventSignAddRequest) GetGardenId() int64 {
  642. if m != nil {
  643. return m.GardenId
  644. }
  645. return 0
  646. }
  647. func (m *EventSignAddRequest) GetEventId() int64 {
  648. if m != nil {
  649. return m.EventId
  650. }
  651. return 0
  652. }
  653. func (m *EventSignAddRequest) GetPhone() string {
  654. if m != nil {
  655. return m.Phone
  656. }
  657. return ""
  658. }
  659. func (m *EventSignAddRequest) GetName() string {
  660. if m != nil {
  661. return m.Name
  662. }
  663. return ""
  664. }
  665. func (m *EventSignAddRequest) GetCount() int64 {
  666. if m != nil {
  667. return m.Count
  668. }
  669. return 0
  670. }
  671. func (m *EventSignAddRequest) GetComment() string {
  672. if m != nil {
  673. return m.Comment
  674. }
  675. return ""
  676. }
  677. func (m *EventSignAddRequest) GetHouseholdUid() int64 {
  678. if m != nil {
  679. return m.HouseholdUid
  680. }
  681. return 0
  682. }
  683. type EventSignAddReply struct {
  684. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  685. XXX_unrecognized []byte `json:"-"`
  686. XXX_sizecache int32 `json:"-"`
  687. }
  688. func (m *EventSignAddReply) Reset() { *m = EventSignAddReply{} }
  689. func (m *EventSignAddReply) String() string { return proto.CompactTextString(m) }
  690. func (*EventSignAddReply) ProtoMessage() {}
  691. func (*EventSignAddReply) Descriptor() ([]byte, []int) {
  692. return fileDescriptor_2d17a9d3f0ddf27e, []int{10}
  693. }
  694. func (m *EventSignAddReply) XXX_Unmarshal(b []byte) error {
  695. return xxx_messageInfo_EventSignAddReply.Unmarshal(m, b)
  696. }
  697. func (m *EventSignAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  698. return xxx_messageInfo_EventSignAddReply.Marshal(b, m, deterministic)
  699. }
  700. func (m *EventSignAddReply) XXX_Merge(src proto.Message) {
  701. xxx_messageInfo_EventSignAddReply.Merge(m, src)
  702. }
  703. func (m *EventSignAddReply) XXX_Size() int {
  704. return xxx_messageInfo_EventSignAddReply.Size(m)
  705. }
  706. func (m *EventSignAddReply) XXX_DiscardUnknown() {
  707. xxx_messageInfo_EventSignAddReply.DiscardUnknown(m)
  708. }
  709. var xxx_messageInfo_EventSignAddReply proto.InternalMessageInfo
  710. type EventSignDelRequest struct {
  711. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  712. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
  713. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  714. XXX_unrecognized []byte `json:"-"`
  715. XXX_sizecache int32 `json:"-"`
  716. }
  717. func (m *EventSignDelRequest) Reset() { *m = EventSignDelRequest{} }
  718. func (m *EventSignDelRequest) String() string { return proto.CompactTextString(m) }
  719. func (*EventSignDelRequest) ProtoMessage() {}
  720. func (*EventSignDelRequest) Descriptor() ([]byte, []int) {
  721. return fileDescriptor_2d17a9d3f0ddf27e, []int{11}
  722. }
  723. func (m *EventSignDelRequest) XXX_Unmarshal(b []byte) error {
  724. return xxx_messageInfo_EventSignDelRequest.Unmarshal(m, b)
  725. }
  726. func (m *EventSignDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  727. return xxx_messageInfo_EventSignDelRequest.Marshal(b, m, deterministic)
  728. }
  729. func (m *EventSignDelRequest) XXX_Merge(src proto.Message) {
  730. xxx_messageInfo_EventSignDelRequest.Merge(m, src)
  731. }
  732. func (m *EventSignDelRequest) XXX_Size() int {
  733. return xxx_messageInfo_EventSignDelRequest.Size(m)
  734. }
  735. func (m *EventSignDelRequest) XXX_DiscardUnknown() {
  736. xxx_messageInfo_EventSignDelRequest.DiscardUnknown(m)
  737. }
  738. var xxx_messageInfo_EventSignDelRequest proto.InternalMessageInfo
  739. func (m *EventSignDelRequest) GetGardenId() int64 {
  740. if m != nil {
  741. return m.GardenId
  742. }
  743. return 0
  744. }
  745. func (m *EventSignDelRequest) GetId() int64 {
  746. if m != nil {
  747. return m.Id
  748. }
  749. return 0
  750. }
  751. type EventSignDelReply struct {
  752. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  753. XXX_unrecognized []byte `json:"-"`
  754. XXX_sizecache int32 `json:"-"`
  755. }
  756. func (m *EventSignDelReply) Reset() { *m = EventSignDelReply{} }
  757. func (m *EventSignDelReply) String() string { return proto.CompactTextString(m) }
  758. func (*EventSignDelReply) ProtoMessage() {}
  759. func (*EventSignDelReply) Descriptor() ([]byte, []int) {
  760. return fileDescriptor_2d17a9d3f0ddf27e, []int{12}
  761. }
  762. func (m *EventSignDelReply) XXX_Unmarshal(b []byte) error {
  763. return xxx_messageInfo_EventSignDelReply.Unmarshal(m, b)
  764. }
  765. func (m *EventSignDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  766. return xxx_messageInfo_EventSignDelReply.Marshal(b, m, deterministic)
  767. }
  768. func (m *EventSignDelReply) XXX_Merge(src proto.Message) {
  769. xxx_messageInfo_EventSignDelReply.Merge(m, src)
  770. }
  771. func (m *EventSignDelReply) XXX_Size() int {
  772. return xxx_messageInfo_EventSignDelReply.Size(m)
  773. }
  774. func (m *EventSignDelReply) XXX_DiscardUnknown() {
  775. xxx_messageInfo_EventSignDelReply.DiscardUnknown(m)
  776. }
  777. var xxx_messageInfo_EventSignDelReply proto.InternalMessageInfo
  778. type EventSignListRequest struct {
  779. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  780. EventId int64 `protobuf:"varint,2,opt,name=event_id,json=eventId,proto3" json:"event_id"`
  781. Page int64 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  782. PageSize int64 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  783. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  784. XXX_unrecognized []byte `json:"-"`
  785. XXX_sizecache int32 `json:"-"`
  786. }
  787. func (m *EventSignListRequest) Reset() { *m = EventSignListRequest{} }
  788. func (m *EventSignListRequest) String() string { return proto.CompactTextString(m) }
  789. func (*EventSignListRequest) ProtoMessage() {}
  790. func (*EventSignListRequest) Descriptor() ([]byte, []int) {
  791. return fileDescriptor_2d17a9d3f0ddf27e, []int{13}
  792. }
  793. func (m *EventSignListRequest) XXX_Unmarshal(b []byte) error {
  794. return xxx_messageInfo_EventSignListRequest.Unmarshal(m, b)
  795. }
  796. func (m *EventSignListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  797. return xxx_messageInfo_EventSignListRequest.Marshal(b, m, deterministic)
  798. }
  799. func (m *EventSignListRequest) XXX_Merge(src proto.Message) {
  800. xxx_messageInfo_EventSignListRequest.Merge(m, src)
  801. }
  802. func (m *EventSignListRequest) XXX_Size() int {
  803. return xxx_messageInfo_EventSignListRequest.Size(m)
  804. }
  805. func (m *EventSignListRequest) XXX_DiscardUnknown() {
  806. xxx_messageInfo_EventSignListRequest.DiscardUnknown(m)
  807. }
  808. var xxx_messageInfo_EventSignListRequest proto.InternalMessageInfo
  809. func (m *EventSignListRequest) GetGardenId() int64 {
  810. if m != nil {
  811. return m.GardenId
  812. }
  813. return 0
  814. }
  815. func (m *EventSignListRequest) GetEventId() int64 {
  816. if m != nil {
  817. return m.EventId
  818. }
  819. return 0
  820. }
  821. func (m *EventSignListRequest) GetPage() int64 {
  822. if m != nil {
  823. return m.Page
  824. }
  825. return 0
  826. }
  827. func (m *EventSignListRequest) GetPageSize() int64 {
  828. if m != nil {
  829. return m.PageSize
  830. }
  831. return 0
  832. }
  833. type EventSignItem struct {
  834. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  835. EventId int64 `protobuf:"varint,2,opt,name=event_id,json=eventId,proto3" json:"event_id"`
  836. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"`
  837. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
  838. // 人数
  839. Count int64 `protobuf:"varint,5,opt,name=count,proto3" json:"count"`
  840. Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
  841. SignTime string `protobuf:"bytes,7,opt,name=sign_time,json=signTime,proto3" json:"sign_time"`
  842. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  843. XXX_unrecognized []byte `json:"-"`
  844. XXX_sizecache int32 `json:"-"`
  845. }
  846. func (m *EventSignItem) Reset() { *m = EventSignItem{} }
  847. func (m *EventSignItem) String() string { return proto.CompactTextString(m) }
  848. func (*EventSignItem) ProtoMessage() {}
  849. func (*EventSignItem) Descriptor() ([]byte, []int) {
  850. return fileDescriptor_2d17a9d3f0ddf27e, []int{14}
  851. }
  852. func (m *EventSignItem) XXX_Unmarshal(b []byte) error {
  853. return xxx_messageInfo_EventSignItem.Unmarshal(m, b)
  854. }
  855. func (m *EventSignItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  856. return xxx_messageInfo_EventSignItem.Marshal(b, m, deterministic)
  857. }
  858. func (m *EventSignItem) XXX_Merge(src proto.Message) {
  859. xxx_messageInfo_EventSignItem.Merge(m, src)
  860. }
  861. func (m *EventSignItem) XXX_Size() int {
  862. return xxx_messageInfo_EventSignItem.Size(m)
  863. }
  864. func (m *EventSignItem) XXX_DiscardUnknown() {
  865. xxx_messageInfo_EventSignItem.DiscardUnknown(m)
  866. }
  867. var xxx_messageInfo_EventSignItem proto.InternalMessageInfo
  868. func (m *EventSignItem) GetId() int64 {
  869. if m != nil {
  870. return m.Id
  871. }
  872. return 0
  873. }
  874. func (m *EventSignItem) GetEventId() int64 {
  875. if m != nil {
  876. return m.EventId
  877. }
  878. return 0
  879. }
  880. func (m *EventSignItem) GetPhone() string {
  881. if m != nil {
  882. return m.Phone
  883. }
  884. return ""
  885. }
  886. func (m *EventSignItem) GetName() string {
  887. if m != nil {
  888. return m.Name
  889. }
  890. return ""
  891. }
  892. func (m *EventSignItem) GetCount() int64 {
  893. if m != nil {
  894. return m.Count
  895. }
  896. return 0
  897. }
  898. func (m *EventSignItem) GetComment() string {
  899. if m != nil {
  900. return m.Comment
  901. }
  902. return ""
  903. }
  904. func (m *EventSignItem) GetSignTime() string {
  905. if m != nil {
  906. return m.SignTime
  907. }
  908. return ""
  909. }
  910. type EventSignListReply struct {
  911. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  912. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  913. List []*EventSignItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  914. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  915. XXX_unrecognized []byte `json:"-"`
  916. XXX_sizecache int32 `json:"-"`
  917. }
  918. func (m *EventSignListReply) Reset() { *m = EventSignListReply{} }
  919. func (m *EventSignListReply) String() string { return proto.CompactTextString(m) }
  920. func (*EventSignListReply) ProtoMessage() {}
  921. func (*EventSignListReply) Descriptor() ([]byte, []int) {
  922. return fileDescriptor_2d17a9d3f0ddf27e, []int{15}
  923. }
  924. func (m *EventSignListReply) XXX_Unmarshal(b []byte) error {
  925. return xxx_messageInfo_EventSignListReply.Unmarshal(m, b)
  926. }
  927. func (m *EventSignListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  928. return xxx_messageInfo_EventSignListReply.Marshal(b, m, deterministic)
  929. }
  930. func (m *EventSignListReply) XXX_Merge(src proto.Message) {
  931. xxx_messageInfo_EventSignListReply.Merge(m, src)
  932. }
  933. func (m *EventSignListReply) XXX_Size() int {
  934. return xxx_messageInfo_EventSignListReply.Size(m)
  935. }
  936. func (m *EventSignListReply) XXX_DiscardUnknown() {
  937. xxx_messageInfo_EventSignListReply.DiscardUnknown(m)
  938. }
  939. var xxx_messageInfo_EventSignListReply proto.InternalMessageInfo
  940. func (m *EventSignListReply) GetPage() int64 {
  941. if m != nil {
  942. return m.Page
  943. }
  944. return 0
  945. }
  946. func (m *EventSignListReply) GetTotal() int64 {
  947. if m != nil {
  948. return m.Total
  949. }
  950. return 0
  951. }
  952. func (m *EventSignListReply) GetList() []*EventSignItem {
  953. if m != nil {
  954. return m.List
  955. }
  956. return nil
  957. }
  958. func init() {
  959. proto.RegisterType((*EventAddRequest)(nil), "pb_v1.EventAddRequest")
  960. proto.RegisterType((*EventAddReply)(nil), "pb_v1.EventAddReply")
  961. proto.RegisterType((*EventUpdateRequest)(nil), "pb_v1.EventUpdateRequest")
  962. proto.RegisterType((*EventUpdateReply)(nil), "pb_v1.EventUpdateReply")
  963. proto.RegisterType((*EventDelRequest)(nil), "pb_v1.EventDelRequest")
  964. proto.RegisterType((*EventDelReply)(nil), "pb_v1.EventDelReply")
  965. proto.RegisterType((*EventListRequest)(nil), "pb_v1.EventListRequest")
  966. proto.RegisterType((*EventItem)(nil), "pb_v1.EventItem")
  967. proto.RegisterType((*EventListReply)(nil), "pb_v1.EventListReply")
  968. proto.RegisterType((*EventSignAddRequest)(nil), "pb_v1.EventSignAddRequest")
  969. proto.RegisterType((*EventSignAddReply)(nil), "pb_v1.EventSignAddReply")
  970. proto.RegisterType((*EventSignDelRequest)(nil), "pb_v1.EventSignDelRequest")
  971. proto.RegisterType((*EventSignDelReply)(nil), "pb_v1.EventSignDelReply")
  972. proto.RegisterType((*EventSignListRequest)(nil), "pb_v1.EventSignListRequest")
  973. proto.RegisterType((*EventSignItem)(nil), "pb_v1.EventSignItem")
  974. proto.RegisterType((*EventSignListReply)(nil), "pb_v1.EventSignListReply")
  975. }
  976. func init() {
  977. proto.RegisterFile("event.proto", fileDescriptor_2d17a9d3f0ddf27e)
  978. }
  979. var fileDescriptor_2d17a9d3f0ddf27e = []byte{
  980. // 661 bytes of a gzipped FileDescriptorProto
  981. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x55, 0xcd, 0x6e, 0xd3, 0x4c,
  982. 0x14, 0x95, 0xed, 0xfc, 0xf9, 0xa6, 0x7f, 0xdf, 0xb4, 0xfa, 0x34, 0x9f, 0xaa, 0x7e, 0x0d, 0x86,
  983. 0x45, 0x36, 0x6d, 0x55, 0xd8, 0x23, 0xb5, 0xd0, 0x45, 0xa5, 0xae, 0x5c, 0xba, 0x61, 0x63, 0xdc,
  984. 0xcc, 0x6d, 0x32, 0x92, 0x7f, 0x06, 0x7b, 0x52, 0x94, 0x6e, 0x10, 0x0b, 0xde, 0x80, 0x17, 0xe1,
  985. 0x3d, 0x78, 0x04, 0x1e, 0x06, 0xcd, 0x1d, 0xdb, 0x49, 0xa0, 0xa0, 0xc0, 0x06, 0x21, 0x56, 0xb9,
  986. 0xf7, 0x78, 0x7c, 0x32, 0x73, 0xce, 0xb9, 0x63, 0xe8, 0xe3, 0x2d, 0x66, 0xfa, 0x50, 0x15, 0xb9,
  987. 0xce, 0x59, 0x5b, 0x5d, 0x47, 0xb7, 0xc7, 0xc1, 0x3b, 0x17, 0x36, 0xcf, 0x0c, 0x7c, 0x22, 0x44,
  988. 0x88, 0xaf, 0xa7, 0x58, 0x6a, 0xb6, 0x0b, 0xfe, 0x38, 0x2e, 0x04, 0x66, 0x91, 0x14, 0xdc, 0x19,
  989. 0x38, 0x43, 0x2f, 0xec, 0x59, 0xe0, 0x5c, 0xb0, 0x1d, 0x68, 0x6b, 0xa9, 0x13, 0xe4, 0xee, 0xc0,
  990. 0x19, 0xfa, 0xa1, 0x6d, 0x18, 0x87, 0xee, 0x28, 0xcf, 0x34, 0x66, 0x9a, 0x7b, 0x84, 0xd7, 0xad,
  991. 0x59, 0x5f, 0xea, 0xb8, 0xd0, 0xbc, 0x45, 0x44, 0xb6, 0x61, 0x5b, 0xe0, 0x61, 0x26, 0x78, 0x9b,
  992. 0x30, 0x53, 0xb2, 0xff, 0xa1, 0x5f, 0xca, 0x71, 0x16, 0x4d, 0x55, 0x64, 0x9e, 0x74, 0xe8, 0x89,
  993. 0x6f, 0xa0, 0x2b, 0x75, 0x96, 0x09, 0xf6, 0x00, 0xd6, 0x14, 0xe6, 0x2a, 0xc1, 0x28, 0x91, 0xa9,
  994. 0xd4, 0xbc, 0x4b, 0x0b, 0xfa, 0x16, 0xbb, 0x30, 0x90, 0x21, 0xbd, 0x41, 0xe4, 0x3d, 0x4b, 0x7a,
  995. 0x83, 0xc8, 0x18, 0xb4, 0x62, 0x21, 0x0a, 0xee, 0xd3, 0x9e, 0xa8, 0x36, 0xab, 0x94, 0x1c, 0x71,
  996. 0x18, 0x78, 0x43, 0x3f, 0x34, 0x65, 0xb0, 0x0f, 0xeb, 0x73, 0x09, 0x54, 0x32, 0x63, 0x1b, 0xe0,
  997. 0x36, 0x27, 0x77, 0xa5, 0x08, 0x3e, 0xb8, 0xc0, 0x68, 0xc5, 0x95, 0x12, 0xb1, 0xc6, 0xbf, 0x54,
  998. 0xa7, 0x4a, 0x96, 0x7e, 0x23, 0x0b, 0x83, 0xad, 0x25, 0x55, 0x54, 0x32, 0x0b, 0x9e, 0x56, 0x71,
  999. 0x7a, 0x8e, 0xc9, 0x4a, 0x32, 0x59, 0x4e, 0xb7, 0xe1, 0xdc, 0xac, 0xbc, 0xa0, 0xf7, 0x0d, 0xe1,
  1000. 0x7b, 0xa7, 0xfa, 0x97, 0x0b, 0x59, 0xea, 0x95, 0x28, 0x19, 0xb4, 0x54, 0x3c, 0xc6, 0x8a, 0x94,
  1001. 0x6a, 0xf3, 0x82, 0xf9, 0x8d, 0x4a, 0x79, 0x87, 0xa4, 0xbc, 0x17, 0xf6, 0x0c, 0x70, 0x29, 0xef,
  1002. 0x90, 0x3d, 0x84, 0xf5, 0x49, 0x3e, 0x2d, 0x71, 0x92, 0x27, 0x22, 0x9a, 0xca, 0x5a, 0xee, 0xb5,
  1003. 0x06, 0xbc, 0x92, 0x22, 0xf8, 0xec, 0x82, 0x4f, 0xfb, 0x38, 0xd7, 0x98, 0x7e, 0x9d, 0x90, 0x3f,
  1004. 0xdf, 0xed, 0x39, 0xd1, 0x28, 0x9f, 0x66, 0x9a, 0xc3, 0x22, 0xd1, 0x33, 0x03, 0xb1, 0x7f, 0xa1,
  1005. 0x53, 0xea, 0x58, 0x4f, 0x4b, 0x8a, 0x40, 0x3b, 0xac, 0x3a, 0xb6, 0x07, 0x30, 0x2a, 0x30, 0xd6,
  1006. 0x28, 0xa2, 0x58, 0xf3, 0x35, 0x22, 0xf5, 0x2b, 0xe4, 0x44, 0xd7, 0x39, 0x5a, 0x9f, 0xe7, 0x88,
  1007. 0x41, 0xcb, 0x9c, 0x80, 0x6f, 0x0c, 0x9c, 0x61, 0x2f, 0xa4, 0x3a, 0x78, 0x05, 0x1b, 0x0b, 0x2e,
  1008. 0x9b, 0x21, 0xac, 0x6d, 0x74, 0x16, 0x6c, 0x34, 0x32, 0xe7, 0x3a, 0x4e, 0x2a, 0x6f, 0x6d, 0xc3,
  1009. 0x1e, 0x41, 0x2b, 0x91, 0xa5, 0xd1, 0xd8, 0x1b, 0xf6, 0x1f, 0x6f, 0x1d, 0xd2, 0xcd, 0x76, 0xd8,
  1010. 0x98, 0x15, 0xd2, 0xd3, 0xe0, 0x93, 0x03, 0xdb, 0x84, 0x5d, 0xca, 0x71, 0xb6, 0xea, 0x6d, 0xf7,
  1011. 0x1f, 0xf4, 0xe8, 0xd2, 0x8c, 0x9a, 0x90, 0x76, 0xa9, 0xb7, 0x03, 0xae, 0x26, 0x79, 0x86, 0x95,
  1012. 0xb5, 0xb6, 0x31, 0xbb, 0xce, 0xe2, 0x14, 0xc9, 0x57, 0x3f, 0xa4, 0xda, 0xac, 0xb4, 0xa2, 0x5a,
  1013. 0x63, 0x6d, 0x63, 0xc3, 0x91, 0xa6, 0x26, 0x1c, 0x9d, 0x3a, 0x1c, 0xd4, 0x7e, 0x9b, 0xc7, 0xee,
  1014. 0x3d, 0x79, 0xdc, 0x86, 0x7f, 0x96, 0x4f, 0x63, 0x86, 0xe5, 0x74, 0xe1, 0x88, 0xbf, 0x3a, 0x81,
  1015. 0x8b, 0xc4, 0xcd, 0x14, 0xbe, 0x85, 0x9d, 0x06, 0x5c, 0x79, 0x10, 0x7f, 0x20, 0x5e, 0x6d, 0xae,
  1016. 0xf7, 0xbd, 0x19, 0x6d, 0x2d, 0xcf, 0x68, 0xf0, 0xd1, 0xa9, 0x2e, 0x06, 0xb3, 0x83, 0x7b, 0x47,
  1017. 0xf0, 0xb7, 0x58, 0xb5, 0x0b, 0x34, 0x8c, 0x91, 0x96, 0x29, 0x92, 0x4d, 0x7e, 0xd8, 0x33, 0xc0,
  1018. 0x0b, 0x99, 0x62, 0x30, 0xa9, 0xbe, 0x1a, 0x73, 0xd1, 0x7e, 0x2e, 0xd7, 0xc3, 0xa5, 0x5c, 0xef,
  1019. 0x2c, 0xe6, 0xba, 0x56, 0xc1, 0x66, 0xfb, 0x74, 0xff, 0xe5, 0x9e, 0x2a, 0x72, 0x85, 0x85, 0x9e,
  1020. 0x1d, 0x94, 0xb3, 0x52, 0x63, 0x7a, 0x30, 0x8e, 0x35, 0xbe, 0x89, 0x67, 0x47, 0xea, 0xfa, 0xe8,
  1021. 0xf6, 0xf8, 0xba, 0x43, 0x1f, 0xfd, 0x27, 0x5f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x38, 0xa9, 0x1c,
  1022. 0xce, 0x03, 0x08, 0x00, 0x00,
  1023. }