park.pb.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: park.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 ParkListRequest struct {
  20. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  21. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  22. XXX_unrecognized []byte `json:"-"`
  23. XXX_sizecache int32 `json:"-"`
  24. }
  25. func (m *ParkListRequest) Reset() { *m = ParkListRequest{} }
  26. func (m *ParkListRequest) String() string { return proto.CompactTextString(m) }
  27. func (*ParkListRequest) ProtoMessage() {}
  28. func (*ParkListRequest) Descriptor() ([]byte, []int) {
  29. return fileDescriptor_1e1e7f6a041ccf05, []int{0}
  30. }
  31. func (m *ParkListRequest) XXX_Unmarshal(b []byte) error {
  32. return xxx_messageInfo_ParkListRequest.Unmarshal(m, b)
  33. }
  34. func (m *ParkListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  35. return xxx_messageInfo_ParkListRequest.Marshal(b, m, deterministic)
  36. }
  37. func (m *ParkListRequest) XXX_Merge(src proto.Message) {
  38. xxx_messageInfo_ParkListRequest.Merge(m, src)
  39. }
  40. func (m *ParkListRequest) XXX_Size() int {
  41. return xxx_messageInfo_ParkListRequest.Size(m)
  42. }
  43. func (m *ParkListRequest) XXX_DiscardUnknown() {
  44. xxx_messageInfo_ParkListRequest.DiscardUnknown(m)
  45. }
  46. var xxx_messageInfo_ParkListRequest proto.InternalMessageInfo
  47. func (m *ParkListRequest) GetGardenId() int64 {
  48. if m != nil {
  49. return m.GardenId
  50. }
  51. return 0
  52. }
  53. type ParkItem struct {
  54. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  55. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  56. ParkNumber string `protobuf:"bytes,3,opt,name=park_number,json=parkNumber,proto3" json:"park_number"`
  57. ParkName string `protobuf:"bytes,4,opt,name=park_name,json=parkName,proto3" json:"park_name"`
  58. Comment string `protobuf:"bytes,5,opt,name=comment,proto3" json:"comment"`
  59. SpaceCount int64 `protobuf:"varint,6,opt,name=space_count,json=spaceCount,proto3" json:"space_count"`
  60. CreatedAt string `protobuf:"bytes,7,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  61. ParkType int32 `protobuf:"varint,8,opt,name=park_type,json=parkType,proto3" json:"park_type"`
  62. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  63. XXX_unrecognized []byte `json:"-"`
  64. XXX_sizecache int32 `json:"-"`
  65. }
  66. func (m *ParkItem) Reset() { *m = ParkItem{} }
  67. func (m *ParkItem) String() string { return proto.CompactTextString(m) }
  68. func (*ParkItem) ProtoMessage() {}
  69. func (*ParkItem) Descriptor() ([]byte, []int) {
  70. return fileDescriptor_1e1e7f6a041ccf05, []int{1}
  71. }
  72. func (m *ParkItem) XXX_Unmarshal(b []byte) error {
  73. return xxx_messageInfo_ParkItem.Unmarshal(m, b)
  74. }
  75. func (m *ParkItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  76. return xxx_messageInfo_ParkItem.Marshal(b, m, deterministic)
  77. }
  78. func (m *ParkItem) XXX_Merge(src proto.Message) {
  79. xxx_messageInfo_ParkItem.Merge(m, src)
  80. }
  81. func (m *ParkItem) XXX_Size() int {
  82. return xxx_messageInfo_ParkItem.Size(m)
  83. }
  84. func (m *ParkItem) XXX_DiscardUnknown() {
  85. xxx_messageInfo_ParkItem.DiscardUnknown(m)
  86. }
  87. var xxx_messageInfo_ParkItem proto.InternalMessageInfo
  88. func (m *ParkItem) GetId() int64 {
  89. if m != nil {
  90. return m.Id
  91. }
  92. return 0
  93. }
  94. func (m *ParkItem) GetGardenId() int64 {
  95. if m != nil {
  96. return m.GardenId
  97. }
  98. return 0
  99. }
  100. func (m *ParkItem) GetParkNumber() string {
  101. if m != nil {
  102. return m.ParkNumber
  103. }
  104. return ""
  105. }
  106. func (m *ParkItem) GetParkName() string {
  107. if m != nil {
  108. return m.ParkName
  109. }
  110. return ""
  111. }
  112. func (m *ParkItem) GetComment() string {
  113. if m != nil {
  114. return m.Comment
  115. }
  116. return ""
  117. }
  118. func (m *ParkItem) GetSpaceCount() int64 {
  119. if m != nil {
  120. return m.SpaceCount
  121. }
  122. return 0
  123. }
  124. func (m *ParkItem) GetCreatedAt() string {
  125. if m != nil {
  126. return m.CreatedAt
  127. }
  128. return ""
  129. }
  130. func (m *ParkItem) GetParkType() int32 {
  131. if m != nil {
  132. return m.ParkType
  133. }
  134. return 0
  135. }
  136. type ParkListReply struct {
  137. List []*ParkItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  138. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  139. XXX_unrecognized []byte `json:"-"`
  140. XXX_sizecache int32 `json:"-"`
  141. }
  142. func (m *ParkListReply) Reset() { *m = ParkListReply{} }
  143. func (m *ParkListReply) String() string { return proto.CompactTextString(m) }
  144. func (*ParkListReply) ProtoMessage() {}
  145. func (*ParkListReply) Descriptor() ([]byte, []int) {
  146. return fileDescriptor_1e1e7f6a041ccf05, []int{2}
  147. }
  148. func (m *ParkListReply) XXX_Unmarshal(b []byte) error {
  149. return xxx_messageInfo_ParkListReply.Unmarshal(m, b)
  150. }
  151. func (m *ParkListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  152. return xxx_messageInfo_ParkListReply.Marshal(b, m, deterministic)
  153. }
  154. func (m *ParkListReply) XXX_Merge(src proto.Message) {
  155. xxx_messageInfo_ParkListReply.Merge(m, src)
  156. }
  157. func (m *ParkListReply) XXX_Size() int {
  158. return xxx_messageInfo_ParkListReply.Size(m)
  159. }
  160. func (m *ParkListReply) XXX_DiscardUnknown() {
  161. xxx_messageInfo_ParkListReply.DiscardUnknown(m)
  162. }
  163. var xxx_messageInfo_ParkListReply proto.InternalMessageInfo
  164. func (m *ParkListReply) GetList() []*ParkItem {
  165. if m != nil {
  166. return m.List
  167. }
  168. return nil
  169. }
  170. type ParkSpaceListRequest struct {
  171. ParkId int64 `protobuf:"varint,1,opt,name=park_id,json=parkId,proto3" json:"park_id"`
  172. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  173. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  174. GardenId int64 `protobuf:"varint,4,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  175. SpaceType int32 `protobuf:"varint,5,opt,name=space_type,json=spaceType,proto3" json:"space_type"`
  176. SpaceNumber string `protobuf:"bytes,6,opt,name=space_number,json=spaceNumber,proto3" json:"space_number"`
  177. HouseId int64 `protobuf:"varint,7,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  178. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  179. XXX_unrecognized []byte `json:"-"`
  180. XXX_sizecache int32 `json:"-"`
  181. }
  182. func (m *ParkSpaceListRequest) Reset() { *m = ParkSpaceListRequest{} }
  183. func (m *ParkSpaceListRequest) String() string { return proto.CompactTextString(m) }
  184. func (*ParkSpaceListRequest) ProtoMessage() {}
  185. func (*ParkSpaceListRequest) Descriptor() ([]byte, []int) {
  186. return fileDescriptor_1e1e7f6a041ccf05, []int{3}
  187. }
  188. func (m *ParkSpaceListRequest) XXX_Unmarshal(b []byte) error {
  189. return xxx_messageInfo_ParkSpaceListRequest.Unmarshal(m, b)
  190. }
  191. func (m *ParkSpaceListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  192. return xxx_messageInfo_ParkSpaceListRequest.Marshal(b, m, deterministic)
  193. }
  194. func (m *ParkSpaceListRequest) XXX_Merge(src proto.Message) {
  195. xxx_messageInfo_ParkSpaceListRequest.Merge(m, src)
  196. }
  197. func (m *ParkSpaceListRequest) XXX_Size() int {
  198. return xxx_messageInfo_ParkSpaceListRequest.Size(m)
  199. }
  200. func (m *ParkSpaceListRequest) XXX_DiscardUnknown() {
  201. xxx_messageInfo_ParkSpaceListRequest.DiscardUnknown(m)
  202. }
  203. var xxx_messageInfo_ParkSpaceListRequest proto.InternalMessageInfo
  204. func (m *ParkSpaceListRequest) GetParkId() int64 {
  205. if m != nil {
  206. return m.ParkId
  207. }
  208. return 0
  209. }
  210. func (m *ParkSpaceListRequest) GetPage() int64 {
  211. if m != nil {
  212. return m.Page
  213. }
  214. return 0
  215. }
  216. func (m *ParkSpaceListRequest) GetPageSize() int64 {
  217. if m != nil {
  218. return m.PageSize
  219. }
  220. return 0
  221. }
  222. func (m *ParkSpaceListRequest) GetGardenId() int64 {
  223. if m != nil {
  224. return m.GardenId
  225. }
  226. return 0
  227. }
  228. func (m *ParkSpaceListRequest) GetSpaceType() int32 {
  229. if m != nil {
  230. return m.SpaceType
  231. }
  232. return 0
  233. }
  234. func (m *ParkSpaceListRequest) GetSpaceNumber() string {
  235. if m != nil {
  236. return m.SpaceNumber
  237. }
  238. return ""
  239. }
  240. func (m *ParkSpaceListRequest) GetHouseId() int64 {
  241. if m != nil {
  242. return m.HouseId
  243. }
  244. return 0
  245. }
  246. type ParkSpaceItem struct {
  247. SpaceNumber string `protobuf:"bytes,1,opt,name=space_number,json=spaceNumber,proto3" json:"space_number"`
  248. SpaceArea float64 `protobuf:"fixed64,2,opt,name=space_area,json=spaceArea,proto3" json:"space_area"`
  249. Comment string `protobuf:"bytes,3,opt,name=comment,proto3" json:"comment"`
  250. ParkId int64 `protobuf:"varint,4,opt,name=park_id,json=parkId,proto3" json:"park_id"`
  251. SpaceType int32 `protobuf:"varint,5,opt,name=space_type,json=spaceType,proto3" json:"space_type"`
  252. Id int64 `protobuf:"varint,6,opt,name=id,proto3" json:"id"`
  253. CreatedAt string `protobuf:"bytes,7,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  254. ParkNumber string `protobuf:"bytes,8,opt,name=park_number,json=parkNumber,proto3" json:"park_number"`
  255. ParkName string `protobuf:"bytes,9,opt,name=park_name,json=parkName,proto3" json:"park_name"`
  256. ParkType int32 `protobuf:"varint,10,opt,name=park_type,json=parkType,proto3" json:"park_type"`
  257. HouseId int64 `protobuf:"varint,11,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  258. HouseName string `protobuf:"bytes,12,opt,name=house_name,json=houseName,proto3" json:"house_name"`
  259. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  260. XXX_unrecognized []byte `json:"-"`
  261. XXX_sizecache int32 `json:"-"`
  262. }
  263. func (m *ParkSpaceItem) Reset() { *m = ParkSpaceItem{} }
  264. func (m *ParkSpaceItem) String() string { return proto.CompactTextString(m) }
  265. func (*ParkSpaceItem) ProtoMessage() {}
  266. func (*ParkSpaceItem) Descriptor() ([]byte, []int) {
  267. return fileDescriptor_1e1e7f6a041ccf05, []int{4}
  268. }
  269. func (m *ParkSpaceItem) XXX_Unmarshal(b []byte) error {
  270. return xxx_messageInfo_ParkSpaceItem.Unmarshal(m, b)
  271. }
  272. func (m *ParkSpaceItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  273. return xxx_messageInfo_ParkSpaceItem.Marshal(b, m, deterministic)
  274. }
  275. func (m *ParkSpaceItem) XXX_Merge(src proto.Message) {
  276. xxx_messageInfo_ParkSpaceItem.Merge(m, src)
  277. }
  278. func (m *ParkSpaceItem) XXX_Size() int {
  279. return xxx_messageInfo_ParkSpaceItem.Size(m)
  280. }
  281. func (m *ParkSpaceItem) XXX_DiscardUnknown() {
  282. xxx_messageInfo_ParkSpaceItem.DiscardUnknown(m)
  283. }
  284. var xxx_messageInfo_ParkSpaceItem proto.InternalMessageInfo
  285. func (m *ParkSpaceItem) GetSpaceNumber() string {
  286. if m != nil {
  287. return m.SpaceNumber
  288. }
  289. return ""
  290. }
  291. func (m *ParkSpaceItem) GetSpaceArea() float64 {
  292. if m != nil {
  293. return m.SpaceArea
  294. }
  295. return 0
  296. }
  297. func (m *ParkSpaceItem) GetComment() string {
  298. if m != nil {
  299. return m.Comment
  300. }
  301. return ""
  302. }
  303. func (m *ParkSpaceItem) GetParkId() int64 {
  304. if m != nil {
  305. return m.ParkId
  306. }
  307. return 0
  308. }
  309. func (m *ParkSpaceItem) GetSpaceType() int32 {
  310. if m != nil {
  311. return m.SpaceType
  312. }
  313. return 0
  314. }
  315. func (m *ParkSpaceItem) GetId() int64 {
  316. if m != nil {
  317. return m.Id
  318. }
  319. return 0
  320. }
  321. func (m *ParkSpaceItem) GetCreatedAt() string {
  322. if m != nil {
  323. return m.CreatedAt
  324. }
  325. return ""
  326. }
  327. func (m *ParkSpaceItem) GetParkNumber() string {
  328. if m != nil {
  329. return m.ParkNumber
  330. }
  331. return ""
  332. }
  333. func (m *ParkSpaceItem) GetParkName() string {
  334. if m != nil {
  335. return m.ParkName
  336. }
  337. return ""
  338. }
  339. func (m *ParkSpaceItem) GetParkType() int32 {
  340. if m != nil {
  341. return m.ParkType
  342. }
  343. return 0
  344. }
  345. func (m *ParkSpaceItem) GetHouseId() int64 {
  346. if m != nil {
  347. return m.HouseId
  348. }
  349. return 0
  350. }
  351. func (m *ParkSpaceItem) GetHouseName() string {
  352. if m != nil {
  353. return m.HouseName
  354. }
  355. return ""
  356. }
  357. type ParkSpaceListReply struct {
  358. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  359. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  360. List []*ParkSpaceItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  361. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  362. XXX_unrecognized []byte `json:"-"`
  363. XXX_sizecache int32 `json:"-"`
  364. }
  365. func (m *ParkSpaceListReply) Reset() { *m = ParkSpaceListReply{} }
  366. func (m *ParkSpaceListReply) String() string { return proto.CompactTextString(m) }
  367. func (*ParkSpaceListReply) ProtoMessage() {}
  368. func (*ParkSpaceListReply) Descriptor() ([]byte, []int) {
  369. return fileDescriptor_1e1e7f6a041ccf05, []int{5}
  370. }
  371. func (m *ParkSpaceListReply) XXX_Unmarshal(b []byte) error {
  372. return xxx_messageInfo_ParkSpaceListReply.Unmarshal(m, b)
  373. }
  374. func (m *ParkSpaceListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  375. return xxx_messageInfo_ParkSpaceListReply.Marshal(b, m, deterministic)
  376. }
  377. func (m *ParkSpaceListReply) XXX_Merge(src proto.Message) {
  378. xxx_messageInfo_ParkSpaceListReply.Merge(m, src)
  379. }
  380. func (m *ParkSpaceListReply) XXX_Size() int {
  381. return xxx_messageInfo_ParkSpaceListReply.Size(m)
  382. }
  383. func (m *ParkSpaceListReply) XXX_DiscardUnknown() {
  384. xxx_messageInfo_ParkSpaceListReply.DiscardUnknown(m)
  385. }
  386. var xxx_messageInfo_ParkSpaceListReply proto.InternalMessageInfo
  387. func (m *ParkSpaceListReply) GetTotal() int64 {
  388. if m != nil {
  389. return m.Total
  390. }
  391. return 0
  392. }
  393. func (m *ParkSpaceListReply) GetPage() int64 {
  394. if m != nil {
  395. return m.Page
  396. }
  397. return 0
  398. }
  399. func (m *ParkSpaceListReply) GetList() []*ParkSpaceItem {
  400. if m != nil {
  401. return m.List
  402. }
  403. return nil
  404. }
  405. func init() {
  406. proto.RegisterType((*ParkListRequest)(nil), "pb_v1.ParkListRequest")
  407. proto.RegisterType((*ParkItem)(nil), "pb_v1.ParkItem")
  408. proto.RegisterType((*ParkListReply)(nil), "pb_v1.ParkListReply")
  409. proto.RegisterType((*ParkSpaceListRequest)(nil), "pb_v1.ParkSpaceListRequest")
  410. proto.RegisterType((*ParkSpaceItem)(nil), "pb_v1.ParkSpaceItem")
  411. proto.RegisterType((*ParkSpaceListReply)(nil), "pb_v1.ParkSpaceListReply")
  412. }
  413. func init() {
  414. proto.RegisterFile("park.proto", fileDescriptor_1e1e7f6a041ccf05)
  415. }
  416. var fileDescriptor_1e1e7f6a041ccf05 = []byte{
  417. // 502 bytes of a gzipped FileDescriptorProto
  418. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x94, 0xcf, 0x6e, 0xd3, 0x40,
  419. 0x10, 0xc6, 0xe5, 0xf8, 0xff, 0xb4, 0x50, 0x69, 0x15, 0x09, 0x23, 0x54, 0x61, 0xcc, 0xc5, 0x97,
  420. 0xa6, 0x2a, 0xf0, 0x02, 0x85, 0x53, 0x24, 0x84, 0x50, 0xca, 0x89, 0x8b, 0xb5, 0x89, 0x47, 0x8e,
  421. 0xd5, 0x38, 0x5e, 0xd6, 0x9b, 0x22, 0xf7, 0x51, 0x79, 0x01, 0x2e, 0x3c, 0x04, 0xda, 0x59, 0xd7,
  422. 0x64, 0x0d, 0xa2, 0xb7, 0xec, 0x8c, 0x67, 0xe6, 0x9b, 0x6f, 0x7e, 0x0a, 0x80, 0xe0, 0xf2, 0x76,
  423. 0x21, 0x64, 0xab, 0x5a, 0xe6, 0x8b, 0x75, 0x71, 0x77, 0x95, 0x2d, 0xe0, 0xec, 0x33, 0x97, 0xb7,
  424. 0x1f, 0xeb, 0x4e, 0xad, 0xf0, 0xdb, 0x01, 0x3b, 0xc5, 0x5e, 0x40, 0x5c, 0x71, 0x59, 0xe2, 0xbe,
  425. 0xa8, 0xcb, 0xc4, 0x49, 0x9d, 0xdc, 0x5d, 0x45, 0x26, 0xb0, 0x2c, 0xb3, 0x5f, 0x0e, 0x44, 0xba,
  426. 0x60, 0xa9, 0xb0, 0x61, 0x4f, 0x61, 0x36, 0x7e, 0x32, 0xab, 0x4b, 0xbb, 0x72, 0x66, 0x57, 0xb2,
  427. 0x97, 0x70, 0xa2, 0xc7, 0x17, 0xfb, 0x43, 0xb3, 0x46, 0x99, 0xb8, 0xa9, 0x93, 0xc7, 0x2b, 0x52,
  428. 0xf4, 0x89, 0x22, 0xba, 0xda, 0x7c, 0xc0, 0x1b, 0x4c, 0x3c, 0x4a, 0x47, 0x94, 0xe6, 0x0d, 0xb2,
  429. 0x04, 0xc2, 0x4d, 0xdb, 0x34, 0xb8, 0x57, 0x89, 0x4f, 0xa9, 0x87, 0xa7, 0xee, 0xdb, 0x09, 0xbe,
  430. 0xc1, 0x62, 0xd3, 0x1e, 0xf6, 0x2a, 0x09, 0x68, 0x2c, 0x50, 0xe8, 0x83, 0x8e, 0xb0, 0x73, 0x80,
  431. 0x8d, 0x44, 0xae, 0xb0, 0x2c, 0xb8, 0x4a, 0x42, 0xaa, 0x8e, 0x87, 0xc8, 0xb5, 0x1a, 0xc7, 0xaa,
  432. 0x5e, 0x60, 0x12, 0xa5, 0x4e, 0xee, 0x9b, 0xb1, 0x5f, 0x7a, 0x81, 0xd9, 0x3b, 0x78, 0xf2, 0xc7,
  433. 0x1e, 0xb1, 0xeb, 0xd9, 0x6b, 0xf0, 0x76, 0x75, 0xa7, 0x12, 0x27, 0x75, 0xf3, 0x93, 0x37, 0x67,
  434. 0x0b, 0x72, 0x71, 0xf1, 0xe0, 0xc8, 0x8a, 0x92, 0xd9, 0x0f, 0x07, 0xe6, 0x3a, 0x74, 0xa3, 0x45,
  435. 0x1c, 0x5b, 0xfb, 0x0c, 0x42, 0x9a, 0x35, 0xba, 0x16, 0xe8, 0xe7, 0xb2, 0x64, 0x0c, 0x3c, 0xc1,
  436. 0x2b, 0x1c, 0x4c, 0xa3, 0xdf, 0x46, 0x58, 0x85, 0x45, 0x57, 0xdf, 0x23, 0xd9, 0xe5, 0x6a, 0x61,
  437. 0x15, 0xde, 0xd4, 0xf7, 0x68, 0x5b, 0xed, 0x4d, 0xac, 0x3e, 0x07, 0xb3, 0xbf, 0xd9, 0xc9, 0xa7,
  438. 0x9d, 0x62, 0x8a, 0xe8, 0xa5, 0xd8, 0x2b, 0x38, 0x35, 0xe9, 0xe1, 0x14, 0x01, 0x59, 0x62, 0x5c,
  439. 0x1c, 0x6e, 0xf1, 0x1c, 0xa2, 0x6d, 0x7b, 0xe8, 0x50, 0x77, 0x0f, 0xa9, 0x7b, 0x48, 0xef, 0x65,
  440. 0x99, 0xfd, 0x9c, 0x19, 0x4f, 0x68, 0x39, 0xc2, 0x60, 0xda, 0xcf, 0xf9, 0xbb, 0xdf, 0xa8, 0x88,
  441. 0x4b, 0xe4, 0xb4, 0xa5, 0x33, 0x28, 0xba, 0x96, 0xc8, 0x8f, 0xaf, 0xeb, 0xda, 0xd7, 0x3d, 0x72,
  442. 0xcc, 0xb3, 0x1c, 0x7b, 0x64, 0x47, 0x83, 0x66, 0x30, 0xa2, 0xf9, 0x08, 0x04, 0x13, 0x38, 0xa3,
  443. 0xff, 0xc3, 0x19, 0x4f, 0xe0, 0xb4, 0x10, 0x02, 0x1b, 0x21, 0xcb, 0xca, 0x13, 0xcb, 0x4a, 0x2d,
  444. 0xca, 0xa4, 0xa8, 0xeb, 0xa9, 0x11, 0x45, 0x11, 0xdd, 0x36, 0xdb, 0x02, 0x9b, 0x50, 0xa4, 0x09,
  445. 0x9c, 0x83, 0xaf, 0x5a, 0xc5, 0x77, 0x03, 0x41, 0xe6, 0xf1, 0x4f, 0x80, 0xf2, 0x81, 0x55, 0x97,
  446. 0x58, 0x9d, 0x1f, 0xb1, 0x3a, 0xde, 0xce, 0x00, 0xfb, 0x3e, 0xfb, 0x9a, 0x0a, 0xd9, 0x0a, 0x94,
  447. 0xaa, 0xbf, 0xa0, 0xf9, 0xdb, 0x76, 0x57, 0x5e, 0x54, 0x5c, 0xe1, 0x77, 0xde, 0x5f, 0x8a, 0xf5,
  448. 0xe5, 0xdd, 0xd5, 0x3a, 0xa0, 0xff, 0x8d, 0xb7, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x4a,
  449. 0xe0, 0xac, 0x45, 0x04, 0x00, 0x00,
  450. }