user.pb.go 227 KB

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