user.pb.go 225 KB

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