user.pb.go 255 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667
  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 UpdateTodayRequest 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. TodaySendUnreadReminderNum int64 `protobuf:"varint,2,opt,name=todaySendUnreadReminderNum,proto3" json:"todaySendUnreadReminderNum"`
  31. TodaySendVisitorReminderNum int64 `protobuf:"varint,3,opt,name=todaySendVisitorReminderNum,proto3" json:"todaySendVisitorReminderNum"`
  32. }
  33. func (x *UpdateTodayRequest) Reset() {
  34. *x = UpdateTodayRequest{}
  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 *UpdateTodayRequest) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*UpdateTodayRequest) ProtoMessage() {}
  45. func (x *UpdateTodayRequest) 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 UpdateTodayRequest.ProtoReflect.Descriptor instead.
  57. func (*UpdateTodayRequest) Descriptor() ([]byte, []int) {
  58. return file_user_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *UpdateTodayRequest) GetUserId() string {
  61. if x != nil {
  62. return x.UserId
  63. }
  64. return ""
  65. }
  66. func (x *UpdateTodayRequest) GetTodaySendUnreadReminderNum() int64 {
  67. if x != nil {
  68. return x.TodaySendUnreadReminderNum
  69. }
  70. return 0
  71. }
  72. func (x *UpdateTodayRequest) GetTodaySendVisitorReminderNum() int64 {
  73. if x != nil {
  74. return x.TodaySendVisitorReminderNum
  75. }
  76. return 0
  77. }
  78. type UpdateLastSendTemplateTimeRequest struct {
  79. state protoimpl.MessageState
  80. sizeCache protoimpl.SizeCache
  81. unknownFields protoimpl.UnknownFields
  82. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  83. LastSendTemplateTime int64 `protobuf:"varint,2,opt,name=lastSendTemplateTime,proto3" json:"lastSendTemplateTime"`
  84. }
  85. func (x *UpdateLastSendTemplateTimeRequest) Reset() {
  86. *x = UpdateLastSendTemplateTimeRequest{}
  87. if protoimpl.UnsafeEnabled {
  88. mi := &file_user_proto_msgTypes[1]
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. ms.StoreMessageInfo(mi)
  91. }
  92. }
  93. func (x *UpdateLastSendTemplateTimeRequest) String() string {
  94. return protoimpl.X.MessageStringOf(x)
  95. }
  96. func (*UpdateLastSendTemplateTimeRequest) ProtoMessage() {}
  97. func (x *UpdateLastSendTemplateTimeRequest) ProtoReflect() protoreflect.Message {
  98. mi := &file_user_proto_msgTypes[1]
  99. if protoimpl.UnsafeEnabled && x != nil {
  100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  101. if ms.LoadMessageInfo() == nil {
  102. ms.StoreMessageInfo(mi)
  103. }
  104. return ms
  105. }
  106. return mi.MessageOf(x)
  107. }
  108. // Deprecated: Use UpdateLastSendTemplateTimeRequest.ProtoReflect.Descriptor instead.
  109. func (*UpdateLastSendTemplateTimeRequest) Descriptor() ([]byte, []int) {
  110. return file_user_proto_rawDescGZIP(), []int{1}
  111. }
  112. func (x *UpdateLastSendTemplateTimeRequest) GetUserId() string {
  113. if x != nil {
  114. return x.UserId
  115. }
  116. return ""
  117. }
  118. func (x *UpdateLastSendTemplateTimeRequest) GetLastSendTemplateTime() int64 {
  119. if x != nil {
  120. return x.LastSendTemplateTime
  121. }
  122. return 0
  123. }
  124. type UserPrivacyStatusInfo struct {
  125. state protoimpl.MessageState
  126. sizeCache protoimpl.SizeCache
  127. unknownFields protoimpl.UnknownFields
  128. IsCloseGreet bool `protobuf:"varint,1,opt,name=isCloseGreet,proto3" json:"isCloseGreet"` // 是否关闭打招呼
  129. IsCloseMatching bool `protobuf:"varint,2,opt,name=isCloseMatching,proto3" json:"isCloseMatching"` // 是否关闭匹配到我
  130. }
  131. func (x *UserPrivacyStatusInfo) Reset() {
  132. *x = UserPrivacyStatusInfo{}
  133. if protoimpl.UnsafeEnabled {
  134. mi := &file_user_proto_msgTypes[2]
  135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  136. ms.StoreMessageInfo(mi)
  137. }
  138. }
  139. func (x *UserPrivacyStatusInfo) String() string {
  140. return protoimpl.X.MessageStringOf(x)
  141. }
  142. func (*UserPrivacyStatusInfo) ProtoMessage() {}
  143. func (x *UserPrivacyStatusInfo) ProtoReflect() protoreflect.Message {
  144. mi := &file_user_proto_msgTypes[2]
  145. if protoimpl.UnsafeEnabled && x != nil {
  146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  147. if ms.LoadMessageInfo() == nil {
  148. ms.StoreMessageInfo(mi)
  149. }
  150. return ms
  151. }
  152. return mi.MessageOf(x)
  153. }
  154. // Deprecated: Use UserPrivacyStatusInfo.ProtoReflect.Descriptor instead.
  155. func (*UserPrivacyStatusInfo) Descriptor() ([]byte, []int) {
  156. return file_user_proto_rawDescGZIP(), []int{2}
  157. }
  158. func (x *UserPrivacyStatusInfo) GetIsCloseGreet() bool {
  159. if x != nil {
  160. return x.IsCloseGreet
  161. }
  162. return false
  163. }
  164. func (x *UserPrivacyStatusInfo) GetIsCloseMatching() bool {
  165. if x != nil {
  166. return x.IsCloseMatching
  167. }
  168. return false
  169. }
  170. type IsCanGetReturnRewordReply struct {
  171. state protoimpl.MessageState
  172. sizeCache protoimpl.SizeCache
  173. unknownFields protoimpl.UnknownFields
  174. IsCanGetReword bool `protobuf:"varint,1,opt,name=isCanGetReword,proto3" json:"isCanGetReword"`
  175. }
  176. func (x *IsCanGetReturnRewordReply) Reset() {
  177. *x = IsCanGetReturnRewordReply{}
  178. if protoimpl.UnsafeEnabled {
  179. mi := &file_user_proto_msgTypes[3]
  180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  181. ms.StoreMessageInfo(mi)
  182. }
  183. }
  184. func (x *IsCanGetReturnRewordReply) String() string {
  185. return protoimpl.X.MessageStringOf(x)
  186. }
  187. func (*IsCanGetReturnRewordReply) ProtoMessage() {}
  188. func (x *IsCanGetReturnRewordReply) ProtoReflect() protoreflect.Message {
  189. mi := &file_user_proto_msgTypes[3]
  190. if protoimpl.UnsafeEnabled && x != nil {
  191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  192. if ms.LoadMessageInfo() == nil {
  193. ms.StoreMessageInfo(mi)
  194. }
  195. return ms
  196. }
  197. return mi.MessageOf(x)
  198. }
  199. // Deprecated: Use IsCanGetReturnRewordReply.ProtoReflect.Descriptor instead.
  200. func (*IsCanGetReturnRewordReply) Descriptor() ([]byte, []int) {
  201. return file_user_proto_rawDescGZIP(), []int{3}
  202. }
  203. func (x *IsCanGetReturnRewordReply) GetIsCanGetReword() bool {
  204. if x != nil {
  205. return x.IsCanGetReword
  206. }
  207. return false
  208. }
  209. type GetRandomMatchingRequest struct {
  210. state protoimpl.MessageState
  211. sizeCache protoimpl.SizeCache
  212. unknownFields protoimpl.UnknownFields
  213. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  214. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  215. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  216. MaxAge int64 `protobuf:"varint,9,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  217. MinAge int64 `protobuf:"varint,10,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  218. }
  219. func (x *GetRandomMatchingRequest) Reset() {
  220. *x = GetRandomMatchingRequest{}
  221. if protoimpl.UnsafeEnabled {
  222. mi := &file_user_proto_msgTypes[4]
  223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  224. ms.StoreMessageInfo(mi)
  225. }
  226. }
  227. func (x *GetRandomMatchingRequest) String() string {
  228. return protoimpl.X.MessageStringOf(x)
  229. }
  230. func (*GetRandomMatchingRequest) ProtoMessage() {}
  231. func (x *GetRandomMatchingRequest) ProtoReflect() protoreflect.Message {
  232. mi := &file_user_proto_msgTypes[4]
  233. if protoimpl.UnsafeEnabled && x != nil {
  234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  235. if ms.LoadMessageInfo() == nil {
  236. ms.StoreMessageInfo(mi)
  237. }
  238. return ms
  239. }
  240. return mi.MessageOf(x)
  241. }
  242. // Deprecated: Use GetRandomMatchingRequest.ProtoReflect.Descriptor instead.
  243. func (*GetRandomMatchingRequest) Descriptor() ([]byte, []int) {
  244. return file_user_proto_rawDescGZIP(), []int{4}
  245. }
  246. func (x *GetRandomMatchingRequest) GetSex() int64 {
  247. if x != nil {
  248. return x.Sex
  249. }
  250. return 0
  251. }
  252. func (x *GetRandomMatchingRequest) GetProvince() string {
  253. if x != nil {
  254. return x.Province
  255. }
  256. return ""
  257. }
  258. func (x *GetRandomMatchingRequest) GetCity() string {
  259. if x != nil {
  260. return x.City
  261. }
  262. return ""
  263. }
  264. func (x *GetRandomMatchingRequest) GetMaxAge() int64 {
  265. if x != nil {
  266. return x.MaxAge
  267. }
  268. return 0
  269. }
  270. func (x *GetRandomMatchingRequest) GetMinAge() int64 {
  271. if x != nil {
  272. return x.MinAge
  273. }
  274. return 0
  275. }
  276. type MatchUserDBWithoutMapRequest struct {
  277. state protoimpl.MessageState
  278. sizeCache protoimpl.SizeCache
  279. unknownFields protoimpl.UnknownFields
  280. IsMatchingMap map[string]bool `protobuf:"bytes,1,rep,name=isMatchingMap,proto3" json:"isMatchingMap" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // 已经匹配过的map
  281. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"` // 省
  282. City string `protobuf:"bytes,3,opt,name=city,proto3" json:"city"` // 市
  283. MaxAge int64 `protobuf:"varint,4,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  284. MinAge int64 `protobuf:"varint,5,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  285. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  286. }
  287. func (x *MatchUserDBWithoutMapRequest) Reset() {
  288. *x = MatchUserDBWithoutMapRequest{}
  289. if protoimpl.UnsafeEnabled {
  290. mi := &file_user_proto_msgTypes[5]
  291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  292. ms.StoreMessageInfo(mi)
  293. }
  294. }
  295. func (x *MatchUserDBWithoutMapRequest) String() string {
  296. return protoimpl.X.MessageStringOf(x)
  297. }
  298. func (*MatchUserDBWithoutMapRequest) ProtoMessage() {}
  299. func (x *MatchUserDBWithoutMapRequest) ProtoReflect() protoreflect.Message {
  300. mi := &file_user_proto_msgTypes[5]
  301. if protoimpl.UnsafeEnabled && x != nil {
  302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  303. if ms.LoadMessageInfo() == nil {
  304. ms.StoreMessageInfo(mi)
  305. }
  306. return ms
  307. }
  308. return mi.MessageOf(x)
  309. }
  310. // Deprecated: Use MatchUserDBWithoutMapRequest.ProtoReflect.Descriptor instead.
  311. func (*MatchUserDBWithoutMapRequest) Descriptor() ([]byte, []int) {
  312. return file_user_proto_rawDescGZIP(), []int{5}
  313. }
  314. func (x *MatchUserDBWithoutMapRequest) GetIsMatchingMap() map[string]bool {
  315. if x != nil {
  316. return x.IsMatchingMap
  317. }
  318. return make(map[string]bool, 0)
  319. }
  320. func (x *MatchUserDBWithoutMapRequest) GetProvince() string {
  321. if x != nil {
  322. return x.Province
  323. }
  324. return ""
  325. }
  326. func (x *MatchUserDBWithoutMapRequest) GetCity() string {
  327. if x != nil {
  328. return x.City
  329. }
  330. return ""
  331. }
  332. func (x *MatchUserDBWithoutMapRequest) GetMaxAge() int64 {
  333. if x != nil {
  334. return x.MaxAge
  335. }
  336. return 0
  337. }
  338. func (x *MatchUserDBWithoutMapRequest) GetMinAge() int64 {
  339. if x != nil {
  340. return x.MinAge
  341. }
  342. return 0
  343. }
  344. func (x *MatchUserDBWithoutMapRequest) GetSex() int64 {
  345. if x != nil {
  346. return x.Sex
  347. }
  348. return 0
  349. }
  350. type GetUserLookHandPickNumReply struct {
  351. state protoimpl.MessageState
  352. sizeCache protoimpl.SizeCache
  353. unknownFields protoimpl.UnknownFields
  354. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"`
  355. UserIdList []string `protobuf:"bytes,2,rep,name=userIdList,proto3" json:"userIdList"`
  356. }
  357. func (x *GetUserLookHandPickNumReply) Reset() {
  358. *x = GetUserLookHandPickNumReply{}
  359. if protoimpl.UnsafeEnabled {
  360. mi := &file_user_proto_msgTypes[6]
  361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  362. ms.StoreMessageInfo(mi)
  363. }
  364. }
  365. func (x *GetUserLookHandPickNumReply) String() string {
  366. return protoimpl.X.MessageStringOf(x)
  367. }
  368. func (*GetUserLookHandPickNumReply) ProtoMessage() {}
  369. func (x *GetUserLookHandPickNumReply) ProtoReflect() protoreflect.Message {
  370. mi := &file_user_proto_msgTypes[6]
  371. if protoimpl.UnsafeEnabled && x != nil {
  372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  373. if ms.LoadMessageInfo() == nil {
  374. ms.StoreMessageInfo(mi)
  375. }
  376. return ms
  377. }
  378. return mi.MessageOf(x)
  379. }
  380. // Deprecated: Use GetUserLookHandPickNumReply.ProtoReflect.Descriptor instead.
  381. func (*GetUserLookHandPickNumReply) Descriptor() ([]byte, []int) {
  382. return file_user_proto_rawDescGZIP(), []int{6}
  383. }
  384. func (x *GetUserLookHandPickNumReply) GetNum() int64 {
  385. if x != nil {
  386. return x.Num
  387. }
  388. return 0
  389. }
  390. func (x *GetUserLookHandPickNumReply) GetUserIdList() []string {
  391. if x != nil {
  392. return x.UserIdList
  393. }
  394. return make([]string, 0)
  395. }
  396. type FindUserVipListDBReply struct {
  397. state protoimpl.MessageState
  398. sizeCache protoimpl.SizeCache
  399. unknownFields protoimpl.UnknownFields
  400. VipMap map[string]*VipInfo `protobuf:"bytes,1,rep,name=vipMap,proto3" json:"vipMap" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  401. }
  402. func (x *FindUserVipListDBReply) Reset() {
  403. *x = FindUserVipListDBReply{}
  404. if protoimpl.UnsafeEnabled {
  405. mi := &file_user_proto_msgTypes[7]
  406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  407. ms.StoreMessageInfo(mi)
  408. }
  409. }
  410. func (x *FindUserVipListDBReply) String() string {
  411. return protoimpl.X.MessageStringOf(x)
  412. }
  413. func (*FindUserVipListDBReply) ProtoMessage() {}
  414. func (x *FindUserVipListDBReply) ProtoReflect() protoreflect.Message {
  415. mi := &file_user_proto_msgTypes[7]
  416. if protoimpl.UnsafeEnabled && x != nil {
  417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  418. if ms.LoadMessageInfo() == nil {
  419. ms.StoreMessageInfo(mi)
  420. }
  421. return ms
  422. }
  423. return mi.MessageOf(x)
  424. }
  425. // Deprecated: Use FindUserVipListDBReply.ProtoReflect.Descriptor instead.
  426. func (*FindUserVipListDBReply) Descriptor() ([]byte, []int) {
  427. return file_user_proto_rawDescGZIP(), []int{7}
  428. }
  429. func (x *FindUserVipListDBReply) GetVipMap() map[string]*VipInfo {
  430. if x != nil {
  431. return x.VipMap
  432. }
  433. return make(map[string]*VipInfo, 0)
  434. }
  435. type VipInfo struct {
  436. state protoimpl.MessageState
  437. sizeCache protoimpl.SizeCache
  438. unknownFields protoimpl.UnknownFields
  439. IsVip bool `protobuf:"varint,1,opt,name=isVip,proto3" json:"isVip"` // 是否是vip
  440. VipLevel int64 `protobuf:"varint,2,opt,name=vipLevel,proto3" json:"vipLevel"` // vip 等级
  441. GrowthValue int64 `protobuf:"varint,3,opt,name=growthValue,proto3" json:"growthValue"` // vip成长值
  442. RenewalTime int64 `protobuf:"varint,4,opt,name=renewalTime,proto3" json:"renewalTime"` // 会员的续费时间
  443. ExpirationTime int64 `protobuf:"varint,5,opt,name=expirationTime,proto3" json:"expirationTime"` // 会员的到期时间
  444. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 会员的开始时间
  445. IsYearVip bool `protobuf:"varint,7,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费vip
  446. VipFunctions []string `protobuf:"bytes,8,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  447. UserId string `protobuf:"bytes,9,opt,name=userId,proto3" json:"userId"` // id
  448. }
  449. func (x *VipInfo) Reset() {
  450. *x = VipInfo{}
  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 *VipInfo) String() string {
  458. return protoimpl.X.MessageStringOf(x)
  459. }
  460. func (*VipInfo) ProtoMessage() {}
  461. func (x *VipInfo) 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 VipInfo.ProtoReflect.Descriptor instead.
  473. func (*VipInfo) Descriptor() ([]byte, []int) {
  474. return file_user_proto_rawDescGZIP(), []int{8}
  475. }
  476. func (x *VipInfo) GetIsVip() bool {
  477. if x != nil {
  478. return x.IsVip
  479. }
  480. return false
  481. }
  482. func (x *VipInfo) GetVipLevel() int64 {
  483. if x != nil {
  484. return x.VipLevel
  485. }
  486. return 0
  487. }
  488. func (x *VipInfo) GetGrowthValue() int64 {
  489. if x != nil {
  490. return x.GrowthValue
  491. }
  492. return 0
  493. }
  494. func (x *VipInfo) GetRenewalTime() int64 {
  495. if x != nil {
  496. return x.RenewalTime
  497. }
  498. return 0
  499. }
  500. func (x *VipInfo) GetExpirationTime() int64 {
  501. if x != nil {
  502. return x.ExpirationTime
  503. }
  504. return 0
  505. }
  506. func (x *VipInfo) GetCreateTime() int64 {
  507. if x != nil {
  508. return x.CreateTime
  509. }
  510. return 0
  511. }
  512. func (x *VipInfo) GetIsYearVip() bool {
  513. if x != nil {
  514. return x.IsYearVip
  515. }
  516. return false
  517. }
  518. func (x *VipInfo) GetVipFunctions() []string {
  519. if x != nil {
  520. return x.VipFunctions
  521. }
  522. return make([]string, 0)
  523. }
  524. func (x *VipInfo) GetUserId() string {
  525. if x != nil {
  526. return x.UserId
  527. }
  528. return ""
  529. }
  530. type SendMsgReduceCreditRequest struct {
  531. state protoimpl.MessageState
  532. sizeCache protoimpl.SizeCache
  533. unknownFields protoimpl.UnknownFields
  534. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  535. IsFree bool `protobuf:"varint,2,opt,name=isFree,proto3" json:"isFree"` // 是否免费
  536. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"` // 消息类型
  537. }
  538. func (x *SendMsgReduceCreditRequest) Reset() {
  539. *x = SendMsgReduceCreditRequest{}
  540. if protoimpl.UnsafeEnabled {
  541. mi := &file_user_proto_msgTypes[9]
  542. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  543. ms.StoreMessageInfo(mi)
  544. }
  545. }
  546. func (x *SendMsgReduceCreditRequest) String() string {
  547. return protoimpl.X.MessageStringOf(x)
  548. }
  549. func (*SendMsgReduceCreditRequest) ProtoMessage() {}
  550. func (x *SendMsgReduceCreditRequest) ProtoReflect() protoreflect.Message {
  551. mi := &file_user_proto_msgTypes[9]
  552. if protoimpl.UnsafeEnabled && x != nil {
  553. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  554. if ms.LoadMessageInfo() == nil {
  555. ms.StoreMessageInfo(mi)
  556. }
  557. return ms
  558. }
  559. return mi.MessageOf(x)
  560. }
  561. // Deprecated: Use SendMsgReduceCreditRequest.ProtoReflect.Descriptor instead.
  562. func (*SendMsgReduceCreditRequest) Descriptor() ([]byte, []int) {
  563. return file_user_proto_rawDescGZIP(), []int{9}
  564. }
  565. func (x *SendMsgReduceCreditRequest) GetPersonID() string {
  566. if x != nil {
  567. return x.PersonID
  568. }
  569. return ""
  570. }
  571. func (x *SendMsgReduceCreditRequest) GetIsFree() bool {
  572. if x != nil {
  573. return x.IsFree
  574. }
  575. return false
  576. }
  577. func (x *SendMsgReduceCreditRequest) GetType() string {
  578. if x != nil {
  579. return x.Type
  580. }
  581. return ""
  582. }
  583. type UserGetInformationAwardByActivityRequest struct {
  584. state protoimpl.MessageState
  585. sizeCache protoimpl.SizeCache
  586. unknownFields protoimpl.UnknownFields
  587. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  588. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"`
  589. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc"`
  590. }
  591. func (x *UserGetInformationAwardByActivityRequest) Reset() {
  592. *x = UserGetInformationAwardByActivityRequest{}
  593. if protoimpl.UnsafeEnabled {
  594. mi := &file_user_proto_msgTypes[10]
  595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  596. ms.StoreMessageInfo(mi)
  597. }
  598. }
  599. func (x *UserGetInformationAwardByActivityRequest) String() string {
  600. return protoimpl.X.MessageStringOf(x)
  601. }
  602. func (*UserGetInformationAwardByActivityRequest) ProtoMessage() {}
  603. func (x *UserGetInformationAwardByActivityRequest) ProtoReflect() protoreflect.Message {
  604. mi := &file_user_proto_msgTypes[10]
  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 UserGetInformationAwardByActivityRequest.ProtoReflect.Descriptor instead.
  615. func (*UserGetInformationAwardByActivityRequest) Descriptor() ([]byte, []int) {
  616. return file_user_proto_rawDescGZIP(), []int{10}
  617. }
  618. func (x *UserGetInformationAwardByActivityRequest) GetUserId() string {
  619. if x != nil {
  620. return x.UserId
  621. }
  622. return ""
  623. }
  624. func (x *UserGetInformationAwardByActivityRequest) GetCredit() int64 {
  625. if x != nil {
  626. return x.Credit
  627. }
  628. return 0
  629. }
  630. func (x *UserGetInformationAwardByActivityRequest) GetDesc() string {
  631. if x != nil {
  632. return x.Desc
  633. }
  634. return ""
  635. }
  636. type UserGetInformationAwardByActivityReply struct {
  637. state protoimpl.MessageState
  638. sizeCache protoimpl.SizeCache
  639. unknownFields protoimpl.UnknownFields
  640. IsError bool `protobuf:"varint,1,opt,name=isError,proto3" json:"isError"`
  641. }
  642. func (x *UserGetInformationAwardByActivityReply) Reset() {
  643. *x = UserGetInformationAwardByActivityReply{}
  644. if protoimpl.UnsafeEnabled {
  645. mi := &file_user_proto_msgTypes[11]
  646. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  647. ms.StoreMessageInfo(mi)
  648. }
  649. }
  650. func (x *UserGetInformationAwardByActivityReply) String() string {
  651. return protoimpl.X.MessageStringOf(x)
  652. }
  653. func (*UserGetInformationAwardByActivityReply) ProtoMessage() {}
  654. func (x *UserGetInformationAwardByActivityReply) ProtoReflect() protoreflect.Message {
  655. mi := &file_user_proto_msgTypes[11]
  656. if protoimpl.UnsafeEnabled && x != nil {
  657. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  658. if ms.LoadMessageInfo() == nil {
  659. ms.StoreMessageInfo(mi)
  660. }
  661. return ms
  662. }
  663. return mi.MessageOf(x)
  664. }
  665. // Deprecated: Use UserGetInformationAwardByActivityReply.ProtoReflect.Descriptor instead.
  666. func (*UserGetInformationAwardByActivityReply) Descriptor() ([]byte, []int) {
  667. return file_user_proto_rawDescGZIP(), []int{11}
  668. }
  669. func (x *UserGetInformationAwardByActivityReply) GetIsError() bool {
  670. if x != nil {
  671. return x.IsError
  672. }
  673. return false
  674. }
  675. type AddUserCreditRequest struct {
  676. state protoimpl.MessageState
  677. sizeCache protoimpl.SizeCache
  678. unknownFields protoimpl.UnknownFields
  679. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  680. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  681. Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail"`
  682. }
  683. func (x *AddUserCreditRequest) Reset() {
  684. *x = AddUserCreditRequest{}
  685. if protoimpl.UnsafeEnabled {
  686. mi := &file_user_proto_msgTypes[12]
  687. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  688. ms.StoreMessageInfo(mi)
  689. }
  690. }
  691. func (x *AddUserCreditRequest) String() string {
  692. return protoimpl.X.MessageStringOf(x)
  693. }
  694. func (*AddUserCreditRequest) ProtoMessage() {}
  695. func (x *AddUserCreditRequest) ProtoReflect() protoreflect.Message {
  696. mi := &file_user_proto_msgTypes[12]
  697. if protoimpl.UnsafeEnabled && x != nil {
  698. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  699. if ms.LoadMessageInfo() == nil {
  700. ms.StoreMessageInfo(mi)
  701. }
  702. return ms
  703. }
  704. return mi.MessageOf(x)
  705. }
  706. // Deprecated: Use AddUserCreditRequest.ProtoReflect.Descriptor instead.
  707. func (*AddUserCreditRequest) Descriptor() ([]byte, []int) {
  708. return file_user_proto_rawDescGZIP(), []int{12}
  709. }
  710. func (x *AddUserCreditRequest) GetId() string {
  711. if x != nil {
  712. return x.Id
  713. }
  714. return ""
  715. }
  716. func (x *AddUserCreditRequest) GetCredit() int64 {
  717. if x != nil {
  718. return x.Credit
  719. }
  720. return 0
  721. }
  722. func (x *AddUserCreditRequest) GetDetail() string {
  723. if x != nil {
  724. return x.Detail
  725. }
  726. return ""
  727. }
  728. type ReportUserBlackRequest struct {
  729. state protoimpl.MessageState
  730. sizeCache protoimpl.SizeCache
  731. unknownFields protoimpl.UnknownFields
  732. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  733. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result"`
  734. }
  735. func (x *ReportUserBlackRequest) Reset() {
  736. *x = ReportUserBlackRequest{}
  737. if protoimpl.UnsafeEnabled {
  738. mi := &file_user_proto_msgTypes[13]
  739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  740. ms.StoreMessageInfo(mi)
  741. }
  742. }
  743. func (x *ReportUserBlackRequest) String() string {
  744. return protoimpl.X.MessageStringOf(x)
  745. }
  746. func (*ReportUserBlackRequest) ProtoMessage() {}
  747. func (x *ReportUserBlackRequest) ProtoReflect() protoreflect.Message {
  748. mi := &file_user_proto_msgTypes[13]
  749. if protoimpl.UnsafeEnabled && x != nil {
  750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  751. if ms.LoadMessageInfo() == nil {
  752. ms.StoreMessageInfo(mi)
  753. }
  754. return ms
  755. }
  756. return mi.MessageOf(x)
  757. }
  758. // Deprecated: Use ReportUserBlackRequest.ProtoReflect.Descriptor instead.
  759. func (*ReportUserBlackRequest) Descriptor() ([]byte, []int) {
  760. return file_user_proto_rawDescGZIP(), []int{13}
  761. }
  762. func (x *ReportUserBlackRequest) GetPersonId() string {
  763. if x != nil {
  764. return x.PersonId
  765. }
  766. return ""
  767. }
  768. func (x *ReportUserBlackRequest) GetResult() string {
  769. if x != nil {
  770. return x.Result
  771. }
  772. return ""
  773. }
  774. type SendMessageRequest struct {
  775. state protoimpl.MessageState
  776. sizeCache protoimpl.SizeCache
  777. unknownFields protoimpl.UnknownFields
  778. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  779. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  780. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  781. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  782. }
  783. func (x *SendMessageRequest) Reset() {
  784. *x = SendMessageRequest{}
  785. if protoimpl.UnsafeEnabled {
  786. mi := &file_user_proto_msgTypes[14]
  787. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  788. ms.StoreMessageInfo(mi)
  789. }
  790. }
  791. func (x *SendMessageRequest) String() string {
  792. return protoimpl.X.MessageStringOf(x)
  793. }
  794. func (*SendMessageRequest) ProtoMessage() {}
  795. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  796. mi := &file_user_proto_msgTypes[14]
  797. if protoimpl.UnsafeEnabled && x != nil {
  798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  799. if ms.LoadMessageInfo() == nil {
  800. ms.StoreMessageInfo(mi)
  801. }
  802. return ms
  803. }
  804. return mi.MessageOf(x)
  805. }
  806. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  807. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  808. return file_user_proto_rawDescGZIP(), []int{14}
  809. }
  810. func (x *SendMessageRequest) GetRoomId() int64 {
  811. if x != nil {
  812. return x.RoomId
  813. }
  814. return 0
  815. }
  816. func (x *SendMessageRequest) GetMessage() *common.Message {
  817. if x != nil && x.Message != nil {
  818. return x.Message
  819. }
  820. return &common.Message{}
  821. }
  822. func (x *SendMessageRequest) GetMsgType() string {
  823. if x != nil {
  824. return x.MsgType
  825. }
  826. return ""
  827. }
  828. func (x *SendMessageRequest) GetWebsocketTag() string {
  829. if x != nil {
  830. return x.WebsocketTag
  831. }
  832. return ""
  833. }
  834. type ManagerFindIsCheckQualityUserListRequest struct {
  835. state protoimpl.MessageState
  836. sizeCache protoimpl.SizeCache
  837. unknownFields protoimpl.UnknownFields
  838. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  839. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
  840. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"` // 用户ID
  841. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 姓名
  842. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  843. }
  844. func (x *ManagerFindIsCheckQualityUserListRequest) Reset() {
  845. *x = ManagerFindIsCheckQualityUserListRequest{}
  846. if protoimpl.UnsafeEnabled {
  847. mi := &file_user_proto_msgTypes[15]
  848. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  849. ms.StoreMessageInfo(mi)
  850. }
  851. }
  852. func (x *ManagerFindIsCheckQualityUserListRequest) String() string {
  853. return protoimpl.X.MessageStringOf(x)
  854. }
  855. func (*ManagerFindIsCheckQualityUserListRequest) ProtoMessage() {}
  856. func (x *ManagerFindIsCheckQualityUserListRequest) ProtoReflect() protoreflect.Message {
  857. mi := &file_user_proto_msgTypes[15]
  858. if protoimpl.UnsafeEnabled && x != nil {
  859. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  860. if ms.LoadMessageInfo() == nil {
  861. ms.StoreMessageInfo(mi)
  862. }
  863. return ms
  864. }
  865. return mi.MessageOf(x)
  866. }
  867. // Deprecated: Use ManagerFindIsCheckQualityUserListRequest.ProtoReflect.Descriptor instead.
  868. func (*ManagerFindIsCheckQualityUserListRequest) Descriptor() ([]byte, []int) {
  869. return file_user_proto_rawDescGZIP(), []int{15}
  870. }
  871. func (x *ManagerFindIsCheckQualityUserListRequest) GetPage() int64 {
  872. if x != nil {
  873. return x.Page
  874. }
  875. return 0
  876. }
  877. func (x *ManagerFindIsCheckQualityUserListRequest) GetPageSize() int64 {
  878. if x != nil {
  879. return x.PageSize
  880. }
  881. return 0
  882. }
  883. func (x *ManagerFindIsCheckQualityUserListRequest) GetId() int64 {
  884. if x != nil {
  885. return x.Id
  886. }
  887. return 0
  888. }
  889. func (x *ManagerFindIsCheckQualityUserListRequest) GetName() string {
  890. if x != nil {
  891. return x.Name
  892. }
  893. return ""
  894. }
  895. func (x *ManagerFindIsCheckQualityUserListRequest) GetSex() int64 {
  896. if x != nil {
  897. return x.Sex
  898. }
  899. return 0
  900. }
  901. type ManagerUpdateUserCreditRequest struct {
  902. state protoimpl.MessageState
  903. sizeCache protoimpl.SizeCache
  904. unknownFields protoimpl.UnknownFields
  905. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  906. Num int64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
  907. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title"`
  908. }
  909. func (x *ManagerUpdateUserCreditRequest) Reset() {
  910. *x = ManagerUpdateUserCreditRequest{}
  911. if protoimpl.UnsafeEnabled {
  912. mi := &file_user_proto_msgTypes[16]
  913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  914. ms.StoreMessageInfo(mi)
  915. }
  916. }
  917. func (x *ManagerUpdateUserCreditRequest) String() string {
  918. return protoimpl.X.MessageStringOf(x)
  919. }
  920. func (*ManagerUpdateUserCreditRequest) ProtoMessage() {}
  921. func (x *ManagerUpdateUserCreditRequest) ProtoReflect() protoreflect.Message {
  922. mi := &file_user_proto_msgTypes[16]
  923. if protoimpl.UnsafeEnabled && x != nil {
  924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  925. if ms.LoadMessageInfo() == nil {
  926. ms.StoreMessageInfo(mi)
  927. }
  928. return ms
  929. }
  930. return mi.MessageOf(x)
  931. }
  932. // Deprecated: Use ManagerUpdateUserCreditRequest.ProtoReflect.Descriptor instead.
  933. func (*ManagerUpdateUserCreditRequest) Descriptor() ([]byte, []int) {
  934. return file_user_proto_rawDescGZIP(), []int{16}
  935. }
  936. func (x *ManagerUpdateUserCreditRequest) GetPersonId() string {
  937. if x != nil {
  938. return x.PersonId
  939. }
  940. return ""
  941. }
  942. func (x *ManagerUpdateUserCreditRequest) GetNum() int64 {
  943. if x != nil {
  944. return x.Num
  945. }
  946. return 0
  947. }
  948. func (x *ManagerUpdateUserCreditRequest) GetTitle() string {
  949. if x != nil {
  950. return x.Title
  951. }
  952. return ""
  953. }
  954. type ManagerMarkHighQualityUserRequest struct {
  955. state protoimpl.MessageState
  956. sizeCache protoimpl.SizeCache
  957. unknownFields protoimpl.UnknownFields
  958. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  959. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  960. }
  961. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  962. *x = ManagerMarkHighQualityUserRequest{}
  963. if protoimpl.UnsafeEnabled {
  964. mi := &file_user_proto_msgTypes[17]
  965. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  966. ms.StoreMessageInfo(mi)
  967. }
  968. }
  969. func (x *ManagerMarkHighQualityUserRequest) String() string {
  970. return protoimpl.X.MessageStringOf(x)
  971. }
  972. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  973. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  974. mi := &file_user_proto_msgTypes[17]
  975. if protoimpl.UnsafeEnabled && x != nil {
  976. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  977. if ms.LoadMessageInfo() == nil {
  978. ms.StoreMessageInfo(mi)
  979. }
  980. return ms
  981. }
  982. return mi.MessageOf(x)
  983. }
  984. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  985. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  986. return file_user_proto_rawDescGZIP(), []int{17}
  987. }
  988. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  989. if x != nil {
  990. return x.PassIds
  991. }
  992. return make([]string, 0)
  993. }
  994. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  995. if x != nil {
  996. return x.UnPassIds
  997. }
  998. return make([]string, 0)
  999. }
  1000. type ManagerReMarkHighQualityUserRequest struct {
  1001. state protoimpl.MessageState
  1002. sizeCache protoimpl.SizeCache
  1003. unknownFields protoimpl.UnknownFields
  1004. UserIds []string `protobuf:"bytes,1,rep,name=userIds,proto3" json:"userIds"`
  1005. }
  1006. func (x *ManagerReMarkHighQualityUserRequest) Reset() {
  1007. *x = ManagerReMarkHighQualityUserRequest{}
  1008. if protoimpl.UnsafeEnabled {
  1009. mi := &file_user_proto_msgTypes[18]
  1010. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1011. ms.StoreMessageInfo(mi)
  1012. }
  1013. }
  1014. func (x *ManagerReMarkHighQualityUserRequest) String() string {
  1015. return protoimpl.X.MessageStringOf(x)
  1016. }
  1017. func (*ManagerReMarkHighQualityUserRequest) ProtoMessage() {}
  1018. func (x *ManagerReMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  1019. mi := &file_user_proto_msgTypes[18]
  1020. if protoimpl.UnsafeEnabled && x != nil {
  1021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1022. if ms.LoadMessageInfo() == nil {
  1023. ms.StoreMessageInfo(mi)
  1024. }
  1025. return ms
  1026. }
  1027. return mi.MessageOf(x)
  1028. }
  1029. // Deprecated: Use ManagerReMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  1030. func (*ManagerReMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  1031. return file_user_proto_rawDescGZIP(), []int{18}
  1032. }
  1033. func (x *ManagerReMarkHighQualityUserRequest) GetUserIds() []string {
  1034. if x != nil {
  1035. return x.UserIds
  1036. }
  1037. return make([]string, 0)
  1038. }
  1039. type GetRecommendUserDBRequest struct {
  1040. state protoimpl.MessageState
  1041. sizeCache protoimpl.SizeCache
  1042. unknownFields protoimpl.UnknownFields
  1043. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  1044. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  1045. }
  1046. func (x *GetRecommendUserDBRequest) Reset() {
  1047. *x = GetRecommendUserDBRequest{}
  1048. if protoimpl.UnsafeEnabled {
  1049. mi := &file_user_proto_msgTypes[19]
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. }
  1054. func (x *GetRecommendUserDBRequest) String() string {
  1055. return protoimpl.X.MessageStringOf(x)
  1056. }
  1057. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  1058. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  1059. mi := &file_user_proto_msgTypes[19]
  1060. if protoimpl.UnsafeEnabled && x != nil {
  1061. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1062. if ms.LoadMessageInfo() == nil {
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. return ms
  1066. }
  1067. return mi.MessageOf(x)
  1068. }
  1069. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  1070. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  1071. return file_user_proto_rawDescGZIP(), []int{19}
  1072. }
  1073. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  1074. if x != nil {
  1075. return x.Sex
  1076. }
  1077. return 0
  1078. }
  1079. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  1080. if x != nil {
  1081. return x.PersonIds
  1082. }
  1083. return make([]string, 0)
  1084. }
  1085. type FindRecommendHighQualityUserRequest struct {
  1086. state protoimpl.MessageState
  1087. sizeCache protoimpl.SizeCache
  1088. unknownFields protoimpl.UnknownFields
  1089. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  1090. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  1091. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  1092. }
  1093. func (x *FindRecommendHighQualityUserRequest) Reset() {
  1094. *x = FindRecommendHighQualityUserRequest{}
  1095. if protoimpl.UnsafeEnabled {
  1096. mi := &file_user_proto_msgTypes[20]
  1097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. }
  1101. func (x *FindRecommendHighQualityUserRequest) String() string {
  1102. return protoimpl.X.MessageStringOf(x)
  1103. }
  1104. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  1105. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  1106. mi := &file_user_proto_msgTypes[20]
  1107. if protoimpl.UnsafeEnabled && x != nil {
  1108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1109. if ms.LoadMessageInfo() == nil {
  1110. ms.StoreMessageInfo(mi)
  1111. }
  1112. return ms
  1113. }
  1114. return mi.MessageOf(x)
  1115. }
  1116. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  1117. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  1118. return file_user_proto_rawDescGZIP(), []int{20}
  1119. }
  1120. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  1121. if x != nil {
  1122. return x.Num
  1123. }
  1124. return 0
  1125. }
  1126. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  1127. if x != nil {
  1128. return x.Sex
  1129. }
  1130. return 0
  1131. }
  1132. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  1133. if x != nil {
  1134. return x.PersonId
  1135. }
  1136. return ""
  1137. }
  1138. type FindRecommendHighQualityUserReply struct {
  1139. state protoimpl.MessageState
  1140. sizeCache protoimpl.SizeCache
  1141. unknownFields protoimpl.UnknownFields
  1142. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  1143. }
  1144. func (x *FindRecommendHighQualityUserReply) Reset() {
  1145. *x = FindRecommendHighQualityUserReply{}
  1146. if protoimpl.UnsafeEnabled {
  1147. mi := &file_user_proto_msgTypes[21]
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. ms.StoreMessageInfo(mi)
  1150. }
  1151. }
  1152. func (x *FindRecommendHighQualityUserReply) String() string {
  1153. return protoimpl.X.MessageStringOf(x)
  1154. }
  1155. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  1156. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  1157. mi := &file_user_proto_msgTypes[21]
  1158. if protoimpl.UnsafeEnabled && x != nil {
  1159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1160. if ms.LoadMessageInfo() == nil {
  1161. ms.StoreMessageInfo(mi)
  1162. }
  1163. return ms
  1164. }
  1165. return mi.MessageOf(x)
  1166. }
  1167. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  1168. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  1169. return file_user_proto_rawDescGZIP(), []int{21}
  1170. }
  1171. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  1172. if x != nil {
  1173. return x.PersonIdList
  1174. }
  1175. return make([]string, 0)
  1176. }
  1177. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  1178. state protoimpl.MessageState
  1179. sizeCache protoimpl.SizeCache
  1180. unknownFields protoimpl.UnknownFields
  1181. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1182. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1183. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1184. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  1185. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  1186. City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city"` //城市
  1187. }
  1188. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  1189. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  1190. if protoimpl.UnsafeEnabled {
  1191. mi := &file_user_proto_msgTypes[22]
  1192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1193. ms.StoreMessageInfo(mi)
  1194. }
  1195. }
  1196. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  1197. return protoimpl.X.MessageStringOf(x)
  1198. }
  1199. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  1200. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  1201. mi := &file_user_proto_msgTypes[22]
  1202. if protoimpl.UnsafeEnabled && x != nil {
  1203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1204. if ms.LoadMessageInfo() == nil {
  1205. ms.StoreMessageInfo(mi)
  1206. }
  1207. return ms
  1208. }
  1209. return mi.MessageOf(x)
  1210. }
  1211. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  1212. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  1213. return file_user_proto_rawDescGZIP(), []int{22}
  1214. }
  1215. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  1216. if x != nil {
  1217. return x.TodayMatchedNum
  1218. }
  1219. return 0
  1220. }
  1221. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  1222. if x != nil {
  1223. return x.Nickname
  1224. }
  1225. return ""
  1226. }
  1227. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  1228. if x != nil {
  1229. return x.AvatarUrl
  1230. }
  1231. return ""
  1232. }
  1233. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  1234. if x != nil {
  1235. return x.Sex
  1236. }
  1237. return 0
  1238. }
  1239. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  1240. if x != nil {
  1241. return x.Age
  1242. }
  1243. return 0
  1244. }
  1245. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetCity() string {
  1246. if x != nil {
  1247. return x.City
  1248. }
  1249. return ""
  1250. }
  1251. type GetUserDBMsgFromWebsocketReply struct {
  1252. state protoimpl.MessageState
  1253. sizeCache protoimpl.SizeCache
  1254. unknownFields protoimpl.UnknownFields
  1255. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1256. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  1257. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  1258. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1259. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1260. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1261. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  1262. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  1263. }
  1264. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  1265. *x = GetUserDBMsgFromWebsocketReply{}
  1266. if protoimpl.UnsafeEnabled {
  1267. mi := &file_user_proto_msgTypes[23]
  1268. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1269. ms.StoreMessageInfo(mi)
  1270. }
  1271. }
  1272. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  1273. return protoimpl.X.MessageStringOf(x)
  1274. }
  1275. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  1276. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  1277. mi := &file_user_proto_msgTypes[23]
  1278. if protoimpl.UnsafeEnabled && x != nil {
  1279. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1280. if ms.LoadMessageInfo() == nil {
  1281. ms.StoreMessageInfo(mi)
  1282. }
  1283. return ms
  1284. }
  1285. return mi.MessageOf(x)
  1286. }
  1287. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  1288. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  1289. return file_user_proto_rawDescGZIP(), []int{23}
  1290. }
  1291. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  1292. if x != nil {
  1293. return x.Id
  1294. }
  1295. return ""
  1296. }
  1297. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  1298. if x != nil {
  1299. return x.Sex
  1300. }
  1301. return 0
  1302. }
  1303. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  1304. if x != nil {
  1305. return x.Weight
  1306. }
  1307. return 0
  1308. }
  1309. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  1310. if x != nil {
  1311. return x.WorkingStatus
  1312. }
  1313. return ""
  1314. }
  1315. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  1316. if x != nil {
  1317. return x.TodayMatchedNum
  1318. }
  1319. return 0
  1320. }
  1321. func (x *GetUserDBMsgFromWebsocketReply) GetAge() int64 {
  1322. if x != nil {
  1323. return x.Age
  1324. }
  1325. return 0
  1326. }
  1327. func (x *GetUserDBMsgFromWebsocketReply) GetProvince() string {
  1328. if x != nil {
  1329. return x.Province
  1330. }
  1331. return ""
  1332. }
  1333. func (x *GetUserDBMsgFromWebsocketReply) GetCity() string {
  1334. if x != nil {
  1335. return x.City
  1336. }
  1337. return ""
  1338. }
  1339. type UpdateUserMatchedNumRequest struct {
  1340. state protoimpl.MessageState
  1341. sizeCache protoimpl.SizeCache
  1342. unknownFields protoimpl.UnknownFields
  1343. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  1344. }
  1345. func (x *UpdateUserMatchedNumRequest) Reset() {
  1346. *x = UpdateUserMatchedNumRequest{}
  1347. if protoimpl.UnsafeEnabled {
  1348. mi := &file_user_proto_msgTypes[24]
  1349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1350. ms.StoreMessageInfo(mi)
  1351. }
  1352. }
  1353. func (x *UpdateUserMatchedNumRequest) String() string {
  1354. return protoimpl.X.MessageStringOf(x)
  1355. }
  1356. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  1357. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  1358. mi := &file_user_proto_msgTypes[24]
  1359. if protoimpl.UnsafeEnabled && x != nil {
  1360. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1361. if ms.LoadMessageInfo() == nil {
  1362. ms.StoreMessageInfo(mi)
  1363. }
  1364. return ms
  1365. }
  1366. return mi.MessageOf(x)
  1367. }
  1368. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  1369. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  1370. return file_user_proto_rawDescGZIP(), []int{24}
  1371. }
  1372. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  1373. if x != nil {
  1374. return x.UserId
  1375. }
  1376. return ""
  1377. }
  1378. type SendMsgReduceCreditReply struct {
  1379. state protoimpl.MessageState
  1380. sizeCache protoimpl.SizeCache
  1381. unknownFields protoimpl.UnknownFields
  1382. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  1383. }
  1384. func (x *SendMsgReduceCreditReply) Reset() {
  1385. *x = SendMsgReduceCreditReply{}
  1386. if protoimpl.UnsafeEnabled {
  1387. mi := &file_user_proto_msgTypes[25]
  1388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1389. ms.StoreMessageInfo(mi)
  1390. }
  1391. }
  1392. func (x *SendMsgReduceCreditReply) String() string {
  1393. return protoimpl.X.MessageStringOf(x)
  1394. }
  1395. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  1396. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  1397. mi := &file_user_proto_msgTypes[25]
  1398. if protoimpl.UnsafeEnabled && x != nil {
  1399. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1400. if ms.LoadMessageInfo() == nil {
  1401. ms.StoreMessageInfo(mi)
  1402. }
  1403. return ms
  1404. }
  1405. return mi.MessageOf(x)
  1406. }
  1407. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  1408. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  1409. return file_user_proto_rawDescGZIP(), []int{25}
  1410. }
  1411. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  1412. if x != nil {
  1413. return x.IsSendReminder
  1414. }
  1415. return false
  1416. }
  1417. type UserFreeNum struct {
  1418. state protoimpl.MessageState
  1419. sizeCache protoimpl.SizeCache
  1420. unknownFields protoimpl.UnknownFields
  1421. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  1422. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  1423. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  1424. }
  1425. func (x *UserFreeNum) Reset() {
  1426. *x = UserFreeNum{}
  1427. if protoimpl.UnsafeEnabled {
  1428. mi := &file_user_proto_msgTypes[26]
  1429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1430. ms.StoreMessageInfo(mi)
  1431. }
  1432. }
  1433. func (x *UserFreeNum) String() string {
  1434. return protoimpl.X.MessageStringOf(x)
  1435. }
  1436. func (*UserFreeNum) ProtoMessage() {}
  1437. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  1438. mi := &file_user_proto_msgTypes[26]
  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 UserFreeNum.ProtoReflect.Descriptor instead.
  1449. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  1450. return file_user_proto_rawDescGZIP(), []int{26}
  1451. }
  1452. func (x *UserFreeNum) GetReplyScripNum() int64 {
  1453. if x != nil {
  1454. return x.ReplyScripNum
  1455. }
  1456. return 0
  1457. }
  1458. func (x *UserFreeNum) GetCreateScripNum() int64 {
  1459. if x != nil {
  1460. return x.CreateScripNum
  1461. }
  1462. return 0
  1463. }
  1464. func (x *UserFreeNum) GetMatchingNum() int64 {
  1465. if x != nil {
  1466. return x.MatchingNum
  1467. }
  1468. return 0
  1469. }
  1470. type ReplyScripRequest struct {
  1471. state protoimpl.MessageState
  1472. sizeCache protoimpl.SizeCache
  1473. unknownFields protoimpl.UnknownFields
  1474. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  1475. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  1476. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  1477. }
  1478. func (x *ReplyScripRequest) Reset() {
  1479. *x = ReplyScripRequest{}
  1480. if protoimpl.UnsafeEnabled {
  1481. mi := &file_user_proto_msgTypes[27]
  1482. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1483. ms.StoreMessageInfo(mi)
  1484. }
  1485. }
  1486. func (x *ReplyScripRequest) String() string {
  1487. return protoimpl.X.MessageStringOf(x)
  1488. }
  1489. func (*ReplyScripRequest) ProtoMessage() {}
  1490. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  1491. mi := &file_user_proto_msgTypes[27]
  1492. if protoimpl.UnsafeEnabled && x != nil {
  1493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1494. if ms.LoadMessageInfo() == nil {
  1495. ms.StoreMessageInfo(mi)
  1496. }
  1497. return ms
  1498. }
  1499. return mi.MessageOf(x)
  1500. }
  1501. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  1502. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  1503. return file_user_proto_rawDescGZIP(), []int{27}
  1504. }
  1505. func (x *ReplyScripRequest) GetScripId() int64 {
  1506. if x != nil {
  1507. return x.ScripId
  1508. }
  1509. return 0
  1510. }
  1511. func (x *ReplyScripRequest) GetMessage() *common.Message {
  1512. if x != nil && x.Message != nil {
  1513. return x.Message
  1514. }
  1515. return &common.Message{}
  1516. }
  1517. func (x *ReplyScripRequest) GetMsgType() string {
  1518. if x != nil {
  1519. return x.MsgType
  1520. }
  1521. return ""
  1522. }
  1523. type PersonLookScripRequest struct {
  1524. state protoimpl.MessageState
  1525. sizeCache protoimpl.SizeCache
  1526. unknownFields protoimpl.UnknownFields
  1527. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1528. }
  1529. func (x *PersonLookScripRequest) Reset() {
  1530. *x = PersonLookScripRequest{}
  1531. if protoimpl.UnsafeEnabled {
  1532. mi := &file_user_proto_msgTypes[28]
  1533. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1534. ms.StoreMessageInfo(mi)
  1535. }
  1536. }
  1537. func (x *PersonLookScripRequest) String() string {
  1538. return protoimpl.X.MessageStringOf(x)
  1539. }
  1540. func (*PersonLookScripRequest) ProtoMessage() {}
  1541. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  1542. mi := &file_user_proto_msgTypes[28]
  1543. if protoimpl.UnsafeEnabled && x != nil {
  1544. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1545. if ms.LoadMessageInfo() == nil {
  1546. ms.StoreMessageInfo(mi)
  1547. }
  1548. return ms
  1549. }
  1550. return mi.MessageOf(x)
  1551. }
  1552. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  1553. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  1554. return file_user_proto_rawDescGZIP(), []int{28}
  1555. }
  1556. func (x *PersonLookScripRequest) GetScripId() int64 {
  1557. if x != nil {
  1558. return x.ScripId
  1559. }
  1560. return 0
  1561. }
  1562. type UserFindScripRequest struct {
  1563. state protoimpl.MessageState
  1564. sizeCache protoimpl.SizeCache
  1565. unknownFields protoimpl.UnknownFields
  1566. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  1567. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  1568. }
  1569. func (x *UserFindScripRequest) Reset() {
  1570. *x = UserFindScripRequest{}
  1571. if protoimpl.UnsafeEnabled {
  1572. mi := &file_user_proto_msgTypes[29]
  1573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1574. ms.StoreMessageInfo(mi)
  1575. }
  1576. }
  1577. func (x *UserFindScripRequest) String() string {
  1578. return protoimpl.X.MessageStringOf(x)
  1579. }
  1580. func (*UserFindScripRequest) ProtoMessage() {}
  1581. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  1582. mi := &file_user_proto_msgTypes[29]
  1583. if protoimpl.UnsafeEnabled && x != nil {
  1584. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1585. if ms.LoadMessageInfo() == nil {
  1586. ms.StoreMessageInfo(mi)
  1587. }
  1588. return ms
  1589. }
  1590. return mi.MessageOf(x)
  1591. }
  1592. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  1593. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  1594. return file_user_proto_rawDescGZIP(), []int{29}
  1595. }
  1596. func (x *UserFindScripRequest) GetNextId() int64 {
  1597. if x != nil {
  1598. return x.NextId
  1599. }
  1600. return 0
  1601. }
  1602. func (x *UserFindScripRequest) GetOffset() int64 {
  1603. if x != nil {
  1604. return x.Offset
  1605. }
  1606. return 0
  1607. }
  1608. type DeleteScripRequest struct {
  1609. state protoimpl.MessageState
  1610. sizeCache protoimpl.SizeCache
  1611. unknownFields protoimpl.UnknownFields
  1612. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1613. }
  1614. func (x *DeleteScripRequest) Reset() {
  1615. *x = DeleteScripRequest{}
  1616. if protoimpl.UnsafeEnabled {
  1617. mi := &file_user_proto_msgTypes[30]
  1618. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1619. ms.StoreMessageInfo(mi)
  1620. }
  1621. }
  1622. func (x *DeleteScripRequest) String() string {
  1623. return protoimpl.X.MessageStringOf(x)
  1624. }
  1625. func (*DeleteScripRequest) ProtoMessage() {}
  1626. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  1627. mi := &file_user_proto_msgTypes[30]
  1628. if protoimpl.UnsafeEnabled && x != nil {
  1629. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1630. if ms.LoadMessageInfo() == nil {
  1631. ms.StoreMessageInfo(mi)
  1632. }
  1633. return ms
  1634. }
  1635. return mi.MessageOf(x)
  1636. }
  1637. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  1638. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  1639. return file_user_proto_rawDescGZIP(), []int{30}
  1640. }
  1641. func (x *DeleteScripRequest) GetScripId() int64 {
  1642. if x != nil {
  1643. return x.ScripId
  1644. }
  1645. return 0
  1646. }
  1647. type CreateScripRequest struct {
  1648. state protoimpl.MessageState
  1649. sizeCache protoimpl.SizeCache
  1650. unknownFields protoimpl.UnknownFields
  1651. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  1652. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  1653. }
  1654. func (x *CreateScripRequest) Reset() {
  1655. *x = CreateScripRequest{}
  1656. if protoimpl.UnsafeEnabled {
  1657. mi := &file_user_proto_msgTypes[31]
  1658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1659. ms.StoreMessageInfo(mi)
  1660. }
  1661. }
  1662. func (x *CreateScripRequest) String() string {
  1663. return protoimpl.X.MessageStringOf(x)
  1664. }
  1665. func (*CreateScripRequest) ProtoMessage() {}
  1666. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  1667. mi := &file_user_proto_msgTypes[31]
  1668. if protoimpl.UnsafeEnabled && x != nil {
  1669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1670. if ms.LoadMessageInfo() == nil {
  1671. ms.StoreMessageInfo(mi)
  1672. }
  1673. return ms
  1674. }
  1675. return mi.MessageOf(x)
  1676. }
  1677. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  1678. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  1679. return file_user_proto_rawDescGZIP(), []int{31}
  1680. }
  1681. func (x *CreateScripRequest) GetText() string {
  1682. if x != nil {
  1683. return x.Text
  1684. }
  1685. return ""
  1686. }
  1687. func (x *CreateScripRequest) GetPictureUrl() string {
  1688. if x != nil {
  1689. return x.PictureUrl
  1690. }
  1691. return ""
  1692. }
  1693. type FindMatchingAvatarAndNumReply struct {
  1694. state protoimpl.MessageState
  1695. sizeCache protoimpl.SizeCache
  1696. unknownFields protoimpl.UnknownFields
  1697. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  1698. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  1699. }
  1700. func (x *FindMatchingAvatarAndNumReply) Reset() {
  1701. *x = FindMatchingAvatarAndNumReply{}
  1702. if protoimpl.UnsafeEnabled {
  1703. mi := &file_user_proto_msgTypes[32]
  1704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1705. ms.StoreMessageInfo(mi)
  1706. }
  1707. }
  1708. func (x *FindMatchingAvatarAndNumReply) String() string {
  1709. return protoimpl.X.MessageStringOf(x)
  1710. }
  1711. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  1712. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  1713. mi := &file_user_proto_msgTypes[32]
  1714. if protoimpl.UnsafeEnabled && x != nil {
  1715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1716. if ms.LoadMessageInfo() == nil {
  1717. ms.StoreMessageInfo(mi)
  1718. }
  1719. return ms
  1720. }
  1721. return mi.MessageOf(x)
  1722. }
  1723. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  1724. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  1725. return file_user_proto_rawDescGZIP(), []int{32}
  1726. }
  1727. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  1728. if x != nil {
  1729. return x.Num
  1730. }
  1731. return 0
  1732. }
  1733. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  1734. if x != nil {
  1735. return x.List
  1736. }
  1737. return make([]string, 0)
  1738. }
  1739. type UserRechargeRequest struct {
  1740. state protoimpl.MessageState
  1741. sizeCache protoimpl.SizeCache
  1742. unknownFields protoimpl.UnknownFields
  1743. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  1744. }
  1745. func (x *UserRechargeRequest) Reset() {
  1746. *x = UserRechargeRequest{}
  1747. if protoimpl.UnsafeEnabled {
  1748. mi := &file_user_proto_msgTypes[33]
  1749. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1750. ms.StoreMessageInfo(mi)
  1751. }
  1752. }
  1753. func (x *UserRechargeRequest) String() string {
  1754. return protoimpl.X.MessageStringOf(x)
  1755. }
  1756. func (*UserRechargeRequest) ProtoMessage() {}
  1757. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  1758. mi := &file_user_proto_msgTypes[33]
  1759. if protoimpl.UnsafeEnabled && x != nil {
  1760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1761. if ms.LoadMessageInfo() == nil {
  1762. ms.StoreMessageInfo(mi)
  1763. }
  1764. return ms
  1765. }
  1766. return mi.MessageOf(x)
  1767. }
  1768. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  1769. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  1770. return file_user_proto_rawDescGZIP(), []int{33}
  1771. }
  1772. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  1773. if x != nil {
  1774. return x.RechargeTemplateId
  1775. }
  1776. return 0
  1777. }
  1778. type RechargeList struct {
  1779. state protoimpl.MessageState
  1780. sizeCache protoimpl.SizeCache
  1781. unknownFields protoimpl.UnknownFields
  1782. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1783. }
  1784. func (x *RechargeList) Reset() {
  1785. *x = RechargeList{}
  1786. if protoimpl.UnsafeEnabled {
  1787. mi := &file_user_proto_msgTypes[34]
  1788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1789. ms.StoreMessageInfo(mi)
  1790. }
  1791. }
  1792. func (x *RechargeList) String() string {
  1793. return protoimpl.X.MessageStringOf(x)
  1794. }
  1795. func (*RechargeList) ProtoMessage() {}
  1796. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1797. mi := &file_user_proto_msgTypes[34]
  1798. if protoimpl.UnsafeEnabled && x != nil {
  1799. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1800. if ms.LoadMessageInfo() == nil {
  1801. ms.StoreMessageInfo(mi)
  1802. }
  1803. return ms
  1804. }
  1805. return mi.MessageOf(x)
  1806. }
  1807. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1808. func (*RechargeList) Descriptor() ([]byte, []int) {
  1809. return file_user_proto_rawDescGZIP(), []int{34}
  1810. }
  1811. func (x *RechargeList) GetList() []*RechargeInfo {
  1812. if x != nil {
  1813. return x.List
  1814. }
  1815. return make([]*RechargeInfo, 0)
  1816. }
  1817. type VipRechargeList struct {
  1818. state protoimpl.MessageState
  1819. sizeCache protoimpl.SizeCache
  1820. unknownFields protoimpl.UnknownFields
  1821. List []*VipRechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1822. }
  1823. func (x *VipRechargeList) Reset() {
  1824. *x = VipRechargeList{}
  1825. if protoimpl.UnsafeEnabled {
  1826. mi := &file_user_proto_msgTypes[35]
  1827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1828. ms.StoreMessageInfo(mi)
  1829. }
  1830. }
  1831. func (x *VipRechargeList) String() string {
  1832. return protoimpl.X.MessageStringOf(x)
  1833. }
  1834. func (*VipRechargeList) ProtoMessage() {}
  1835. func (x *VipRechargeList) ProtoReflect() protoreflect.Message {
  1836. mi := &file_user_proto_msgTypes[35]
  1837. if protoimpl.UnsafeEnabled && x != nil {
  1838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1839. if ms.LoadMessageInfo() == nil {
  1840. ms.StoreMessageInfo(mi)
  1841. }
  1842. return ms
  1843. }
  1844. return mi.MessageOf(x)
  1845. }
  1846. // Deprecated: Use VipRechargeList.ProtoReflect.Descriptor instead.
  1847. func (*VipRechargeList) Descriptor() ([]byte, []int) {
  1848. return file_user_proto_rawDescGZIP(), []int{35}
  1849. }
  1850. func (x *VipRechargeList) GetList() []*VipRechargeInfo {
  1851. if x != nil {
  1852. return x.List
  1853. }
  1854. return make([]*VipRechargeInfo, 0)
  1855. }
  1856. type VipRechargeInfo struct {
  1857. state protoimpl.MessageState
  1858. sizeCache protoimpl.SizeCache
  1859. unknownFields protoimpl.UnknownFields
  1860. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1861. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label"` // 标题
  1862. Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"` // 价格
  1863. OriginPrice int64 `protobuf:"varint,4,opt,name=originPrice,proto3" json:"originPrice"` // 原价
  1864. AveragePerDayPrice int64 `protobuf:"varint,5,opt,name=averagePerDayPrice,proto3" json:"averagePerDayPrice"` // 日常价格
  1865. AdditionalCoin int64 `protobuf:"varint,6,opt,name=additionalCoin,proto3" json:"additionalCoin"` // 赠送的积分
  1866. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` // 描述
  1867. }
  1868. func (x *VipRechargeInfo) Reset() {
  1869. *x = VipRechargeInfo{}
  1870. if protoimpl.UnsafeEnabled {
  1871. mi := &file_user_proto_msgTypes[36]
  1872. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1873. ms.StoreMessageInfo(mi)
  1874. }
  1875. }
  1876. func (x *VipRechargeInfo) String() string {
  1877. return protoimpl.X.MessageStringOf(x)
  1878. }
  1879. func (*VipRechargeInfo) ProtoMessage() {}
  1880. func (x *VipRechargeInfo) ProtoReflect() protoreflect.Message {
  1881. mi := &file_user_proto_msgTypes[36]
  1882. if protoimpl.UnsafeEnabled && x != nil {
  1883. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1884. if ms.LoadMessageInfo() == nil {
  1885. ms.StoreMessageInfo(mi)
  1886. }
  1887. return ms
  1888. }
  1889. return mi.MessageOf(x)
  1890. }
  1891. // Deprecated: Use VipRechargeInfo.ProtoReflect.Descriptor instead.
  1892. func (*VipRechargeInfo) Descriptor() ([]byte, []int) {
  1893. return file_user_proto_rawDescGZIP(), []int{36}
  1894. }
  1895. func (x *VipRechargeInfo) GetId() int64 {
  1896. if x != nil {
  1897. return x.Id
  1898. }
  1899. return 0
  1900. }
  1901. func (x *VipRechargeInfo) GetLabel() string {
  1902. if x != nil {
  1903. return x.Label
  1904. }
  1905. return ""
  1906. }
  1907. func (x *VipRechargeInfo) GetPrice() int64 {
  1908. if x != nil {
  1909. return x.Price
  1910. }
  1911. return 0
  1912. }
  1913. func (x *VipRechargeInfo) GetOriginPrice() int64 {
  1914. if x != nil {
  1915. return x.OriginPrice
  1916. }
  1917. return 0
  1918. }
  1919. func (x *VipRechargeInfo) GetAveragePerDayPrice() int64 {
  1920. if x != nil {
  1921. return x.AveragePerDayPrice
  1922. }
  1923. return 0
  1924. }
  1925. func (x *VipRechargeInfo) GetAdditionalCoin() int64 {
  1926. if x != nil {
  1927. return x.AdditionalCoin
  1928. }
  1929. return 0
  1930. }
  1931. func (x *VipRechargeInfo) GetDescription() string {
  1932. if x != nil {
  1933. return x.Description
  1934. }
  1935. return ""
  1936. }
  1937. type RechargeInfo struct {
  1938. state protoimpl.MessageState
  1939. sizeCache protoimpl.SizeCache
  1940. unknownFields protoimpl.UnknownFields
  1941. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1942. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1943. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1944. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1945. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1946. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1947. }
  1948. func (x *RechargeInfo) Reset() {
  1949. *x = RechargeInfo{}
  1950. if protoimpl.UnsafeEnabled {
  1951. mi := &file_user_proto_msgTypes[37]
  1952. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1953. ms.StoreMessageInfo(mi)
  1954. }
  1955. }
  1956. func (x *RechargeInfo) String() string {
  1957. return protoimpl.X.MessageStringOf(x)
  1958. }
  1959. func (*RechargeInfo) ProtoMessage() {}
  1960. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  1961. mi := &file_user_proto_msgTypes[37]
  1962. if protoimpl.UnsafeEnabled && x != nil {
  1963. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1964. if ms.LoadMessageInfo() == nil {
  1965. ms.StoreMessageInfo(mi)
  1966. }
  1967. return ms
  1968. }
  1969. return mi.MessageOf(x)
  1970. }
  1971. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  1972. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  1973. return file_user_proto_rawDescGZIP(), []int{37}
  1974. }
  1975. func (x *RechargeInfo) GetId() int64 {
  1976. if x != nil {
  1977. return x.Id
  1978. }
  1979. return 0
  1980. }
  1981. func (x *RechargeInfo) GetPrice() int64 {
  1982. if x != nil {
  1983. return x.Price
  1984. }
  1985. return 0
  1986. }
  1987. func (x *RechargeInfo) GetCredit() int64 {
  1988. if x != nil {
  1989. return x.Credit
  1990. }
  1991. return 0
  1992. }
  1993. func (x *RechargeInfo) GetGiveCredit() int64 {
  1994. if x != nil {
  1995. return x.GiveCredit
  1996. }
  1997. return 0
  1998. }
  1999. func (x *RechargeInfo) GetDescription() string {
  2000. if x != nil {
  2001. return x.Description
  2002. }
  2003. return ""
  2004. }
  2005. func (x *RechargeInfo) GetTitle() string {
  2006. if x != nil {
  2007. return x.Title
  2008. }
  2009. return ""
  2010. }
  2011. type InformationStatus struct {
  2012. state protoimpl.MessageState
  2013. sizeCache protoimpl.SizeCache
  2014. unknownFields protoimpl.UnknownFields
  2015. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  2016. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  2017. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 奖励的金额
  2018. }
  2019. func (x *InformationStatus) Reset() {
  2020. *x = InformationStatus{}
  2021. if protoimpl.UnsafeEnabled {
  2022. mi := &file_user_proto_msgTypes[38]
  2023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2024. ms.StoreMessageInfo(mi)
  2025. }
  2026. }
  2027. func (x *InformationStatus) String() string {
  2028. return protoimpl.X.MessageStringOf(x)
  2029. }
  2030. func (*InformationStatus) ProtoMessage() {}
  2031. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  2032. mi := &file_user_proto_msgTypes[38]
  2033. if protoimpl.UnsafeEnabled && x != nil {
  2034. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2035. if ms.LoadMessageInfo() == nil {
  2036. ms.StoreMessageInfo(mi)
  2037. }
  2038. return ms
  2039. }
  2040. return mi.MessageOf(x)
  2041. }
  2042. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  2043. func (*InformationStatus) Descriptor() ([]byte, []int) {
  2044. return file_user_proto_rawDescGZIP(), []int{38}
  2045. }
  2046. func (x *InformationStatus) GetIsFinishInformation() bool {
  2047. if x != nil {
  2048. return x.IsFinishInformation
  2049. }
  2050. return false
  2051. }
  2052. func (x *InformationStatus) GetIsGetAward() bool {
  2053. if x != nil {
  2054. return x.IsGetAward
  2055. }
  2056. return false
  2057. }
  2058. func (x *InformationStatus) GetCredit() int64 {
  2059. if x != nil {
  2060. return x.Credit
  2061. }
  2062. return 0
  2063. }
  2064. type UserBalance struct {
  2065. state protoimpl.MessageState
  2066. sizeCache protoimpl.SizeCache
  2067. unknownFields protoimpl.UnknownFields
  2068. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2069. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  2070. }
  2071. func (x *UserBalance) Reset() {
  2072. *x = UserBalance{}
  2073. if protoimpl.UnsafeEnabled {
  2074. mi := &file_user_proto_msgTypes[39]
  2075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2076. ms.StoreMessageInfo(mi)
  2077. }
  2078. }
  2079. func (x *UserBalance) String() string {
  2080. return protoimpl.X.MessageStringOf(x)
  2081. }
  2082. func (*UserBalance) ProtoMessage() {}
  2083. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  2084. mi := &file_user_proto_msgTypes[39]
  2085. if protoimpl.UnsafeEnabled && x != nil {
  2086. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2087. if ms.LoadMessageInfo() == nil {
  2088. ms.StoreMessageInfo(mi)
  2089. }
  2090. return ms
  2091. }
  2092. return mi.MessageOf(x)
  2093. }
  2094. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  2095. func (*UserBalance) Descriptor() ([]byte, []int) {
  2096. return file_user_proto_rawDescGZIP(), []int{39}
  2097. }
  2098. func (x *UserBalance) GetId() string {
  2099. if x != nil {
  2100. return x.Id
  2101. }
  2102. return ""
  2103. }
  2104. func (x *UserBalance) GetCredit() int64 {
  2105. if x != nil {
  2106. return x.Credit
  2107. }
  2108. return 0
  2109. }
  2110. type UserFindChatListReply struct {
  2111. state protoimpl.MessageState
  2112. sizeCache protoimpl.SizeCache
  2113. unknownFields protoimpl.UnknownFields
  2114. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2115. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2116. }
  2117. func (x *UserFindChatListReply) Reset() {
  2118. *x = UserFindChatListReply{}
  2119. if protoimpl.UnsafeEnabled {
  2120. mi := &file_user_proto_msgTypes[40]
  2121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2122. ms.StoreMessageInfo(mi)
  2123. }
  2124. }
  2125. func (x *UserFindChatListReply) String() string {
  2126. return protoimpl.X.MessageStringOf(x)
  2127. }
  2128. func (*UserFindChatListReply) ProtoMessage() {}
  2129. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  2130. mi := &file_user_proto_msgTypes[40]
  2131. if protoimpl.UnsafeEnabled && x != nil {
  2132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2133. if ms.LoadMessageInfo() == nil {
  2134. ms.StoreMessageInfo(mi)
  2135. }
  2136. return ms
  2137. }
  2138. return mi.MessageOf(x)
  2139. }
  2140. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  2141. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  2142. return file_user_proto_rawDescGZIP(), []int{40}
  2143. }
  2144. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  2145. if x != nil {
  2146. return x.List
  2147. }
  2148. return make([]*UserChatInfo, 0)
  2149. }
  2150. func (x *UserFindChatListReply) GetNextId() int64 {
  2151. if x != nil {
  2152. return x.NextId
  2153. }
  2154. return 0
  2155. }
  2156. type UserChatInfo struct {
  2157. state protoimpl.MessageState
  2158. sizeCache protoimpl.SizeCache
  2159. unknownFields protoimpl.UnknownFields
  2160. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  2161. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  2162. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  2163. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  2164. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  2165. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  2166. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  2167. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2168. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  2169. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  2170. IsVip bool `protobuf:"varint,15,opt,name=isVip,proto3" json:"isVip"` // 是否是Vip
  2171. VipLevel int64 `protobuf:"varint,16,opt,name=vipLevel,proto3" json:"vipLevel"` // vip等级
  2172. IsYearVip bool `protobuf:"varint,17,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费Vip
  2173. VipFunctions []string `protobuf:"bytes,18,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  2174. }
  2175. func (x *UserChatInfo) Reset() {
  2176. *x = UserChatInfo{}
  2177. if protoimpl.UnsafeEnabled {
  2178. mi := &file_user_proto_msgTypes[41]
  2179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2180. ms.StoreMessageInfo(mi)
  2181. }
  2182. }
  2183. func (x *UserChatInfo) String() string {
  2184. return protoimpl.X.MessageStringOf(x)
  2185. }
  2186. func (*UserChatInfo) ProtoMessage() {}
  2187. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  2188. mi := &file_user_proto_msgTypes[41]
  2189. if protoimpl.UnsafeEnabled && x != nil {
  2190. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2191. if ms.LoadMessageInfo() == nil {
  2192. ms.StoreMessageInfo(mi)
  2193. }
  2194. return ms
  2195. }
  2196. return mi.MessageOf(x)
  2197. }
  2198. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  2199. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  2200. return file_user_proto_rawDescGZIP(), []int{41}
  2201. }
  2202. func (x *UserChatInfo) GetPersonId() string {
  2203. if x != nil {
  2204. return x.PersonId
  2205. }
  2206. return ""
  2207. }
  2208. func (x *UserChatInfo) GetUnreadNum() int64 {
  2209. if x != nil {
  2210. return x.UnreadNum
  2211. }
  2212. return 0
  2213. }
  2214. func (x *UserChatInfo) GetLastContent() string {
  2215. if x != nil {
  2216. return x.LastContent
  2217. }
  2218. return ""
  2219. }
  2220. func (x *UserChatInfo) GetLastTime() int64 {
  2221. if x != nil {
  2222. return x.LastTime
  2223. }
  2224. return 0
  2225. }
  2226. func (x *UserChatInfo) GetLikeability() int64 {
  2227. if x != nil {
  2228. return x.Likeability
  2229. }
  2230. return 0
  2231. }
  2232. func (x *UserChatInfo) GetSex() int64 {
  2233. if x != nil {
  2234. return x.Sex
  2235. }
  2236. return 0
  2237. }
  2238. func (x *UserChatInfo) GetAvatarUrl() string {
  2239. if x != nil {
  2240. return x.AvatarUrl
  2241. }
  2242. return ""
  2243. }
  2244. func (x *UserChatInfo) GetNickname() string {
  2245. if x != nil {
  2246. return x.Nickname
  2247. }
  2248. return ""
  2249. }
  2250. func (x *UserChatInfo) GetAge() int64 {
  2251. if x != nil {
  2252. return x.Age
  2253. }
  2254. return 0
  2255. }
  2256. func (x *UserChatInfo) GetRoomId() int64 {
  2257. if x != nil {
  2258. return x.RoomId
  2259. }
  2260. return 0
  2261. }
  2262. func (x *UserChatInfo) GetIsVip() bool {
  2263. if x != nil {
  2264. return x.IsVip
  2265. }
  2266. return false
  2267. }
  2268. func (x *UserChatInfo) GetVipLevel() int64 {
  2269. if x != nil {
  2270. return x.VipLevel
  2271. }
  2272. return 0
  2273. }
  2274. func (x *UserChatInfo) GetIsYearVip() bool {
  2275. if x != nil {
  2276. return x.IsYearVip
  2277. }
  2278. return false
  2279. }
  2280. func (x *UserChatInfo) GetVipFunctions() []string {
  2281. if x != nil {
  2282. return x.VipFunctions
  2283. }
  2284. return make([]string, 0)
  2285. }
  2286. type UserInfo struct {
  2287. state protoimpl.MessageState
  2288. sizeCache protoimpl.SizeCache
  2289. unknownFields protoimpl.UnknownFields
  2290. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2291. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2292. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  2293. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  2294. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  2295. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  2296. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  2297. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  2298. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  2299. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  2300. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  2301. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  2302. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  2303. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  2304. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  2305. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  2306. UpdateNicknameNum int64 `protobuf:"varint,17,opt,name=UpdateNicknameNum,proto3" json:"UpdateNicknameNum"` // 今日更新昵称数
  2307. UpdateAvatarUrlNum int64 `protobuf:"varint,18,opt,name=UpdateAvatarUrlNum,proto3" json:"UpdateAvatarUrlNum"` // 今日更新头像数
  2308. UpdatePicturesNum int64 `protobuf:"varint,19,opt,name=UpdatePicturesNum,proto3" json:"UpdatePicturesNum"` // 今日更新相册数
  2309. UpdateSignatureNum int64 `protobuf:"varint,20,opt,name=UpdateSignatureNum,proto3" json:"UpdateSignatureNum"` // 今日更新签名数
  2310. }
  2311. func (x *UserInfo) Reset() {
  2312. *x = UserInfo{}
  2313. if protoimpl.UnsafeEnabled {
  2314. mi := &file_user_proto_msgTypes[42]
  2315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2316. ms.StoreMessageInfo(mi)
  2317. }
  2318. }
  2319. func (x *UserInfo) String() string {
  2320. return protoimpl.X.MessageStringOf(x)
  2321. }
  2322. func (*UserInfo) ProtoMessage() {}
  2323. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  2324. mi := &file_user_proto_msgTypes[42]
  2325. if protoimpl.UnsafeEnabled && x != nil {
  2326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2327. if ms.LoadMessageInfo() == nil {
  2328. ms.StoreMessageInfo(mi)
  2329. }
  2330. return ms
  2331. }
  2332. return mi.MessageOf(x)
  2333. }
  2334. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  2335. func (*UserInfo) Descriptor() ([]byte, []int) {
  2336. return file_user_proto_rawDescGZIP(), []int{42}
  2337. }
  2338. func (x *UserInfo) GetId() string {
  2339. if x != nil {
  2340. return x.Id
  2341. }
  2342. return ""
  2343. }
  2344. func (x *UserInfo) GetNickname() string {
  2345. if x != nil {
  2346. return x.Nickname
  2347. }
  2348. return ""
  2349. }
  2350. func (x *UserInfo) GetAvatarUrl() string {
  2351. if x != nil {
  2352. return x.AvatarUrl
  2353. }
  2354. return ""
  2355. }
  2356. func (x *UserInfo) GetAge() int64 {
  2357. if x != nil {
  2358. return x.Age
  2359. }
  2360. return 0
  2361. }
  2362. func (x *UserInfo) GetSex() int64 {
  2363. if x != nil {
  2364. return x.Sex
  2365. }
  2366. return 0
  2367. }
  2368. func (x *UserInfo) GetConstellation() string {
  2369. if x != nil {
  2370. return x.Constellation
  2371. }
  2372. return ""
  2373. }
  2374. func (x *UserInfo) GetCredit() int64 {
  2375. if x != nil {
  2376. return x.Credit
  2377. }
  2378. return 0
  2379. }
  2380. func (x *UserInfo) GetTagList() []int64 {
  2381. if x != nil {
  2382. return x.TagList
  2383. }
  2384. return make([]int64, 0)
  2385. }
  2386. func (x *UserInfo) GetSignature() string {
  2387. if x != nil {
  2388. return x.Signature
  2389. }
  2390. return ""
  2391. }
  2392. func (x *UserInfo) GetIntroduceVoice() string {
  2393. if x != nil {
  2394. return x.IntroduceVoice
  2395. }
  2396. return ""
  2397. }
  2398. func (x *UserInfo) GetProvince() string {
  2399. if x != nil {
  2400. return x.Province
  2401. }
  2402. return ""
  2403. }
  2404. func (x *UserInfo) GetCity() string {
  2405. if x != nil {
  2406. return x.City
  2407. }
  2408. return ""
  2409. }
  2410. func (x *UserInfo) GetArea() string {
  2411. if x != nil {
  2412. return x.Area
  2413. }
  2414. return ""
  2415. }
  2416. func (x *UserInfo) GetUserId() int64 {
  2417. if x != nil {
  2418. return x.UserId
  2419. }
  2420. return 0
  2421. }
  2422. func (x *UserInfo) GetIsBlack() bool {
  2423. if x != nil {
  2424. return x.IsBlack
  2425. }
  2426. return false
  2427. }
  2428. func (x *UserInfo) GetIsRegister() bool {
  2429. if x != nil {
  2430. return x.IsRegister
  2431. }
  2432. return false
  2433. }
  2434. func (x *UserInfo) GetUpdateNicknameNum() int64 {
  2435. if x != nil {
  2436. return x.UpdateNicknameNum
  2437. }
  2438. return 0
  2439. }
  2440. func (x *UserInfo) GetUpdateAvatarUrlNum() int64 {
  2441. if x != nil {
  2442. return x.UpdateAvatarUrlNum
  2443. }
  2444. return 0
  2445. }
  2446. func (x *UserInfo) GetUpdatePicturesNum() int64 {
  2447. if x != nil {
  2448. return x.UpdatePicturesNum
  2449. }
  2450. return 0
  2451. }
  2452. func (x *UserInfo) GetUpdateSignatureNum() int64 {
  2453. if x != nil {
  2454. return x.UpdateSignatureNum
  2455. }
  2456. return 0
  2457. }
  2458. type KeyRequest struct {
  2459. state protoimpl.MessageState
  2460. sizeCache protoimpl.SizeCache
  2461. unknownFields protoimpl.UnknownFields
  2462. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  2463. }
  2464. func (x *KeyRequest) Reset() {
  2465. *x = KeyRequest{}
  2466. if protoimpl.UnsafeEnabled {
  2467. mi := &file_user_proto_msgTypes[43]
  2468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2469. ms.StoreMessageInfo(mi)
  2470. }
  2471. }
  2472. func (x *KeyRequest) String() string {
  2473. return protoimpl.X.MessageStringOf(x)
  2474. }
  2475. func (*KeyRequest) ProtoMessage() {}
  2476. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  2477. mi := &file_user_proto_msgTypes[43]
  2478. if protoimpl.UnsafeEnabled && x != nil {
  2479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2480. if ms.LoadMessageInfo() == nil {
  2481. ms.StoreMessageInfo(mi)
  2482. }
  2483. return ms
  2484. }
  2485. return mi.MessageOf(x)
  2486. }
  2487. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  2488. func (*KeyRequest) Descriptor() ([]byte, []int) {
  2489. return file_user_proto_rawDescGZIP(), []int{43}
  2490. }
  2491. func (x *KeyRequest) GetKey() string {
  2492. if x != nil {
  2493. return x.Key
  2494. }
  2495. return ""
  2496. }
  2497. type CreatePayRequest struct {
  2498. state protoimpl.MessageState
  2499. sizeCache protoimpl.SizeCache
  2500. unknownFields protoimpl.UnknownFields
  2501. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  2502. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2503. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  2504. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  2505. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  2506. }
  2507. func (x *CreatePayRequest) Reset() {
  2508. *x = CreatePayRequest{}
  2509. if protoimpl.UnsafeEnabled {
  2510. mi := &file_user_proto_msgTypes[44]
  2511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2512. ms.StoreMessageInfo(mi)
  2513. }
  2514. }
  2515. func (x *CreatePayRequest) String() string {
  2516. return protoimpl.X.MessageStringOf(x)
  2517. }
  2518. func (*CreatePayRequest) ProtoMessage() {}
  2519. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  2520. mi := &file_user_proto_msgTypes[44]
  2521. if protoimpl.UnsafeEnabled && x != nil {
  2522. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2523. if ms.LoadMessageInfo() == nil {
  2524. ms.StoreMessageInfo(mi)
  2525. }
  2526. return ms
  2527. }
  2528. return mi.MessageOf(x)
  2529. }
  2530. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  2531. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  2532. return file_user_proto_rawDescGZIP(), []int{44}
  2533. }
  2534. func (x *CreatePayRequest) GetMoney() int64 {
  2535. if x != nil {
  2536. return x.Money
  2537. }
  2538. return 0
  2539. }
  2540. func (x *CreatePayRequest) GetType() string {
  2541. if x != nil {
  2542. return x.Type
  2543. }
  2544. return ""
  2545. }
  2546. func (x *CreatePayRequest) GetOpenId() string {
  2547. if x != nil {
  2548. return x.OpenId
  2549. }
  2550. return ""
  2551. }
  2552. func (x *CreatePayRequest) GetDescription() string {
  2553. if x != nil {
  2554. return x.Description
  2555. }
  2556. return ""
  2557. }
  2558. func (x *CreatePayRequest) GetAttach() string {
  2559. if x != nil {
  2560. return x.Attach
  2561. }
  2562. return ""
  2563. }
  2564. type PayInfo struct {
  2565. state protoimpl.MessageState
  2566. sizeCache protoimpl.SizeCache
  2567. unknownFields protoimpl.UnknownFields
  2568. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  2569. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  2570. }
  2571. func (x *PayInfo) Reset() {
  2572. *x = PayInfo{}
  2573. if protoimpl.UnsafeEnabled {
  2574. mi := &file_user_proto_msgTypes[45]
  2575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2576. ms.StoreMessageInfo(mi)
  2577. }
  2578. }
  2579. func (x *PayInfo) String() string {
  2580. return protoimpl.X.MessageStringOf(x)
  2581. }
  2582. func (*PayInfo) ProtoMessage() {}
  2583. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  2584. mi := &file_user_proto_msgTypes[45]
  2585. if protoimpl.UnsafeEnabled && x != nil {
  2586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2587. if ms.LoadMessageInfo() == nil {
  2588. ms.StoreMessageInfo(mi)
  2589. }
  2590. return ms
  2591. }
  2592. return mi.MessageOf(x)
  2593. }
  2594. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  2595. func (*PayInfo) Descriptor() ([]byte, []int) {
  2596. return file_user_proto_rawDescGZIP(), []int{45}
  2597. }
  2598. func (x *PayInfo) GetPayInfo() *structpb.Value {
  2599. if x != nil && x.PayInfo != nil {
  2600. return x.PayInfo
  2601. }
  2602. return &structpb.Value{}
  2603. }
  2604. func (x *PayInfo) GetOrderId() int64 {
  2605. if x != nil {
  2606. return x.OrderId
  2607. }
  2608. return 0
  2609. }
  2610. type PayOrderInfo struct {
  2611. state protoimpl.MessageState
  2612. sizeCache protoimpl.SizeCache
  2613. unknownFields protoimpl.UnknownFields
  2614. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  2615. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  2616. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  2617. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  2618. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  2619. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  2620. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  2621. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  2622. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  2623. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  2624. }
  2625. func (x *PayOrderInfo) Reset() {
  2626. *x = PayOrderInfo{}
  2627. if protoimpl.UnsafeEnabled {
  2628. mi := &file_user_proto_msgTypes[46]
  2629. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2630. ms.StoreMessageInfo(mi)
  2631. }
  2632. }
  2633. func (x *PayOrderInfo) String() string {
  2634. return protoimpl.X.MessageStringOf(x)
  2635. }
  2636. func (*PayOrderInfo) ProtoMessage() {}
  2637. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  2638. mi := &file_user_proto_msgTypes[46]
  2639. if protoimpl.UnsafeEnabled && x != nil {
  2640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2641. if ms.LoadMessageInfo() == nil {
  2642. ms.StoreMessageInfo(mi)
  2643. }
  2644. return ms
  2645. }
  2646. return mi.MessageOf(x)
  2647. }
  2648. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  2649. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  2650. return file_user_proto_rawDescGZIP(), []int{46}
  2651. }
  2652. func (x *PayOrderInfo) GetUserID() string {
  2653. if x != nil {
  2654. return x.UserID
  2655. }
  2656. return ""
  2657. }
  2658. func (x *PayOrderInfo) GetOrderID() int64 {
  2659. if x != nil {
  2660. return x.OrderID
  2661. }
  2662. return 0
  2663. }
  2664. func (x *PayOrderInfo) GetMoney() int64 {
  2665. if x != nil {
  2666. return x.Money
  2667. }
  2668. return 0
  2669. }
  2670. func (x *PayOrderInfo) GetType() string {
  2671. if x != nil {
  2672. return x.Type
  2673. }
  2674. return ""
  2675. }
  2676. func (x *PayOrderInfo) GetTransactionID() string {
  2677. if x != nil {
  2678. return x.TransactionID
  2679. }
  2680. return ""
  2681. }
  2682. func (x *PayOrderInfo) GetOpenId() string {
  2683. if x != nil {
  2684. return x.OpenId
  2685. }
  2686. return ""
  2687. }
  2688. func (x *PayOrderInfo) GetDescription() string {
  2689. if x != nil {
  2690. return x.Description
  2691. }
  2692. return ""
  2693. }
  2694. func (x *PayOrderInfo) GetStatus() string {
  2695. if x != nil {
  2696. return x.Status
  2697. }
  2698. return ""
  2699. }
  2700. func (x *PayOrderInfo) GetPayTime() int64 {
  2701. if x != nil {
  2702. return x.PayTime
  2703. }
  2704. return 0
  2705. }
  2706. func (x *PayOrderInfo) GetCreateTime() int64 {
  2707. if x != nil {
  2708. return x.CreateTime
  2709. }
  2710. return 0
  2711. }
  2712. type PayOrderList struct {
  2713. state protoimpl.MessageState
  2714. sizeCache protoimpl.SizeCache
  2715. unknownFields protoimpl.UnknownFields
  2716. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2717. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2718. }
  2719. func (x *PayOrderList) Reset() {
  2720. *x = PayOrderList{}
  2721. if protoimpl.UnsafeEnabled {
  2722. mi := &file_user_proto_msgTypes[47]
  2723. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2724. ms.StoreMessageInfo(mi)
  2725. }
  2726. }
  2727. func (x *PayOrderList) String() string {
  2728. return protoimpl.X.MessageStringOf(x)
  2729. }
  2730. func (*PayOrderList) ProtoMessage() {}
  2731. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  2732. mi := &file_user_proto_msgTypes[47]
  2733. if protoimpl.UnsafeEnabled && x != nil {
  2734. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2735. if ms.LoadMessageInfo() == nil {
  2736. ms.StoreMessageInfo(mi)
  2737. }
  2738. return ms
  2739. }
  2740. return mi.MessageOf(x)
  2741. }
  2742. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  2743. func (*PayOrderList) Descriptor() ([]byte, []int) {
  2744. return file_user_proto_rawDescGZIP(), []int{47}
  2745. }
  2746. func (x *PayOrderList) GetList() []*PayOrderInfo {
  2747. if x != nil {
  2748. return x.List
  2749. }
  2750. return make([]*PayOrderInfo, 0)
  2751. }
  2752. func (x *PayOrderList) GetNextId() int64 {
  2753. if x != nil {
  2754. return x.NextId
  2755. }
  2756. return 0
  2757. }
  2758. type FindPayOrderListRequest struct {
  2759. state protoimpl.MessageState
  2760. sizeCache protoimpl.SizeCache
  2761. unknownFields protoimpl.UnknownFields
  2762. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2763. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2764. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  2765. }
  2766. func (x *FindPayOrderListRequest) Reset() {
  2767. *x = FindPayOrderListRequest{}
  2768. if protoimpl.UnsafeEnabled {
  2769. mi := &file_user_proto_msgTypes[48]
  2770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2771. ms.StoreMessageInfo(mi)
  2772. }
  2773. }
  2774. func (x *FindPayOrderListRequest) String() string {
  2775. return protoimpl.X.MessageStringOf(x)
  2776. }
  2777. func (*FindPayOrderListRequest) ProtoMessage() {}
  2778. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  2779. mi := &file_user_proto_msgTypes[48]
  2780. if protoimpl.UnsafeEnabled && x != nil {
  2781. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2782. if ms.LoadMessageInfo() == nil {
  2783. ms.StoreMessageInfo(mi)
  2784. }
  2785. return ms
  2786. }
  2787. return mi.MessageOf(x)
  2788. }
  2789. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  2790. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  2791. return file_user_proto_rawDescGZIP(), []int{48}
  2792. }
  2793. func (x *FindPayOrderListRequest) GetNextId() int64 {
  2794. if x != nil {
  2795. return x.NextId
  2796. }
  2797. return 0
  2798. }
  2799. func (x *FindPayOrderListRequest) GetOffset() int64 {
  2800. if x != nil {
  2801. return x.Offset
  2802. }
  2803. return 0
  2804. }
  2805. func (x *FindPayOrderListRequest) GetStatus() string {
  2806. if x != nil {
  2807. return x.Status
  2808. }
  2809. return ""
  2810. }
  2811. type PayCallbackReply struct {
  2812. state protoimpl.MessageState
  2813. sizeCache protoimpl.SizeCache
  2814. unknownFields protoimpl.UnknownFields
  2815. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  2816. }
  2817. func (x *PayCallbackReply) Reset() {
  2818. *x = PayCallbackReply{}
  2819. if protoimpl.UnsafeEnabled {
  2820. mi := &file_user_proto_msgTypes[49]
  2821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2822. ms.StoreMessageInfo(mi)
  2823. }
  2824. }
  2825. func (x *PayCallbackReply) String() string {
  2826. return protoimpl.X.MessageStringOf(x)
  2827. }
  2828. func (*PayCallbackReply) ProtoMessage() {}
  2829. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  2830. mi := &file_user_proto_msgTypes[49]
  2831. if protoimpl.UnsafeEnabled && x != nil {
  2832. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2833. if ms.LoadMessageInfo() == nil {
  2834. ms.StoreMessageInfo(mi)
  2835. }
  2836. return ms
  2837. }
  2838. return mi.MessageOf(x)
  2839. }
  2840. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  2841. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  2842. return file_user_proto_rawDescGZIP(), []int{49}
  2843. }
  2844. func (x *PayCallbackReply) GetResult() []byte {
  2845. if x != nil {
  2846. return x.Result
  2847. }
  2848. return make([]byte, 0)
  2849. }
  2850. var File_user_proto protoreflect.FileDescriptor
  2851. var file_user_proto_rawDesc = []byte{
  2852. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  2853. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  2854. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  2855. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  2856. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2857. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2858. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  2859. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  2860. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2861. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  2862. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  2863. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xae,
  2864. 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65,
  2865. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2866. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x3e, 0x0a,
  2867. 0x1a, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2868. 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
  2869. 0x03, 0x52, 0x1a, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65,
  2870. 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x40, 0x0a,
  2871. 0x1b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f,
  2872. 0x72, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01,
  2873. 0x28, 0x03, 0x52, 0x1b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x56, 0x69, 0x73,
  2874. 0x69, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x22,
  2875. 0x6f, 0x0a, 0x21, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e,
  2876. 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71,
  2877. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  2878. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x14,
  2879. 0x6c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  2880. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x14, 0x6c, 0x61, 0x73, 0x74,
  2881. 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  2882. 0x22, 0x65, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53,
  2883. 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x43,
  2884. 0x6c, 0x6f, 0x73, 0x65, 0x47, 0x72, 0x65, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
  2885. 0x0c, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x47, 0x72, 0x65, 0x65, 0x74, 0x12, 0x28, 0x0a,
  2886. 0x0f, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  2887. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x4d,
  2888. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x22, 0x43, 0x0a, 0x19, 0x49, 0x73, 0x43, 0x61, 0x6e,
  2889. 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x52,
  2890. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74,
  2891. 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73,
  2892. 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x8c, 0x01, 0x0a,
  2893. 0x18, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  2894. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  2895. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  2896. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  2897. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
  2898. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6d,
  2899. 0x61, 0x78, 0x41, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78,
  2900. 0x41, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18, 0x0a, 0x20,
  2901. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x22, 0xb3, 0x02, 0x0a, 0x1c,
  2902. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f,
  2903. 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x5f, 0x0a, 0x0d,
  2904. 0x69, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20,
  2905. 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d,
  2906. 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75,
  2907. 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x73, 0x4d, 0x61,
  2908. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d,
  2909. 0x69, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x12, 0x1a, 0x0a,
  2910. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2911. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  2912. 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a,
  2913. 0x06, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d,
  2914. 0x61, 0x78, 0x41, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18,
  2915. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x12, 0x10, 0x0a,
  2916. 0x03, 0x73, 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x1a,
  2917. 0x40, 0x0a, 0x12, 0x49, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70,
  2918. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  2919. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2920. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2921. 0x01, 0x22, 0x4f, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b,
  2922. 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2923. 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e,
  2924. 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2925. 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69,
  2926. 0x73, 0x74, 0x22, 0xac, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56,
  2927. 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a,
  2928. 0x06, 0x76, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e,
  2929. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65,
  2930. 0x72, 0x56, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e,
  2931. 0x56, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x76, 0x69, 0x70,
  2932. 0x4d, 0x61, 0x70, 0x1a, 0x4c, 0x0a, 0x0b, 0x56, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74,
  2933. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2934. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x27, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  2935. 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56,
  2936. 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2937. 0x01, 0x22, 0xa1, 0x02, 0x0a, 0x07, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a,
  2938. 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73,
  2939. 0x56, 0x69, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18,
  2940. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12,
  2941. 0x20, 0x0a, 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03,
  2942. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75,
  2943. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65,
  2944. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54,
  2945. 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2946. 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70,
  2947. 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  2948. 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  2949. 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x69,
  2950. 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09,
  2951. 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x70,
  2952. 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52,
  2953. 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x0a,
  2954. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  2955. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x64, 0x0a, 0x1a, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67,
  2956. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75,
  2957. 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18,
  2958. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12,
  2959. 0x16, 0x0a, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
  2960. 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  2961. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x6e, 0x0a, 0x28, 0x55,
  2962. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2963. 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
  2964. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  2965. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  2966. 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2967. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18,
  2968. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x22, 0x42, 0x0a, 0x26, 0x55,
  2969. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2970. 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
  2971. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72,
  2972. 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22,
  2973. 0x56, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  2974. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  2975. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  2976. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  2977. 0x16, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2978. 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x4c, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6f, 0x72,
  2979. 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2980. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20,
  2981. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a,
  2982. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72,
  2983. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x99, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65,
  2984. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  2985. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f,
  2986. 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2987. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2988. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73,
  2989. 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03,
  2990. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a,
  2991. 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20,
  2992. 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61,
  2993. 0x67, 0x22, 0x90, 0x01, 0x0a, 0x28, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  2994. 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  2995. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
  2996. 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61,
  2997. 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02,
  2998. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x0e,
  2999. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  3000. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  3001. 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  3002. 0x03, 0x73, 0x65, 0x78, 0x22, 0x64, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  3003. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52,
  3004. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3005. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3006. 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3007. 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20,
  3008. 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x5b, 0x0a, 0x21, 0x4d, 0x61,
  3009. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61,
  3010. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  3011. 0x18, 0x0a, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  3012. 0x52, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x50,
  3013. 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x6e,
  3014. 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x22, 0x3f, 0x0a, 0x23, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3015. 0x65, 0x72, 0x52, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c,
  3016. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  3017. 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  3018. 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x22, 0x4b, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x52,
  3019. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65,
  3020. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01,
  3021. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f,
  3022. 0x6e, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73,
  3023. 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63,
  3024. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
  3025. 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03,
  3026. 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10,
  3027. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  3028. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  3029. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x21,
  3030. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67,
  3031. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c,
  3032. 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73,
  3033. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3034. 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xc7, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3035. 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e,
  3036. 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65,
  3037. 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63,
  3038. 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f,
  3039. 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  3040. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3041. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61,
  3042. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76,
  3043. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04,
  3044. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65,
  3045. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  3046. 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22,
  3047. 0xec, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67,
  3048. 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70,
  3049. 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  3050. 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3051. 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03,
  3052. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a, 0x0d,
  3053. 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20,
  3054. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74,
  3055. 0x75, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68,
  3056. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64,
  3057. 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03,
  3058. 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x1a,
  3059. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  3060. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  3061. 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0x35,
  3062. 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63,
  3063. 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  3064. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  3065. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67,
  3066. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3067. 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e,
  3068. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e,
  3069. 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x7d, 0x0a, 0x0b, 0x55, 0x73, 0x65,
  3070. 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x6c,
  3071. 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3072. 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x26,
  3073. 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d,
  3074. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63,
  3075. 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69,
  3076. 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x61, 0x74,
  3077. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c,
  3078. 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a,
  3079. 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  3080. 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  3081. 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3082. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d,
  3083. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70,
  3084. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  3085. 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63,
  3086. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63,
  3087. 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72,
  3088. 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  3089. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  3090. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
  3091. 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  3092. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x2e, 0x0a, 0x12,
  3093. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  3094. 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20,
  3095. 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x12,
  3096. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  3097. 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3098. 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  3099. 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74,
  3100. 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61,
  3101. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e,
  3102. 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01,
  3103. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3104. 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x45, 0x0a,
  3105. 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71,
  3106. 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  3107. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3108. 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  3109. 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  3110. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  3111. 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65,
  3112. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3113. 0x22, 0x40, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c,
  3114. 0x69, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  3115. 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70,
  3116. 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
  3117. 0x73, 0x74, 0x22, 0xe9, 0x01, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  3118. 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3119. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18,
  3120. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x14, 0x0a, 0x05,
  3121. 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69,
  3122. 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63,
  3123. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50,
  3124. 0x72, 0x69, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50,
  3125. 0x65, 0x72, 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  3126. 0x52, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x50,
  3127. 0x72, 0x69, 0x63, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  3128. 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x64,
  3129. 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e, 0x12, 0x20, 0x0a, 0x0b,
  3130. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  3131. 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa4,
  3132. 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3133. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  3134. 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  3135. 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  3136. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a,
  3137. 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  3138. 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a,
  3139. 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
  3140. 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  3141. 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  3142. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x7d, 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  3143. 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73,
  3144. 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3145. 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73,
  3146. 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a,
  3147. 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
  3148. 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06,
  3149. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72,
  3150. 0x65, 0x64, 0x69, 0x74, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61,
  3151. 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3152. 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20,
  3153. 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15, 0x55,
  3154. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3155. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  3156. 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3157. 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3158. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3159. 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x92, 0x03, 0x0a, 0x0c, 0x55, 0x73, 0x65,
  3160. 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  3161. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  3162. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e,
  3163. 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64,
  3164. 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65,
  3165. 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f,
  3166. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d,
  3167. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d,
  3168. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  3169. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c,
  3170. 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03,
  3171. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  3172. 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  3173. 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  3174. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  3175. 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67,
  3176. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28,
  3177. 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x56,
  3178. 0x69, 0x70, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x12,
  3179. 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28,
  3180. 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x69,
  3181. 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09,
  3182. 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x70,
  3183. 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x09, 0x52,
  3184. 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xe8, 0x04,
  3185. 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  3186. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  3187. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  3188. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  3189. 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  3190. 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  3191. 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20,
  3192. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  3193. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  3194. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16,
  3195. 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3196. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73,
  3197. 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  3198. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20,
  3199. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26,
  3200. 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  3201. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  3202. 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e,
  3203. 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e,
  3204. 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
  3205. 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d,
  3206. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  3207. 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  3208. 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20,
  3209. 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a,
  3210. 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08,
  3211. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11,
  3212. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75,
  3213. 0x6d, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e,
  3214. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70,
  3215. 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d,
  3216. 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76,
  3217. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70,
  3218. 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x18,
  3219. 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63,
  3220. 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61,
  3221. 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x14,
  3222. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e,
  3223. 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52,
  3224. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  3225. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65,
  3226. 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a,
  3227. 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f,
  3228. 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3229. 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49,
  3230. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12,
  3231. 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04,
  3232. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  3233. 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28,
  3234. 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79,
  3235. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18,
  3236. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3237. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70,
  3238. 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49,
  3239. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64,
  3240. 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66,
  3241. 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28,
  3242. 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64,
  3243. 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65,
  3244. 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01,
  3245. 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70,
  3246. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a,
  3247. 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05,
  3248. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
  3249. 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20,
  3250. 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64,
  3251. 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  3252. 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a,
  3253. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
  3254. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65,
  3255. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12,
  3256. 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20,
  3257. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22,
  3258. 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3259. 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e,
  3260. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65,
  3261. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  3262. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  3263. 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72,
  3264. 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  3265. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  3266. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  3267. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16,
  3268. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  3269. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c,
  3270. 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65,
  3271. 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75,
  3272. 0x6c, 0x74, 0x32, 0x9d, 0x68, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0b, 0x47,
  3273. 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3274. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3275. 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3276. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e,
  3277. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01,
  3278. 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f,
  3279. 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3280. 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
  3281. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3282. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3,
  3283. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3284. 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0e,
  3285. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21,
  3286. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63,
  3287. 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3288. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3289. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3290. 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64,
  3291. 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x15, 0x55, 0x70,
  3292. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  3293. 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3294. 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3295. 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3296. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3297. 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3298. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  3299. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x14, 0x43, 0x72,
  3300. 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x6f,
  3301. 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3302. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61,
  3303. 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52,
  3304. 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
  3305. 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61,
  3306. 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a, 0x0e, 0x47, 0x65,
  3307. 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67,
  3308. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3309. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3310. 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4,
  3311. 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62,
  3312. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65,
  3313. 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61,
  3314. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3315. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3316. 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4,
  3317. 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68,
  3318. 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65,
  3319. 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c,
  3320. 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3321. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d,
  3322. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b,
  3323. 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x18, 0x82,
  3324. 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3325. 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c,
  3326. 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3327. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  3328. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69,
  3329. 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b,
  3330. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93,
  3331. 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  3332. 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78,
  3333. 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3334. 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70,
  3335. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52,
  3336. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22,
  3337. 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63,
  3338. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64,
  3339. 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61,
  3340. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71,
  3341. 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61,
  3342. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  3343. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  3344. 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x46, 0x69, 0x6e,
  3345. 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70,
  3346. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67,
  3347. 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3348. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  3349. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3350. 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3351. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01,
  3352. 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e,
  3353. 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74,
  3354. 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  3355. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e,
  3356. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e,
  3357. 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25,
  3358. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3359. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68,
  3360. 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65,
  3361. 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
  3362. 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  3363. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f,
  3364. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69,
  3365. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3366. 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3367. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65,
  3368. 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x6c, 0x6f, 0x73,
  3369. 0x65, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3370. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  3371. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61,
  3372. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  3373. 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82,
  3374. 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3375. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x66, 0x72, 0x69, 0x65, 0x6e,
  3376. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  3377. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69,
  3378. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  3379. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3380. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  3381. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3382. 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69,
  3383. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72,
  3384. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  3385. 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3386. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  3387. 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70,
  3388. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  3389. 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61,
  3390. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f,
  3391. 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x55,
  3392. 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3393. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  3394. 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3395. 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10,
  3396. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65,
  3397. 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42,
  3398. 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3399. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14,
  3400. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65,
  3401. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61,
  3402. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d,
  3403. 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e,
  3404. 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69,
  3405. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  3406. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61,
  3407. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f,
  3408. 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22,
  3409. 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  3410. 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64,
  3411. 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3412. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e,
  3413. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
  3414. 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3415. 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e,
  3416. 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a,
  3417. 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d,
  3418. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3419. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64,
  3420. 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3421. 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22,
  3422. 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3423. 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61,
  3424. 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d,
  3425. 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3426. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3427. 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65,
  3428. 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4,
  3429. 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66,
  3430. 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01,
  3431. 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74,
  3432. 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3433. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x18, 0x2e,
  3434. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x43,
  3435. 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22,
  3436. 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  3437. 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43,
  3438. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e,
  3439. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3440. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3441. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3442. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3443. 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69,
  3444. 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
  3445. 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3446. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3447. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3448. 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70,
  3449. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5a,
  3450. 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61,
  3451. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3452. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3453. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82,
  3454. 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3455. 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x52, 0x65,
  3456. 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3457. 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75,
  3458. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3459. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4,
  3460. 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72,
  3461. 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e,
  3462. 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61,
  3463. 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3464. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70,
  3465. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65,
  3466. 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52,
  3467. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61,
  3468. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61,
  3469. 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x11, 0x55,
  3470. 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44,
  3471. 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70,
  3472. 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52,
  3473. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3474. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26,
  3475. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3476. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64,
  3477. 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  3478. 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3479. 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  3480. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3481. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
  3482. 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69,
  3483. 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b, 0x44,
  3484. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  3485. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  3486. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3487. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3488. 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3489. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
  3490. 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72,
  3491. 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3492. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  3493. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3494. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  3495. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63,
  3496. 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a,
  3497. 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72,
  3498. 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3499. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3500. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63,
  3501. 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f,
  3502. 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69,
  3503. 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12,
  3504. 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  3505. 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3506. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  3507. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3508. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82,
  3509. 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3510. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f,
  3511. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73,
  3512. 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x20, 0x2e, 0x61, 0x70,
  3513. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f,
  3514. 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3515. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3516. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f,
  3517. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c,
  3518. 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3519. 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e,
  3520. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3521. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3522. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3,
  3523. 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3524. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a,
  3525. 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c,
  3526. 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3527. 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  3528. 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3529. 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  3530. 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3531. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01,
  3532. 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43,
  3533. 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3534. 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  3535. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3536. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  3537. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64,
  3538. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55,
  3539. 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12,
  3540. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3541. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  3542. 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c,
  3543. 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3544. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64,
  3545. 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73,
  3546. 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17,
  3547. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  3548. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  3549. 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  3550. 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3551. 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12,
  3552. 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3553. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  3554. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61,
  3555. 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f,
  3556. 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3557. 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69,
  3558. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a,
  3559. 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c,
  3560. 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3561. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3562. 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  3563. 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73,
  3564. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14,
  3565. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c,
  3566. 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53,
  3567. 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70,
  3568. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52,
  3569. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3570. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e,
  3571. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3572. 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94,
  3573. 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74,
  3574. 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69,
  3575. 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3576. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e,
  3577. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73,
  3578. 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74,
  3579. 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3,
  3580. 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3581. 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68,
  3582. 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74,
  3583. 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e,
  3584. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75,
  3585. 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3586. 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3587. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f,
  3588. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f,
  3589. 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c,
  3590. 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73,
  3591. 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3592. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3593. 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  3594. 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  3595. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3,
  3596. 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3597. 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a,
  3598. 0x12, 0x69, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e,
  3599. 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3600. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69,
  3601. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b,
  3602. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3,
  3603. 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3604. 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55,
  3605. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  3606. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3607. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67,
  3608. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3609. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61,
  3610. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  3611. 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a,
  3612. 0x15, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3613. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3614. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b,
  3615. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3616. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4,
  3617. 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69,
  3618. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75,
  3619. 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49,
  3620. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12,
  3621. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3622. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3623. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3624. 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3625. 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61,
  3626. 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63,
  3627. 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70,
  3628. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  3629. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3630. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3,
  3631. 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3632. 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f,
  3633. 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d,
  3634. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  3635. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e,
  3636. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f,
  3637. 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3638. 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3639. 0x66, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x56,
  3640. 0x69, 0x70, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3641. 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3642. 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79,
  3643. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61,
  3644. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  3645. 0x2f, 0x76, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x52,
  3646. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3647. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3648. 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52,
  3649. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4,
  3650. 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72,
  3651. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3652. 0x70, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  3653. 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3654. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19,
  3655. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63,
  3656. 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3657. 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63,
  3658. 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
  3659. 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4c, 0x69, 0x73, 0x74,
  3660. 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  3661. 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  3662. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50,
  3663. 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x82, 0xd3, 0xe4,
  3664. 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70,
  3665. 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a, 0x17, 0x46, 0x69,
  3666. 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3667. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3668. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x24, 0x2e,
  3669. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  3670. 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3671. 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70,
  3672. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f,
  3673. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e,
  3674. 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41,
  3675. 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3676. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e,
  3677. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74,
  3678. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75,
  3679. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a,
  3680. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69,
  3681. 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a,
  3682. 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16,
  3683. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3684. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  3685. 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3,
  3686. 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3687. 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f, 0x67, 0x65, 0x74, 0x3a,
  3688. 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65,
  3689. 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3690. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61,
  3691. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65,
  3692. 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70,
  3693. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f, 0x6e, 0x75, 0x6d, 0x3a,
  3694. 0x01, 0x2a, 0x12, 0x7f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d,
  3695. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3696. 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63,
  3697. 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70,
  3698. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  3699. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82,
  3700. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3701. 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  3702. 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f, 0x69,
  3703. 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3704. 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3705. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3706. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f,
  3707. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f,
  3708. 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d, 0x55, 0x6e, 0x6c, 0x6f,
  3709. 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3710. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71,
  3711. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3712. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x82, 0xd3,
  3713. 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3714. 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x01,
  3715. 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
  3716. 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3717. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3718. 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3719. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3720. 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64,
  3721. 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12,
  3722. 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72,
  3723. 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3724. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74,
  3725. 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3726. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28,
  3727. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3728. 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x70, 0x61,
  3729. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0b, 0x53, 0x65, 0x6e, 0x64,
  3730. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3731. 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,
  3732. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3733. 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,
  3734. 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70,
  3735. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2f, 0x73,
  3736. 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x51, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x56, 0x69, 0x70,
  3737. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3738. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x11, 0x2e, 0x61,
  3739. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  3740. 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x69,
  3741. 0x70, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x10, 0x46, 0x69, 0x6e,
  3742. 0x64, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x16, 0x2e,
  3743. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3744. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3745. 0x6f, 0x6e, 0x2e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3746. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  3747. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63,
  3748. 0x6b, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7f, 0x0a, 0x16, 0x47, 0x65, 0x74,
  3749. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b,
  3750. 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3751. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x25, 0x2e, 0x61, 0x70,
  3752. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f,
  3753. 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70,
  3754. 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69,
  3755. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70,
  3756. 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x16, 0x53, 0x65,
  3757. 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63,
  3758. 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3759. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  3760. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3761. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22,
  3762. 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f,
  3763. 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x73, 0x65, 0x74,
  3764. 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x14, 0x49, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52,
  3765. 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3766. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3767. 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49,
  3768. 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77,
  3769. 0x6f, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23,
  3770. 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x74, 0x75,
  3771. 0x72, 0x6e, 0x2f, 0x72, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  3772. 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x65,
  3773. 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3774. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3775. 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3776. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93,
  3777. 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65,
  3778. 0x74, 0x75, 0x72, 0x6e, 0x2f, 0x72, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x67, 0x65, 0x74, 0x3a,
  3779. 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63,
  3780. 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3781. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  3782. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50,
  3783. 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f,
  3784. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3785. 0x73, 0x65, 0x72, 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x2f, 0x73, 0x74, 0x61, 0x74,
  3786. 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74,
  3787. 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x2e,
  3788. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69,
  3789. 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x16,
  3790. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3791. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  3792. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63,
  3793. 0x79, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8a, 0x01, 0x0a, 0x13, 0x4d, 0x61, 0x6e,
  3794. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3795. 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  3796. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  3797. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69,
  3798. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  3799. 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3800. 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  3801. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  3802. 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3803. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3804. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3805. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  3806. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  3807. 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3808. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3809. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93,
  3810. 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3811. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72,
  3812. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0xb2, 0x01, 0x0a, 0x21, 0x4d, 0x61,
  3813. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b,
  3814. 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3815. 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3816. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61,
  3817. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  3818. 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3819. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73,
  3820. 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x32, 0x22, 0x30, 0x82, 0xd3,
  3821. 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3822. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x73, 0x63,
  3823. 0x68, 0x65, 0x63, 0x6b, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x9d,
  3824. 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x69,
  3825. 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
  3826. 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  3827. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3828. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70,
  3829. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3830. 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3831. 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70,
  3832. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74,
  3833. 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xb0,
  3834. 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61,
  3835. 0x6e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
  3836. 0x74, 0x12, 0x31, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  3837. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e, 0x48, 0x61, 0x6e,
  3838. 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  3839. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3840. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e,
  3841. 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3842. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f,
  3843. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64,
  3844. 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
  3845. 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74,
  3846. 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x61,
  3847. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3848. 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
  3849. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3850. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3851. 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  3852. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75,
  3853. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x90, 0x01, 0x0a, 0x19, 0x4d,
  3854. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63,
  3855. 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3856. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74,
  3857. 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x52,
  3858. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3859. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d,
  3860. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  3861. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73,
  3862. 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01,
  3863. 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67,
  3864. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x61,
  3865. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d,
  3866. 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  3867. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3868. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3869. 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3870. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f,
  3871. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x92, 0x01, 0x0a, 0x1c,
  3872. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67,
  3873. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61,
  3874. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52,
  3875. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  3876. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3877. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3878. 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70,
  3879. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74,
  3880. 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x3a, 0x01, 0x2a,
  3881. 0x12, 0x80, 0x01, 0x0a, 0x1d, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b,
  3882. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4f,
  3883. 0x6e, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3884. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  3885. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3886. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f,
  3887. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c,
  3888. 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65,
  3889. 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65,
  3890. 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69,
  3891. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  3892. 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3893. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3,
  3894. 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3895. 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x6f,
  3896. 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3897. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
  3898. 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3899. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d,
  3900. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3901. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25,
  3902. 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71,
  3903. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65,
  3904. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x88, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3905. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65,
  3906. 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  3907. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3908. 0x6e, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3909. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3910. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f,
  3911. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3912. 0x2f, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  3913. 0x12, 0x91, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  3914. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e,
  3915. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  3916. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  3917. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  3918. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3919. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21,
  3920. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65,
  3921. 0x72, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74,
  3922. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3923. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74,
  3924. 0x75, 0x72, 0x65, 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3925. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65,
  3926. 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71,
  3927. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3928. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3,
  3929. 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3930. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
  3931. 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17,
  3932. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  3933. 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3934. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  3935. 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65,
  3936. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3937. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82,
  3938. 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  3939. 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f,
  3940. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x85, 0x01, 0x0a, 0x15, 0x4d, 0x61,
  3941. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e,
  3942. 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3943. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65,
  3944. 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  3945. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3946. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22,
  3947. 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73,
  3948. 0x65, 0x72, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01,
  3949. 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  3950. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x2c, 0x2e,
  3951. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3952. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x57, 0x65,
  3953. 0x69, 0x67, 0x68, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3954. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3955. 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70,
  3956. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x77,
  3957. 0x65, 0x69, 0x67, 0x68, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3958. 0x8c, 0x01, 0x0a, 0x18, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  3959. 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61,
  3960. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3961. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42,
  3962. 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3963. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3964. 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70,
  3965. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62,
  3966. 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x84,
  3967. 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3968. 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69,
  3969. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  3970. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71,
  3971. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3972. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3,
  3973. 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3974. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x2f, 0x61,
  3975. 0x64, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  3976. 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3977. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d,
  3978. 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3979. 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55,
  3980. 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3981. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c,
  3982. 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3983. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57,
  3984. 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69,
  3985. 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3986. 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72,
  3987. 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3988. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3989. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74,
  3990. 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69,
  3991. 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3992. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  3993. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3994. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x55, 0x73,
  3995. 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  3996. 0x49, 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3997. 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3998. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x82,
  3999. 0x01, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  4000. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x44,
  4001. 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  4002. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69,
  4003. 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71,
  4004. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  4005. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67,
  4006. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c,
  4007. 0x79, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42,
  4008. 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74,
  4009. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  4010. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x28, 0x2e, 0x61, 0x70,
  4011. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42,
  4012. 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74,
  4013. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x53, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67,
  4014. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x24, 0x2e, 0x61,
  4015. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52,
  4016. 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  4017. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  4018. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f,
  4019. 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63,
  4020. 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  4021. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  4022. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  4023. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61,
  4024. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65,
  4025. 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  4026. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  4027. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  4028. 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72,
  4029. 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17,
  4030. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  4031. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  4032. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12,
  4033. 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64, 0x69,
  4034. 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  4035. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  4036. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  4037. 0x74, 0x79, 0x12, 0x84, 0x01, 0x0a, 0x24, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  4038. 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65,
  4039. 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x25, 0x2e, 0x61, 0x70,
  4040. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  4041. 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65,
  4042. 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70,
  4043. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e,
  4044. 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d,
  4045. 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74,
  4046. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x12,
  4047. 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65,
  4048. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71,
  4049. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  4050. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0f,
  4051. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12,
  4052. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72,
  4053. 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4054. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  4055. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x0d, 0x41,
  4056. 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x2e, 0x61,
  4057. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43,
  4058. 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  4059. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  4060. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  4061. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44,
  4062. 0x42, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  4063. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1b, 0x2e, 0x61,
  4064. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  4065. 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x21,
  4066. 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  4067. 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
  4068. 0x79, 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  4069. 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
  4070. 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65,
  4071. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  4072. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  4073. 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69,
  4074. 0x74, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x11, 0x46, 0x69, 0x6e,
  4075. 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18,
  4076. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  4077. 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  4078. 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x4c,
  4079. 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x15,
  4080. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f,
  4081. 0x75, 0x74, 0x4d, 0x61, 0x70, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  4082. 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68,
  4083. 0x6f, 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e,
  4084. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  4085. 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  4086. 0x44, 0x42, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x69, 0x74, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  4087. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42,
  4088. 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  4089. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42,
  4090. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0b, 0x55, 0x70, 0x64,
  4091. 0x61, 0x74, 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  4092. 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x52,
  4093. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  4094. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  4095. 0x12, 0x63, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65,
  4096. 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2b,
  4097. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  4098. 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  4099. 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  4100. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  4101. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x17, 0x43, 0x72, 0x6f, 0x6e, 0x52, 0x65, 0x6d,
  4102. 0x6f, 0x76, 0x65, 0x45, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x70,
  4103. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  4104. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  4105. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  4106. 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01,
  4107. 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d,
  4108. 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  4109. 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65,
  4110. 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4111. }
  4112. var (
  4113. file_user_proto_rawDescOnce sync.Once
  4114. file_user_proto_rawDescData = file_user_proto_rawDesc
  4115. )
  4116. func file_user_proto_rawDescGZIP() []byte {
  4117. file_user_proto_rawDescOnce.Do(func() {
  4118. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  4119. })
  4120. return file_user_proto_rawDescData
  4121. }
  4122. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 52)
  4123. var file_user_proto_goTypes = []interface{}{
  4124. (*UpdateTodayRequest)(nil), // 0: api.user.UpdateTodayRequest
  4125. (*UpdateLastSendTemplateTimeRequest)(nil), // 1: api.user.UpdateLastSendTemplateTimeRequest
  4126. (*UserPrivacyStatusInfo)(nil), // 2: api.user.UserPrivacyStatusInfo
  4127. (*IsCanGetReturnRewordReply)(nil), // 3: api.user.IsCanGetReturnRewordReply
  4128. (*GetRandomMatchingRequest)(nil), // 4: api.user.GetRandomMatchingRequest
  4129. (*MatchUserDBWithoutMapRequest)(nil), // 5: api.user.MatchUserDBWithoutMapRequest
  4130. (*GetUserLookHandPickNumReply)(nil), // 6: api.user.GetUserLookHandPickNumReply
  4131. (*FindUserVipListDBReply)(nil), // 7: api.user.FindUserVipListDBReply
  4132. (*VipInfo)(nil), // 8: api.user.VipInfo
  4133. (*SendMsgReduceCreditRequest)(nil), // 9: api.user.SendMsgReduceCreditRequest
  4134. (*UserGetInformationAwardByActivityRequest)(nil), // 10: api.user.UserGetInformationAwardByActivityRequest
  4135. (*UserGetInformationAwardByActivityReply)(nil), // 11: api.user.UserGetInformationAwardByActivityReply
  4136. (*AddUserCreditRequest)(nil), // 12: api.user.AddUserCreditRequest
  4137. (*ReportUserBlackRequest)(nil), // 13: api.user.ReportUserBlackRequest
  4138. (*SendMessageRequest)(nil), // 14: api.user.SendMessageRequest
  4139. (*ManagerFindIsCheckQualityUserListRequest)(nil), // 15: api.user.ManagerFindIsCheckQualityUserListRequest
  4140. (*ManagerUpdateUserCreditRequest)(nil), // 16: api.user.ManagerUpdateUserCreditRequest
  4141. (*ManagerMarkHighQualityUserRequest)(nil), // 17: api.user.ManagerMarkHighQualityUserRequest
  4142. (*ManagerReMarkHighQualityUserRequest)(nil), // 18: api.user.ManagerReMarkHighQualityUserRequest
  4143. (*GetRecommendUserDBRequest)(nil), // 19: api.user.GetRecommendUserDBRequest
  4144. (*FindRecommendHighQualityUserRequest)(nil), // 20: api.user.FindRecommendHighQualityUserRequest
  4145. (*FindRecommendHighQualityUserReply)(nil), // 21: api.user.FindRecommendHighQualityUserReply
  4146. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 22: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4147. (*GetUserDBMsgFromWebsocketReply)(nil), // 23: api.user.GetUserDBMsgFromWebsocketReply
  4148. (*UpdateUserMatchedNumRequest)(nil), // 24: api.user.UpdateUserMatchedNumRequest
  4149. (*SendMsgReduceCreditReply)(nil), // 25: api.user.SendMsgReduceCreditReply
  4150. (*UserFreeNum)(nil), // 26: api.user.UserFreeNum
  4151. (*ReplyScripRequest)(nil), // 27: api.user.ReplyScripRequest
  4152. (*PersonLookScripRequest)(nil), // 28: api.user.PersonLookScripRequest
  4153. (*UserFindScripRequest)(nil), // 29: api.user.UserFindScripRequest
  4154. (*DeleteScripRequest)(nil), // 30: api.user.DeleteScripRequest
  4155. (*CreateScripRequest)(nil), // 31: api.user.CreateScripRequest
  4156. (*FindMatchingAvatarAndNumReply)(nil), // 32: api.user.FindMatchingAvatarAndNumReply
  4157. (*UserRechargeRequest)(nil), // 33: api.user.UserRechargeRequest
  4158. (*RechargeList)(nil), // 34: api.user.RechargeList
  4159. (*VipRechargeList)(nil), // 35: api.user.VipRechargeList
  4160. (*VipRechargeInfo)(nil), // 36: api.user.VipRechargeInfo
  4161. (*RechargeInfo)(nil), // 37: api.user.RechargeInfo
  4162. (*InformationStatus)(nil), // 38: api.user.InformationStatus
  4163. (*UserBalance)(nil), // 39: api.user.UserBalance
  4164. (*UserFindChatListReply)(nil), // 40: api.user.UserFindChatListReply
  4165. (*UserChatInfo)(nil), // 41: api.user.UserChatInfo
  4166. (*UserInfo)(nil), // 42: api.user.UserInfo
  4167. (*KeyRequest)(nil), // 43: api.user.KeyRequest
  4168. (*CreatePayRequest)(nil), // 44: api.user.CreatePayRequest
  4169. (*PayInfo)(nil), // 45: api.user.PayInfo
  4170. (*PayOrderInfo)(nil), // 46: api.user.PayOrderInfo
  4171. (*PayOrderList)(nil), // 47: api.user.PayOrderList
  4172. (*FindPayOrderListRequest)(nil), // 48: api.user.FindPayOrderListRequest
  4173. (*PayCallbackReply)(nil), // 49: api.user.PayCallbackReply
  4174. nil, // 50: api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  4175. nil, // 51: api.user.FindUserVipListDBReply.VipMapEntry
  4176. (*common.Message)(nil), // 52: api.common.Message
  4177. (*structpb.Value)(nil), // 53: google.protobuf.Value
  4178. (*emptypb.Empty)(nil), // 54: google.protobuf.Empty
  4179. (*common.SendPhoneCodeRequest)(nil), // 55: api.common.SendPhoneCodeRequest
  4180. (*common.CheckPhoneCodeRequest)(nil), // 56: api.common.CheckPhoneCodeRequest
  4181. (*common.UpdateInformationRequest)(nil), // 57: api.common.UpdateInformationRequest
  4182. (*common.CreateChatRoomParam)(nil), // 58: api.common.CreateChatRoomParam
  4183. (*common.PersonParam)(nil), // 59: api.common.PersonParam
  4184. (*common.ListPageRequest)(nil), // 60: api.common.ListPageRequest
  4185. (*common.WxConfReq)(nil), // 61: api.common.WxConfReq
  4186. (*common.SexReq)(nil), // 62: api.common.SexReq
  4187. (*common.ListPage2Request)(nil), // 63: api.common.ListPage2Request
  4188. (*common.FindChatRecordListRequest)(nil), // 64: api.common.FindChatRecordListRequest
  4189. (*common.FindChatRoomMsgRequest)(nil), // 65: api.common.FindChatRoomMsgRequest
  4190. (*common.MemeRequest)(nil), // 66: api.common.MemeRequest
  4191. (*common.FindChatTopicRequest)(nil), // 67: api.common.FindChatTopicRequest
  4192. (*common.RandomNum)(nil), // 68: api.common.RandomNum
  4193. (*common.RandomNumAndSex)(nil), // 69: api.common.RandomNumAndSex
  4194. (*common.ReportChatRequest)(nil), // 70: api.common.ReportChatRequest
  4195. (*common.UpdateLastScripIDRequest)(nil), // 71: api.common.UpdateLastScripIDRequest
  4196. (*common.FindScripRequest)(nil), // 72: api.common.FindScripRequest
  4197. (*common.RoomIDRequest)(nil), // 73: api.common.RoomIDRequest
  4198. (*common.PartnerIDParam)(nil), // 74: api.common.PartnerIDParam
  4199. (*common.PersonIDParam)(nil), // 75: api.common.PersonIDParam
  4200. (*common.ManagerFindPersonListRequest)(nil), // 76: api.common.ManagerFindPersonListRequest
  4201. (*common.ManagerFindCanHandpickUserListRequest)(nil), // 77: api.common.ManagerFindCanHandpickUserListRequest
  4202. (*common.ManagerSetHandpickUserRequest)(nil), // 78: api.common.ManagerSetHandpickUserRequest
  4203. (*common.ManagerSetHandpickUserOneRequest)(nil), // 79: api.common.ManagerSetHandpickUserOneRequest
  4204. (*common.PersonIDList)(nil), // 80: api.common.PersonIDList
  4205. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 81: api.common.ManagerUpdatePersonVoiceRequest
  4206. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 82: api.common.ManagerUpdatePersonPicturesRequest
  4207. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 83: api.common.ManagerUpdatePersonSignatureRequest
  4208. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 84: api.common.ManagerUpdatePersonAvatarRequest
  4209. (*common.ManagerUpdatePersonNameRequest)(nil), // 85: api.common.ManagerUpdatePersonNameRequest
  4210. (*common.ManagerUpdatePersonWeightRequest)(nil), // 86: api.common.ManagerUpdatePersonWeightRequest
  4211. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 87: api.common.ManagerUpdatePersonIsBlackRequest
  4212. (*common.UpdateLastScripIDDBRequest)(nil), // 88: api.common.UpdateLastScripIDDBRequest
  4213. (*common.IDParam)(nil), // 89: api.common.IDParam
  4214. (*common.GetUserDBAndInitReq)(nil), // 90: api.common.GetUserDBAndInitReq
  4215. (*chat.RoomReply)(nil), // 91: api.chat.RoomReply
  4216. (*common.HomeInfo)(nil), // 92: api.common.HomeInfo
  4217. (*common.LookedAndLikedNum)(nil), // 93: api.common.LookedAndLikedNum
  4218. (*statistics.LookAndLikeListReply)(nil), // 94: api.statistics.LookAndLikeListReply
  4219. (*common.WxConfResponse)(nil), // 95: api.common.WxConfResponse
  4220. (*common.TagListReply)(nil), // 96: api.common.TagListReply
  4221. (*common.RecommendPersonListReply)(nil), // 97: api.common.RecommendPersonListReply
  4222. (*common.ChatRecordListReply)(nil), // 98: api.common.ChatRecordListReply
  4223. (*common.ChatRoomMsg)(nil), // 99: api.common.ChatRoomMsg
  4224. (*common.IsLike)(nil), // 100: api.common.IsLike
  4225. (*common.MemeList)(nil), // 101: api.common.MemeList
  4226. (*common.ChatTopicList)(nil), // 102: api.common.ChatTopicList
  4227. (*common.CommonTextList)(nil), // 103: api.common.CommonTextList
  4228. (*common.MemeTitleList)(nil), // 104: api.common.MemeTitleList
  4229. (*common.ChatCardInfo)(nil), // 105: api.common.ChatCardInfo
  4230. (*common.FindOverSevenDayAvatarReply)(nil), // 106: api.common.FindOverSevenDayAvatarReply
  4231. (*common.ScripID)(nil), // 107: api.common.ScripID
  4232. (*common.ScripReply)(nil), // 108: api.common.ScripReply
  4233. (*common.ScripInfo)(nil), // 109: api.common.ScripInfo
  4234. (*common.ChatRecordInfo)(nil), // 110: api.common.ChatRecordInfo
  4235. (*chat.UnreadNumReply)(nil), // 111: api.chat.UnreadNumReply
  4236. (*chat.UserRoomInfo)(nil), // 112: api.chat.UserRoomInfo
  4237. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 113: api.chat.CheckUserPartnerIsRelationshipReply
  4238. (*common.AddFriendMessageInfo)(nil), // 114: api.common.AddFriendMessageInfo
  4239. (*statistics.LookAndLikeMessageReply)(nil), // 115: api.statistics.LookAndLikeMessageReply
  4240. (*statistics.LookMessageReply)(nil), // 116: api.statistics.LookMessageReply
  4241. (*chat.WindowInfo)(nil), // 117: api.chat.WindowInfo
  4242. (*chat.GetRandomMatchingReply)(nil), // 118: api.chat.GetRandomMatchingReply
  4243. (*common.SendMessageReply)(nil), // 119: api.common.SendMessageReply
  4244. (*common.HandpickPersonListReply)(nil), // 120: api.common.HandpickPersonListReply
  4245. (*common.ManagerFindPersonListReply)(nil), // 121: api.common.ManagerFindPersonListReply
  4246. (*common.ManagerFindPersonListReply2)(nil), // 122: api.common.ManagerFindPersonListReply2
  4247. (*common.ManagerFindCanHandpickUserListReply)(nil), // 123: api.common.ManagerFindCanHandpickUserListReply
  4248. (*common.PersonMsg)(nil), // 124: api.common.PersonMsg
  4249. (*common.PersonDBReply)(nil), // 125: api.common.PersonDBReply
  4250. (*common.PersonDB)(nil), // 126: api.common.PersonDB
  4251. (*common.PersonDBDetails)(nil), // 127: api.common.PersonDBDetails
  4252. }
  4253. var file_user_proto_depIdxs = []int32{
  4254. 50, // 0: api.user.MatchUserDBWithoutMapRequest.isMatchingMap:type_name -> api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  4255. 51, // 1: api.user.FindUserVipListDBReply.vipMap:type_name -> api.user.FindUserVipListDBReply.VipMapEntry
  4256. 52, // 2: api.user.SendMessageRequest.message:type_name -> api.common.Message
  4257. 52, // 3: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  4258. 37, // 4: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  4259. 36, // 5: api.user.VipRechargeList.list:type_name -> api.user.VipRechargeInfo
  4260. 41, // 6: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  4261. 53, // 7: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  4262. 46, // 8: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  4263. 8, // 9: api.user.FindUserVipListDBReply.VipMapEntry.value:type_name -> api.user.VipInfo
  4264. 54, // 10: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  4265. 55, // 11: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  4266. 56, // 12: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  4267. 57, // 13: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  4268. 58, // 14: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  4269. 54, // 15: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  4270. 59, // 16: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  4271. 59, // 17: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  4272. 60, // 18: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  4273. 61, // 19: api.user.User.WxConf:input_type -> api.common.WxConfReq
  4274. 62, // 20: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  4275. 63, // 21: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  4276. 60, // 22: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  4277. 60, // 23: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  4278. 60, // 24: api.user.User.FindCloseFriendRoomList:input_type -> api.common.ListPageRequest
  4279. 64, // 25: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  4280. 65, // 26: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  4281. 59, // 27: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  4282. 66, // 28: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  4283. 67, // 29: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  4284. 68, // 30: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  4285. 69, // 31: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  4286. 54, // 32: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  4287. 59, // 33: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  4288. 54, // 34: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  4289. 59, // 35: api.user.User.UserLike:input_type -> api.common.PersonParam
  4290. 59, // 36: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  4291. 70, // 37: api.user.User.Report:input_type -> api.common.ReportChatRequest
  4292. 54, // 38: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  4293. 71, // 39: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  4294. 31, // 40: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  4295. 30, // 41: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  4296. 29, // 42: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  4297. 72, // 43: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  4298. 29, // 44: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  4299. 28, // 45: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  4300. 54, // 46: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  4301. 27, // 47: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  4302. 73, // 48: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  4303. 54, // 49: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  4304. 59, // 50: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  4305. 60, // 51: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  4306. 60, // 52: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  4307. 73, // 53: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  4308. 74, // 54: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  4309. 43, // 55: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  4310. 54, // 56: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  4311. 54, // 57: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  4312. 54, // 58: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  4313. 54, // 59: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  4314. 54, // 60: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  4315. 59, // 61: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  4316. 33, // 62: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  4317. 33, // 63: api.user.User.UserRechargeVip:input_type -> api.user.UserRechargeRequest
  4318. 54, // 64: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  4319. 54, // 65: api.user.User.FindVipRechargeList:input_type -> google.protobuf.Empty
  4320. 48, // 66: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  4321. 54, // 67: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  4322. 54, // 68: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  4323. 54, // 69: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  4324. 54, // 70: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  4325. 4, // 71: api.user.User.GetRandomMatching:input_type -> api.user.GetRandomMatchingRequest
  4326. 73, // 72: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  4327. 73, // 73: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  4328. 54, // 74: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  4329. 58, // 75: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  4330. 14, // 76: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  4331. 54, // 77: api.user.User.GetVipInfo:input_type -> google.protobuf.Empty
  4332. 54, // 78: api.user.User.FindHandpickUser:input_type -> google.protobuf.Empty
  4333. 54, // 79: api.user.User.GetUserLookHandPickNum:input_type -> google.protobuf.Empty
  4334. 75, // 80: api.user.User.SetUserLookHandPickNum:input_type -> api.common.PersonIDParam
  4335. 54, // 81: api.user.User.IsCanGetReturnReword:input_type -> google.protobuf.Empty
  4336. 54, // 82: api.user.User.UserGetReturnReword:input_type -> google.protobuf.Empty
  4337. 54, // 83: api.user.User.UserPrivacyStatus:input_type -> google.protobuf.Empty
  4338. 2, // 84: api.user.User.UserSetPrivacyStatus:input_type -> api.user.UserPrivacyStatusInfo
  4339. 76, // 85: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  4340. 76, // 86: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  4341. 15, // 87: api.user.User.ManagerFindIsCheckQualityUserList:input_type -> api.user.ManagerFindIsCheckQualityUserListRequest
  4342. 76, // 88: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  4343. 77, // 89: api.user.User.ManagerFindCanHandpickUserList:input_type -> api.common.ManagerFindCanHandpickUserListRequest
  4344. 78, // 90: api.user.User.ManagerSetHandpickUser:input_type -> api.common.ManagerSetHandpickUserRequest
  4345. 79, // 91: api.user.User.ManagerSetHandpickUserOne:input_type -> api.common.ManagerSetHandpickUserOneRequest
  4346. 17, // 92: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  4347. 18, // 93: api.user.User.ManagerReMarkHighQualityUser:input_type -> api.user.ManagerReMarkHighQualityUserRequest
  4348. 75, // 94: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  4349. 80, // 95: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  4350. 75, // 96: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  4351. 81, // 97: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  4352. 82, // 98: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  4353. 83, // 99: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  4354. 84, // 100: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  4355. 85, // 101: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  4356. 86, // 102: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  4357. 87, // 103: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  4358. 16, // 104: api.user.User.ManagerUpdateUserCredit:input_type -> api.user.ManagerUpdateUserCreditRequest
  4359. 75, // 105: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  4360. 80, // 106: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  4361. 88, // 107: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  4362. 75, // 108: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  4363. 89, // 109: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  4364. 20, // 110: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  4365. 75, // 111: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  4366. 9, // 112: api.user.User.SendMsgReduceCredit:input_type -> api.user.SendMsgReduceCreditRequest
  4367. 59, // 113: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  4368. 59, // 114: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  4369. 59, // 115: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  4370. 59, // 116: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  4371. 24, // 117: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  4372. 19, // 118: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  4373. 13, // 119: api.user.User.ReportUserBlack:input_type -> api.user.ReportUserBlackRequest
  4374. 12, // 120: api.user.User.AddUserCredit:input_type -> api.user.AddUserCreditRequest
  4375. 75, // 121: api.user.User.UserInformationStatusDB:input_type -> api.common.PersonIDParam
  4376. 10, // 122: api.user.User.UserGetInformationAwardByActivity:input_type -> api.user.UserGetInformationAwardByActivityRequest
  4377. 80, // 123: api.user.User.FindUserVipDBList:input_type -> api.common.PersonIDList
  4378. 5, // 124: api.user.User.MatchUserDBWithoutMap:input_type -> api.user.MatchUserDBWithoutMapRequest
  4379. 90, // 125: api.user.User.GetUserDBAndInit:input_type -> api.common.GetUserDBAndInitReq
  4380. 0, // 126: api.user.User.UpdateToday:input_type -> api.user.UpdateTodayRequest
  4381. 1, // 127: api.user.User.UpdateLastSendTemplateTime:input_type -> api.user.UpdateLastSendTemplateTimeRequest
  4382. 54, // 128: api.user.User.CronRemoveExpirationVip:input_type -> google.protobuf.Empty
  4383. 42, // 129: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  4384. 54, // 130: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  4385. 54, // 131: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  4386. 54, // 132: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  4387. 91, // 133: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  4388. 39, // 134: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  4389. 92, // 135: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  4390. 93, // 136: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  4391. 94, // 137: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  4392. 95, // 138: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  4393. 96, // 139: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  4394. 97, // 140: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  4395. 40, // 141: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4396. 40, // 142: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4397. 40, // 143: api.user.User.FindCloseFriendRoomList:output_type -> api.user.UserFindChatListReply
  4398. 98, // 144: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  4399. 99, // 145: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  4400. 100, // 146: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  4401. 101, // 147: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  4402. 102, // 148: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  4403. 103, // 149: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  4404. 103, // 150: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  4405. 104, // 151: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  4406. 105, // 152: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  4407. 104, // 153: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  4408. 54, // 154: api.user.User.UserLike:output_type -> google.protobuf.Empty
  4409. 54, // 155: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  4410. 54, // 156: api.user.User.Report:output_type -> google.protobuf.Empty
  4411. 106, // 157: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  4412. 54, // 158: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  4413. 107, // 159: api.user.User.CreateScrip:output_type -> api.common.ScripID
  4414. 54, // 160: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  4415. 108, // 161: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  4416. 108, // 162: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  4417. 108, // 163: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  4418. 54, // 164: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  4419. 109, // 165: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  4420. 110, // 166: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  4421. 54, // 167: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  4422. 111, // 168: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  4423. 112, // 169: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  4424. 94, // 170: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  4425. 94, // 171: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  4426. 54, // 172: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  4427. 113, // 173: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  4428. 114, // 174: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  4429. 115, // 175: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  4430. 116, // 176: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  4431. 54, // 177: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  4432. 38, // 178: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  4433. 54, // 179: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  4434. 54, // 180: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  4435. 45, // 181: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  4436. 45, // 182: api.user.User.UserRechargeVip:output_type -> api.user.PayInfo
  4437. 34, // 183: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  4438. 35, // 184: api.user.User.FindVipRechargeList:output_type -> api.user.VipRechargeList
  4439. 47, // 185: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  4440. 97, // 186: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  4441. 32, // 187: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  4442. 117, // 188: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  4443. 26, // 189: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  4444. 118, // 190: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  4445. 54, // 191: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  4446. 54, // 192: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  4447. 54, // 193: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  4448. 91, // 194: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  4449. 119, // 195: api.user.User.SendMessage:output_type -> api.common.SendMessageReply
  4450. 8, // 196: api.user.User.GetVipInfo:output_type -> api.user.VipInfo
  4451. 120, // 197: api.user.User.FindHandpickUser:output_type -> api.common.HandpickPersonListReply
  4452. 6, // 198: api.user.User.GetUserLookHandPickNum:output_type -> api.user.GetUserLookHandPickNumReply
  4453. 54, // 199: api.user.User.SetUserLookHandPickNum:output_type -> google.protobuf.Empty
  4454. 3, // 200: api.user.User.IsCanGetReturnReword:output_type -> api.user.IsCanGetReturnRewordReply
  4455. 54, // 201: api.user.User.UserGetReturnReword:output_type -> google.protobuf.Empty
  4456. 2, // 202: api.user.User.UserPrivacyStatus:output_type -> api.user.UserPrivacyStatusInfo
  4457. 54, // 203: api.user.User.UserSetPrivacyStatus:output_type -> google.protobuf.Empty
  4458. 121, // 204: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  4459. 121, // 205: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  4460. 122, // 206: api.user.User.ManagerFindIsCheckQualityUserList:output_type -> api.common.ManagerFindPersonListReply2
  4461. 121, // 207: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  4462. 123, // 208: api.user.User.ManagerFindCanHandpickUserList:output_type -> api.common.ManagerFindCanHandpickUserListReply
  4463. 54, // 209: api.user.User.ManagerSetHandpickUser:output_type -> google.protobuf.Empty
  4464. 54, // 210: api.user.User.ManagerSetHandpickUserOne:output_type -> google.protobuf.Empty
  4465. 54, // 211: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  4466. 54, // 212: api.user.User.ManagerReMarkHighQualityUser:output_type -> google.protobuf.Empty
  4467. 54, // 213: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  4468. 54, // 214: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  4469. 54, // 215: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  4470. 54, // 216: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  4471. 54, // 217: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  4472. 54, // 218: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  4473. 54, // 219: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  4474. 54, // 220: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  4475. 54, // 221: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  4476. 54, // 222: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  4477. 54, // 223: api.user.User.ManagerUpdateUserCredit:output_type -> google.protobuf.Empty
  4478. 124, // 224: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  4479. 125, // 225: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  4480. 54, // 226: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  4481. 54, // 227: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  4482. 124, // 228: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  4483. 21, // 229: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  4484. 23, // 230: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  4485. 54, // 231: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  4486. 54, // 232: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  4487. 54, // 233: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  4488. 54, // 234: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  4489. 54, // 235: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  4490. 22, // 236: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4491. 126, // 237: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  4492. 54, // 238: api.user.User.ReportUserBlack:output_type -> google.protobuf.Empty
  4493. 54, // 239: api.user.User.AddUserCredit:output_type -> google.protobuf.Empty
  4494. 38, // 240: api.user.User.UserInformationStatusDB:output_type -> api.user.InformationStatus
  4495. 11, // 241: api.user.User.UserGetInformationAwardByActivity:output_type -> api.user.UserGetInformationAwardByActivityReply
  4496. 7, // 242: api.user.User.FindUserVipDBList:output_type -> api.user.FindUserVipListDBReply
  4497. 126, // 243: api.user.User.MatchUserDBWithoutMap:output_type -> api.common.PersonDB
  4498. 127, // 244: api.user.User.GetUserDBAndInit:output_type -> api.common.PersonDBDetails
  4499. 54, // 245: api.user.User.UpdateToday:output_type -> google.protobuf.Empty
  4500. 54, // 246: api.user.User.UpdateLastSendTemplateTime:output_type -> google.protobuf.Empty
  4501. 54, // 247: api.user.User.CronRemoveExpirationVip:output_type -> google.protobuf.Empty
  4502. 129, // [129:248] is the sub-list for method output_type
  4503. 10, // [10:129] is the sub-list for method input_type
  4504. 10, // [10:10] is the sub-list for extension type_name
  4505. 10, // [10:10] is the sub-list for extension extendee
  4506. 0, // [0:10] is the sub-list for field type_name
  4507. }
  4508. func init() { file_user_proto_init() }
  4509. func file_user_proto_init() {
  4510. if File_user_proto != nil {
  4511. return
  4512. }
  4513. if !protoimpl.UnsafeEnabled {
  4514. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4515. switch v := v.(*UpdateTodayRequest); i {
  4516. case 0:
  4517. return &v.state
  4518. case 1:
  4519. return &v.sizeCache
  4520. case 2:
  4521. return &v.unknownFields
  4522. default:
  4523. return nil
  4524. }
  4525. }
  4526. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4527. switch v := v.(*UpdateLastSendTemplateTimeRequest); i {
  4528. case 0:
  4529. return &v.state
  4530. case 1:
  4531. return &v.sizeCache
  4532. case 2:
  4533. return &v.unknownFields
  4534. default:
  4535. return nil
  4536. }
  4537. }
  4538. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4539. switch v := v.(*UserPrivacyStatusInfo); i {
  4540. case 0:
  4541. return &v.state
  4542. case 1:
  4543. return &v.sizeCache
  4544. case 2:
  4545. return &v.unknownFields
  4546. default:
  4547. return nil
  4548. }
  4549. }
  4550. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4551. switch v := v.(*IsCanGetReturnRewordReply); i {
  4552. case 0:
  4553. return &v.state
  4554. case 1:
  4555. return &v.sizeCache
  4556. case 2:
  4557. return &v.unknownFields
  4558. default:
  4559. return nil
  4560. }
  4561. }
  4562. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4563. switch v := v.(*GetRandomMatchingRequest); i {
  4564. case 0:
  4565. return &v.state
  4566. case 1:
  4567. return &v.sizeCache
  4568. case 2:
  4569. return &v.unknownFields
  4570. default:
  4571. return nil
  4572. }
  4573. }
  4574. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4575. switch v := v.(*MatchUserDBWithoutMapRequest); i {
  4576. case 0:
  4577. return &v.state
  4578. case 1:
  4579. return &v.sizeCache
  4580. case 2:
  4581. return &v.unknownFields
  4582. default:
  4583. return nil
  4584. }
  4585. }
  4586. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4587. switch v := v.(*GetUserLookHandPickNumReply); i {
  4588. case 0:
  4589. return &v.state
  4590. case 1:
  4591. return &v.sizeCache
  4592. case 2:
  4593. return &v.unknownFields
  4594. default:
  4595. return nil
  4596. }
  4597. }
  4598. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4599. switch v := v.(*FindUserVipListDBReply); i {
  4600. case 0:
  4601. return &v.state
  4602. case 1:
  4603. return &v.sizeCache
  4604. case 2:
  4605. return &v.unknownFields
  4606. default:
  4607. return nil
  4608. }
  4609. }
  4610. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4611. switch v := v.(*VipInfo); i {
  4612. case 0:
  4613. return &v.state
  4614. case 1:
  4615. return &v.sizeCache
  4616. case 2:
  4617. return &v.unknownFields
  4618. default:
  4619. return nil
  4620. }
  4621. }
  4622. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4623. switch v := v.(*SendMsgReduceCreditRequest); i {
  4624. case 0:
  4625. return &v.state
  4626. case 1:
  4627. return &v.sizeCache
  4628. case 2:
  4629. return &v.unknownFields
  4630. default:
  4631. return nil
  4632. }
  4633. }
  4634. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4635. switch v := v.(*UserGetInformationAwardByActivityRequest); i {
  4636. case 0:
  4637. return &v.state
  4638. case 1:
  4639. return &v.sizeCache
  4640. case 2:
  4641. return &v.unknownFields
  4642. default:
  4643. return nil
  4644. }
  4645. }
  4646. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4647. switch v := v.(*UserGetInformationAwardByActivityReply); i {
  4648. case 0:
  4649. return &v.state
  4650. case 1:
  4651. return &v.sizeCache
  4652. case 2:
  4653. return &v.unknownFields
  4654. default:
  4655. return nil
  4656. }
  4657. }
  4658. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4659. switch v := v.(*AddUserCreditRequest); i {
  4660. case 0:
  4661. return &v.state
  4662. case 1:
  4663. return &v.sizeCache
  4664. case 2:
  4665. return &v.unknownFields
  4666. default:
  4667. return nil
  4668. }
  4669. }
  4670. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4671. switch v := v.(*ReportUserBlackRequest); i {
  4672. case 0:
  4673. return &v.state
  4674. case 1:
  4675. return &v.sizeCache
  4676. case 2:
  4677. return &v.unknownFields
  4678. default:
  4679. return nil
  4680. }
  4681. }
  4682. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4683. switch v := v.(*SendMessageRequest); i {
  4684. case 0:
  4685. return &v.state
  4686. case 1:
  4687. return &v.sizeCache
  4688. case 2:
  4689. return &v.unknownFields
  4690. default:
  4691. return nil
  4692. }
  4693. }
  4694. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4695. switch v := v.(*ManagerFindIsCheckQualityUserListRequest); i {
  4696. case 0:
  4697. return &v.state
  4698. case 1:
  4699. return &v.sizeCache
  4700. case 2:
  4701. return &v.unknownFields
  4702. default:
  4703. return nil
  4704. }
  4705. }
  4706. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4707. switch v := v.(*ManagerUpdateUserCreditRequest); i {
  4708. case 0:
  4709. return &v.state
  4710. case 1:
  4711. return &v.sizeCache
  4712. case 2:
  4713. return &v.unknownFields
  4714. default:
  4715. return nil
  4716. }
  4717. }
  4718. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4719. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  4720. case 0:
  4721. return &v.state
  4722. case 1:
  4723. return &v.sizeCache
  4724. case 2:
  4725. return &v.unknownFields
  4726. default:
  4727. return nil
  4728. }
  4729. }
  4730. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4731. switch v := v.(*ManagerReMarkHighQualityUserRequest); i {
  4732. case 0:
  4733. return &v.state
  4734. case 1:
  4735. return &v.sizeCache
  4736. case 2:
  4737. return &v.unknownFields
  4738. default:
  4739. return nil
  4740. }
  4741. }
  4742. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4743. switch v := v.(*GetRecommendUserDBRequest); i {
  4744. case 0:
  4745. return &v.state
  4746. case 1:
  4747. return &v.sizeCache
  4748. case 2:
  4749. return &v.unknownFields
  4750. default:
  4751. return nil
  4752. }
  4753. }
  4754. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4755. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  4756. case 0:
  4757. return &v.state
  4758. case 1:
  4759. return &v.sizeCache
  4760. case 2:
  4761. return &v.unknownFields
  4762. default:
  4763. return nil
  4764. }
  4765. }
  4766. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4767. switch v := v.(*FindRecommendHighQualityUserReply); i {
  4768. case 0:
  4769. return &v.state
  4770. case 1:
  4771. return &v.sizeCache
  4772. case 2:
  4773. return &v.unknownFields
  4774. default:
  4775. return nil
  4776. }
  4777. }
  4778. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4779. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  4780. case 0:
  4781. return &v.state
  4782. case 1:
  4783. return &v.sizeCache
  4784. case 2:
  4785. return &v.unknownFields
  4786. default:
  4787. return nil
  4788. }
  4789. }
  4790. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4791. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  4792. case 0:
  4793. return &v.state
  4794. case 1:
  4795. return &v.sizeCache
  4796. case 2:
  4797. return &v.unknownFields
  4798. default:
  4799. return nil
  4800. }
  4801. }
  4802. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4803. switch v := v.(*UpdateUserMatchedNumRequest); i {
  4804. case 0:
  4805. return &v.state
  4806. case 1:
  4807. return &v.sizeCache
  4808. case 2:
  4809. return &v.unknownFields
  4810. default:
  4811. return nil
  4812. }
  4813. }
  4814. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4815. switch v := v.(*SendMsgReduceCreditReply); i {
  4816. case 0:
  4817. return &v.state
  4818. case 1:
  4819. return &v.sizeCache
  4820. case 2:
  4821. return &v.unknownFields
  4822. default:
  4823. return nil
  4824. }
  4825. }
  4826. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4827. switch v := v.(*UserFreeNum); i {
  4828. case 0:
  4829. return &v.state
  4830. case 1:
  4831. return &v.sizeCache
  4832. case 2:
  4833. return &v.unknownFields
  4834. default:
  4835. return nil
  4836. }
  4837. }
  4838. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4839. switch v := v.(*ReplyScripRequest); i {
  4840. case 0:
  4841. return &v.state
  4842. case 1:
  4843. return &v.sizeCache
  4844. case 2:
  4845. return &v.unknownFields
  4846. default:
  4847. return nil
  4848. }
  4849. }
  4850. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4851. switch v := v.(*PersonLookScripRequest); i {
  4852. case 0:
  4853. return &v.state
  4854. case 1:
  4855. return &v.sizeCache
  4856. case 2:
  4857. return &v.unknownFields
  4858. default:
  4859. return nil
  4860. }
  4861. }
  4862. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4863. switch v := v.(*UserFindScripRequest); i {
  4864. case 0:
  4865. return &v.state
  4866. case 1:
  4867. return &v.sizeCache
  4868. case 2:
  4869. return &v.unknownFields
  4870. default:
  4871. return nil
  4872. }
  4873. }
  4874. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4875. switch v := v.(*DeleteScripRequest); i {
  4876. case 0:
  4877. return &v.state
  4878. case 1:
  4879. return &v.sizeCache
  4880. case 2:
  4881. return &v.unknownFields
  4882. default:
  4883. return nil
  4884. }
  4885. }
  4886. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4887. switch v := v.(*CreateScripRequest); i {
  4888. case 0:
  4889. return &v.state
  4890. case 1:
  4891. return &v.sizeCache
  4892. case 2:
  4893. return &v.unknownFields
  4894. default:
  4895. return nil
  4896. }
  4897. }
  4898. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4899. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  4900. case 0:
  4901. return &v.state
  4902. case 1:
  4903. return &v.sizeCache
  4904. case 2:
  4905. return &v.unknownFields
  4906. default:
  4907. return nil
  4908. }
  4909. }
  4910. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4911. switch v := v.(*UserRechargeRequest); i {
  4912. case 0:
  4913. return &v.state
  4914. case 1:
  4915. return &v.sizeCache
  4916. case 2:
  4917. return &v.unknownFields
  4918. default:
  4919. return nil
  4920. }
  4921. }
  4922. file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4923. switch v := v.(*RechargeList); i {
  4924. case 0:
  4925. return &v.state
  4926. case 1:
  4927. return &v.sizeCache
  4928. case 2:
  4929. return &v.unknownFields
  4930. default:
  4931. return nil
  4932. }
  4933. }
  4934. file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4935. switch v := v.(*VipRechargeList); i {
  4936. case 0:
  4937. return &v.state
  4938. case 1:
  4939. return &v.sizeCache
  4940. case 2:
  4941. return &v.unknownFields
  4942. default:
  4943. return nil
  4944. }
  4945. }
  4946. file_user_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4947. switch v := v.(*VipRechargeInfo); i {
  4948. case 0:
  4949. return &v.state
  4950. case 1:
  4951. return &v.sizeCache
  4952. case 2:
  4953. return &v.unknownFields
  4954. default:
  4955. return nil
  4956. }
  4957. }
  4958. file_user_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4959. switch v := v.(*RechargeInfo); i {
  4960. case 0:
  4961. return &v.state
  4962. case 1:
  4963. return &v.sizeCache
  4964. case 2:
  4965. return &v.unknownFields
  4966. default:
  4967. return nil
  4968. }
  4969. }
  4970. file_user_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4971. switch v := v.(*InformationStatus); i {
  4972. case 0:
  4973. return &v.state
  4974. case 1:
  4975. return &v.sizeCache
  4976. case 2:
  4977. return &v.unknownFields
  4978. default:
  4979. return nil
  4980. }
  4981. }
  4982. file_user_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4983. switch v := v.(*UserBalance); i {
  4984. case 0:
  4985. return &v.state
  4986. case 1:
  4987. return &v.sizeCache
  4988. case 2:
  4989. return &v.unknownFields
  4990. default:
  4991. return nil
  4992. }
  4993. }
  4994. file_user_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4995. switch v := v.(*UserFindChatListReply); i {
  4996. case 0:
  4997. return &v.state
  4998. case 1:
  4999. return &v.sizeCache
  5000. case 2:
  5001. return &v.unknownFields
  5002. default:
  5003. return nil
  5004. }
  5005. }
  5006. file_user_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  5007. switch v := v.(*UserChatInfo); i {
  5008. case 0:
  5009. return &v.state
  5010. case 1:
  5011. return &v.sizeCache
  5012. case 2:
  5013. return &v.unknownFields
  5014. default:
  5015. return nil
  5016. }
  5017. }
  5018. file_user_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  5019. switch v := v.(*UserInfo); i {
  5020. case 0:
  5021. return &v.state
  5022. case 1:
  5023. return &v.sizeCache
  5024. case 2:
  5025. return &v.unknownFields
  5026. default:
  5027. return nil
  5028. }
  5029. }
  5030. file_user_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  5031. switch v := v.(*KeyRequest); i {
  5032. case 0:
  5033. return &v.state
  5034. case 1:
  5035. return &v.sizeCache
  5036. case 2:
  5037. return &v.unknownFields
  5038. default:
  5039. return nil
  5040. }
  5041. }
  5042. file_user_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  5043. switch v := v.(*CreatePayRequest); i {
  5044. case 0:
  5045. return &v.state
  5046. case 1:
  5047. return &v.sizeCache
  5048. case 2:
  5049. return &v.unknownFields
  5050. default:
  5051. return nil
  5052. }
  5053. }
  5054. file_user_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  5055. switch v := v.(*PayInfo); i {
  5056. case 0:
  5057. return &v.state
  5058. case 1:
  5059. return &v.sizeCache
  5060. case 2:
  5061. return &v.unknownFields
  5062. default:
  5063. return nil
  5064. }
  5065. }
  5066. file_user_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  5067. switch v := v.(*PayOrderInfo); i {
  5068. case 0:
  5069. return &v.state
  5070. case 1:
  5071. return &v.sizeCache
  5072. case 2:
  5073. return &v.unknownFields
  5074. default:
  5075. return nil
  5076. }
  5077. }
  5078. file_user_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  5079. switch v := v.(*PayOrderList); i {
  5080. case 0:
  5081. return &v.state
  5082. case 1:
  5083. return &v.sizeCache
  5084. case 2:
  5085. return &v.unknownFields
  5086. default:
  5087. return nil
  5088. }
  5089. }
  5090. file_user_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  5091. switch v := v.(*FindPayOrderListRequest); i {
  5092. case 0:
  5093. return &v.state
  5094. case 1:
  5095. return &v.sizeCache
  5096. case 2:
  5097. return &v.unknownFields
  5098. default:
  5099. return nil
  5100. }
  5101. }
  5102. file_user_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  5103. switch v := v.(*PayCallbackReply); i {
  5104. case 0:
  5105. return &v.state
  5106. case 1:
  5107. return &v.sizeCache
  5108. case 2:
  5109. return &v.unknownFields
  5110. default:
  5111. return nil
  5112. }
  5113. }
  5114. }
  5115. type x struct{}
  5116. out := protoimpl.TypeBuilder{
  5117. File: protoimpl.DescBuilder{
  5118. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  5119. RawDescriptor: file_user_proto_rawDesc,
  5120. NumEnums: 0,
  5121. NumMessages: 52,
  5122. NumExtensions: 0,
  5123. NumServices: 1,
  5124. },
  5125. GoTypes: file_user_proto_goTypes,
  5126. DependencyIndexes: file_user_proto_depIdxs,
  5127. MessageInfos: file_user_proto_msgTypes,
  5128. }.Build()
  5129. File_user_proto = out.File
  5130. file_user_proto_rawDesc = nil
  5131. file_user_proto_goTypes = nil
  5132. file_user_proto_depIdxs = nil
  5133. }