system.pb.go 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: system.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 CreateUserRequest struct {
  20. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"`
  21. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  22. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  23. XXX_unrecognized []byte `json:"-"`
  24. XXX_sizecache int32 `json:"-"`
  25. }
  26. func (m *CreateUserRequest) Reset() { *m = CreateUserRequest{} }
  27. func (m *CreateUserRequest) String() string { return proto.CompactTextString(m) }
  28. func (*CreateUserRequest) ProtoMessage() {}
  29. func (*CreateUserRequest) Descriptor() ([]byte, []int) {
  30. return fileDescriptor_86a7260ebdc12f47, []int{0}
  31. }
  32. func (m *CreateUserRequest) XXX_Unmarshal(b []byte) error {
  33. return xxx_messageInfo_CreateUserRequest.Unmarshal(m, b)
  34. }
  35. func (m *CreateUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  36. return xxx_messageInfo_CreateUserRequest.Marshal(b, m, deterministic)
  37. }
  38. func (m *CreateUserRequest) XXX_Merge(src proto.Message) {
  39. xxx_messageInfo_CreateUserRequest.Merge(m, src)
  40. }
  41. func (m *CreateUserRequest) XXX_Size() int {
  42. return xxx_messageInfo_CreateUserRequest.Size(m)
  43. }
  44. func (m *CreateUserRequest) XXX_DiscardUnknown() {
  45. xxx_messageInfo_CreateUserRequest.DiscardUnknown(m)
  46. }
  47. var xxx_messageInfo_CreateUserRequest proto.InternalMessageInfo
  48. func (m *CreateUserRequest) GetUsername() string {
  49. if m != nil {
  50. return m.Username
  51. }
  52. return ""
  53. }
  54. func (m *CreateUserRequest) GetPassword() string {
  55. if m != nil {
  56. return m.Password
  57. }
  58. return ""
  59. }
  60. type CreateUserReply struct {
  61. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  62. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  63. XXX_unrecognized []byte `json:"-"`
  64. XXX_sizecache int32 `json:"-"`
  65. }
  66. func (m *CreateUserReply) Reset() { *m = CreateUserReply{} }
  67. func (m *CreateUserReply) String() string { return proto.CompactTextString(m) }
  68. func (*CreateUserReply) ProtoMessage() {}
  69. func (*CreateUserReply) Descriptor() ([]byte, []int) {
  70. return fileDescriptor_86a7260ebdc12f47, []int{1}
  71. }
  72. func (m *CreateUserReply) XXX_Unmarshal(b []byte) error {
  73. return xxx_messageInfo_CreateUserReply.Unmarshal(m, b)
  74. }
  75. func (m *CreateUserReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  76. return xxx_messageInfo_CreateUserReply.Marshal(b, m, deterministic)
  77. }
  78. func (m *CreateUserReply) XXX_Merge(src proto.Message) {
  79. xxx_messageInfo_CreateUserReply.Merge(m, src)
  80. }
  81. func (m *CreateUserReply) XXX_Size() int {
  82. return xxx_messageInfo_CreateUserReply.Size(m)
  83. }
  84. func (m *CreateUserReply) XXX_DiscardUnknown() {
  85. xxx_messageInfo_CreateUserReply.DiscardUnknown(m)
  86. }
  87. var xxx_messageInfo_CreateUserReply proto.InternalMessageInfo
  88. func (m *CreateUserReply) GetUid() int64 {
  89. if m != nil {
  90. return m.Uid
  91. }
  92. return 0
  93. }
  94. type LoginRequest struct {
  95. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"`
  96. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  97. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  98. XXX_unrecognized []byte `json:"-"`
  99. XXX_sizecache int32 `json:"-"`
  100. }
  101. func (m *LoginRequest) Reset() { *m = LoginRequest{} }
  102. func (m *LoginRequest) String() string { return proto.CompactTextString(m) }
  103. func (*LoginRequest) ProtoMessage() {}
  104. func (*LoginRequest) Descriptor() ([]byte, []int) {
  105. return fileDescriptor_86a7260ebdc12f47, []int{2}
  106. }
  107. func (m *LoginRequest) XXX_Unmarshal(b []byte) error {
  108. return xxx_messageInfo_LoginRequest.Unmarshal(m, b)
  109. }
  110. func (m *LoginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  111. return xxx_messageInfo_LoginRequest.Marshal(b, m, deterministic)
  112. }
  113. func (m *LoginRequest) XXX_Merge(src proto.Message) {
  114. xxx_messageInfo_LoginRequest.Merge(m, src)
  115. }
  116. func (m *LoginRequest) XXX_Size() int {
  117. return xxx_messageInfo_LoginRequest.Size(m)
  118. }
  119. func (m *LoginRequest) XXX_DiscardUnknown() {
  120. xxx_messageInfo_LoginRequest.DiscardUnknown(m)
  121. }
  122. var xxx_messageInfo_LoginRequest proto.InternalMessageInfo
  123. func (m *LoginRequest) GetUsername() string {
  124. if m != nil {
  125. return m.Username
  126. }
  127. return ""
  128. }
  129. func (m *LoginRequest) GetPassword() string {
  130. if m != nil {
  131. return m.Password
  132. }
  133. return ""
  134. }
  135. type LoginReply struct {
  136. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  137. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  138. XXX_unrecognized []byte `json:"-"`
  139. XXX_sizecache int32 `json:"-"`
  140. }
  141. func (m *LoginReply) Reset() { *m = LoginReply{} }
  142. func (m *LoginReply) String() string { return proto.CompactTextString(m) }
  143. func (*LoginReply) ProtoMessage() {}
  144. func (*LoginReply) Descriptor() ([]byte, []int) {
  145. return fileDescriptor_86a7260ebdc12f47, []int{3}
  146. }
  147. func (m *LoginReply) XXX_Unmarshal(b []byte) error {
  148. return xxx_messageInfo_LoginReply.Unmarshal(m, b)
  149. }
  150. func (m *LoginReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  151. return xxx_messageInfo_LoginReply.Marshal(b, m, deterministic)
  152. }
  153. func (m *LoginReply) XXX_Merge(src proto.Message) {
  154. xxx_messageInfo_LoginReply.Merge(m, src)
  155. }
  156. func (m *LoginReply) XXX_Size() int {
  157. return xxx_messageInfo_LoginReply.Size(m)
  158. }
  159. func (m *LoginReply) XXX_DiscardUnknown() {
  160. xxx_messageInfo_LoginReply.DiscardUnknown(m)
  161. }
  162. var xxx_messageInfo_LoginReply proto.InternalMessageInfo
  163. func (m *LoginReply) GetUid() int64 {
  164. if m != nil {
  165. return m.Uid
  166. }
  167. return 0
  168. }
  169. type ChangePasswordRequest struct {
  170. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  171. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  172. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  173. XXX_unrecognized []byte `json:"-"`
  174. XXX_sizecache int32 `json:"-"`
  175. }
  176. func (m *ChangePasswordRequest) Reset() { *m = ChangePasswordRequest{} }
  177. func (m *ChangePasswordRequest) String() string { return proto.CompactTextString(m) }
  178. func (*ChangePasswordRequest) ProtoMessage() {}
  179. func (*ChangePasswordRequest) Descriptor() ([]byte, []int) {
  180. return fileDescriptor_86a7260ebdc12f47, []int{4}
  181. }
  182. func (m *ChangePasswordRequest) XXX_Unmarshal(b []byte) error {
  183. return xxx_messageInfo_ChangePasswordRequest.Unmarshal(m, b)
  184. }
  185. func (m *ChangePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  186. return xxx_messageInfo_ChangePasswordRequest.Marshal(b, m, deterministic)
  187. }
  188. func (m *ChangePasswordRequest) XXX_Merge(src proto.Message) {
  189. xxx_messageInfo_ChangePasswordRequest.Merge(m, src)
  190. }
  191. func (m *ChangePasswordRequest) XXX_Size() int {
  192. return xxx_messageInfo_ChangePasswordRequest.Size(m)
  193. }
  194. func (m *ChangePasswordRequest) XXX_DiscardUnknown() {
  195. xxx_messageInfo_ChangePasswordRequest.DiscardUnknown(m)
  196. }
  197. var xxx_messageInfo_ChangePasswordRequest proto.InternalMessageInfo
  198. func (m *ChangePasswordRequest) GetUid() int64 {
  199. if m != nil {
  200. return m.Uid
  201. }
  202. return 0
  203. }
  204. func (m *ChangePasswordRequest) GetPassword() string {
  205. if m != nil {
  206. return m.Password
  207. }
  208. return ""
  209. }
  210. type ChangePasswordReply struct {
  211. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  212. XXX_unrecognized []byte `json:"-"`
  213. XXX_sizecache int32 `json:"-"`
  214. }
  215. func (m *ChangePasswordReply) Reset() { *m = ChangePasswordReply{} }
  216. func (m *ChangePasswordReply) String() string { return proto.CompactTextString(m) }
  217. func (*ChangePasswordReply) ProtoMessage() {}
  218. func (*ChangePasswordReply) Descriptor() ([]byte, []int) {
  219. return fileDescriptor_86a7260ebdc12f47, []int{5}
  220. }
  221. func (m *ChangePasswordReply) XXX_Unmarshal(b []byte) error {
  222. return xxx_messageInfo_ChangePasswordReply.Unmarshal(m, b)
  223. }
  224. func (m *ChangePasswordReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  225. return xxx_messageInfo_ChangePasswordReply.Marshal(b, m, deterministic)
  226. }
  227. func (m *ChangePasswordReply) XXX_Merge(src proto.Message) {
  228. xxx_messageInfo_ChangePasswordReply.Merge(m, src)
  229. }
  230. func (m *ChangePasswordReply) XXX_Size() int {
  231. return xxx_messageInfo_ChangePasswordReply.Size(m)
  232. }
  233. func (m *ChangePasswordReply) XXX_DiscardUnknown() {
  234. xxx_messageInfo_ChangePasswordReply.DiscardUnknown(m)
  235. }
  236. var xxx_messageInfo_ChangePasswordReply proto.InternalMessageInfo
  237. type CreateOrganizationRequest struct {
  238. OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
  239. Month int64 `protobuf:"varint,2,opt,name=month,proto3" json:"month"`
  240. State int64 `protobuf:"varint,3,opt,name=state,proto3" json:"state"`
  241. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  242. XXX_unrecognized []byte `json:"-"`
  243. XXX_sizecache int32 `json:"-"`
  244. }
  245. func (m *CreateOrganizationRequest) Reset() { *m = CreateOrganizationRequest{} }
  246. func (m *CreateOrganizationRequest) String() string { return proto.CompactTextString(m) }
  247. func (*CreateOrganizationRequest) ProtoMessage() {}
  248. func (*CreateOrganizationRequest) Descriptor() ([]byte, []int) {
  249. return fileDescriptor_86a7260ebdc12f47, []int{6}
  250. }
  251. func (m *CreateOrganizationRequest) XXX_Unmarshal(b []byte) error {
  252. return xxx_messageInfo_CreateOrganizationRequest.Unmarshal(m, b)
  253. }
  254. func (m *CreateOrganizationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  255. return xxx_messageInfo_CreateOrganizationRequest.Marshal(b, m, deterministic)
  256. }
  257. func (m *CreateOrganizationRequest) XXX_Merge(src proto.Message) {
  258. xxx_messageInfo_CreateOrganizationRequest.Merge(m, src)
  259. }
  260. func (m *CreateOrganizationRequest) XXX_Size() int {
  261. return xxx_messageInfo_CreateOrganizationRequest.Size(m)
  262. }
  263. func (m *CreateOrganizationRequest) XXX_DiscardUnknown() {
  264. xxx_messageInfo_CreateOrganizationRequest.DiscardUnknown(m)
  265. }
  266. var xxx_messageInfo_CreateOrganizationRequest proto.InternalMessageInfo
  267. func (m *CreateOrganizationRequest) GetOrganizationName() string {
  268. if m != nil {
  269. return m.OrganizationName
  270. }
  271. return ""
  272. }
  273. func (m *CreateOrganizationRequest) GetMonth() int64 {
  274. if m != nil {
  275. return m.Month
  276. }
  277. return 0
  278. }
  279. func (m *CreateOrganizationRequest) GetState() int64 {
  280. if m != nil {
  281. return m.State
  282. }
  283. return 0
  284. }
  285. type CreateOrganizationReply struct {
  286. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  287. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  288. XXX_unrecognized []byte `json:"-"`
  289. XXX_sizecache int32 `json:"-"`
  290. }
  291. func (m *CreateOrganizationReply) Reset() { *m = CreateOrganizationReply{} }
  292. func (m *CreateOrganizationReply) String() string { return proto.CompactTextString(m) }
  293. func (*CreateOrganizationReply) ProtoMessage() {}
  294. func (*CreateOrganizationReply) Descriptor() ([]byte, []int) {
  295. return fileDescriptor_86a7260ebdc12f47, []int{7}
  296. }
  297. func (m *CreateOrganizationReply) XXX_Unmarshal(b []byte) error {
  298. return xxx_messageInfo_CreateOrganizationReply.Unmarshal(m, b)
  299. }
  300. func (m *CreateOrganizationReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  301. return xxx_messageInfo_CreateOrganizationReply.Marshal(b, m, deterministic)
  302. }
  303. func (m *CreateOrganizationReply) XXX_Merge(src proto.Message) {
  304. xxx_messageInfo_CreateOrganizationReply.Merge(m, src)
  305. }
  306. func (m *CreateOrganizationReply) XXX_Size() int {
  307. return xxx_messageInfo_CreateOrganizationReply.Size(m)
  308. }
  309. func (m *CreateOrganizationReply) XXX_DiscardUnknown() {
  310. xxx_messageInfo_CreateOrganizationReply.DiscardUnknown(m)
  311. }
  312. var xxx_messageInfo_CreateOrganizationReply proto.InternalMessageInfo
  313. func (m *CreateOrganizationReply) GetUid() int64 {
  314. if m != nil {
  315. return m.Uid
  316. }
  317. return 0
  318. }
  319. type DeleteOrganizationRequest struct {
  320. OrganizationCode string `protobuf:"bytes,1,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
  321. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  322. XXX_unrecognized []byte `json:"-"`
  323. XXX_sizecache int32 `json:"-"`
  324. }
  325. func (m *DeleteOrganizationRequest) Reset() { *m = DeleteOrganizationRequest{} }
  326. func (m *DeleteOrganizationRequest) String() string { return proto.CompactTextString(m) }
  327. func (*DeleteOrganizationRequest) ProtoMessage() {}
  328. func (*DeleteOrganizationRequest) Descriptor() ([]byte, []int) {
  329. return fileDescriptor_86a7260ebdc12f47, []int{8}
  330. }
  331. func (m *DeleteOrganizationRequest) XXX_Unmarshal(b []byte) error {
  332. return xxx_messageInfo_DeleteOrganizationRequest.Unmarshal(m, b)
  333. }
  334. func (m *DeleteOrganizationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  335. return xxx_messageInfo_DeleteOrganizationRequest.Marshal(b, m, deterministic)
  336. }
  337. func (m *DeleteOrganizationRequest) XXX_Merge(src proto.Message) {
  338. xxx_messageInfo_DeleteOrganizationRequest.Merge(m, src)
  339. }
  340. func (m *DeleteOrganizationRequest) XXX_Size() int {
  341. return xxx_messageInfo_DeleteOrganizationRequest.Size(m)
  342. }
  343. func (m *DeleteOrganizationRequest) XXX_DiscardUnknown() {
  344. xxx_messageInfo_DeleteOrganizationRequest.DiscardUnknown(m)
  345. }
  346. var xxx_messageInfo_DeleteOrganizationRequest proto.InternalMessageInfo
  347. func (m *DeleteOrganizationRequest) GetOrganizationCode() string {
  348. if m != nil {
  349. return m.OrganizationCode
  350. }
  351. return ""
  352. }
  353. type DeleteOrganizationReply struct {
  354. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  355. XXX_unrecognized []byte `json:"-"`
  356. XXX_sizecache int32 `json:"-"`
  357. }
  358. func (m *DeleteOrganizationReply) Reset() { *m = DeleteOrganizationReply{} }
  359. func (m *DeleteOrganizationReply) String() string { return proto.CompactTextString(m) }
  360. func (*DeleteOrganizationReply) ProtoMessage() {}
  361. func (*DeleteOrganizationReply) Descriptor() ([]byte, []int) {
  362. return fileDescriptor_86a7260ebdc12f47, []int{9}
  363. }
  364. func (m *DeleteOrganizationReply) XXX_Unmarshal(b []byte) error {
  365. return xxx_messageInfo_DeleteOrganizationReply.Unmarshal(m, b)
  366. }
  367. func (m *DeleteOrganizationReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  368. return xxx_messageInfo_DeleteOrganizationReply.Marshal(b, m, deterministic)
  369. }
  370. func (m *DeleteOrganizationReply) XXX_Merge(src proto.Message) {
  371. xxx_messageInfo_DeleteOrganizationReply.Merge(m, src)
  372. }
  373. func (m *DeleteOrganizationReply) XXX_Size() int {
  374. return xxx_messageInfo_DeleteOrganizationReply.Size(m)
  375. }
  376. func (m *DeleteOrganizationReply) XXX_DiscardUnknown() {
  377. xxx_messageInfo_DeleteOrganizationReply.DiscardUnknown(m)
  378. }
  379. var xxx_messageInfo_DeleteOrganizationReply proto.InternalMessageInfo
  380. type Organization struct {
  381. OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
  382. OrganizationCode string `protobuf:"bytes,2,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
  383. State int64 `protobuf:"varint,3,opt,name=state,proto3" json:"state"`
  384. EndTime int64 `protobuf:"varint,4,opt,name=end_time,json=endTime,proto3" json:"end_time"`
  385. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  386. XXX_unrecognized []byte `json:"-"`
  387. XXX_sizecache int32 `json:"-"`
  388. }
  389. func (m *Organization) Reset() { *m = Organization{} }
  390. func (m *Organization) String() string { return proto.CompactTextString(m) }
  391. func (*Organization) ProtoMessage() {}
  392. func (*Organization) Descriptor() ([]byte, []int) {
  393. return fileDescriptor_86a7260ebdc12f47, []int{10}
  394. }
  395. func (m *Organization) XXX_Unmarshal(b []byte) error {
  396. return xxx_messageInfo_Organization.Unmarshal(m, b)
  397. }
  398. func (m *Organization) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  399. return xxx_messageInfo_Organization.Marshal(b, m, deterministic)
  400. }
  401. func (m *Organization) XXX_Merge(src proto.Message) {
  402. xxx_messageInfo_Organization.Merge(m, src)
  403. }
  404. func (m *Organization) XXX_Size() int {
  405. return xxx_messageInfo_Organization.Size(m)
  406. }
  407. func (m *Organization) XXX_DiscardUnknown() {
  408. xxx_messageInfo_Organization.DiscardUnknown(m)
  409. }
  410. var xxx_messageInfo_Organization proto.InternalMessageInfo
  411. func (m *Organization) GetOrganizationName() string {
  412. if m != nil {
  413. return m.OrganizationName
  414. }
  415. return ""
  416. }
  417. func (m *Organization) GetOrganizationCode() string {
  418. if m != nil {
  419. return m.OrganizationCode
  420. }
  421. return ""
  422. }
  423. func (m *Organization) GetState() int64 {
  424. if m != nil {
  425. return m.State
  426. }
  427. return 0
  428. }
  429. func (m *Organization) GetEndTime() int64 {
  430. if m != nil {
  431. return m.EndTime
  432. }
  433. return 0
  434. }
  435. type UpdateOrganizationRequest struct {
  436. OrganizationName string `protobuf:"bytes,1,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
  437. Month int64 `protobuf:"varint,2,opt,name=month,proto3" json:"month"`
  438. State int64 `protobuf:"varint,3,opt,name=state,proto3" json:"state"`
  439. OrganizationCode string `protobuf:"bytes,4,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
  440. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  441. XXX_unrecognized []byte `json:"-"`
  442. XXX_sizecache int32 `json:"-"`
  443. }
  444. func (m *UpdateOrganizationRequest) Reset() { *m = UpdateOrganizationRequest{} }
  445. func (m *UpdateOrganizationRequest) String() string { return proto.CompactTextString(m) }
  446. func (*UpdateOrganizationRequest) ProtoMessage() {}
  447. func (*UpdateOrganizationRequest) Descriptor() ([]byte, []int) {
  448. return fileDescriptor_86a7260ebdc12f47, []int{11}
  449. }
  450. func (m *UpdateOrganizationRequest) XXX_Unmarshal(b []byte) error {
  451. return xxx_messageInfo_UpdateOrganizationRequest.Unmarshal(m, b)
  452. }
  453. func (m *UpdateOrganizationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  454. return xxx_messageInfo_UpdateOrganizationRequest.Marshal(b, m, deterministic)
  455. }
  456. func (m *UpdateOrganizationRequest) XXX_Merge(src proto.Message) {
  457. xxx_messageInfo_UpdateOrganizationRequest.Merge(m, src)
  458. }
  459. func (m *UpdateOrganizationRequest) XXX_Size() int {
  460. return xxx_messageInfo_UpdateOrganizationRequest.Size(m)
  461. }
  462. func (m *UpdateOrganizationRequest) XXX_DiscardUnknown() {
  463. xxx_messageInfo_UpdateOrganizationRequest.DiscardUnknown(m)
  464. }
  465. var xxx_messageInfo_UpdateOrganizationRequest proto.InternalMessageInfo
  466. func (m *UpdateOrganizationRequest) GetOrganizationName() string {
  467. if m != nil {
  468. return m.OrganizationName
  469. }
  470. return ""
  471. }
  472. func (m *UpdateOrganizationRequest) GetMonth() int64 {
  473. if m != nil {
  474. return m.Month
  475. }
  476. return 0
  477. }
  478. func (m *UpdateOrganizationRequest) GetState() int64 {
  479. if m != nil {
  480. return m.State
  481. }
  482. return 0
  483. }
  484. func (m *UpdateOrganizationRequest) GetOrganizationCode() string {
  485. if m != nil {
  486. return m.OrganizationCode
  487. }
  488. return ""
  489. }
  490. type UpdateOrganizationReply struct {
  491. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  492. XXX_unrecognized []byte `json:"-"`
  493. XXX_sizecache int32 `json:"-"`
  494. }
  495. func (m *UpdateOrganizationReply) Reset() { *m = UpdateOrganizationReply{} }
  496. func (m *UpdateOrganizationReply) String() string { return proto.CompactTextString(m) }
  497. func (*UpdateOrganizationReply) ProtoMessage() {}
  498. func (*UpdateOrganizationReply) Descriptor() ([]byte, []int) {
  499. return fileDescriptor_86a7260ebdc12f47, []int{12}
  500. }
  501. func (m *UpdateOrganizationReply) XXX_Unmarshal(b []byte) error {
  502. return xxx_messageInfo_UpdateOrganizationReply.Unmarshal(m, b)
  503. }
  504. func (m *UpdateOrganizationReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  505. return xxx_messageInfo_UpdateOrganizationReply.Marshal(b, m, deterministic)
  506. }
  507. func (m *UpdateOrganizationReply) XXX_Merge(src proto.Message) {
  508. xxx_messageInfo_UpdateOrganizationReply.Merge(m, src)
  509. }
  510. func (m *UpdateOrganizationReply) XXX_Size() int {
  511. return xxx_messageInfo_UpdateOrganizationReply.Size(m)
  512. }
  513. func (m *UpdateOrganizationReply) XXX_DiscardUnknown() {
  514. xxx_messageInfo_UpdateOrganizationReply.DiscardUnknown(m)
  515. }
  516. var xxx_messageInfo_UpdateOrganizationReply proto.InternalMessageInfo
  517. type OrganizationListRequest struct {
  518. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  519. PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  520. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  521. XXX_unrecognized []byte `json:"-"`
  522. XXX_sizecache int32 `json:"-"`
  523. }
  524. func (m *OrganizationListRequest) Reset() { *m = OrganizationListRequest{} }
  525. func (m *OrganizationListRequest) String() string { return proto.CompactTextString(m) }
  526. func (*OrganizationListRequest) ProtoMessage() {}
  527. func (*OrganizationListRequest) Descriptor() ([]byte, []int) {
  528. return fileDescriptor_86a7260ebdc12f47, []int{13}
  529. }
  530. func (m *OrganizationListRequest) XXX_Unmarshal(b []byte) error {
  531. return xxx_messageInfo_OrganizationListRequest.Unmarshal(m, b)
  532. }
  533. func (m *OrganizationListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  534. return xxx_messageInfo_OrganizationListRequest.Marshal(b, m, deterministic)
  535. }
  536. func (m *OrganizationListRequest) XXX_Merge(src proto.Message) {
  537. xxx_messageInfo_OrganizationListRequest.Merge(m, src)
  538. }
  539. func (m *OrganizationListRequest) XXX_Size() int {
  540. return xxx_messageInfo_OrganizationListRequest.Size(m)
  541. }
  542. func (m *OrganizationListRequest) XXX_DiscardUnknown() {
  543. xxx_messageInfo_OrganizationListRequest.DiscardUnknown(m)
  544. }
  545. var xxx_messageInfo_OrganizationListRequest proto.InternalMessageInfo
  546. func (m *OrganizationListRequest) GetPage() int64 {
  547. if m != nil {
  548. return m.Page
  549. }
  550. return 0
  551. }
  552. func (m *OrganizationListRequest) GetPageSize() int64 {
  553. if m != nil {
  554. return m.PageSize
  555. }
  556. return 0
  557. }
  558. type OrganizationListReply struct {
  559. Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count"`
  560. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  561. Organization []*Organization `protobuf:"bytes,3,rep,name=organization,proto3" json:"organization"`
  562. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  563. XXX_unrecognized []byte `json:"-"`
  564. XXX_sizecache int32 `json:"-"`
  565. }
  566. func (m *OrganizationListReply) Reset() { *m = OrganizationListReply{} }
  567. func (m *OrganizationListReply) String() string { return proto.CompactTextString(m) }
  568. func (*OrganizationListReply) ProtoMessage() {}
  569. func (*OrganizationListReply) Descriptor() ([]byte, []int) {
  570. return fileDescriptor_86a7260ebdc12f47, []int{14}
  571. }
  572. func (m *OrganizationListReply) XXX_Unmarshal(b []byte) error {
  573. return xxx_messageInfo_OrganizationListReply.Unmarshal(m, b)
  574. }
  575. func (m *OrganizationListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  576. return xxx_messageInfo_OrganizationListReply.Marshal(b, m, deterministic)
  577. }
  578. func (m *OrganizationListReply) XXX_Merge(src proto.Message) {
  579. xxx_messageInfo_OrganizationListReply.Merge(m, src)
  580. }
  581. func (m *OrganizationListReply) XXX_Size() int {
  582. return xxx_messageInfo_OrganizationListReply.Size(m)
  583. }
  584. func (m *OrganizationListReply) XXX_DiscardUnknown() {
  585. xxx_messageInfo_OrganizationListReply.DiscardUnknown(m)
  586. }
  587. var xxx_messageInfo_OrganizationListReply proto.InternalMessageInfo
  588. func (m *OrganizationListReply) GetCount() int64 {
  589. if m != nil {
  590. return m.Count
  591. }
  592. return 0
  593. }
  594. func (m *OrganizationListReply) GetPage() int64 {
  595. if m != nil {
  596. return m.Page
  597. }
  598. return 0
  599. }
  600. func (m *OrganizationListReply) GetOrganization() []*Organization {
  601. if m != nil {
  602. return m.Organization
  603. }
  604. return nil
  605. }
  606. type CreateOrganizationUserRequest struct {
  607. OrganizationCode string `protobuf:"bytes,1,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
  608. Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username"`
  609. Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password"`
  610. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  611. Email string `protobuf:"bytes,5,opt,name=email,proto3" json:"email"`
  612. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  613. XXX_unrecognized []byte `json:"-"`
  614. XXX_sizecache int32 `json:"-"`
  615. }
  616. func (m *CreateOrganizationUserRequest) Reset() { *m = CreateOrganizationUserRequest{} }
  617. func (m *CreateOrganizationUserRequest) String() string { return proto.CompactTextString(m) }
  618. func (*CreateOrganizationUserRequest) ProtoMessage() {}
  619. func (*CreateOrganizationUserRequest) Descriptor() ([]byte, []int) {
  620. return fileDescriptor_86a7260ebdc12f47, []int{15}
  621. }
  622. func (m *CreateOrganizationUserRequest) XXX_Unmarshal(b []byte) error {
  623. return xxx_messageInfo_CreateOrganizationUserRequest.Unmarshal(m, b)
  624. }
  625. func (m *CreateOrganizationUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  626. return xxx_messageInfo_CreateOrganizationUserRequest.Marshal(b, m, deterministic)
  627. }
  628. func (m *CreateOrganizationUserRequest) XXX_Merge(src proto.Message) {
  629. xxx_messageInfo_CreateOrganizationUserRequest.Merge(m, src)
  630. }
  631. func (m *CreateOrganizationUserRequest) XXX_Size() int {
  632. return xxx_messageInfo_CreateOrganizationUserRequest.Size(m)
  633. }
  634. func (m *CreateOrganizationUserRequest) XXX_DiscardUnknown() {
  635. xxx_messageInfo_CreateOrganizationUserRequest.DiscardUnknown(m)
  636. }
  637. var xxx_messageInfo_CreateOrganizationUserRequest proto.InternalMessageInfo
  638. func (m *CreateOrganizationUserRequest) GetOrganizationCode() string {
  639. if m != nil {
  640. return m.OrganizationCode
  641. }
  642. return ""
  643. }
  644. func (m *CreateOrganizationUserRequest) GetUsername() string {
  645. if m != nil {
  646. return m.Username
  647. }
  648. return ""
  649. }
  650. func (m *CreateOrganizationUserRequest) GetPassword() string {
  651. if m != nil {
  652. return m.Password
  653. }
  654. return ""
  655. }
  656. func (m *CreateOrganizationUserRequest) GetPhone() string {
  657. if m != nil {
  658. return m.Phone
  659. }
  660. return ""
  661. }
  662. func (m *CreateOrganizationUserRequest) GetEmail() string {
  663. if m != nil {
  664. return m.Email
  665. }
  666. return ""
  667. }
  668. type CreateOrganizationUserReply struct {
  669. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  670. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  671. XXX_unrecognized []byte `json:"-"`
  672. XXX_sizecache int32 `json:"-"`
  673. }
  674. func (m *CreateOrganizationUserReply) Reset() { *m = CreateOrganizationUserReply{} }
  675. func (m *CreateOrganizationUserReply) String() string { return proto.CompactTextString(m) }
  676. func (*CreateOrganizationUserReply) ProtoMessage() {}
  677. func (*CreateOrganizationUserReply) Descriptor() ([]byte, []int) {
  678. return fileDescriptor_86a7260ebdc12f47, []int{16}
  679. }
  680. func (m *CreateOrganizationUserReply) XXX_Unmarshal(b []byte) error {
  681. return xxx_messageInfo_CreateOrganizationUserReply.Unmarshal(m, b)
  682. }
  683. func (m *CreateOrganizationUserReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  684. return xxx_messageInfo_CreateOrganizationUserReply.Marshal(b, m, deterministic)
  685. }
  686. func (m *CreateOrganizationUserReply) XXX_Merge(src proto.Message) {
  687. xxx_messageInfo_CreateOrganizationUserReply.Merge(m, src)
  688. }
  689. func (m *CreateOrganizationUserReply) XXX_Size() int {
  690. return xxx_messageInfo_CreateOrganizationUserReply.Size(m)
  691. }
  692. func (m *CreateOrganizationUserReply) XXX_DiscardUnknown() {
  693. xxx_messageInfo_CreateOrganizationUserReply.DiscardUnknown(m)
  694. }
  695. var xxx_messageInfo_CreateOrganizationUserReply proto.InternalMessageInfo
  696. func (m *CreateOrganizationUserReply) GetUid() int64 {
  697. if m != nil {
  698. return m.Uid
  699. }
  700. return 0
  701. }
  702. type OrganizationKeyAuthRequest struct {
  703. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  704. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  705. XXX_unrecognized []byte `json:"-"`
  706. XXX_sizecache int32 `json:"-"`
  707. }
  708. func (m *OrganizationKeyAuthRequest) Reset() { *m = OrganizationKeyAuthRequest{} }
  709. func (m *OrganizationKeyAuthRequest) String() string { return proto.CompactTextString(m) }
  710. func (*OrganizationKeyAuthRequest) ProtoMessage() {}
  711. func (*OrganizationKeyAuthRequest) Descriptor() ([]byte, []int) {
  712. return fileDescriptor_86a7260ebdc12f47, []int{17}
  713. }
  714. func (m *OrganizationKeyAuthRequest) XXX_Unmarshal(b []byte) error {
  715. return xxx_messageInfo_OrganizationKeyAuthRequest.Unmarshal(m, b)
  716. }
  717. func (m *OrganizationKeyAuthRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  718. return xxx_messageInfo_OrganizationKeyAuthRequest.Marshal(b, m, deterministic)
  719. }
  720. func (m *OrganizationKeyAuthRequest) XXX_Merge(src proto.Message) {
  721. xxx_messageInfo_OrganizationKeyAuthRequest.Merge(m, src)
  722. }
  723. func (m *OrganizationKeyAuthRequest) XXX_Size() int {
  724. return xxx_messageInfo_OrganizationKeyAuthRequest.Size(m)
  725. }
  726. func (m *OrganizationKeyAuthRequest) XXX_DiscardUnknown() {
  727. xxx_messageInfo_OrganizationKeyAuthRequest.DiscardUnknown(m)
  728. }
  729. var xxx_messageInfo_OrganizationKeyAuthRequest proto.InternalMessageInfo
  730. func (m *OrganizationKeyAuthRequest) GetKey() string {
  731. if m != nil {
  732. return m.Key
  733. }
  734. return ""
  735. }
  736. type OrganizationKeyAuthReply struct {
  737. OrganizationCode string `protobuf:"bytes,1,opt,name=organization_code,json=organizationCode,proto3" json:"organization_code"`
  738. OrganizationName string `protobuf:"bytes,2,opt,name=organization_name,json=organizationName,proto3" json:"organization_name"`
  739. EndTime int64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time"`
  740. IsDisable bool `protobuf:"varint,4,opt,name=is_disable,json=isDisable,proto3" json:"is_disable"`
  741. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  742. XXX_unrecognized []byte `json:"-"`
  743. XXX_sizecache int32 `json:"-"`
  744. }
  745. func (m *OrganizationKeyAuthReply) Reset() { *m = OrganizationKeyAuthReply{} }
  746. func (m *OrganizationKeyAuthReply) String() string { return proto.CompactTextString(m) }
  747. func (*OrganizationKeyAuthReply) ProtoMessage() {}
  748. func (*OrganizationKeyAuthReply) Descriptor() ([]byte, []int) {
  749. return fileDescriptor_86a7260ebdc12f47, []int{18}
  750. }
  751. func (m *OrganizationKeyAuthReply) XXX_Unmarshal(b []byte) error {
  752. return xxx_messageInfo_OrganizationKeyAuthReply.Unmarshal(m, b)
  753. }
  754. func (m *OrganizationKeyAuthReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  755. return xxx_messageInfo_OrganizationKeyAuthReply.Marshal(b, m, deterministic)
  756. }
  757. func (m *OrganizationKeyAuthReply) XXX_Merge(src proto.Message) {
  758. xxx_messageInfo_OrganizationKeyAuthReply.Merge(m, src)
  759. }
  760. func (m *OrganizationKeyAuthReply) XXX_Size() int {
  761. return xxx_messageInfo_OrganizationKeyAuthReply.Size(m)
  762. }
  763. func (m *OrganizationKeyAuthReply) XXX_DiscardUnknown() {
  764. xxx_messageInfo_OrganizationKeyAuthReply.DiscardUnknown(m)
  765. }
  766. var xxx_messageInfo_OrganizationKeyAuthReply proto.InternalMessageInfo
  767. func (m *OrganizationKeyAuthReply) GetOrganizationCode() string {
  768. if m != nil {
  769. return m.OrganizationCode
  770. }
  771. return ""
  772. }
  773. func (m *OrganizationKeyAuthReply) GetOrganizationName() string {
  774. if m != nil {
  775. return m.OrganizationName
  776. }
  777. return ""
  778. }
  779. func (m *OrganizationKeyAuthReply) GetEndTime() int64 {
  780. if m != nil {
  781. return m.EndTime
  782. }
  783. return 0
  784. }
  785. func (m *OrganizationKeyAuthReply) GetIsDisable() bool {
  786. if m != nil {
  787. return m.IsDisable
  788. }
  789. return false
  790. }
  791. func init() {
  792. proto.RegisterType((*CreateUserRequest)(nil), "pb_v1.CreateUserRequest")
  793. proto.RegisterType((*CreateUserReply)(nil), "pb_v1.CreateUserReply")
  794. proto.RegisterType((*LoginRequest)(nil), "pb_v1.LoginRequest")
  795. proto.RegisterType((*LoginReply)(nil), "pb_v1.LoginReply")
  796. proto.RegisterType((*ChangePasswordRequest)(nil), "pb_v1.ChangePasswordRequest")
  797. proto.RegisterType((*ChangePasswordReply)(nil), "pb_v1.ChangePasswordReply")
  798. proto.RegisterType((*CreateOrganizationRequest)(nil), "pb_v1.CreateOrganizationRequest")
  799. proto.RegisterType((*CreateOrganizationReply)(nil), "pb_v1.CreateOrganizationReply")
  800. proto.RegisterType((*DeleteOrganizationRequest)(nil), "pb_v1.DeleteOrganizationRequest")
  801. proto.RegisterType((*DeleteOrganizationReply)(nil), "pb_v1.DeleteOrganizationReply")
  802. proto.RegisterType((*Organization)(nil), "pb_v1.Organization")
  803. proto.RegisterType((*UpdateOrganizationRequest)(nil), "pb_v1.UpdateOrganizationRequest")
  804. proto.RegisterType((*UpdateOrganizationReply)(nil), "pb_v1.UpdateOrganizationReply")
  805. proto.RegisterType((*OrganizationListRequest)(nil), "pb_v1.OrganizationListRequest")
  806. proto.RegisterType((*OrganizationListReply)(nil), "pb_v1.OrganizationListReply")
  807. proto.RegisterType((*CreateOrganizationUserRequest)(nil), "pb_v1.CreateOrganizationUserRequest")
  808. proto.RegisterType((*CreateOrganizationUserReply)(nil), "pb_v1.CreateOrganizationUserReply")
  809. proto.RegisterType((*OrganizationKeyAuthRequest)(nil), "pb_v1.OrganizationKeyAuthRequest")
  810. proto.RegisterType((*OrganizationKeyAuthReply)(nil), "pb_v1.OrganizationKeyAuthReply")
  811. }
  812. func init() {
  813. proto.RegisterFile("system.proto", fileDescriptor_86a7260ebdc12f47)
  814. }
  815. var fileDescriptor_86a7260ebdc12f47 = []byte{
  816. // 542 bytes of a gzipped FileDescriptorProto
  817. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0xc1, 0x6e, 0x13, 0x31,
  818. 0x10, 0xd5, 0x66, 0x13, 0x48, 0x86, 0x48, 0xb4, 0xdb, 0x46, 0xd9, 0xb4, 0x2a, 0x8a, 0xcc, 0xa5,
  819. 0x52, 0xd5, 0x44, 0x85, 0x03, 0x67, 0x48, 0x41, 0x88, 0x56, 0x80, 0x02, 0xbd, 0x70, 0x89, 0x9c,
  820. 0xec, 0x28, 0xb1, 0xc8, 0xda, 0x66, 0xed, 0x14, 0x6d, 0xfe, 0x84, 0x23, 0x3f, 0x80, 0xf8, 0x44,
  821. 0xe4, 0xdd, 0x4d, 0xe4, 0x25, 0x4e, 0x45, 0x84, 0xd4, 0x53, 0x3c, 0xcf, 0xde, 0x37, 0xef, 0x8d,
  822. 0xc7, 0x13, 0x68, 0xaa, 0x54, 0x69, 0x8c, 0x7b, 0x32, 0x11, 0x5a, 0x04, 0x35, 0x39, 0x1e, 0xdd,
  823. 0x5e, 0x90, 0x2b, 0xd8, 0x1f, 0x24, 0x48, 0x35, 0xde, 0x28, 0x4c, 0x86, 0xf8, 0x6d, 0x81, 0x4a,
  824. 0x07, 0x47, 0x50, 0x5f, 0x28, 0x4c, 0x38, 0x8d, 0x31, 0xf4, 0xba, 0xde, 0x69, 0x63, 0xb8, 0x8e,
  825. 0xcd, 0x9e, 0xa4, 0x4a, 0x7d, 0x17, 0x49, 0x14, 0x56, 0xf2, 0xbd, 0x55, 0x4c, 0x9e, 0xc2, 0x63,
  826. 0x9b, 0x4c, 0xce, 0xd3, 0x60, 0x0f, 0xfc, 0x05, 0x8b, 0x32, 0x16, 0x7f, 0x68, 0x96, 0xe4, 0x0d,
  827. 0x34, 0xaf, 0xc5, 0x94, 0xf1, 0xff, 0x4d, 0xf6, 0x04, 0xa0, 0xe0, 0x71, 0xe7, 0x79, 0x0d, 0xad,
  828. 0xc1, 0x8c, 0xf2, 0x29, 0x7e, 0x2c, 0xbe, 0x58, 0x25, 0xdc, 0x38, 0x7a, 0x67, 0x9a, 0x16, 0x1c,
  829. 0xfc, 0x4d, 0x23, 0xe7, 0x29, 0xd1, 0xd0, 0xc9, 0xad, 0x7e, 0x48, 0xa6, 0x94, 0xb3, 0x25, 0xd5,
  830. 0x4c, 0xac, 0x2d, 0x9d, 0xc1, 0xbe, 0xb0, 0xe0, 0x91, 0xe5, 0x6d, 0xcf, 0xde, 0x78, 0x6f, 0x3c,
  831. 0x1e, 0x42, 0x2d, 0x16, 0x5c, 0xcf, 0xb2, 0xcc, 0xfe, 0x30, 0x0f, 0x0c, 0xaa, 0x34, 0xd5, 0x18,
  832. 0xfa, 0x39, 0x9a, 0x05, 0xe4, 0x0c, 0xda, 0xae, 0xac, 0xee, 0x02, 0xbc, 0x85, 0xce, 0x25, 0xce,
  833. 0xf1, 0xdf, 0x24, 0x4e, 0x44, 0xe4, 0x94, 0x38, 0x10, 0x11, 0x92, 0x0e, 0xb4, 0x5d, 0x4c, 0xa6,
  834. 0x0e, 0x3f, 0x3c, 0x68, 0xda, 0xe8, 0x6e, 0xde, 0x9d, 0x2a, 0x2a, 0x6e, 0x15, 0xee, 0x92, 0x04,
  835. 0x1d, 0xa8, 0x23, 0x8f, 0x46, 0x9a, 0xc5, 0x18, 0x56, 0xb3, 0x8d, 0x87, 0xc8, 0xa3, 0xcf, 0x2c,
  836. 0x46, 0xf2, 0xd3, 0x83, 0xce, 0x8d, 0x8c, 0xee, 0xf9, 0x92, 0xdc, 0xa6, 0xaa, 0xdb, 0x4b, 0xeb,
  837. 0x92, 0x68, 0x4a, 0xfb, 0x0e, 0xda, 0x36, 0x78, 0xcd, 0x94, 0x5e, 0x69, 0x0f, 0xa0, 0x2a, 0xe9,
  838. 0x14, 0x8b, 0xdb, 0xce, 0xd6, 0xc1, 0x31, 0x34, 0xcc, 0xef, 0x48, 0xb1, 0x25, 0x16, 0x32, 0xeb,
  839. 0x06, 0xf8, 0xc4, 0x96, 0x48, 0x96, 0xd0, 0xda, 0xe4, 0x32, 0x6d, 0x73, 0x08, 0xb5, 0x89, 0x58,
  840. 0x70, 0x5d, 0x50, 0xe5, 0xc1, 0x9a, 0xbf, 0x62, 0xf1, 0xbf, 0x80, 0xa6, 0xad, 0x3e, 0xf4, 0xbb,
  841. 0xfe, 0xe9, 0xa3, 0x67, 0x07, 0xbd, 0x6c, 0x8e, 0xf4, 0x4a, 0xf2, 0x4b, 0x07, 0xc9, 0x6f, 0x0f,
  842. 0x4e, 0x36, 0xbb, 0xd6, 0x9e, 0x37, 0xbb, 0x34, 0x63, 0x69, 0x5e, 0x54, 0xee, 0x98, 0x17, 0x7e,
  843. 0xf9, 0x21, 0x1b, 0xa7, 0x72, 0x26, 0xf8, 0xea, 0x2a, 0xf2, 0xc0, 0xa0, 0x18, 0x53, 0x36, 0x0f,
  844. 0x6b, 0x39, 0x9a, 0x05, 0xa4, 0x0f, 0xc7, 0xdb, 0x14, 0xbb, 0xdf, 0x5a, 0x0f, 0x8e, 0xec, 0xa3,
  845. 0x57, 0x98, 0xbe, 0x5c, 0xe8, 0x99, 0x35, 0x71, 0xbe, 0x62, 0x5a, 0x38, 0x32, 0x4b, 0xf2, 0xcb,
  846. 0x83, 0xd0, 0xf9, 0x81, 0xa1, 0xdf, 0xa9, 0x1c, 0xce, 0x36, 0xae, 0x6c, 0x69, 0x63, 0xfb, 0xb1,
  847. 0xf8, 0xa5, 0xc7, 0x12, 0x9c, 0x00, 0x30, 0x35, 0x8a, 0x98, 0xa2, 0xe3, 0x79, 0x5e, 0xa3, 0xfa,
  848. 0xb0, 0xc1, 0xd4, 0x65, 0x0e, 0xbc, 0x22, 0x5f, 0xba, 0x13, 0x79, 0x6e, 0x13, 0x9e, 0xc7, 0x94,
  849. 0xd3, 0x29, 0xc6, 0xc8, 0x75, 0x5f, 0x8e, 0xfb, 0xb7, 0x17, 0xe3, 0x07, 0xd9, 0x3f, 0xcb, 0xf3,
  850. 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x77, 0xff, 0xd2, 0xc4, 0x69, 0x06, 0x00, 0x00,
  851. }