user.pb.go 198 KB

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