user.pb.go 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651
  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 ManagerMarkHighQualityUserRequest struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  30. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  31. }
  32. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  33. *x = ManagerMarkHighQualityUserRequest{}
  34. if protoimpl.UnsafeEnabled {
  35. mi := &file_user_proto_msgTypes[0]
  36. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  37. ms.StoreMessageInfo(mi)
  38. }
  39. }
  40. func (x *ManagerMarkHighQualityUserRequest) String() string {
  41. return protoimpl.X.MessageStringOf(x)
  42. }
  43. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  44. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  45. mi := &file_user_proto_msgTypes[0]
  46. if protoimpl.UnsafeEnabled && x != nil {
  47. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  48. if ms.LoadMessageInfo() == nil {
  49. ms.StoreMessageInfo(mi)
  50. }
  51. return ms
  52. }
  53. return mi.MessageOf(x)
  54. }
  55. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  56. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  57. return file_user_proto_rawDescGZIP(), []int{0}
  58. }
  59. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  60. if x != nil {
  61. return x.PassIds
  62. }
  63. return nil
  64. }
  65. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  66. if x != nil {
  67. return x.UnPassIds
  68. }
  69. return nil
  70. }
  71. type GetRecommendUserDBRequest struct {
  72. state protoimpl.MessageState
  73. sizeCache protoimpl.SizeCache
  74. unknownFields protoimpl.UnknownFields
  75. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  76. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  77. }
  78. func (x *GetRecommendUserDBRequest) Reset() {
  79. *x = GetRecommendUserDBRequest{}
  80. if protoimpl.UnsafeEnabled {
  81. mi := &file_user_proto_msgTypes[1]
  82. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  83. ms.StoreMessageInfo(mi)
  84. }
  85. }
  86. func (x *GetRecommendUserDBRequest) String() string {
  87. return protoimpl.X.MessageStringOf(x)
  88. }
  89. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  90. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  91. mi := &file_user_proto_msgTypes[1]
  92. if protoimpl.UnsafeEnabled && x != nil {
  93. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  94. if ms.LoadMessageInfo() == nil {
  95. ms.StoreMessageInfo(mi)
  96. }
  97. return ms
  98. }
  99. return mi.MessageOf(x)
  100. }
  101. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  102. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  103. return file_user_proto_rawDescGZIP(), []int{1}
  104. }
  105. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  106. if x != nil {
  107. return x.Sex
  108. }
  109. return 0
  110. }
  111. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  112. if x != nil {
  113. return x.PersonIds
  114. }
  115. return nil
  116. }
  117. type FindRecommendHighQualityUserRequest struct {
  118. state protoimpl.MessageState
  119. sizeCache protoimpl.SizeCache
  120. unknownFields protoimpl.UnknownFields
  121. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  122. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  123. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  124. }
  125. func (x *FindRecommendHighQualityUserRequest) Reset() {
  126. *x = FindRecommendHighQualityUserRequest{}
  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 *FindRecommendHighQualityUserRequest) String() string {
  134. return protoimpl.X.MessageStringOf(x)
  135. }
  136. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  137. func (x *FindRecommendHighQualityUserRequest) 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 FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  149. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  150. return file_user_proto_rawDescGZIP(), []int{2}
  151. }
  152. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  153. if x != nil {
  154. return x.Num
  155. }
  156. return 0
  157. }
  158. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  159. if x != nil {
  160. return x.Sex
  161. }
  162. return 0
  163. }
  164. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  165. if x != nil {
  166. return x.PersonId
  167. }
  168. return ""
  169. }
  170. type FindRecommendHighQualityUserReply struct {
  171. state protoimpl.MessageState
  172. sizeCache protoimpl.SizeCache
  173. unknownFields protoimpl.UnknownFields
  174. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  175. }
  176. func (x *FindRecommendHighQualityUserReply) Reset() {
  177. *x = FindRecommendHighQualityUserReply{}
  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 *FindRecommendHighQualityUserReply) String() string {
  185. return protoimpl.X.MessageStringOf(x)
  186. }
  187. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  188. func (x *FindRecommendHighQualityUserReply) 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 FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  200. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  201. return file_user_proto_rawDescGZIP(), []int{3}
  202. }
  203. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  204. if x != nil {
  205. return x.PersonIdList
  206. }
  207. return nil
  208. }
  209. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  210. state protoimpl.MessageState
  211. sizeCache protoimpl.SizeCache
  212. unknownFields protoimpl.UnknownFields
  213. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  214. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  215. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  216. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  217. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  218. }
  219. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  220. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  221. if protoimpl.UnsafeEnabled {
  222. mi := &file_user_proto_msgTypes[4]
  223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  224. ms.StoreMessageInfo(mi)
  225. }
  226. }
  227. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  228. return protoimpl.X.MessageStringOf(x)
  229. }
  230. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  231. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  232. mi := &file_user_proto_msgTypes[4]
  233. if protoimpl.UnsafeEnabled && x != nil {
  234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  235. if ms.LoadMessageInfo() == nil {
  236. ms.StoreMessageInfo(mi)
  237. }
  238. return ms
  239. }
  240. return mi.MessageOf(x)
  241. }
  242. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  243. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  244. return file_user_proto_rawDescGZIP(), []int{4}
  245. }
  246. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  247. if x != nil {
  248. return x.TodayMatchedNum
  249. }
  250. return 0
  251. }
  252. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  253. if x != nil {
  254. return x.Nickname
  255. }
  256. return ""
  257. }
  258. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  259. if x != nil {
  260. return x.AvatarUrl
  261. }
  262. return ""
  263. }
  264. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  265. if x != nil {
  266. return x.Sex
  267. }
  268. return 0
  269. }
  270. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  271. if x != nil {
  272. return x.Age
  273. }
  274. return 0
  275. }
  276. type GetUserDBMsgFromWebsocketReply struct {
  277. state protoimpl.MessageState
  278. sizeCache protoimpl.SizeCache
  279. unknownFields protoimpl.UnknownFields
  280. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  281. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  282. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  283. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  284. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  285. }
  286. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  287. *x = GetUserDBMsgFromWebsocketReply{}
  288. if protoimpl.UnsafeEnabled {
  289. mi := &file_user_proto_msgTypes[5]
  290. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  291. ms.StoreMessageInfo(mi)
  292. }
  293. }
  294. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  295. return protoimpl.X.MessageStringOf(x)
  296. }
  297. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  298. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  299. mi := &file_user_proto_msgTypes[5]
  300. if protoimpl.UnsafeEnabled && x != nil {
  301. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  302. if ms.LoadMessageInfo() == nil {
  303. ms.StoreMessageInfo(mi)
  304. }
  305. return ms
  306. }
  307. return mi.MessageOf(x)
  308. }
  309. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  310. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  311. return file_user_proto_rawDescGZIP(), []int{5}
  312. }
  313. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  314. if x != nil {
  315. return x.Id
  316. }
  317. return ""
  318. }
  319. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  320. if x != nil {
  321. return x.Sex
  322. }
  323. return 0
  324. }
  325. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  326. if x != nil {
  327. return x.Weight
  328. }
  329. return 0
  330. }
  331. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  332. if x != nil {
  333. return x.WorkingStatus
  334. }
  335. return ""
  336. }
  337. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  338. if x != nil {
  339. return x.TodayMatchedNum
  340. }
  341. return 0
  342. }
  343. type UpdateUserMatchedNumRequest struct {
  344. state protoimpl.MessageState
  345. sizeCache protoimpl.SizeCache
  346. unknownFields protoimpl.UnknownFields
  347. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  348. }
  349. func (x *UpdateUserMatchedNumRequest) Reset() {
  350. *x = UpdateUserMatchedNumRequest{}
  351. if protoimpl.UnsafeEnabled {
  352. mi := &file_user_proto_msgTypes[6]
  353. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  354. ms.StoreMessageInfo(mi)
  355. }
  356. }
  357. func (x *UpdateUserMatchedNumRequest) String() string {
  358. return protoimpl.X.MessageStringOf(x)
  359. }
  360. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  361. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  362. mi := &file_user_proto_msgTypes[6]
  363. if protoimpl.UnsafeEnabled && x != nil {
  364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  365. if ms.LoadMessageInfo() == nil {
  366. ms.StoreMessageInfo(mi)
  367. }
  368. return ms
  369. }
  370. return mi.MessageOf(x)
  371. }
  372. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  373. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  374. return file_user_proto_rawDescGZIP(), []int{6}
  375. }
  376. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  377. if x != nil {
  378. return x.UserId
  379. }
  380. return ""
  381. }
  382. type SendNewMessageUnreadReminderRequest struct {
  383. state protoimpl.MessageState
  384. sizeCache protoimpl.SizeCache
  385. unknownFields protoimpl.UnknownFields
  386. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  387. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  388. }
  389. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  390. *x = SendNewMessageUnreadReminderRequest{}
  391. if protoimpl.UnsafeEnabled {
  392. mi := &file_user_proto_msgTypes[7]
  393. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  394. ms.StoreMessageInfo(mi)
  395. }
  396. }
  397. func (x *SendNewMessageUnreadReminderRequest) String() string {
  398. return protoimpl.X.MessageStringOf(x)
  399. }
  400. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  401. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  402. mi := &file_user_proto_msgTypes[7]
  403. if protoimpl.UnsafeEnabled && x != nil {
  404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  405. if ms.LoadMessageInfo() == nil {
  406. ms.StoreMessageInfo(mi)
  407. }
  408. return ms
  409. }
  410. return mi.MessageOf(x)
  411. }
  412. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  413. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  414. return file_user_proto_rawDescGZIP(), []int{7}
  415. }
  416. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  417. if x != nil {
  418. return x.PersonId
  419. }
  420. return ""
  421. }
  422. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  423. if x != nil {
  424. return x.SendPersonId
  425. }
  426. return ""
  427. }
  428. type SendMsgReduceCreditReply struct {
  429. state protoimpl.MessageState
  430. sizeCache protoimpl.SizeCache
  431. unknownFields protoimpl.UnknownFields
  432. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  433. }
  434. func (x *SendMsgReduceCreditReply) Reset() {
  435. *x = SendMsgReduceCreditReply{}
  436. if protoimpl.UnsafeEnabled {
  437. mi := &file_user_proto_msgTypes[8]
  438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  439. ms.StoreMessageInfo(mi)
  440. }
  441. }
  442. func (x *SendMsgReduceCreditReply) String() string {
  443. return protoimpl.X.MessageStringOf(x)
  444. }
  445. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  446. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  447. mi := &file_user_proto_msgTypes[8]
  448. if protoimpl.UnsafeEnabled && x != nil {
  449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  450. if ms.LoadMessageInfo() == nil {
  451. ms.StoreMessageInfo(mi)
  452. }
  453. return ms
  454. }
  455. return mi.MessageOf(x)
  456. }
  457. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  458. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  459. return file_user_proto_rawDescGZIP(), []int{8}
  460. }
  461. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  462. if x != nil {
  463. return x.IsSendReminder
  464. }
  465. return false
  466. }
  467. type UserFreeNum struct {
  468. state protoimpl.MessageState
  469. sizeCache protoimpl.SizeCache
  470. unknownFields protoimpl.UnknownFields
  471. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  472. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  473. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  474. }
  475. func (x *UserFreeNum) Reset() {
  476. *x = UserFreeNum{}
  477. if protoimpl.UnsafeEnabled {
  478. mi := &file_user_proto_msgTypes[9]
  479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  480. ms.StoreMessageInfo(mi)
  481. }
  482. }
  483. func (x *UserFreeNum) String() string {
  484. return protoimpl.X.MessageStringOf(x)
  485. }
  486. func (*UserFreeNum) ProtoMessage() {}
  487. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  488. mi := &file_user_proto_msgTypes[9]
  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 UserFreeNum.ProtoReflect.Descriptor instead.
  499. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  500. return file_user_proto_rawDescGZIP(), []int{9}
  501. }
  502. func (x *UserFreeNum) GetReplyScripNum() int64 {
  503. if x != nil {
  504. return x.ReplyScripNum
  505. }
  506. return 0
  507. }
  508. func (x *UserFreeNum) GetCreateScripNum() int64 {
  509. if x != nil {
  510. return x.CreateScripNum
  511. }
  512. return 0
  513. }
  514. func (x *UserFreeNum) GetMatchingNum() int64 {
  515. if x != nil {
  516. return x.MatchingNum
  517. }
  518. return 0
  519. }
  520. type ReplyScripRequest struct {
  521. state protoimpl.MessageState
  522. sizeCache protoimpl.SizeCache
  523. unknownFields protoimpl.UnknownFields
  524. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  525. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  526. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  527. }
  528. func (x *ReplyScripRequest) Reset() {
  529. *x = ReplyScripRequest{}
  530. if protoimpl.UnsafeEnabled {
  531. mi := &file_user_proto_msgTypes[10]
  532. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  533. ms.StoreMessageInfo(mi)
  534. }
  535. }
  536. func (x *ReplyScripRequest) String() string {
  537. return protoimpl.X.MessageStringOf(x)
  538. }
  539. func (*ReplyScripRequest) ProtoMessage() {}
  540. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  541. mi := &file_user_proto_msgTypes[10]
  542. if protoimpl.UnsafeEnabled && x != nil {
  543. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  544. if ms.LoadMessageInfo() == nil {
  545. ms.StoreMessageInfo(mi)
  546. }
  547. return ms
  548. }
  549. return mi.MessageOf(x)
  550. }
  551. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  552. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  553. return file_user_proto_rawDescGZIP(), []int{10}
  554. }
  555. func (x *ReplyScripRequest) GetScripId() int64 {
  556. if x != nil {
  557. return x.ScripId
  558. }
  559. return 0
  560. }
  561. func (x *ReplyScripRequest) GetMessage() *common.Message {
  562. if x != nil {
  563. return x.Message
  564. }
  565. return nil
  566. }
  567. func (x *ReplyScripRequest) GetMsgType() string {
  568. if x != nil {
  569. return x.MsgType
  570. }
  571. return ""
  572. }
  573. type PersonLookScripRequest struct {
  574. state protoimpl.MessageState
  575. sizeCache protoimpl.SizeCache
  576. unknownFields protoimpl.UnknownFields
  577. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  578. }
  579. func (x *PersonLookScripRequest) Reset() {
  580. *x = PersonLookScripRequest{}
  581. if protoimpl.UnsafeEnabled {
  582. mi := &file_user_proto_msgTypes[11]
  583. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  584. ms.StoreMessageInfo(mi)
  585. }
  586. }
  587. func (x *PersonLookScripRequest) String() string {
  588. return protoimpl.X.MessageStringOf(x)
  589. }
  590. func (*PersonLookScripRequest) ProtoMessage() {}
  591. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  592. mi := &file_user_proto_msgTypes[11]
  593. if protoimpl.UnsafeEnabled && x != nil {
  594. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  595. if ms.LoadMessageInfo() == nil {
  596. ms.StoreMessageInfo(mi)
  597. }
  598. return ms
  599. }
  600. return mi.MessageOf(x)
  601. }
  602. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  603. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  604. return file_user_proto_rawDescGZIP(), []int{11}
  605. }
  606. func (x *PersonLookScripRequest) GetScripId() int64 {
  607. if x != nil {
  608. return x.ScripId
  609. }
  610. return 0
  611. }
  612. type UserFindScripRequest struct {
  613. state protoimpl.MessageState
  614. sizeCache protoimpl.SizeCache
  615. unknownFields protoimpl.UnknownFields
  616. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  617. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  618. }
  619. func (x *UserFindScripRequest) Reset() {
  620. *x = UserFindScripRequest{}
  621. if protoimpl.UnsafeEnabled {
  622. mi := &file_user_proto_msgTypes[12]
  623. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  624. ms.StoreMessageInfo(mi)
  625. }
  626. }
  627. func (x *UserFindScripRequest) String() string {
  628. return protoimpl.X.MessageStringOf(x)
  629. }
  630. func (*UserFindScripRequest) ProtoMessage() {}
  631. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  632. mi := &file_user_proto_msgTypes[12]
  633. if protoimpl.UnsafeEnabled && x != nil {
  634. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  635. if ms.LoadMessageInfo() == nil {
  636. ms.StoreMessageInfo(mi)
  637. }
  638. return ms
  639. }
  640. return mi.MessageOf(x)
  641. }
  642. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  643. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  644. return file_user_proto_rawDescGZIP(), []int{12}
  645. }
  646. func (x *UserFindScripRequest) GetNextId() int64 {
  647. if x != nil {
  648. return x.NextId
  649. }
  650. return 0
  651. }
  652. func (x *UserFindScripRequest) GetOffset() int64 {
  653. if x != nil {
  654. return x.Offset
  655. }
  656. return 0
  657. }
  658. type DeleteScripRequest struct {
  659. state protoimpl.MessageState
  660. sizeCache protoimpl.SizeCache
  661. unknownFields protoimpl.UnknownFields
  662. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  663. }
  664. func (x *DeleteScripRequest) Reset() {
  665. *x = DeleteScripRequest{}
  666. if protoimpl.UnsafeEnabled {
  667. mi := &file_user_proto_msgTypes[13]
  668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  669. ms.StoreMessageInfo(mi)
  670. }
  671. }
  672. func (x *DeleteScripRequest) String() string {
  673. return protoimpl.X.MessageStringOf(x)
  674. }
  675. func (*DeleteScripRequest) ProtoMessage() {}
  676. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  677. mi := &file_user_proto_msgTypes[13]
  678. if protoimpl.UnsafeEnabled && x != nil {
  679. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  680. if ms.LoadMessageInfo() == nil {
  681. ms.StoreMessageInfo(mi)
  682. }
  683. return ms
  684. }
  685. return mi.MessageOf(x)
  686. }
  687. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  688. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  689. return file_user_proto_rawDescGZIP(), []int{13}
  690. }
  691. func (x *DeleteScripRequest) GetScripId() int64 {
  692. if x != nil {
  693. return x.ScripId
  694. }
  695. return 0
  696. }
  697. type CreateScripRequest struct {
  698. state protoimpl.MessageState
  699. sizeCache protoimpl.SizeCache
  700. unknownFields protoimpl.UnknownFields
  701. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  702. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  703. }
  704. func (x *CreateScripRequest) Reset() {
  705. *x = CreateScripRequest{}
  706. if protoimpl.UnsafeEnabled {
  707. mi := &file_user_proto_msgTypes[14]
  708. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  709. ms.StoreMessageInfo(mi)
  710. }
  711. }
  712. func (x *CreateScripRequest) String() string {
  713. return protoimpl.X.MessageStringOf(x)
  714. }
  715. func (*CreateScripRequest) ProtoMessage() {}
  716. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  717. mi := &file_user_proto_msgTypes[14]
  718. if protoimpl.UnsafeEnabled && x != nil {
  719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  720. if ms.LoadMessageInfo() == nil {
  721. ms.StoreMessageInfo(mi)
  722. }
  723. return ms
  724. }
  725. return mi.MessageOf(x)
  726. }
  727. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  728. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  729. return file_user_proto_rawDescGZIP(), []int{14}
  730. }
  731. func (x *CreateScripRequest) GetText() string {
  732. if x != nil {
  733. return x.Text
  734. }
  735. return ""
  736. }
  737. func (x *CreateScripRequest) GetPictureUrl() string {
  738. if x != nil {
  739. return x.PictureUrl
  740. }
  741. return ""
  742. }
  743. type FindMatchingAvatarAndNumReply struct {
  744. state protoimpl.MessageState
  745. sizeCache protoimpl.SizeCache
  746. unknownFields protoimpl.UnknownFields
  747. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  748. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  749. }
  750. func (x *FindMatchingAvatarAndNumReply) Reset() {
  751. *x = FindMatchingAvatarAndNumReply{}
  752. if protoimpl.UnsafeEnabled {
  753. mi := &file_user_proto_msgTypes[15]
  754. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  755. ms.StoreMessageInfo(mi)
  756. }
  757. }
  758. func (x *FindMatchingAvatarAndNumReply) String() string {
  759. return protoimpl.X.MessageStringOf(x)
  760. }
  761. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  762. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  763. mi := &file_user_proto_msgTypes[15]
  764. if protoimpl.UnsafeEnabled && x != nil {
  765. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  766. if ms.LoadMessageInfo() == nil {
  767. ms.StoreMessageInfo(mi)
  768. }
  769. return ms
  770. }
  771. return mi.MessageOf(x)
  772. }
  773. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  774. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  775. return file_user_proto_rawDescGZIP(), []int{15}
  776. }
  777. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  778. if x != nil {
  779. return x.Num
  780. }
  781. return 0
  782. }
  783. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  784. if x != nil {
  785. return x.List
  786. }
  787. return nil
  788. }
  789. type UserRechargeRequest struct {
  790. state protoimpl.MessageState
  791. sizeCache protoimpl.SizeCache
  792. unknownFields protoimpl.UnknownFields
  793. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  794. }
  795. func (x *UserRechargeRequest) Reset() {
  796. *x = UserRechargeRequest{}
  797. if protoimpl.UnsafeEnabled {
  798. mi := &file_user_proto_msgTypes[16]
  799. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  800. ms.StoreMessageInfo(mi)
  801. }
  802. }
  803. func (x *UserRechargeRequest) String() string {
  804. return protoimpl.X.MessageStringOf(x)
  805. }
  806. func (*UserRechargeRequest) ProtoMessage() {}
  807. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  808. mi := &file_user_proto_msgTypes[16]
  809. if protoimpl.UnsafeEnabled && x != nil {
  810. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  811. if ms.LoadMessageInfo() == nil {
  812. ms.StoreMessageInfo(mi)
  813. }
  814. return ms
  815. }
  816. return mi.MessageOf(x)
  817. }
  818. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  819. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  820. return file_user_proto_rawDescGZIP(), []int{16}
  821. }
  822. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  823. if x != nil {
  824. return x.RechargeTemplateId
  825. }
  826. return 0
  827. }
  828. type RechargeList struct {
  829. state protoimpl.MessageState
  830. sizeCache protoimpl.SizeCache
  831. unknownFields protoimpl.UnknownFields
  832. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  833. }
  834. func (x *RechargeList) Reset() {
  835. *x = RechargeList{}
  836. if protoimpl.UnsafeEnabled {
  837. mi := &file_user_proto_msgTypes[17]
  838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  839. ms.StoreMessageInfo(mi)
  840. }
  841. }
  842. func (x *RechargeList) String() string {
  843. return protoimpl.X.MessageStringOf(x)
  844. }
  845. func (*RechargeList) ProtoMessage() {}
  846. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  847. mi := &file_user_proto_msgTypes[17]
  848. if protoimpl.UnsafeEnabled && x != nil {
  849. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  850. if ms.LoadMessageInfo() == nil {
  851. ms.StoreMessageInfo(mi)
  852. }
  853. return ms
  854. }
  855. return mi.MessageOf(x)
  856. }
  857. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  858. func (*RechargeList) Descriptor() ([]byte, []int) {
  859. return file_user_proto_rawDescGZIP(), []int{17}
  860. }
  861. func (x *RechargeList) GetList() []*RechargeInfo {
  862. if x != nil {
  863. return x.List
  864. }
  865. return nil
  866. }
  867. type RechargeInfo struct {
  868. state protoimpl.MessageState
  869. sizeCache protoimpl.SizeCache
  870. unknownFields protoimpl.UnknownFields
  871. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  872. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  873. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  874. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  875. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  876. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  877. }
  878. func (x *RechargeInfo) Reset() {
  879. *x = RechargeInfo{}
  880. if protoimpl.UnsafeEnabled {
  881. mi := &file_user_proto_msgTypes[18]
  882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  883. ms.StoreMessageInfo(mi)
  884. }
  885. }
  886. func (x *RechargeInfo) String() string {
  887. return protoimpl.X.MessageStringOf(x)
  888. }
  889. func (*RechargeInfo) ProtoMessage() {}
  890. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  891. mi := &file_user_proto_msgTypes[18]
  892. if protoimpl.UnsafeEnabled && x != nil {
  893. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  894. if ms.LoadMessageInfo() == nil {
  895. ms.StoreMessageInfo(mi)
  896. }
  897. return ms
  898. }
  899. return mi.MessageOf(x)
  900. }
  901. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  902. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  903. return file_user_proto_rawDescGZIP(), []int{18}
  904. }
  905. func (x *RechargeInfo) GetId() int64 {
  906. if x != nil {
  907. return x.Id
  908. }
  909. return 0
  910. }
  911. func (x *RechargeInfo) GetPrice() int64 {
  912. if x != nil {
  913. return x.Price
  914. }
  915. return 0
  916. }
  917. func (x *RechargeInfo) GetCredit() int64 {
  918. if x != nil {
  919. return x.Credit
  920. }
  921. return 0
  922. }
  923. func (x *RechargeInfo) GetGiveCredit() int64 {
  924. if x != nil {
  925. return x.GiveCredit
  926. }
  927. return 0
  928. }
  929. func (x *RechargeInfo) GetDescription() string {
  930. if x != nil {
  931. return x.Description
  932. }
  933. return ""
  934. }
  935. func (x *RechargeInfo) GetTitle() string {
  936. if x != nil {
  937. return x.Title
  938. }
  939. return ""
  940. }
  941. type InformationStatus struct {
  942. state protoimpl.MessageState
  943. sizeCache protoimpl.SizeCache
  944. unknownFields protoimpl.UnknownFields
  945. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  946. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  947. }
  948. func (x *InformationStatus) Reset() {
  949. *x = InformationStatus{}
  950. if protoimpl.UnsafeEnabled {
  951. mi := &file_user_proto_msgTypes[19]
  952. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  953. ms.StoreMessageInfo(mi)
  954. }
  955. }
  956. func (x *InformationStatus) String() string {
  957. return protoimpl.X.MessageStringOf(x)
  958. }
  959. func (*InformationStatus) ProtoMessage() {}
  960. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  961. mi := &file_user_proto_msgTypes[19]
  962. if protoimpl.UnsafeEnabled && x != nil {
  963. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  964. if ms.LoadMessageInfo() == nil {
  965. ms.StoreMessageInfo(mi)
  966. }
  967. return ms
  968. }
  969. return mi.MessageOf(x)
  970. }
  971. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  972. func (*InformationStatus) Descriptor() ([]byte, []int) {
  973. return file_user_proto_rawDescGZIP(), []int{19}
  974. }
  975. func (x *InformationStatus) GetIsFinishInformation() bool {
  976. if x != nil {
  977. return x.IsFinishInformation
  978. }
  979. return false
  980. }
  981. func (x *InformationStatus) GetIsGetAward() bool {
  982. if x != nil {
  983. return x.IsGetAward
  984. }
  985. return false
  986. }
  987. type UserBalance struct {
  988. state protoimpl.MessageState
  989. sizeCache protoimpl.SizeCache
  990. unknownFields protoimpl.UnknownFields
  991. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  992. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  993. }
  994. func (x *UserBalance) Reset() {
  995. *x = UserBalance{}
  996. if protoimpl.UnsafeEnabled {
  997. mi := &file_user_proto_msgTypes[20]
  998. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  999. ms.StoreMessageInfo(mi)
  1000. }
  1001. }
  1002. func (x *UserBalance) String() string {
  1003. return protoimpl.X.MessageStringOf(x)
  1004. }
  1005. func (*UserBalance) ProtoMessage() {}
  1006. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  1007. mi := &file_user_proto_msgTypes[20]
  1008. if protoimpl.UnsafeEnabled && x != nil {
  1009. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1010. if ms.LoadMessageInfo() == nil {
  1011. ms.StoreMessageInfo(mi)
  1012. }
  1013. return ms
  1014. }
  1015. return mi.MessageOf(x)
  1016. }
  1017. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  1018. func (*UserBalance) Descriptor() ([]byte, []int) {
  1019. return file_user_proto_rawDescGZIP(), []int{20}
  1020. }
  1021. func (x *UserBalance) GetId() string {
  1022. if x != nil {
  1023. return x.Id
  1024. }
  1025. return ""
  1026. }
  1027. func (x *UserBalance) GetCredit() int64 {
  1028. if x != nil {
  1029. return x.Credit
  1030. }
  1031. return 0
  1032. }
  1033. type UserFindChatListReply struct {
  1034. state protoimpl.MessageState
  1035. sizeCache protoimpl.SizeCache
  1036. unknownFields protoimpl.UnknownFields
  1037. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1038. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1039. }
  1040. func (x *UserFindChatListReply) Reset() {
  1041. *x = UserFindChatListReply{}
  1042. if protoimpl.UnsafeEnabled {
  1043. mi := &file_user_proto_msgTypes[21]
  1044. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1045. ms.StoreMessageInfo(mi)
  1046. }
  1047. }
  1048. func (x *UserFindChatListReply) String() string {
  1049. return protoimpl.X.MessageStringOf(x)
  1050. }
  1051. func (*UserFindChatListReply) ProtoMessage() {}
  1052. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  1053. mi := &file_user_proto_msgTypes[21]
  1054. if protoimpl.UnsafeEnabled && x != nil {
  1055. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1056. if ms.LoadMessageInfo() == nil {
  1057. ms.StoreMessageInfo(mi)
  1058. }
  1059. return ms
  1060. }
  1061. return mi.MessageOf(x)
  1062. }
  1063. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  1064. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  1065. return file_user_proto_rawDescGZIP(), []int{21}
  1066. }
  1067. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  1068. if x != nil {
  1069. return x.List
  1070. }
  1071. return nil
  1072. }
  1073. func (x *UserFindChatListReply) GetNextId() int64 {
  1074. if x != nil {
  1075. return x.NextId
  1076. }
  1077. return 0
  1078. }
  1079. type UserChatInfo struct {
  1080. state protoimpl.MessageState
  1081. sizeCache protoimpl.SizeCache
  1082. unknownFields protoimpl.UnknownFields
  1083. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  1084. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  1085. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  1086. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  1087. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  1088. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  1089. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1090. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1091. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  1092. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  1093. }
  1094. func (x *UserChatInfo) Reset() {
  1095. *x = UserChatInfo{}
  1096. if protoimpl.UnsafeEnabled {
  1097. mi := &file_user_proto_msgTypes[22]
  1098. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1099. ms.StoreMessageInfo(mi)
  1100. }
  1101. }
  1102. func (x *UserChatInfo) String() string {
  1103. return protoimpl.X.MessageStringOf(x)
  1104. }
  1105. func (*UserChatInfo) ProtoMessage() {}
  1106. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  1107. mi := &file_user_proto_msgTypes[22]
  1108. if protoimpl.UnsafeEnabled && x != nil {
  1109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1110. if ms.LoadMessageInfo() == nil {
  1111. ms.StoreMessageInfo(mi)
  1112. }
  1113. return ms
  1114. }
  1115. return mi.MessageOf(x)
  1116. }
  1117. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  1118. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  1119. return file_user_proto_rawDescGZIP(), []int{22}
  1120. }
  1121. func (x *UserChatInfo) GetPersonId() string {
  1122. if x != nil {
  1123. return x.PersonId
  1124. }
  1125. return ""
  1126. }
  1127. func (x *UserChatInfo) GetUnreadNum() int64 {
  1128. if x != nil {
  1129. return x.UnreadNum
  1130. }
  1131. return 0
  1132. }
  1133. func (x *UserChatInfo) GetLastContent() string {
  1134. if x != nil {
  1135. return x.LastContent
  1136. }
  1137. return ""
  1138. }
  1139. func (x *UserChatInfo) GetLastTime() int64 {
  1140. if x != nil {
  1141. return x.LastTime
  1142. }
  1143. return 0
  1144. }
  1145. func (x *UserChatInfo) GetLikeability() int64 {
  1146. if x != nil {
  1147. return x.Likeability
  1148. }
  1149. return 0
  1150. }
  1151. func (x *UserChatInfo) GetSex() int64 {
  1152. if x != nil {
  1153. return x.Sex
  1154. }
  1155. return 0
  1156. }
  1157. func (x *UserChatInfo) GetAvatarUrl() string {
  1158. if x != nil {
  1159. return x.AvatarUrl
  1160. }
  1161. return ""
  1162. }
  1163. func (x *UserChatInfo) GetNickname() string {
  1164. if x != nil {
  1165. return x.Nickname
  1166. }
  1167. return ""
  1168. }
  1169. func (x *UserChatInfo) GetAge() int64 {
  1170. if x != nil {
  1171. return x.Age
  1172. }
  1173. return 0
  1174. }
  1175. func (x *UserChatInfo) GetRoomId() int64 {
  1176. if x != nil {
  1177. return x.RoomId
  1178. }
  1179. return 0
  1180. }
  1181. type UserInfo struct {
  1182. state protoimpl.MessageState
  1183. sizeCache protoimpl.SizeCache
  1184. unknownFields protoimpl.UnknownFields
  1185. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1186. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1187. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1188. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  1189. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1190. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  1191. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  1192. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  1193. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  1194. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1195. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  1196. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  1197. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  1198. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  1199. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  1200. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  1201. }
  1202. func (x *UserInfo) Reset() {
  1203. *x = UserInfo{}
  1204. if protoimpl.UnsafeEnabled {
  1205. mi := &file_user_proto_msgTypes[23]
  1206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1207. ms.StoreMessageInfo(mi)
  1208. }
  1209. }
  1210. func (x *UserInfo) String() string {
  1211. return protoimpl.X.MessageStringOf(x)
  1212. }
  1213. func (*UserInfo) ProtoMessage() {}
  1214. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  1215. mi := &file_user_proto_msgTypes[23]
  1216. if protoimpl.UnsafeEnabled && x != nil {
  1217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1218. if ms.LoadMessageInfo() == nil {
  1219. ms.StoreMessageInfo(mi)
  1220. }
  1221. return ms
  1222. }
  1223. return mi.MessageOf(x)
  1224. }
  1225. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  1226. func (*UserInfo) Descriptor() ([]byte, []int) {
  1227. return file_user_proto_rawDescGZIP(), []int{23}
  1228. }
  1229. func (x *UserInfo) GetId() string {
  1230. if x != nil {
  1231. return x.Id
  1232. }
  1233. return ""
  1234. }
  1235. func (x *UserInfo) GetNickname() string {
  1236. if x != nil {
  1237. return x.Nickname
  1238. }
  1239. return ""
  1240. }
  1241. func (x *UserInfo) GetAvatarUrl() string {
  1242. if x != nil {
  1243. return x.AvatarUrl
  1244. }
  1245. return ""
  1246. }
  1247. func (x *UserInfo) GetAge() int64 {
  1248. if x != nil {
  1249. return x.Age
  1250. }
  1251. return 0
  1252. }
  1253. func (x *UserInfo) GetSex() int64 {
  1254. if x != nil {
  1255. return x.Sex
  1256. }
  1257. return 0
  1258. }
  1259. func (x *UserInfo) GetConstellation() string {
  1260. if x != nil {
  1261. return x.Constellation
  1262. }
  1263. return ""
  1264. }
  1265. func (x *UserInfo) GetCredit() int64 {
  1266. if x != nil {
  1267. return x.Credit
  1268. }
  1269. return 0
  1270. }
  1271. func (x *UserInfo) GetTagList() []int64 {
  1272. if x != nil {
  1273. return x.TagList
  1274. }
  1275. return nil
  1276. }
  1277. func (x *UserInfo) GetSignature() string {
  1278. if x != nil {
  1279. return x.Signature
  1280. }
  1281. return ""
  1282. }
  1283. func (x *UserInfo) GetIntroduceVoice() string {
  1284. if x != nil {
  1285. return x.IntroduceVoice
  1286. }
  1287. return ""
  1288. }
  1289. func (x *UserInfo) GetProvince() string {
  1290. if x != nil {
  1291. return x.Province
  1292. }
  1293. return ""
  1294. }
  1295. func (x *UserInfo) GetCity() string {
  1296. if x != nil {
  1297. return x.City
  1298. }
  1299. return ""
  1300. }
  1301. func (x *UserInfo) GetArea() string {
  1302. if x != nil {
  1303. return x.Area
  1304. }
  1305. return ""
  1306. }
  1307. func (x *UserInfo) GetUserId() int64 {
  1308. if x != nil {
  1309. return x.UserId
  1310. }
  1311. return 0
  1312. }
  1313. func (x *UserInfo) GetIsBlack() bool {
  1314. if x != nil {
  1315. return x.IsBlack
  1316. }
  1317. return false
  1318. }
  1319. func (x *UserInfo) GetIsRegister() bool {
  1320. if x != nil {
  1321. return x.IsRegister
  1322. }
  1323. return false
  1324. }
  1325. type KeyRequest struct {
  1326. state protoimpl.MessageState
  1327. sizeCache protoimpl.SizeCache
  1328. unknownFields protoimpl.UnknownFields
  1329. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  1330. }
  1331. func (x *KeyRequest) Reset() {
  1332. *x = KeyRequest{}
  1333. if protoimpl.UnsafeEnabled {
  1334. mi := &file_user_proto_msgTypes[24]
  1335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1336. ms.StoreMessageInfo(mi)
  1337. }
  1338. }
  1339. func (x *KeyRequest) String() string {
  1340. return protoimpl.X.MessageStringOf(x)
  1341. }
  1342. func (*KeyRequest) ProtoMessage() {}
  1343. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  1344. mi := &file_user_proto_msgTypes[24]
  1345. if protoimpl.UnsafeEnabled && x != nil {
  1346. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1347. if ms.LoadMessageInfo() == nil {
  1348. ms.StoreMessageInfo(mi)
  1349. }
  1350. return ms
  1351. }
  1352. return mi.MessageOf(x)
  1353. }
  1354. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  1355. func (*KeyRequest) Descriptor() ([]byte, []int) {
  1356. return file_user_proto_rawDescGZIP(), []int{24}
  1357. }
  1358. func (x *KeyRequest) GetKey() string {
  1359. if x != nil {
  1360. return x.Key
  1361. }
  1362. return ""
  1363. }
  1364. type CreatePayRequest struct {
  1365. state protoimpl.MessageState
  1366. sizeCache protoimpl.SizeCache
  1367. unknownFields protoimpl.UnknownFields
  1368. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  1369. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  1370. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  1371. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  1372. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  1373. }
  1374. func (x *CreatePayRequest) Reset() {
  1375. *x = CreatePayRequest{}
  1376. if protoimpl.UnsafeEnabled {
  1377. mi := &file_user_proto_msgTypes[25]
  1378. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1379. ms.StoreMessageInfo(mi)
  1380. }
  1381. }
  1382. func (x *CreatePayRequest) String() string {
  1383. return protoimpl.X.MessageStringOf(x)
  1384. }
  1385. func (*CreatePayRequest) ProtoMessage() {}
  1386. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  1387. mi := &file_user_proto_msgTypes[25]
  1388. if protoimpl.UnsafeEnabled && x != nil {
  1389. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1390. if ms.LoadMessageInfo() == nil {
  1391. ms.StoreMessageInfo(mi)
  1392. }
  1393. return ms
  1394. }
  1395. return mi.MessageOf(x)
  1396. }
  1397. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  1398. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  1399. return file_user_proto_rawDescGZIP(), []int{25}
  1400. }
  1401. func (x *CreatePayRequest) GetMoney() int64 {
  1402. if x != nil {
  1403. return x.Money
  1404. }
  1405. return 0
  1406. }
  1407. func (x *CreatePayRequest) GetType() string {
  1408. if x != nil {
  1409. return x.Type
  1410. }
  1411. return ""
  1412. }
  1413. func (x *CreatePayRequest) GetOpenId() string {
  1414. if x != nil {
  1415. return x.OpenId
  1416. }
  1417. return ""
  1418. }
  1419. func (x *CreatePayRequest) GetDescription() string {
  1420. if x != nil {
  1421. return x.Description
  1422. }
  1423. return ""
  1424. }
  1425. func (x *CreatePayRequest) GetAttach() string {
  1426. if x != nil {
  1427. return x.Attach
  1428. }
  1429. return ""
  1430. }
  1431. type PayInfo struct {
  1432. state protoimpl.MessageState
  1433. sizeCache protoimpl.SizeCache
  1434. unknownFields protoimpl.UnknownFields
  1435. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  1436. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  1437. }
  1438. func (x *PayInfo) Reset() {
  1439. *x = PayInfo{}
  1440. if protoimpl.UnsafeEnabled {
  1441. mi := &file_user_proto_msgTypes[26]
  1442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1443. ms.StoreMessageInfo(mi)
  1444. }
  1445. }
  1446. func (x *PayInfo) String() string {
  1447. return protoimpl.X.MessageStringOf(x)
  1448. }
  1449. func (*PayInfo) ProtoMessage() {}
  1450. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  1451. mi := &file_user_proto_msgTypes[26]
  1452. if protoimpl.UnsafeEnabled && x != nil {
  1453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1454. if ms.LoadMessageInfo() == nil {
  1455. ms.StoreMessageInfo(mi)
  1456. }
  1457. return ms
  1458. }
  1459. return mi.MessageOf(x)
  1460. }
  1461. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  1462. func (*PayInfo) Descriptor() ([]byte, []int) {
  1463. return file_user_proto_rawDescGZIP(), []int{26}
  1464. }
  1465. func (x *PayInfo) GetPayInfo() *structpb.Value {
  1466. if x != nil {
  1467. return x.PayInfo
  1468. }
  1469. return nil
  1470. }
  1471. func (x *PayInfo) GetOrderId() int64 {
  1472. if x != nil {
  1473. return x.OrderId
  1474. }
  1475. return 0
  1476. }
  1477. type PayOrderInfo struct {
  1478. state protoimpl.MessageState
  1479. sizeCache protoimpl.SizeCache
  1480. unknownFields protoimpl.UnknownFields
  1481. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  1482. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  1483. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  1484. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  1485. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  1486. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  1487. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  1488. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  1489. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  1490. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1491. }
  1492. func (x *PayOrderInfo) Reset() {
  1493. *x = PayOrderInfo{}
  1494. if protoimpl.UnsafeEnabled {
  1495. mi := &file_user_proto_msgTypes[27]
  1496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1497. ms.StoreMessageInfo(mi)
  1498. }
  1499. }
  1500. func (x *PayOrderInfo) String() string {
  1501. return protoimpl.X.MessageStringOf(x)
  1502. }
  1503. func (*PayOrderInfo) ProtoMessage() {}
  1504. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  1505. mi := &file_user_proto_msgTypes[27]
  1506. if protoimpl.UnsafeEnabled && x != nil {
  1507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1508. if ms.LoadMessageInfo() == nil {
  1509. ms.StoreMessageInfo(mi)
  1510. }
  1511. return ms
  1512. }
  1513. return mi.MessageOf(x)
  1514. }
  1515. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  1516. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  1517. return file_user_proto_rawDescGZIP(), []int{27}
  1518. }
  1519. func (x *PayOrderInfo) GetUserID() string {
  1520. if x != nil {
  1521. return x.UserID
  1522. }
  1523. return ""
  1524. }
  1525. func (x *PayOrderInfo) GetOrderID() int64 {
  1526. if x != nil {
  1527. return x.OrderID
  1528. }
  1529. return 0
  1530. }
  1531. func (x *PayOrderInfo) GetMoney() int64 {
  1532. if x != nil {
  1533. return x.Money
  1534. }
  1535. return 0
  1536. }
  1537. func (x *PayOrderInfo) GetType() string {
  1538. if x != nil {
  1539. return x.Type
  1540. }
  1541. return ""
  1542. }
  1543. func (x *PayOrderInfo) GetTransactionID() string {
  1544. if x != nil {
  1545. return x.TransactionID
  1546. }
  1547. return ""
  1548. }
  1549. func (x *PayOrderInfo) GetOpenId() string {
  1550. if x != nil {
  1551. return x.OpenId
  1552. }
  1553. return ""
  1554. }
  1555. func (x *PayOrderInfo) GetDescription() string {
  1556. if x != nil {
  1557. return x.Description
  1558. }
  1559. return ""
  1560. }
  1561. func (x *PayOrderInfo) GetStatus() string {
  1562. if x != nil {
  1563. return x.Status
  1564. }
  1565. return ""
  1566. }
  1567. func (x *PayOrderInfo) GetPayTime() int64 {
  1568. if x != nil {
  1569. return x.PayTime
  1570. }
  1571. return 0
  1572. }
  1573. func (x *PayOrderInfo) GetCreateTime() int64 {
  1574. if x != nil {
  1575. return x.CreateTime
  1576. }
  1577. return 0
  1578. }
  1579. type PayOrderList struct {
  1580. state protoimpl.MessageState
  1581. sizeCache protoimpl.SizeCache
  1582. unknownFields protoimpl.UnknownFields
  1583. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1584. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1585. }
  1586. func (x *PayOrderList) Reset() {
  1587. *x = PayOrderList{}
  1588. if protoimpl.UnsafeEnabled {
  1589. mi := &file_user_proto_msgTypes[28]
  1590. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1591. ms.StoreMessageInfo(mi)
  1592. }
  1593. }
  1594. func (x *PayOrderList) String() string {
  1595. return protoimpl.X.MessageStringOf(x)
  1596. }
  1597. func (*PayOrderList) ProtoMessage() {}
  1598. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  1599. mi := &file_user_proto_msgTypes[28]
  1600. if protoimpl.UnsafeEnabled && x != nil {
  1601. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1602. if ms.LoadMessageInfo() == nil {
  1603. ms.StoreMessageInfo(mi)
  1604. }
  1605. return ms
  1606. }
  1607. return mi.MessageOf(x)
  1608. }
  1609. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  1610. func (*PayOrderList) Descriptor() ([]byte, []int) {
  1611. return file_user_proto_rawDescGZIP(), []int{28}
  1612. }
  1613. func (x *PayOrderList) GetList() []*PayOrderInfo {
  1614. if x != nil {
  1615. return x.List
  1616. }
  1617. return nil
  1618. }
  1619. func (x *PayOrderList) GetNextId() int64 {
  1620. if x != nil {
  1621. return x.NextId
  1622. }
  1623. return 0
  1624. }
  1625. type FindPayOrderListRequest struct {
  1626. state protoimpl.MessageState
  1627. sizeCache protoimpl.SizeCache
  1628. unknownFields protoimpl.UnknownFields
  1629. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1630. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1631. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  1632. }
  1633. func (x *FindPayOrderListRequest) Reset() {
  1634. *x = FindPayOrderListRequest{}
  1635. if protoimpl.UnsafeEnabled {
  1636. mi := &file_user_proto_msgTypes[29]
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. }
  1641. func (x *FindPayOrderListRequest) String() string {
  1642. return protoimpl.X.MessageStringOf(x)
  1643. }
  1644. func (*FindPayOrderListRequest) ProtoMessage() {}
  1645. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  1646. mi := &file_user_proto_msgTypes[29]
  1647. if protoimpl.UnsafeEnabled && x != nil {
  1648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1649. if ms.LoadMessageInfo() == nil {
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. return ms
  1653. }
  1654. return mi.MessageOf(x)
  1655. }
  1656. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  1657. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  1658. return file_user_proto_rawDescGZIP(), []int{29}
  1659. }
  1660. func (x *FindPayOrderListRequest) GetNextId() int64 {
  1661. if x != nil {
  1662. return x.NextId
  1663. }
  1664. return 0
  1665. }
  1666. func (x *FindPayOrderListRequest) GetOffset() int64 {
  1667. if x != nil {
  1668. return x.Offset
  1669. }
  1670. return 0
  1671. }
  1672. func (x *FindPayOrderListRequest) GetStatus() string {
  1673. if x != nil {
  1674. return x.Status
  1675. }
  1676. return ""
  1677. }
  1678. type PayCallbackReply struct {
  1679. state protoimpl.MessageState
  1680. sizeCache protoimpl.SizeCache
  1681. unknownFields protoimpl.UnknownFields
  1682. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  1683. }
  1684. func (x *PayCallbackReply) Reset() {
  1685. *x = PayCallbackReply{}
  1686. if protoimpl.UnsafeEnabled {
  1687. mi := &file_user_proto_msgTypes[30]
  1688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1689. ms.StoreMessageInfo(mi)
  1690. }
  1691. }
  1692. func (x *PayCallbackReply) String() string {
  1693. return protoimpl.X.MessageStringOf(x)
  1694. }
  1695. func (*PayCallbackReply) ProtoMessage() {}
  1696. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  1697. mi := &file_user_proto_msgTypes[30]
  1698. if protoimpl.UnsafeEnabled && x != nil {
  1699. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1700. if ms.LoadMessageInfo() == nil {
  1701. ms.StoreMessageInfo(mi)
  1702. }
  1703. return ms
  1704. }
  1705. return mi.MessageOf(x)
  1706. }
  1707. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  1708. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  1709. return file_user_proto_rawDescGZIP(), []int{30}
  1710. }
  1711. func (x *PayCallbackReply) GetResult() []byte {
  1712. if x != nil {
  1713. return x.Result
  1714. }
  1715. return nil
  1716. }
  1717. var File_user_proto protoreflect.FileDescriptor
  1718. var file_user_proto_rawDesc = []byte{
  1719. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1720. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  1721. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  1722. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1723. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1724. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1725. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1726. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  1727. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1728. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  1729. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  1730. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b,
  1731. 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67,
  1732. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  1733. 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x01,
  1734. 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a,
  1735. 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
  1736. 0x52, 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x22, 0x4b, 0x0a, 0x19, 0x47,
  1737. 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44,
  1738. 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  1739. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65,
  1740. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70,
  1741. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64,
  1742. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61,
  1743. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1744. 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75,
  1745. 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1746. 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  1747. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22,
  1748. 0x47, 0x0a, 0x21, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  1749. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52,
  1750. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1751. 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73,
  1752. 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xb3, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64,
  1753. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75,
  1754. 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73,
  1755. 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d,
  1756. 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1757. 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d,
  1758. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  1759. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  1760. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1761. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1762. 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03,
  1763. 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x22, 0xaa,
  1764. 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46,
  1765. 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1766. 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  1767. 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1768. 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03, 0x20,
  1769. 0x01, 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77,
  1770. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01,
  1771. 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75,
  1772. 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  1773. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61,
  1774. 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x35, 0x0a, 0x1b, 0x55,
  1775. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64,
  1776. 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  1777. 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  1778. 0x49, 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73,
  1779. 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  1780. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  1781. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  1782. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72,
  1783. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x65, 0x6e,
  1784. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18, 0x53, 0x65, 0x6e,
  1785. 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  1786. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52,
  1787. 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69,
  1788. 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x7d, 0x0a,
  1789. 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d,
  1790. 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20,
  1791. 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e,
  1792. 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  1793. 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61,
  1794. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61,
  1795. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1796. 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a, 0x11,
  1797. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1798. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  1799. 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d,
  1800. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61,
  1801. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1802. 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73,
  1803. 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67,
  1804. 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f,
  1805. 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  1806. 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1807. 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72,
  1808. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1809. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1810. 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
  1811. 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  1812. 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  1813. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49,
  1814. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64,
  1815. 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  1816. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01,
  1817. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69,
  1818. 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  1819. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x1d, 0x46, 0x69,
  1820. 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  1821. 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e,
  1822. 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a,
  1823. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73,
  1824. 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  1825. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68,
  1826. 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01,
  1827. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65,
  1828. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68,
  1829. 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1830. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  1831. 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  1832. 0x6c, 0x69, 0x73, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  1833. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1834. 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02,
  1835. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63,
  1836. 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65,
  1837. 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69,
  1838. 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65,
  1839. 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  1840. 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  1841. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06,
  1842. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x65, 0x0a, 0x11, 0x49,
  1843. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1844. 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f,
  1845. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69,
  1846. 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  1847. 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64,
  1848. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61,
  1849. 0x72, 0x64, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  1850. 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  1851. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  1852. 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65,
  1853. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1854. 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  1855. 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  1856. 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16,
  1857. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1858. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x43,
  1859. 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1860. 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1861. 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
  1862. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75,
  1863. 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  1864. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74,
  1865. 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18,
  1866. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12,
  1867. 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06,
  1868. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  1869. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1870. 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  1871. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  1872. 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20,
  1873. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a,
  1874. 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12,
  1875. 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52,
  1876. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xac, 0x03, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72,
  1877. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1878. 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  1879. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  1880. 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20,
  1881. 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10,
  1882. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  1883. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  1884. 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74,
  1885. 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74,
  1886. 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64,
  1887. 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  1888. 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28,
  1889. 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69,
  1890. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  1891. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  1892. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  1893. 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  1894. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01,
  1895. 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04,
  1896. 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79,
  1897. 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  1898. 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e,
  1899. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07,
  1900. 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69,
  1901. 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69,
  1902. 0x73, 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65,
  1903. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71,
  1904. 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  1905. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74,
  1906. 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d,
  1907. 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65,
  1908. 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1909. 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18,
  1910. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a,
  1911. 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  1912. 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  1913. 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1914. 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e,
  1915. 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
  1916. 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1917. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79,
  1918. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18,
  1919. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c,
  1920. 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1921. 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1922. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72,
  1923. 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49,
  1924. 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1925. 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  1926. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54,
  1927. 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01,
  1928. 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  1929. 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
  1930. 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73,
  1931. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  1932. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73,
  1933. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61,
  1934. 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a,
  1935. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  1936. 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28,
  1937. 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a,
  1938. 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a,
  1939. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70,
  1940. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  1941. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  1942. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  1943. 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65,
  1944. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1945. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
  1946. 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
  1947. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1948. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74,
  1949. 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62,
  1950. 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
  1951. 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
  1952. 0x32, 0x83, 0x52, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74,
  1953. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1954. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1955. 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  1956. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61,
  1957. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12,
  1958. 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  1959. 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65,
  1960. 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  1961. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1962. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93,
  1963. 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f,
  1964. 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68,
  1965. 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61,
  1966. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50,
  1967. 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1968. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1969. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22,
  1970. 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f,
  1971. 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61,
  1972. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  1973. 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55,
  1974. 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1975. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1976. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1977. 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1978. 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  1979. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61,
  1980. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d,
  1981. 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72,
  1982. 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61,
  1983. 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f,
  1984. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  1985. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  1986. 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55,
  1987. 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1988. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1989. 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  1990. 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1991. 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c,
  1992. 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47,
  1993. 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  1994. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  1995. 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1996. 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1997. 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d,
  1998. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50,
  1999. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f,
  2000. 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2001. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61,
  2002. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64,
  2003. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4,
  2004. 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e,
  2005. 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f,
  2006. 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2007. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  2008. 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  2009. 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c,
  2010. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18,
  2011. 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  2012. 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f,
  2013. 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2014. 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2015. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73,
  2016. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f,
  2017. 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e,
  2018. 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61,
  2019. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69,
  2020. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18,
  2021. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c,
  2022. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17,
  2023. 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  2024. 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  2025. 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2026. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32,
  2027. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2028. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65,
  2029. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82,
  2030. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2031. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2032. 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65,
  2033. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b,
  2034. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  2035. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70,
  2036. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2037. 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3,
  2038. 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2039. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e,
  2040. 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53,
  2041. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2042. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  2043. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61,
  2044. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  2045. 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82,
  2046. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2047. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a,
  2048. 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  2049. 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2050. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  2051. 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2052. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  2053. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2054. 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2055. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a,
  2056. 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  2057. 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2058. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  2059. 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2060. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  2061. 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69,
  2062. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f,
  2063. 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2064. 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2065. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2066. 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73,
  2067. 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61,
  2068. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01,
  2069. 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54,
  2070. 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2071. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61,
  2072. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69,
  2073. 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69,
  2074. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f,
  2075. 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2076. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2077. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f,
  2078. 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  2079. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69,
  2080. 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f,
  2081. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f,
  2082. 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  2083. 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2084. 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70,
  2085. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54,
  2086. 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22,
  2087. 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  2088. 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75,
  2089. 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73,
  2090. 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2091. 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65,
  2092. 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  2093. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82,
  2094. 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2095. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64,
  2096. 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d,
  2097. 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2098. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19,
  2099. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65,
  2100. 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2101. 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e,
  2102. 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2103. 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61,
  2104. 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2105. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70,
  2106. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72,
  2107. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f,
  2108. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61,
  2109. 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  2110. 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  2111. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2112. 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2113. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24,
  2114. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2115. 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c,
  2116. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65,
  2117. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2118. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2119. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2120. 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2121. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a,
  2122. 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  2123. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  2124. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2125. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4,
  2126. 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75,
  2127. 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f,
  2128. 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2129. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2130. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2131. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2132. 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70,
  2133. 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  2134. 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61,
  2135. 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2136. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2137. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53,
  2138. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70,
  2139. 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  2140. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61,
  2141. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64,
  2142. 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24,
  2143. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61,
  2144. 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71,
  2145. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2146. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3,
  2147. 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2148. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74,
  2149. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63,
  2150. 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43,
  2151. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2152. 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  2153. 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16,
  2154. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2155. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c,
  2156. 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2157. 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2158. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2159. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21,
  2160. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2161. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01,
  2162. 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  2163. 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2164. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2165. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63,
  2166. 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e,
  2167. 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69,
  2168. 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d,
  2169. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70,
  2170. 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  2171. 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  2172. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69,
  2173. 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a,
  2174. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2175. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a,
  2176. 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63,
  2177. 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  2178. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  2179. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2180. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4,
  2181. 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  2182. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2183. 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2184. 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2185. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53,
  2186. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2187. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2188. 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  2189. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f,
  2190. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c,
  2191. 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  2192. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2193. 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2194. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  2195. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63,
  2196. 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a,
  2197. 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53,
  2198. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2199. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2200. 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  2201. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82,
  2202. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2203. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12,
  2204. 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61,
  2205. 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  2206. 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2207. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2208. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  2209. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c,
  2210. 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2211. 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e,
  2212. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2213. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2214. 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2215. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2216. 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e,
  2217. 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2218. 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61,
  2219. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2220. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2221. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82,
  2222. 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2223. 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a,
  2224. 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e,
  2225. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50,
  2226. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69,
  2227. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b,
  2228. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2229. 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2230. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a,
  2231. 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73,
  2232. 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  2233. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24,
  2234. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  2235. 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2236. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61,
  2237. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b,
  2238. 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74,
  2239. 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2240. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71,
  2241. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2242. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3,
  2243. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2244. 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a,
  2245. 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2246. 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12,
  2247. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72,
  2248. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70,
  2249. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
  2250. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2251. 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
  2252. 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68,
  2253. 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70,
  2254. 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2255. 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70,
  2256. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2257. 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
  2258. 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49,
  2259. 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  2260. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e,
  2261. 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f,
  2262. 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2263. 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2264. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2265. 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2266. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65,
  2267. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93,
  2268. 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75,
  2269. 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69,
  2270. 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d,
  2271. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2272. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  2273. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65,
  2274. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  2275. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f,
  2276. 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65,
  2277. 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  2278. 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2279. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2280. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2281. 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  2282. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2283. 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55,
  2284. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
  2285. 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2286. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61,
  2287. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2288. 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2289. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66,
  2290. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a,
  2291. 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66,
  2292. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e,
  2293. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2294. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2295. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82,
  2296. 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2297. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61,
  2298. 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c,
  2299. 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2300. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  2301. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2302. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  2303. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f,
  2304. 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c,
  2305. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61,
  2306. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68,
  2307. 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70,
  2308. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d,
  2309. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2310. 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a,
  2311. 0x10, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73,
  2312. 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2313. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2314. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73,
  2315. 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2316. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69,
  2317. 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79,
  2318. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2319. 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2320. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2321. 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22,
  2322. 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2323. 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c,
  2324. 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50,
  2325. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2326. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2327. 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  2328. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  2329. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22,
  2330. 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  2331. 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a,
  2332. 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61,
  2333. 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2334. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2335. 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e,
  2336. 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41,
  2337. 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93,
  2338. 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61,
  2339. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01,
  2340. 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e,
  2341. 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2342. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69,
  2343. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f,
  2344. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2345. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f,
  2346. 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2347. 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2348. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2349. 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2350. 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22,
  2351. 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f,
  2352. 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e,
  2353. 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x2e, 0x61, 0x70,
  2354. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a,
  2355. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61,
  2356. 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c,
  2357. 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2358. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63,
  2359. 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63,
  2360. 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2361. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2362. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2363. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2364. 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c,
  2365. 0x6f, 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d,
  2366. 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e,
  2367. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49,
  2368. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2369. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2370. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2371. 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75,
  2372. 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  2373. 0x73, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e,
  2374. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2375. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2376. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82,
  2377. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2378. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  2379. 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2380. 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61,
  2381. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  2382. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e,
  2383. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70,
  2384. 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69,
  2385. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f,
  2386. 0x6d, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x8a, 0x01, 0x0a,
  2387. 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  2388. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2389. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72,
  2390. 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26,
  2391. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2392. 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
  2393. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16,
  2394. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65,
  2395. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x1e, 0x4d, 0x61,
  2396. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  2397. 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61,
  2398. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2399. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2400. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2401. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50,
  2402. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d,
  2403. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2404. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69,
  2405. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x9d, 0x01,
  2406. 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x69, 0x67,
  2407. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2408. 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2409. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  2410. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69,
  2411. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  2412. 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2413. 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  2414. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  2415. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01,
  2416. 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67,
  2417. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x61,
  2418. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d,
  2419. 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  2420. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2421. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2422. 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2423. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f,
  2424. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x1d,
  2425. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51,
  2426. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x19, 0x2e,
  2427. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2428. 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2429. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2430. 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2431. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75,
  2432. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70,
  2433. 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2434. 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2435. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a,
  2436. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2437. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22,
  2438. 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x62, 0x6c,
  2439. 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x72, 0x65, 0x3a, 0x01, 0x2a,
  2440. 0x12, 0x7e, 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74,
  2441. 0x65, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72,
  2442. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2443. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2444. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2445. 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70,
  2446. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74,
  2447. 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  2448. 0x12, 0x88, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2449. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70,
  2450. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2451. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x56, 0x6f, 0x69, 0x63,
  2452. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2453. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2454. 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2455. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x56, 0x6f, 0x69, 0x63,
  2456. 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x91, 0x01, 0x0a, 0x19,
  2457. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2458. 0x72, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2459. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  2460. 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72,
  2461. 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2462. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2463. 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2464. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x69, 0x63,
  2465. 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2466. 0x94, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  2467. 0x65, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2f,
  2468. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2469. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53,
  2470. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2471. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2472. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22,
  2473. 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73,
  2474. 0x65, 0x72, 0x2f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2f, 0x75, 0x70, 0x64,
  2475. 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2476. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74,
  2477. 0x61, 0x72, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2478. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72,
  2479. 0x73, 0x6f, 0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2480. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2481. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24,
  2482. 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75,
  2483. 0x73, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74,
  2484. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x85, 0x01, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2485. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a,
  2486. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2487. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e,
  2488. 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2489. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2490. 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69,
  2491. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x61,
  2492. 0x6d, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a,
  2493. 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2494. 0x65, 0x72, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2495. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  2496. 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x52,
  2497. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2498. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a,
  2499. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2500. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74,
  2501. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8c, 0x01, 0x0a, 0x18, 0x4d,
  2502. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  2503. 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2504. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2505. 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52,
  2506. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2507. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29,
  2508. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2509. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f,
  2510. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74,
  2511. 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2512. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50,
  2513. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2514. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e, 0x46,
  2515. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e,
  2516. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2517. 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2518. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70,
  2519. 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74,
  2520. 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2521. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73,
  2522. 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2523. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2524. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x17, 0x46,
  2525. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  2526. 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2527. 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  2528. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2529. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65,
  2530. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  2531. 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65,
  2532. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2533. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2534. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2535. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2536. 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  2537. 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44,
  2538. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2539. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x82, 0x01, 0x0a,
  2540. 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69,
  2541. 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c,
  2542. 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46,
  2543. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68,
  2544. 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  2545. 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69,
  2546. 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51,
  2547. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2548. 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73,
  2549. 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x19,
  2550. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2551. 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2552. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73,
  2553. 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65,
  2554. 0x70, 0x6c, 0x79, 0x12, 0x46, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65,
  2555. 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  2556. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  2557. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2558. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c,
  2559. 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75,
  2560. 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2561. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  2562. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2563. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65,
  2564. 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72,
  2565. 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2566. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2567. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2568. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63,
  2569. 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  2570. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2571. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2572. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2573. 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64,
  2574. 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2575. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2576. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2577. 0x70, 0x74, 0x79, 0x12, 0x67, 0x0a, 0x1c, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65,
  2578. 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e,
  2579. 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53,
  2580. 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72,
  2581. 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  2582. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2583. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e,
  2584. 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65,
  2585. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19,
  2586. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2587. 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2588. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2589. 0x79, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2590. 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x25, 0x2e, 0x61, 0x70,
  2591. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2592. 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65,
  2593. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2594. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a,
  2595. 0x24, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68,
  2596. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73,
  2597. 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  2598. 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68,
  2599. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61,
  2600. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2601. 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52,
  2602. 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c,
  2603. 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2604. 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2605. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  2606. 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14,
  2607. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2608. 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2609. 0x65, 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e,
  2610. 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70,
  2611. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2612. 0x3b, 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2613. }
  2614. var (
  2615. file_user_proto_rawDescOnce sync.Once
  2616. file_user_proto_rawDescData = file_user_proto_rawDesc
  2617. )
  2618. func file_user_proto_rawDescGZIP() []byte {
  2619. file_user_proto_rawDescOnce.Do(func() {
  2620. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  2621. })
  2622. return file_user_proto_rawDescData
  2623. }
  2624. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 31)
  2625. var file_user_proto_goTypes = []interface{}{
  2626. (*ManagerMarkHighQualityUserRequest)(nil), // 0: api.user.ManagerMarkHighQualityUserRequest
  2627. (*GetRecommendUserDBRequest)(nil), // 1: api.user.GetRecommendUserDBRequest
  2628. (*FindRecommendHighQualityUserRequest)(nil), // 2: api.user.FindRecommendHighQualityUserRequest
  2629. (*FindRecommendHighQualityUserReply)(nil), // 3: api.user.FindRecommendHighQualityUserReply
  2630. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 4: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  2631. (*GetUserDBMsgFromWebsocketReply)(nil), // 5: api.user.GetUserDBMsgFromWebsocketReply
  2632. (*UpdateUserMatchedNumRequest)(nil), // 6: api.user.UpdateUserMatchedNumRequest
  2633. (*SendNewMessageUnreadReminderRequest)(nil), // 7: api.user.SendNewMessageUnreadReminderRequest
  2634. (*SendMsgReduceCreditReply)(nil), // 8: api.user.SendMsgReduceCreditReply
  2635. (*UserFreeNum)(nil), // 9: api.user.UserFreeNum
  2636. (*ReplyScripRequest)(nil), // 10: api.user.ReplyScripRequest
  2637. (*PersonLookScripRequest)(nil), // 11: api.user.PersonLookScripRequest
  2638. (*UserFindScripRequest)(nil), // 12: api.user.UserFindScripRequest
  2639. (*DeleteScripRequest)(nil), // 13: api.user.DeleteScripRequest
  2640. (*CreateScripRequest)(nil), // 14: api.user.CreateScripRequest
  2641. (*FindMatchingAvatarAndNumReply)(nil), // 15: api.user.FindMatchingAvatarAndNumReply
  2642. (*UserRechargeRequest)(nil), // 16: api.user.UserRechargeRequest
  2643. (*RechargeList)(nil), // 17: api.user.RechargeList
  2644. (*RechargeInfo)(nil), // 18: api.user.RechargeInfo
  2645. (*InformationStatus)(nil), // 19: api.user.InformationStatus
  2646. (*UserBalance)(nil), // 20: api.user.UserBalance
  2647. (*UserFindChatListReply)(nil), // 21: api.user.UserFindChatListReply
  2648. (*UserChatInfo)(nil), // 22: api.user.UserChatInfo
  2649. (*UserInfo)(nil), // 23: api.user.UserInfo
  2650. (*KeyRequest)(nil), // 24: api.user.KeyRequest
  2651. (*CreatePayRequest)(nil), // 25: api.user.CreatePayRequest
  2652. (*PayInfo)(nil), // 26: api.user.PayInfo
  2653. (*PayOrderInfo)(nil), // 27: api.user.PayOrderInfo
  2654. (*PayOrderList)(nil), // 28: api.user.PayOrderList
  2655. (*FindPayOrderListRequest)(nil), // 29: api.user.FindPayOrderListRequest
  2656. (*PayCallbackReply)(nil), // 30: api.user.PayCallbackReply
  2657. (*common.Message)(nil), // 31: api.common.Message
  2658. (*structpb.Value)(nil), // 32: google.protobuf.Value
  2659. (*emptypb.Empty)(nil), // 33: google.protobuf.Empty
  2660. (*common.SendPhoneCodeRequest)(nil), // 34: api.common.SendPhoneCodeRequest
  2661. (*common.CheckPhoneCodeRequest)(nil), // 35: api.common.CheckPhoneCodeRequest
  2662. (*common.UpdateInformationRequest)(nil), // 36: api.common.UpdateInformationRequest
  2663. (*common.CreateChatRoomParam)(nil), // 37: api.common.CreateChatRoomParam
  2664. (*common.PersonParam)(nil), // 38: api.common.PersonParam
  2665. (*common.ListPageRequest)(nil), // 39: api.common.ListPageRequest
  2666. (*common.WxConfReq)(nil), // 40: api.common.WxConfReq
  2667. (*common.SexReq)(nil), // 41: api.common.SexReq
  2668. (*common.ListPage2Request)(nil), // 42: api.common.ListPage2Request
  2669. (*common.FindChatRecordListRequest)(nil), // 43: api.common.FindChatRecordListRequest
  2670. (*common.FindChatRoomMsgRequest)(nil), // 44: api.common.FindChatRoomMsgRequest
  2671. (*common.MemeRequest)(nil), // 45: api.common.MemeRequest
  2672. (*common.FindChatTopicRequest)(nil), // 46: api.common.FindChatTopicRequest
  2673. (*common.RandomNum)(nil), // 47: api.common.RandomNum
  2674. (*common.RandomNumAndSex)(nil), // 48: api.common.RandomNumAndSex
  2675. (*common.ReportChatRequest)(nil), // 49: api.common.ReportChatRequest
  2676. (*common.UpdateLastScripIDRequest)(nil), // 50: api.common.UpdateLastScripIDRequest
  2677. (*common.FindScripRequest)(nil), // 51: api.common.FindScripRequest
  2678. (*common.RoomIDRequest)(nil), // 52: api.common.RoomIDRequest
  2679. (*common.PartnerIDParam)(nil), // 53: api.common.PartnerIDParam
  2680. (*common.ManagerFindPersonListRequest)(nil), // 54: api.common.ManagerFindPersonListRequest
  2681. (*common.PersonIDParam)(nil), // 55: api.common.PersonIDParam
  2682. (*common.PersonIDList)(nil), // 56: api.common.PersonIDList
  2683. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 57: api.common.ManagerUpdatePersonVoiceRequest
  2684. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 58: api.common.ManagerUpdatePersonPicturesRequest
  2685. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 59: api.common.ManagerUpdatePersonSignatureRequest
  2686. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 60: api.common.ManagerUpdatePersonAvatarRequest
  2687. (*common.ManagerUpdatePersonNameRequest)(nil), // 61: api.common.ManagerUpdatePersonNameRequest
  2688. (*common.ManagerUpdatePersonWeightRequest)(nil), // 62: api.common.ManagerUpdatePersonWeightRequest
  2689. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 63: api.common.ManagerUpdatePersonIsBlackRequest
  2690. (*common.UpdateLastScripIDDBRequest)(nil), // 64: api.common.UpdateLastScripIDDBRequest
  2691. (*common.FindRecommendRequest)(nil), // 65: api.common.FindRecommendRequest
  2692. (*common.IDParam)(nil), // 66: api.common.IDParam
  2693. (*chat.RoomReply)(nil), // 67: api.chat.RoomReply
  2694. (*common.HomeInfo)(nil), // 68: api.common.HomeInfo
  2695. (*common.LookedAndLikedNum)(nil), // 69: api.common.LookedAndLikedNum
  2696. (*statistics.LookAndLikeListReply)(nil), // 70: api.statistics.LookAndLikeListReply
  2697. (*common.WxConfResponse)(nil), // 71: api.common.WxConfResponse
  2698. (*common.TagListReply)(nil), // 72: api.common.TagListReply
  2699. (*common.RecommendPersonListReply)(nil), // 73: api.common.RecommendPersonListReply
  2700. (*common.ChatRecordListReply)(nil), // 74: api.common.ChatRecordListReply
  2701. (*common.ChatRoomMsg)(nil), // 75: api.common.ChatRoomMsg
  2702. (*common.IsLike)(nil), // 76: api.common.IsLike
  2703. (*common.MemeList)(nil), // 77: api.common.MemeList
  2704. (*common.ChatTopicList)(nil), // 78: api.common.ChatTopicList
  2705. (*common.CommonTextList)(nil), // 79: api.common.CommonTextList
  2706. (*common.MemeTitleList)(nil), // 80: api.common.MemeTitleList
  2707. (*common.ChatCardInfo)(nil), // 81: api.common.ChatCardInfo
  2708. (*common.FindOverSevenDayAvatarReply)(nil), // 82: api.common.FindOverSevenDayAvatarReply
  2709. (*common.ScripID)(nil), // 83: api.common.ScripID
  2710. (*common.ScripReply)(nil), // 84: api.common.ScripReply
  2711. (*common.ScripInfo)(nil), // 85: api.common.ScripInfo
  2712. (*common.ChatRecordInfo)(nil), // 86: api.common.ChatRecordInfo
  2713. (*chat.UnreadNumReply)(nil), // 87: api.chat.UnreadNumReply
  2714. (*chat.UserRoomInfo)(nil), // 88: api.chat.UserRoomInfo
  2715. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 89: api.chat.CheckUserPartnerIsRelationshipReply
  2716. (*common.AddFriendMessageInfo)(nil), // 90: api.common.AddFriendMessageInfo
  2717. (*statistics.LookAndLikeMessageReply)(nil), // 91: api.statistics.LookAndLikeMessageReply
  2718. (*statistics.LookMessageReply)(nil), // 92: api.statistics.LookMessageReply
  2719. (*chat.WindowInfo)(nil), // 93: api.chat.WindowInfo
  2720. (*chat.GetRandomMatchingReply)(nil), // 94: api.chat.GetRandomMatchingReply
  2721. (*common.ManagerFindPersonListReply)(nil), // 95: api.common.ManagerFindPersonListReply
  2722. (*common.PersonMsg)(nil), // 96: api.common.PersonMsg
  2723. (*common.PersonDBReply)(nil), // 97: api.common.PersonDBReply
  2724. (*common.PersonDB)(nil), // 98: api.common.PersonDB
  2725. }
  2726. var file_user_proto_depIdxs = []int32{
  2727. 31, // 0: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  2728. 18, // 1: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  2729. 22, // 2: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  2730. 32, // 3: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  2731. 27, // 4: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  2732. 33, // 5: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  2733. 34, // 6: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2734. 35, // 7: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2735. 36, // 8: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  2736. 37, // 9: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  2737. 33, // 10: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  2738. 38, // 11: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  2739. 38, // 12: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2740. 39, // 13: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  2741. 40, // 14: api.user.User.WxConf:input_type -> api.common.WxConfReq
  2742. 41, // 15: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  2743. 42, // 16: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  2744. 39, // 17: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2745. 39, // 18: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2746. 43, // 19: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2747. 44, // 20: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2748. 38, // 21: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  2749. 45, // 22: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  2750. 46, // 23: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2751. 47, // 24: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  2752. 48, // 25: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2753. 33, // 26: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  2754. 38, // 27: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  2755. 33, // 28: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2756. 38, // 29: api.user.User.UserLike:input_type -> api.common.PersonParam
  2757. 38, // 30: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  2758. 49, // 31: api.user.User.Report:input_type -> api.common.ReportChatRequest
  2759. 33, // 32: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2760. 50, // 33: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2761. 14, // 34: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  2762. 13, // 35: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  2763. 12, // 36: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  2764. 51, // 37: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  2765. 12, // 38: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  2766. 11, // 39: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  2767. 33, // 40: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  2768. 10, // 41: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  2769. 52, // 42: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  2770. 33, // 43: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  2771. 38, // 44: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  2772. 39, // 45: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  2773. 39, // 46: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  2774. 52, // 47: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  2775. 53, // 48: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  2776. 24, // 49: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  2777. 33, // 50: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  2778. 33, // 51: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  2779. 33, // 52: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  2780. 33, // 53: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  2781. 33, // 54: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  2782. 38, // 55: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  2783. 16, // 56: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  2784. 33, // 57: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  2785. 29, // 58: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  2786. 33, // 59: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  2787. 33, // 60: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  2788. 33, // 61: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  2789. 33, // 62: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  2790. 41, // 63: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  2791. 52, // 64: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  2792. 52, // 65: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  2793. 33, // 66: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  2794. 37, // 67: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  2795. 54, // 68: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  2796. 54, // 69: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  2797. 54, // 70: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  2798. 0, // 71: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  2799. 55, // 72: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  2800. 56, // 73: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  2801. 55, // 74: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  2802. 57, // 75: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  2803. 58, // 76: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  2804. 59, // 77: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  2805. 60, // 78: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  2806. 61, // 79: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  2807. 62, // 80: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  2808. 63, // 81: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  2809. 55, // 82: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  2810. 56, // 83: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  2811. 64, // 84: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  2812. 65, // 85: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  2813. 55, // 86: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  2814. 66, // 87: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  2815. 2, // 88: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  2816. 55, // 89: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  2817. 38, // 90: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  2818. 38, // 91: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  2819. 38, // 92: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  2820. 38, // 93: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  2821. 38, // 94: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  2822. 7, // 95: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  2823. 55, // 96: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  2824. 6, // 97: api.user.User.UpdateUserMatchedNum:input_type -> api.user.UpdateUserMatchedNumRequest
  2825. 6, // 98: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  2826. 1, // 99: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  2827. 23, // 100: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  2828. 33, // 101: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  2829. 33, // 102: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  2830. 33, // 103: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  2831. 67, // 104: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  2832. 20, // 105: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  2833. 68, // 106: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  2834. 69, // 107: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  2835. 70, // 108: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  2836. 71, // 109: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  2837. 72, // 110: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  2838. 73, // 111: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  2839. 21, // 112: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2840. 21, // 113: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2841. 74, // 114: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2842. 75, // 115: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2843. 76, // 116: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  2844. 77, // 117: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  2845. 78, // 118: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  2846. 79, // 119: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  2847. 79, // 120: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  2848. 80, // 121: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  2849. 81, // 122: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  2850. 80, // 123: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  2851. 33, // 124: api.user.User.UserLike:output_type -> google.protobuf.Empty
  2852. 33, // 125: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  2853. 33, // 126: api.user.User.Report:output_type -> google.protobuf.Empty
  2854. 82, // 127: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  2855. 33, // 128: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  2856. 83, // 129: api.user.User.CreateScrip:output_type -> api.common.ScripID
  2857. 33, // 130: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  2858. 84, // 131: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  2859. 84, // 132: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  2860. 84, // 133: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  2861. 33, // 134: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  2862. 85, // 135: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  2863. 86, // 136: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2864. 33, // 137: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  2865. 87, // 138: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  2866. 88, // 139: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  2867. 70, // 140: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  2868. 70, // 141: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  2869. 33, // 142: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  2870. 89, // 143: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  2871. 90, // 144: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  2872. 91, // 145: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  2873. 92, // 146: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  2874. 33, // 147: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  2875. 19, // 148: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  2876. 33, // 149: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  2877. 33, // 150: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  2878. 26, // 151: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  2879. 17, // 152: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  2880. 28, // 153: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  2881. 73, // 154: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  2882. 15, // 155: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  2883. 93, // 156: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  2884. 9, // 157: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  2885. 94, // 158: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  2886. 33, // 159: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  2887. 33, // 160: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  2888. 33, // 161: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  2889. 67, // 162: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  2890. 95, // 163: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  2891. 95, // 164: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  2892. 95, // 165: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  2893. 33, // 166: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  2894. 33, // 167: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  2895. 33, // 168: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  2896. 33, // 169: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  2897. 33, // 170: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  2898. 33, // 171: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  2899. 33, // 172: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  2900. 33, // 173: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  2901. 33, // 174: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  2902. 33, // 175: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  2903. 33, // 176: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  2904. 96, // 177: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  2905. 97, // 178: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  2906. 33, // 179: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  2907. 97, // 180: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  2908. 33, // 181: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  2909. 96, // 182: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  2910. 3, // 183: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  2911. 5, // 184: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  2912. 33, // 185: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  2913. 33, // 186: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  2914. 33, // 187: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  2915. 33, // 188: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  2916. 33, // 189: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  2917. 33, // 190: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  2918. 33, // 191: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  2919. 33, // 192: api.user.User.UpdateUserMatchedNum:output_type -> google.protobuf.Empty
  2920. 4, // 193: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  2921. 98, // 194: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  2922. 100, // [100:195] is the sub-list for method output_type
  2923. 5, // [5:100] is the sub-list for method input_type
  2924. 5, // [5:5] is the sub-list for extension type_name
  2925. 5, // [5:5] is the sub-list for extension extendee
  2926. 0, // [0:5] is the sub-list for field type_name
  2927. }
  2928. func init() { file_user_proto_init() }
  2929. func file_user_proto_init() {
  2930. if File_user_proto != nil {
  2931. return
  2932. }
  2933. if !protoimpl.UnsafeEnabled {
  2934. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2935. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  2936. case 0:
  2937. return &v.state
  2938. case 1:
  2939. return &v.sizeCache
  2940. case 2:
  2941. return &v.unknownFields
  2942. default:
  2943. return nil
  2944. }
  2945. }
  2946. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2947. switch v := v.(*GetRecommendUserDBRequest); i {
  2948. case 0:
  2949. return &v.state
  2950. case 1:
  2951. return &v.sizeCache
  2952. case 2:
  2953. return &v.unknownFields
  2954. default:
  2955. return nil
  2956. }
  2957. }
  2958. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2959. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  2960. case 0:
  2961. return &v.state
  2962. case 1:
  2963. return &v.sizeCache
  2964. case 2:
  2965. return &v.unknownFields
  2966. default:
  2967. return nil
  2968. }
  2969. }
  2970. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2971. switch v := v.(*FindRecommendHighQualityUserReply); i {
  2972. case 0:
  2973. return &v.state
  2974. case 1:
  2975. return &v.sizeCache
  2976. case 2:
  2977. return &v.unknownFields
  2978. default:
  2979. return nil
  2980. }
  2981. }
  2982. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2983. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  2984. case 0:
  2985. return &v.state
  2986. case 1:
  2987. return &v.sizeCache
  2988. case 2:
  2989. return &v.unknownFields
  2990. default:
  2991. return nil
  2992. }
  2993. }
  2994. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2995. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  2996. case 0:
  2997. return &v.state
  2998. case 1:
  2999. return &v.sizeCache
  3000. case 2:
  3001. return &v.unknownFields
  3002. default:
  3003. return nil
  3004. }
  3005. }
  3006. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3007. switch v := v.(*UpdateUserMatchedNumRequest); i {
  3008. case 0:
  3009. return &v.state
  3010. case 1:
  3011. return &v.sizeCache
  3012. case 2:
  3013. return &v.unknownFields
  3014. default:
  3015. return nil
  3016. }
  3017. }
  3018. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3019. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  3020. case 0:
  3021. return &v.state
  3022. case 1:
  3023. return &v.sizeCache
  3024. case 2:
  3025. return &v.unknownFields
  3026. default:
  3027. return nil
  3028. }
  3029. }
  3030. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3031. switch v := v.(*SendMsgReduceCreditReply); i {
  3032. case 0:
  3033. return &v.state
  3034. case 1:
  3035. return &v.sizeCache
  3036. case 2:
  3037. return &v.unknownFields
  3038. default:
  3039. return nil
  3040. }
  3041. }
  3042. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3043. switch v := v.(*UserFreeNum); i {
  3044. case 0:
  3045. return &v.state
  3046. case 1:
  3047. return &v.sizeCache
  3048. case 2:
  3049. return &v.unknownFields
  3050. default:
  3051. return nil
  3052. }
  3053. }
  3054. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3055. switch v := v.(*ReplyScripRequest); i {
  3056. case 0:
  3057. return &v.state
  3058. case 1:
  3059. return &v.sizeCache
  3060. case 2:
  3061. return &v.unknownFields
  3062. default:
  3063. return nil
  3064. }
  3065. }
  3066. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3067. switch v := v.(*PersonLookScripRequest); i {
  3068. case 0:
  3069. return &v.state
  3070. case 1:
  3071. return &v.sizeCache
  3072. case 2:
  3073. return &v.unknownFields
  3074. default:
  3075. return nil
  3076. }
  3077. }
  3078. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3079. switch v := v.(*UserFindScripRequest); i {
  3080. case 0:
  3081. return &v.state
  3082. case 1:
  3083. return &v.sizeCache
  3084. case 2:
  3085. return &v.unknownFields
  3086. default:
  3087. return nil
  3088. }
  3089. }
  3090. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3091. switch v := v.(*DeleteScripRequest); i {
  3092. case 0:
  3093. return &v.state
  3094. case 1:
  3095. return &v.sizeCache
  3096. case 2:
  3097. return &v.unknownFields
  3098. default:
  3099. return nil
  3100. }
  3101. }
  3102. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3103. switch v := v.(*CreateScripRequest); i {
  3104. case 0:
  3105. return &v.state
  3106. case 1:
  3107. return &v.sizeCache
  3108. case 2:
  3109. return &v.unknownFields
  3110. default:
  3111. return nil
  3112. }
  3113. }
  3114. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3115. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  3116. case 0:
  3117. return &v.state
  3118. case 1:
  3119. return &v.sizeCache
  3120. case 2:
  3121. return &v.unknownFields
  3122. default:
  3123. return nil
  3124. }
  3125. }
  3126. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3127. switch v := v.(*UserRechargeRequest); i {
  3128. case 0:
  3129. return &v.state
  3130. case 1:
  3131. return &v.sizeCache
  3132. case 2:
  3133. return &v.unknownFields
  3134. default:
  3135. return nil
  3136. }
  3137. }
  3138. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3139. switch v := v.(*RechargeList); i {
  3140. case 0:
  3141. return &v.state
  3142. case 1:
  3143. return &v.sizeCache
  3144. case 2:
  3145. return &v.unknownFields
  3146. default:
  3147. return nil
  3148. }
  3149. }
  3150. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3151. switch v := v.(*RechargeInfo); i {
  3152. case 0:
  3153. return &v.state
  3154. case 1:
  3155. return &v.sizeCache
  3156. case 2:
  3157. return &v.unknownFields
  3158. default:
  3159. return nil
  3160. }
  3161. }
  3162. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3163. switch v := v.(*InformationStatus); i {
  3164. case 0:
  3165. return &v.state
  3166. case 1:
  3167. return &v.sizeCache
  3168. case 2:
  3169. return &v.unknownFields
  3170. default:
  3171. return nil
  3172. }
  3173. }
  3174. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3175. switch v := v.(*UserBalance); i {
  3176. case 0:
  3177. return &v.state
  3178. case 1:
  3179. return &v.sizeCache
  3180. case 2:
  3181. return &v.unknownFields
  3182. default:
  3183. return nil
  3184. }
  3185. }
  3186. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3187. switch v := v.(*UserFindChatListReply); i {
  3188. case 0:
  3189. return &v.state
  3190. case 1:
  3191. return &v.sizeCache
  3192. case 2:
  3193. return &v.unknownFields
  3194. default:
  3195. return nil
  3196. }
  3197. }
  3198. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3199. switch v := v.(*UserChatInfo); i {
  3200. case 0:
  3201. return &v.state
  3202. case 1:
  3203. return &v.sizeCache
  3204. case 2:
  3205. return &v.unknownFields
  3206. default:
  3207. return nil
  3208. }
  3209. }
  3210. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3211. switch v := v.(*UserInfo); i {
  3212. case 0:
  3213. return &v.state
  3214. case 1:
  3215. return &v.sizeCache
  3216. case 2:
  3217. return &v.unknownFields
  3218. default:
  3219. return nil
  3220. }
  3221. }
  3222. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3223. switch v := v.(*KeyRequest); i {
  3224. case 0:
  3225. return &v.state
  3226. case 1:
  3227. return &v.sizeCache
  3228. case 2:
  3229. return &v.unknownFields
  3230. default:
  3231. return nil
  3232. }
  3233. }
  3234. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3235. switch v := v.(*CreatePayRequest); i {
  3236. case 0:
  3237. return &v.state
  3238. case 1:
  3239. return &v.sizeCache
  3240. case 2:
  3241. return &v.unknownFields
  3242. default:
  3243. return nil
  3244. }
  3245. }
  3246. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3247. switch v := v.(*PayInfo); i {
  3248. case 0:
  3249. return &v.state
  3250. case 1:
  3251. return &v.sizeCache
  3252. case 2:
  3253. return &v.unknownFields
  3254. default:
  3255. return nil
  3256. }
  3257. }
  3258. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3259. switch v := v.(*PayOrderInfo); i {
  3260. case 0:
  3261. return &v.state
  3262. case 1:
  3263. return &v.sizeCache
  3264. case 2:
  3265. return &v.unknownFields
  3266. default:
  3267. return nil
  3268. }
  3269. }
  3270. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3271. switch v := v.(*PayOrderList); i {
  3272. case 0:
  3273. return &v.state
  3274. case 1:
  3275. return &v.sizeCache
  3276. case 2:
  3277. return &v.unknownFields
  3278. default:
  3279. return nil
  3280. }
  3281. }
  3282. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3283. switch v := v.(*FindPayOrderListRequest); i {
  3284. case 0:
  3285. return &v.state
  3286. case 1:
  3287. return &v.sizeCache
  3288. case 2:
  3289. return &v.unknownFields
  3290. default:
  3291. return nil
  3292. }
  3293. }
  3294. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3295. switch v := v.(*PayCallbackReply); i {
  3296. case 0:
  3297. return &v.state
  3298. case 1:
  3299. return &v.sizeCache
  3300. case 2:
  3301. return &v.unknownFields
  3302. default:
  3303. return nil
  3304. }
  3305. }
  3306. }
  3307. type x struct{}
  3308. out := protoimpl.TypeBuilder{
  3309. File: protoimpl.DescBuilder{
  3310. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3311. RawDescriptor: file_user_proto_rawDesc,
  3312. NumEnums: 0,
  3313. NumMessages: 31,
  3314. NumExtensions: 0,
  3315. NumServices: 1,
  3316. },
  3317. GoTypes: file_user_proto_goTypes,
  3318. DependencyIndexes: file_user_proto_depIdxs,
  3319. MessageInfos: file_user_proto_msgTypes,
  3320. }.Build()
  3321. File_user_proto = out.File
  3322. file_user_proto_rawDesc = nil
  3323. file_user_proto_goTypes = nil
  3324. file_user_proto_depIdxs = nil
  3325. }