house_rent.pb.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: house_rent.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 HouseRentManagerListRequest struct {
  20. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  21. RentId int64 `protobuf:"varint,4,opt,name=rent_id,json=rentId,proto3" json:"rent_id"`
  22. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  23. XXX_unrecognized []byte `json:"-"`
  24. XXX_sizecache int32 `json:"-"`
  25. }
  26. func (m *HouseRentManagerListRequest) Reset() { *m = HouseRentManagerListRequest{} }
  27. func (m *HouseRentManagerListRequest) String() string { return proto.CompactTextString(m) }
  28. func (*HouseRentManagerListRequest) ProtoMessage() {}
  29. func (*HouseRentManagerListRequest) Descriptor() ([]byte, []int) {
  30. return fileDescriptor_9c4b1cddab293c85, []int{0}
  31. }
  32. func (m *HouseRentManagerListRequest) XXX_Unmarshal(b []byte) error {
  33. return xxx_messageInfo_HouseRentManagerListRequest.Unmarshal(m, b)
  34. }
  35. func (m *HouseRentManagerListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  36. return xxx_messageInfo_HouseRentManagerListRequest.Marshal(b, m, deterministic)
  37. }
  38. func (m *HouseRentManagerListRequest) XXX_Merge(src proto.Message) {
  39. xxx_messageInfo_HouseRentManagerListRequest.Merge(m, src)
  40. }
  41. func (m *HouseRentManagerListRequest) XXX_Size() int {
  42. return xxx_messageInfo_HouseRentManagerListRequest.Size(m)
  43. }
  44. func (m *HouseRentManagerListRequest) XXX_DiscardUnknown() {
  45. xxx_messageInfo_HouseRentManagerListRequest.DiscardUnknown(m)
  46. }
  47. var xxx_messageInfo_HouseRentManagerListRequest proto.InternalMessageInfo
  48. func (m *HouseRentManagerListRequest) GetGardenId() int64 {
  49. if m != nil {
  50. return m.GardenId
  51. }
  52. return 0
  53. }
  54. func (m *HouseRentManagerListRequest) GetRentId() int64 {
  55. if m != nil {
  56. return m.RentId
  57. }
  58. return 0
  59. }
  60. type HouseRentManagerItem struct {
  61. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  62. ManagerUid int64 `protobuf:"varint,2,opt,name=manager_uid,json=managerUid,proto3" json:"manager_uid"`
  63. // 姓名
  64. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  65. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  66. // 账号
  67. UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name"`
  68. OpenimId string `protobuf:"bytes,6,opt,name=openim_id,json=openimId,proto3" json:"openim_id"`
  69. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  70. XXX_unrecognized []byte `json:"-"`
  71. XXX_sizecache int32 `json:"-"`
  72. }
  73. func (m *HouseRentManagerItem) Reset() { *m = HouseRentManagerItem{} }
  74. func (m *HouseRentManagerItem) String() string { return proto.CompactTextString(m) }
  75. func (*HouseRentManagerItem) ProtoMessage() {}
  76. func (*HouseRentManagerItem) Descriptor() ([]byte, []int) {
  77. return fileDescriptor_9c4b1cddab293c85, []int{1}
  78. }
  79. func (m *HouseRentManagerItem) XXX_Unmarshal(b []byte) error {
  80. return xxx_messageInfo_HouseRentManagerItem.Unmarshal(m, b)
  81. }
  82. func (m *HouseRentManagerItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  83. return xxx_messageInfo_HouseRentManagerItem.Marshal(b, m, deterministic)
  84. }
  85. func (m *HouseRentManagerItem) XXX_Merge(src proto.Message) {
  86. xxx_messageInfo_HouseRentManagerItem.Merge(m, src)
  87. }
  88. func (m *HouseRentManagerItem) XXX_Size() int {
  89. return xxx_messageInfo_HouseRentManagerItem.Size(m)
  90. }
  91. func (m *HouseRentManagerItem) XXX_DiscardUnknown() {
  92. xxx_messageInfo_HouseRentManagerItem.DiscardUnknown(m)
  93. }
  94. var xxx_messageInfo_HouseRentManagerItem proto.InternalMessageInfo
  95. func (m *HouseRentManagerItem) GetId() int64 {
  96. if m != nil {
  97. return m.Id
  98. }
  99. return 0
  100. }
  101. func (m *HouseRentManagerItem) GetManagerUid() int64 {
  102. if m != nil {
  103. return m.ManagerUid
  104. }
  105. return 0
  106. }
  107. func (m *HouseRentManagerItem) GetName() string {
  108. if m != nil {
  109. return m.Name
  110. }
  111. return ""
  112. }
  113. func (m *HouseRentManagerItem) GetPhone() string {
  114. if m != nil {
  115. return m.Phone
  116. }
  117. return ""
  118. }
  119. func (m *HouseRentManagerItem) GetUserName() string {
  120. if m != nil {
  121. return m.UserName
  122. }
  123. return ""
  124. }
  125. func (m *HouseRentManagerItem) GetOpenimId() string {
  126. if m != nil {
  127. return m.OpenimId
  128. }
  129. return ""
  130. }
  131. type HouseRentManagerListReply struct {
  132. List []*HouseRentManagerItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  133. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  134. XXX_unrecognized []byte `json:"-"`
  135. XXX_sizecache int32 `json:"-"`
  136. }
  137. func (m *HouseRentManagerListReply) Reset() { *m = HouseRentManagerListReply{} }
  138. func (m *HouseRentManagerListReply) String() string { return proto.CompactTextString(m) }
  139. func (*HouseRentManagerListReply) ProtoMessage() {}
  140. func (*HouseRentManagerListReply) Descriptor() ([]byte, []int) {
  141. return fileDescriptor_9c4b1cddab293c85, []int{2}
  142. }
  143. func (m *HouseRentManagerListReply) XXX_Unmarshal(b []byte) error {
  144. return xxx_messageInfo_HouseRentManagerListReply.Unmarshal(m, b)
  145. }
  146. func (m *HouseRentManagerListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  147. return xxx_messageInfo_HouseRentManagerListReply.Marshal(b, m, deterministic)
  148. }
  149. func (m *HouseRentManagerListReply) XXX_Merge(src proto.Message) {
  150. xxx_messageInfo_HouseRentManagerListReply.Merge(m, src)
  151. }
  152. func (m *HouseRentManagerListReply) XXX_Size() int {
  153. return xxx_messageInfo_HouseRentManagerListReply.Size(m)
  154. }
  155. func (m *HouseRentManagerListReply) XXX_DiscardUnknown() {
  156. xxx_messageInfo_HouseRentManagerListReply.DiscardUnknown(m)
  157. }
  158. var xxx_messageInfo_HouseRentManagerListReply proto.InternalMessageInfo
  159. func (m *HouseRentManagerListReply) GetList() []*HouseRentManagerItem {
  160. if m != nil {
  161. return m.List
  162. }
  163. return nil
  164. }
  165. type GardenHouseRentInfoRequest struct {
  166. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  167. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  168. XXX_unrecognized []byte `json:"-"`
  169. XXX_sizecache int32 `json:"-"`
  170. }
  171. func (m *GardenHouseRentInfoRequest) Reset() { *m = GardenHouseRentInfoRequest{} }
  172. func (m *GardenHouseRentInfoRequest) String() string { return proto.CompactTextString(m) }
  173. func (*GardenHouseRentInfoRequest) ProtoMessage() {}
  174. func (*GardenHouseRentInfoRequest) Descriptor() ([]byte, []int) {
  175. return fileDescriptor_9c4b1cddab293c85, []int{3}
  176. }
  177. func (m *GardenHouseRentInfoRequest) XXX_Unmarshal(b []byte) error {
  178. return xxx_messageInfo_GardenHouseRentInfoRequest.Unmarshal(m, b)
  179. }
  180. func (m *GardenHouseRentInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  181. return xxx_messageInfo_GardenHouseRentInfoRequest.Marshal(b, m, deterministic)
  182. }
  183. func (m *GardenHouseRentInfoRequest) XXX_Merge(src proto.Message) {
  184. xxx_messageInfo_GardenHouseRentInfoRequest.Merge(m, src)
  185. }
  186. func (m *GardenHouseRentInfoRequest) XXX_Size() int {
  187. return xxx_messageInfo_GardenHouseRentInfoRequest.Size(m)
  188. }
  189. func (m *GardenHouseRentInfoRequest) XXX_DiscardUnknown() {
  190. xxx_messageInfo_GardenHouseRentInfoRequest.DiscardUnknown(m)
  191. }
  192. var xxx_messageInfo_GardenHouseRentInfoRequest proto.InternalMessageInfo
  193. func (m *GardenHouseRentInfoRequest) GetGardenId() int64 {
  194. if m != nil {
  195. return m.GardenId
  196. }
  197. return 0
  198. }
  199. type GardenHouseRentInfoReply struct {
  200. AvgPrice int64 `protobuf:"varint,1,opt,name=avg_price,json=avgPrice,proto3" json:"avg_price"`
  201. RentCount int64 `protobuf:"varint,2,opt,name=rent_count,json=rentCount,proto3" json:"rent_count"`
  202. SellCount int64 `protobuf:"varint,3,opt,name=sell_count,json=sellCount,proto3" json:"sell_count"`
  203. // 1塔楼 2 板楼 3 塔板结合 4 其他
  204. BuildingType int32 `protobuf:"varint,31,opt,name=building_type,json=buildingType,proto3" json:"building_type"`
  205. // 建成年份开始时间戳
  206. BuildingStart int64 `protobuf:"varint,32,opt,name=building_start,json=buildingStart,proto3" json:"building_start"`
  207. // 建成年份结束时间戳
  208. BuildingEnd int64 `protobuf:"varint,33,opt,name=building_end,json=buildingEnd,proto3" json:"building_end"`
  209. // 绿化率
  210. GreenPercent float64 `protobuf:"fixed64,34,opt,name=green_percent,json=greenPercent,proto3" json:"green_percent"`
  211. // 容积率
  212. AreaPercent float64 `protobuf:"fixed64,35,opt,name=area_percent,json=areaPercent,proto3" json:"area_percent"`
  213. // 车位配比
  214. SpaceInfo string `protobuf:"bytes,36,opt,name=space_info,json=spaceInfo,proto3" json:"space_info"`
  215. // 占地面积
  216. CoveredArea float64 `protobuf:"fixed64,37,opt,name=covered_area,json=coveredArea,proto3" json:"covered_area"`
  217. // 建筑面积
  218. BuildingArea float64 `protobuf:"fixed64,38,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
  219. // 小区图片
  220. GardenPics []string `protobuf:"bytes,39,rep,name=garden_pics,json=gardenPics,proto3" json:"garden_pics"`
  221. // 开发企业
  222. BuildingCompany string `protobuf:"bytes,40,opt,name=building_company,json=buildingCompany,proto3" json:"building_company"`
  223. // 总户数
  224. HouseTotal int64 `protobuf:"varint,41,opt,name=house_total,json=houseTotal,proto3" json:"house_total"`
  225. // 固定车位数
  226. SpaceTotal int64 `protobuf:"varint,42,opt,name=space_total,json=spaceTotal,proto3" json:"space_total"`
  227. // 物业费开始,单位分
  228. PropertyFeeStart int64 `protobuf:"varint,43,opt,name=property_fee_start,json=propertyFeeStart,proto3" json:"property_fee_start"`
  229. // 物业费结束, 单位分
  230. PropertyFeeEnd int64 `protobuf:"varint,44,opt,name=property_fee_end,json=propertyFeeEnd,proto3" json:"property_fee_end"`
  231. // 水费类型多选 1 民用 2 商用
  232. WaterType []int32 `protobuf:"varint,45,rep,packed,name=water_type,json=waterType,proto3" json:"water_type"`
  233. // 电费类型多选 1 民用 2 商用
  234. ElectricType []int32 `protobuf:"varint,46,rep,packed,name=electric_type,json=electricType,proto3" json:"electric_type"`
  235. // 燃气费开始,单位分
  236. GasFeeStart int64 `protobuf:"varint,47,opt,name=gas_fee_start,json=gasFeeStart,proto3" json:"gas_fee_start"`
  237. // 燃气费开始,单位分
  238. GasFeeEnd int64 `protobuf:"varint,48,opt,name=gas_fee_end,json=gasFeeEnd,proto3" json:"gas_fee_end"`
  239. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  240. XXX_unrecognized []byte `json:"-"`
  241. XXX_sizecache int32 `json:"-"`
  242. }
  243. func (m *GardenHouseRentInfoReply) Reset() { *m = GardenHouseRentInfoReply{} }
  244. func (m *GardenHouseRentInfoReply) String() string { return proto.CompactTextString(m) }
  245. func (*GardenHouseRentInfoReply) ProtoMessage() {}
  246. func (*GardenHouseRentInfoReply) Descriptor() ([]byte, []int) {
  247. return fileDescriptor_9c4b1cddab293c85, []int{4}
  248. }
  249. func (m *GardenHouseRentInfoReply) XXX_Unmarshal(b []byte) error {
  250. return xxx_messageInfo_GardenHouseRentInfoReply.Unmarshal(m, b)
  251. }
  252. func (m *GardenHouseRentInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  253. return xxx_messageInfo_GardenHouseRentInfoReply.Marshal(b, m, deterministic)
  254. }
  255. func (m *GardenHouseRentInfoReply) XXX_Merge(src proto.Message) {
  256. xxx_messageInfo_GardenHouseRentInfoReply.Merge(m, src)
  257. }
  258. func (m *GardenHouseRentInfoReply) XXX_Size() int {
  259. return xxx_messageInfo_GardenHouseRentInfoReply.Size(m)
  260. }
  261. func (m *GardenHouseRentInfoReply) XXX_DiscardUnknown() {
  262. xxx_messageInfo_GardenHouseRentInfoReply.DiscardUnknown(m)
  263. }
  264. var xxx_messageInfo_GardenHouseRentInfoReply proto.InternalMessageInfo
  265. func (m *GardenHouseRentInfoReply) GetAvgPrice() int64 {
  266. if m != nil {
  267. return m.AvgPrice
  268. }
  269. return 0
  270. }
  271. func (m *GardenHouseRentInfoReply) GetRentCount() int64 {
  272. if m != nil {
  273. return m.RentCount
  274. }
  275. return 0
  276. }
  277. func (m *GardenHouseRentInfoReply) GetSellCount() int64 {
  278. if m != nil {
  279. return m.SellCount
  280. }
  281. return 0
  282. }
  283. func (m *GardenHouseRentInfoReply) GetBuildingType() int32 {
  284. if m != nil {
  285. return m.BuildingType
  286. }
  287. return 0
  288. }
  289. func (m *GardenHouseRentInfoReply) GetBuildingStart() int64 {
  290. if m != nil {
  291. return m.BuildingStart
  292. }
  293. return 0
  294. }
  295. func (m *GardenHouseRentInfoReply) GetBuildingEnd() int64 {
  296. if m != nil {
  297. return m.BuildingEnd
  298. }
  299. return 0
  300. }
  301. func (m *GardenHouseRentInfoReply) GetGreenPercent() float64 {
  302. if m != nil {
  303. return m.GreenPercent
  304. }
  305. return 0
  306. }
  307. func (m *GardenHouseRentInfoReply) GetAreaPercent() float64 {
  308. if m != nil {
  309. return m.AreaPercent
  310. }
  311. return 0
  312. }
  313. func (m *GardenHouseRentInfoReply) GetSpaceInfo() string {
  314. if m != nil {
  315. return m.SpaceInfo
  316. }
  317. return ""
  318. }
  319. func (m *GardenHouseRentInfoReply) GetCoveredArea() float64 {
  320. if m != nil {
  321. return m.CoveredArea
  322. }
  323. return 0
  324. }
  325. func (m *GardenHouseRentInfoReply) GetBuildingArea() float64 {
  326. if m != nil {
  327. return m.BuildingArea
  328. }
  329. return 0
  330. }
  331. func (m *GardenHouseRentInfoReply) GetGardenPics() []string {
  332. if m != nil {
  333. return m.GardenPics
  334. }
  335. return nil
  336. }
  337. func (m *GardenHouseRentInfoReply) GetBuildingCompany() string {
  338. if m != nil {
  339. return m.BuildingCompany
  340. }
  341. return ""
  342. }
  343. func (m *GardenHouseRentInfoReply) GetHouseTotal() int64 {
  344. if m != nil {
  345. return m.HouseTotal
  346. }
  347. return 0
  348. }
  349. func (m *GardenHouseRentInfoReply) GetSpaceTotal() int64 {
  350. if m != nil {
  351. return m.SpaceTotal
  352. }
  353. return 0
  354. }
  355. func (m *GardenHouseRentInfoReply) GetPropertyFeeStart() int64 {
  356. if m != nil {
  357. return m.PropertyFeeStart
  358. }
  359. return 0
  360. }
  361. func (m *GardenHouseRentInfoReply) GetPropertyFeeEnd() int64 {
  362. if m != nil {
  363. return m.PropertyFeeEnd
  364. }
  365. return 0
  366. }
  367. func (m *GardenHouseRentInfoReply) GetWaterType() []int32 {
  368. if m != nil {
  369. return m.WaterType
  370. }
  371. return nil
  372. }
  373. func (m *GardenHouseRentInfoReply) GetElectricType() []int32 {
  374. if m != nil {
  375. return m.ElectricType
  376. }
  377. return nil
  378. }
  379. func (m *GardenHouseRentInfoReply) GetGasFeeStart() int64 {
  380. if m != nil {
  381. return m.GasFeeStart
  382. }
  383. return 0
  384. }
  385. func (m *GardenHouseRentInfoReply) GetGasFeeEnd() int64 {
  386. if m != nil {
  387. return m.GasFeeEnd
  388. }
  389. return 0
  390. }
  391. func init() {
  392. proto.RegisterType((*HouseRentManagerListRequest)(nil), "pb_v1.HouseRentManagerListRequest")
  393. proto.RegisterType((*HouseRentManagerItem)(nil), "pb_v1.HouseRentManagerItem")
  394. proto.RegisterType((*HouseRentManagerListReply)(nil), "pb_v1.HouseRentManagerListReply")
  395. proto.RegisterType((*GardenHouseRentInfoRequest)(nil), "pb_v1.GardenHouseRentInfoRequest")
  396. proto.RegisterType((*GardenHouseRentInfoReply)(nil), "pb_v1.GardenHouseRentInfoReply")
  397. }
  398. func init() {
  399. proto.RegisterFile("house_rent.proto", fileDescriptor_9c4b1cddab293c85)
  400. }
  401. var fileDescriptor_9c4b1cddab293c85 = []byte{
  402. // 646 bytes of a gzipped FileDescriptorProto
  403. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0x41, 0x4f, 0xdb, 0x4a,
  404. 0x10, 0xc7, 0x65, 0x42, 0xf2, 0xf0, 0x04, 0x78, 0x91, 0x85, 0xf4, 0xfc, 0x1a, 0x51, 0x8c, 0x29,
  405. 0xad, 0x69, 0x21, 0x29, 0xed, 0xa9, 0xc7, 0x16, 0xd1, 0x36, 0x12, 0xad, 0x90, 0xa1, 0x97, 0x5e,
  406. 0xac, 0x8d, 0x3d, 0x18, 0x4b, 0xce, 0x7a, 0xbb, 0xde, 0x04, 0xe5, 0xd8, 0xcf, 0xd3, 0x2f, 0x59,
  407. 0xcd, 0x6c, 0x6c, 0x41, 0xc5, 0xa1, 0x37, 0xfc, 0xfb, 0xff, 0x76, 0x3c, 0x3b, 0x63, 0x02, 0x83,
  408. 0xdb, 0x6a, 0x5e, 0x63, 0xa2, 0x51, 0x9a, 0x91, 0xd2, 0x95, 0xa9, 0xbc, 0xae, 0x9a, 0x26, 0x8b,
  409. 0xd3, 0xf0, 0x0a, 0x86, 0x9f, 0x29, 0x8a, 0x51, 0x9a, 0x2f, 0x42, 0x8a, 0x1c, 0xf5, 0x45, 0x51,
  410. 0x9b, 0x18, 0x7f, 0xcc, 0xb1, 0x36, 0xde, 0x10, 0xdc, 0x5c, 0xe8, 0x0c, 0x65, 0x52, 0x64, 0xbe,
  411. 0x13, 0x38, 0x51, 0x27, 0xde, 0xb0, 0x60, 0x92, 0x79, 0xff, 0xc1, 0x3f, 0x54, 0x90, 0xa2, 0x75,
  412. 0x8e, 0x7a, 0xf4, 0x38, 0xc9, 0xc2, 0x5f, 0x0e, 0xec, 0xfc, 0x59, 0x75, 0x62, 0x70, 0xe6, 0x6d,
  413. 0xc3, 0x5a, 0x5b, 0x67, 0xad, 0xc8, 0xbc, 0x3d, 0xe8, 0xcf, 0x6c, 0x9c, 0xcc, 0x8b, 0xcc, 0x5f,
  414. 0xe3, 0x00, 0x56, 0xe8, 0x5b, 0x91, 0x79, 0x1e, 0xac, 0x4b, 0x31, 0x43, 0xbf, 0x13, 0x38, 0x91,
  415. 0x1b, 0xf3, 0xdf, 0xde, 0x0e, 0x74, 0xd5, 0x6d, 0x25, 0x91, 0x5f, 0xea, 0xc6, 0xf6, 0x81, 0x3a,
  416. 0x9d, 0xd7, 0xa8, 0x13, 0xd6, 0xbb, 0x9c, 0x6c, 0x10, 0xf8, 0x4a, 0x47, 0x86, 0xe0, 0x56, 0x0a,
  417. 0x65, 0x31, 0xa3, 0x5e, 0x7b, 0x36, 0xb4, 0x60, 0x92, 0x85, 0x17, 0xf0, 0xff, 0xe3, 0x23, 0x50,
  418. 0xe5, 0xd2, 0x1b, 0xc3, 0x7a, 0x59, 0xd4, 0xc6, 0x77, 0x82, 0x4e, 0xd4, 0x7f, 0x33, 0x1c, 0xf1,
  419. 0xd4, 0x46, 0x8f, 0x5d, 0x2e, 0x66, 0x31, 0x7c, 0x07, 0x4f, 0x3e, 0xf1, 0x80, 0x5a, 0x67, 0x22,
  420. 0x6f, 0xaa, 0xbf, 0x99, 0x67, 0xf8, 0xb3, 0x07, 0xfe, 0xa3, 0x67, 0xa9, 0x91, 0x21, 0xb8, 0x62,
  421. 0x91, 0x27, 0x4a, 0x17, 0x29, 0x36, 0x27, 0xc5, 0x22, 0xbf, 0xa4, 0x67, 0x6f, 0x17, 0x80, 0x37,
  422. 0x91, 0x56, 0x73, 0x69, 0x56, 0x63, 0x74, 0x89, 0x9c, 0x11, 0xa0, 0xb8, 0xc6, 0xb2, 0x5c, 0xc5,
  423. 0x1d, 0x1b, 0x13, 0xb1, 0xf1, 0x01, 0x6c, 0x4d, 0xe7, 0x45, 0x99, 0x15, 0x32, 0x4f, 0xcc, 0x52,
  424. 0xa1, 0xbf, 0x17, 0x38, 0x51, 0x37, 0xde, 0x6c, 0xe0, 0xf5, 0x52, 0xa1, 0x77, 0x08, 0xdb, 0xad,
  425. 0x54, 0x1b, 0xa1, 0x8d, 0x1f, 0x70, 0x9d, 0xf6, 0xe8, 0x15, 0x41, 0x6f, 0x1f, 0xda, 0x63, 0x09,
  426. 0xca, 0xcc, 0xdf, 0x67, 0xa9, 0xdf, 0xb0, 0x73, 0x99, 0xd1, 0xeb, 0x72, 0x8d, 0x28, 0x13, 0x85,
  427. 0x3a, 0x45, 0x69, 0xfc, 0x30, 0x70, 0x22, 0x27, 0xde, 0x64, 0x78, 0x69, 0x19, 0xd5, 0x11, 0x1a,
  428. 0x45, 0xeb, 0x1c, 0xb0, 0xd3, 0x27, 0xd6, 0x28, 0x74, 0x2b, 0x25, 0x52, 0x4c, 0x0a, 0x79, 0x53,
  429. 0xf9, 0xcf, 0x78, 0xab, 0x2e, 0x13, 0x9a, 0x1a, 0x55, 0x48, 0xab, 0x05, 0x6a, 0xcc, 0x12, 0x3a,
  430. 0xe5, 0x1f, 0xda, 0x0a, 0x2b, 0xf6, 0x5e, 0xa3, 0x78, 0x70, 0x71, 0x76, 0x9e, 0xdb, 0x4e, 0x1a,
  431. 0xc8, 0xd2, 0x1e, 0xf4, 0x57, 0x2b, 0x53, 0x45, 0x5a, 0xfb, 0x2f, 0x82, 0x4e, 0xe4, 0xc6, 0x60,
  432. 0xd1, 0x65, 0x91, 0xd6, 0xde, 0x11, 0x0c, 0xda, 0x2a, 0x69, 0x35, 0x53, 0x42, 0x2e, 0xfd, 0x88,
  433. 0xbb, 0xf9, 0xb7, 0xe1, 0x67, 0x16, 0x53, 0x2d, 0xfb, 0x8f, 0x68, 0x2a, 0x23, 0x4a, 0xff, 0xc8,
  434. 0x7e, 0xef, 0x8c, 0xae, 0x89, 0x90, 0x60, 0xef, 0x64, 0x85, 0x97, 0x56, 0x60, 0x64, 0x85, 0x63,
  435. 0xf0, 0x94, 0xae, 0x14, 0x6a, 0xb3, 0x4c, 0x6e, 0x10, 0x57, 0xab, 0x78, 0xc5, 0xde, 0xa0, 0x49,
  436. 0x3e, 0x22, 0xda, 0x6d, 0x44, 0x30, 0x78, 0x60, 0xd3, 0x46, 0x8e, 0xd9, 0xdd, 0xbe, 0xe7, 0xd2,
  437. 0x52, 0x76, 0x01, 0xee, 0x84, 0x41, 0x6d, 0x3f, 0x80, 0x93, 0xa0, 0x13, 0x75, 0x63, 0x97, 0x09,
  438. 0x6f, 0xff, 0x00, 0xb6, 0xb0, 0xc4, 0xd4, 0xe8, 0x22, 0xb5, 0xc6, 0x88, 0x8d, 0xcd, 0x06, 0xb2,
  439. 0x14, 0xc2, 0x56, 0x2e, 0xea, 0x7b, 0x6d, 0x8d, 0xed, 0xf2, 0x73, 0x51, 0xb7, 0x1d, 0x3d, 0xa5,
  440. 0x69, 0xd6, 0x6d, 0x33, 0xaf, 0xed, 0xb7, 0x68, 0x8d, 0x73, 0x99, 0x7d, 0x08, 0xbf, 0x07, 0x4d,
  441. 0x67, 0x27, 0x3c, 0x97, 0xdb, 0xaa, 0xcc, 0x4e, 0x72, 0x61, 0xf0, 0x4e, 0x2c, 0xc7, 0x6a, 0x3a,
  442. 0x5e, 0x9c, 0x4e, 0x7b, 0xfc, 0x0b, 0xf6, 0xf6, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa2, 0xcf,
  443. 0x80, 0x07, 0xd5, 0x04, 0x00, 0x00,
  444. }