user.pb.go 232 KB

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