user.pb.go 233 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343
  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 PersonLookScripReply struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. IsNextLock bool `protobuf:"varint,1,opt,name=isNextLock,proto3" json:"isNextLock"` // 下一个小纸条是否需要解锁
  30. }
  31. func (x *PersonLookScripReply) Reset() {
  32. *x = PersonLookScripReply{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_user_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *PersonLookScripReply) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*PersonLookScripReply) ProtoMessage() {}
  43. func (x *PersonLookScripReply) ProtoReflect() protoreflect.Message {
  44. mi := &file_user_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use PersonLookScripReply.ProtoReflect.Descriptor instead.
  55. func (*PersonLookScripReply) Descriptor() ([]byte, []int) {
  56. return file_user_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *PersonLookScripReply) GetIsNextLock() bool {
  59. if x != nil {
  60. return x.IsNextLock
  61. }
  62. return false
  63. }
  64. type UpdateTodayRequest struct {
  65. state protoimpl.MessageState
  66. sizeCache protoimpl.SizeCache
  67. unknownFields protoimpl.UnknownFields
  68. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  69. TodaySendUnreadReminderNum int64 `protobuf:"varint,2,opt,name=todaySendUnreadReminderNum,proto3" json:"todaySendUnreadReminderNum"`
  70. TodaySendVisitorReminderNum int64 `protobuf:"varint,3,opt,name=todaySendVisitorReminderNum,proto3" json:"todaySendVisitorReminderNum"`
  71. }
  72. func (x *UpdateTodayRequest) Reset() {
  73. *x = UpdateTodayRequest{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_user_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *UpdateTodayRequest) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*UpdateTodayRequest) ProtoMessage() {}
  84. func (x *UpdateTodayRequest) ProtoReflect() protoreflect.Message {
  85. mi := &file_user_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use UpdateTodayRequest.ProtoReflect.Descriptor instead.
  96. func (*UpdateTodayRequest) Descriptor() ([]byte, []int) {
  97. return file_user_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *UpdateTodayRequest) GetUserId() string {
  100. if x != nil {
  101. return x.UserId
  102. }
  103. return ""
  104. }
  105. func (x *UpdateTodayRequest) GetTodaySendUnreadReminderNum() int64 {
  106. if x != nil {
  107. return x.TodaySendUnreadReminderNum
  108. }
  109. return 0
  110. }
  111. func (x *UpdateTodayRequest) GetTodaySendVisitorReminderNum() int64 {
  112. if x != nil {
  113. return x.TodaySendVisitorReminderNum
  114. }
  115. return 0
  116. }
  117. type UpdateLastSendTemplateTimeRequest struct {
  118. state protoimpl.MessageState
  119. sizeCache protoimpl.SizeCache
  120. unknownFields protoimpl.UnknownFields
  121. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  122. LastSendTemplateTime int64 `protobuf:"varint,2,opt,name=lastSendTemplateTime,proto3" json:"lastSendTemplateTime"`
  123. }
  124. func (x *UpdateLastSendTemplateTimeRequest) Reset() {
  125. *x = UpdateLastSendTemplateTimeRequest{}
  126. if protoimpl.UnsafeEnabled {
  127. mi := &file_user_proto_msgTypes[2]
  128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  129. ms.StoreMessageInfo(mi)
  130. }
  131. }
  132. func (x *UpdateLastSendTemplateTimeRequest) String() string {
  133. return protoimpl.X.MessageStringOf(x)
  134. }
  135. func (*UpdateLastSendTemplateTimeRequest) ProtoMessage() {}
  136. func (x *UpdateLastSendTemplateTimeRequest) ProtoReflect() protoreflect.Message {
  137. mi := &file_user_proto_msgTypes[2]
  138. if protoimpl.UnsafeEnabled && x != nil {
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. if ms.LoadMessageInfo() == nil {
  141. ms.StoreMessageInfo(mi)
  142. }
  143. return ms
  144. }
  145. return mi.MessageOf(x)
  146. }
  147. // Deprecated: Use UpdateLastSendTemplateTimeRequest.ProtoReflect.Descriptor instead.
  148. func (*UpdateLastSendTemplateTimeRequest) Descriptor() ([]byte, []int) {
  149. return file_user_proto_rawDescGZIP(), []int{2}
  150. }
  151. func (x *UpdateLastSendTemplateTimeRequest) GetUserId() string {
  152. if x != nil {
  153. return x.UserId
  154. }
  155. return ""
  156. }
  157. func (x *UpdateLastSendTemplateTimeRequest) GetLastSendTemplateTime() int64 {
  158. if x != nil {
  159. return x.LastSendTemplateTime
  160. }
  161. return 0
  162. }
  163. type UserPrivacyStatusInfo struct {
  164. state protoimpl.MessageState
  165. sizeCache protoimpl.SizeCache
  166. unknownFields protoimpl.UnknownFields
  167. IsCloseGreet bool `protobuf:"varint,1,opt,name=isCloseGreet,proto3" json:"isCloseGreet"` // 是否关闭打招呼
  168. IsCloseMatching bool `protobuf:"varint,2,opt,name=isCloseMatching,proto3" json:"isCloseMatching"` // 是否关闭匹配到我
  169. }
  170. func (x *UserPrivacyStatusInfo) Reset() {
  171. *x = UserPrivacyStatusInfo{}
  172. if protoimpl.UnsafeEnabled {
  173. mi := &file_user_proto_msgTypes[3]
  174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  175. ms.StoreMessageInfo(mi)
  176. }
  177. }
  178. func (x *UserPrivacyStatusInfo) String() string {
  179. return protoimpl.X.MessageStringOf(x)
  180. }
  181. func (*UserPrivacyStatusInfo) ProtoMessage() {}
  182. func (x *UserPrivacyStatusInfo) ProtoReflect() protoreflect.Message {
  183. mi := &file_user_proto_msgTypes[3]
  184. if protoimpl.UnsafeEnabled && x != nil {
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. if ms.LoadMessageInfo() == nil {
  187. ms.StoreMessageInfo(mi)
  188. }
  189. return ms
  190. }
  191. return mi.MessageOf(x)
  192. }
  193. // Deprecated: Use UserPrivacyStatusInfo.ProtoReflect.Descriptor instead.
  194. func (*UserPrivacyStatusInfo) Descriptor() ([]byte, []int) {
  195. return file_user_proto_rawDescGZIP(), []int{3}
  196. }
  197. func (x *UserPrivacyStatusInfo) GetIsCloseGreet() bool {
  198. if x != nil {
  199. return x.IsCloseGreet
  200. }
  201. return false
  202. }
  203. func (x *UserPrivacyStatusInfo) GetIsCloseMatching() bool {
  204. if x != nil {
  205. return x.IsCloseMatching
  206. }
  207. return false
  208. }
  209. type IsCanGetReturnRewordReply struct {
  210. state protoimpl.MessageState
  211. sizeCache protoimpl.SizeCache
  212. unknownFields protoimpl.UnknownFields
  213. IsCanGetReword bool `protobuf:"varint,1,opt,name=isCanGetReword,proto3" json:"isCanGetReword"`
  214. }
  215. func (x *IsCanGetReturnRewordReply) Reset() {
  216. *x = IsCanGetReturnRewordReply{}
  217. if protoimpl.UnsafeEnabled {
  218. mi := &file_user_proto_msgTypes[4]
  219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  220. ms.StoreMessageInfo(mi)
  221. }
  222. }
  223. func (x *IsCanGetReturnRewordReply) String() string {
  224. return protoimpl.X.MessageStringOf(x)
  225. }
  226. func (*IsCanGetReturnRewordReply) ProtoMessage() {}
  227. func (x *IsCanGetReturnRewordReply) ProtoReflect() protoreflect.Message {
  228. mi := &file_user_proto_msgTypes[4]
  229. if protoimpl.UnsafeEnabled && x != nil {
  230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  231. if ms.LoadMessageInfo() == nil {
  232. ms.StoreMessageInfo(mi)
  233. }
  234. return ms
  235. }
  236. return mi.MessageOf(x)
  237. }
  238. // Deprecated: Use IsCanGetReturnRewordReply.ProtoReflect.Descriptor instead.
  239. func (*IsCanGetReturnRewordReply) Descriptor() ([]byte, []int) {
  240. return file_user_proto_rawDescGZIP(), []int{4}
  241. }
  242. func (x *IsCanGetReturnRewordReply) GetIsCanGetReword() bool {
  243. if x != nil {
  244. return x.IsCanGetReword
  245. }
  246. return false
  247. }
  248. type GetRandomMatchingRequest struct {
  249. state protoimpl.MessageState
  250. sizeCache protoimpl.SizeCache
  251. unknownFields protoimpl.UnknownFields
  252. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  253. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  254. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  255. MaxAge int64 `protobuf:"varint,9,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  256. MinAge int64 `protobuf:"varint,10,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  257. }
  258. func (x *GetRandomMatchingRequest) Reset() {
  259. *x = GetRandomMatchingRequest{}
  260. if protoimpl.UnsafeEnabled {
  261. mi := &file_user_proto_msgTypes[5]
  262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  263. ms.StoreMessageInfo(mi)
  264. }
  265. }
  266. func (x *GetRandomMatchingRequest) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*GetRandomMatchingRequest) ProtoMessage() {}
  270. func (x *GetRandomMatchingRequest) ProtoReflect() protoreflect.Message {
  271. mi := &file_user_proto_msgTypes[5]
  272. if protoimpl.UnsafeEnabled && x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use GetRandomMatchingRequest.ProtoReflect.Descriptor instead.
  282. func (*GetRandomMatchingRequest) Descriptor() ([]byte, []int) {
  283. return file_user_proto_rawDescGZIP(), []int{5}
  284. }
  285. func (x *GetRandomMatchingRequest) GetSex() int64 {
  286. if x != nil {
  287. return x.Sex
  288. }
  289. return 0
  290. }
  291. func (x *GetRandomMatchingRequest) GetProvince() string {
  292. if x != nil {
  293. return x.Province
  294. }
  295. return ""
  296. }
  297. func (x *GetRandomMatchingRequest) GetCity() string {
  298. if x != nil {
  299. return x.City
  300. }
  301. return ""
  302. }
  303. func (x *GetRandomMatchingRequest) GetMaxAge() int64 {
  304. if x != nil {
  305. return x.MaxAge
  306. }
  307. return 0
  308. }
  309. func (x *GetRandomMatchingRequest) GetMinAge() int64 {
  310. if x != nil {
  311. return x.MinAge
  312. }
  313. return 0
  314. }
  315. type MatchUserDBWithoutMapRequest struct {
  316. state protoimpl.MessageState
  317. sizeCache protoimpl.SizeCache
  318. unknownFields protoimpl.UnknownFields
  319. 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
  320. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"` // 省
  321. City string `protobuf:"bytes,3,opt,name=city,proto3" json:"city"` // 市
  322. MaxAge int64 `protobuf:"varint,4,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  323. MinAge int64 `protobuf:"varint,5,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  324. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  325. }
  326. func (x *MatchUserDBWithoutMapRequest) Reset() {
  327. *x = MatchUserDBWithoutMapRequest{}
  328. if protoimpl.UnsafeEnabled {
  329. mi := &file_user_proto_msgTypes[6]
  330. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  331. ms.StoreMessageInfo(mi)
  332. }
  333. }
  334. func (x *MatchUserDBWithoutMapRequest) String() string {
  335. return protoimpl.X.MessageStringOf(x)
  336. }
  337. func (*MatchUserDBWithoutMapRequest) ProtoMessage() {}
  338. func (x *MatchUserDBWithoutMapRequest) ProtoReflect() protoreflect.Message {
  339. mi := &file_user_proto_msgTypes[6]
  340. if protoimpl.UnsafeEnabled && x != nil {
  341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  342. if ms.LoadMessageInfo() == nil {
  343. ms.StoreMessageInfo(mi)
  344. }
  345. return ms
  346. }
  347. return mi.MessageOf(x)
  348. }
  349. // Deprecated: Use MatchUserDBWithoutMapRequest.ProtoReflect.Descriptor instead.
  350. func (*MatchUserDBWithoutMapRequest) Descriptor() ([]byte, []int) {
  351. return file_user_proto_rawDescGZIP(), []int{6}
  352. }
  353. func (x *MatchUserDBWithoutMapRequest) GetIsMatchingMap() map[string]bool {
  354. if x != nil {
  355. return x.IsMatchingMap
  356. }
  357. return make(map[string]bool, 0)
  358. }
  359. func (x *MatchUserDBWithoutMapRequest) GetProvince() string {
  360. if x != nil {
  361. return x.Province
  362. }
  363. return ""
  364. }
  365. func (x *MatchUserDBWithoutMapRequest) GetCity() string {
  366. if x != nil {
  367. return x.City
  368. }
  369. return ""
  370. }
  371. func (x *MatchUserDBWithoutMapRequest) GetMaxAge() int64 {
  372. if x != nil {
  373. return x.MaxAge
  374. }
  375. return 0
  376. }
  377. func (x *MatchUserDBWithoutMapRequest) GetMinAge() int64 {
  378. if x != nil {
  379. return x.MinAge
  380. }
  381. return 0
  382. }
  383. func (x *MatchUserDBWithoutMapRequest) GetSex() int64 {
  384. if x != nil {
  385. return x.Sex
  386. }
  387. return 0
  388. }
  389. type GetUserLookHandPickNumReply struct {
  390. state protoimpl.MessageState
  391. sizeCache protoimpl.SizeCache
  392. unknownFields protoimpl.UnknownFields
  393. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"`
  394. UserIdList []string `protobuf:"bytes,2,rep,name=userIdList,proto3" json:"userIdList"`
  395. }
  396. func (x *GetUserLookHandPickNumReply) Reset() {
  397. *x = GetUserLookHandPickNumReply{}
  398. if protoimpl.UnsafeEnabled {
  399. mi := &file_user_proto_msgTypes[7]
  400. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  401. ms.StoreMessageInfo(mi)
  402. }
  403. }
  404. func (x *GetUserLookHandPickNumReply) String() string {
  405. return protoimpl.X.MessageStringOf(x)
  406. }
  407. func (*GetUserLookHandPickNumReply) ProtoMessage() {}
  408. func (x *GetUserLookHandPickNumReply) ProtoReflect() protoreflect.Message {
  409. mi := &file_user_proto_msgTypes[7]
  410. if protoimpl.UnsafeEnabled && x != nil {
  411. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  412. if ms.LoadMessageInfo() == nil {
  413. ms.StoreMessageInfo(mi)
  414. }
  415. return ms
  416. }
  417. return mi.MessageOf(x)
  418. }
  419. // Deprecated: Use GetUserLookHandPickNumReply.ProtoReflect.Descriptor instead.
  420. func (*GetUserLookHandPickNumReply) Descriptor() ([]byte, []int) {
  421. return file_user_proto_rawDescGZIP(), []int{7}
  422. }
  423. func (x *GetUserLookHandPickNumReply) GetNum() int64 {
  424. if x != nil {
  425. return x.Num
  426. }
  427. return 0
  428. }
  429. func (x *GetUserLookHandPickNumReply) GetUserIdList() []string {
  430. if x != nil {
  431. return x.UserIdList
  432. }
  433. return make([]string, 0)
  434. }
  435. type FindUserVipListDBReply struct {
  436. state protoimpl.MessageState
  437. sizeCache protoimpl.SizeCache
  438. unknownFields protoimpl.UnknownFields
  439. 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"`
  440. }
  441. func (x *FindUserVipListDBReply) Reset() {
  442. *x = FindUserVipListDBReply{}
  443. if protoimpl.UnsafeEnabled {
  444. mi := &file_user_proto_msgTypes[8]
  445. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  446. ms.StoreMessageInfo(mi)
  447. }
  448. }
  449. func (x *FindUserVipListDBReply) String() string {
  450. return protoimpl.X.MessageStringOf(x)
  451. }
  452. func (*FindUserVipListDBReply) ProtoMessage() {}
  453. func (x *FindUserVipListDBReply) ProtoReflect() protoreflect.Message {
  454. mi := &file_user_proto_msgTypes[8]
  455. if protoimpl.UnsafeEnabled && x != nil {
  456. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  457. if ms.LoadMessageInfo() == nil {
  458. ms.StoreMessageInfo(mi)
  459. }
  460. return ms
  461. }
  462. return mi.MessageOf(x)
  463. }
  464. // Deprecated: Use FindUserVipListDBReply.ProtoReflect.Descriptor instead.
  465. func (*FindUserVipListDBReply) Descriptor() ([]byte, []int) {
  466. return file_user_proto_rawDescGZIP(), []int{8}
  467. }
  468. func (x *FindUserVipListDBReply) GetVipMap() map[string]*VipInfo {
  469. if x != nil {
  470. return x.VipMap
  471. }
  472. return make(map[string]*VipInfo, 0)
  473. }
  474. type FindUserCertificationDBReply struct {
  475. state protoimpl.MessageState
  476. sizeCache protoimpl.SizeCache
  477. unknownFields protoimpl.UnknownFields
  478. CertificationMap map[string]bool `protobuf:"bytes,1,rep,name=certificationMap,proto3" json:"certificationMap" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  479. }
  480. func (x *FindUserCertificationDBReply) Reset() {
  481. *x = FindUserCertificationDBReply{}
  482. if protoimpl.UnsafeEnabled {
  483. mi := &file_user_proto_msgTypes[9]
  484. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  485. ms.StoreMessageInfo(mi)
  486. }
  487. }
  488. func (x *FindUserCertificationDBReply) String() string {
  489. return protoimpl.X.MessageStringOf(x)
  490. }
  491. func (*FindUserCertificationDBReply) ProtoMessage() {}
  492. func (x *FindUserCertificationDBReply) ProtoReflect() protoreflect.Message {
  493. mi := &file_user_proto_msgTypes[9]
  494. if protoimpl.UnsafeEnabled && x != nil {
  495. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  496. if ms.LoadMessageInfo() == nil {
  497. ms.StoreMessageInfo(mi)
  498. }
  499. return ms
  500. }
  501. return mi.MessageOf(x)
  502. }
  503. // Deprecated: Use FindUserCertificationDBReply.ProtoReflect.Descriptor instead.
  504. func (*FindUserCertificationDBReply) Descriptor() ([]byte, []int) {
  505. return file_user_proto_rawDescGZIP(), []int{9}
  506. }
  507. func (x *FindUserCertificationDBReply) GetCertificationMap() map[string]bool {
  508. if x != nil {
  509. return x.CertificationMap
  510. }
  511. return make(map[string]bool, 0)
  512. }
  513. type VipInfo struct {
  514. state protoimpl.MessageState
  515. sizeCache protoimpl.SizeCache
  516. unknownFields protoimpl.UnknownFields
  517. IsVip bool `protobuf:"varint,1,opt,name=isVip,proto3" json:"isVip"` // 是否是vip
  518. VipLevel int64 `protobuf:"varint,2,opt,name=vipLevel,proto3" json:"vipLevel"` // vip 等级˚
  519. GrowthValue int64 `protobuf:"varint,3,opt,name=growthValue,proto3" json:"growthValue"` // vip成长值
  520. RenewalTime int64 `protobuf:"varint,4,opt,name=renewalTime,proto3" json:"renewalTime"` // 会员的续费时间
  521. ExpirationTime int64 `protobuf:"varint,5,opt,name=expirationTime,proto3" json:"expirationTime"` // 会员的到期时间˚˚
  522. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 会员的开始时间
  523. IsYearVip bool `protobuf:"varint,7,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费vip
  524. VipFunctions []string `protobuf:"bytes,8,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  525. UserId string `protobuf:"bytes,9,opt,name=userId,proto3" json:"userId"` // id
  526. }
  527. func (x *VipInfo) Reset() {
  528. *x = VipInfo{}
  529. if protoimpl.UnsafeEnabled {
  530. mi := &file_user_proto_msgTypes[10]
  531. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  532. ms.StoreMessageInfo(mi)
  533. }
  534. }
  535. func (x *VipInfo) String() string {
  536. return protoimpl.X.MessageStringOf(x)
  537. }
  538. func (*VipInfo) ProtoMessage() {}
  539. func (x *VipInfo) ProtoReflect() protoreflect.Message {
  540. mi := &file_user_proto_msgTypes[10]
  541. if protoimpl.UnsafeEnabled && x != nil {
  542. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  543. if ms.LoadMessageInfo() == nil {
  544. ms.StoreMessageInfo(mi)
  545. }
  546. return ms
  547. }
  548. return mi.MessageOf(x)
  549. }
  550. // Deprecated: Use VipInfo.ProtoReflect.Descriptor instead.
  551. func (*VipInfo) Descriptor() ([]byte, []int) {
  552. return file_user_proto_rawDescGZIP(), []int{10}
  553. }
  554. func (x *VipInfo) GetIsVip() bool {
  555. if x != nil {
  556. return x.IsVip
  557. }
  558. return false
  559. }
  560. func (x *VipInfo) GetVipLevel() int64 {
  561. if x != nil {
  562. return x.VipLevel
  563. }
  564. return 0
  565. }
  566. func (x *VipInfo) GetGrowthValue() int64 {
  567. if x != nil {
  568. return x.GrowthValue
  569. }
  570. return 0
  571. }
  572. func (x *VipInfo) GetRenewalTime() int64 {
  573. if x != nil {
  574. return x.RenewalTime
  575. }
  576. return 0
  577. }
  578. func (x *VipInfo) GetExpirationTime() int64 {
  579. if x != nil {
  580. return x.ExpirationTime
  581. }
  582. return 0
  583. }
  584. func (x *VipInfo) GetCreateTime() int64 {
  585. if x != nil {
  586. return x.CreateTime
  587. }
  588. return 0
  589. }
  590. func (x *VipInfo) GetIsYearVip() bool {
  591. if x != nil {
  592. return x.IsYearVip
  593. }
  594. return false
  595. }
  596. func (x *VipInfo) GetVipFunctions() []string {
  597. if x != nil {
  598. return x.VipFunctions
  599. }
  600. return make([]string, 0)
  601. }
  602. func (x *VipInfo) GetUserId() string {
  603. if x != nil {
  604. return x.UserId
  605. }
  606. return ""
  607. }
  608. type SendMsgReduceCreditRequest struct {
  609. state protoimpl.MessageState
  610. sizeCache protoimpl.SizeCache
  611. unknownFields protoimpl.UnknownFields
  612. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  613. IsFree bool `protobuf:"varint,2,opt,name=isFree,proto3" json:"isFree"` // 是否免费
  614. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"` // 消息类型
  615. }
  616. func (x *SendMsgReduceCreditRequest) Reset() {
  617. *x = SendMsgReduceCreditRequest{}
  618. if protoimpl.UnsafeEnabled {
  619. mi := &file_user_proto_msgTypes[11]
  620. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  621. ms.StoreMessageInfo(mi)
  622. }
  623. }
  624. func (x *SendMsgReduceCreditRequest) String() string {
  625. return protoimpl.X.MessageStringOf(x)
  626. }
  627. func (*SendMsgReduceCreditRequest) ProtoMessage() {}
  628. func (x *SendMsgReduceCreditRequest) ProtoReflect() protoreflect.Message {
  629. mi := &file_user_proto_msgTypes[11]
  630. if protoimpl.UnsafeEnabled && x != nil {
  631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  632. if ms.LoadMessageInfo() == nil {
  633. ms.StoreMessageInfo(mi)
  634. }
  635. return ms
  636. }
  637. return mi.MessageOf(x)
  638. }
  639. // Deprecated: Use SendMsgReduceCreditRequest.ProtoReflect.Descriptor instead.
  640. func (*SendMsgReduceCreditRequest) Descriptor() ([]byte, []int) {
  641. return file_user_proto_rawDescGZIP(), []int{11}
  642. }
  643. func (x *SendMsgReduceCreditRequest) GetPersonID() string {
  644. if x != nil {
  645. return x.PersonID
  646. }
  647. return ""
  648. }
  649. func (x *SendMsgReduceCreditRequest) GetIsFree() bool {
  650. if x != nil {
  651. return x.IsFree
  652. }
  653. return false
  654. }
  655. func (x *SendMsgReduceCreditRequest) GetType() string {
  656. if x != nil {
  657. return x.Type
  658. }
  659. return ""
  660. }
  661. type UserGetInformationAwardByActivityRequest struct {
  662. state protoimpl.MessageState
  663. sizeCache protoimpl.SizeCache
  664. unknownFields protoimpl.UnknownFields
  665. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  666. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"`
  667. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc"`
  668. }
  669. func (x *UserGetInformationAwardByActivityRequest) Reset() {
  670. *x = UserGetInformationAwardByActivityRequest{}
  671. if protoimpl.UnsafeEnabled {
  672. mi := &file_user_proto_msgTypes[12]
  673. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  674. ms.StoreMessageInfo(mi)
  675. }
  676. }
  677. func (x *UserGetInformationAwardByActivityRequest) String() string {
  678. return protoimpl.X.MessageStringOf(x)
  679. }
  680. func (*UserGetInformationAwardByActivityRequest) ProtoMessage() {}
  681. func (x *UserGetInformationAwardByActivityRequest) ProtoReflect() protoreflect.Message {
  682. mi := &file_user_proto_msgTypes[12]
  683. if protoimpl.UnsafeEnabled && x != nil {
  684. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  685. if ms.LoadMessageInfo() == nil {
  686. ms.StoreMessageInfo(mi)
  687. }
  688. return ms
  689. }
  690. return mi.MessageOf(x)
  691. }
  692. // Deprecated: Use UserGetInformationAwardByActivityRequest.ProtoReflect.Descriptor instead.
  693. func (*UserGetInformationAwardByActivityRequest) Descriptor() ([]byte, []int) {
  694. return file_user_proto_rawDescGZIP(), []int{12}
  695. }
  696. func (x *UserGetInformationAwardByActivityRequest) GetUserId() string {
  697. if x != nil {
  698. return x.UserId
  699. }
  700. return ""
  701. }
  702. func (x *UserGetInformationAwardByActivityRequest) GetCredit() int64 {
  703. if x != nil {
  704. return x.Credit
  705. }
  706. return 0
  707. }
  708. func (x *UserGetInformationAwardByActivityRequest) GetDesc() string {
  709. if x != nil {
  710. return x.Desc
  711. }
  712. return ""
  713. }
  714. type UserGetInformationAwardByActivityReply struct {
  715. state protoimpl.MessageState
  716. sizeCache protoimpl.SizeCache
  717. unknownFields protoimpl.UnknownFields
  718. IsError bool `protobuf:"varint,1,opt,name=isError,proto3" json:"isError"`
  719. }
  720. func (x *UserGetInformationAwardByActivityReply) Reset() {
  721. *x = UserGetInformationAwardByActivityReply{}
  722. if protoimpl.UnsafeEnabled {
  723. mi := &file_user_proto_msgTypes[13]
  724. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  725. ms.StoreMessageInfo(mi)
  726. }
  727. }
  728. func (x *UserGetInformationAwardByActivityReply) String() string {
  729. return protoimpl.X.MessageStringOf(x)
  730. }
  731. func (*UserGetInformationAwardByActivityReply) ProtoMessage() {}
  732. func (x *UserGetInformationAwardByActivityReply) ProtoReflect() protoreflect.Message {
  733. mi := &file_user_proto_msgTypes[13]
  734. if protoimpl.UnsafeEnabled && x != nil {
  735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  736. if ms.LoadMessageInfo() == nil {
  737. ms.StoreMessageInfo(mi)
  738. }
  739. return ms
  740. }
  741. return mi.MessageOf(x)
  742. }
  743. // Deprecated: Use UserGetInformationAwardByActivityReply.ProtoReflect.Descriptor instead.
  744. func (*UserGetInformationAwardByActivityReply) Descriptor() ([]byte, []int) {
  745. return file_user_proto_rawDescGZIP(), []int{13}
  746. }
  747. func (x *UserGetInformationAwardByActivityReply) GetIsError() bool {
  748. if x != nil {
  749. return x.IsError
  750. }
  751. return false
  752. }
  753. type AddUserCreditRequest struct {
  754. state protoimpl.MessageState
  755. sizeCache protoimpl.SizeCache
  756. unknownFields protoimpl.UnknownFields
  757. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  758. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  759. Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail"`
  760. }
  761. func (x *AddUserCreditRequest) Reset() {
  762. *x = AddUserCreditRequest{}
  763. if protoimpl.UnsafeEnabled {
  764. mi := &file_user_proto_msgTypes[14]
  765. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  766. ms.StoreMessageInfo(mi)
  767. }
  768. }
  769. func (x *AddUserCreditRequest) String() string {
  770. return protoimpl.X.MessageStringOf(x)
  771. }
  772. func (*AddUserCreditRequest) ProtoMessage() {}
  773. func (x *AddUserCreditRequest) ProtoReflect() protoreflect.Message {
  774. mi := &file_user_proto_msgTypes[14]
  775. if protoimpl.UnsafeEnabled && x != nil {
  776. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  777. if ms.LoadMessageInfo() == nil {
  778. ms.StoreMessageInfo(mi)
  779. }
  780. return ms
  781. }
  782. return mi.MessageOf(x)
  783. }
  784. // Deprecated: Use AddUserCreditRequest.ProtoReflect.Descriptor instead.
  785. func (*AddUserCreditRequest) Descriptor() ([]byte, []int) {
  786. return file_user_proto_rawDescGZIP(), []int{14}
  787. }
  788. func (x *AddUserCreditRequest) GetId() string {
  789. if x != nil {
  790. return x.Id
  791. }
  792. return ""
  793. }
  794. func (x *AddUserCreditRequest) GetCredit() int64 {
  795. if x != nil {
  796. return x.Credit
  797. }
  798. return 0
  799. }
  800. func (x *AddUserCreditRequest) GetDetail() string {
  801. if x != nil {
  802. return x.Detail
  803. }
  804. return ""
  805. }
  806. type ReportUserBlackRequest struct {
  807. state protoimpl.MessageState
  808. sizeCache protoimpl.SizeCache
  809. unknownFields protoimpl.UnknownFields
  810. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  811. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result"`
  812. }
  813. func (x *ReportUserBlackRequest) Reset() {
  814. *x = ReportUserBlackRequest{}
  815. if protoimpl.UnsafeEnabled {
  816. mi := &file_user_proto_msgTypes[15]
  817. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  818. ms.StoreMessageInfo(mi)
  819. }
  820. }
  821. func (x *ReportUserBlackRequest) String() string {
  822. return protoimpl.X.MessageStringOf(x)
  823. }
  824. func (*ReportUserBlackRequest) ProtoMessage() {}
  825. func (x *ReportUserBlackRequest) ProtoReflect() protoreflect.Message {
  826. mi := &file_user_proto_msgTypes[15]
  827. if protoimpl.UnsafeEnabled && x != nil {
  828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  829. if ms.LoadMessageInfo() == nil {
  830. ms.StoreMessageInfo(mi)
  831. }
  832. return ms
  833. }
  834. return mi.MessageOf(x)
  835. }
  836. // Deprecated: Use ReportUserBlackRequest.ProtoReflect.Descriptor instead.
  837. func (*ReportUserBlackRequest) Descriptor() ([]byte, []int) {
  838. return file_user_proto_rawDescGZIP(), []int{15}
  839. }
  840. func (x *ReportUserBlackRequest) GetPersonId() string {
  841. if x != nil {
  842. return x.PersonId
  843. }
  844. return ""
  845. }
  846. func (x *ReportUserBlackRequest) GetResult() string {
  847. if x != nil {
  848. return x.Result
  849. }
  850. return ""
  851. }
  852. type SendMessageRequest struct {
  853. state protoimpl.MessageState
  854. sizeCache protoimpl.SizeCache
  855. unknownFields protoimpl.UnknownFields
  856. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  857. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  858. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  859. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  860. }
  861. func (x *SendMessageRequest) Reset() {
  862. *x = SendMessageRequest{}
  863. if protoimpl.UnsafeEnabled {
  864. mi := &file_user_proto_msgTypes[16]
  865. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  866. ms.StoreMessageInfo(mi)
  867. }
  868. }
  869. func (x *SendMessageRequest) String() string {
  870. return protoimpl.X.MessageStringOf(x)
  871. }
  872. func (*SendMessageRequest) ProtoMessage() {}
  873. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  874. mi := &file_user_proto_msgTypes[16]
  875. if protoimpl.UnsafeEnabled && x != nil {
  876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  877. if ms.LoadMessageInfo() == nil {
  878. ms.StoreMessageInfo(mi)
  879. }
  880. return ms
  881. }
  882. return mi.MessageOf(x)
  883. }
  884. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  885. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  886. return file_user_proto_rawDescGZIP(), []int{16}
  887. }
  888. func (x *SendMessageRequest) GetRoomId() int64 {
  889. if x != nil {
  890. return x.RoomId
  891. }
  892. return 0
  893. }
  894. func (x *SendMessageRequest) GetMessage() *common.Message {
  895. if x != nil && x.Message != nil {
  896. return x.Message
  897. }
  898. return &common.Message{}
  899. }
  900. func (x *SendMessageRequest) GetMsgType() string {
  901. if x != nil {
  902. return x.MsgType
  903. }
  904. return ""
  905. }
  906. func (x *SendMessageRequest) GetWebsocketTag() string {
  907. if x != nil {
  908. return x.WebsocketTag
  909. }
  910. return ""
  911. }
  912. type GetRecommendUserDBRequest struct {
  913. state protoimpl.MessageState
  914. sizeCache protoimpl.SizeCache
  915. unknownFields protoimpl.UnknownFields
  916. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  917. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  918. }
  919. func (x *GetRecommendUserDBRequest) Reset() {
  920. *x = GetRecommendUserDBRequest{}
  921. if protoimpl.UnsafeEnabled {
  922. mi := &file_user_proto_msgTypes[17]
  923. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  924. ms.StoreMessageInfo(mi)
  925. }
  926. }
  927. func (x *GetRecommendUserDBRequest) String() string {
  928. return protoimpl.X.MessageStringOf(x)
  929. }
  930. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  931. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  932. mi := &file_user_proto_msgTypes[17]
  933. if protoimpl.UnsafeEnabled && x != nil {
  934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  935. if ms.LoadMessageInfo() == nil {
  936. ms.StoreMessageInfo(mi)
  937. }
  938. return ms
  939. }
  940. return mi.MessageOf(x)
  941. }
  942. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  943. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  944. return file_user_proto_rawDescGZIP(), []int{17}
  945. }
  946. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  947. if x != nil {
  948. return x.Sex
  949. }
  950. return 0
  951. }
  952. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  953. if x != nil {
  954. return x.PersonIds
  955. }
  956. return make([]string, 0)
  957. }
  958. type FindRecommendHighQualityUserRequest struct {
  959. state protoimpl.MessageState
  960. sizeCache protoimpl.SizeCache
  961. unknownFields protoimpl.UnknownFields
  962. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  963. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  964. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  965. }
  966. func (x *FindRecommendHighQualityUserRequest) Reset() {
  967. *x = FindRecommendHighQualityUserRequest{}
  968. if protoimpl.UnsafeEnabled {
  969. mi := &file_user_proto_msgTypes[18]
  970. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  971. ms.StoreMessageInfo(mi)
  972. }
  973. }
  974. func (x *FindRecommendHighQualityUserRequest) String() string {
  975. return protoimpl.X.MessageStringOf(x)
  976. }
  977. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  978. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  979. mi := &file_user_proto_msgTypes[18]
  980. if protoimpl.UnsafeEnabled && x != nil {
  981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  982. if ms.LoadMessageInfo() == nil {
  983. ms.StoreMessageInfo(mi)
  984. }
  985. return ms
  986. }
  987. return mi.MessageOf(x)
  988. }
  989. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  990. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  991. return file_user_proto_rawDescGZIP(), []int{18}
  992. }
  993. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  994. if x != nil {
  995. return x.Num
  996. }
  997. return 0
  998. }
  999. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  1000. if x != nil {
  1001. return x.Sex
  1002. }
  1003. return 0
  1004. }
  1005. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  1006. if x != nil {
  1007. return x.PersonId
  1008. }
  1009. return ""
  1010. }
  1011. type FindRecommendHighQualityUserReply struct {
  1012. state protoimpl.MessageState
  1013. sizeCache protoimpl.SizeCache
  1014. unknownFields protoimpl.UnknownFields
  1015. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  1016. }
  1017. func (x *FindRecommendHighQualityUserReply) Reset() {
  1018. *x = FindRecommendHighQualityUserReply{}
  1019. if protoimpl.UnsafeEnabled {
  1020. mi := &file_user_proto_msgTypes[19]
  1021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1022. ms.StoreMessageInfo(mi)
  1023. }
  1024. }
  1025. func (x *FindRecommendHighQualityUserReply) String() string {
  1026. return protoimpl.X.MessageStringOf(x)
  1027. }
  1028. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  1029. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  1030. mi := &file_user_proto_msgTypes[19]
  1031. if protoimpl.UnsafeEnabled && x != nil {
  1032. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1033. if ms.LoadMessageInfo() == nil {
  1034. ms.StoreMessageInfo(mi)
  1035. }
  1036. return ms
  1037. }
  1038. return mi.MessageOf(x)
  1039. }
  1040. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  1041. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  1042. return file_user_proto_rawDescGZIP(), []int{19}
  1043. }
  1044. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  1045. if x != nil {
  1046. return x.PersonIdList
  1047. }
  1048. return make([]string, 0)
  1049. }
  1050. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  1051. state protoimpl.MessageState
  1052. sizeCache protoimpl.SizeCache
  1053. unknownFields protoimpl.UnknownFields
  1054. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1055. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1056. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1057. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  1058. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  1059. City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city"` //城市
  1060. }
  1061. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  1062. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  1063. if protoimpl.UnsafeEnabled {
  1064. mi := &file_user_proto_msgTypes[20]
  1065. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1066. ms.StoreMessageInfo(mi)
  1067. }
  1068. }
  1069. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  1070. return protoimpl.X.MessageStringOf(x)
  1071. }
  1072. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  1073. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  1074. mi := &file_user_proto_msgTypes[20]
  1075. if protoimpl.UnsafeEnabled && x != nil {
  1076. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1077. if ms.LoadMessageInfo() == nil {
  1078. ms.StoreMessageInfo(mi)
  1079. }
  1080. return ms
  1081. }
  1082. return mi.MessageOf(x)
  1083. }
  1084. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  1085. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  1086. return file_user_proto_rawDescGZIP(), []int{20}
  1087. }
  1088. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  1089. if x != nil {
  1090. return x.TodayMatchedNum
  1091. }
  1092. return 0
  1093. }
  1094. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  1095. if x != nil {
  1096. return x.Nickname
  1097. }
  1098. return ""
  1099. }
  1100. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  1101. if x != nil {
  1102. return x.AvatarUrl
  1103. }
  1104. return ""
  1105. }
  1106. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  1107. if x != nil {
  1108. return x.Sex
  1109. }
  1110. return 0
  1111. }
  1112. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  1113. if x != nil {
  1114. return x.Age
  1115. }
  1116. return 0
  1117. }
  1118. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetCity() string {
  1119. if x != nil {
  1120. return x.City
  1121. }
  1122. return ""
  1123. }
  1124. type GetUserDBMsgFromWebsocketReply struct {
  1125. state protoimpl.MessageState
  1126. sizeCache protoimpl.SizeCache
  1127. unknownFields protoimpl.UnknownFields
  1128. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1129. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  1130. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  1131. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1132. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1133. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1134. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  1135. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  1136. }
  1137. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  1138. *x = GetUserDBMsgFromWebsocketReply{}
  1139. if protoimpl.UnsafeEnabled {
  1140. mi := &file_user_proto_msgTypes[21]
  1141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1142. ms.StoreMessageInfo(mi)
  1143. }
  1144. }
  1145. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  1146. return protoimpl.X.MessageStringOf(x)
  1147. }
  1148. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  1149. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  1150. mi := &file_user_proto_msgTypes[21]
  1151. if protoimpl.UnsafeEnabled && x != nil {
  1152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1153. if ms.LoadMessageInfo() == nil {
  1154. ms.StoreMessageInfo(mi)
  1155. }
  1156. return ms
  1157. }
  1158. return mi.MessageOf(x)
  1159. }
  1160. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  1161. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  1162. return file_user_proto_rawDescGZIP(), []int{21}
  1163. }
  1164. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  1165. if x != nil {
  1166. return x.Id
  1167. }
  1168. return ""
  1169. }
  1170. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  1171. if x != nil {
  1172. return x.Sex
  1173. }
  1174. return 0
  1175. }
  1176. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  1177. if x != nil {
  1178. return x.Weight
  1179. }
  1180. return 0
  1181. }
  1182. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  1183. if x != nil {
  1184. return x.WorkingStatus
  1185. }
  1186. return ""
  1187. }
  1188. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  1189. if x != nil {
  1190. return x.TodayMatchedNum
  1191. }
  1192. return 0
  1193. }
  1194. func (x *GetUserDBMsgFromWebsocketReply) GetAge() int64 {
  1195. if x != nil {
  1196. return x.Age
  1197. }
  1198. return 0
  1199. }
  1200. func (x *GetUserDBMsgFromWebsocketReply) GetProvince() string {
  1201. if x != nil {
  1202. return x.Province
  1203. }
  1204. return ""
  1205. }
  1206. func (x *GetUserDBMsgFromWebsocketReply) GetCity() string {
  1207. if x != nil {
  1208. return x.City
  1209. }
  1210. return ""
  1211. }
  1212. type UpdateUserMatchedNumRequest struct {
  1213. state protoimpl.MessageState
  1214. sizeCache protoimpl.SizeCache
  1215. unknownFields protoimpl.UnknownFields
  1216. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  1217. }
  1218. func (x *UpdateUserMatchedNumRequest) Reset() {
  1219. *x = UpdateUserMatchedNumRequest{}
  1220. if protoimpl.UnsafeEnabled {
  1221. mi := &file_user_proto_msgTypes[22]
  1222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1223. ms.StoreMessageInfo(mi)
  1224. }
  1225. }
  1226. func (x *UpdateUserMatchedNumRequest) String() string {
  1227. return protoimpl.X.MessageStringOf(x)
  1228. }
  1229. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  1230. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  1231. mi := &file_user_proto_msgTypes[22]
  1232. if protoimpl.UnsafeEnabled && x != nil {
  1233. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1234. if ms.LoadMessageInfo() == nil {
  1235. ms.StoreMessageInfo(mi)
  1236. }
  1237. return ms
  1238. }
  1239. return mi.MessageOf(x)
  1240. }
  1241. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  1242. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  1243. return file_user_proto_rawDescGZIP(), []int{22}
  1244. }
  1245. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  1246. if x != nil {
  1247. return x.UserId
  1248. }
  1249. return ""
  1250. }
  1251. type SendMsgReduceCreditReply struct {
  1252. state protoimpl.MessageState
  1253. sizeCache protoimpl.SizeCache
  1254. unknownFields protoimpl.UnknownFields
  1255. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  1256. }
  1257. func (x *SendMsgReduceCreditReply) Reset() {
  1258. *x = SendMsgReduceCreditReply{}
  1259. if protoimpl.UnsafeEnabled {
  1260. mi := &file_user_proto_msgTypes[23]
  1261. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1262. ms.StoreMessageInfo(mi)
  1263. }
  1264. }
  1265. func (x *SendMsgReduceCreditReply) String() string {
  1266. return protoimpl.X.MessageStringOf(x)
  1267. }
  1268. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  1269. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  1270. mi := &file_user_proto_msgTypes[23]
  1271. if protoimpl.UnsafeEnabled && x != nil {
  1272. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1273. if ms.LoadMessageInfo() == nil {
  1274. ms.StoreMessageInfo(mi)
  1275. }
  1276. return ms
  1277. }
  1278. return mi.MessageOf(x)
  1279. }
  1280. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  1281. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  1282. return file_user_proto_rawDescGZIP(), []int{23}
  1283. }
  1284. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  1285. if x != nil {
  1286. return x.IsSendReminder
  1287. }
  1288. return false
  1289. }
  1290. type UserFreeNum struct {
  1291. state protoimpl.MessageState
  1292. sizeCache protoimpl.SizeCache
  1293. unknownFields protoimpl.UnknownFields
  1294. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  1295. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  1296. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  1297. }
  1298. func (x *UserFreeNum) Reset() {
  1299. *x = UserFreeNum{}
  1300. if protoimpl.UnsafeEnabled {
  1301. mi := &file_user_proto_msgTypes[24]
  1302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1303. ms.StoreMessageInfo(mi)
  1304. }
  1305. }
  1306. func (x *UserFreeNum) String() string {
  1307. return protoimpl.X.MessageStringOf(x)
  1308. }
  1309. func (*UserFreeNum) ProtoMessage() {}
  1310. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  1311. mi := &file_user_proto_msgTypes[24]
  1312. if protoimpl.UnsafeEnabled && x != nil {
  1313. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1314. if ms.LoadMessageInfo() == nil {
  1315. ms.StoreMessageInfo(mi)
  1316. }
  1317. return ms
  1318. }
  1319. return mi.MessageOf(x)
  1320. }
  1321. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  1322. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  1323. return file_user_proto_rawDescGZIP(), []int{24}
  1324. }
  1325. func (x *UserFreeNum) GetReplyScripNum() int64 {
  1326. if x != nil {
  1327. return x.ReplyScripNum
  1328. }
  1329. return 0
  1330. }
  1331. func (x *UserFreeNum) GetCreateScripNum() int64 {
  1332. if x != nil {
  1333. return x.CreateScripNum
  1334. }
  1335. return 0
  1336. }
  1337. func (x *UserFreeNum) GetMatchingNum() int64 {
  1338. if x != nil {
  1339. return x.MatchingNum
  1340. }
  1341. return 0
  1342. }
  1343. type ReplyScripRequest struct {
  1344. state protoimpl.MessageState
  1345. sizeCache protoimpl.SizeCache
  1346. unknownFields protoimpl.UnknownFields
  1347. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  1348. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  1349. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  1350. }
  1351. func (x *ReplyScripRequest) Reset() {
  1352. *x = ReplyScripRequest{}
  1353. if protoimpl.UnsafeEnabled {
  1354. mi := &file_user_proto_msgTypes[25]
  1355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1356. ms.StoreMessageInfo(mi)
  1357. }
  1358. }
  1359. func (x *ReplyScripRequest) String() string {
  1360. return protoimpl.X.MessageStringOf(x)
  1361. }
  1362. func (*ReplyScripRequest) ProtoMessage() {}
  1363. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  1364. mi := &file_user_proto_msgTypes[25]
  1365. if protoimpl.UnsafeEnabled && x != nil {
  1366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1367. if ms.LoadMessageInfo() == nil {
  1368. ms.StoreMessageInfo(mi)
  1369. }
  1370. return ms
  1371. }
  1372. return mi.MessageOf(x)
  1373. }
  1374. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  1375. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  1376. return file_user_proto_rawDescGZIP(), []int{25}
  1377. }
  1378. func (x *ReplyScripRequest) GetScripId() int64 {
  1379. if x != nil {
  1380. return x.ScripId
  1381. }
  1382. return 0
  1383. }
  1384. func (x *ReplyScripRequest) GetMessage() *common.Message {
  1385. if x != nil && x.Message != nil {
  1386. return x.Message
  1387. }
  1388. return &common.Message{}
  1389. }
  1390. func (x *ReplyScripRequest) GetMsgType() string {
  1391. if x != nil {
  1392. return x.MsgType
  1393. }
  1394. return ""
  1395. }
  1396. type PersonLookScripRequest struct {
  1397. state protoimpl.MessageState
  1398. sizeCache protoimpl.SizeCache
  1399. unknownFields protoimpl.UnknownFields
  1400. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1401. }
  1402. func (x *PersonLookScripRequest) Reset() {
  1403. *x = PersonLookScripRequest{}
  1404. if protoimpl.UnsafeEnabled {
  1405. mi := &file_user_proto_msgTypes[26]
  1406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1407. ms.StoreMessageInfo(mi)
  1408. }
  1409. }
  1410. func (x *PersonLookScripRequest) String() string {
  1411. return protoimpl.X.MessageStringOf(x)
  1412. }
  1413. func (*PersonLookScripRequest) ProtoMessage() {}
  1414. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  1415. mi := &file_user_proto_msgTypes[26]
  1416. if protoimpl.UnsafeEnabled && x != nil {
  1417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1418. if ms.LoadMessageInfo() == nil {
  1419. ms.StoreMessageInfo(mi)
  1420. }
  1421. return ms
  1422. }
  1423. return mi.MessageOf(x)
  1424. }
  1425. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  1426. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  1427. return file_user_proto_rawDescGZIP(), []int{26}
  1428. }
  1429. func (x *PersonLookScripRequest) GetScripId() int64 {
  1430. if x != nil {
  1431. return x.ScripId
  1432. }
  1433. return 0
  1434. }
  1435. type UserFindScripRequest struct {
  1436. state protoimpl.MessageState
  1437. sizeCache protoimpl.SizeCache
  1438. unknownFields protoimpl.UnknownFields
  1439. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  1440. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  1441. }
  1442. func (x *UserFindScripRequest) Reset() {
  1443. *x = UserFindScripRequest{}
  1444. if protoimpl.UnsafeEnabled {
  1445. mi := &file_user_proto_msgTypes[27]
  1446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1447. ms.StoreMessageInfo(mi)
  1448. }
  1449. }
  1450. func (x *UserFindScripRequest) String() string {
  1451. return protoimpl.X.MessageStringOf(x)
  1452. }
  1453. func (*UserFindScripRequest) ProtoMessage() {}
  1454. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  1455. mi := &file_user_proto_msgTypes[27]
  1456. if protoimpl.UnsafeEnabled && x != nil {
  1457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1458. if ms.LoadMessageInfo() == nil {
  1459. ms.StoreMessageInfo(mi)
  1460. }
  1461. return ms
  1462. }
  1463. return mi.MessageOf(x)
  1464. }
  1465. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  1466. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  1467. return file_user_proto_rawDescGZIP(), []int{27}
  1468. }
  1469. func (x *UserFindScripRequest) GetNextId() int64 {
  1470. if x != nil {
  1471. return x.NextId
  1472. }
  1473. return 0
  1474. }
  1475. func (x *UserFindScripRequest) GetOffset() int64 {
  1476. if x != nil {
  1477. return x.Offset
  1478. }
  1479. return 0
  1480. }
  1481. type DeleteScripRequest struct {
  1482. state protoimpl.MessageState
  1483. sizeCache protoimpl.SizeCache
  1484. unknownFields protoimpl.UnknownFields
  1485. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1486. }
  1487. func (x *DeleteScripRequest) Reset() {
  1488. *x = DeleteScripRequest{}
  1489. if protoimpl.UnsafeEnabled {
  1490. mi := &file_user_proto_msgTypes[28]
  1491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1492. ms.StoreMessageInfo(mi)
  1493. }
  1494. }
  1495. func (x *DeleteScripRequest) String() string {
  1496. return protoimpl.X.MessageStringOf(x)
  1497. }
  1498. func (*DeleteScripRequest) ProtoMessage() {}
  1499. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  1500. mi := &file_user_proto_msgTypes[28]
  1501. if protoimpl.UnsafeEnabled && x != nil {
  1502. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1503. if ms.LoadMessageInfo() == nil {
  1504. ms.StoreMessageInfo(mi)
  1505. }
  1506. return ms
  1507. }
  1508. return mi.MessageOf(x)
  1509. }
  1510. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  1511. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  1512. return file_user_proto_rawDescGZIP(), []int{28}
  1513. }
  1514. func (x *DeleteScripRequest) GetScripId() int64 {
  1515. if x != nil {
  1516. return x.ScripId
  1517. }
  1518. return 0
  1519. }
  1520. type CreateScripRequest struct {
  1521. state protoimpl.MessageState
  1522. sizeCache protoimpl.SizeCache
  1523. unknownFields protoimpl.UnknownFields
  1524. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  1525. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  1526. Province string `protobuf:"bytes,3,opt,name=province,proto3" json:"province"`
  1527. City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city"`
  1528. }
  1529. func (x *CreateScripRequest) Reset() {
  1530. *x = CreateScripRequest{}
  1531. if protoimpl.UnsafeEnabled {
  1532. mi := &file_user_proto_msgTypes[29]
  1533. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1534. ms.StoreMessageInfo(mi)
  1535. }
  1536. }
  1537. func (x *CreateScripRequest) String() string {
  1538. return protoimpl.X.MessageStringOf(x)
  1539. }
  1540. func (*CreateScripRequest) ProtoMessage() {}
  1541. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  1542. mi := &file_user_proto_msgTypes[29]
  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 CreateScripRequest.ProtoReflect.Descriptor instead.
  1553. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  1554. return file_user_proto_rawDescGZIP(), []int{29}
  1555. }
  1556. func (x *CreateScripRequest) GetText() string {
  1557. if x != nil {
  1558. return x.Text
  1559. }
  1560. return ""
  1561. }
  1562. func (x *CreateScripRequest) GetPictureUrl() string {
  1563. if x != nil {
  1564. return x.PictureUrl
  1565. }
  1566. return ""
  1567. }
  1568. func (x *CreateScripRequest) GetProvince() string {
  1569. if x != nil {
  1570. return x.Province
  1571. }
  1572. return ""
  1573. }
  1574. func (x *CreateScripRequest) GetCity() string {
  1575. if x != nil {
  1576. return x.City
  1577. }
  1578. return ""
  1579. }
  1580. type FindMatchingAvatarAndNumReply struct {
  1581. state protoimpl.MessageState
  1582. sizeCache protoimpl.SizeCache
  1583. unknownFields protoimpl.UnknownFields
  1584. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  1585. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  1586. }
  1587. func (x *FindMatchingAvatarAndNumReply) Reset() {
  1588. *x = FindMatchingAvatarAndNumReply{}
  1589. if protoimpl.UnsafeEnabled {
  1590. mi := &file_user_proto_msgTypes[30]
  1591. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1592. ms.StoreMessageInfo(mi)
  1593. }
  1594. }
  1595. func (x *FindMatchingAvatarAndNumReply) String() string {
  1596. return protoimpl.X.MessageStringOf(x)
  1597. }
  1598. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  1599. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  1600. mi := &file_user_proto_msgTypes[30]
  1601. if protoimpl.UnsafeEnabled && x != nil {
  1602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1603. if ms.LoadMessageInfo() == nil {
  1604. ms.StoreMessageInfo(mi)
  1605. }
  1606. return ms
  1607. }
  1608. return mi.MessageOf(x)
  1609. }
  1610. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  1611. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  1612. return file_user_proto_rawDescGZIP(), []int{30}
  1613. }
  1614. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  1615. if x != nil {
  1616. return x.Num
  1617. }
  1618. return 0
  1619. }
  1620. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  1621. if x != nil {
  1622. return x.List
  1623. }
  1624. return make([]string, 0)
  1625. }
  1626. type UserRechargeRequest struct {
  1627. state protoimpl.MessageState
  1628. sizeCache protoimpl.SizeCache
  1629. unknownFields protoimpl.UnknownFields
  1630. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  1631. }
  1632. func (x *UserRechargeRequest) Reset() {
  1633. *x = UserRechargeRequest{}
  1634. if protoimpl.UnsafeEnabled {
  1635. mi := &file_user_proto_msgTypes[31]
  1636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1637. ms.StoreMessageInfo(mi)
  1638. }
  1639. }
  1640. func (x *UserRechargeRequest) String() string {
  1641. return protoimpl.X.MessageStringOf(x)
  1642. }
  1643. func (*UserRechargeRequest) ProtoMessage() {}
  1644. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  1645. mi := &file_user_proto_msgTypes[31]
  1646. if protoimpl.UnsafeEnabled && x != nil {
  1647. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1648. if ms.LoadMessageInfo() == nil {
  1649. ms.StoreMessageInfo(mi)
  1650. }
  1651. return ms
  1652. }
  1653. return mi.MessageOf(x)
  1654. }
  1655. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  1656. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  1657. return file_user_proto_rawDescGZIP(), []int{31}
  1658. }
  1659. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  1660. if x != nil {
  1661. return x.RechargeTemplateId
  1662. }
  1663. return 0
  1664. }
  1665. type RechargeList struct {
  1666. state protoimpl.MessageState
  1667. sizeCache protoimpl.SizeCache
  1668. unknownFields protoimpl.UnknownFields
  1669. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1670. }
  1671. func (x *RechargeList) Reset() {
  1672. *x = RechargeList{}
  1673. if protoimpl.UnsafeEnabled {
  1674. mi := &file_user_proto_msgTypes[32]
  1675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1676. ms.StoreMessageInfo(mi)
  1677. }
  1678. }
  1679. func (x *RechargeList) String() string {
  1680. return protoimpl.X.MessageStringOf(x)
  1681. }
  1682. func (*RechargeList) ProtoMessage() {}
  1683. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1684. mi := &file_user_proto_msgTypes[32]
  1685. if protoimpl.UnsafeEnabled && x != nil {
  1686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1687. if ms.LoadMessageInfo() == nil {
  1688. ms.StoreMessageInfo(mi)
  1689. }
  1690. return ms
  1691. }
  1692. return mi.MessageOf(x)
  1693. }
  1694. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1695. func (*RechargeList) Descriptor() ([]byte, []int) {
  1696. return file_user_proto_rawDescGZIP(), []int{32}
  1697. }
  1698. func (x *RechargeList) GetList() []*RechargeInfo {
  1699. if x != nil {
  1700. return x.List
  1701. }
  1702. return make([]*RechargeInfo, 0)
  1703. }
  1704. type VipRechargeList struct {
  1705. state protoimpl.MessageState
  1706. sizeCache protoimpl.SizeCache
  1707. unknownFields protoimpl.UnknownFields
  1708. List []*VipRechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1709. }
  1710. func (x *VipRechargeList) Reset() {
  1711. *x = VipRechargeList{}
  1712. if protoimpl.UnsafeEnabled {
  1713. mi := &file_user_proto_msgTypes[33]
  1714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1715. ms.StoreMessageInfo(mi)
  1716. }
  1717. }
  1718. func (x *VipRechargeList) String() string {
  1719. return protoimpl.X.MessageStringOf(x)
  1720. }
  1721. func (*VipRechargeList) ProtoMessage() {}
  1722. func (x *VipRechargeList) ProtoReflect() protoreflect.Message {
  1723. mi := &file_user_proto_msgTypes[33]
  1724. if protoimpl.UnsafeEnabled && x != nil {
  1725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1726. if ms.LoadMessageInfo() == nil {
  1727. ms.StoreMessageInfo(mi)
  1728. }
  1729. return ms
  1730. }
  1731. return mi.MessageOf(x)
  1732. }
  1733. // Deprecated: Use VipRechargeList.ProtoReflect.Descriptor instead.
  1734. func (*VipRechargeList) Descriptor() ([]byte, []int) {
  1735. return file_user_proto_rawDescGZIP(), []int{33}
  1736. }
  1737. func (x *VipRechargeList) GetList() []*VipRechargeInfo {
  1738. if x != nil {
  1739. return x.List
  1740. }
  1741. return make([]*VipRechargeInfo, 0)
  1742. }
  1743. type VipRechargeInfo struct {
  1744. state protoimpl.MessageState
  1745. sizeCache protoimpl.SizeCache
  1746. unknownFields protoimpl.UnknownFields
  1747. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1748. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label"` // 标题
  1749. Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"` // 价格
  1750. OriginPrice int64 `protobuf:"varint,4,opt,name=originPrice,proto3" json:"originPrice"` // 原价
  1751. AveragePerDayPrice int64 `protobuf:"varint,5,opt,name=averagePerDayPrice,proto3" json:"averagePerDayPrice"` // 日常价格
  1752. AdditionalCoin int64 `protobuf:"varint,6,opt,name=additionalCoin,proto3" json:"additionalCoin"` // 赠送的积分
  1753. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` // 描述
  1754. }
  1755. func (x *VipRechargeInfo) Reset() {
  1756. *x = VipRechargeInfo{}
  1757. if protoimpl.UnsafeEnabled {
  1758. mi := &file_user_proto_msgTypes[34]
  1759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1760. ms.StoreMessageInfo(mi)
  1761. }
  1762. }
  1763. func (x *VipRechargeInfo) String() string {
  1764. return protoimpl.X.MessageStringOf(x)
  1765. }
  1766. func (*VipRechargeInfo) ProtoMessage() {}
  1767. func (x *VipRechargeInfo) ProtoReflect() protoreflect.Message {
  1768. mi := &file_user_proto_msgTypes[34]
  1769. if protoimpl.UnsafeEnabled && x != nil {
  1770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1771. if ms.LoadMessageInfo() == nil {
  1772. ms.StoreMessageInfo(mi)
  1773. }
  1774. return ms
  1775. }
  1776. return mi.MessageOf(x)
  1777. }
  1778. // Deprecated: Use VipRechargeInfo.ProtoReflect.Descriptor instead.
  1779. func (*VipRechargeInfo) Descriptor() ([]byte, []int) {
  1780. return file_user_proto_rawDescGZIP(), []int{34}
  1781. }
  1782. func (x *VipRechargeInfo) GetId() int64 {
  1783. if x != nil {
  1784. return x.Id
  1785. }
  1786. return 0
  1787. }
  1788. func (x *VipRechargeInfo) GetLabel() string {
  1789. if x != nil {
  1790. return x.Label
  1791. }
  1792. return ""
  1793. }
  1794. func (x *VipRechargeInfo) GetPrice() int64 {
  1795. if x != nil {
  1796. return x.Price
  1797. }
  1798. return 0
  1799. }
  1800. func (x *VipRechargeInfo) GetOriginPrice() int64 {
  1801. if x != nil {
  1802. return x.OriginPrice
  1803. }
  1804. return 0
  1805. }
  1806. func (x *VipRechargeInfo) GetAveragePerDayPrice() int64 {
  1807. if x != nil {
  1808. return x.AveragePerDayPrice
  1809. }
  1810. return 0
  1811. }
  1812. func (x *VipRechargeInfo) GetAdditionalCoin() int64 {
  1813. if x != nil {
  1814. return x.AdditionalCoin
  1815. }
  1816. return 0
  1817. }
  1818. func (x *VipRechargeInfo) GetDescription() string {
  1819. if x != nil {
  1820. return x.Description
  1821. }
  1822. return ""
  1823. }
  1824. type RechargeInfo struct {
  1825. state protoimpl.MessageState
  1826. sizeCache protoimpl.SizeCache
  1827. unknownFields protoimpl.UnknownFields
  1828. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1829. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1830. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1831. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1832. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1833. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1834. }
  1835. func (x *RechargeInfo) Reset() {
  1836. *x = RechargeInfo{}
  1837. if protoimpl.UnsafeEnabled {
  1838. mi := &file_user_proto_msgTypes[35]
  1839. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1840. ms.StoreMessageInfo(mi)
  1841. }
  1842. }
  1843. func (x *RechargeInfo) String() string {
  1844. return protoimpl.X.MessageStringOf(x)
  1845. }
  1846. func (*RechargeInfo) ProtoMessage() {}
  1847. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  1848. mi := &file_user_proto_msgTypes[35]
  1849. if protoimpl.UnsafeEnabled && x != nil {
  1850. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1851. if ms.LoadMessageInfo() == nil {
  1852. ms.StoreMessageInfo(mi)
  1853. }
  1854. return ms
  1855. }
  1856. return mi.MessageOf(x)
  1857. }
  1858. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  1859. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  1860. return file_user_proto_rawDescGZIP(), []int{35}
  1861. }
  1862. func (x *RechargeInfo) GetId() int64 {
  1863. if x != nil {
  1864. return x.Id
  1865. }
  1866. return 0
  1867. }
  1868. func (x *RechargeInfo) GetPrice() int64 {
  1869. if x != nil {
  1870. return x.Price
  1871. }
  1872. return 0
  1873. }
  1874. func (x *RechargeInfo) GetCredit() int64 {
  1875. if x != nil {
  1876. return x.Credit
  1877. }
  1878. return 0
  1879. }
  1880. func (x *RechargeInfo) GetGiveCredit() int64 {
  1881. if x != nil {
  1882. return x.GiveCredit
  1883. }
  1884. return 0
  1885. }
  1886. func (x *RechargeInfo) GetDescription() string {
  1887. if x != nil {
  1888. return x.Description
  1889. }
  1890. return ""
  1891. }
  1892. func (x *RechargeInfo) GetTitle() string {
  1893. if x != nil {
  1894. return x.Title
  1895. }
  1896. return ""
  1897. }
  1898. type InformationStatus struct {
  1899. state protoimpl.MessageState
  1900. sizeCache protoimpl.SizeCache
  1901. unknownFields protoimpl.UnknownFields
  1902. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  1903. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  1904. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 奖励的金额
  1905. }
  1906. func (x *InformationStatus) Reset() {
  1907. *x = InformationStatus{}
  1908. if protoimpl.UnsafeEnabled {
  1909. mi := &file_user_proto_msgTypes[36]
  1910. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1911. ms.StoreMessageInfo(mi)
  1912. }
  1913. }
  1914. func (x *InformationStatus) String() string {
  1915. return protoimpl.X.MessageStringOf(x)
  1916. }
  1917. func (*InformationStatus) ProtoMessage() {}
  1918. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  1919. mi := &file_user_proto_msgTypes[36]
  1920. if protoimpl.UnsafeEnabled && x != nil {
  1921. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1922. if ms.LoadMessageInfo() == nil {
  1923. ms.StoreMessageInfo(mi)
  1924. }
  1925. return ms
  1926. }
  1927. return mi.MessageOf(x)
  1928. }
  1929. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  1930. func (*InformationStatus) Descriptor() ([]byte, []int) {
  1931. return file_user_proto_rawDescGZIP(), []int{36}
  1932. }
  1933. func (x *InformationStatus) GetIsFinishInformation() bool {
  1934. if x != nil {
  1935. return x.IsFinishInformation
  1936. }
  1937. return false
  1938. }
  1939. func (x *InformationStatus) GetIsGetAward() bool {
  1940. if x != nil {
  1941. return x.IsGetAward
  1942. }
  1943. return false
  1944. }
  1945. func (x *InformationStatus) GetCredit() int64 {
  1946. if x != nil {
  1947. return x.Credit
  1948. }
  1949. return 0
  1950. }
  1951. type UserBalance struct {
  1952. state protoimpl.MessageState
  1953. sizeCache protoimpl.SizeCache
  1954. unknownFields protoimpl.UnknownFields
  1955. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1956. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  1957. }
  1958. func (x *UserBalance) Reset() {
  1959. *x = UserBalance{}
  1960. if protoimpl.UnsafeEnabled {
  1961. mi := &file_user_proto_msgTypes[37]
  1962. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1963. ms.StoreMessageInfo(mi)
  1964. }
  1965. }
  1966. func (x *UserBalance) String() string {
  1967. return protoimpl.X.MessageStringOf(x)
  1968. }
  1969. func (*UserBalance) ProtoMessage() {}
  1970. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  1971. mi := &file_user_proto_msgTypes[37]
  1972. if protoimpl.UnsafeEnabled && x != nil {
  1973. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1974. if ms.LoadMessageInfo() == nil {
  1975. ms.StoreMessageInfo(mi)
  1976. }
  1977. return ms
  1978. }
  1979. return mi.MessageOf(x)
  1980. }
  1981. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  1982. func (*UserBalance) Descriptor() ([]byte, []int) {
  1983. return file_user_proto_rawDescGZIP(), []int{37}
  1984. }
  1985. func (x *UserBalance) GetId() string {
  1986. if x != nil {
  1987. return x.Id
  1988. }
  1989. return ""
  1990. }
  1991. func (x *UserBalance) GetCredit() int64 {
  1992. if x != nil {
  1993. return x.Credit
  1994. }
  1995. return 0
  1996. }
  1997. type UserFindChatListReply struct {
  1998. state protoimpl.MessageState
  1999. sizeCache protoimpl.SizeCache
  2000. unknownFields protoimpl.UnknownFields
  2001. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2002. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2003. }
  2004. func (x *UserFindChatListReply) Reset() {
  2005. *x = UserFindChatListReply{}
  2006. if protoimpl.UnsafeEnabled {
  2007. mi := &file_user_proto_msgTypes[38]
  2008. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2009. ms.StoreMessageInfo(mi)
  2010. }
  2011. }
  2012. func (x *UserFindChatListReply) String() string {
  2013. return protoimpl.X.MessageStringOf(x)
  2014. }
  2015. func (*UserFindChatListReply) ProtoMessage() {}
  2016. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  2017. mi := &file_user_proto_msgTypes[38]
  2018. if protoimpl.UnsafeEnabled && x != nil {
  2019. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2020. if ms.LoadMessageInfo() == nil {
  2021. ms.StoreMessageInfo(mi)
  2022. }
  2023. return ms
  2024. }
  2025. return mi.MessageOf(x)
  2026. }
  2027. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  2028. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  2029. return file_user_proto_rawDescGZIP(), []int{38}
  2030. }
  2031. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  2032. if x != nil {
  2033. return x.List
  2034. }
  2035. return make([]*UserChatInfo, 0)
  2036. }
  2037. func (x *UserFindChatListReply) GetNextId() int64 {
  2038. if x != nil {
  2039. return x.NextId
  2040. }
  2041. return 0
  2042. }
  2043. type UserChatInfo struct {
  2044. state protoimpl.MessageState
  2045. sizeCache protoimpl.SizeCache
  2046. unknownFields protoimpl.UnknownFields
  2047. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  2048. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  2049. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  2050. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  2051. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  2052. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  2053. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  2054. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2055. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  2056. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  2057. IsVip bool `protobuf:"varint,15,opt,name=isVip,proto3" json:"isVip"` // 是否是Vip
  2058. VipLevel int64 `protobuf:"varint,16,opt,name=vipLevel,proto3" json:"vipLevel"` // vip等级
  2059. IsYearVip bool `protobuf:"varint,17,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费Vip
  2060. VipFunctions []string `protobuf:"bytes,18,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  2061. IsCertification bool `protobuf:"varint,26,opt,name=isCertification,proto3" json:"isCertification"` // 是否实名认证
  2062. }
  2063. func (x *UserChatInfo) Reset() {
  2064. *x = UserChatInfo{}
  2065. if protoimpl.UnsafeEnabled {
  2066. mi := &file_user_proto_msgTypes[39]
  2067. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2068. ms.StoreMessageInfo(mi)
  2069. }
  2070. }
  2071. func (x *UserChatInfo) String() string {
  2072. return protoimpl.X.MessageStringOf(x)
  2073. }
  2074. func (*UserChatInfo) ProtoMessage() {}
  2075. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  2076. mi := &file_user_proto_msgTypes[39]
  2077. if protoimpl.UnsafeEnabled && x != nil {
  2078. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2079. if ms.LoadMessageInfo() == nil {
  2080. ms.StoreMessageInfo(mi)
  2081. }
  2082. return ms
  2083. }
  2084. return mi.MessageOf(x)
  2085. }
  2086. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  2087. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  2088. return file_user_proto_rawDescGZIP(), []int{39}
  2089. }
  2090. func (x *UserChatInfo) GetPersonId() string {
  2091. if x != nil {
  2092. return x.PersonId
  2093. }
  2094. return ""
  2095. }
  2096. func (x *UserChatInfo) GetUnreadNum() int64 {
  2097. if x != nil {
  2098. return x.UnreadNum
  2099. }
  2100. return 0
  2101. }
  2102. func (x *UserChatInfo) GetLastContent() string {
  2103. if x != nil {
  2104. return x.LastContent
  2105. }
  2106. return ""
  2107. }
  2108. func (x *UserChatInfo) GetLastTime() int64 {
  2109. if x != nil {
  2110. return x.LastTime
  2111. }
  2112. return 0
  2113. }
  2114. func (x *UserChatInfo) GetLikeability() int64 {
  2115. if x != nil {
  2116. return x.Likeability
  2117. }
  2118. return 0
  2119. }
  2120. func (x *UserChatInfo) GetSex() int64 {
  2121. if x != nil {
  2122. return x.Sex
  2123. }
  2124. return 0
  2125. }
  2126. func (x *UserChatInfo) GetAvatarUrl() string {
  2127. if x != nil {
  2128. return x.AvatarUrl
  2129. }
  2130. return ""
  2131. }
  2132. func (x *UserChatInfo) GetNickname() string {
  2133. if x != nil {
  2134. return x.Nickname
  2135. }
  2136. return ""
  2137. }
  2138. func (x *UserChatInfo) GetAge() int64 {
  2139. if x != nil {
  2140. return x.Age
  2141. }
  2142. return 0
  2143. }
  2144. func (x *UserChatInfo) GetRoomId() int64 {
  2145. if x != nil {
  2146. return x.RoomId
  2147. }
  2148. return 0
  2149. }
  2150. func (x *UserChatInfo) GetIsVip() bool {
  2151. if x != nil {
  2152. return x.IsVip
  2153. }
  2154. return false
  2155. }
  2156. func (x *UserChatInfo) GetVipLevel() int64 {
  2157. if x != nil {
  2158. return x.VipLevel
  2159. }
  2160. return 0
  2161. }
  2162. func (x *UserChatInfo) GetIsYearVip() bool {
  2163. if x != nil {
  2164. return x.IsYearVip
  2165. }
  2166. return false
  2167. }
  2168. func (x *UserChatInfo) GetVipFunctions() []string {
  2169. if x != nil {
  2170. return x.VipFunctions
  2171. }
  2172. return make([]string, 0)
  2173. }
  2174. func (x *UserChatInfo) GetIsCertification() bool {
  2175. if x != nil {
  2176. return x.IsCertification
  2177. }
  2178. return false
  2179. }
  2180. type UserInfo struct {
  2181. state protoimpl.MessageState
  2182. sizeCache protoimpl.SizeCache
  2183. unknownFields protoimpl.UnknownFields
  2184. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2185. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2186. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  2187. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  2188. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  2189. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  2190. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  2191. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  2192. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  2193. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  2194. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  2195. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  2196. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  2197. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  2198. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  2199. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  2200. UpdateNicknameNum int64 `protobuf:"varint,17,opt,name=UpdateNicknameNum,proto3" json:"UpdateNicknameNum"` // 今日更新昵称数
  2201. UpdateAvatarUrlNum int64 `protobuf:"varint,18,opt,name=UpdateAvatarUrlNum,proto3" json:"UpdateAvatarUrlNum"` // 今日更新头像数
  2202. UpdatePicturesNum int64 `protobuf:"varint,19,opt,name=UpdatePicturesNum,proto3" json:"UpdatePicturesNum"` // 今日更新相册数
  2203. UpdateSignatureNum int64 `protobuf:"varint,20,opt,name=UpdateSignatureNum,proto3" json:"UpdateSignatureNum"` // 今日更新签名数
  2204. Phone string `protobuf:"bytes,21,opt,name=phone,proto3" json:"phone"` // 手机号
  2205. IsCertification bool `protobuf:"varint,28,opt,name=isCertification,proto3" json:"isCertification"` // 是否实名认证
  2206. }
  2207. func (x *UserInfo) Reset() {
  2208. *x = UserInfo{}
  2209. if protoimpl.UnsafeEnabled {
  2210. mi := &file_user_proto_msgTypes[40]
  2211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2212. ms.StoreMessageInfo(mi)
  2213. }
  2214. }
  2215. func (x *UserInfo) String() string {
  2216. return protoimpl.X.MessageStringOf(x)
  2217. }
  2218. func (*UserInfo) ProtoMessage() {}
  2219. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  2220. mi := &file_user_proto_msgTypes[40]
  2221. if protoimpl.UnsafeEnabled && x != nil {
  2222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2223. if ms.LoadMessageInfo() == nil {
  2224. ms.StoreMessageInfo(mi)
  2225. }
  2226. return ms
  2227. }
  2228. return mi.MessageOf(x)
  2229. }
  2230. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  2231. func (*UserInfo) Descriptor() ([]byte, []int) {
  2232. return file_user_proto_rawDescGZIP(), []int{40}
  2233. }
  2234. func (x *UserInfo) GetId() string {
  2235. if x != nil {
  2236. return x.Id
  2237. }
  2238. return ""
  2239. }
  2240. func (x *UserInfo) GetNickname() string {
  2241. if x != nil {
  2242. return x.Nickname
  2243. }
  2244. return ""
  2245. }
  2246. func (x *UserInfo) GetAvatarUrl() string {
  2247. if x != nil {
  2248. return x.AvatarUrl
  2249. }
  2250. return ""
  2251. }
  2252. func (x *UserInfo) GetAge() int64 {
  2253. if x != nil {
  2254. return x.Age
  2255. }
  2256. return 0
  2257. }
  2258. func (x *UserInfo) GetSex() int64 {
  2259. if x != nil {
  2260. return x.Sex
  2261. }
  2262. return 0
  2263. }
  2264. func (x *UserInfo) GetConstellation() string {
  2265. if x != nil {
  2266. return x.Constellation
  2267. }
  2268. return ""
  2269. }
  2270. func (x *UserInfo) GetCredit() int64 {
  2271. if x != nil {
  2272. return x.Credit
  2273. }
  2274. return 0
  2275. }
  2276. func (x *UserInfo) GetTagList() []int64 {
  2277. if x != nil {
  2278. return x.TagList
  2279. }
  2280. return make([]int64, 0)
  2281. }
  2282. func (x *UserInfo) GetSignature() string {
  2283. if x != nil {
  2284. return x.Signature
  2285. }
  2286. return ""
  2287. }
  2288. func (x *UserInfo) GetIntroduceVoice() string {
  2289. if x != nil {
  2290. return x.IntroduceVoice
  2291. }
  2292. return ""
  2293. }
  2294. func (x *UserInfo) GetProvince() string {
  2295. if x != nil {
  2296. return x.Province
  2297. }
  2298. return ""
  2299. }
  2300. func (x *UserInfo) GetCity() string {
  2301. if x != nil {
  2302. return x.City
  2303. }
  2304. return ""
  2305. }
  2306. func (x *UserInfo) GetArea() string {
  2307. if x != nil {
  2308. return x.Area
  2309. }
  2310. return ""
  2311. }
  2312. func (x *UserInfo) GetUserId() int64 {
  2313. if x != nil {
  2314. return x.UserId
  2315. }
  2316. return 0
  2317. }
  2318. func (x *UserInfo) GetIsBlack() bool {
  2319. if x != nil {
  2320. return x.IsBlack
  2321. }
  2322. return false
  2323. }
  2324. func (x *UserInfo) GetIsRegister() bool {
  2325. if x != nil {
  2326. return x.IsRegister
  2327. }
  2328. return false
  2329. }
  2330. func (x *UserInfo) GetUpdateNicknameNum() int64 {
  2331. if x != nil {
  2332. return x.UpdateNicknameNum
  2333. }
  2334. return 0
  2335. }
  2336. func (x *UserInfo) GetUpdateAvatarUrlNum() int64 {
  2337. if x != nil {
  2338. return x.UpdateAvatarUrlNum
  2339. }
  2340. return 0
  2341. }
  2342. func (x *UserInfo) GetUpdatePicturesNum() int64 {
  2343. if x != nil {
  2344. return x.UpdatePicturesNum
  2345. }
  2346. return 0
  2347. }
  2348. func (x *UserInfo) GetUpdateSignatureNum() int64 {
  2349. if x != nil {
  2350. return x.UpdateSignatureNum
  2351. }
  2352. return 0
  2353. }
  2354. func (x *UserInfo) GetPhone() string {
  2355. if x != nil {
  2356. return x.Phone
  2357. }
  2358. return ""
  2359. }
  2360. func (x *UserInfo) GetIsCertification() bool {
  2361. if x != nil {
  2362. return x.IsCertification
  2363. }
  2364. return false
  2365. }
  2366. type KeyRequest struct {
  2367. state protoimpl.MessageState
  2368. sizeCache protoimpl.SizeCache
  2369. unknownFields protoimpl.UnknownFields
  2370. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  2371. }
  2372. func (x *KeyRequest) Reset() {
  2373. *x = KeyRequest{}
  2374. if protoimpl.UnsafeEnabled {
  2375. mi := &file_user_proto_msgTypes[41]
  2376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2377. ms.StoreMessageInfo(mi)
  2378. }
  2379. }
  2380. func (x *KeyRequest) String() string {
  2381. return protoimpl.X.MessageStringOf(x)
  2382. }
  2383. func (*KeyRequest) ProtoMessage() {}
  2384. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  2385. mi := &file_user_proto_msgTypes[41]
  2386. if protoimpl.UnsafeEnabled && x != nil {
  2387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2388. if ms.LoadMessageInfo() == nil {
  2389. ms.StoreMessageInfo(mi)
  2390. }
  2391. return ms
  2392. }
  2393. return mi.MessageOf(x)
  2394. }
  2395. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  2396. func (*KeyRequest) Descriptor() ([]byte, []int) {
  2397. return file_user_proto_rawDescGZIP(), []int{41}
  2398. }
  2399. func (x *KeyRequest) GetKey() string {
  2400. if x != nil {
  2401. return x.Key
  2402. }
  2403. return ""
  2404. }
  2405. type CreatePayRequest struct {
  2406. state protoimpl.MessageState
  2407. sizeCache protoimpl.SizeCache
  2408. unknownFields protoimpl.UnknownFields
  2409. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  2410. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2411. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  2412. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  2413. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  2414. }
  2415. func (x *CreatePayRequest) Reset() {
  2416. *x = CreatePayRequest{}
  2417. if protoimpl.UnsafeEnabled {
  2418. mi := &file_user_proto_msgTypes[42]
  2419. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2420. ms.StoreMessageInfo(mi)
  2421. }
  2422. }
  2423. func (x *CreatePayRequest) String() string {
  2424. return protoimpl.X.MessageStringOf(x)
  2425. }
  2426. func (*CreatePayRequest) ProtoMessage() {}
  2427. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  2428. mi := &file_user_proto_msgTypes[42]
  2429. if protoimpl.UnsafeEnabled && x != nil {
  2430. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2431. if ms.LoadMessageInfo() == nil {
  2432. ms.StoreMessageInfo(mi)
  2433. }
  2434. return ms
  2435. }
  2436. return mi.MessageOf(x)
  2437. }
  2438. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  2439. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  2440. return file_user_proto_rawDescGZIP(), []int{42}
  2441. }
  2442. func (x *CreatePayRequest) GetMoney() int64 {
  2443. if x != nil {
  2444. return x.Money
  2445. }
  2446. return 0
  2447. }
  2448. func (x *CreatePayRequest) GetType() string {
  2449. if x != nil {
  2450. return x.Type
  2451. }
  2452. return ""
  2453. }
  2454. func (x *CreatePayRequest) GetOpenId() string {
  2455. if x != nil {
  2456. return x.OpenId
  2457. }
  2458. return ""
  2459. }
  2460. func (x *CreatePayRequest) GetDescription() string {
  2461. if x != nil {
  2462. return x.Description
  2463. }
  2464. return ""
  2465. }
  2466. func (x *CreatePayRequest) GetAttach() string {
  2467. if x != nil {
  2468. return x.Attach
  2469. }
  2470. return ""
  2471. }
  2472. type PayInfo struct {
  2473. state protoimpl.MessageState
  2474. sizeCache protoimpl.SizeCache
  2475. unknownFields protoimpl.UnknownFields
  2476. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  2477. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  2478. }
  2479. func (x *PayInfo) Reset() {
  2480. *x = PayInfo{}
  2481. if protoimpl.UnsafeEnabled {
  2482. mi := &file_user_proto_msgTypes[43]
  2483. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2484. ms.StoreMessageInfo(mi)
  2485. }
  2486. }
  2487. func (x *PayInfo) String() string {
  2488. return protoimpl.X.MessageStringOf(x)
  2489. }
  2490. func (*PayInfo) ProtoMessage() {}
  2491. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  2492. mi := &file_user_proto_msgTypes[43]
  2493. if protoimpl.UnsafeEnabled && x != nil {
  2494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2495. if ms.LoadMessageInfo() == nil {
  2496. ms.StoreMessageInfo(mi)
  2497. }
  2498. return ms
  2499. }
  2500. return mi.MessageOf(x)
  2501. }
  2502. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  2503. func (*PayInfo) Descriptor() ([]byte, []int) {
  2504. return file_user_proto_rawDescGZIP(), []int{43}
  2505. }
  2506. func (x *PayInfo) GetPayInfo() *structpb.Value {
  2507. if x != nil && x.PayInfo != nil {
  2508. return x.PayInfo
  2509. }
  2510. return &structpb.Value{}
  2511. }
  2512. func (x *PayInfo) GetOrderId() int64 {
  2513. if x != nil {
  2514. return x.OrderId
  2515. }
  2516. return 0
  2517. }
  2518. type PayOrderInfo struct {
  2519. state protoimpl.MessageState
  2520. sizeCache protoimpl.SizeCache
  2521. unknownFields protoimpl.UnknownFields
  2522. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  2523. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  2524. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  2525. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  2526. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  2527. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  2528. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  2529. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  2530. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  2531. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  2532. }
  2533. func (x *PayOrderInfo) Reset() {
  2534. *x = PayOrderInfo{}
  2535. if protoimpl.UnsafeEnabled {
  2536. mi := &file_user_proto_msgTypes[44]
  2537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2538. ms.StoreMessageInfo(mi)
  2539. }
  2540. }
  2541. func (x *PayOrderInfo) String() string {
  2542. return protoimpl.X.MessageStringOf(x)
  2543. }
  2544. func (*PayOrderInfo) ProtoMessage() {}
  2545. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  2546. mi := &file_user_proto_msgTypes[44]
  2547. if protoimpl.UnsafeEnabled && x != nil {
  2548. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2549. if ms.LoadMessageInfo() == nil {
  2550. ms.StoreMessageInfo(mi)
  2551. }
  2552. return ms
  2553. }
  2554. return mi.MessageOf(x)
  2555. }
  2556. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  2557. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  2558. return file_user_proto_rawDescGZIP(), []int{44}
  2559. }
  2560. func (x *PayOrderInfo) GetUserID() string {
  2561. if x != nil {
  2562. return x.UserID
  2563. }
  2564. return ""
  2565. }
  2566. func (x *PayOrderInfo) GetOrderID() int64 {
  2567. if x != nil {
  2568. return x.OrderID
  2569. }
  2570. return 0
  2571. }
  2572. func (x *PayOrderInfo) GetMoney() int64 {
  2573. if x != nil {
  2574. return x.Money
  2575. }
  2576. return 0
  2577. }
  2578. func (x *PayOrderInfo) GetType() string {
  2579. if x != nil {
  2580. return x.Type
  2581. }
  2582. return ""
  2583. }
  2584. func (x *PayOrderInfo) GetTransactionID() string {
  2585. if x != nil {
  2586. return x.TransactionID
  2587. }
  2588. return ""
  2589. }
  2590. func (x *PayOrderInfo) GetOpenId() string {
  2591. if x != nil {
  2592. return x.OpenId
  2593. }
  2594. return ""
  2595. }
  2596. func (x *PayOrderInfo) GetDescription() string {
  2597. if x != nil {
  2598. return x.Description
  2599. }
  2600. return ""
  2601. }
  2602. func (x *PayOrderInfo) GetStatus() string {
  2603. if x != nil {
  2604. return x.Status
  2605. }
  2606. return ""
  2607. }
  2608. func (x *PayOrderInfo) GetPayTime() int64 {
  2609. if x != nil {
  2610. return x.PayTime
  2611. }
  2612. return 0
  2613. }
  2614. func (x *PayOrderInfo) GetCreateTime() int64 {
  2615. if x != nil {
  2616. return x.CreateTime
  2617. }
  2618. return 0
  2619. }
  2620. type PayOrderList struct {
  2621. state protoimpl.MessageState
  2622. sizeCache protoimpl.SizeCache
  2623. unknownFields protoimpl.UnknownFields
  2624. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2625. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2626. }
  2627. func (x *PayOrderList) Reset() {
  2628. *x = PayOrderList{}
  2629. if protoimpl.UnsafeEnabled {
  2630. mi := &file_user_proto_msgTypes[45]
  2631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2632. ms.StoreMessageInfo(mi)
  2633. }
  2634. }
  2635. func (x *PayOrderList) String() string {
  2636. return protoimpl.X.MessageStringOf(x)
  2637. }
  2638. func (*PayOrderList) ProtoMessage() {}
  2639. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  2640. mi := &file_user_proto_msgTypes[45]
  2641. if protoimpl.UnsafeEnabled && x != nil {
  2642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2643. if ms.LoadMessageInfo() == nil {
  2644. ms.StoreMessageInfo(mi)
  2645. }
  2646. return ms
  2647. }
  2648. return mi.MessageOf(x)
  2649. }
  2650. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  2651. func (*PayOrderList) Descriptor() ([]byte, []int) {
  2652. return file_user_proto_rawDescGZIP(), []int{45}
  2653. }
  2654. func (x *PayOrderList) GetList() []*PayOrderInfo {
  2655. if x != nil {
  2656. return x.List
  2657. }
  2658. return make([]*PayOrderInfo, 0)
  2659. }
  2660. func (x *PayOrderList) GetNextId() int64 {
  2661. if x != nil {
  2662. return x.NextId
  2663. }
  2664. return 0
  2665. }
  2666. type FindPayOrderListRequest struct {
  2667. state protoimpl.MessageState
  2668. sizeCache protoimpl.SizeCache
  2669. unknownFields protoimpl.UnknownFields
  2670. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2671. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2672. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  2673. }
  2674. func (x *FindPayOrderListRequest) Reset() {
  2675. *x = FindPayOrderListRequest{}
  2676. if protoimpl.UnsafeEnabled {
  2677. mi := &file_user_proto_msgTypes[46]
  2678. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2679. ms.StoreMessageInfo(mi)
  2680. }
  2681. }
  2682. func (x *FindPayOrderListRequest) String() string {
  2683. return protoimpl.X.MessageStringOf(x)
  2684. }
  2685. func (*FindPayOrderListRequest) ProtoMessage() {}
  2686. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  2687. mi := &file_user_proto_msgTypes[46]
  2688. if protoimpl.UnsafeEnabled && x != nil {
  2689. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2690. if ms.LoadMessageInfo() == nil {
  2691. ms.StoreMessageInfo(mi)
  2692. }
  2693. return ms
  2694. }
  2695. return mi.MessageOf(x)
  2696. }
  2697. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  2698. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  2699. return file_user_proto_rawDescGZIP(), []int{46}
  2700. }
  2701. func (x *FindPayOrderListRequest) GetNextId() int64 {
  2702. if x != nil {
  2703. return x.NextId
  2704. }
  2705. return 0
  2706. }
  2707. func (x *FindPayOrderListRequest) GetOffset() int64 {
  2708. if x != nil {
  2709. return x.Offset
  2710. }
  2711. return 0
  2712. }
  2713. func (x *FindPayOrderListRequest) GetStatus() string {
  2714. if x != nil {
  2715. return x.Status
  2716. }
  2717. return ""
  2718. }
  2719. type PayCallbackReply struct {
  2720. state protoimpl.MessageState
  2721. sizeCache protoimpl.SizeCache
  2722. unknownFields protoimpl.UnknownFields
  2723. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  2724. }
  2725. func (x *PayCallbackReply) Reset() {
  2726. *x = PayCallbackReply{}
  2727. if protoimpl.UnsafeEnabled {
  2728. mi := &file_user_proto_msgTypes[47]
  2729. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2730. ms.StoreMessageInfo(mi)
  2731. }
  2732. }
  2733. func (x *PayCallbackReply) String() string {
  2734. return protoimpl.X.MessageStringOf(x)
  2735. }
  2736. func (*PayCallbackReply) ProtoMessage() {}
  2737. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  2738. mi := &file_user_proto_msgTypes[47]
  2739. if protoimpl.UnsafeEnabled && x != nil {
  2740. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2741. if ms.LoadMessageInfo() == nil {
  2742. ms.StoreMessageInfo(mi)
  2743. }
  2744. return ms
  2745. }
  2746. return mi.MessageOf(x)
  2747. }
  2748. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  2749. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  2750. return file_user_proto_rawDescGZIP(), []int{47}
  2751. }
  2752. func (x *PayCallbackReply) GetResult() []byte {
  2753. if x != nil {
  2754. return x.Result
  2755. }
  2756. return make([]byte, 0)
  2757. }
  2758. var File_user_proto protoreflect.FileDescriptor
  2759. var file_user_proto_rawDesc = []byte{
  2760. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  2761. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  2762. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  2763. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  2764. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2765. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2766. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  2767. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  2768. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2769. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  2770. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  2771. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x36,
  2772. 0x0a, 0x14, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69,
  2773. 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x4e, 0x65, 0x78, 0x74,
  2774. 0x4c, 0x6f, 0x63, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x4e, 0x65,
  2775. 0x78, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x22, 0xae, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74,
  2776. 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  2777. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  2778. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x3e, 0x0a, 0x1a, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65,
  2779. 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72,
  2780. 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x1a, 0x74, 0x6f, 0x64, 0x61, 0x79,
  2781. 0x53, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  2782. 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x40, 0x0a, 0x1b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65,
  2783. 0x6e, 0x64, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65,
  2784. 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x1b, 0x74, 0x6f, 0x64, 0x61,
  2785. 0x79, 0x53, 0x65, 0x6e, 0x64, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x6d, 0x69,
  2786. 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x22, 0x6f, 0x0a, 0x21, 0x55, 0x70, 0x64, 0x61, 0x74,
  2787. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  2788. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  2789. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
  2790. 0x65, 0x72, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x14, 0x6c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64,
  2791. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  2792. 0x28, 0x03, 0x52, 0x14, 0x6c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70,
  2793. 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x65, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72,
  2794. 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66,
  2795. 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x47, 0x72, 0x65, 0x65,
  2796. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65,
  2797. 0x47, 0x72, 0x65, 0x65, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65,
  2798. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f,
  2799. 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x22,
  2800. 0x43, 0x0a, 0x19, 0x49, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72,
  2801. 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e,
  2802. 0x69, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01,
  2803. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65,
  2804. 0x77, 0x6f, 0x72, 0x64, 0x22, 0x8c, 0x01, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64,
  2805. 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2806. 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  2807. 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18,
  2808. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12,
  2809. 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63,
  2810. 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x18, 0x09, 0x20,
  2811. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d,
  2812. 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x69, 0x6e,
  2813. 0x41, 0x67, 0x65, 0x22, 0xb3, 0x02, 0x0a, 0x1c, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65,
  2814. 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71,
  2815. 0x75, 0x65, 0x73, 0x74, 0x12, 0x5f, 0x0a, 0x0d, 0x69, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  2816. 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x61, 0x70,
  2817. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72,
  2818. 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75,
  2819. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61,
  2820. 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x69, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  2821. 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  2822. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  2823. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2824. 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x18,
  2825. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x12, 0x16, 0x0a,
  2826. 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d,
  2827. 0x69, 0x6e, 0x41, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x06, 0x20, 0x01,
  2828. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x1a, 0x40, 0x0a, 0x12, 0x49, 0x73, 0x4d, 0x61, 0x74,
  2829. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  2830. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  2831. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05,
  2832. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4f, 0x0a, 0x1b, 0x47, 0x65, 0x74,
  2833. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b,
  2834. 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18,
  2835. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73,
  2836. 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a,
  2837. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xac, 0x01, 0x0a, 0x16, 0x46,
  2838. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42,
  2839. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x76, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x18,
  2840. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  2841. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74,
  2842. 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e, 0x56, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e,
  2843. 0x74, 0x72, 0x79, 0x52, 0x06, 0x76, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x1a, 0x4c, 0x0a, 0x0b, 0x56,
  2844. 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  2845. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x27, 0x0a, 0x05,
  2846. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x61, 0x70,
  2847. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05,
  2848. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xcd, 0x01, 0x0a, 0x1c, 0x46, 0x69,
  2849. 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
  2850. 0x69, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x68, 0x0a, 0x10, 0x63, 0x65,
  2851. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x61, 0x70, 0x18, 0x01,
  2852. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2853. 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63,
  2854. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e, 0x43, 0x65, 0x72,
  2855. 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74,
  2856. 0x72, 0x79, 0x52, 0x10, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  2857. 0x6e, 0x4d, 0x61, 0x70, 0x1a, 0x43, 0x0a, 0x15, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63,
  2858. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  2859. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  2860. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05,
  2861. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xa1, 0x02, 0x0a, 0x07, 0x56, 0x69,
  2862. 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x18, 0x01,
  2863. 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x76,
  2864. 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x76,
  2865. 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74,
  2866. 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x67, 0x72,
  2867. 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x6e,
  2868. 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  2869. 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x65,
  2870. 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20,
  2871. 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
  2872. 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
  2873. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
  2874. 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70,
  2875. 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69,
  2876. 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  2877. 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63,
  2878. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2879. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x64, 0x0a,
  2880. 0x1a, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72,
  2881. 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  2882. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  2883. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65,
  2884. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x12,
  2885. 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74,
  2886. 0x79, 0x70, 0x65, 0x22, 0x6e, 0x0a, 0x28, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e,
  2887. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79,
  2888. 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2889. 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2890. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  2891. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  2892. 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
  2893. 0x65, 0x73, 0x63, 0x22, 0x42, 0x0a, 0x26, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e,
  2894. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79,
  2895. 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a,
  2896. 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
  2897. 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x56, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x55, 0x73,
  2898. 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2899. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  2900. 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2901. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69,
  2902. 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22,
  2903. 0x4c, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61,
  2904. 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  2905. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  2906. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
  2907. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x99, 0x01,
  2908. 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  2909. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01,
  2910. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07,
  2911. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e,
  2912. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2913. 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d,
  2914. 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73,
  2915. 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  2916. 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62,
  2917. 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x22, 0x4b, 0x0a, 0x19, 0x47, 0x65, 0x74,
  2918. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52,
  2919. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20,
  2920. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73,
  2921. 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72,
  2922. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  2923. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69,
  2924. 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a,
  2925. 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12,
  2926. 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
  2927. 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20,
  2928. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x47, 0x0a,
  2929. 0x21, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69,
  2930. 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70,
  2931. 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69,
  2932. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2933. 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xc7, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64, 0x61, 0x74,
  2934. 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41,
  2935. 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52,
  2936. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74,
  2937. 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74,
  2938. 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a,
  2939. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2940. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  2941. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  2942. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  2943. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
  2944. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04,
  2945. 0x63, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79,
  2946. 0x22, 0xec, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73,
  2947. 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65,
  2948. 0x70, 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2949. 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2950. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18,
  2951. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a,
  2952. 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04,
  2953. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61,
  2954. 0x74, 0x75, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63,
  2955. 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f,
  2956. 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a,
  2957. 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12,
  2958. 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  2959. 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  2960. 0x69, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22,
  2961. 0x35, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74,
  2962. 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  2963. 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2964. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73,
  2965. 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x70,
  2966. 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69,
  2967. 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x53, 0x65,
  2968. 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x7d, 0x0a, 0x0b, 0x55, 0x73,
  2969. 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x70,
  2970. 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2971. 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12,
  2972. 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75,
  2973. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
  2974. 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68,
  2975. 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x61,
  2976. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70,
  2977. 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  2978. 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  2979. 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73,
  2980. 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2981. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07,
  2982. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79,
  2983. 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70,
  2984. 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53,
  2985. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73,
  2986. 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63,
  2987. 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e,
  2988. 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  2989. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
  2990. 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  2991. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x2e, 0x0a,
  2992. 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  2993. 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x01,
  2994. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x78, 0x0a,
  2995. 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  2996. 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  2997. 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75,
  2998. 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63,
  2999. 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69,
  3000. 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69,
  3001. 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28,
  3002. 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0x45, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4d,
  3003. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64,
  3004. 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18,
  3005. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69,
  3006. 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x45,
  3007. 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65,
  3008. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  3009. 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3010. 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  3011. 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  3012. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  3013. 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52,
  3014. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  3015. 0x74, 0x22, 0x40, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  3016. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  3017. 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69,
  3018. 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
  3019. 0x69, 0x73, 0x74, 0x22, 0xe9, 0x01, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61,
  3020. 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  3021. 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c,
  3022. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x14, 0x0a,
  3023. 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72,
  3024. 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69,
  3025. 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e,
  3026. 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
  3027. 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  3028. 0x03, 0x52, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79,
  3029. 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f,
  3030. 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61,
  3031. 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e, 0x12, 0x20, 0x0a,
  3032. 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  3033. 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22,
  3034. 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  3035. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  3036. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3037. 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  3038. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e,
  3039. 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01,
  3040. 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x20,
  3041. 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20,
  3042. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3043. 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  3044. 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x7d, 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3045. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x69,
  3046. 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3047. 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69,
  3048. 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a,
  3049. 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  3050. 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x0a,
  3051. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  3052. 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c,
  3053. 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3054. 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02,
  3055. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15,
  3056. 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74,
  3057. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  3058. 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3059. 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  3060. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  3061. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0xbc, 0x03, 0x0a, 0x0c, 0x55, 0x73,
  3062. 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  3063. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  3064. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64,
  3065. 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61,
  3066. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74,
  3067. 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43,
  3068. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69,
  3069. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69,
  3070. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  3071. 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69,
  3072. 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28,
  3073. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  3074. 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  3075. 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3076. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  3077. 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61,
  3078. 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01,
  3079. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73,
  3080. 0x56, 0x69, 0x70, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70,
  3081. 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x10, 0x20, 0x01,
  3082. 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x1c, 0x0a, 0x09,
  3083. 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52,
  3084. 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69,
  3085. 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x09,
  3086. 0x52, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x28,
  3087. 0x0a, 0x0f, 0x69, 0x73, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  3088. 0x6e, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x43, 0x65, 0x72, 0x74, 0x69,
  3089. 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa8, 0x05, 0x0a, 0x08, 0x55, 0x73, 0x65,
  3090. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3091. 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  3092. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  3093. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03,
  3094. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12,
  3095. 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67,
  3096. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  3097. 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61,
  3098. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  3099. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65,
  3100. 0x64, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  3101. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03,
  3102. 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73,
  3103. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  3104. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74,
  3105. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  3106. 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63,
  3107. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20,
  3108. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a,
  3109. 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74,
  3110. 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52,
  3111. 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  3112. 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a,
  3113. 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
  3114. 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67,
  3115. 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52,
  3116. 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74,
  3117. 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x11, 0x20, 0x01,
  3118. 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  3119. 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41,
  3120. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x12, 0x20, 0x01, 0x28,
  3121. 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  3122. 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  3123. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03,
  3124. 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73,
  3125. 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67,
  3126. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52,
  3127. 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  3128. 0x4e, 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x15, 0x20, 0x01,
  3129. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x69, 0x73, 0x43,
  3130. 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1c, 0x20, 0x01,
  3131. 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
  3132. 0x69, 0x6f, 0x6e, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3133. 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3134. 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61,
  3135. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65,
  3136. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12,
  3137. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  3138. 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  3139. 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65,
  3140. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  3141. 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06,
  3142. 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74,
  3143. 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3144. 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  3145. 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3146. 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66,
  3147. 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  3148. 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c,
  3149. 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06,
  3150. 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
  3151. 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18,
  3152. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14,
  3153. 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d,
  3154. 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
  3155. 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e,
  3156. 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  3157. 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16,
  3158. 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  3159. 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  3160. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73,
  3161. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  3162. 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  3163. 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  3164. 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72,
  3165. 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  3166. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61,
  3167. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69,
  3168. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3169. 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  3170. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  3171. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61,
  3172. 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  3173. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  3174. 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3175. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  3176. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
  3177. 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  3178. 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b,
  3179. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
  3180. 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0xe7, 0x55,
  3181. 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  3182. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3183. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e,
  3184. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  3185. 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3186. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x0c,
  3187. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x31, 0x12, 0x16, 0x2e, 0x67,
  3188. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3189. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3190. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14,
  3191. 0x22, 0x0f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  3192. 0x31, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e,
  3193. 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3194. 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  3195. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3196. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3197. 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3198. 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12,
  3199. 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  3200. 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  3201. 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
  3202. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3203. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3,
  3204. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3205. 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a,
  3206. 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  3207. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3208. 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3209. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  3210. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3211. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61,
  3212. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69,
  3213. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a,
  3214. 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3215. 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3216. 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  3217. 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  3218. 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4,
  3219. 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  3220. 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a,
  3221. 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12,
  3222. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3223. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3224. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c,
  3225. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3226. 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f,
  3227. 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3228. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  3229. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3230. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19,
  3231. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3232. 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65,
  3233. 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41,
  3234. 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3235. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  3236. 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  3237. 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d,
  3238. 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3239. 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69,
  3240. 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  3241. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65,
  3242. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  3243. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64,
  3244. 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82,
  3245. 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3246. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a,
  3247. 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65,
  3248. 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  3249. 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3250. 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3251. 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3252. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76,
  3253. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3254. 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  3255. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24,
  3256. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f,
  3257. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3258. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  3259. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c,
  3260. 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57,
  3261. 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f,
  3262. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3263. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3264. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3265. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3266. 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70,
  3267. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74,
  3268. 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69,
  3269. 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f,
  3270. 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3271. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  3272. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3273. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3274. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61,
  3275. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61,
  3276. 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x17, 0x46, 0x69, 0x6e,
  3277. 0x64, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d,
  3278. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3279. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3280. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  3281. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3282. 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  3283. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  3284. 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e,
  3285. 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3286. 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  3287. 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3288. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3289. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69,
  3290. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
  3291. 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  3292. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e,
  3293. 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61,
  3294. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  3295. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3296. 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  3297. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3298. 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  3299. 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a,
  3300. 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17,
  3301. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  3302. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3303. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4,
  3304. 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69,
  3305. 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64,
  3306. 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  3307. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75,
  3308. 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3309. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3310. 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e,
  3311. 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d,
  3312. 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12,
  3313. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  3314. 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3315. 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  3316. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3,
  3317. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3318. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a,
  3319. 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70,
  3320. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e,
  3321. 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3322. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25,
  3323. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3324. 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64,
  3325. 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53,
  3326. 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  3327. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e,
  3328. 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3329. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74,
  3330. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61,
  3331. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70,
  3332. 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d,
  3333. 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e,
  3334. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3335. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3336. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3337. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3338. 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69,
  3339. 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65,
  3340. 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3341. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  3342. 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3343. 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3,
  3344. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3345. 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12,
  3346. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74,
  3347. 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3348. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  3349. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c,
  3350. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f,
  3351. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68,
  3352. 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55,
  3353. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3354. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  3355. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3356. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13,
  3357. 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65,
  3358. 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b,
  3359. 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3360. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3361. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3362. 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69,
  3363. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3364. 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3365. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61,
  3366. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3367. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3368. 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3369. 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01,
  3370. 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44,
  3371. 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3372. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3373. 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  3374. 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76,
  3375. 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3376. 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65,
  3377. 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  3378. 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63,
  3379. 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3380. 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72,
  3381. 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3382. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3383. 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70,
  3384. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73,
  3385. 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43,
  3386. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  3387. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  3388. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3389. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82,
  3390. 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3391. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  3392. 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  3393. 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
  3394. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3395. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3396. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f,
  3397. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64,
  3398. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64,
  3399. 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3400. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70,
  3401. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3402. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3403. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3404. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65,
  3405. 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68,
  3406. 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3407. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  3408. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3409. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82,
  3410. 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3411. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65,
  3412. 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  3413. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69,
  3414. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63,
  3415. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69,
  3416. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70,
  3417. 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  3418. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64,
  3419. 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a,
  3420. 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70,
  3421. 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73,
  3422. 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  3423. 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65,
  3424. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70,
  3425. 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69,
  3426. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b,
  3427. 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69,
  3428. 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3429. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3430. 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3431. 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3432. 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72,
  3433. 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  3434. 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63,
  3435. 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52,
  3436. 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3437. 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  3438. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3,
  3439. 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3440. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x65,
  3441. 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74,
  3442. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f,
  3443. 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3444. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3445. 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  3446. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65,
  3447. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  3448. 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67,
  3449. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3450. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  3451. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24,
  3452. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3453. 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e, 0x75,
  3454. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52,
  3455. 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61, 0x70,
  3456. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  3457. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  3458. 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3,
  3459. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3460. 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c,
  3461. 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61,
  3462. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,
  3463. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3464. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41,
  3465. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3466. 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3467. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3468. 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74,
  3469. 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  3470. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e,
  3471. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c,
  3472. 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3473. 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  3474. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65,
  3475. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42,
  3476. 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3477. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  3478. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3479. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4,
  3480. 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  3481. 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e,
  3482. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  3483. 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a,
  3484. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74,
  3485. 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69,
  3486. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50,
  3487. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3488. 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3489. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65,
  3490. 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a,
  3491. 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  3492. 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69,
  3493. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3494. 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
  3495. 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e,
  3496. 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69,
  3497. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66,
  3498. 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b,
  3499. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  3500. 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3501. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3502. 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  3503. 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73,
  3504. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3505. 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d,
  3506. 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a,
  3507. 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12,
  3508. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3509. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  3510. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73,
  3511. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3512. 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f,
  3513. 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72,
  3514. 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3515. 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3516. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3517. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3518. 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3519. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3520. 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73,
  3521. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
  3522. 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3523. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70,
  3524. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3525. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21,
  3526. 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  3527. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01,
  3528. 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f,
  3529. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67,
  3530. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3531. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3532. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3,
  3533. 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3534. 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72,
  3535. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f,
  3536. 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3537. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  3538. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3539. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3540. 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f,
  3541. 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55,
  3542. 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70,
  3543. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61,
  3544. 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69,
  3545. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82,
  3546. 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3547. 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0f,
  3548. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x56, 0x69, 0x70, 0x12,
  3549. 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52,
  3550. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11,
  3551. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66,
  3552. 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3553. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69,
  3554. 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68,
  3555. 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3556. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3557. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68,
  3558. 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
  3559. 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68,
  3560. 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13,
  3561. 0x46, 0x69, 0x6e, 0x64, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c,
  3562. 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3563. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70,
  3564. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  3565. 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b,
  3566. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72,
  3567. 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67,
  3568. 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e,
  3569. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79,
  3570. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3571. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f,
  3572. 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17,
  3573. 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f,
  3574. 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52,
  3575. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  3576. 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3577. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69,
  3578. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  3579. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3580. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3581. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  3582. 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61,
  3583. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e,
  3584. 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3585. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69,
  3586. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  3587. 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65,
  3588. 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70,
  3589. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f,
  3590. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65,
  3591. 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 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, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57,
  3594. 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3595. 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  3596. 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3597. 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75,
  3598. 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3599. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3600. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d,
  3601. 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3602. 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12,
  3603. 0x7f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63,
  3604. 0x68, 0x69, 0x6e, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3605. 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e,
  3606. 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3607. 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74,
  3608. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  3609. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61,
  3610. 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a,
  3611. 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12,
  3612. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f,
  3613. 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3614. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3615. 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  3616. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69,
  3617. 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50,
  3618. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3619. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3620. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3621. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3622. 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c,
  3623. 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c,
  3624. 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65,
  3625. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3626. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16,
  3627. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3628. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19,
  3629. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  3630. 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15,
  3631. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  3632. 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3633. 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  3634. 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  3635. 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4,
  3636. 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  3637. 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  3638. 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73,
  3639. 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3640. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3641. 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3642. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3643. 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3644. 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64,
  3645. 0x3a, 0x01, 0x2a, 0x12, 0x51, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66,
  3646. 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3647. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3648. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x18, 0x82, 0xd3,
  3649. 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x69,
  3650. 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x61,
  3651. 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3652. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3653. 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3654. 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  3655. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22,
  3656. 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6c,
  3657. 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7f, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  3658. 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d,
  3659. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3660. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3661. 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48,
  3662. 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3663. 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3664. 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b,
  3665. 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x16, 0x53, 0x65, 0x74, 0x55, 0x73,
  3666. 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75,
  3667. 0x6d, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3668. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  3669. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3670. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61,
  3671. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x68, 0x61, 0x6e,
  3672. 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a,
  3673. 0x12, 0x7e, 0x0a, 0x14, 0x49, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75,
  3674. 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3675. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3676. 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x73, 0x43, 0x61,
  3677. 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64,
  3678. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f,
  3679. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x2f,
  3680. 0x72, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a,
  3681. 0x12, 0x6d, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72,
  3682. 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3683. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  3684. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3685. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22,
  3686. 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x74, 0x75, 0x72,
  3687. 0x6e, 0x2f, 0x72, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3688. 0x71, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74,
  3689. 0x61, 0x74, 0x75, 0x73, 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, 0x1f, 0x2e, 0x61,
  3691. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76,
  3692. 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82,
  3693. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3694. 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a,
  3695. 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x50, 0x72, 0x69,
  3696. 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69,
  3697. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63,
  3698. 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3699. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3700. 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  3701. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x2f, 0x73,
  3702. 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53,
  3703. 0x74, 0x61, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3704. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71,
  3705. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3706. 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f,
  3707. 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3708. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x73, 0x74, 0x61, 0x72, 0x3a, 0x01,
  3709. 0x2a, 0x12, 0x6f, 0x0a, 0x0f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50,
  3710. 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3711. 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  3712. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3713. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3714. 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3715. 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x3a,
  3716. 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x12, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x55,
  3717. 0x6e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3718. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3719. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3720. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20,
  3721. 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74,
  3722. 0x2f, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x3a, 0x01, 0x2a,
  3723. 0x12, 0x75, 0x0a, 0x0d, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  3724. 0x6e, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  3725. 0x68, 0x65, 0x63, 0x6b, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x71, 0x75,
  3726. 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3727. 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65,
  3728. 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70,
  3729. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  3730. 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73,
  3731. 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3732. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  3733. 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3734. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e,
  3735. 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70,
  3736. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3737. 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3738. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3739. 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63,
  3740. 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3741. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53,
  3742. 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  3743. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3744. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70, 0x64,
  3745. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
  3746. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3747. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  3748. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3749. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x17, 0x47, 0x65, 0x74,
  3750. 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75,
  3751. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3752. 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3753. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67,
  3754. 0x12, 0x82, 0x01, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  3755. 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65,
  3756. 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3757. 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  3758. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52,
  3759. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3760. 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48,
  3761. 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  3762. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  3763. 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  3764. 0x65, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3765. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x28, 0x2e,
  3766. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  3767. 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  3768. 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x53, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d,
  3769. 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x24,
  3770. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73,
  3771. 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71,
  3772. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3773. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19,
  3774. 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64,
  3775. 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3776. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  3777. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3778. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72,
  3779. 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43,
  3780. 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3781. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  3782. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3783. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53,
  3784. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  3785. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3786. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3787. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3788. 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65,
  3789. 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3790. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  3791. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3792. 0x6d, 0x70, 0x74, 0x79, 0x12, 0x84, 0x01, 0x0a, 0x24, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  3793. 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64,
  3794. 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x25, 0x2e,
  3795. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  3796. 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71,
  3797. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3798. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  3799. 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65,
  3800. 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x47,
  3801. 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44,
  3802. 0x42, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74,
  3803. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52,
  3804. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3805. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x4d,
  3806. 0x0a, 0x0f, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63,
  3807. 0x6b, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70,
  3808. 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75,
  3809. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3810. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x49, 0x0a,
  3811. 0x0d, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e,
  3812. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65,
  3813. 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  3814. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3815. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72,
  3816. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
  3817. 0x73, 0x44, 0x42, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3818. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1b,
  3819. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3820. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x00, 0x12, 0x8b, 0x01,
  3821. 0x0a, 0x21, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  3822. 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76,
  3823. 0x69, 0x74, 0x79, 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3824. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3825. 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
  3826. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3827. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3828. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69,
  3829. 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x11, 0x46,
  3830. 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74,
  3831. 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3832. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69,
  3833. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69,
  3834. 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x61,
  3835. 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
  3836. 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e,
  3837. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3838. 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3839. 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69,
  3840. 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3841. 0x00, 0x12, 0x57, 0x0a, 0x15, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42,
  3842. 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x4d, 0x61, 0x70, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69,
  3843. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44,
  3844. 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  3845. 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3846. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x10, 0x47, 0x65,
  3847. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x69, 0x74, 0x12, 0x1f,
  3848. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x74, 0x55,
  3849. 0x73, 0x65, 0x72, 0x44, 0x42, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65, 0x71, 0x1a,
  3850. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  3851. 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x00, 0x12, 0x45,
  3852. 0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x12, 0x1c, 0x2e,
  3853. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54,
  3854. 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3855. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3856. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
  3857. 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54,
  3858. 0x69, 0x6d, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3859. 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d,
  3860. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3861. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3862. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x17, 0x43, 0x72,
  3863. 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69,
  3864. 0x6f, 0x6e, 0x56, 0x69, 0x70, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3865. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e,
  3866. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3867. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3868. 0x73, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61,
  3869. 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d,
  3870. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3871. 0x72, 0x3b, 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3872. }
  3873. var (
  3874. file_user_proto_rawDescOnce sync.Once
  3875. file_user_proto_rawDescData = file_user_proto_rawDesc
  3876. )
  3877. func file_user_proto_rawDescGZIP() []byte {
  3878. file_user_proto_rawDescOnce.Do(func() {
  3879. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  3880. })
  3881. return file_user_proto_rawDescData
  3882. }
  3883. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 51)
  3884. var file_user_proto_goTypes = []interface{}{
  3885. (*PersonLookScripReply)(nil), // 0: api.user.PersonLookScripReply
  3886. (*UpdateTodayRequest)(nil), // 1: api.user.UpdateTodayRequest
  3887. (*UpdateLastSendTemplateTimeRequest)(nil), // 2: api.user.UpdateLastSendTemplateTimeRequest
  3888. (*UserPrivacyStatusInfo)(nil), // 3: api.user.UserPrivacyStatusInfo
  3889. (*IsCanGetReturnRewordReply)(nil), // 4: api.user.IsCanGetReturnRewordReply
  3890. (*GetRandomMatchingRequest)(nil), // 5: api.user.GetRandomMatchingRequest
  3891. (*MatchUserDBWithoutMapRequest)(nil), // 6: api.user.MatchUserDBWithoutMapRequest
  3892. (*GetUserLookHandPickNumReply)(nil), // 7: api.user.GetUserLookHandPickNumReply
  3893. (*FindUserVipListDBReply)(nil), // 8: api.user.FindUserVipListDBReply
  3894. (*FindUserCertificationDBReply)(nil), // 9: api.user.FindUserCertificationDBReply
  3895. (*VipInfo)(nil), // 10: api.user.VipInfo
  3896. (*SendMsgReduceCreditRequest)(nil), // 11: api.user.SendMsgReduceCreditRequest
  3897. (*UserGetInformationAwardByActivityRequest)(nil), // 12: api.user.UserGetInformationAwardByActivityRequest
  3898. (*UserGetInformationAwardByActivityReply)(nil), // 13: api.user.UserGetInformationAwardByActivityReply
  3899. (*AddUserCreditRequest)(nil), // 14: api.user.AddUserCreditRequest
  3900. (*ReportUserBlackRequest)(nil), // 15: api.user.ReportUserBlackRequest
  3901. (*SendMessageRequest)(nil), // 16: api.user.SendMessageRequest
  3902. (*GetRecommendUserDBRequest)(nil), // 17: api.user.GetRecommendUserDBRequest
  3903. (*FindRecommendHighQualityUserRequest)(nil), // 18: api.user.FindRecommendHighQualityUserRequest
  3904. (*FindRecommendHighQualityUserReply)(nil), // 19: api.user.FindRecommendHighQualityUserReply
  3905. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 20: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  3906. (*GetUserDBMsgFromWebsocketReply)(nil), // 21: api.user.GetUserDBMsgFromWebsocketReply
  3907. (*UpdateUserMatchedNumRequest)(nil), // 22: api.user.UpdateUserMatchedNumRequest
  3908. (*SendMsgReduceCreditReply)(nil), // 23: api.user.SendMsgReduceCreditReply
  3909. (*UserFreeNum)(nil), // 24: api.user.UserFreeNum
  3910. (*ReplyScripRequest)(nil), // 25: api.user.ReplyScripRequest
  3911. (*PersonLookScripRequest)(nil), // 26: api.user.PersonLookScripRequest
  3912. (*UserFindScripRequest)(nil), // 27: api.user.UserFindScripRequest
  3913. (*DeleteScripRequest)(nil), // 28: api.user.DeleteScripRequest
  3914. (*CreateScripRequest)(nil), // 29: api.user.CreateScripRequest
  3915. (*FindMatchingAvatarAndNumReply)(nil), // 30: api.user.FindMatchingAvatarAndNumReply
  3916. (*UserRechargeRequest)(nil), // 31: api.user.UserRechargeRequest
  3917. (*RechargeList)(nil), // 32: api.user.RechargeList
  3918. (*VipRechargeList)(nil), // 33: api.user.VipRechargeList
  3919. (*VipRechargeInfo)(nil), // 34: api.user.VipRechargeInfo
  3920. (*RechargeInfo)(nil), // 35: api.user.RechargeInfo
  3921. (*InformationStatus)(nil), // 36: api.user.InformationStatus
  3922. (*UserBalance)(nil), // 37: api.user.UserBalance
  3923. (*UserFindChatListReply)(nil), // 38: api.user.UserFindChatListReply
  3924. (*UserChatInfo)(nil), // 39: api.user.UserChatInfo
  3925. (*UserInfo)(nil), // 40: api.user.UserInfo
  3926. (*KeyRequest)(nil), // 41: api.user.KeyRequest
  3927. (*CreatePayRequest)(nil), // 42: api.user.CreatePayRequest
  3928. (*PayInfo)(nil), // 43: api.user.PayInfo
  3929. (*PayOrderInfo)(nil), // 44: api.user.PayOrderInfo
  3930. (*PayOrderList)(nil), // 45: api.user.PayOrderList
  3931. (*FindPayOrderListRequest)(nil), // 46: api.user.FindPayOrderListRequest
  3932. (*PayCallbackReply)(nil), // 47: api.user.PayCallbackReply
  3933. nil, // 48: api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  3934. nil, // 49: api.user.FindUserVipListDBReply.VipMapEntry
  3935. nil, // 50: api.user.FindUserCertificationDBReply.CertificationMapEntry
  3936. (*common.Message)(nil), // 51: api.common.Message
  3937. (*structpb.Value)(nil), // 52: google.protobuf.Value
  3938. (*emptypb.Empty)(nil), // 53: google.protobuf.Empty
  3939. (*common.SendPhoneCodeRequest)(nil), // 54: api.common.SendPhoneCodeRequest
  3940. (*common.CheckPhoneCodeRequest)(nil), // 55: api.common.CheckPhoneCodeRequest
  3941. (*common.UpdateInformationRequest)(nil), // 56: api.common.UpdateInformationRequest
  3942. (*common.CreateChatRoomParam)(nil), // 57: api.common.CreateChatRoomParam
  3943. (*common.PersonParam)(nil), // 58: api.common.PersonParam
  3944. (*common.ListPageRequest)(nil), // 59: api.common.ListPageRequest
  3945. (*common.SexReq)(nil), // 60: api.common.SexReq
  3946. (*common.ListPage2Request)(nil), // 61: api.common.ListPage2Request
  3947. (*common.FindChatRecordListRequest)(nil), // 62: api.common.FindChatRecordListRequest
  3948. (*common.FindChatRoomMsgRequest)(nil), // 63: api.common.FindChatRoomMsgRequest
  3949. (*common.MemeRequest)(nil), // 64: api.common.MemeRequest
  3950. (*common.FindChatTopicRequest)(nil), // 65: api.common.FindChatTopicRequest
  3951. (*common.RandomNum)(nil), // 66: api.common.RandomNum
  3952. (*common.RandomNumAndSex)(nil), // 67: api.common.RandomNumAndSex
  3953. (*common.ReportChatRequest)(nil), // 68: api.common.ReportChatRequest
  3954. (*common.UpdateLastScripIDRequest)(nil), // 69: api.common.UpdateLastScripIDRequest
  3955. (*common.FindScripRequest)(nil), // 70: api.common.FindScripRequest
  3956. (*common.RoomIDRequest)(nil), // 71: api.common.RoomIDRequest
  3957. (*common.PartnerIDParam)(nil), // 72: api.common.PartnerIDParam
  3958. (*common.PersonIDParam)(nil), // 73: api.common.PersonIDParam
  3959. (*common.ScripIdRequest)(nil), // 74: api.common.ScripIdRequest
  3960. (*common.CheckIdentifyRequest)(nil), // 75: api.common.CheckIdentifyRequest
  3961. (*common.PersonIDList)(nil), // 76: api.common.PersonIDList
  3962. (*common.UpdateLastScripIDDBRequest)(nil), // 77: api.common.UpdateLastScripIDDBRequest
  3963. (*common.IDParam)(nil), // 78: api.common.IDParam
  3964. (*common.GetUserDBAndInitReq)(nil), // 79: api.common.GetUserDBAndInitReq
  3965. (*chat.RoomReply)(nil), // 80: api.chat.RoomReply
  3966. (*common.HomeInfo)(nil), // 81: api.common.HomeInfo
  3967. (*common.LookedAndLikedNum)(nil), // 82: api.common.LookedAndLikedNum
  3968. (*statistics.LookAndLikeListReply)(nil), // 83: api.statistics.LookAndLikeListReply
  3969. (*common.TagListReply)(nil), // 84: api.common.TagListReply
  3970. (*common.RecommendPersonListReply)(nil), // 85: api.common.RecommendPersonListReply
  3971. (*common.ChatRecordListReply)(nil), // 86: api.common.ChatRecordListReply
  3972. (*common.ChatRoomMsg)(nil), // 87: api.common.ChatRoomMsg
  3973. (*common.IsLike)(nil), // 88: api.common.IsLike
  3974. (*common.MemeList)(nil), // 89: api.common.MemeList
  3975. (*common.ChatTopicList)(nil), // 90: api.common.ChatTopicList
  3976. (*common.CommonTextList)(nil), // 91: api.common.CommonTextList
  3977. (*common.MemeTitleList)(nil), // 92: api.common.MemeTitleList
  3978. (*common.ChatCardInfo)(nil), // 93: api.common.ChatCardInfo
  3979. (*common.FindOverSevenDayAvatarReply)(nil), // 94: api.common.FindOverSevenDayAvatarReply
  3980. (*common.ScripID)(nil), // 95: api.common.ScripID
  3981. (*common.ScripReply)(nil), // 96: api.common.ScripReply
  3982. (*common.ScripInfo)(nil), // 97: api.common.ScripInfo
  3983. (*common.ChatRecordInfo)(nil), // 98: api.common.ChatRecordInfo
  3984. (*chat.UnreadNumReply)(nil), // 99: api.chat.UnreadNumReply
  3985. (*chat.UserRoomInfo)(nil), // 100: api.chat.UserRoomInfo
  3986. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 101: api.chat.CheckUserPartnerIsRelationshipReply
  3987. (*common.AddFriendMessageInfo)(nil), // 102: api.common.AddFriendMessageInfo
  3988. (*statistics.LookAndLikeMessageReply)(nil), // 103: api.statistics.LookAndLikeMessageReply
  3989. (*statistics.LookMessageReply)(nil), // 104: api.statistics.LookMessageReply
  3990. (*chat.WindowInfo)(nil), // 105: api.chat.WindowInfo
  3991. (*chat.GetRandomMatchingReply)(nil), // 106: api.chat.GetRandomMatchingReply
  3992. (*common.SendMessageReply)(nil), // 107: api.common.SendMessageReply
  3993. (*common.HandpickPersonListReply)(nil), // 108: api.common.HandpickPersonListReply
  3994. (*common.CheckIdentifyReply)(nil), // 109: api.common.CheckIdentifyReply
  3995. (*common.PersonMsg)(nil), // 110: api.common.PersonMsg
  3996. (*common.PersonDBReply)(nil), // 111: api.common.PersonDBReply
  3997. (*common.PersonDB)(nil), // 112: api.common.PersonDB
  3998. (*common.PersonDBDetails)(nil), // 113: api.common.PersonDBDetails
  3999. }
  4000. var file_user_proto_depIdxs = []int32{
  4001. 48, // 0: api.user.MatchUserDBWithoutMapRequest.isMatchingMap:type_name -> api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  4002. 49, // 1: api.user.FindUserVipListDBReply.vipMap:type_name -> api.user.FindUserVipListDBReply.VipMapEntry
  4003. 50, // 2: api.user.FindUserCertificationDBReply.certificationMap:type_name -> api.user.FindUserCertificationDBReply.CertificationMapEntry
  4004. 51, // 3: api.user.SendMessageRequest.message:type_name -> api.common.Message
  4005. 51, // 4: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  4006. 35, // 5: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  4007. 34, // 6: api.user.VipRechargeList.list:type_name -> api.user.VipRechargeInfo
  4008. 39, // 7: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  4009. 52, // 8: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  4010. 44, // 9: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  4011. 10, // 10: api.user.FindUserVipListDBReply.VipMapEntry.value:type_name -> api.user.VipInfo
  4012. 53, // 11: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  4013. 53, // 12: api.user.User.GetUserInfo1:input_type -> google.protobuf.Empty
  4014. 54, // 13: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  4015. 55, // 14: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  4016. 56, // 15: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  4017. 57, // 16: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  4018. 53, // 17: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  4019. 58, // 18: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  4020. 58, // 19: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  4021. 59, // 20: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  4022. 60, // 21: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  4023. 61, // 22: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  4024. 59, // 23: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  4025. 59, // 24: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  4026. 59, // 25: api.user.User.FindCloseFriendRoomList:input_type -> api.common.ListPageRequest
  4027. 62, // 26: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  4028. 63, // 27: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  4029. 58, // 28: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  4030. 64, // 29: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  4031. 65, // 30: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  4032. 66, // 31: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  4033. 67, // 32: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  4034. 53, // 33: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  4035. 58, // 34: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  4036. 53, // 35: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  4037. 58, // 36: api.user.User.UserLike:input_type -> api.common.PersonParam
  4038. 58, // 37: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  4039. 68, // 38: api.user.User.Report:input_type -> api.common.ReportChatRequest
  4040. 53, // 39: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  4041. 69, // 40: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  4042. 29, // 41: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  4043. 28, // 42: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  4044. 27, // 43: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  4045. 70, // 44: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  4046. 27, // 45: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  4047. 26, // 46: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  4048. 53, // 47: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  4049. 25, // 48: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  4050. 71, // 49: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  4051. 53, // 50: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  4052. 58, // 51: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  4053. 59, // 52: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  4054. 59, // 53: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  4055. 71, // 54: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  4056. 72, // 55: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  4057. 41, // 56: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  4058. 53, // 57: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  4059. 53, // 58: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  4060. 53, // 59: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  4061. 53, // 60: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  4062. 53, // 61: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  4063. 58, // 62: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  4064. 31, // 63: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  4065. 31, // 64: api.user.User.UserRechargeVip:input_type -> api.user.UserRechargeRequest
  4066. 53, // 65: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  4067. 53, // 66: api.user.User.FindVipRechargeList:input_type -> google.protobuf.Empty
  4068. 46, // 67: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  4069. 53, // 68: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  4070. 53, // 69: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  4071. 53, // 70: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  4072. 53, // 71: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  4073. 5, // 72: api.user.User.GetRandomMatching:input_type -> api.user.GetRandomMatchingRequest
  4074. 71, // 73: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  4075. 71, // 74: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  4076. 53, // 75: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  4077. 57, // 76: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  4078. 16, // 77: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  4079. 53, // 78: api.user.User.GetVipInfo:input_type -> google.protobuf.Empty
  4080. 53, // 79: api.user.User.FindHandpickUser:input_type -> google.protobuf.Empty
  4081. 53, // 80: api.user.User.GetUserLookHandPickNum:input_type -> google.protobuf.Empty
  4082. 73, // 81: api.user.User.SetUserLookHandPickNum:input_type -> api.common.PersonIDParam
  4083. 53, // 82: api.user.User.IsCanGetReturnReword:input_type -> google.protobuf.Empty
  4084. 53, // 83: api.user.User.UserGetReturnReword:input_type -> google.protobuf.Empty
  4085. 53, // 84: api.user.User.UserPrivacyStatus:input_type -> google.protobuf.Empty
  4086. 3, // 85: api.user.User.UserSetPrivacyStatus:input_type -> api.user.UserPrivacyStatusInfo
  4087. 74, // 86: api.user.User.PersonStarScrip:input_type -> api.common.ScripIdRequest
  4088. 55, // 87: api.user.User.UpdateUserPhone:input_type -> api.common.CheckPhoneCodeRequest
  4089. 53, // 88: api.user.User.CleanUserUnReadNum:input_type -> google.protobuf.Empty
  4090. 75, // 89: api.user.User.Certification:input_type -> api.common.CheckIdentifyRequest
  4091. 73, // 90: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  4092. 76, // 91: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  4093. 77, // 92: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  4094. 73, // 93: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  4095. 78, // 94: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  4096. 18, // 95: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  4097. 73, // 96: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  4098. 11, // 97: api.user.User.SendMsgReduceCredit:input_type -> api.user.SendMsgReduceCreditRequest
  4099. 58, // 98: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  4100. 58, // 99: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  4101. 58, // 100: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  4102. 58, // 101: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  4103. 22, // 102: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  4104. 17, // 103: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  4105. 15, // 104: api.user.User.ReportUserBlack:input_type -> api.user.ReportUserBlackRequest
  4106. 14, // 105: api.user.User.AddUserCredit:input_type -> api.user.AddUserCreditRequest
  4107. 73, // 106: api.user.User.UserInformationStatusDB:input_type -> api.common.PersonIDParam
  4108. 12, // 107: api.user.User.UserGetInformationAwardByActivity:input_type -> api.user.UserGetInformationAwardByActivityRequest
  4109. 76, // 108: api.user.User.FindUserVipDBList:input_type -> api.common.PersonIDList
  4110. 76, // 109: api.user.User.FindUserCertificationDBList:input_type -> api.common.PersonIDList
  4111. 6, // 110: api.user.User.MatchUserDBWithoutMap:input_type -> api.user.MatchUserDBWithoutMapRequest
  4112. 79, // 111: api.user.User.GetUserDBAndInit:input_type -> api.common.GetUserDBAndInitReq
  4113. 1, // 112: api.user.User.UpdateToday:input_type -> api.user.UpdateTodayRequest
  4114. 2, // 113: api.user.User.UpdateLastSendTemplateTime:input_type -> api.user.UpdateLastSendTemplateTimeRequest
  4115. 53, // 114: api.user.User.CronRemoveExpirationVip:input_type -> google.protobuf.Empty
  4116. 40, // 115: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  4117. 40, // 116: api.user.User.GetUserInfo1:output_type -> api.user.UserInfo
  4118. 53, // 117: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  4119. 53, // 118: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  4120. 53, // 119: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  4121. 80, // 120: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  4122. 37, // 121: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  4123. 81, // 122: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  4124. 82, // 123: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  4125. 83, // 124: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  4126. 84, // 125: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  4127. 85, // 126: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  4128. 38, // 127: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4129. 38, // 128: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4130. 38, // 129: api.user.User.FindCloseFriendRoomList:output_type -> api.user.UserFindChatListReply
  4131. 86, // 130: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  4132. 87, // 131: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  4133. 88, // 132: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  4134. 89, // 133: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  4135. 90, // 134: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  4136. 91, // 135: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  4137. 91, // 136: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  4138. 92, // 137: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  4139. 93, // 138: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  4140. 92, // 139: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  4141. 53, // 140: api.user.User.UserLike:output_type -> google.protobuf.Empty
  4142. 53, // 141: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  4143. 53, // 142: api.user.User.Report:output_type -> google.protobuf.Empty
  4144. 94, // 143: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  4145. 53, // 144: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  4146. 95, // 145: api.user.User.CreateScrip:output_type -> api.common.ScripID
  4147. 53, // 146: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  4148. 96, // 147: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  4149. 96, // 148: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  4150. 96, // 149: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  4151. 0, // 150: api.user.User.PersonLookScrip:output_type -> api.user.PersonLookScripReply
  4152. 97, // 151: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  4153. 98, // 152: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  4154. 53, // 153: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  4155. 99, // 154: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  4156. 100, // 155: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  4157. 83, // 156: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  4158. 83, // 157: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  4159. 53, // 158: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  4160. 101, // 159: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  4161. 102, // 160: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  4162. 103, // 161: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  4163. 104, // 162: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  4164. 53, // 163: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  4165. 36, // 164: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  4166. 53, // 165: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  4167. 53, // 166: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  4168. 43, // 167: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  4169. 43, // 168: api.user.User.UserRechargeVip:output_type -> api.user.PayInfo
  4170. 32, // 169: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  4171. 33, // 170: api.user.User.FindVipRechargeList:output_type -> api.user.VipRechargeList
  4172. 45, // 171: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  4173. 85, // 172: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  4174. 30, // 173: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  4175. 105, // 174: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  4176. 24, // 175: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  4177. 106, // 176: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  4178. 53, // 177: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  4179. 53, // 178: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  4180. 53, // 179: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  4181. 80, // 180: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  4182. 107, // 181: api.user.User.SendMessage:output_type -> api.common.SendMessageReply
  4183. 10, // 182: api.user.User.GetVipInfo:output_type -> api.user.VipInfo
  4184. 108, // 183: api.user.User.FindHandpickUser:output_type -> api.common.HandpickPersonListReply
  4185. 7, // 184: api.user.User.GetUserLookHandPickNum:output_type -> api.user.GetUserLookHandPickNumReply
  4186. 53, // 185: api.user.User.SetUserLookHandPickNum:output_type -> google.protobuf.Empty
  4187. 4, // 186: api.user.User.IsCanGetReturnReword:output_type -> api.user.IsCanGetReturnRewordReply
  4188. 53, // 187: api.user.User.UserGetReturnReword:output_type -> google.protobuf.Empty
  4189. 3, // 188: api.user.User.UserPrivacyStatus:output_type -> api.user.UserPrivacyStatusInfo
  4190. 53, // 189: api.user.User.UserSetPrivacyStatus:output_type -> google.protobuf.Empty
  4191. 98, // 190: api.user.User.PersonStarScrip:output_type -> api.common.ChatRecordInfo
  4192. 53, // 191: api.user.User.UpdateUserPhone:output_type -> google.protobuf.Empty
  4193. 53, // 192: api.user.User.CleanUserUnReadNum:output_type -> google.protobuf.Empty
  4194. 109, // 193: api.user.User.Certification:output_type -> api.common.CheckIdentifyReply
  4195. 110, // 194: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  4196. 111, // 195: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  4197. 53, // 196: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  4198. 53, // 197: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  4199. 110, // 198: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  4200. 19, // 199: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  4201. 21, // 200: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  4202. 53, // 201: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  4203. 53, // 202: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  4204. 53, // 203: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  4205. 53, // 204: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  4206. 53, // 205: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  4207. 20, // 206: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4208. 112, // 207: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  4209. 53, // 208: api.user.User.ReportUserBlack:output_type -> google.protobuf.Empty
  4210. 53, // 209: api.user.User.AddUserCredit:output_type -> google.protobuf.Empty
  4211. 36, // 210: api.user.User.UserInformationStatusDB:output_type -> api.user.InformationStatus
  4212. 13, // 211: api.user.User.UserGetInformationAwardByActivity:output_type -> api.user.UserGetInformationAwardByActivityReply
  4213. 8, // 212: api.user.User.FindUserVipDBList:output_type -> api.user.FindUserVipListDBReply
  4214. 9, // 213: api.user.User.FindUserCertificationDBList:output_type -> api.user.FindUserCertificationDBReply
  4215. 112, // 214: api.user.User.MatchUserDBWithoutMap:output_type -> api.common.PersonDB
  4216. 113, // 215: api.user.User.GetUserDBAndInit:output_type -> api.common.PersonDBDetails
  4217. 53, // 216: api.user.User.UpdateToday:output_type -> google.protobuf.Empty
  4218. 53, // 217: api.user.User.UpdateLastSendTemplateTime:output_type -> google.protobuf.Empty
  4219. 53, // 218: api.user.User.CronRemoveExpirationVip:output_type -> google.protobuf.Empty
  4220. 115, // [115:219] is the sub-list for method output_type
  4221. 11, // [11:115] is the sub-list for method input_type
  4222. 11, // [11:11] is the sub-list for extension type_name
  4223. 11, // [11:11] is the sub-list for extension extendee
  4224. 0, // [0:11] is the sub-list for field type_name
  4225. }
  4226. func init() { file_user_proto_init() }
  4227. func file_user_proto_init() {
  4228. if File_user_proto != nil {
  4229. return
  4230. }
  4231. if !protoimpl.UnsafeEnabled {
  4232. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4233. switch v := v.(*PersonLookScripReply); i {
  4234. case 0:
  4235. return &v.state
  4236. case 1:
  4237. return &v.sizeCache
  4238. case 2:
  4239. return &v.unknownFields
  4240. default:
  4241. return nil
  4242. }
  4243. }
  4244. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4245. switch v := v.(*UpdateTodayRequest); i {
  4246. case 0:
  4247. return &v.state
  4248. case 1:
  4249. return &v.sizeCache
  4250. case 2:
  4251. return &v.unknownFields
  4252. default:
  4253. return nil
  4254. }
  4255. }
  4256. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4257. switch v := v.(*UpdateLastSendTemplateTimeRequest); i {
  4258. case 0:
  4259. return &v.state
  4260. case 1:
  4261. return &v.sizeCache
  4262. case 2:
  4263. return &v.unknownFields
  4264. default:
  4265. return nil
  4266. }
  4267. }
  4268. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4269. switch v := v.(*UserPrivacyStatusInfo); i {
  4270. case 0:
  4271. return &v.state
  4272. case 1:
  4273. return &v.sizeCache
  4274. case 2:
  4275. return &v.unknownFields
  4276. default:
  4277. return nil
  4278. }
  4279. }
  4280. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4281. switch v := v.(*IsCanGetReturnRewordReply); i {
  4282. case 0:
  4283. return &v.state
  4284. case 1:
  4285. return &v.sizeCache
  4286. case 2:
  4287. return &v.unknownFields
  4288. default:
  4289. return nil
  4290. }
  4291. }
  4292. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4293. switch v := v.(*GetRandomMatchingRequest); i {
  4294. case 0:
  4295. return &v.state
  4296. case 1:
  4297. return &v.sizeCache
  4298. case 2:
  4299. return &v.unknownFields
  4300. default:
  4301. return nil
  4302. }
  4303. }
  4304. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4305. switch v := v.(*MatchUserDBWithoutMapRequest); i {
  4306. case 0:
  4307. return &v.state
  4308. case 1:
  4309. return &v.sizeCache
  4310. case 2:
  4311. return &v.unknownFields
  4312. default:
  4313. return nil
  4314. }
  4315. }
  4316. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4317. switch v := v.(*GetUserLookHandPickNumReply); i {
  4318. case 0:
  4319. return &v.state
  4320. case 1:
  4321. return &v.sizeCache
  4322. case 2:
  4323. return &v.unknownFields
  4324. default:
  4325. return nil
  4326. }
  4327. }
  4328. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4329. switch v := v.(*FindUserVipListDBReply); i {
  4330. case 0:
  4331. return &v.state
  4332. case 1:
  4333. return &v.sizeCache
  4334. case 2:
  4335. return &v.unknownFields
  4336. default:
  4337. return nil
  4338. }
  4339. }
  4340. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4341. switch v := v.(*FindUserCertificationDBReply); i {
  4342. case 0:
  4343. return &v.state
  4344. case 1:
  4345. return &v.sizeCache
  4346. case 2:
  4347. return &v.unknownFields
  4348. default:
  4349. return nil
  4350. }
  4351. }
  4352. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4353. switch v := v.(*VipInfo); i {
  4354. case 0:
  4355. return &v.state
  4356. case 1:
  4357. return &v.sizeCache
  4358. case 2:
  4359. return &v.unknownFields
  4360. default:
  4361. return nil
  4362. }
  4363. }
  4364. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4365. switch v := v.(*SendMsgReduceCreditRequest); i {
  4366. case 0:
  4367. return &v.state
  4368. case 1:
  4369. return &v.sizeCache
  4370. case 2:
  4371. return &v.unknownFields
  4372. default:
  4373. return nil
  4374. }
  4375. }
  4376. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4377. switch v := v.(*UserGetInformationAwardByActivityRequest); i {
  4378. case 0:
  4379. return &v.state
  4380. case 1:
  4381. return &v.sizeCache
  4382. case 2:
  4383. return &v.unknownFields
  4384. default:
  4385. return nil
  4386. }
  4387. }
  4388. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4389. switch v := v.(*UserGetInformationAwardByActivityReply); i {
  4390. case 0:
  4391. return &v.state
  4392. case 1:
  4393. return &v.sizeCache
  4394. case 2:
  4395. return &v.unknownFields
  4396. default:
  4397. return nil
  4398. }
  4399. }
  4400. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4401. switch v := v.(*AddUserCreditRequest); i {
  4402. case 0:
  4403. return &v.state
  4404. case 1:
  4405. return &v.sizeCache
  4406. case 2:
  4407. return &v.unknownFields
  4408. default:
  4409. return nil
  4410. }
  4411. }
  4412. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4413. switch v := v.(*ReportUserBlackRequest); i {
  4414. case 0:
  4415. return &v.state
  4416. case 1:
  4417. return &v.sizeCache
  4418. case 2:
  4419. return &v.unknownFields
  4420. default:
  4421. return nil
  4422. }
  4423. }
  4424. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4425. switch v := v.(*SendMessageRequest); i {
  4426. case 0:
  4427. return &v.state
  4428. case 1:
  4429. return &v.sizeCache
  4430. case 2:
  4431. return &v.unknownFields
  4432. default:
  4433. return nil
  4434. }
  4435. }
  4436. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4437. switch v := v.(*GetRecommendUserDBRequest); i {
  4438. case 0:
  4439. return &v.state
  4440. case 1:
  4441. return &v.sizeCache
  4442. case 2:
  4443. return &v.unknownFields
  4444. default:
  4445. return nil
  4446. }
  4447. }
  4448. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4449. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  4450. case 0:
  4451. return &v.state
  4452. case 1:
  4453. return &v.sizeCache
  4454. case 2:
  4455. return &v.unknownFields
  4456. default:
  4457. return nil
  4458. }
  4459. }
  4460. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4461. switch v := v.(*FindRecommendHighQualityUserReply); i {
  4462. case 0:
  4463. return &v.state
  4464. case 1:
  4465. return &v.sizeCache
  4466. case 2:
  4467. return &v.unknownFields
  4468. default:
  4469. return nil
  4470. }
  4471. }
  4472. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4473. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  4474. case 0:
  4475. return &v.state
  4476. case 1:
  4477. return &v.sizeCache
  4478. case 2:
  4479. return &v.unknownFields
  4480. default:
  4481. return nil
  4482. }
  4483. }
  4484. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4485. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  4486. case 0:
  4487. return &v.state
  4488. case 1:
  4489. return &v.sizeCache
  4490. case 2:
  4491. return &v.unknownFields
  4492. default:
  4493. return nil
  4494. }
  4495. }
  4496. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4497. switch v := v.(*UpdateUserMatchedNumRequest); i {
  4498. case 0:
  4499. return &v.state
  4500. case 1:
  4501. return &v.sizeCache
  4502. case 2:
  4503. return &v.unknownFields
  4504. default:
  4505. return nil
  4506. }
  4507. }
  4508. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4509. switch v := v.(*SendMsgReduceCreditReply); i {
  4510. case 0:
  4511. return &v.state
  4512. case 1:
  4513. return &v.sizeCache
  4514. case 2:
  4515. return &v.unknownFields
  4516. default:
  4517. return nil
  4518. }
  4519. }
  4520. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4521. switch v := v.(*UserFreeNum); i {
  4522. case 0:
  4523. return &v.state
  4524. case 1:
  4525. return &v.sizeCache
  4526. case 2:
  4527. return &v.unknownFields
  4528. default:
  4529. return nil
  4530. }
  4531. }
  4532. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4533. switch v := v.(*ReplyScripRequest); i {
  4534. case 0:
  4535. return &v.state
  4536. case 1:
  4537. return &v.sizeCache
  4538. case 2:
  4539. return &v.unknownFields
  4540. default:
  4541. return nil
  4542. }
  4543. }
  4544. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4545. switch v := v.(*PersonLookScripRequest); i {
  4546. case 0:
  4547. return &v.state
  4548. case 1:
  4549. return &v.sizeCache
  4550. case 2:
  4551. return &v.unknownFields
  4552. default:
  4553. return nil
  4554. }
  4555. }
  4556. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4557. switch v := v.(*UserFindScripRequest); i {
  4558. case 0:
  4559. return &v.state
  4560. case 1:
  4561. return &v.sizeCache
  4562. case 2:
  4563. return &v.unknownFields
  4564. default:
  4565. return nil
  4566. }
  4567. }
  4568. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4569. switch v := v.(*DeleteScripRequest); i {
  4570. case 0:
  4571. return &v.state
  4572. case 1:
  4573. return &v.sizeCache
  4574. case 2:
  4575. return &v.unknownFields
  4576. default:
  4577. return nil
  4578. }
  4579. }
  4580. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4581. switch v := v.(*CreateScripRequest); i {
  4582. case 0:
  4583. return &v.state
  4584. case 1:
  4585. return &v.sizeCache
  4586. case 2:
  4587. return &v.unknownFields
  4588. default:
  4589. return nil
  4590. }
  4591. }
  4592. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4593. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  4594. case 0:
  4595. return &v.state
  4596. case 1:
  4597. return &v.sizeCache
  4598. case 2:
  4599. return &v.unknownFields
  4600. default:
  4601. return nil
  4602. }
  4603. }
  4604. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4605. switch v := v.(*UserRechargeRequest); i {
  4606. case 0:
  4607. return &v.state
  4608. case 1:
  4609. return &v.sizeCache
  4610. case 2:
  4611. return &v.unknownFields
  4612. default:
  4613. return nil
  4614. }
  4615. }
  4616. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4617. switch v := v.(*RechargeList); i {
  4618. case 0:
  4619. return &v.state
  4620. case 1:
  4621. return &v.sizeCache
  4622. case 2:
  4623. return &v.unknownFields
  4624. default:
  4625. return nil
  4626. }
  4627. }
  4628. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4629. switch v := v.(*VipRechargeList); i {
  4630. case 0:
  4631. return &v.state
  4632. case 1:
  4633. return &v.sizeCache
  4634. case 2:
  4635. return &v.unknownFields
  4636. default:
  4637. return nil
  4638. }
  4639. }
  4640. file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4641. switch v := v.(*VipRechargeInfo); i {
  4642. case 0:
  4643. return &v.state
  4644. case 1:
  4645. return &v.sizeCache
  4646. case 2:
  4647. return &v.unknownFields
  4648. default:
  4649. return nil
  4650. }
  4651. }
  4652. file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4653. switch v := v.(*RechargeInfo); i {
  4654. case 0:
  4655. return &v.state
  4656. case 1:
  4657. return &v.sizeCache
  4658. case 2:
  4659. return &v.unknownFields
  4660. default:
  4661. return nil
  4662. }
  4663. }
  4664. file_user_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4665. switch v := v.(*InformationStatus); i {
  4666. case 0:
  4667. return &v.state
  4668. case 1:
  4669. return &v.sizeCache
  4670. case 2:
  4671. return &v.unknownFields
  4672. default:
  4673. return nil
  4674. }
  4675. }
  4676. file_user_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4677. switch v := v.(*UserBalance); i {
  4678. case 0:
  4679. return &v.state
  4680. case 1:
  4681. return &v.sizeCache
  4682. case 2:
  4683. return &v.unknownFields
  4684. default:
  4685. return nil
  4686. }
  4687. }
  4688. file_user_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4689. switch v := v.(*UserFindChatListReply); i {
  4690. case 0:
  4691. return &v.state
  4692. case 1:
  4693. return &v.sizeCache
  4694. case 2:
  4695. return &v.unknownFields
  4696. default:
  4697. return nil
  4698. }
  4699. }
  4700. file_user_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4701. switch v := v.(*UserChatInfo); i {
  4702. case 0:
  4703. return &v.state
  4704. case 1:
  4705. return &v.sizeCache
  4706. case 2:
  4707. return &v.unknownFields
  4708. default:
  4709. return nil
  4710. }
  4711. }
  4712. file_user_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4713. switch v := v.(*UserInfo); i {
  4714. case 0:
  4715. return &v.state
  4716. case 1:
  4717. return &v.sizeCache
  4718. case 2:
  4719. return &v.unknownFields
  4720. default:
  4721. return nil
  4722. }
  4723. }
  4724. file_user_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4725. switch v := v.(*KeyRequest); i {
  4726. case 0:
  4727. return &v.state
  4728. case 1:
  4729. return &v.sizeCache
  4730. case 2:
  4731. return &v.unknownFields
  4732. default:
  4733. return nil
  4734. }
  4735. }
  4736. file_user_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4737. switch v := v.(*CreatePayRequest); i {
  4738. case 0:
  4739. return &v.state
  4740. case 1:
  4741. return &v.sizeCache
  4742. case 2:
  4743. return &v.unknownFields
  4744. default:
  4745. return nil
  4746. }
  4747. }
  4748. file_user_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4749. switch v := v.(*PayInfo); i {
  4750. case 0:
  4751. return &v.state
  4752. case 1:
  4753. return &v.sizeCache
  4754. case 2:
  4755. return &v.unknownFields
  4756. default:
  4757. return nil
  4758. }
  4759. }
  4760. file_user_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4761. switch v := v.(*PayOrderInfo); i {
  4762. case 0:
  4763. return &v.state
  4764. case 1:
  4765. return &v.sizeCache
  4766. case 2:
  4767. return &v.unknownFields
  4768. default:
  4769. return nil
  4770. }
  4771. }
  4772. file_user_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  4773. switch v := v.(*PayOrderList); i {
  4774. case 0:
  4775. return &v.state
  4776. case 1:
  4777. return &v.sizeCache
  4778. case 2:
  4779. return &v.unknownFields
  4780. default:
  4781. return nil
  4782. }
  4783. }
  4784. file_user_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  4785. switch v := v.(*FindPayOrderListRequest); i {
  4786. case 0:
  4787. return &v.state
  4788. case 1:
  4789. return &v.sizeCache
  4790. case 2:
  4791. return &v.unknownFields
  4792. default:
  4793. return nil
  4794. }
  4795. }
  4796. file_user_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  4797. switch v := v.(*PayCallbackReply); i {
  4798. case 0:
  4799. return &v.state
  4800. case 1:
  4801. return &v.sizeCache
  4802. case 2:
  4803. return &v.unknownFields
  4804. default:
  4805. return nil
  4806. }
  4807. }
  4808. }
  4809. type x struct{}
  4810. out := protoimpl.TypeBuilder{
  4811. File: protoimpl.DescBuilder{
  4812. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4813. RawDescriptor: file_user_proto_rawDesc,
  4814. NumEnums: 0,
  4815. NumMessages: 51,
  4816. NumExtensions: 0,
  4817. NumServices: 1,
  4818. },
  4819. GoTypes: file_user_proto_goTypes,
  4820. DependencyIndexes: file_user_proto_depIdxs,
  4821. MessageInfos: file_user_proto_msgTypes,
  4822. }.Build()
  4823. File_user_proto = out.File
  4824. file_user_proto_rawDesc = nil
  4825. file_user_proto_goTypes = nil
  4826. file_user_proto_depIdxs = nil
  4827. }