user.pb.go 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: user.proto
  6. package user
  7. import (
  8. chat "git.ikuban.com/server/pw-protobuf/api/chat"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  10. statistics "git.ikuban.com/server/pw-protobuf/api/statistics"
  11. _ "google.golang.org/genproto/googleapis/api/annotations"
  12. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  13. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  14. emptypb "google.golang.org/protobuf/types/known/emptypb"
  15. structpb "google.golang.org/protobuf/types/known/structpb"
  16. reflect "reflect"
  17. sync "sync"
  18. )
  19. const (
  20. // Verify that this generated code is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  22. // Verify that runtime/protoimpl is sufficiently up-to-date.
  23. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  24. )
  25. type SendMsgReduceCreditReply struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  30. }
  31. func (x *SendMsgReduceCreditReply) Reset() {
  32. *x = SendMsgReduceCreditReply{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_user_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *SendMsgReduceCreditReply) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  43. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  44. mi := &file_user_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  55. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  56. return file_user_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  59. if x != nil {
  60. return x.IsSendReminder
  61. }
  62. return false
  63. }
  64. type UserFreeNum struct {
  65. state protoimpl.MessageState
  66. sizeCache protoimpl.SizeCache
  67. unknownFields protoimpl.UnknownFields
  68. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  69. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  70. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  71. }
  72. func (x *UserFreeNum) Reset() {
  73. *x = UserFreeNum{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_user_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *UserFreeNum) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*UserFreeNum) ProtoMessage() {}
  84. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  85. mi := &file_user_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  96. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  97. return file_user_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *UserFreeNum) GetReplyScripNum() int64 {
  100. if x != nil {
  101. return x.ReplyScripNum
  102. }
  103. return 0
  104. }
  105. func (x *UserFreeNum) GetCreateScripNum() int64 {
  106. if x != nil {
  107. return x.CreateScripNum
  108. }
  109. return 0
  110. }
  111. func (x *UserFreeNum) GetMatchingNum() int64 {
  112. if x != nil {
  113. return x.MatchingNum
  114. }
  115. return 0
  116. }
  117. type ReplyScripRequest struct {
  118. state protoimpl.MessageState
  119. sizeCache protoimpl.SizeCache
  120. unknownFields protoimpl.UnknownFields
  121. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  122. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  123. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  124. }
  125. func (x *ReplyScripRequest) Reset() {
  126. *x = ReplyScripRequest{}
  127. if protoimpl.UnsafeEnabled {
  128. mi := &file_user_proto_msgTypes[2]
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. ms.StoreMessageInfo(mi)
  131. }
  132. }
  133. func (x *ReplyScripRequest) String() string {
  134. return protoimpl.X.MessageStringOf(x)
  135. }
  136. func (*ReplyScripRequest) ProtoMessage() {}
  137. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  138. mi := &file_user_proto_msgTypes[2]
  139. if protoimpl.UnsafeEnabled && x != nil {
  140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  141. if ms.LoadMessageInfo() == nil {
  142. ms.StoreMessageInfo(mi)
  143. }
  144. return ms
  145. }
  146. return mi.MessageOf(x)
  147. }
  148. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  149. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  150. return file_user_proto_rawDescGZIP(), []int{2}
  151. }
  152. func (x *ReplyScripRequest) GetScripId() int64 {
  153. if x != nil {
  154. return x.ScripId
  155. }
  156. return 0
  157. }
  158. func (x *ReplyScripRequest) GetMessage() *common.Message {
  159. if x != nil {
  160. return x.Message
  161. }
  162. return nil
  163. }
  164. func (x *ReplyScripRequest) GetMsgType() string {
  165. if x != nil {
  166. return x.MsgType
  167. }
  168. return ""
  169. }
  170. type PersonLookScripRequest struct {
  171. state protoimpl.MessageState
  172. sizeCache protoimpl.SizeCache
  173. unknownFields protoimpl.UnknownFields
  174. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  175. }
  176. func (x *PersonLookScripRequest) Reset() {
  177. *x = PersonLookScripRequest{}
  178. if protoimpl.UnsafeEnabled {
  179. mi := &file_user_proto_msgTypes[3]
  180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  181. ms.StoreMessageInfo(mi)
  182. }
  183. }
  184. func (x *PersonLookScripRequest) String() string {
  185. return protoimpl.X.MessageStringOf(x)
  186. }
  187. func (*PersonLookScripRequest) ProtoMessage() {}
  188. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  189. mi := &file_user_proto_msgTypes[3]
  190. if protoimpl.UnsafeEnabled && x != nil {
  191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  192. if ms.LoadMessageInfo() == nil {
  193. ms.StoreMessageInfo(mi)
  194. }
  195. return ms
  196. }
  197. return mi.MessageOf(x)
  198. }
  199. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  200. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  201. return file_user_proto_rawDescGZIP(), []int{3}
  202. }
  203. func (x *PersonLookScripRequest) GetScripId() int64 {
  204. if x != nil {
  205. return x.ScripId
  206. }
  207. return 0
  208. }
  209. type UserFindScripRequest struct {
  210. state protoimpl.MessageState
  211. sizeCache protoimpl.SizeCache
  212. unknownFields protoimpl.UnknownFields
  213. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  214. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  215. }
  216. func (x *UserFindScripRequest) Reset() {
  217. *x = UserFindScripRequest{}
  218. if protoimpl.UnsafeEnabled {
  219. mi := &file_user_proto_msgTypes[4]
  220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  221. ms.StoreMessageInfo(mi)
  222. }
  223. }
  224. func (x *UserFindScripRequest) String() string {
  225. return protoimpl.X.MessageStringOf(x)
  226. }
  227. func (*UserFindScripRequest) ProtoMessage() {}
  228. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  229. mi := &file_user_proto_msgTypes[4]
  230. if protoimpl.UnsafeEnabled && x != nil {
  231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  232. if ms.LoadMessageInfo() == nil {
  233. ms.StoreMessageInfo(mi)
  234. }
  235. return ms
  236. }
  237. return mi.MessageOf(x)
  238. }
  239. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  240. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  241. return file_user_proto_rawDescGZIP(), []int{4}
  242. }
  243. func (x *UserFindScripRequest) GetNextId() int64 {
  244. if x != nil {
  245. return x.NextId
  246. }
  247. return 0
  248. }
  249. func (x *UserFindScripRequest) GetOffset() int64 {
  250. if x != nil {
  251. return x.Offset
  252. }
  253. return 0
  254. }
  255. type DeleteScripRequest struct {
  256. state protoimpl.MessageState
  257. sizeCache protoimpl.SizeCache
  258. unknownFields protoimpl.UnknownFields
  259. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  260. }
  261. func (x *DeleteScripRequest) Reset() {
  262. *x = DeleteScripRequest{}
  263. if protoimpl.UnsafeEnabled {
  264. mi := &file_user_proto_msgTypes[5]
  265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  266. ms.StoreMessageInfo(mi)
  267. }
  268. }
  269. func (x *DeleteScripRequest) String() string {
  270. return protoimpl.X.MessageStringOf(x)
  271. }
  272. func (*DeleteScripRequest) ProtoMessage() {}
  273. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  274. mi := &file_user_proto_msgTypes[5]
  275. if protoimpl.UnsafeEnabled && x != nil {
  276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  277. if ms.LoadMessageInfo() == nil {
  278. ms.StoreMessageInfo(mi)
  279. }
  280. return ms
  281. }
  282. return mi.MessageOf(x)
  283. }
  284. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  285. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  286. return file_user_proto_rawDescGZIP(), []int{5}
  287. }
  288. func (x *DeleteScripRequest) GetScripId() int64 {
  289. if x != nil {
  290. return x.ScripId
  291. }
  292. return 0
  293. }
  294. type CreateScripRequest struct {
  295. state protoimpl.MessageState
  296. sizeCache protoimpl.SizeCache
  297. unknownFields protoimpl.UnknownFields
  298. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  299. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  300. }
  301. func (x *CreateScripRequest) Reset() {
  302. *x = CreateScripRequest{}
  303. if protoimpl.UnsafeEnabled {
  304. mi := &file_user_proto_msgTypes[6]
  305. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  306. ms.StoreMessageInfo(mi)
  307. }
  308. }
  309. func (x *CreateScripRequest) String() string {
  310. return protoimpl.X.MessageStringOf(x)
  311. }
  312. func (*CreateScripRequest) ProtoMessage() {}
  313. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  314. mi := &file_user_proto_msgTypes[6]
  315. if protoimpl.UnsafeEnabled && x != nil {
  316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  317. if ms.LoadMessageInfo() == nil {
  318. ms.StoreMessageInfo(mi)
  319. }
  320. return ms
  321. }
  322. return mi.MessageOf(x)
  323. }
  324. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  325. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  326. return file_user_proto_rawDescGZIP(), []int{6}
  327. }
  328. func (x *CreateScripRequest) GetText() string {
  329. if x != nil {
  330. return x.Text
  331. }
  332. return ""
  333. }
  334. func (x *CreateScripRequest) GetPictureUrl() string {
  335. if x != nil {
  336. return x.PictureUrl
  337. }
  338. return ""
  339. }
  340. type FindMatchingAvatarAndNumReply struct {
  341. state protoimpl.MessageState
  342. sizeCache protoimpl.SizeCache
  343. unknownFields protoimpl.UnknownFields
  344. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  345. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  346. }
  347. func (x *FindMatchingAvatarAndNumReply) Reset() {
  348. *x = FindMatchingAvatarAndNumReply{}
  349. if protoimpl.UnsafeEnabled {
  350. mi := &file_user_proto_msgTypes[7]
  351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  352. ms.StoreMessageInfo(mi)
  353. }
  354. }
  355. func (x *FindMatchingAvatarAndNumReply) String() string {
  356. return protoimpl.X.MessageStringOf(x)
  357. }
  358. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  359. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  360. mi := &file_user_proto_msgTypes[7]
  361. if protoimpl.UnsafeEnabled && x != nil {
  362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  363. if ms.LoadMessageInfo() == nil {
  364. ms.StoreMessageInfo(mi)
  365. }
  366. return ms
  367. }
  368. return mi.MessageOf(x)
  369. }
  370. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  371. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  372. return file_user_proto_rawDescGZIP(), []int{7}
  373. }
  374. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  375. if x != nil {
  376. return x.Num
  377. }
  378. return 0
  379. }
  380. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  381. if x != nil {
  382. return x.List
  383. }
  384. return nil
  385. }
  386. type UserRechargeRequest struct {
  387. state protoimpl.MessageState
  388. sizeCache protoimpl.SizeCache
  389. unknownFields protoimpl.UnknownFields
  390. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  391. }
  392. func (x *UserRechargeRequest) Reset() {
  393. *x = UserRechargeRequest{}
  394. if protoimpl.UnsafeEnabled {
  395. mi := &file_user_proto_msgTypes[8]
  396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  397. ms.StoreMessageInfo(mi)
  398. }
  399. }
  400. func (x *UserRechargeRequest) String() string {
  401. return protoimpl.X.MessageStringOf(x)
  402. }
  403. func (*UserRechargeRequest) ProtoMessage() {}
  404. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  405. mi := &file_user_proto_msgTypes[8]
  406. if protoimpl.UnsafeEnabled && x != nil {
  407. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  408. if ms.LoadMessageInfo() == nil {
  409. ms.StoreMessageInfo(mi)
  410. }
  411. return ms
  412. }
  413. return mi.MessageOf(x)
  414. }
  415. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  416. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  417. return file_user_proto_rawDescGZIP(), []int{8}
  418. }
  419. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  420. if x != nil {
  421. return x.RechargeTemplateId
  422. }
  423. return 0
  424. }
  425. type RechargeList struct {
  426. state protoimpl.MessageState
  427. sizeCache protoimpl.SizeCache
  428. unknownFields protoimpl.UnknownFields
  429. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  430. }
  431. func (x *RechargeList) Reset() {
  432. *x = RechargeList{}
  433. if protoimpl.UnsafeEnabled {
  434. mi := &file_user_proto_msgTypes[9]
  435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  436. ms.StoreMessageInfo(mi)
  437. }
  438. }
  439. func (x *RechargeList) String() string {
  440. return protoimpl.X.MessageStringOf(x)
  441. }
  442. func (*RechargeList) ProtoMessage() {}
  443. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  444. mi := &file_user_proto_msgTypes[9]
  445. if protoimpl.UnsafeEnabled && x != nil {
  446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  447. if ms.LoadMessageInfo() == nil {
  448. ms.StoreMessageInfo(mi)
  449. }
  450. return ms
  451. }
  452. return mi.MessageOf(x)
  453. }
  454. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  455. func (*RechargeList) Descriptor() ([]byte, []int) {
  456. return file_user_proto_rawDescGZIP(), []int{9}
  457. }
  458. func (x *RechargeList) GetList() []*RechargeInfo {
  459. if x != nil {
  460. return x.List
  461. }
  462. return nil
  463. }
  464. type RechargeInfo struct {
  465. state protoimpl.MessageState
  466. sizeCache protoimpl.SizeCache
  467. unknownFields protoimpl.UnknownFields
  468. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  469. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  470. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  471. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  472. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  473. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  474. }
  475. func (x *RechargeInfo) Reset() {
  476. *x = RechargeInfo{}
  477. if protoimpl.UnsafeEnabled {
  478. mi := &file_user_proto_msgTypes[10]
  479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  480. ms.StoreMessageInfo(mi)
  481. }
  482. }
  483. func (x *RechargeInfo) String() string {
  484. return protoimpl.X.MessageStringOf(x)
  485. }
  486. func (*RechargeInfo) ProtoMessage() {}
  487. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  488. mi := &file_user_proto_msgTypes[10]
  489. if protoimpl.UnsafeEnabled && x != nil {
  490. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  491. if ms.LoadMessageInfo() == nil {
  492. ms.StoreMessageInfo(mi)
  493. }
  494. return ms
  495. }
  496. return mi.MessageOf(x)
  497. }
  498. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  499. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  500. return file_user_proto_rawDescGZIP(), []int{10}
  501. }
  502. func (x *RechargeInfo) GetId() int64 {
  503. if x != nil {
  504. return x.Id
  505. }
  506. return 0
  507. }
  508. func (x *RechargeInfo) GetPrice() int64 {
  509. if x != nil {
  510. return x.Price
  511. }
  512. return 0
  513. }
  514. func (x *RechargeInfo) GetCredit() int64 {
  515. if x != nil {
  516. return x.Credit
  517. }
  518. return 0
  519. }
  520. func (x *RechargeInfo) GetGiveCredit() int64 {
  521. if x != nil {
  522. return x.GiveCredit
  523. }
  524. return 0
  525. }
  526. func (x *RechargeInfo) GetDescription() string {
  527. if x != nil {
  528. return x.Description
  529. }
  530. return ""
  531. }
  532. func (x *RechargeInfo) GetTitle() string {
  533. if x != nil {
  534. return x.Title
  535. }
  536. return ""
  537. }
  538. type InformationStatus struct {
  539. state protoimpl.MessageState
  540. sizeCache protoimpl.SizeCache
  541. unknownFields protoimpl.UnknownFields
  542. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  543. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  544. }
  545. func (x *InformationStatus) Reset() {
  546. *x = InformationStatus{}
  547. if protoimpl.UnsafeEnabled {
  548. mi := &file_user_proto_msgTypes[11]
  549. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  550. ms.StoreMessageInfo(mi)
  551. }
  552. }
  553. func (x *InformationStatus) String() string {
  554. return protoimpl.X.MessageStringOf(x)
  555. }
  556. func (*InformationStatus) ProtoMessage() {}
  557. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  558. mi := &file_user_proto_msgTypes[11]
  559. if protoimpl.UnsafeEnabled && x != nil {
  560. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  561. if ms.LoadMessageInfo() == nil {
  562. ms.StoreMessageInfo(mi)
  563. }
  564. return ms
  565. }
  566. return mi.MessageOf(x)
  567. }
  568. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  569. func (*InformationStatus) Descriptor() ([]byte, []int) {
  570. return file_user_proto_rawDescGZIP(), []int{11}
  571. }
  572. func (x *InformationStatus) GetIsFinishInformation() bool {
  573. if x != nil {
  574. return x.IsFinishInformation
  575. }
  576. return false
  577. }
  578. func (x *InformationStatus) GetIsGetAward() bool {
  579. if x != nil {
  580. return x.IsGetAward
  581. }
  582. return false
  583. }
  584. type UserBalance struct {
  585. state protoimpl.MessageState
  586. sizeCache protoimpl.SizeCache
  587. unknownFields protoimpl.UnknownFields
  588. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  589. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  590. }
  591. func (x *UserBalance) Reset() {
  592. *x = UserBalance{}
  593. if protoimpl.UnsafeEnabled {
  594. mi := &file_user_proto_msgTypes[12]
  595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  596. ms.StoreMessageInfo(mi)
  597. }
  598. }
  599. func (x *UserBalance) String() string {
  600. return protoimpl.X.MessageStringOf(x)
  601. }
  602. func (*UserBalance) ProtoMessage() {}
  603. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  604. mi := &file_user_proto_msgTypes[12]
  605. if protoimpl.UnsafeEnabled && x != nil {
  606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  607. if ms.LoadMessageInfo() == nil {
  608. ms.StoreMessageInfo(mi)
  609. }
  610. return ms
  611. }
  612. return mi.MessageOf(x)
  613. }
  614. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  615. func (*UserBalance) Descriptor() ([]byte, []int) {
  616. return file_user_proto_rawDescGZIP(), []int{12}
  617. }
  618. func (x *UserBalance) GetId() string {
  619. if x != nil {
  620. return x.Id
  621. }
  622. return ""
  623. }
  624. func (x *UserBalance) GetCredit() int64 {
  625. if x != nil {
  626. return x.Credit
  627. }
  628. return 0
  629. }
  630. type UserFindChatListReply struct {
  631. state protoimpl.MessageState
  632. sizeCache protoimpl.SizeCache
  633. unknownFields protoimpl.UnknownFields
  634. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  635. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  636. }
  637. func (x *UserFindChatListReply) Reset() {
  638. *x = UserFindChatListReply{}
  639. if protoimpl.UnsafeEnabled {
  640. mi := &file_user_proto_msgTypes[13]
  641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  642. ms.StoreMessageInfo(mi)
  643. }
  644. }
  645. func (x *UserFindChatListReply) String() string {
  646. return protoimpl.X.MessageStringOf(x)
  647. }
  648. func (*UserFindChatListReply) ProtoMessage() {}
  649. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  650. mi := &file_user_proto_msgTypes[13]
  651. if protoimpl.UnsafeEnabled && x != nil {
  652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  653. if ms.LoadMessageInfo() == nil {
  654. ms.StoreMessageInfo(mi)
  655. }
  656. return ms
  657. }
  658. return mi.MessageOf(x)
  659. }
  660. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  661. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  662. return file_user_proto_rawDescGZIP(), []int{13}
  663. }
  664. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  665. if x != nil {
  666. return x.List
  667. }
  668. return nil
  669. }
  670. func (x *UserFindChatListReply) GetNextId() int64 {
  671. if x != nil {
  672. return x.NextId
  673. }
  674. return 0
  675. }
  676. type UserChatInfo struct {
  677. state protoimpl.MessageState
  678. sizeCache protoimpl.SizeCache
  679. unknownFields protoimpl.UnknownFields
  680. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  681. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  682. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  683. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  684. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  685. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  686. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  687. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  688. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  689. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  690. }
  691. func (x *UserChatInfo) Reset() {
  692. *x = UserChatInfo{}
  693. if protoimpl.UnsafeEnabled {
  694. mi := &file_user_proto_msgTypes[14]
  695. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  696. ms.StoreMessageInfo(mi)
  697. }
  698. }
  699. func (x *UserChatInfo) String() string {
  700. return protoimpl.X.MessageStringOf(x)
  701. }
  702. func (*UserChatInfo) ProtoMessage() {}
  703. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  704. mi := &file_user_proto_msgTypes[14]
  705. if protoimpl.UnsafeEnabled && x != nil {
  706. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  707. if ms.LoadMessageInfo() == nil {
  708. ms.StoreMessageInfo(mi)
  709. }
  710. return ms
  711. }
  712. return mi.MessageOf(x)
  713. }
  714. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  715. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  716. return file_user_proto_rawDescGZIP(), []int{14}
  717. }
  718. func (x *UserChatInfo) GetPersonId() string {
  719. if x != nil {
  720. return x.PersonId
  721. }
  722. return ""
  723. }
  724. func (x *UserChatInfo) GetUnreadNum() int64 {
  725. if x != nil {
  726. return x.UnreadNum
  727. }
  728. return 0
  729. }
  730. func (x *UserChatInfo) GetLastContent() string {
  731. if x != nil {
  732. return x.LastContent
  733. }
  734. return ""
  735. }
  736. func (x *UserChatInfo) GetLastTime() int64 {
  737. if x != nil {
  738. return x.LastTime
  739. }
  740. return 0
  741. }
  742. func (x *UserChatInfo) GetLikeability() int64 {
  743. if x != nil {
  744. return x.Likeability
  745. }
  746. return 0
  747. }
  748. func (x *UserChatInfo) GetSex() int64 {
  749. if x != nil {
  750. return x.Sex
  751. }
  752. return 0
  753. }
  754. func (x *UserChatInfo) GetAvatarUrl() string {
  755. if x != nil {
  756. return x.AvatarUrl
  757. }
  758. return ""
  759. }
  760. func (x *UserChatInfo) GetNickname() string {
  761. if x != nil {
  762. return x.Nickname
  763. }
  764. return ""
  765. }
  766. func (x *UserChatInfo) GetAge() int64 {
  767. if x != nil {
  768. return x.Age
  769. }
  770. return 0
  771. }
  772. func (x *UserChatInfo) GetRoomId() int64 {
  773. if x != nil {
  774. return x.RoomId
  775. }
  776. return 0
  777. }
  778. type UserInfo struct {
  779. state protoimpl.MessageState
  780. sizeCache protoimpl.SizeCache
  781. unknownFields protoimpl.UnknownFields
  782. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  783. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  784. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  785. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  786. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  787. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  788. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  789. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  790. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  791. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  792. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  793. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  794. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  795. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  796. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  797. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  798. }
  799. func (x *UserInfo) Reset() {
  800. *x = UserInfo{}
  801. if protoimpl.UnsafeEnabled {
  802. mi := &file_user_proto_msgTypes[15]
  803. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  804. ms.StoreMessageInfo(mi)
  805. }
  806. }
  807. func (x *UserInfo) String() string {
  808. return protoimpl.X.MessageStringOf(x)
  809. }
  810. func (*UserInfo) ProtoMessage() {}
  811. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  812. mi := &file_user_proto_msgTypes[15]
  813. if protoimpl.UnsafeEnabled && x != nil {
  814. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  815. if ms.LoadMessageInfo() == nil {
  816. ms.StoreMessageInfo(mi)
  817. }
  818. return ms
  819. }
  820. return mi.MessageOf(x)
  821. }
  822. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  823. func (*UserInfo) Descriptor() ([]byte, []int) {
  824. return file_user_proto_rawDescGZIP(), []int{15}
  825. }
  826. func (x *UserInfo) GetId() string {
  827. if x != nil {
  828. return x.Id
  829. }
  830. return ""
  831. }
  832. func (x *UserInfo) GetNickname() string {
  833. if x != nil {
  834. return x.Nickname
  835. }
  836. return ""
  837. }
  838. func (x *UserInfo) GetAvatarUrl() string {
  839. if x != nil {
  840. return x.AvatarUrl
  841. }
  842. return ""
  843. }
  844. func (x *UserInfo) GetAge() int64 {
  845. if x != nil {
  846. return x.Age
  847. }
  848. return 0
  849. }
  850. func (x *UserInfo) GetSex() int64 {
  851. if x != nil {
  852. return x.Sex
  853. }
  854. return 0
  855. }
  856. func (x *UserInfo) GetConstellation() string {
  857. if x != nil {
  858. return x.Constellation
  859. }
  860. return ""
  861. }
  862. func (x *UserInfo) GetCredit() int64 {
  863. if x != nil {
  864. return x.Credit
  865. }
  866. return 0
  867. }
  868. func (x *UserInfo) GetTagList() []int64 {
  869. if x != nil {
  870. return x.TagList
  871. }
  872. return nil
  873. }
  874. func (x *UserInfo) GetSignature() string {
  875. if x != nil {
  876. return x.Signature
  877. }
  878. return ""
  879. }
  880. func (x *UserInfo) GetIntroduceVoice() string {
  881. if x != nil {
  882. return x.IntroduceVoice
  883. }
  884. return ""
  885. }
  886. func (x *UserInfo) GetProvince() string {
  887. if x != nil {
  888. return x.Province
  889. }
  890. return ""
  891. }
  892. func (x *UserInfo) GetCity() string {
  893. if x != nil {
  894. return x.City
  895. }
  896. return ""
  897. }
  898. func (x *UserInfo) GetArea() string {
  899. if x != nil {
  900. return x.Area
  901. }
  902. return ""
  903. }
  904. func (x *UserInfo) GetUserId() int64 {
  905. if x != nil {
  906. return x.UserId
  907. }
  908. return 0
  909. }
  910. func (x *UserInfo) GetIsBlack() bool {
  911. if x != nil {
  912. return x.IsBlack
  913. }
  914. return false
  915. }
  916. func (x *UserInfo) GetIsRegister() bool {
  917. if x != nil {
  918. return x.IsRegister
  919. }
  920. return false
  921. }
  922. type KeyRequest struct {
  923. state protoimpl.MessageState
  924. sizeCache protoimpl.SizeCache
  925. unknownFields protoimpl.UnknownFields
  926. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  927. }
  928. func (x *KeyRequest) Reset() {
  929. *x = KeyRequest{}
  930. if protoimpl.UnsafeEnabled {
  931. mi := &file_user_proto_msgTypes[16]
  932. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  933. ms.StoreMessageInfo(mi)
  934. }
  935. }
  936. func (x *KeyRequest) String() string {
  937. return protoimpl.X.MessageStringOf(x)
  938. }
  939. func (*KeyRequest) ProtoMessage() {}
  940. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  941. mi := &file_user_proto_msgTypes[16]
  942. if protoimpl.UnsafeEnabled && x != nil {
  943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  944. if ms.LoadMessageInfo() == nil {
  945. ms.StoreMessageInfo(mi)
  946. }
  947. return ms
  948. }
  949. return mi.MessageOf(x)
  950. }
  951. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  952. func (*KeyRequest) Descriptor() ([]byte, []int) {
  953. return file_user_proto_rawDescGZIP(), []int{16}
  954. }
  955. func (x *KeyRequest) GetKey() string {
  956. if x != nil {
  957. return x.Key
  958. }
  959. return ""
  960. }
  961. type CreatePayRequest struct {
  962. state protoimpl.MessageState
  963. sizeCache protoimpl.SizeCache
  964. unknownFields protoimpl.UnknownFields
  965. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  966. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  967. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  968. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  969. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  970. }
  971. func (x *CreatePayRequest) Reset() {
  972. *x = CreatePayRequest{}
  973. if protoimpl.UnsafeEnabled {
  974. mi := &file_user_proto_msgTypes[17]
  975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  976. ms.StoreMessageInfo(mi)
  977. }
  978. }
  979. func (x *CreatePayRequest) String() string {
  980. return protoimpl.X.MessageStringOf(x)
  981. }
  982. func (*CreatePayRequest) ProtoMessage() {}
  983. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  984. mi := &file_user_proto_msgTypes[17]
  985. if protoimpl.UnsafeEnabled && x != nil {
  986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  987. if ms.LoadMessageInfo() == nil {
  988. ms.StoreMessageInfo(mi)
  989. }
  990. return ms
  991. }
  992. return mi.MessageOf(x)
  993. }
  994. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  995. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  996. return file_user_proto_rawDescGZIP(), []int{17}
  997. }
  998. func (x *CreatePayRequest) GetMoney() int64 {
  999. if x != nil {
  1000. return x.Money
  1001. }
  1002. return 0
  1003. }
  1004. func (x *CreatePayRequest) GetType() string {
  1005. if x != nil {
  1006. return x.Type
  1007. }
  1008. return ""
  1009. }
  1010. func (x *CreatePayRequest) GetOpenId() string {
  1011. if x != nil {
  1012. return x.OpenId
  1013. }
  1014. return ""
  1015. }
  1016. func (x *CreatePayRequest) GetDescription() string {
  1017. if x != nil {
  1018. return x.Description
  1019. }
  1020. return ""
  1021. }
  1022. func (x *CreatePayRequest) GetAttach() string {
  1023. if x != nil {
  1024. return x.Attach
  1025. }
  1026. return ""
  1027. }
  1028. type PayInfo struct {
  1029. state protoimpl.MessageState
  1030. sizeCache protoimpl.SizeCache
  1031. unknownFields protoimpl.UnknownFields
  1032. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  1033. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  1034. }
  1035. func (x *PayInfo) Reset() {
  1036. *x = PayInfo{}
  1037. if protoimpl.UnsafeEnabled {
  1038. mi := &file_user_proto_msgTypes[18]
  1039. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1040. ms.StoreMessageInfo(mi)
  1041. }
  1042. }
  1043. func (x *PayInfo) String() string {
  1044. return protoimpl.X.MessageStringOf(x)
  1045. }
  1046. func (*PayInfo) ProtoMessage() {}
  1047. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  1048. mi := &file_user_proto_msgTypes[18]
  1049. if protoimpl.UnsafeEnabled && x != nil {
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. if ms.LoadMessageInfo() == nil {
  1052. ms.StoreMessageInfo(mi)
  1053. }
  1054. return ms
  1055. }
  1056. return mi.MessageOf(x)
  1057. }
  1058. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  1059. func (*PayInfo) Descriptor() ([]byte, []int) {
  1060. return file_user_proto_rawDescGZIP(), []int{18}
  1061. }
  1062. func (x *PayInfo) GetPayInfo() *structpb.Value {
  1063. if x != nil {
  1064. return x.PayInfo
  1065. }
  1066. return nil
  1067. }
  1068. func (x *PayInfo) GetOrderId() int64 {
  1069. if x != nil {
  1070. return x.OrderId
  1071. }
  1072. return 0
  1073. }
  1074. type PayOrderInfo struct {
  1075. state protoimpl.MessageState
  1076. sizeCache protoimpl.SizeCache
  1077. unknownFields protoimpl.UnknownFields
  1078. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  1079. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  1080. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  1081. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  1082. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  1083. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  1084. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  1085. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  1086. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  1087. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1088. }
  1089. func (x *PayOrderInfo) Reset() {
  1090. *x = PayOrderInfo{}
  1091. if protoimpl.UnsafeEnabled {
  1092. mi := &file_user_proto_msgTypes[19]
  1093. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1094. ms.StoreMessageInfo(mi)
  1095. }
  1096. }
  1097. func (x *PayOrderInfo) String() string {
  1098. return protoimpl.X.MessageStringOf(x)
  1099. }
  1100. func (*PayOrderInfo) ProtoMessage() {}
  1101. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  1102. mi := &file_user_proto_msgTypes[19]
  1103. if protoimpl.UnsafeEnabled && x != nil {
  1104. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1105. if ms.LoadMessageInfo() == nil {
  1106. ms.StoreMessageInfo(mi)
  1107. }
  1108. return ms
  1109. }
  1110. return mi.MessageOf(x)
  1111. }
  1112. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  1113. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  1114. return file_user_proto_rawDescGZIP(), []int{19}
  1115. }
  1116. func (x *PayOrderInfo) GetUserID() string {
  1117. if x != nil {
  1118. return x.UserID
  1119. }
  1120. return ""
  1121. }
  1122. func (x *PayOrderInfo) GetOrderID() int64 {
  1123. if x != nil {
  1124. return x.OrderID
  1125. }
  1126. return 0
  1127. }
  1128. func (x *PayOrderInfo) GetMoney() int64 {
  1129. if x != nil {
  1130. return x.Money
  1131. }
  1132. return 0
  1133. }
  1134. func (x *PayOrderInfo) GetType() string {
  1135. if x != nil {
  1136. return x.Type
  1137. }
  1138. return ""
  1139. }
  1140. func (x *PayOrderInfo) GetTransactionID() string {
  1141. if x != nil {
  1142. return x.TransactionID
  1143. }
  1144. return ""
  1145. }
  1146. func (x *PayOrderInfo) GetOpenId() string {
  1147. if x != nil {
  1148. return x.OpenId
  1149. }
  1150. return ""
  1151. }
  1152. func (x *PayOrderInfo) GetDescription() string {
  1153. if x != nil {
  1154. return x.Description
  1155. }
  1156. return ""
  1157. }
  1158. func (x *PayOrderInfo) GetStatus() string {
  1159. if x != nil {
  1160. return x.Status
  1161. }
  1162. return ""
  1163. }
  1164. func (x *PayOrderInfo) GetPayTime() int64 {
  1165. if x != nil {
  1166. return x.PayTime
  1167. }
  1168. return 0
  1169. }
  1170. func (x *PayOrderInfo) GetCreateTime() int64 {
  1171. if x != nil {
  1172. return x.CreateTime
  1173. }
  1174. return 0
  1175. }
  1176. type PayOrderList struct {
  1177. state protoimpl.MessageState
  1178. sizeCache protoimpl.SizeCache
  1179. unknownFields protoimpl.UnknownFields
  1180. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1181. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1182. }
  1183. func (x *PayOrderList) Reset() {
  1184. *x = PayOrderList{}
  1185. if protoimpl.UnsafeEnabled {
  1186. mi := &file_user_proto_msgTypes[20]
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. ms.StoreMessageInfo(mi)
  1189. }
  1190. }
  1191. func (x *PayOrderList) String() string {
  1192. return protoimpl.X.MessageStringOf(x)
  1193. }
  1194. func (*PayOrderList) ProtoMessage() {}
  1195. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  1196. mi := &file_user_proto_msgTypes[20]
  1197. if protoimpl.UnsafeEnabled && x != nil {
  1198. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1199. if ms.LoadMessageInfo() == nil {
  1200. ms.StoreMessageInfo(mi)
  1201. }
  1202. return ms
  1203. }
  1204. return mi.MessageOf(x)
  1205. }
  1206. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  1207. func (*PayOrderList) Descriptor() ([]byte, []int) {
  1208. return file_user_proto_rawDescGZIP(), []int{20}
  1209. }
  1210. func (x *PayOrderList) GetList() []*PayOrderInfo {
  1211. if x != nil {
  1212. return x.List
  1213. }
  1214. return nil
  1215. }
  1216. func (x *PayOrderList) GetNextId() int64 {
  1217. if x != nil {
  1218. return x.NextId
  1219. }
  1220. return 0
  1221. }
  1222. type FindPayOrderListRequest struct {
  1223. state protoimpl.MessageState
  1224. sizeCache protoimpl.SizeCache
  1225. unknownFields protoimpl.UnknownFields
  1226. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1227. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1228. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  1229. }
  1230. func (x *FindPayOrderListRequest) Reset() {
  1231. *x = FindPayOrderListRequest{}
  1232. if protoimpl.UnsafeEnabled {
  1233. mi := &file_user_proto_msgTypes[21]
  1234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1235. ms.StoreMessageInfo(mi)
  1236. }
  1237. }
  1238. func (x *FindPayOrderListRequest) String() string {
  1239. return protoimpl.X.MessageStringOf(x)
  1240. }
  1241. func (*FindPayOrderListRequest) ProtoMessage() {}
  1242. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  1243. mi := &file_user_proto_msgTypes[21]
  1244. if protoimpl.UnsafeEnabled && x != nil {
  1245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1246. if ms.LoadMessageInfo() == nil {
  1247. ms.StoreMessageInfo(mi)
  1248. }
  1249. return ms
  1250. }
  1251. return mi.MessageOf(x)
  1252. }
  1253. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  1254. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  1255. return file_user_proto_rawDescGZIP(), []int{21}
  1256. }
  1257. func (x *FindPayOrderListRequest) GetNextId() int64 {
  1258. if x != nil {
  1259. return x.NextId
  1260. }
  1261. return 0
  1262. }
  1263. func (x *FindPayOrderListRequest) GetOffset() int64 {
  1264. if x != nil {
  1265. return x.Offset
  1266. }
  1267. return 0
  1268. }
  1269. func (x *FindPayOrderListRequest) GetStatus() string {
  1270. if x != nil {
  1271. return x.Status
  1272. }
  1273. return ""
  1274. }
  1275. type PayCallbackReply struct {
  1276. state protoimpl.MessageState
  1277. sizeCache protoimpl.SizeCache
  1278. unknownFields protoimpl.UnknownFields
  1279. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  1280. }
  1281. func (x *PayCallbackReply) Reset() {
  1282. *x = PayCallbackReply{}
  1283. if protoimpl.UnsafeEnabled {
  1284. mi := &file_user_proto_msgTypes[22]
  1285. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1286. ms.StoreMessageInfo(mi)
  1287. }
  1288. }
  1289. func (x *PayCallbackReply) String() string {
  1290. return protoimpl.X.MessageStringOf(x)
  1291. }
  1292. func (*PayCallbackReply) ProtoMessage() {}
  1293. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  1294. mi := &file_user_proto_msgTypes[22]
  1295. if protoimpl.UnsafeEnabled && x != nil {
  1296. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1297. if ms.LoadMessageInfo() == nil {
  1298. ms.StoreMessageInfo(mi)
  1299. }
  1300. return ms
  1301. }
  1302. return mi.MessageOf(x)
  1303. }
  1304. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  1305. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  1306. return file_user_proto_rawDescGZIP(), []int{22}
  1307. }
  1308. func (x *PayCallbackReply) GetResult() []byte {
  1309. if x != nil {
  1310. return x.Result
  1311. }
  1312. return nil
  1313. }
  1314. var File_user_proto protoreflect.FileDescriptor
  1315. var file_user_proto_rawDesc = []byte{
  1316. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1317. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  1318. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  1319. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1320. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1321. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1322. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1323. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  1324. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1325. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  1326. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  1327. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x42,
  1328. 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43,
  1329. 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73,
  1330. 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  1331. 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  1332. 0x65, 0x72, 0x22, 0x7d, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75,
  1333. 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e,
  1334. 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53,
  1335. 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74,
  1336. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1337. 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12,
  1338. 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03,
  1339. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75,
  1340. 0x6d, 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  1341. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49,
  1342. 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64,
  1343. 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  1344. 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  1345. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  1346. 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  1347. 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72,
  1348. 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  1349. 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03,
  1350. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a,
  1351. 0x14, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  1352. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  1353. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a,
  1354. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f,
  1355. 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53,
  1356. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73,
  1357. 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63,
  1358. 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
  1359. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74,
  1360. 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12,
  1361. 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20,
  1362. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22,
  1363. 0x45, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41,
  1364. 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1365. 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e,
  1366. 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
  1367. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  1368. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a,
  1369. 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  1370. 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61,
  1371. 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a,
  1372. 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a,
  1373. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70,
  1374. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49,
  1375. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65,
  1376. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1377. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72,
  1378. 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65,
  1379. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1380. 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65,
  1381. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69,
  1382. 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63,
  1383. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
  1384. 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69,
  1385. 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65,
  1386. 0x22, 0x65, 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
  1387. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73,
  1388. 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
  1389. 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f,
  1390. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74,
  1391. 0x41, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47,
  1392. 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42,
  1393. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  1394. 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  1395. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b,
  1396. 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69,
  1397. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  1398. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1399. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
  1400. 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20,
  1401. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c,
  1402. 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08,
  1403. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1404. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65,
  1405. 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72,
  1406. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f,
  1407. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73,
  1408. 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74,
  1409. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74,
  1410. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c,
  1411. 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61,
  1412. 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20,
  1413. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74,
  1414. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61,
  1415. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1416. 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1417. 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52,
  1418. 0x03, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c,
  1419. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xac, 0x03, 0x0a,
  1420. 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1421. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  1422. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  1423. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1424. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  1425. 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  1426. 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01,
  1427. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74,
  1428. 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  1429. 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a,
  1430. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  1431. 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  1432. 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1433. 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01,
  1434. 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a,
  1435. 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18,
  1436. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  1437. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  1438. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  1439. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  1440. 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20,
  1441. 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65,
  1442. 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  1443. 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01,
  1444. 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69,
  1445. 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52,
  1446. 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x22, 0x1e, 0x0a, 0x0a, 0x4b,
  1447. 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  1448. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10,
  1449. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1450. 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1451. 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02,
  1452. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70,
  1453. 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e,
  1454. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  1455. 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  1456. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05,
  1457. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07,
  1458. 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e,
  1459. 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1460. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1461. 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64,
  1462. 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65,
  1463. 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72,
  1464. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01,
  1465. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07,
  1466. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f,
  1467. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18,
  1468. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04,
  1469. 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
  1470. 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  1471. 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63,
  1472. 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64,
  1473. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20,
  1474. 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
  1475. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1476. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  1477. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54,
  1478. 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69,
  1479. 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  1480. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69,
  1481. 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  1482. 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  1483. 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f,
  1484. 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16,
  1485. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1486. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61,
  1487. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1488. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1489. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
  1490. 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  1491. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  1492. 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79,
  1493. 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a,
  1494. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72,
  1495. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0xbd, 0x3b, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54,
  1496. 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e,
  1497. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1498. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1499. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1500. 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66,
  1501. 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e,
  1502. 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1503. 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  1504. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1505. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1506. 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1507. 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12,
  1508. 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  1509. 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  1510. 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
  1511. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1512. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3,
  1513. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1514. 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a,
  1515. 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  1516. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1517. 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  1518. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  1519. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1520. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61,
  1521. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69,
  1522. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a,
  1523. 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f,
  1524. 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1525. 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  1526. 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1527. 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4,
  1528. 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  1529. 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a,
  1530. 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12,
  1531. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1532. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  1533. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c,
  1534. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1535. 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f,
  1536. 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1537. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  1538. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1539. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19,
  1540. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1541. 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65,
  1542. 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41,
  1543. 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1544. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  1545. 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1546. 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d,
  1547. 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1548. 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69,
  1549. 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  1550. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65,
  1551. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  1552. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64,
  1553. 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82,
  1554. 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1555. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a,
  1556. 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1557. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a,
  1558. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f,
  1559. 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93,
  1560. 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64,
  1561. 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46,
  1562. 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12,
  1563. 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78,
  1564. 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1565. 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82,
  1566. 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1567. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e,
  1568. 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c,
  1569. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  1570. 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61,
  1571. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  1572. 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1573. 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69,
  1574. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e,
  1575. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74,
  1576. 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  1577. 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1578. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1579. 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  1580. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1581. 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1582. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77,
  1583. 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64,
  1584. 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d,
  1585. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1586. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1587. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  1588. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1589. 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69,
  1590. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  1591. 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43,
  1592. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e,
  1593. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43,
  1594. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  1595. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1596. 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  1597. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f,
  1598. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65,
  1599. 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43,
  1600. 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69,
  1601. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  1602. 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17,
  1603. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74,
  1604. 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22,
  1605. 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  1606. 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47,
  1607. 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61,
  1608. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1609. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1610. 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1611. 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c,
  1612. 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65,
  1613. 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1614. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1615. 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  1616. 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22,
  1617. 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  1618. 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d,
  1619. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e,
  1620. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43,
  1621. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1622. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  1623. 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93,
  1624. 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69,
  1625. 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52,
  1626. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1627. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d,
  1628. 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f,
  1629. 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3,
  1630. 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1631. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  1632. 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69,
  1633. 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1634. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d,
  1635. 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1636. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69,
  1637. 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69,
  1638. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63,
  1639. 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69,
  1640. 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  1641. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1642. 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1643. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24,
  1644. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1645. 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c,
  1646. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43,
  1647. 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1648. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1649. 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  1650. 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93,
  1651. 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68,
  1652. 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69,
  1653. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65,
  1654. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1655. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1656. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c,
  1657. 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  1658. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74,
  1659. 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65,
  1660. 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1661. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  1662. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1663. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e,
  1664. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01,
  1665. 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12,
  1666. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  1667. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1668. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1669. 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1670. 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a,
  1671. 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1672. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52,
  1673. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1674. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b,
  1675. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1676. 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16,
  1677. 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79,
  1678. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1679. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27,
  1680. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  1681. 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74,
  1682. 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22,
  1683. 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f,
  1684. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x79,
  1685. 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69,
  1686. 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1687. 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70,
  1688. 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1689. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1690. 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1691. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f,
  1692. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43, 0x72, 0x65,
  1693. 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  1694. 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  1695. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1696. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82, 0xd3, 0xe4,
  1697. 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  1698. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66,
  1699. 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e,
  1700. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53,
  1701. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1702. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1703. 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70,
  1704. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c,
  1705. 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79,
  1706. 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1707. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  1708. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1709. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82,
  1710. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1711. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66,
  1712. 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72,
  1713. 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1714. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  1715. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1716. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4,
  1717. 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  1718. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a,
  1719. 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  1720. 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  1721. 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69,
  1722. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1723. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1724. 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1725. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72,
  1726. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0f, 0x50,
  1727. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x20,
  1728. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1729. 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1730. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1731. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19,
  1732. 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69,
  1733. 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72,
  1734. 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b,
  1735. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1736. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1737. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  1738. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1739. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61,
  1740. 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52,
  1741. 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1742. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  1743. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1744. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e,
  1745. 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69,
  1746. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c,
  1747. 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65,
  1748. 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1749. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1750. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1751. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1752. 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  1753. 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47,
  1754. 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e,
  1755. 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1756. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69,
  1757. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52,
  1758. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61,
  1759. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72,
  1760. 0x65, 0x61, 0x64, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73,
  1761. 0x65, 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19,
  1762. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d,
  1763. 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1764. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1765. 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1766. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01,
  1767. 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50,
  1768. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1769. 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1770. 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1771. 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63,
  1772. 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65,
  1773. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1774. 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1775. 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  1776. 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50,
  1777. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  1778. 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52,
  1779. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1780. 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73,
  1781. 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
  1782. 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63,
  1783. 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69,
  1784. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  1785. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65,
  1786. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  1787. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64,
  1788. 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82,
  1789. 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1790. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a,
  1791. 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b,
  1792. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  1793. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70,
  1794. 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f,
  1795. 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1796. 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1797. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x3a,
  1798. 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e,
  1799. 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d,
  1800. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1801. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27,
  1802. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  1803. 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1804. 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22,
  1805. 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c,
  1806. 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0e, 0x47,
  1807. 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e,
  1808. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1809. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74,
  1810. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1811. 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22,
  1812. 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f,
  1813. 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69,
  1814. 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  1815. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1816. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1817. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1818. 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1819. 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x66,
  1820. 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72,
  1821. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
  1822. 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1823. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1824. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1825. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c,
  1826. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  1827. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12,
  1828. 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  1829. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1830. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1831. 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1832. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93,
  1833. 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e,
  1834. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a,
  1835. 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b,
  1836. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1837. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  1838. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1839. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
  1840. 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f,
  1841. 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73, 0x65,
  1842. 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1843. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  1844. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  1845. 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3, 0xe4,
  1846. 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72,
  1847. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46, 0x69,
  1848. 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16,
  1849. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1850. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  1851. 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22,
  1852. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1853. 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a,
  1854. 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4c, 0x69, 0x73,
  1855. 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e,
  1856. 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  1857. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  1858. 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x82, 0xd3,
  1859. 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1860. 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a, 0x17, 0x46,
  1861. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73,
  1862. 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1863. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x24,
  1864. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f,
  1865. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1866. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61,
  1867. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x72, 0x65, 0x63,
  1868. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a, 0x18, 0x46, 0x69,
  1869. 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  1870. 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1871. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27,
  1872. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61,
  1873. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e,
  1874. 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22,
  1875. 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68,
  1876. 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63,
  1877. 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1878. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1879. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  1880. 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82,
  1881. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1882. 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f, 0x67, 0x65, 0x74,
  1883. 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72,
  1884. 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1885. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e,
  1886. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65,
  1887. 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61,
  1888. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f, 0x6e, 0x75, 0x6d,
  1889. 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  1890. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1891. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x61,
  1892. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f,
  1893. 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24,
  1894. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1895. 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e,
  1896. 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f,
  1897. 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1898. 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  1899. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1900. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16,
  1901. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b,
  1902. 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d, 0x55, 0x6e, 0x6c,
  1903. 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  1904. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65,
  1905. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1906. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x82,
  1907. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1908. 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a,
  1909. 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  1910. 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1911. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1912. 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1913. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  1914. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70,
  1915. 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x3a, 0x01, 0x2a,
  1916. 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61,
  1917. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1918. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61,
  1919. 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69,
  1920. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1921. 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1922. 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x70,
  1923. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74,
  1924. 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1925. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50,
  1926. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1927. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e, 0x46,
  1928. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e,
  1929. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  1930. 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1931. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70,
  1932. 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74,
  1933. 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1934. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73,
  1935. 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1936. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1937. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x17, 0x46,
  1938. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  1939. 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1940. 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  1941. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1942. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65,
  1943. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  1944. 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65,
  1945. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  1946. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1947. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1948. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67,
  1949. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61,
  1950. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1951. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1952. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a,
  1953. 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  1954. 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  1955. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  1956. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1957. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43,
  1958. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65,
  1959. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1960. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  1961. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1962. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1963. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69,
  1964. 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  1965. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1966. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1967. 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72,
  1968. 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1969. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  1970. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1971. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  1972. 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e,
  1973. 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72,
  1974. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b,
  1975. 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1976. }
  1977. var (
  1978. file_user_proto_rawDescOnce sync.Once
  1979. file_user_proto_rawDescData = file_user_proto_rawDesc
  1980. )
  1981. func file_user_proto_rawDescGZIP() []byte {
  1982. file_user_proto_rawDescOnce.Do(func() {
  1983. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  1984. })
  1985. return file_user_proto_rawDescData
  1986. }
  1987. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
  1988. var file_user_proto_goTypes = []interface{}{
  1989. (*SendMsgReduceCreditReply)(nil), // 0: api.user.SendMsgReduceCreditReply
  1990. (*UserFreeNum)(nil), // 1: api.user.UserFreeNum
  1991. (*ReplyScripRequest)(nil), // 2: api.user.ReplyScripRequest
  1992. (*PersonLookScripRequest)(nil), // 3: api.user.PersonLookScripRequest
  1993. (*UserFindScripRequest)(nil), // 4: api.user.UserFindScripRequest
  1994. (*DeleteScripRequest)(nil), // 5: api.user.DeleteScripRequest
  1995. (*CreateScripRequest)(nil), // 6: api.user.CreateScripRequest
  1996. (*FindMatchingAvatarAndNumReply)(nil), // 7: api.user.FindMatchingAvatarAndNumReply
  1997. (*UserRechargeRequest)(nil), // 8: api.user.UserRechargeRequest
  1998. (*RechargeList)(nil), // 9: api.user.RechargeList
  1999. (*RechargeInfo)(nil), // 10: api.user.RechargeInfo
  2000. (*InformationStatus)(nil), // 11: api.user.InformationStatus
  2001. (*UserBalance)(nil), // 12: api.user.UserBalance
  2002. (*UserFindChatListReply)(nil), // 13: api.user.UserFindChatListReply
  2003. (*UserChatInfo)(nil), // 14: api.user.UserChatInfo
  2004. (*UserInfo)(nil), // 15: api.user.UserInfo
  2005. (*KeyRequest)(nil), // 16: api.user.KeyRequest
  2006. (*CreatePayRequest)(nil), // 17: api.user.CreatePayRequest
  2007. (*PayInfo)(nil), // 18: api.user.PayInfo
  2008. (*PayOrderInfo)(nil), // 19: api.user.PayOrderInfo
  2009. (*PayOrderList)(nil), // 20: api.user.PayOrderList
  2010. (*FindPayOrderListRequest)(nil), // 21: api.user.FindPayOrderListRequest
  2011. (*PayCallbackReply)(nil), // 22: api.user.PayCallbackReply
  2012. (*common.Message)(nil), // 23: api.common.Message
  2013. (*structpb.Value)(nil), // 24: google.protobuf.Value
  2014. (*emptypb.Empty)(nil), // 25: google.protobuf.Empty
  2015. (*common.SendPhoneCodeRequest)(nil), // 26: api.common.SendPhoneCodeRequest
  2016. (*common.CheckPhoneCodeRequest)(nil), // 27: api.common.CheckPhoneCodeRequest
  2017. (*common.UpdateInformationRequest)(nil), // 28: api.common.UpdateInformationRequest
  2018. (*common.CreateChatRoomParam)(nil), // 29: api.common.CreateChatRoomParam
  2019. (*common.PersonParam)(nil), // 30: api.common.PersonParam
  2020. (*common.ListPageRequest)(nil), // 31: api.common.ListPageRequest
  2021. (*common.WxConfReq)(nil), // 32: api.common.WxConfReq
  2022. (*common.SexReq)(nil), // 33: api.common.SexReq
  2023. (*common.ListPage2Request)(nil), // 34: api.common.ListPage2Request
  2024. (*common.FindChatRecordListRequest)(nil), // 35: api.common.FindChatRecordListRequest
  2025. (*common.FindChatRoomMsgRequest)(nil), // 36: api.common.FindChatRoomMsgRequest
  2026. (*common.MemeRequest)(nil), // 37: api.common.MemeRequest
  2027. (*common.FindChatTopicRequest)(nil), // 38: api.common.FindChatTopicRequest
  2028. (*common.RandomNum)(nil), // 39: api.common.RandomNum
  2029. (*common.RandomNumAndSex)(nil), // 40: api.common.RandomNumAndSex
  2030. (*common.ReportChatRequest)(nil), // 41: api.common.ReportChatRequest
  2031. (*common.UpdateLastScripIDRequest)(nil), // 42: api.common.UpdateLastScripIDRequest
  2032. (*common.FindScripRequest)(nil), // 43: api.common.FindScripRequest
  2033. (*common.RoomIDRequest)(nil), // 44: api.common.RoomIDRequest
  2034. (*common.PartnerIDParam)(nil), // 45: api.common.PartnerIDParam
  2035. (*common.PersonIDParam)(nil), // 46: api.common.PersonIDParam
  2036. (*common.PersonIDList)(nil), // 47: api.common.PersonIDList
  2037. (*common.UpdateLastScripIDDBRequest)(nil), // 48: api.common.UpdateLastScripIDDBRequest
  2038. (*common.FindRecommendRequest)(nil), // 49: api.common.FindRecommendRequest
  2039. (*chat.RoomReply)(nil), // 50: api.chat.RoomReply
  2040. (*common.HomeInfo)(nil), // 51: api.common.HomeInfo
  2041. (*common.LookedAndLikedNum)(nil), // 52: api.common.LookedAndLikedNum
  2042. (*statistics.LookAndLikeListReply)(nil), // 53: api.statistics.LookAndLikeListReply
  2043. (*common.WxConfResponse)(nil), // 54: api.common.WxConfResponse
  2044. (*common.TagListReply)(nil), // 55: api.common.TagListReply
  2045. (*common.RecommendPersonListReply)(nil), // 56: api.common.RecommendPersonListReply
  2046. (*common.ChatRecordListReply)(nil), // 57: api.common.ChatRecordListReply
  2047. (*common.ChatRoomMsg)(nil), // 58: api.common.ChatRoomMsg
  2048. (*common.IsLike)(nil), // 59: api.common.IsLike
  2049. (*common.MemeList)(nil), // 60: api.common.MemeList
  2050. (*common.ChatTopicList)(nil), // 61: api.common.ChatTopicList
  2051. (*common.CommonTextList)(nil), // 62: api.common.CommonTextList
  2052. (*common.MemeTitleList)(nil), // 63: api.common.MemeTitleList
  2053. (*common.ChatCardInfo)(nil), // 64: api.common.ChatCardInfo
  2054. (*common.FindOverSevenDayAvatarReply)(nil), // 65: api.common.FindOverSevenDayAvatarReply
  2055. (*common.ScripID)(nil), // 66: api.common.ScripID
  2056. (*common.ScripReply)(nil), // 67: api.common.ScripReply
  2057. (*common.ScripInfo)(nil), // 68: api.common.ScripInfo
  2058. (*common.ChatRecordInfo)(nil), // 69: api.common.ChatRecordInfo
  2059. (*chat.UnreadNumReply)(nil), // 70: api.chat.UnreadNumReply
  2060. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 71: api.chat.CheckUserPartnerIsRelationshipReply
  2061. (*common.AddFriendMessageInfo)(nil), // 72: api.common.AddFriendMessageInfo
  2062. (*statistics.LookAndLikeMessageReply)(nil), // 73: api.statistics.LookAndLikeMessageReply
  2063. (*statistics.LookMessageReply)(nil), // 74: api.statistics.LookMessageReply
  2064. (*chat.WindowInfo)(nil), // 75: api.chat.WindowInfo
  2065. (*chat.GetRandomMatchingReply)(nil), // 76: api.chat.GetRandomMatchingReply
  2066. (*common.PersonMsg)(nil), // 77: api.common.PersonMsg
  2067. (*common.PersonDBReply)(nil), // 78: api.common.PersonDBReply
  2068. }
  2069. var file_user_proto_depIdxs = []int32{
  2070. 23, // 0: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  2071. 10, // 1: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  2072. 14, // 2: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  2073. 24, // 3: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  2074. 19, // 4: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  2075. 25, // 5: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  2076. 26, // 6: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2077. 27, // 7: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2078. 28, // 8: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  2079. 29, // 9: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  2080. 25, // 10: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  2081. 30, // 11: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  2082. 30, // 12: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2083. 31, // 13: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  2084. 32, // 14: api.user.User.WxConf:input_type -> api.common.WxConfReq
  2085. 33, // 15: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  2086. 34, // 16: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  2087. 31, // 17: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2088. 31, // 18: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2089. 35, // 19: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2090. 36, // 20: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2091. 30, // 21: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  2092. 37, // 22: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  2093. 38, // 23: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2094. 39, // 24: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  2095. 40, // 25: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2096. 25, // 26: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  2097. 30, // 27: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  2098. 25, // 28: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2099. 30, // 29: api.user.User.UserLike:input_type -> api.common.PersonParam
  2100. 30, // 30: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  2101. 41, // 31: api.user.User.Report:input_type -> api.common.ReportChatRequest
  2102. 25, // 32: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2103. 42, // 33: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2104. 6, // 34: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  2105. 5, // 35: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  2106. 4, // 36: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  2107. 43, // 37: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  2108. 4, // 38: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  2109. 3, // 39: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  2110. 25, // 40: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  2111. 2, // 41: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  2112. 44, // 42: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  2113. 25, // 43: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  2114. 44, // 44: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  2115. 45, // 45: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  2116. 16, // 46: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  2117. 31, // 47: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  2118. 31, // 48: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  2119. 25, // 49: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  2120. 25, // 50: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  2121. 25, // 51: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  2122. 25, // 52: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  2123. 25, // 53: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  2124. 30, // 54: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  2125. 8, // 55: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  2126. 25, // 56: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  2127. 21, // 57: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  2128. 25, // 58: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  2129. 25, // 59: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  2130. 25, // 60: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  2131. 25, // 61: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  2132. 33, // 62: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  2133. 44, // 63: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  2134. 44, // 64: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  2135. 25, // 65: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  2136. 29, // 66: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  2137. 46, // 67: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  2138. 47, // 68: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  2139. 48, // 69: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  2140. 49, // 70: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  2141. 46, // 71: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  2142. 30, // 72: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  2143. 30, // 73: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  2144. 30, // 74: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  2145. 30, // 75: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  2146. 30, // 76: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  2147. 15, // 77: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  2148. 25, // 78: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  2149. 25, // 79: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  2150. 25, // 80: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  2151. 50, // 81: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  2152. 12, // 82: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  2153. 51, // 83: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  2154. 52, // 84: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  2155. 53, // 85: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  2156. 54, // 86: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  2157. 55, // 87: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  2158. 56, // 88: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  2159. 13, // 89: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2160. 13, // 90: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2161. 57, // 91: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2162. 58, // 92: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2163. 59, // 93: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  2164. 60, // 94: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  2165. 61, // 95: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  2166. 62, // 96: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  2167. 62, // 97: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  2168. 63, // 98: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  2169. 64, // 99: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  2170. 63, // 100: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  2171. 25, // 101: api.user.User.UserLike:output_type -> google.protobuf.Empty
  2172. 25, // 102: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  2173. 25, // 103: api.user.User.Report:output_type -> google.protobuf.Empty
  2174. 65, // 104: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  2175. 25, // 105: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  2176. 66, // 106: api.user.User.CreateScrip:output_type -> api.common.ScripID
  2177. 25, // 107: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  2178. 67, // 108: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  2179. 67, // 109: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  2180. 67, // 110: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  2181. 25, // 111: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  2182. 68, // 112: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  2183. 69, // 113: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2184. 25, // 114: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  2185. 70, // 115: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  2186. 25, // 116: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  2187. 71, // 117: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  2188. 72, // 118: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  2189. 53, // 119: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  2190. 53, // 120: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  2191. 73, // 121: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  2192. 74, // 122: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  2193. 25, // 123: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  2194. 11, // 124: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  2195. 25, // 125: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  2196. 25, // 126: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  2197. 18, // 127: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  2198. 9, // 128: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  2199. 20, // 129: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  2200. 56, // 130: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  2201. 7, // 131: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  2202. 75, // 132: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  2203. 1, // 133: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  2204. 76, // 134: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  2205. 25, // 135: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  2206. 25, // 136: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  2207. 25, // 137: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  2208. 50, // 138: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  2209. 77, // 139: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  2210. 78, // 140: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  2211. 25, // 141: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  2212. 78, // 142: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  2213. 25, // 143: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  2214. 25, // 144: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  2215. 25, // 145: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  2216. 25, // 146: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  2217. 25, // 147: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  2218. 25, // 148: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  2219. 77, // [77:149] is the sub-list for method output_type
  2220. 5, // [5:77] is the sub-list for method input_type
  2221. 5, // [5:5] is the sub-list for extension type_name
  2222. 5, // [5:5] is the sub-list for extension extendee
  2223. 0, // [0:5] is the sub-list for field type_name
  2224. }
  2225. func init() { file_user_proto_init() }
  2226. func file_user_proto_init() {
  2227. if File_user_proto != nil {
  2228. return
  2229. }
  2230. if !protoimpl.UnsafeEnabled {
  2231. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2232. switch v := v.(*SendMsgReduceCreditReply); i {
  2233. case 0:
  2234. return &v.state
  2235. case 1:
  2236. return &v.sizeCache
  2237. case 2:
  2238. return &v.unknownFields
  2239. default:
  2240. return nil
  2241. }
  2242. }
  2243. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2244. switch v := v.(*UserFreeNum); i {
  2245. case 0:
  2246. return &v.state
  2247. case 1:
  2248. return &v.sizeCache
  2249. case 2:
  2250. return &v.unknownFields
  2251. default:
  2252. return nil
  2253. }
  2254. }
  2255. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2256. switch v := v.(*ReplyScripRequest); i {
  2257. case 0:
  2258. return &v.state
  2259. case 1:
  2260. return &v.sizeCache
  2261. case 2:
  2262. return &v.unknownFields
  2263. default:
  2264. return nil
  2265. }
  2266. }
  2267. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2268. switch v := v.(*PersonLookScripRequest); i {
  2269. case 0:
  2270. return &v.state
  2271. case 1:
  2272. return &v.sizeCache
  2273. case 2:
  2274. return &v.unknownFields
  2275. default:
  2276. return nil
  2277. }
  2278. }
  2279. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2280. switch v := v.(*UserFindScripRequest); i {
  2281. case 0:
  2282. return &v.state
  2283. case 1:
  2284. return &v.sizeCache
  2285. case 2:
  2286. return &v.unknownFields
  2287. default:
  2288. return nil
  2289. }
  2290. }
  2291. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2292. switch v := v.(*DeleteScripRequest); i {
  2293. case 0:
  2294. return &v.state
  2295. case 1:
  2296. return &v.sizeCache
  2297. case 2:
  2298. return &v.unknownFields
  2299. default:
  2300. return nil
  2301. }
  2302. }
  2303. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2304. switch v := v.(*CreateScripRequest); i {
  2305. case 0:
  2306. return &v.state
  2307. case 1:
  2308. return &v.sizeCache
  2309. case 2:
  2310. return &v.unknownFields
  2311. default:
  2312. return nil
  2313. }
  2314. }
  2315. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2316. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  2317. case 0:
  2318. return &v.state
  2319. case 1:
  2320. return &v.sizeCache
  2321. case 2:
  2322. return &v.unknownFields
  2323. default:
  2324. return nil
  2325. }
  2326. }
  2327. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2328. switch v := v.(*UserRechargeRequest); i {
  2329. case 0:
  2330. return &v.state
  2331. case 1:
  2332. return &v.sizeCache
  2333. case 2:
  2334. return &v.unknownFields
  2335. default:
  2336. return nil
  2337. }
  2338. }
  2339. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2340. switch v := v.(*RechargeList); i {
  2341. case 0:
  2342. return &v.state
  2343. case 1:
  2344. return &v.sizeCache
  2345. case 2:
  2346. return &v.unknownFields
  2347. default:
  2348. return nil
  2349. }
  2350. }
  2351. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2352. switch v := v.(*RechargeInfo); i {
  2353. case 0:
  2354. return &v.state
  2355. case 1:
  2356. return &v.sizeCache
  2357. case 2:
  2358. return &v.unknownFields
  2359. default:
  2360. return nil
  2361. }
  2362. }
  2363. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2364. switch v := v.(*InformationStatus); i {
  2365. case 0:
  2366. return &v.state
  2367. case 1:
  2368. return &v.sizeCache
  2369. case 2:
  2370. return &v.unknownFields
  2371. default:
  2372. return nil
  2373. }
  2374. }
  2375. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2376. switch v := v.(*UserBalance); i {
  2377. case 0:
  2378. return &v.state
  2379. case 1:
  2380. return &v.sizeCache
  2381. case 2:
  2382. return &v.unknownFields
  2383. default:
  2384. return nil
  2385. }
  2386. }
  2387. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2388. switch v := v.(*UserFindChatListReply); i {
  2389. case 0:
  2390. return &v.state
  2391. case 1:
  2392. return &v.sizeCache
  2393. case 2:
  2394. return &v.unknownFields
  2395. default:
  2396. return nil
  2397. }
  2398. }
  2399. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2400. switch v := v.(*UserChatInfo); i {
  2401. case 0:
  2402. return &v.state
  2403. case 1:
  2404. return &v.sizeCache
  2405. case 2:
  2406. return &v.unknownFields
  2407. default:
  2408. return nil
  2409. }
  2410. }
  2411. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2412. switch v := v.(*UserInfo); i {
  2413. case 0:
  2414. return &v.state
  2415. case 1:
  2416. return &v.sizeCache
  2417. case 2:
  2418. return &v.unknownFields
  2419. default:
  2420. return nil
  2421. }
  2422. }
  2423. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2424. switch v := v.(*KeyRequest); i {
  2425. case 0:
  2426. return &v.state
  2427. case 1:
  2428. return &v.sizeCache
  2429. case 2:
  2430. return &v.unknownFields
  2431. default:
  2432. return nil
  2433. }
  2434. }
  2435. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2436. switch v := v.(*CreatePayRequest); i {
  2437. case 0:
  2438. return &v.state
  2439. case 1:
  2440. return &v.sizeCache
  2441. case 2:
  2442. return &v.unknownFields
  2443. default:
  2444. return nil
  2445. }
  2446. }
  2447. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2448. switch v := v.(*PayInfo); i {
  2449. case 0:
  2450. return &v.state
  2451. case 1:
  2452. return &v.sizeCache
  2453. case 2:
  2454. return &v.unknownFields
  2455. default:
  2456. return nil
  2457. }
  2458. }
  2459. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2460. switch v := v.(*PayOrderInfo); i {
  2461. case 0:
  2462. return &v.state
  2463. case 1:
  2464. return &v.sizeCache
  2465. case 2:
  2466. return &v.unknownFields
  2467. default:
  2468. return nil
  2469. }
  2470. }
  2471. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2472. switch v := v.(*PayOrderList); i {
  2473. case 0:
  2474. return &v.state
  2475. case 1:
  2476. return &v.sizeCache
  2477. case 2:
  2478. return &v.unknownFields
  2479. default:
  2480. return nil
  2481. }
  2482. }
  2483. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2484. switch v := v.(*FindPayOrderListRequest); i {
  2485. case 0:
  2486. return &v.state
  2487. case 1:
  2488. return &v.sizeCache
  2489. case 2:
  2490. return &v.unknownFields
  2491. default:
  2492. return nil
  2493. }
  2494. }
  2495. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2496. switch v := v.(*PayCallbackReply); i {
  2497. case 0:
  2498. return &v.state
  2499. case 1:
  2500. return &v.sizeCache
  2501. case 2:
  2502. return &v.unknownFields
  2503. default:
  2504. return nil
  2505. }
  2506. }
  2507. }
  2508. type x struct{}
  2509. out := protoimpl.TypeBuilder{
  2510. File: protoimpl.DescBuilder{
  2511. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2512. RawDescriptor: file_user_proto_rawDesc,
  2513. NumEnums: 0,
  2514. NumMessages: 23,
  2515. NumExtensions: 0,
  2516. NumServices: 1,
  2517. },
  2518. GoTypes: file_user_proto_goTypes,
  2519. DependencyIndexes: file_user_proto_depIdxs,
  2520. MessageInfos: file_user_proto_msgTypes,
  2521. }.Build()
  2522. File_user_proto = out.File
  2523. file_user_proto_rawDesc = nil
  2524. file_user_proto_goTypes = nil
  2525. file_user_proto_depIdxs = nil
  2526. }