user.pb.go 253 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593
  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 UserPrivacyStatusInfo struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. IsCloseGreet bool `protobuf:"varint,1,opt,name=isCloseGreet,proto3" json:"isCloseGreet"` // 是否关闭打招呼
  30. IsCloseMatching bool `protobuf:"varint,2,opt,name=isCloseMatching,proto3" json:"isCloseMatching"` // 是否关闭匹配到我
  31. }
  32. func (x *UserPrivacyStatusInfo) Reset() {
  33. *x = UserPrivacyStatusInfo{}
  34. if protoimpl.UnsafeEnabled {
  35. mi := &file_user_proto_msgTypes[0]
  36. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  37. ms.StoreMessageInfo(mi)
  38. }
  39. }
  40. func (x *UserPrivacyStatusInfo) String() string {
  41. return protoimpl.X.MessageStringOf(x)
  42. }
  43. func (*UserPrivacyStatusInfo) ProtoMessage() {}
  44. func (x *UserPrivacyStatusInfo) ProtoReflect() protoreflect.Message {
  45. mi := &file_user_proto_msgTypes[0]
  46. if protoimpl.UnsafeEnabled && x != nil {
  47. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  48. if ms.LoadMessageInfo() == nil {
  49. ms.StoreMessageInfo(mi)
  50. }
  51. return ms
  52. }
  53. return mi.MessageOf(x)
  54. }
  55. // Deprecated: Use UserPrivacyStatusInfo.ProtoReflect.Descriptor instead.
  56. func (*UserPrivacyStatusInfo) Descriptor() ([]byte, []int) {
  57. return file_user_proto_rawDescGZIP(), []int{0}
  58. }
  59. func (x *UserPrivacyStatusInfo) GetIsCloseGreet() bool {
  60. if x != nil {
  61. return x.IsCloseGreet
  62. }
  63. return false
  64. }
  65. func (x *UserPrivacyStatusInfo) GetIsCloseMatching() bool {
  66. if x != nil {
  67. return x.IsCloseMatching
  68. }
  69. return false
  70. }
  71. type IsCanGetReturnRewordReply struct {
  72. state protoimpl.MessageState
  73. sizeCache protoimpl.SizeCache
  74. unknownFields protoimpl.UnknownFields
  75. IsCanGetReword bool `protobuf:"varint,1,opt,name=isCanGetReword,proto3" json:"isCanGetReword"`
  76. }
  77. func (x *IsCanGetReturnRewordReply) Reset() {
  78. *x = IsCanGetReturnRewordReply{}
  79. if protoimpl.UnsafeEnabled {
  80. mi := &file_user_proto_msgTypes[1]
  81. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  82. ms.StoreMessageInfo(mi)
  83. }
  84. }
  85. func (x *IsCanGetReturnRewordReply) String() string {
  86. return protoimpl.X.MessageStringOf(x)
  87. }
  88. func (*IsCanGetReturnRewordReply) ProtoMessage() {}
  89. func (x *IsCanGetReturnRewordReply) ProtoReflect() protoreflect.Message {
  90. mi := &file_user_proto_msgTypes[1]
  91. if protoimpl.UnsafeEnabled && x != nil {
  92. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  93. if ms.LoadMessageInfo() == nil {
  94. ms.StoreMessageInfo(mi)
  95. }
  96. return ms
  97. }
  98. return mi.MessageOf(x)
  99. }
  100. // Deprecated: Use IsCanGetReturnRewordReply.ProtoReflect.Descriptor instead.
  101. func (*IsCanGetReturnRewordReply) Descriptor() ([]byte, []int) {
  102. return file_user_proto_rawDescGZIP(), []int{1}
  103. }
  104. func (x *IsCanGetReturnRewordReply) GetIsCanGetReword() bool {
  105. if x != nil {
  106. return x.IsCanGetReword
  107. }
  108. return false
  109. }
  110. type GetRandomMatchingRequest struct {
  111. state protoimpl.MessageState
  112. sizeCache protoimpl.SizeCache
  113. unknownFields protoimpl.UnknownFields
  114. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  115. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  116. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  117. MaxAge int64 `protobuf:"varint,9,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  118. MinAge int64 `protobuf:"varint,10,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  119. }
  120. func (x *GetRandomMatchingRequest) Reset() {
  121. *x = GetRandomMatchingRequest{}
  122. if protoimpl.UnsafeEnabled {
  123. mi := &file_user_proto_msgTypes[2]
  124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  125. ms.StoreMessageInfo(mi)
  126. }
  127. }
  128. func (x *GetRandomMatchingRequest) String() string {
  129. return protoimpl.X.MessageStringOf(x)
  130. }
  131. func (*GetRandomMatchingRequest) ProtoMessage() {}
  132. func (x *GetRandomMatchingRequest) ProtoReflect() protoreflect.Message {
  133. mi := &file_user_proto_msgTypes[2]
  134. if protoimpl.UnsafeEnabled && x != nil {
  135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  136. if ms.LoadMessageInfo() == nil {
  137. ms.StoreMessageInfo(mi)
  138. }
  139. return ms
  140. }
  141. return mi.MessageOf(x)
  142. }
  143. // Deprecated: Use GetRandomMatchingRequest.ProtoReflect.Descriptor instead.
  144. func (*GetRandomMatchingRequest) Descriptor() ([]byte, []int) {
  145. return file_user_proto_rawDescGZIP(), []int{2}
  146. }
  147. func (x *GetRandomMatchingRequest) GetSex() int64 {
  148. if x != nil {
  149. return x.Sex
  150. }
  151. return 0
  152. }
  153. func (x *GetRandomMatchingRequest) GetProvince() string {
  154. if x != nil {
  155. return x.Province
  156. }
  157. return ""
  158. }
  159. func (x *GetRandomMatchingRequest) GetCity() string {
  160. if x != nil {
  161. return x.City
  162. }
  163. return ""
  164. }
  165. func (x *GetRandomMatchingRequest) GetMaxAge() int64 {
  166. if x != nil {
  167. return x.MaxAge
  168. }
  169. return 0
  170. }
  171. func (x *GetRandomMatchingRequest) GetMinAge() int64 {
  172. if x != nil {
  173. return x.MinAge
  174. }
  175. return 0
  176. }
  177. type MatchUserDBWithoutMapRequest struct {
  178. state protoimpl.MessageState
  179. sizeCache protoimpl.SizeCache
  180. unknownFields protoimpl.UnknownFields
  181. 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
  182. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"` // 省
  183. City string `protobuf:"bytes,3,opt,name=city,proto3" json:"city"` // 市
  184. MaxAge int64 `protobuf:"varint,4,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  185. MinAge int64 `protobuf:"varint,5,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  186. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  187. }
  188. func (x *MatchUserDBWithoutMapRequest) Reset() {
  189. *x = MatchUserDBWithoutMapRequest{}
  190. if protoimpl.UnsafeEnabled {
  191. mi := &file_user_proto_msgTypes[3]
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. ms.StoreMessageInfo(mi)
  194. }
  195. }
  196. func (x *MatchUserDBWithoutMapRequest) String() string {
  197. return protoimpl.X.MessageStringOf(x)
  198. }
  199. func (*MatchUserDBWithoutMapRequest) ProtoMessage() {}
  200. func (x *MatchUserDBWithoutMapRequest) ProtoReflect() protoreflect.Message {
  201. mi := &file_user_proto_msgTypes[3]
  202. if protoimpl.UnsafeEnabled && x != nil {
  203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  204. if ms.LoadMessageInfo() == nil {
  205. ms.StoreMessageInfo(mi)
  206. }
  207. return ms
  208. }
  209. return mi.MessageOf(x)
  210. }
  211. // Deprecated: Use MatchUserDBWithoutMapRequest.ProtoReflect.Descriptor instead.
  212. func (*MatchUserDBWithoutMapRequest) Descriptor() ([]byte, []int) {
  213. return file_user_proto_rawDescGZIP(), []int{3}
  214. }
  215. func (x *MatchUserDBWithoutMapRequest) GetIsMatchingMap() map[string]bool {
  216. if x != nil {
  217. return x.IsMatchingMap
  218. }
  219. return make(map[string]bool, 0)
  220. }
  221. func (x *MatchUserDBWithoutMapRequest) GetProvince() string {
  222. if x != nil {
  223. return x.Province
  224. }
  225. return ""
  226. }
  227. func (x *MatchUserDBWithoutMapRequest) GetCity() string {
  228. if x != nil {
  229. return x.City
  230. }
  231. return ""
  232. }
  233. func (x *MatchUserDBWithoutMapRequest) GetMaxAge() int64 {
  234. if x != nil {
  235. return x.MaxAge
  236. }
  237. return 0
  238. }
  239. func (x *MatchUserDBWithoutMapRequest) GetMinAge() int64 {
  240. if x != nil {
  241. return x.MinAge
  242. }
  243. return 0
  244. }
  245. func (x *MatchUserDBWithoutMapRequest) GetSex() int64 {
  246. if x != nil {
  247. return x.Sex
  248. }
  249. return 0
  250. }
  251. type GetUserLookHandPickNumReply struct {
  252. state protoimpl.MessageState
  253. sizeCache protoimpl.SizeCache
  254. unknownFields protoimpl.UnknownFields
  255. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"`
  256. UserIdList []string `protobuf:"bytes,2,rep,name=userIdList,proto3" json:"userIdList"`
  257. }
  258. func (x *GetUserLookHandPickNumReply) Reset() {
  259. *x = GetUserLookHandPickNumReply{}
  260. if protoimpl.UnsafeEnabled {
  261. mi := &file_user_proto_msgTypes[4]
  262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  263. ms.StoreMessageInfo(mi)
  264. }
  265. }
  266. func (x *GetUserLookHandPickNumReply) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*GetUserLookHandPickNumReply) ProtoMessage() {}
  270. func (x *GetUserLookHandPickNumReply) ProtoReflect() protoreflect.Message {
  271. mi := &file_user_proto_msgTypes[4]
  272. if protoimpl.UnsafeEnabled && x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use GetUserLookHandPickNumReply.ProtoReflect.Descriptor instead.
  282. func (*GetUserLookHandPickNumReply) Descriptor() ([]byte, []int) {
  283. return file_user_proto_rawDescGZIP(), []int{4}
  284. }
  285. func (x *GetUserLookHandPickNumReply) GetNum() int64 {
  286. if x != nil {
  287. return x.Num
  288. }
  289. return 0
  290. }
  291. func (x *GetUserLookHandPickNumReply) GetUserIdList() []string {
  292. if x != nil {
  293. return x.UserIdList
  294. }
  295. return make([]string, 0)
  296. }
  297. type FindUserVipListDBReply struct {
  298. state protoimpl.MessageState
  299. sizeCache protoimpl.SizeCache
  300. unknownFields protoimpl.UnknownFields
  301. 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"`
  302. }
  303. func (x *FindUserVipListDBReply) Reset() {
  304. *x = FindUserVipListDBReply{}
  305. if protoimpl.UnsafeEnabled {
  306. mi := &file_user_proto_msgTypes[5]
  307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  308. ms.StoreMessageInfo(mi)
  309. }
  310. }
  311. func (x *FindUserVipListDBReply) String() string {
  312. return protoimpl.X.MessageStringOf(x)
  313. }
  314. func (*FindUserVipListDBReply) ProtoMessage() {}
  315. func (x *FindUserVipListDBReply) ProtoReflect() protoreflect.Message {
  316. mi := &file_user_proto_msgTypes[5]
  317. if protoimpl.UnsafeEnabled && x != nil {
  318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  319. if ms.LoadMessageInfo() == nil {
  320. ms.StoreMessageInfo(mi)
  321. }
  322. return ms
  323. }
  324. return mi.MessageOf(x)
  325. }
  326. // Deprecated: Use FindUserVipListDBReply.ProtoReflect.Descriptor instead.
  327. func (*FindUserVipListDBReply) Descriptor() ([]byte, []int) {
  328. return file_user_proto_rawDescGZIP(), []int{5}
  329. }
  330. func (x *FindUserVipListDBReply) GetVipMap() map[string]*VipInfo {
  331. if x != nil {
  332. return x.VipMap
  333. }
  334. return make(map[string]*VipInfo, 0)
  335. }
  336. type VipInfo struct {
  337. state protoimpl.MessageState
  338. sizeCache protoimpl.SizeCache
  339. unknownFields protoimpl.UnknownFields
  340. IsVip bool `protobuf:"varint,1,opt,name=isVip,proto3" json:"isVip"` // 是否是vip
  341. VipLevel int64 `protobuf:"varint,2,opt,name=vipLevel,proto3" json:"vipLevel"` // vip 等级
  342. GrowthValue int64 `protobuf:"varint,3,opt,name=growthValue,proto3" json:"growthValue"` // vip成长值
  343. RenewalTime int64 `protobuf:"varint,4,opt,name=renewalTime,proto3" json:"renewalTime"` // 会员的续费时间
  344. ExpirationTime int64 `protobuf:"varint,5,opt,name=expirationTime,proto3" json:"expirationTime"` // 会员的到期时间
  345. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 会员的开始时间
  346. IsYearVip bool `protobuf:"varint,7,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费vip
  347. VipFunctions []string `protobuf:"bytes,8,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  348. UserId string `protobuf:"bytes,9,opt,name=userId,proto3" json:"userId"` // id
  349. }
  350. func (x *VipInfo) Reset() {
  351. *x = VipInfo{}
  352. if protoimpl.UnsafeEnabled {
  353. mi := &file_user_proto_msgTypes[6]
  354. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  355. ms.StoreMessageInfo(mi)
  356. }
  357. }
  358. func (x *VipInfo) String() string {
  359. return protoimpl.X.MessageStringOf(x)
  360. }
  361. func (*VipInfo) ProtoMessage() {}
  362. func (x *VipInfo) ProtoReflect() protoreflect.Message {
  363. mi := &file_user_proto_msgTypes[6]
  364. if protoimpl.UnsafeEnabled && x != nil {
  365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  366. if ms.LoadMessageInfo() == nil {
  367. ms.StoreMessageInfo(mi)
  368. }
  369. return ms
  370. }
  371. return mi.MessageOf(x)
  372. }
  373. // Deprecated: Use VipInfo.ProtoReflect.Descriptor instead.
  374. func (*VipInfo) Descriptor() ([]byte, []int) {
  375. return file_user_proto_rawDescGZIP(), []int{6}
  376. }
  377. func (x *VipInfo) GetIsVip() bool {
  378. if x != nil {
  379. return x.IsVip
  380. }
  381. return false
  382. }
  383. func (x *VipInfo) GetVipLevel() int64 {
  384. if x != nil {
  385. return x.VipLevel
  386. }
  387. return 0
  388. }
  389. func (x *VipInfo) GetGrowthValue() int64 {
  390. if x != nil {
  391. return x.GrowthValue
  392. }
  393. return 0
  394. }
  395. func (x *VipInfo) GetRenewalTime() int64 {
  396. if x != nil {
  397. return x.RenewalTime
  398. }
  399. return 0
  400. }
  401. func (x *VipInfo) GetExpirationTime() int64 {
  402. if x != nil {
  403. return x.ExpirationTime
  404. }
  405. return 0
  406. }
  407. func (x *VipInfo) GetCreateTime() int64 {
  408. if x != nil {
  409. return x.CreateTime
  410. }
  411. return 0
  412. }
  413. func (x *VipInfo) GetIsYearVip() bool {
  414. if x != nil {
  415. return x.IsYearVip
  416. }
  417. return false
  418. }
  419. func (x *VipInfo) GetVipFunctions() []string {
  420. if x != nil {
  421. return x.VipFunctions
  422. }
  423. return make([]string, 0)
  424. }
  425. func (x *VipInfo) GetUserId() string {
  426. if x != nil {
  427. return x.UserId
  428. }
  429. return ""
  430. }
  431. type SendMsgReduceCreditRequest struct {
  432. state protoimpl.MessageState
  433. sizeCache protoimpl.SizeCache
  434. unknownFields protoimpl.UnknownFields
  435. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  436. IsFree bool `protobuf:"varint,2,opt,name=isFree,proto3" json:"isFree"` // 是否免费
  437. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"` // 消息类型
  438. }
  439. func (x *SendMsgReduceCreditRequest) Reset() {
  440. *x = SendMsgReduceCreditRequest{}
  441. if protoimpl.UnsafeEnabled {
  442. mi := &file_user_proto_msgTypes[7]
  443. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  444. ms.StoreMessageInfo(mi)
  445. }
  446. }
  447. func (x *SendMsgReduceCreditRequest) String() string {
  448. return protoimpl.X.MessageStringOf(x)
  449. }
  450. func (*SendMsgReduceCreditRequest) ProtoMessage() {}
  451. func (x *SendMsgReduceCreditRequest) ProtoReflect() protoreflect.Message {
  452. mi := &file_user_proto_msgTypes[7]
  453. if protoimpl.UnsafeEnabled && x != nil {
  454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  455. if ms.LoadMessageInfo() == nil {
  456. ms.StoreMessageInfo(mi)
  457. }
  458. return ms
  459. }
  460. return mi.MessageOf(x)
  461. }
  462. // Deprecated: Use SendMsgReduceCreditRequest.ProtoReflect.Descriptor instead.
  463. func (*SendMsgReduceCreditRequest) Descriptor() ([]byte, []int) {
  464. return file_user_proto_rawDescGZIP(), []int{7}
  465. }
  466. func (x *SendMsgReduceCreditRequest) GetPersonID() string {
  467. if x != nil {
  468. return x.PersonID
  469. }
  470. return ""
  471. }
  472. func (x *SendMsgReduceCreditRequest) GetIsFree() bool {
  473. if x != nil {
  474. return x.IsFree
  475. }
  476. return false
  477. }
  478. func (x *SendMsgReduceCreditRequest) GetType() string {
  479. if x != nil {
  480. return x.Type
  481. }
  482. return ""
  483. }
  484. type UserGetInformationAwardByActivityRequest struct {
  485. state protoimpl.MessageState
  486. sizeCache protoimpl.SizeCache
  487. unknownFields protoimpl.UnknownFields
  488. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  489. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"`
  490. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc"`
  491. }
  492. func (x *UserGetInformationAwardByActivityRequest) Reset() {
  493. *x = UserGetInformationAwardByActivityRequest{}
  494. if protoimpl.UnsafeEnabled {
  495. mi := &file_user_proto_msgTypes[8]
  496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  497. ms.StoreMessageInfo(mi)
  498. }
  499. }
  500. func (x *UserGetInformationAwardByActivityRequest) String() string {
  501. return protoimpl.X.MessageStringOf(x)
  502. }
  503. func (*UserGetInformationAwardByActivityRequest) ProtoMessage() {}
  504. func (x *UserGetInformationAwardByActivityRequest) ProtoReflect() protoreflect.Message {
  505. mi := &file_user_proto_msgTypes[8]
  506. if protoimpl.UnsafeEnabled && x != nil {
  507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  508. if ms.LoadMessageInfo() == nil {
  509. ms.StoreMessageInfo(mi)
  510. }
  511. return ms
  512. }
  513. return mi.MessageOf(x)
  514. }
  515. // Deprecated: Use UserGetInformationAwardByActivityRequest.ProtoReflect.Descriptor instead.
  516. func (*UserGetInformationAwardByActivityRequest) Descriptor() ([]byte, []int) {
  517. return file_user_proto_rawDescGZIP(), []int{8}
  518. }
  519. func (x *UserGetInformationAwardByActivityRequest) GetUserId() string {
  520. if x != nil {
  521. return x.UserId
  522. }
  523. return ""
  524. }
  525. func (x *UserGetInformationAwardByActivityRequest) GetCredit() int64 {
  526. if x != nil {
  527. return x.Credit
  528. }
  529. return 0
  530. }
  531. func (x *UserGetInformationAwardByActivityRequest) GetDesc() string {
  532. if x != nil {
  533. return x.Desc
  534. }
  535. return ""
  536. }
  537. type UserGetInformationAwardByActivityReply struct {
  538. state protoimpl.MessageState
  539. sizeCache protoimpl.SizeCache
  540. unknownFields protoimpl.UnknownFields
  541. IsError bool `protobuf:"varint,1,opt,name=isError,proto3" json:"isError"`
  542. }
  543. func (x *UserGetInformationAwardByActivityReply) Reset() {
  544. *x = UserGetInformationAwardByActivityReply{}
  545. if protoimpl.UnsafeEnabled {
  546. mi := &file_user_proto_msgTypes[9]
  547. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  548. ms.StoreMessageInfo(mi)
  549. }
  550. }
  551. func (x *UserGetInformationAwardByActivityReply) String() string {
  552. return protoimpl.X.MessageStringOf(x)
  553. }
  554. func (*UserGetInformationAwardByActivityReply) ProtoMessage() {}
  555. func (x *UserGetInformationAwardByActivityReply) ProtoReflect() protoreflect.Message {
  556. mi := &file_user_proto_msgTypes[9]
  557. if protoimpl.UnsafeEnabled && x != nil {
  558. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  559. if ms.LoadMessageInfo() == nil {
  560. ms.StoreMessageInfo(mi)
  561. }
  562. return ms
  563. }
  564. return mi.MessageOf(x)
  565. }
  566. // Deprecated: Use UserGetInformationAwardByActivityReply.ProtoReflect.Descriptor instead.
  567. func (*UserGetInformationAwardByActivityReply) Descriptor() ([]byte, []int) {
  568. return file_user_proto_rawDescGZIP(), []int{9}
  569. }
  570. func (x *UserGetInformationAwardByActivityReply) GetIsError() bool {
  571. if x != nil {
  572. return x.IsError
  573. }
  574. return false
  575. }
  576. type AddUserCreditRequest struct {
  577. state protoimpl.MessageState
  578. sizeCache protoimpl.SizeCache
  579. unknownFields protoimpl.UnknownFields
  580. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  581. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  582. Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail"`
  583. }
  584. func (x *AddUserCreditRequest) Reset() {
  585. *x = AddUserCreditRequest{}
  586. if protoimpl.UnsafeEnabled {
  587. mi := &file_user_proto_msgTypes[10]
  588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  589. ms.StoreMessageInfo(mi)
  590. }
  591. }
  592. func (x *AddUserCreditRequest) String() string {
  593. return protoimpl.X.MessageStringOf(x)
  594. }
  595. func (*AddUserCreditRequest) ProtoMessage() {}
  596. func (x *AddUserCreditRequest) ProtoReflect() protoreflect.Message {
  597. mi := &file_user_proto_msgTypes[10]
  598. if protoimpl.UnsafeEnabled && x != nil {
  599. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  600. if ms.LoadMessageInfo() == nil {
  601. ms.StoreMessageInfo(mi)
  602. }
  603. return ms
  604. }
  605. return mi.MessageOf(x)
  606. }
  607. // Deprecated: Use AddUserCreditRequest.ProtoReflect.Descriptor instead.
  608. func (*AddUserCreditRequest) Descriptor() ([]byte, []int) {
  609. return file_user_proto_rawDescGZIP(), []int{10}
  610. }
  611. func (x *AddUserCreditRequest) GetId() string {
  612. if x != nil {
  613. return x.Id
  614. }
  615. return ""
  616. }
  617. func (x *AddUserCreditRequest) GetCredit() int64 {
  618. if x != nil {
  619. return x.Credit
  620. }
  621. return 0
  622. }
  623. func (x *AddUserCreditRequest) GetDetail() string {
  624. if x != nil {
  625. return x.Detail
  626. }
  627. return ""
  628. }
  629. type ReportUserBlackRequest struct {
  630. state protoimpl.MessageState
  631. sizeCache protoimpl.SizeCache
  632. unknownFields protoimpl.UnknownFields
  633. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  634. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result"`
  635. }
  636. func (x *ReportUserBlackRequest) Reset() {
  637. *x = ReportUserBlackRequest{}
  638. if protoimpl.UnsafeEnabled {
  639. mi := &file_user_proto_msgTypes[11]
  640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  641. ms.StoreMessageInfo(mi)
  642. }
  643. }
  644. func (x *ReportUserBlackRequest) String() string {
  645. return protoimpl.X.MessageStringOf(x)
  646. }
  647. func (*ReportUserBlackRequest) ProtoMessage() {}
  648. func (x *ReportUserBlackRequest) ProtoReflect() protoreflect.Message {
  649. mi := &file_user_proto_msgTypes[11]
  650. if protoimpl.UnsafeEnabled && x != nil {
  651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  652. if ms.LoadMessageInfo() == nil {
  653. ms.StoreMessageInfo(mi)
  654. }
  655. return ms
  656. }
  657. return mi.MessageOf(x)
  658. }
  659. // Deprecated: Use ReportUserBlackRequest.ProtoReflect.Descriptor instead.
  660. func (*ReportUserBlackRequest) Descriptor() ([]byte, []int) {
  661. return file_user_proto_rawDescGZIP(), []int{11}
  662. }
  663. func (x *ReportUserBlackRequest) GetPersonId() string {
  664. if x != nil {
  665. return x.PersonId
  666. }
  667. return ""
  668. }
  669. func (x *ReportUserBlackRequest) GetResult() string {
  670. if x != nil {
  671. return x.Result
  672. }
  673. return ""
  674. }
  675. type SendMessageRequest struct {
  676. state protoimpl.MessageState
  677. sizeCache protoimpl.SizeCache
  678. unknownFields protoimpl.UnknownFields
  679. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  680. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  681. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  682. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  683. }
  684. func (x *SendMessageRequest) Reset() {
  685. *x = SendMessageRequest{}
  686. if protoimpl.UnsafeEnabled {
  687. mi := &file_user_proto_msgTypes[12]
  688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  689. ms.StoreMessageInfo(mi)
  690. }
  691. }
  692. func (x *SendMessageRequest) String() string {
  693. return protoimpl.X.MessageStringOf(x)
  694. }
  695. func (*SendMessageRequest) ProtoMessage() {}
  696. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  697. mi := &file_user_proto_msgTypes[12]
  698. if protoimpl.UnsafeEnabled && x != nil {
  699. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  700. if ms.LoadMessageInfo() == nil {
  701. ms.StoreMessageInfo(mi)
  702. }
  703. return ms
  704. }
  705. return mi.MessageOf(x)
  706. }
  707. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  708. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  709. return file_user_proto_rawDescGZIP(), []int{12}
  710. }
  711. func (x *SendMessageRequest) GetRoomId() int64 {
  712. if x != nil {
  713. return x.RoomId
  714. }
  715. return 0
  716. }
  717. func (x *SendMessageRequest) GetMessage() *common.Message {
  718. if x != nil && x.Message != nil {
  719. return x.Message
  720. }
  721. return &common.Message{}
  722. }
  723. func (x *SendMessageRequest) GetMsgType() string {
  724. if x != nil {
  725. return x.MsgType
  726. }
  727. return ""
  728. }
  729. func (x *SendMessageRequest) GetWebsocketTag() string {
  730. if x != nil {
  731. return x.WebsocketTag
  732. }
  733. return ""
  734. }
  735. type ManagerFindIsCheckQualityUserListRequest struct {
  736. state protoimpl.MessageState
  737. sizeCache protoimpl.SizeCache
  738. unknownFields protoimpl.UnknownFields
  739. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  740. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
  741. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"` // 用户ID
  742. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 姓名
  743. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  744. }
  745. func (x *ManagerFindIsCheckQualityUserListRequest) Reset() {
  746. *x = ManagerFindIsCheckQualityUserListRequest{}
  747. if protoimpl.UnsafeEnabled {
  748. mi := &file_user_proto_msgTypes[13]
  749. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  750. ms.StoreMessageInfo(mi)
  751. }
  752. }
  753. func (x *ManagerFindIsCheckQualityUserListRequest) String() string {
  754. return protoimpl.X.MessageStringOf(x)
  755. }
  756. func (*ManagerFindIsCheckQualityUserListRequest) ProtoMessage() {}
  757. func (x *ManagerFindIsCheckQualityUserListRequest) ProtoReflect() protoreflect.Message {
  758. mi := &file_user_proto_msgTypes[13]
  759. if protoimpl.UnsafeEnabled && x != nil {
  760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  761. if ms.LoadMessageInfo() == nil {
  762. ms.StoreMessageInfo(mi)
  763. }
  764. return ms
  765. }
  766. return mi.MessageOf(x)
  767. }
  768. // Deprecated: Use ManagerFindIsCheckQualityUserListRequest.ProtoReflect.Descriptor instead.
  769. func (*ManagerFindIsCheckQualityUserListRequest) Descriptor() ([]byte, []int) {
  770. return file_user_proto_rawDescGZIP(), []int{13}
  771. }
  772. func (x *ManagerFindIsCheckQualityUserListRequest) GetPage() int64 {
  773. if x != nil {
  774. return x.Page
  775. }
  776. return 0
  777. }
  778. func (x *ManagerFindIsCheckQualityUserListRequest) GetPageSize() int64 {
  779. if x != nil {
  780. return x.PageSize
  781. }
  782. return 0
  783. }
  784. func (x *ManagerFindIsCheckQualityUserListRequest) GetId() int64 {
  785. if x != nil {
  786. return x.Id
  787. }
  788. return 0
  789. }
  790. func (x *ManagerFindIsCheckQualityUserListRequest) GetName() string {
  791. if x != nil {
  792. return x.Name
  793. }
  794. return ""
  795. }
  796. func (x *ManagerFindIsCheckQualityUserListRequest) GetSex() int64 {
  797. if x != nil {
  798. return x.Sex
  799. }
  800. return 0
  801. }
  802. type ManagerUpdateUserCreditRequest struct {
  803. state protoimpl.MessageState
  804. sizeCache protoimpl.SizeCache
  805. unknownFields protoimpl.UnknownFields
  806. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  807. Num int64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
  808. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title"`
  809. }
  810. func (x *ManagerUpdateUserCreditRequest) Reset() {
  811. *x = ManagerUpdateUserCreditRequest{}
  812. if protoimpl.UnsafeEnabled {
  813. mi := &file_user_proto_msgTypes[14]
  814. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  815. ms.StoreMessageInfo(mi)
  816. }
  817. }
  818. func (x *ManagerUpdateUserCreditRequest) String() string {
  819. return protoimpl.X.MessageStringOf(x)
  820. }
  821. func (*ManagerUpdateUserCreditRequest) ProtoMessage() {}
  822. func (x *ManagerUpdateUserCreditRequest) ProtoReflect() protoreflect.Message {
  823. mi := &file_user_proto_msgTypes[14]
  824. if protoimpl.UnsafeEnabled && x != nil {
  825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  826. if ms.LoadMessageInfo() == nil {
  827. ms.StoreMessageInfo(mi)
  828. }
  829. return ms
  830. }
  831. return mi.MessageOf(x)
  832. }
  833. // Deprecated: Use ManagerUpdateUserCreditRequest.ProtoReflect.Descriptor instead.
  834. func (*ManagerUpdateUserCreditRequest) Descriptor() ([]byte, []int) {
  835. return file_user_proto_rawDescGZIP(), []int{14}
  836. }
  837. func (x *ManagerUpdateUserCreditRequest) GetPersonId() string {
  838. if x != nil {
  839. return x.PersonId
  840. }
  841. return ""
  842. }
  843. func (x *ManagerUpdateUserCreditRequest) GetNum() int64 {
  844. if x != nil {
  845. return x.Num
  846. }
  847. return 0
  848. }
  849. func (x *ManagerUpdateUserCreditRequest) GetTitle() string {
  850. if x != nil {
  851. return x.Title
  852. }
  853. return ""
  854. }
  855. type ManagerMarkHighQualityUserRequest struct {
  856. state protoimpl.MessageState
  857. sizeCache protoimpl.SizeCache
  858. unknownFields protoimpl.UnknownFields
  859. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  860. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  861. }
  862. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  863. *x = ManagerMarkHighQualityUserRequest{}
  864. if protoimpl.UnsafeEnabled {
  865. mi := &file_user_proto_msgTypes[15]
  866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  867. ms.StoreMessageInfo(mi)
  868. }
  869. }
  870. func (x *ManagerMarkHighQualityUserRequest) String() string {
  871. return protoimpl.X.MessageStringOf(x)
  872. }
  873. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  874. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  875. mi := &file_user_proto_msgTypes[15]
  876. if protoimpl.UnsafeEnabled && x != nil {
  877. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  878. if ms.LoadMessageInfo() == nil {
  879. ms.StoreMessageInfo(mi)
  880. }
  881. return ms
  882. }
  883. return mi.MessageOf(x)
  884. }
  885. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  886. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  887. return file_user_proto_rawDescGZIP(), []int{15}
  888. }
  889. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  890. if x != nil {
  891. return x.PassIds
  892. }
  893. return make([]string, 0)
  894. }
  895. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  896. if x != nil {
  897. return x.UnPassIds
  898. }
  899. return make([]string, 0)
  900. }
  901. type ManagerReMarkHighQualityUserRequest struct {
  902. state protoimpl.MessageState
  903. sizeCache protoimpl.SizeCache
  904. unknownFields protoimpl.UnknownFields
  905. UserIds []string `protobuf:"bytes,1,rep,name=userIds,proto3" json:"userIds"`
  906. }
  907. func (x *ManagerReMarkHighQualityUserRequest) Reset() {
  908. *x = ManagerReMarkHighQualityUserRequest{}
  909. if protoimpl.UnsafeEnabled {
  910. mi := &file_user_proto_msgTypes[16]
  911. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  912. ms.StoreMessageInfo(mi)
  913. }
  914. }
  915. func (x *ManagerReMarkHighQualityUserRequest) String() string {
  916. return protoimpl.X.MessageStringOf(x)
  917. }
  918. func (*ManagerReMarkHighQualityUserRequest) ProtoMessage() {}
  919. func (x *ManagerReMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  920. mi := &file_user_proto_msgTypes[16]
  921. if protoimpl.UnsafeEnabled && x != nil {
  922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  923. if ms.LoadMessageInfo() == nil {
  924. ms.StoreMessageInfo(mi)
  925. }
  926. return ms
  927. }
  928. return mi.MessageOf(x)
  929. }
  930. // Deprecated: Use ManagerReMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  931. func (*ManagerReMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  932. return file_user_proto_rawDescGZIP(), []int{16}
  933. }
  934. func (x *ManagerReMarkHighQualityUserRequest) GetUserIds() []string {
  935. if x != nil {
  936. return x.UserIds
  937. }
  938. return make([]string, 0)
  939. }
  940. type GetRecommendUserDBRequest struct {
  941. state protoimpl.MessageState
  942. sizeCache protoimpl.SizeCache
  943. unknownFields protoimpl.UnknownFields
  944. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  945. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  946. }
  947. func (x *GetRecommendUserDBRequest) Reset() {
  948. *x = GetRecommendUserDBRequest{}
  949. if protoimpl.UnsafeEnabled {
  950. mi := &file_user_proto_msgTypes[17]
  951. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  952. ms.StoreMessageInfo(mi)
  953. }
  954. }
  955. func (x *GetRecommendUserDBRequest) String() string {
  956. return protoimpl.X.MessageStringOf(x)
  957. }
  958. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  959. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  960. mi := &file_user_proto_msgTypes[17]
  961. if protoimpl.UnsafeEnabled && x != nil {
  962. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  963. if ms.LoadMessageInfo() == nil {
  964. ms.StoreMessageInfo(mi)
  965. }
  966. return ms
  967. }
  968. return mi.MessageOf(x)
  969. }
  970. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  971. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  972. return file_user_proto_rawDescGZIP(), []int{17}
  973. }
  974. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  975. if x != nil {
  976. return x.Sex
  977. }
  978. return 0
  979. }
  980. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  981. if x != nil {
  982. return x.PersonIds
  983. }
  984. return make([]string, 0)
  985. }
  986. type FindRecommendHighQualityUserRequest struct {
  987. state protoimpl.MessageState
  988. sizeCache protoimpl.SizeCache
  989. unknownFields protoimpl.UnknownFields
  990. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  991. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  992. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  993. }
  994. func (x *FindRecommendHighQualityUserRequest) Reset() {
  995. *x = FindRecommendHighQualityUserRequest{}
  996. if protoimpl.UnsafeEnabled {
  997. mi := &file_user_proto_msgTypes[18]
  998. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  999. ms.StoreMessageInfo(mi)
  1000. }
  1001. }
  1002. func (x *FindRecommendHighQualityUserRequest) String() string {
  1003. return protoimpl.X.MessageStringOf(x)
  1004. }
  1005. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  1006. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  1007. mi := &file_user_proto_msgTypes[18]
  1008. if protoimpl.UnsafeEnabled && x != nil {
  1009. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1010. if ms.LoadMessageInfo() == nil {
  1011. ms.StoreMessageInfo(mi)
  1012. }
  1013. return ms
  1014. }
  1015. return mi.MessageOf(x)
  1016. }
  1017. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  1018. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  1019. return file_user_proto_rawDescGZIP(), []int{18}
  1020. }
  1021. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  1022. if x != nil {
  1023. return x.Num
  1024. }
  1025. return 0
  1026. }
  1027. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  1028. if x != nil {
  1029. return x.Sex
  1030. }
  1031. return 0
  1032. }
  1033. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  1034. if x != nil {
  1035. return x.PersonId
  1036. }
  1037. return ""
  1038. }
  1039. type FindRecommendHighQualityUserReply struct {
  1040. state protoimpl.MessageState
  1041. sizeCache protoimpl.SizeCache
  1042. unknownFields protoimpl.UnknownFields
  1043. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  1044. }
  1045. func (x *FindRecommendHighQualityUserReply) Reset() {
  1046. *x = FindRecommendHighQualityUserReply{}
  1047. if protoimpl.UnsafeEnabled {
  1048. mi := &file_user_proto_msgTypes[19]
  1049. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1050. ms.StoreMessageInfo(mi)
  1051. }
  1052. }
  1053. func (x *FindRecommendHighQualityUserReply) String() string {
  1054. return protoimpl.X.MessageStringOf(x)
  1055. }
  1056. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  1057. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  1058. mi := &file_user_proto_msgTypes[19]
  1059. if protoimpl.UnsafeEnabled && x != nil {
  1060. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1061. if ms.LoadMessageInfo() == nil {
  1062. ms.StoreMessageInfo(mi)
  1063. }
  1064. return ms
  1065. }
  1066. return mi.MessageOf(x)
  1067. }
  1068. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  1069. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  1070. return file_user_proto_rawDescGZIP(), []int{19}
  1071. }
  1072. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  1073. if x != nil {
  1074. return x.PersonIdList
  1075. }
  1076. return make([]string, 0)
  1077. }
  1078. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  1079. state protoimpl.MessageState
  1080. sizeCache protoimpl.SizeCache
  1081. unknownFields protoimpl.UnknownFields
  1082. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1083. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1084. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1085. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  1086. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  1087. City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city"` //城市
  1088. }
  1089. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  1090. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  1091. if protoimpl.UnsafeEnabled {
  1092. mi := &file_user_proto_msgTypes[20]
  1093. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1094. ms.StoreMessageInfo(mi)
  1095. }
  1096. }
  1097. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  1098. return protoimpl.X.MessageStringOf(x)
  1099. }
  1100. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  1101. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  1102. mi := &file_user_proto_msgTypes[20]
  1103. if protoimpl.UnsafeEnabled && x != nil {
  1104. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1105. if ms.LoadMessageInfo() == nil {
  1106. ms.StoreMessageInfo(mi)
  1107. }
  1108. return ms
  1109. }
  1110. return mi.MessageOf(x)
  1111. }
  1112. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  1113. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  1114. return file_user_proto_rawDescGZIP(), []int{20}
  1115. }
  1116. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  1117. if x != nil {
  1118. return x.TodayMatchedNum
  1119. }
  1120. return 0
  1121. }
  1122. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  1123. if x != nil {
  1124. return x.Nickname
  1125. }
  1126. return ""
  1127. }
  1128. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  1129. if x != nil {
  1130. return x.AvatarUrl
  1131. }
  1132. return ""
  1133. }
  1134. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  1135. if x != nil {
  1136. return x.Sex
  1137. }
  1138. return 0
  1139. }
  1140. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  1141. if x != nil {
  1142. return x.Age
  1143. }
  1144. return 0
  1145. }
  1146. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetCity() string {
  1147. if x != nil {
  1148. return x.City
  1149. }
  1150. return ""
  1151. }
  1152. type GetUserDBMsgFromWebsocketReply struct {
  1153. state protoimpl.MessageState
  1154. sizeCache protoimpl.SizeCache
  1155. unknownFields protoimpl.UnknownFields
  1156. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1157. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  1158. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  1159. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1160. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1161. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1162. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  1163. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  1164. }
  1165. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  1166. *x = GetUserDBMsgFromWebsocketReply{}
  1167. if protoimpl.UnsafeEnabled {
  1168. mi := &file_user_proto_msgTypes[21]
  1169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1170. ms.StoreMessageInfo(mi)
  1171. }
  1172. }
  1173. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  1174. return protoimpl.X.MessageStringOf(x)
  1175. }
  1176. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  1177. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  1178. mi := &file_user_proto_msgTypes[21]
  1179. if protoimpl.UnsafeEnabled && x != nil {
  1180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1181. if ms.LoadMessageInfo() == nil {
  1182. ms.StoreMessageInfo(mi)
  1183. }
  1184. return ms
  1185. }
  1186. return mi.MessageOf(x)
  1187. }
  1188. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  1189. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  1190. return file_user_proto_rawDescGZIP(), []int{21}
  1191. }
  1192. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  1193. if x != nil {
  1194. return x.Id
  1195. }
  1196. return ""
  1197. }
  1198. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  1199. if x != nil {
  1200. return x.Sex
  1201. }
  1202. return 0
  1203. }
  1204. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  1205. if x != nil {
  1206. return x.Weight
  1207. }
  1208. return 0
  1209. }
  1210. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  1211. if x != nil {
  1212. return x.WorkingStatus
  1213. }
  1214. return ""
  1215. }
  1216. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  1217. if x != nil {
  1218. return x.TodayMatchedNum
  1219. }
  1220. return 0
  1221. }
  1222. func (x *GetUserDBMsgFromWebsocketReply) GetAge() int64 {
  1223. if x != nil {
  1224. return x.Age
  1225. }
  1226. return 0
  1227. }
  1228. func (x *GetUserDBMsgFromWebsocketReply) GetProvince() string {
  1229. if x != nil {
  1230. return x.Province
  1231. }
  1232. return ""
  1233. }
  1234. func (x *GetUserDBMsgFromWebsocketReply) GetCity() string {
  1235. if x != nil {
  1236. return x.City
  1237. }
  1238. return ""
  1239. }
  1240. type UpdateUserMatchedNumRequest struct {
  1241. state protoimpl.MessageState
  1242. sizeCache protoimpl.SizeCache
  1243. unknownFields protoimpl.UnknownFields
  1244. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  1245. }
  1246. func (x *UpdateUserMatchedNumRequest) Reset() {
  1247. *x = UpdateUserMatchedNumRequest{}
  1248. if protoimpl.UnsafeEnabled {
  1249. mi := &file_user_proto_msgTypes[22]
  1250. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1251. ms.StoreMessageInfo(mi)
  1252. }
  1253. }
  1254. func (x *UpdateUserMatchedNumRequest) String() string {
  1255. return protoimpl.X.MessageStringOf(x)
  1256. }
  1257. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  1258. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  1259. mi := &file_user_proto_msgTypes[22]
  1260. if protoimpl.UnsafeEnabled && x != nil {
  1261. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1262. if ms.LoadMessageInfo() == nil {
  1263. ms.StoreMessageInfo(mi)
  1264. }
  1265. return ms
  1266. }
  1267. return mi.MessageOf(x)
  1268. }
  1269. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  1270. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  1271. return file_user_proto_rawDescGZIP(), []int{22}
  1272. }
  1273. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  1274. if x != nil {
  1275. return x.UserId
  1276. }
  1277. return ""
  1278. }
  1279. type SendNewMessageUnreadReminderRequest struct {
  1280. state protoimpl.MessageState
  1281. sizeCache protoimpl.SizeCache
  1282. unknownFields protoimpl.UnknownFields
  1283. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  1284. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  1285. }
  1286. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  1287. *x = SendNewMessageUnreadReminderRequest{}
  1288. if protoimpl.UnsafeEnabled {
  1289. mi := &file_user_proto_msgTypes[23]
  1290. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1291. ms.StoreMessageInfo(mi)
  1292. }
  1293. }
  1294. func (x *SendNewMessageUnreadReminderRequest) String() string {
  1295. return protoimpl.X.MessageStringOf(x)
  1296. }
  1297. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  1298. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  1299. mi := &file_user_proto_msgTypes[23]
  1300. if protoimpl.UnsafeEnabled && x != nil {
  1301. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1302. if ms.LoadMessageInfo() == nil {
  1303. ms.StoreMessageInfo(mi)
  1304. }
  1305. return ms
  1306. }
  1307. return mi.MessageOf(x)
  1308. }
  1309. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  1310. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  1311. return file_user_proto_rawDescGZIP(), []int{23}
  1312. }
  1313. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  1314. if x != nil {
  1315. return x.PersonId
  1316. }
  1317. return ""
  1318. }
  1319. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  1320. if x != nil {
  1321. return x.SendPersonId
  1322. }
  1323. return ""
  1324. }
  1325. type SendMsgReduceCreditReply struct {
  1326. state protoimpl.MessageState
  1327. sizeCache protoimpl.SizeCache
  1328. unknownFields protoimpl.UnknownFields
  1329. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  1330. }
  1331. func (x *SendMsgReduceCreditReply) Reset() {
  1332. *x = SendMsgReduceCreditReply{}
  1333. if protoimpl.UnsafeEnabled {
  1334. mi := &file_user_proto_msgTypes[24]
  1335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1336. ms.StoreMessageInfo(mi)
  1337. }
  1338. }
  1339. func (x *SendMsgReduceCreditReply) String() string {
  1340. return protoimpl.X.MessageStringOf(x)
  1341. }
  1342. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  1343. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  1344. mi := &file_user_proto_msgTypes[24]
  1345. if protoimpl.UnsafeEnabled && x != nil {
  1346. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1347. if ms.LoadMessageInfo() == nil {
  1348. ms.StoreMessageInfo(mi)
  1349. }
  1350. return ms
  1351. }
  1352. return mi.MessageOf(x)
  1353. }
  1354. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  1355. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  1356. return file_user_proto_rawDescGZIP(), []int{24}
  1357. }
  1358. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  1359. if x != nil {
  1360. return x.IsSendReminder
  1361. }
  1362. return false
  1363. }
  1364. type UserFreeNum struct {
  1365. state protoimpl.MessageState
  1366. sizeCache protoimpl.SizeCache
  1367. unknownFields protoimpl.UnknownFields
  1368. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  1369. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  1370. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  1371. }
  1372. func (x *UserFreeNum) Reset() {
  1373. *x = UserFreeNum{}
  1374. if protoimpl.UnsafeEnabled {
  1375. mi := &file_user_proto_msgTypes[25]
  1376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1377. ms.StoreMessageInfo(mi)
  1378. }
  1379. }
  1380. func (x *UserFreeNum) String() string {
  1381. return protoimpl.X.MessageStringOf(x)
  1382. }
  1383. func (*UserFreeNum) ProtoMessage() {}
  1384. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  1385. mi := &file_user_proto_msgTypes[25]
  1386. if protoimpl.UnsafeEnabled && x != nil {
  1387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1388. if ms.LoadMessageInfo() == nil {
  1389. ms.StoreMessageInfo(mi)
  1390. }
  1391. return ms
  1392. }
  1393. return mi.MessageOf(x)
  1394. }
  1395. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  1396. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  1397. return file_user_proto_rawDescGZIP(), []int{25}
  1398. }
  1399. func (x *UserFreeNum) GetReplyScripNum() int64 {
  1400. if x != nil {
  1401. return x.ReplyScripNum
  1402. }
  1403. return 0
  1404. }
  1405. func (x *UserFreeNum) GetCreateScripNum() int64 {
  1406. if x != nil {
  1407. return x.CreateScripNum
  1408. }
  1409. return 0
  1410. }
  1411. func (x *UserFreeNum) GetMatchingNum() int64 {
  1412. if x != nil {
  1413. return x.MatchingNum
  1414. }
  1415. return 0
  1416. }
  1417. type ReplyScripRequest struct {
  1418. state protoimpl.MessageState
  1419. sizeCache protoimpl.SizeCache
  1420. unknownFields protoimpl.UnknownFields
  1421. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  1422. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  1423. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  1424. }
  1425. func (x *ReplyScripRequest) Reset() {
  1426. *x = ReplyScripRequest{}
  1427. if protoimpl.UnsafeEnabled {
  1428. mi := &file_user_proto_msgTypes[26]
  1429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1430. ms.StoreMessageInfo(mi)
  1431. }
  1432. }
  1433. func (x *ReplyScripRequest) String() string {
  1434. return protoimpl.X.MessageStringOf(x)
  1435. }
  1436. func (*ReplyScripRequest) ProtoMessage() {}
  1437. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  1438. mi := &file_user_proto_msgTypes[26]
  1439. if protoimpl.UnsafeEnabled && x != nil {
  1440. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1441. if ms.LoadMessageInfo() == nil {
  1442. ms.StoreMessageInfo(mi)
  1443. }
  1444. return ms
  1445. }
  1446. return mi.MessageOf(x)
  1447. }
  1448. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  1449. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  1450. return file_user_proto_rawDescGZIP(), []int{26}
  1451. }
  1452. func (x *ReplyScripRequest) GetScripId() int64 {
  1453. if x != nil {
  1454. return x.ScripId
  1455. }
  1456. return 0
  1457. }
  1458. func (x *ReplyScripRequest) GetMessage() *common.Message {
  1459. if x != nil && x.Message != nil {
  1460. return x.Message
  1461. }
  1462. return &common.Message{}
  1463. }
  1464. func (x *ReplyScripRequest) GetMsgType() string {
  1465. if x != nil {
  1466. return x.MsgType
  1467. }
  1468. return ""
  1469. }
  1470. type PersonLookScripRequest struct {
  1471. state protoimpl.MessageState
  1472. sizeCache protoimpl.SizeCache
  1473. unknownFields protoimpl.UnknownFields
  1474. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1475. }
  1476. func (x *PersonLookScripRequest) Reset() {
  1477. *x = PersonLookScripRequest{}
  1478. if protoimpl.UnsafeEnabled {
  1479. mi := &file_user_proto_msgTypes[27]
  1480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1481. ms.StoreMessageInfo(mi)
  1482. }
  1483. }
  1484. func (x *PersonLookScripRequest) String() string {
  1485. return protoimpl.X.MessageStringOf(x)
  1486. }
  1487. func (*PersonLookScripRequest) ProtoMessage() {}
  1488. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  1489. mi := &file_user_proto_msgTypes[27]
  1490. if protoimpl.UnsafeEnabled && x != nil {
  1491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1492. if ms.LoadMessageInfo() == nil {
  1493. ms.StoreMessageInfo(mi)
  1494. }
  1495. return ms
  1496. }
  1497. return mi.MessageOf(x)
  1498. }
  1499. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  1500. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  1501. return file_user_proto_rawDescGZIP(), []int{27}
  1502. }
  1503. func (x *PersonLookScripRequest) GetScripId() int64 {
  1504. if x != nil {
  1505. return x.ScripId
  1506. }
  1507. return 0
  1508. }
  1509. type UserFindScripRequest struct {
  1510. state protoimpl.MessageState
  1511. sizeCache protoimpl.SizeCache
  1512. unknownFields protoimpl.UnknownFields
  1513. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  1514. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  1515. }
  1516. func (x *UserFindScripRequest) Reset() {
  1517. *x = UserFindScripRequest{}
  1518. if protoimpl.UnsafeEnabled {
  1519. mi := &file_user_proto_msgTypes[28]
  1520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1521. ms.StoreMessageInfo(mi)
  1522. }
  1523. }
  1524. func (x *UserFindScripRequest) String() string {
  1525. return protoimpl.X.MessageStringOf(x)
  1526. }
  1527. func (*UserFindScripRequest) ProtoMessage() {}
  1528. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  1529. mi := &file_user_proto_msgTypes[28]
  1530. if protoimpl.UnsafeEnabled && x != nil {
  1531. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1532. if ms.LoadMessageInfo() == nil {
  1533. ms.StoreMessageInfo(mi)
  1534. }
  1535. return ms
  1536. }
  1537. return mi.MessageOf(x)
  1538. }
  1539. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  1540. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  1541. return file_user_proto_rawDescGZIP(), []int{28}
  1542. }
  1543. func (x *UserFindScripRequest) GetNextId() int64 {
  1544. if x != nil {
  1545. return x.NextId
  1546. }
  1547. return 0
  1548. }
  1549. func (x *UserFindScripRequest) GetOffset() int64 {
  1550. if x != nil {
  1551. return x.Offset
  1552. }
  1553. return 0
  1554. }
  1555. type DeleteScripRequest struct {
  1556. state protoimpl.MessageState
  1557. sizeCache protoimpl.SizeCache
  1558. unknownFields protoimpl.UnknownFields
  1559. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1560. }
  1561. func (x *DeleteScripRequest) Reset() {
  1562. *x = DeleteScripRequest{}
  1563. if protoimpl.UnsafeEnabled {
  1564. mi := &file_user_proto_msgTypes[29]
  1565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1566. ms.StoreMessageInfo(mi)
  1567. }
  1568. }
  1569. func (x *DeleteScripRequest) String() string {
  1570. return protoimpl.X.MessageStringOf(x)
  1571. }
  1572. func (*DeleteScripRequest) ProtoMessage() {}
  1573. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  1574. mi := &file_user_proto_msgTypes[29]
  1575. if protoimpl.UnsafeEnabled && x != nil {
  1576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1577. if ms.LoadMessageInfo() == nil {
  1578. ms.StoreMessageInfo(mi)
  1579. }
  1580. return ms
  1581. }
  1582. return mi.MessageOf(x)
  1583. }
  1584. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  1585. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  1586. return file_user_proto_rawDescGZIP(), []int{29}
  1587. }
  1588. func (x *DeleteScripRequest) GetScripId() int64 {
  1589. if x != nil {
  1590. return x.ScripId
  1591. }
  1592. return 0
  1593. }
  1594. type CreateScripRequest struct {
  1595. state protoimpl.MessageState
  1596. sizeCache protoimpl.SizeCache
  1597. unknownFields protoimpl.UnknownFields
  1598. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  1599. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  1600. }
  1601. func (x *CreateScripRequest) Reset() {
  1602. *x = CreateScripRequest{}
  1603. if protoimpl.UnsafeEnabled {
  1604. mi := &file_user_proto_msgTypes[30]
  1605. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1606. ms.StoreMessageInfo(mi)
  1607. }
  1608. }
  1609. func (x *CreateScripRequest) String() string {
  1610. return protoimpl.X.MessageStringOf(x)
  1611. }
  1612. func (*CreateScripRequest) ProtoMessage() {}
  1613. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  1614. mi := &file_user_proto_msgTypes[30]
  1615. if protoimpl.UnsafeEnabled && x != nil {
  1616. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1617. if ms.LoadMessageInfo() == nil {
  1618. ms.StoreMessageInfo(mi)
  1619. }
  1620. return ms
  1621. }
  1622. return mi.MessageOf(x)
  1623. }
  1624. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  1625. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  1626. return file_user_proto_rawDescGZIP(), []int{30}
  1627. }
  1628. func (x *CreateScripRequest) GetText() string {
  1629. if x != nil {
  1630. return x.Text
  1631. }
  1632. return ""
  1633. }
  1634. func (x *CreateScripRequest) GetPictureUrl() string {
  1635. if x != nil {
  1636. return x.PictureUrl
  1637. }
  1638. return ""
  1639. }
  1640. type FindMatchingAvatarAndNumReply struct {
  1641. state protoimpl.MessageState
  1642. sizeCache protoimpl.SizeCache
  1643. unknownFields protoimpl.UnknownFields
  1644. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  1645. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  1646. }
  1647. func (x *FindMatchingAvatarAndNumReply) Reset() {
  1648. *x = FindMatchingAvatarAndNumReply{}
  1649. if protoimpl.UnsafeEnabled {
  1650. mi := &file_user_proto_msgTypes[31]
  1651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1652. ms.StoreMessageInfo(mi)
  1653. }
  1654. }
  1655. func (x *FindMatchingAvatarAndNumReply) String() string {
  1656. return protoimpl.X.MessageStringOf(x)
  1657. }
  1658. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  1659. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  1660. mi := &file_user_proto_msgTypes[31]
  1661. if protoimpl.UnsafeEnabled && x != nil {
  1662. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1663. if ms.LoadMessageInfo() == nil {
  1664. ms.StoreMessageInfo(mi)
  1665. }
  1666. return ms
  1667. }
  1668. return mi.MessageOf(x)
  1669. }
  1670. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  1671. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  1672. return file_user_proto_rawDescGZIP(), []int{31}
  1673. }
  1674. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  1675. if x != nil {
  1676. return x.Num
  1677. }
  1678. return 0
  1679. }
  1680. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  1681. if x != nil {
  1682. return x.List
  1683. }
  1684. return make([]string, 0)
  1685. }
  1686. type UserRechargeRequest struct {
  1687. state protoimpl.MessageState
  1688. sizeCache protoimpl.SizeCache
  1689. unknownFields protoimpl.UnknownFields
  1690. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  1691. }
  1692. func (x *UserRechargeRequest) Reset() {
  1693. *x = UserRechargeRequest{}
  1694. if protoimpl.UnsafeEnabled {
  1695. mi := &file_user_proto_msgTypes[32]
  1696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1697. ms.StoreMessageInfo(mi)
  1698. }
  1699. }
  1700. func (x *UserRechargeRequest) String() string {
  1701. return protoimpl.X.MessageStringOf(x)
  1702. }
  1703. func (*UserRechargeRequest) ProtoMessage() {}
  1704. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  1705. mi := &file_user_proto_msgTypes[32]
  1706. if protoimpl.UnsafeEnabled && x != nil {
  1707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1708. if ms.LoadMessageInfo() == nil {
  1709. ms.StoreMessageInfo(mi)
  1710. }
  1711. return ms
  1712. }
  1713. return mi.MessageOf(x)
  1714. }
  1715. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  1716. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  1717. return file_user_proto_rawDescGZIP(), []int{32}
  1718. }
  1719. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  1720. if x != nil {
  1721. return x.RechargeTemplateId
  1722. }
  1723. return 0
  1724. }
  1725. type RechargeList struct {
  1726. state protoimpl.MessageState
  1727. sizeCache protoimpl.SizeCache
  1728. unknownFields protoimpl.UnknownFields
  1729. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1730. }
  1731. func (x *RechargeList) Reset() {
  1732. *x = RechargeList{}
  1733. if protoimpl.UnsafeEnabled {
  1734. mi := &file_user_proto_msgTypes[33]
  1735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1736. ms.StoreMessageInfo(mi)
  1737. }
  1738. }
  1739. func (x *RechargeList) String() string {
  1740. return protoimpl.X.MessageStringOf(x)
  1741. }
  1742. func (*RechargeList) ProtoMessage() {}
  1743. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1744. mi := &file_user_proto_msgTypes[33]
  1745. if protoimpl.UnsafeEnabled && x != nil {
  1746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1747. if ms.LoadMessageInfo() == nil {
  1748. ms.StoreMessageInfo(mi)
  1749. }
  1750. return ms
  1751. }
  1752. return mi.MessageOf(x)
  1753. }
  1754. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1755. func (*RechargeList) Descriptor() ([]byte, []int) {
  1756. return file_user_proto_rawDescGZIP(), []int{33}
  1757. }
  1758. func (x *RechargeList) GetList() []*RechargeInfo {
  1759. if x != nil {
  1760. return x.List
  1761. }
  1762. return make([]*RechargeInfo, 0)
  1763. }
  1764. type VipRechargeList struct {
  1765. state protoimpl.MessageState
  1766. sizeCache protoimpl.SizeCache
  1767. unknownFields protoimpl.UnknownFields
  1768. List []*VipRechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1769. }
  1770. func (x *VipRechargeList) Reset() {
  1771. *x = VipRechargeList{}
  1772. if protoimpl.UnsafeEnabled {
  1773. mi := &file_user_proto_msgTypes[34]
  1774. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1775. ms.StoreMessageInfo(mi)
  1776. }
  1777. }
  1778. func (x *VipRechargeList) String() string {
  1779. return protoimpl.X.MessageStringOf(x)
  1780. }
  1781. func (*VipRechargeList) ProtoMessage() {}
  1782. func (x *VipRechargeList) ProtoReflect() protoreflect.Message {
  1783. mi := &file_user_proto_msgTypes[34]
  1784. if protoimpl.UnsafeEnabled && x != nil {
  1785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1786. if ms.LoadMessageInfo() == nil {
  1787. ms.StoreMessageInfo(mi)
  1788. }
  1789. return ms
  1790. }
  1791. return mi.MessageOf(x)
  1792. }
  1793. // Deprecated: Use VipRechargeList.ProtoReflect.Descriptor instead.
  1794. func (*VipRechargeList) Descriptor() ([]byte, []int) {
  1795. return file_user_proto_rawDescGZIP(), []int{34}
  1796. }
  1797. func (x *VipRechargeList) GetList() []*VipRechargeInfo {
  1798. if x != nil {
  1799. return x.List
  1800. }
  1801. return make([]*VipRechargeInfo, 0)
  1802. }
  1803. type VipRechargeInfo struct {
  1804. state protoimpl.MessageState
  1805. sizeCache protoimpl.SizeCache
  1806. unknownFields protoimpl.UnknownFields
  1807. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1808. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label"` // 标题
  1809. Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"` // 价格
  1810. OriginPrice int64 `protobuf:"varint,4,opt,name=originPrice,proto3" json:"originPrice"` // 原价
  1811. AveragePerDayPrice int64 `protobuf:"varint,5,opt,name=averagePerDayPrice,proto3" json:"averagePerDayPrice"` // 日常价格
  1812. AdditionalCoin int64 `protobuf:"varint,6,opt,name=additionalCoin,proto3" json:"additionalCoin"` // 赠送的积分
  1813. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` // 描述
  1814. }
  1815. func (x *VipRechargeInfo) Reset() {
  1816. *x = VipRechargeInfo{}
  1817. if protoimpl.UnsafeEnabled {
  1818. mi := &file_user_proto_msgTypes[35]
  1819. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1820. ms.StoreMessageInfo(mi)
  1821. }
  1822. }
  1823. func (x *VipRechargeInfo) String() string {
  1824. return protoimpl.X.MessageStringOf(x)
  1825. }
  1826. func (*VipRechargeInfo) ProtoMessage() {}
  1827. func (x *VipRechargeInfo) ProtoReflect() protoreflect.Message {
  1828. mi := &file_user_proto_msgTypes[35]
  1829. if protoimpl.UnsafeEnabled && x != nil {
  1830. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1831. if ms.LoadMessageInfo() == nil {
  1832. ms.StoreMessageInfo(mi)
  1833. }
  1834. return ms
  1835. }
  1836. return mi.MessageOf(x)
  1837. }
  1838. // Deprecated: Use VipRechargeInfo.ProtoReflect.Descriptor instead.
  1839. func (*VipRechargeInfo) Descriptor() ([]byte, []int) {
  1840. return file_user_proto_rawDescGZIP(), []int{35}
  1841. }
  1842. func (x *VipRechargeInfo) GetId() int64 {
  1843. if x != nil {
  1844. return x.Id
  1845. }
  1846. return 0
  1847. }
  1848. func (x *VipRechargeInfo) GetLabel() string {
  1849. if x != nil {
  1850. return x.Label
  1851. }
  1852. return ""
  1853. }
  1854. func (x *VipRechargeInfo) GetPrice() int64 {
  1855. if x != nil {
  1856. return x.Price
  1857. }
  1858. return 0
  1859. }
  1860. func (x *VipRechargeInfo) GetOriginPrice() int64 {
  1861. if x != nil {
  1862. return x.OriginPrice
  1863. }
  1864. return 0
  1865. }
  1866. func (x *VipRechargeInfo) GetAveragePerDayPrice() int64 {
  1867. if x != nil {
  1868. return x.AveragePerDayPrice
  1869. }
  1870. return 0
  1871. }
  1872. func (x *VipRechargeInfo) GetAdditionalCoin() int64 {
  1873. if x != nil {
  1874. return x.AdditionalCoin
  1875. }
  1876. return 0
  1877. }
  1878. func (x *VipRechargeInfo) GetDescription() string {
  1879. if x != nil {
  1880. return x.Description
  1881. }
  1882. return ""
  1883. }
  1884. type RechargeInfo struct {
  1885. state protoimpl.MessageState
  1886. sizeCache protoimpl.SizeCache
  1887. unknownFields protoimpl.UnknownFields
  1888. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1889. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1890. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1891. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1892. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1893. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1894. }
  1895. func (x *RechargeInfo) Reset() {
  1896. *x = RechargeInfo{}
  1897. if protoimpl.UnsafeEnabled {
  1898. mi := &file_user_proto_msgTypes[36]
  1899. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1900. ms.StoreMessageInfo(mi)
  1901. }
  1902. }
  1903. func (x *RechargeInfo) String() string {
  1904. return protoimpl.X.MessageStringOf(x)
  1905. }
  1906. func (*RechargeInfo) ProtoMessage() {}
  1907. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  1908. mi := &file_user_proto_msgTypes[36]
  1909. if protoimpl.UnsafeEnabled && x != nil {
  1910. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1911. if ms.LoadMessageInfo() == nil {
  1912. ms.StoreMessageInfo(mi)
  1913. }
  1914. return ms
  1915. }
  1916. return mi.MessageOf(x)
  1917. }
  1918. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  1919. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  1920. return file_user_proto_rawDescGZIP(), []int{36}
  1921. }
  1922. func (x *RechargeInfo) GetId() int64 {
  1923. if x != nil {
  1924. return x.Id
  1925. }
  1926. return 0
  1927. }
  1928. func (x *RechargeInfo) GetPrice() int64 {
  1929. if x != nil {
  1930. return x.Price
  1931. }
  1932. return 0
  1933. }
  1934. func (x *RechargeInfo) GetCredit() int64 {
  1935. if x != nil {
  1936. return x.Credit
  1937. }
  1938. return 0
  1939. }
  1940. func (x *RechargeInfo) GetGiveCredit() int64 {
  1941. if x != nil {
  1942. return x.GiveCredit
  1943. }
  1944. return 0
  1945. }
  1946. func (x *RechargeInfo) GetDescription() string {
  1947. if x != nil {
  1948. return x.Description
  1949. }
  1950. return ""
  1951. }
  1952. func (x *RechargeInfo) GetTitle() string {
  1953. if x != nil {
  1954. return x.Title
  1955. }
  1956. return ""
  1957. }
  1958. type InformationStatus struct {
  1959. state protoimpl.MessageState
  1960. sizeCache protoimpl.SizeCache
  1961. unknownFields protoimpl.UnknownFields
  1962. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  1963. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  1964. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 奖励的金额
  1965. }
  1966. func (x *InformationStatus) Reset() {
  1967. *x = InformationStatus{}
  1968. if protoimpl.UnsafeEnabled {
  1969. mi := &file_user_proto_msgTypes[37]
  1970. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1971. ms.StoreMessageInfo(mi)
  1972. }
  1973. }
  1974. func (x *InformationStatus) String() string {
  1975. return protoimpl.X.MessageStringOf(x)
  1976. }
  1977. func (*InformationStatus) ProtoMessage() {}
  1978. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  1979. mi := &file_user_proto_msgTypes[37]
  1980. if protoimpl.UnsafeEnabled && x != nil {
  1981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1982. if ms.LoadMessageInfo() == nil {
  1983. ms.StoreMessageInfo(mi)
  1984. }
  1985. return ms
  1986. }
  1987. return mi.MessageOf(x)
  1988. }
  1989. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  1990. func (*InformationStatus) Descriptor() ([]byte, []int) {
  1991. return file_user_proto_rawDescGZIP(), []int{37}
  1992. }
  1993. func (x *InformationStatus) GetIsFinishInformation() bool {
  1994. if x != nil {
  1995. return x.IsFinishInformation
  1996. }
  1997. return false
  1998. }
  1999. func (x *InformationStatus) GetIsGetAward() bool {
  2000. if x != nil {
  2001. return x.IsGetAward
  2002. }
  2003. return false
  2004. }
  2005. func (x *InformationStatus) GetCredit() int64 {
  2006. if x != nil {
  2007. return x.Credit
  2008. }
  2009. return 0
  2010. }
  2011. type UserBalance struct {
  2012. state protoimpl.MessageState
  2013. sizeCache protoimpl.SizeCache
  2014. unknownFields protoimpl.UnknownFields
  2015. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2016. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  2017. }
  2018. func (x *UserBalance) Reset() {
  2019. *x = UserBalance{}
  2020. if protoimpl.UnsafeEnabled {
  2021. mi := &file_user_proto_msgTypes[38]
  2022. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2023. ms.StoreMessageInfo(mi)
  2024. }
  2025. }
  2026. func (x *UserBalance) String() string {
  2027. return protoimpl.X.MessageStringOf(x)
  2028. }
  2029. func (*UserBalance) ProtoMessage() {}
  2030. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  2031. mi := &file_user_proto_msgTypes[38]
  2032. if protoimpl.UnsafeEnabled && x != nil {
  2033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2034. if ms.LoadMessageInfo() == nil {
  2035. ms.StoreMessageInfo(mi)
  2036. }
  2037. return ms
  2038. }
  2039. return mi.MessageOf(x)
  2040. }
  2041. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  2042. func (*UserBalance) Descriptor() ([]byte, []int) {
  2043. return file_user_proto_rawDescGZIP(), []int{38}
  2044. }
  2045. func (x *UserBalance) GetId() string {
  2046. if x != nil {
  2047. return x.Id
  2048. }
  2049. return ""
  2050. }
  2051. func (x *UserBalance) GetCredit() int64 {
  2052. if x != nil {
  2053. return x.Credit
  2054. }
  2055. return 0
  2056. }
  2057. type UserFindChatListReply struct {
  2058. state protoimpl.MessageState
  2059. sizeCache protoimpl.SizeCache
  2060. unknownFields protoimpl.UnknownFields
  2061. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2062. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2063. }
  2064. func (x *UserFindChatListReply) Reset() {
  2065. *x = UserFindChatListReply{}
  2066. if protoimpl.UnsafeEnabled {
  2067. mi := &file_user_proto_msgTypes[39]
  2068. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2069. ms.StoreMessageInfo(mi)
  2070. }
  2071. }
  2072. func (x *UserFindChatListReply) String() string {
  2073. return protoimpl.X.MessageStringOf(x)
  2074. }
  2075. func (*UserFindChatListReply) ProtoMessage() {}
  2076. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  2077. mi := &file_user_proto_msgTypes[39]
  2078. if protoimpl.UnsafeEnabled && x != nil {
  2079. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2080. if ms.LoadMessageInfo() == nil {
  2081. ms.StoreMessageInfo(mi)
  2082. }
  2083. return ms
  2084. }
  2085. return mi.MessageOf(x)
  2086. }
  2087. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  2088. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  2089. return file_user_proto_rawDescGZIP(), []int{39}
  2090. }
  2091. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  2092. if x != nil {
  2093. return x.List
  2094. }
  2095. return make([]*UserChatInfo, 0)
  2096. }
  2097. func (x *UserFindChatListReply) GetNextId() int64 {
  2098. if x != nil {
  2099. return x.NextId
  2100. }
  2101. return 0
  2102. }
  2103. type UserChatInfo struct {
  2104. state protoimpl.MessageState
  2105. sizeCache protoimpl.SizeCache
  2106. unknownFields protoimpl.UnknownFields
  2107. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  2108. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  2109. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  2110. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  2111. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  2112. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  2113. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  2114. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2115. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  2116. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  2117. IsVip bool `protobuf:"varint,15,opt,name=isVip,proto3" json:"isVip"` // 是否是Vip
  2118. VipLevel int64 `protobuf:"varint,16,opt,name=vipLevel,proto3" json:"vipLevel"` // vip等级
  2119. IsYearVip bool `protobuf:"varint,17,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费Vip
  2120. VipFunctions []string `protobuf:"bytes,18,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  2121. }
  2122. func (x *UserChatInfo) Reset() {
  2123. *x = UserChatInfo{}
  2124. if protoimpl.UnsafeEnabled {
  2125. mi := &file_user_proto_msgTypes[40]
  2126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2127. ms.StoreMessageInfo(mi)
  2128. }
  2129. }
  2130. func (x *UserChatInfo) String() string {
  2131. return protoimpl.X.MessageStringOf(x)
  2132. }
  2133. func (*UserChatInfo) ProtoMessage() {}
  2134. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  2135. mi := &file_user_proto_msgTypes[40]
  2136. if protoimpl.UnsafeEnabled && x != nil {
  2137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2138. if ms.LoadMessageInfo() == nil {
  2139. ms.StoreMessageInfo(mi)
  2140. }
  2141. return ms
  2142. }
  2143. return mi.MessageOf(x)
  2144. }
  2145. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  2146. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  2147. return file_user_proto_rawDescGZIP(), []int{40}
  2148. }
  2149. func (x *UserChatInfo) GetPersonId() string {
  2150. if x != nil {
  2151. return x.PersonId
  2152. }
  2153. return ""
  2154. }
  2155. func (x *UserChatInfo) GetUnreadNum() int64 {
  2156. if x != nil {
  2157. return x.UnreadNum
  2158. }
  2159. return 0
  2160. }
  2161. func (x *UserChatInfo) GetLastContent() string {
  2162. if x != nil {
  2163. return x.LastContent
  2164. }
  2165. return ""
  2166. }
  2167. func (x *UserChatInfo) GetLastTime() int64 {
  2168. if x != nil {
  2169. return x.LastTime
  2170. }
  2171. return 0
  2172. }
  2173. func (x *UserChatInfo) GetLikeability() int64 {
  2174. if x != nil {
  2175. return x.Likeability
  2176. }
  2177. return 0
  2178. }
  2179. func (x *UserChatInfo) GetSex() int64 {
  2180. if x != nil {
  2181. return x.Sex
  2182. }
  2183. return 0
  2184. }
  2185. func (x *UserChatInfo) GetAvatarUrl() string {
  2186. if x != nil {
  2187. return x.AvatarUrl
  2188. }
  2189. return ""
  2190. }
  2191. func (x *UserChatInfo) GetNickname() string {
  2192. if x != nil {
  2193. return x.Nickname
  2194. }
  2195. return ""
  2196. }
  2197. func (x *UserChatInfo) GetAge() int64 {
  2198. if x != nil {
  2199. return x.Age
  2200. }
  2201. return 0
  2202. }
  2203. func (x *UserChatInfo) GetRoomId() int64 {
  2204. if x != nil {
  2205. return x.RoomId
  2206. }
  2207. return 0
  2208. }
  2209. func (x *UserChatInfo) GetIsVip() bool {
  2210. if x != nil {
  2211. return x.IsVip
  2212. }
  2213. return false
  2214. }
  2215. func (x *UserChatInfo) GetVipLevel() int64 {
  2216. if x != nil {
  2217. return x.VipLevel
  2218. }
  2219. return 0
  2220. }
  2221. func (x *UserChatInfo) GetIsYearVip() bool {
  2222. if x != nil {
  2223. return x.IsYearVip
  2224. }
  2225. return false
  2226. }
  2227. func (x *UserChatInfo) GetVipFunctions() []string {
  2228. if x != nil {
  2229. return x.VipFunctions
  2230. }
  2231. return make([]string, 0)
  2232. }
  2233. type UserInfo struct {
  2234. state protoimpl.MessageState
  2235. sizeCache protoimpl.SizeCache
  2236. unknownFields protoimpl.UnknownFields
  2237. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2238. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2239. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  2240. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  2241. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  2242. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  2243. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  2244. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  2245. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  2246. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  2247. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  2248. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  2249. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  2250. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  2251. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  2252. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  2253. UpdateNicknameNum int64 `protobuf:"varint,17,opt,name=UpdateNicknameNum,proto3" json:"UpdateNicknameNum"` // 今日更新昵称数
  2254. UpdateAvatarUrlNum int64 `protobuf:"varint,18,opt,name=UpdateAvatarUrlNum,proto3" json:"UpdateAvatarUrlNum"` // 今日更新头像数
  2255. UpdatePicturesNum int64 `protobuf:"varint,19,opt,name=UpdatePicturesNum,proto3" json:"UpdatePicturesNum"` // 今日更新相册数
  2256. UpdateSignatureNum int64 `protobuf:"varint,20,opt,name=UpdateSignatureNum,proto3" json:"UpdateSignatureNum"` // 今日更新签名数
  2257. }
  2258. func (x *UserInfo) Reset() {
  2259. *x = UserInfo{}
  2260. if protoimpl.UnsafeEnabled {
  2261. mi := &file_user_proto_msgTypes[41]
  2262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2263. ms.StoreMessageInfo(mi)
  2264. }
  2265. }
  2266. func (x *UserInfo) String() string {
  2267. return protoimpl.X.MessageStringOf(x)
  2268. }
  2269. func (*UserInfo) ProtoMessage() {}
  2270. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  2271. mi := &file_user_proto_msgTypes[41]
  2272. if protoimpl.UnsafeEnabled && x != nil {
  2273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2274. if ms.LoadMessageInfo() == nil {
  2275. ms.StoreMessageInfo(mi)
  2276. }
  2277. return ms
  2278. }
  2279. return mi.MessageOf(x)
  2280. }
  2281. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  2282. func (*UserInfo) Descriptor() ([]byte, []int) {
  2283. return file_user_proto_rawDescGZIP(), []int{41}
  2284. }
  2285. func (x *UserInfo) GetId() string {
  2286. if x != nil {
  2287. return x.Id
  2288. }
  2289. return ""
  2290. }
  2291. func (x *UserInfo) GetNickname() string {
  2292. if x != nil {
  2293. return x.Nickname
  2294. }
  2295. return ""
  2296. }
  2297. func (x *UserInfo) GetAvatarUrl() string {
  2298. if x != nil {
  2299. return x.AvatarUrl
  2300. }
  2301. return ""
  2302. }
  2303. func (x *UserInfo) GetAge() int64 {
  2304. if x != nil {
  2305. return x.Age
  2306. }
  2307. return 0
  2308. }
  2309. func (x *UserInfo) GetSex() int64 {
  2310. if x != nil {
  2311. return x.Sex
  2312. }
  2313. return 0
  2314. }
  2315. func (x *UserInfo) GetConstellation() string {
  2316. if x != nil {
  2317. return x.Constellation
  2318. }
  2319. return ""
  2320. }
  2321. func (x *UserInfo) GetCredit() int64 {
  2322. if x != nil {
  2323. return x.Credit
  2324. }
  2325. return 0
  2326. }
  2327. func (x *UserInfo) GetTagList() []int64 {
  2328. if x != nil {
  2329. return x.TagList
  2330. }
  2331. return make([]int64, 0)
  2332. }
  2333. func (x *UserInfo) GetSignature() string {
  2334. if x != nil {
  2335. return x.Signature
  2336. }
  2337. return ""
  2338. }
  2339. func (x *UserInfo) GetIntroduceVoice() string {
  2340. if x != nil {
  2341. return x.IntroduceVoice
  2342. }
  2343. return ""
  2344. }
  2345. func (x *UserInfo) GetProvince() string {
  2346. if x != nil {
  2347. return x.Province
  2348. }
  2349. return ""
  2350. }
  2351. func (x *UserInfo) GetCity() string {
  2352. if x != nil {
  2353. return x.City
  2354. }
  2355. return ""
  2356. }
  2357. func (x *UserInfo) GetArea() string {
  2358. if x != nil {
  2359. return x.Area
  2360. }
  2361. return ""
  2362. }
  2363. func (x *UserInfo) GetUserId() int64 {
  2364. if x != nil {
  2365. return x.UserId
  2366. }
  2367. return 0
  2368. }
  2369. func (x *UserInfo) GetIsBlack() bool {
  2370. if x != nil {
  2371. return x.IsBlack
  2372. }
  2373. return false
  2374. }
  2375. func (x *UserInfo) GetIsRegister() bool {
  2376. if x != nil {
  2377. return x.IsRegister
  2378. }
  2379. return false
  2380. }
  2381. func (x *UserInfo) GetUpdateNicknameNum() int64 {
  2382. if x != nil {
  2383. return x.UpdateNicknameNum
  2384. }
  2385. return 0
  2386. }
  2387. func (x *UserInfo) GetUpdateAvatarUrlNum() int64 {
  2388. if x != nil {
  2389. return x.UpdateAvatarUrlNum
  2390. }
  2391. return 0
  2392. }
  2393. func (x *UserInfo) GetUpdatePicturesNum() int64 {
  2394. if x != nil {
  2395. return x.UpdatePicturesNum
  2396. }
  2397. return 0
  2398. }
  2399. func (x *UserInfo) GetUpdateSignatureNum() int64 {
  2400. if x != nil {
  2401. return x.UpdateSignatureNum
  2402. }
  2403. return 0
  2404. }
  2405. type KeyRequest struct {
  2406. state protoimpl.MessageState
  2407. sizeCache protoimpl.SizeCache
  2408. unknownFields protoimpl.UnknownFields
  2409. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  2410. }
  2411. func (x *KeyRequest) Reset() {
  2412. *x = KeyRequest{}
  2413. if protoimpl.UnsafeEnabled {
  2414. mi := &file_user_proto_msgTypes[42]
  2415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2416. ms.StoreMessageInfo(mi)
  2417. }
  2418. }
  2419. func (x *KeyRequest) String() string {
  2420. return protoimpl.X.MessageStringOf(x)
  2421. }
  2422. func (*KeyRequest) ProtoMessage() {}
  2423. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  2424. mi := &file_user_proto_msgTypes[42]
  2425. if protoimpl.UnsafeEnabled && x != nil {
  2426. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2427. if ms.LoadMessageInfo() == nil {
  2428. ms.StoreMessageInfo(mi)
  2429. }
  2430. return ms
  2431. }
  2432. return mi.MessageOf(x)
  2433. }
  2434. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  2435. func (*KeyRequest) Descriptor() ([]byte, []int) {
  2436. return file_user_proto_rawDescGZIP(), []int{42}
  2437. }
  2438. func (x *KeyRequest) GetKey() string {
  2439. if x != nil {
  2440. return x.Key
  2441. }
  2442. return ""
  2443. }
  2444. type CreatePayRequest struct {
  2445. state protoimpl.MessageState
  2446. sizeCache protoimpl.SizeCache
  2447. unknownFields protoimpl.UnknownFields
  2448. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  2449. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2450. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  2451. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  2452. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  2453. }
  2454. func (x *CreatePayRequest) Reset() {
  2455. *x = CreatePayRequest{}
  2456. if protoimpl.UnsafeEnabled {
  2457. mi := &file_user_proto_msgTypes[43]
  2458. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2459. ms.StoreMessageInfo(mi)
  2460. }
  2461. }
  2462. func (x *CreatePayRequest) String() string {
  2463. return protoimpl.X.MessageStringOf(x)
  2464. }
  2465. func (*CreatePayRequest) ProtoMessage() {}
  2466. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  2467. mi := &file_user_proto_msgTypes[43]
  2468. if protoimpl.UnsafeEnabled && x != nil {
  2469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2470. if ms.LoadMessageInfo() == nil {
  2471. ms.StoreMessageInfo(mi)
  2472. }
  2473. return ms
  2474. }
  2475. return mi.MessageOf(x)
  2476. }
  2477. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  2478. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  2479. return file_user_proto_rawDescGZIP(), []int{43}
  2480. }
  2481. func (x *CreatePayRequest) GetMoney() int64 {
  2482. if x != nil {
  2483. return x.Money
  2484. }
  2485. return 0
  2486. }
  2487. func (x *CreatePayRequest) GetType() string {
  2488. if x != nil {
  2489. return x.Type
  2490. }
  2491. return ""
  2492. }
  2493. func (x *CreatePayRequest) GetOpenId() string {
  2494. if x != nil {
  2495. return x.OpenId
  2496. }
  2497. return ""
  2498. }
  2499. func (x *CreatePayRequest) GetDescription() string {
  2500. if x != nil {
  2501. return x.Description
  2502. }
  2503. return ""
  2504. }
  2505. func (x *CreatePayRequest) GetAttach() string {
  2506. if x != nil {
  2507. return x.Attach
  2508. }
  2509. return ""
  2510. }
  2511. type PayInfo struct {
  2512. state protoimpl.MessageState
  2513. sizeCache protoimpl.SizeCache
  2514. unknownFields protoimpl.UnknownFields
  2515. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  2516. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  2517. }
  2518. func (x *PayInfo) Reset() {
  2519. *x = PayInfo{}
  2520. if protoimpl.UnsafeEnabled {
  2521. mi := &file_user_proto_msgTypes[44]
  2522. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2523. ms.StoreMessageInfo(mi)
  2524. }
  2525. }
  2526. func (x *PayInfo) String() string {
  2527. return protoimpl.X.MessageStringOf(x)
  2528. }
  2529. func (*PayInfo) ProtoMessage() {}
  2530. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  2531. mi := &file_user_proto_msgTypes[44]
  2532. if protoimpl.UnsafeEnabled && x != nil {
  2533. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2534. if ms.LoadMessageInfo() == nil {
  2535. ms.StoreMessageInfo(mi)
  2536. }
  2537. return ms
  2538. }
  2539. return mi.MessageOf(x)
  2540. }
  2541. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  2542. func (*PayInfo) Descriptor() ([]byte, []int) {
  2543. return file_user_proto_rawDescGZIP(), []int{44}
  2544. }
  2545. func (x *PayInfo) GetPayInfo() *structpb.Value {
  2546. if x != nil && x.PayInfo != nil {
  2547. return x.PayInfo
  2548. }
  2549. return &structpb.Value{}
  2550. }
  2551. func (x *PayInfo) GetOrderId() int64 {
  2552. if x != nil {
  2553. return x.OrderId
  2554. }
  2555. return 0
  2556. }
  2557. type PayOrderInfo struct {
  2558. state protoimpl.MessageState
  2559. sizeCache protoimpl.SizeCache
  2560. unknownFields protoimpl.UnknownFields
  2561. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  2562. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  2563. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  2564. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  2565. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  2566. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  2567. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  2568. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  2569. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  2570. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  2571. }
  2572. func (x *PayOrderInfo) Reset() {
  2573. *x = PayOrderInfo{}
  2574. if protoimpl.UnsafeEnabled {
  2575. mi := &file_user_proto_msgTypes[45]
  2576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2577. ms.StoreMessageInfo(mi)
  2578. }
  2579. }
  2580. func (x *PayOrderInfo) String() string {
  2581. return protoimpl.X.MessageStringOf(x)
  2582. }
  2583. func (*PayOrderInfo) ProtoMessage() {}
  2584. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  2585. mi := &file_user_proto_msgTypes[45]
  2586. if protoimpl.UnsafeEnabled && x != nil {
  2587. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2588. if ms.LoadMessageInfo() == nil {
  2589. ms.StoreMessageInfo(mi)
  2590. }
  2591. return ms
  2592. }
  2593. return mi.MessageOf(x)
  2594. }
  2595. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  2596. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  2597. return file_user_proto_rawDescGZIP(), []int{45}
  2598. }
  2599. func (x *PayOrderInfo) GetUserID() string {
  2600. if x != nil {
  2601. return x.UserID
  2602. }
  2603. return ""
  2604. }
  2605. func (x *PayOrderInfo) GetOrderID() int64 {
  2606. if x != nil {
  2607. return x.OrderID
  2608. }
  2609. return 0
  2610. }
  2611. func (x *PayOrderInfo) GetMoney() int64 {
  2612. if x != nil {
  2613. return x.Money
  2614. }
  2615. return 0
  2616. }
  2617. func (x *PayOrderInfo) GetType() string {
  2618. if x != nil {
  2619. return x.Type
  2620. }
  2621. return ""
  2622. }
  2623. func (x *PayOrderInfo) GetTransactionID() string {
  2624. if x != nil {
  2625. return x.TransactionID
  2626. }
  2627. return ""
  2628. }
  2629. func (x *PayOrderInfo) GetOpenId() string {
  2630. if x != nil {
  2631. return x.OpenId
  2632. }
  2633. return ""
  2634. }
  2635. func (x *PayOrderInfo) GetDescription() string {
  2636. if x != nil {
  2637. return x.Description
  2638. }
  2639. return ""
  2640. }
  2641. func (x *PayOrderInfo) GetStatus() string {
  2642. if x != nil {
  2643. return x.Status
  2644. }
  2645. return ""
  2646. }
  2647. func (x *PayOrderInfo) GetPayTime() int64 {
  2648. if x != nil {
  2649. return x.PayTime
  2650. }
  2651. return 0
  2652. }
  2653. func (x *PayOrderInfo) GetCreateTime() int64 {
  2654. if x != nil {
  2655. return x.CreateTime
  2656. }
  2657. return 0
  2658. }
  2659. type PayOrderList struct {
  2660. state protoimpl.MessageState
  2661. sizeCache protoimpl.SizeCache
  2662. unknownFields protoimpl.UnknownFields
  2663. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2664. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2665. }
  2666. func (x *PayOrderList) Reset() {
  2667. *x = PayOrderList{}
  2668. if protoimpl.UnsafeEnabled {
  2669. mi := &file_user_proto_msgTypes[46]
  2670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2671. ms.StoreMessageInfo(mi)
  2672. }
  2673. }
  2674. func (x *PayOrderList) String() string {
  2675. return protoimpl.X.MessageStringOf(x)
  2676. }
  2677. func (*PayOrderList) ProtoMessage() {}
  2678. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  2679. mi := &file_user_proto_msgTypes[46]
  2680. if protoimpl.UnsafeEnabled && x != nil {
  2681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2682. if ms.LoadMessageInfo() == nil {
  2683. ms.StoreMessageInfo(mi)
  2684. }
  2685. return ms
  2686. }
  2687. return mi.MessageOf(x)
  2688. }
  2689. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  2690. func (*PayOrderList) Descriptor() ([]byte, []int) {
  2691. return file_user_proto_rawDescGZIP(), []int{46}
  2692. }
  2693. func (x *PayOrderList) GetList() []*PayOrderInfo {
  2694. if x != nil {
  2695. return x.List
  2696. }
  2697. return make([]*PayOrderInfo, 0)
  2698. }
  2699. func (x *PayOrderList) GetNextId() int64 {
  2700. if x != nil {
  2701. return x.NextId
  2702. }
  2703. return 0
  2704. }
  2705. type FindPayOrderListRequest struct {
  2706. state protoimpl.MessageState
  2707. sizeCache protoimpl.SizeCache
  2708. unknownFields protoimpl.UnknownFields
  2709. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2710. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2711. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  2712. }
  2713. func (x *FindPayOrderListRequest) Reset() {
  2714. *x = FindPayOrderListRequest{}
  2715. if protoimpl.UnsafeEnabled {
  2716. mi := &file_user_proto_msgTypes[47]
  2717. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2718. ms.StoreMessageInfo(mi)
  2719. }
  2720. }
  2721. func (x *FindPayOrderListRequest) String() string {
  2722. return protoimpl.X.MessageStringOf(x)
  2723. }
  2724. func (*FindPayOrderListRequest) ProtoMessage() {}
  2725. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  2726. mi := &file_user_proto_msgTypes[47]
  2727. if protoimpl.UnsafeEnabled && x != nil {
  2728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2729. if ms.LoadMessageInfo() == nil {
  2730. ms.StoreMessageInfo(mi)
  2731. }
  2732. return ms
  2733. }
  2734. return mi.MessageOf(x)
  2735. }
  2736. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  2737. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  2738. return file_user_proto_rawDescGZIP(), []int{47}
  2739. }
  2740. func (x *FindPayOrderListRequest) GetNextId() int64 {
  2741. if x != nil {
  2742. return x.NextId
  2743. }
  2744. return 0
  2745. }
  2746. func (x *FindPayOrderListRequest) GetOffset() int64 {
  2747. if x != nil {
  2748. return x.Offset
  2749. }
  2750. return 0
  2751. }
  2752. func (x *FindPayOrderListRequest) GetStatus() string {
  2753. if x != nil {
  2754. return x.Status
  2755. }
  2756. return ""
  2757. }
  2758. type PayCallbackReply struct {
  2759. state protoimpl.MessageState
  2760. sizeCache protoimpl.SizeCache
  2761. unknownFields protoimpl.UnknownFields
  2762. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  2763. }
  2764. func (x *PayCallbackReply) Reset() {
  2765. *x = PayCallbackReply{}
  2766. if protoimpl.UnsafeEnabled {
  2767. mi := &file_user_proto_msgTypes[48]
  2768. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2769. ms.StoreMessageInfo(mi)
  2770. }
  2771. }
  2772. func (x *PayCallbackReply) String() string {
  2773. return protoimpl.X.MessageStringOf(x)
  2774. }
  2775. func (*PayCallbackReply) ProtoMessage() {}
  2776. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  2777. mi := &file_user_proto_msgTypes[48]
  2778. if protoimpl.UnsafeEnabled && x != nil {
  2779. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2780. if ms.LoadMessageInfo() == nil {
  2781. ms.StoreMessageInfo(mi)
  2782. }
  2783. return ms
  2784. }
  2785. return mi.MessageOf(x)
  2786. }
  2787. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  2788. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  2789. return file_user_proto_rawDescGZIP(), []int{48}
  2790. }
  2791. func (x *PayCallbackReply) GetResult() []byte {
  2792. if x != nil {
  2793. return x.Result
  2794. }
  2795. return make([]byte, 0)
  2796. }
  2797. var File_user_proto protoreflect.FileDescriptor
  2798. var file_user_proto_rawDesc = []byte{
  2799. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  2800. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  2801. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  2802. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  2803. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2804. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2805. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  2806. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  2807. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2808. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  2809. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  2810. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x65,
  2811. 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61,
  2812. 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x43, 0x6c, 0x6f,
  2813. 0x73, 0x65, 0x47, 0x72, 0x65, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69,
  2814. 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x47, 0x72, 0x65, 0x65, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x69,
  2815. 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x18, 0x02,
  2816. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x4d, 0x61, 0x74,
  2817. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x22, 0x43, 0x0a, 0x19, 0x49, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65,
  2818. 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x70,
  2819. 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65,
  2820. 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x43, 0x61,
  2821. 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x8c, 0x01, 0x0a, 0x18, 0x47,
  2822. 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  2823. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04,
  2824. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f,
  2825. 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f,
  2826. 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x08, 0x20,
  2827. 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x61, 0x78,
  2828. 0x41, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x41, 0x67,
  2829. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  2830. 0x03, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x22, 0xb3, 0x02, 0x0a, 0x1c, 0x4d, 0x61,
  2831. 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74,
  2832. 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x5f, 0x0a, 0x0d, 0x69, 0x73,
  2833. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28,
  2834. 0x0b, 0x32, 0x39, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x74,
  2835. 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x4d,
  2836. 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x73, 0x4d, 0x61, 0x74, 0x63,
  2837. 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x69, 0x73,
  2838. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  2839. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  2840. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
  2841. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6d,
  2842. 0x61, 0x78, 0x41, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78,
  2843. 0x41, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18, 0x05, 0x20,
  2844. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73,
  2845. 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x1a, 0x40, 0x0a,
  2846. 0x12, 0x49, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x45, 0x6e,
  2847. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2848. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  2849. 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
  2850. 0x4f, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61,
  2851. 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10,
  2852. 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d,
  2853. 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02,
  2854. 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2855. 0x22, 0xac, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70,
  2856. 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x76,
  2857. 0x69, 0x70, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x61, 0x70,
  2858. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56,
  2859. 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e, 0x56, 0x69,
  2860. 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x76, 0x69, 0x70, 0x4d, 0x61,
  2861. 0x70, 0x1a, 0x4c, 0x0a, 0x0b, 0x56, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79,
  2862. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  2863. 0x65, 0x79, 0x12, 0x27, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2864. 0x0b, 0x32, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70,
  2865. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
  2866. 0xa1, 0x02, 0x0a, 0x07, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x69,
  2867. 0x73, 0x56, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69,
  2868. 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20,
  2869. 0x01, 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a,
  2870. 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01,
  2871. 0x28, 0x03, 0x52, 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12,
  2872. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04,
  2873. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d,
  2874. 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
  2875. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72,
  2876. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  2877. 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63,
  2878. 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x59,
  2879. 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73,
  2880. 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75,
  2881. 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x76,
  2882. 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x75,
  2883. 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65,
  2884. 0x72, 0x49, 0x64, 0x22, 0x64, 0x0a, 0x1a, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65,
  2885. 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2886. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20,
  2887. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a,
  2888. 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69,
  2889. 0x73, 0x46, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
  2890. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x6e, 0x0a, 0x28, 0x55, 0x73, 0x65,
  2891. 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
  2892. 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65,
  2893. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2894. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a,
  2895. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  2896. 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  2897. 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x22, 0x42, 0x0a, 0x26, 0x55, 0x73, 0x65,
  2898. 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
  2899. 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65,
  2900. 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01,
  2901. 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x56, 0x0a,
  2902. 0x14, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65,
  2903. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2904. 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  2905. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a,
  2906. 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64,
  2907. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x4c, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55,
  2908. 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2909. 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2910. 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72,
  2911. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73,
  2912. 0x75, 0x6c, 0x74, 0x22, 0x99, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73,
  2913. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f,
  2914. 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  2915. 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20,
  2916. 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2917. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2918. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01,
  2919. 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x77,
  2920. 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28,
  2921. 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x22,
  2922. 0x90, 0x01, 0x0a, 0x28, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49,
  2923. 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65,
  2924. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
  2925. 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65,
  2926. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
  2927. 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x0e, 0x0a, 0x02,
  2928. 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  2929. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  2930. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  2931. 0x65, 0x78, 0x22, 0x64, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  2932. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71,
  2933. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  2934. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  2935. 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e,
  2936. 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2937. 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x5b, 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61,
  2938. 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69,
  2939. 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a,
  2940. 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07,
  2941. 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73,
  2942. 0x73, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x6e, 0x50, 0x61,
  2943. 0x73, 0x73, 0x49, 0x64, 0x73, 0x22, 0x3f, 0x0a, 0x23, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2944. 0x52, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
  2945. 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
  2946. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x75,
  2947. 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x22, 0x4b, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63,
  2948. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75,
  2949. 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2950. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2951. 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2952. 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  2953. 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  2954. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75,
  2955. 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03,
  2956. 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a,
  2957. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2958. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x21, 0x46, 0x69,
  2959. 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51,
  2960. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  2961. 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18,
  2962. 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c,
  2963. 0x69, 0x73, 0x74, 0x22, 0xc7, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2964. 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52,
  2965. 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c,
  2966. 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  2967. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61,
  2968. 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6e,
  2969. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e,
  2970. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  2971. 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74,
  2972. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01,
  2973. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05,
  2974. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  2975. 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0xec, 0x01,
  2976. 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72,
  2977. 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2978. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  2979. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  2980. 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03, 0x20, 0x01,
  2981. 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f,
  2982. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
  2983. 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2984. 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64,
  2985. 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79,
  2986. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
  2987. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  2988. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2989. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
  2990. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0x35, 0x0a, 0x1b,
  2991. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  2992. 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75,
  2993. 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65,
  2994. 0x72, 0x49, 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65,
  2995. 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e,
  2996. 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  2997. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  2998. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65,
  2999. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x65,
  3000. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18, 0x53, 0x65,
  3001. 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69,
  3002. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64,
  3003. 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e,
  3004. 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x7d,
  3005. 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a,
  3006. 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01,
  3007. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  3008. 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72,
  3009. 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65,
  3010. 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d,
  3011. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  3012. 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a,
  3013. 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  3014. 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20,
  3015. 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07,
  3016. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e,
  3017. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3018. 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d,
  3019. 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73,
  3020. 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  3021. 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  3022. 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  3023. 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65,
  3024. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3025. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  3026. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
  3027. 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  3028. 0x74, 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  3029. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70,
  3030. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49,
  3031. 0x64, 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  3032. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18,
  3033. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70,
  3034. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3035. 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x1d, 0x46,
  3036. 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61,
  3037. 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03,
  3038. 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12,
  3039. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69,
  3040. 0x73, 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  3041. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63,
  3042. 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18,
  3043. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54,
  3044. 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63,
  3045. 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3046. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3047. 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  3048. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x40, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68,
  3049. 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3050. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3051. 0x72, 0x2e, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66,
  3052. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xe9, 0x01, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52,
  3053. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  3054. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c,
  3055. 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65,
  3056. 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  3057. 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69,
  3058. 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72,
  3059. 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x76, 0x65,
  3060. 0x72, 0x61, 0x67, 0x65, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18,
  3061. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x65,
  3062. 0x72, 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x61, 0x64, 0x64,
  3063. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28,
  3064. 0x03, 0x52, 0x0e, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69,
  3065. 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3066. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  3067. 0x69, 0x6f, 0x6e, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  3068. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  3069. 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20,
  3070. 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72,
  3071. 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64,
  3072. 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  3073. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64,
  3074. 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  3075. 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  3076. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20,
  3077. 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x7d, 0x0a, 0x11, 0x49, 0x6e,
  3078. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  3079. 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  3080. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73,
  3081. 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3082. 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x18,
  3083. 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72,
  3084. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  3085. 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65,
  3086. 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  3087. 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64,
  3088. 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  3089. 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  3090. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3091. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3092. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  3093. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  3094. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x92, 0x03,
  3095. 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a,
  3096. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3097. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e,
  3098. 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75,
  3099. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74,
  3100. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c,
  3101. 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61,
  3102. 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61,
  3103. 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62,
  3104. 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b,
  3105. 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  3106. 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  3107. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  3108. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b,
  3109. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b,
  3110. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28,
  3111. 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  3112. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x14,
  3113. 0x0a, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69,
  3114. 0x73, 0x56, 0x69, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
  3115. 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
  3116. 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x11, 0x20,
  3117. 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22,
  3118. 0x0a, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12,
  3119. 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
  3120. 0x6e, 0x73, 0x22, 0xe8, 0x04, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3121. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  3122. 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3123. 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  3124. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  3125. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65,
  3126. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73,
  3127. 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a,
  3128. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06,
  3129. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74,
  3130. 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x07, 0x20,
  3131. 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74,
  3132. 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61,
  3133. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  3134. 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
  3135. 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  3136. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74,
  3137. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  3138. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  3139. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
  3140. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61,
  3141. 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12,
  3142. 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52,
  3143. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61,
  3144. 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63,
  3145. 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18,
  3146. 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  3147. 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e,
  3148. 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70,
  3149. 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x12,
  3150. 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  3151. 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64,
  3152. 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x12,
  3153. 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  3154. 0x73, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64, 0x61,
  3155. 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a,
  3156. 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  3157. 0x4e, 0x75, 0x6d, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74,
  3158. 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1e, 0x0a,
  3159. 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b,
  3160. 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01,
  3161. 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  3162. 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3163. 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
  3164. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06,
  3165. 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70,
  3166. 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  3167. 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
  3168. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
  3169. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55,
  3170. 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79,
  3171. 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3172. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c,
  3173. 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f,
  3174. 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72,
  3175. 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64,
  3176. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44,
  3177. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18,
  3178. 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3179. 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65,
  3180. 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12,
  3181. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
  3182. 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
  3183. 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73,
  3184. 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e,
  3185. 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64,
  3186. 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  3187. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  3188. 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01,
  3189. 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61,
  3190. 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79,
  3191. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69,
  3192. 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  3193. 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72,
  3194. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  3195. 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61,
  3196. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3197. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3198. 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64,
  3199. 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  3200. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
  3201. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  3202. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  3203. 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20,
  3204. 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50,
  3205. 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  3206. 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
  3207. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0xc7, 0x69, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72,
  3208. 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  3209. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3210. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3211. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4,
  3212. 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69,
  3213. 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68,
  3214. 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3215. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f,
  3216. 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3217. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3218. 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3219. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01,
  3220. 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43,
  3221. 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3222. 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3223. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3224. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f,
  3225. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3226. 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  3227. 0x7e, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  3228. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3229. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  3230. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  3231. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3232. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c,
  3233. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  3234. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12,
  3235. 0x6e, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72,
  3236. 0x73, 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3237. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52,
  3238. 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3239. 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82,
  3240. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3241. 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12,
  3242. 0x5d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  3243. 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3244. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3245. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  3246. 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3247. 0x73, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b,
  3248. 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66,
  3249. 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3250. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69,
  3251. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  3252. 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3253. 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55,
  3254. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65,
  3255. 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  3256. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  3257. 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3258. 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e,
  3259. 0x75, 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69,
  3260. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c,
  3261. 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61,
  3262. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,
  3263. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3264. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41,
  3265. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3266. 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3267. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  3268. 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3269. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71,
  3270. 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78,
  3271. 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3,
  3272. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73,
  3273. 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a,
  3274. 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65,
  3275. 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  3276. 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3277. 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3278. 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3279. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76,
  3280. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3281. 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  3282. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24,
  3283. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f,
  3284. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3285. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  3286. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c,
  3287. 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57,
  3288. 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f,
  3289. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3290. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3291. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3292. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3293. 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70,
  3294. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74,
  3295. 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69,
  3296. 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f,
  3297. 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3298. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  3299. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3300. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3301. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61,
  3302. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61,
  3303. 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x17, 0x46, 0x69, 0x6e,
  3304. 0x64, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d,
  3305. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3306. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3307. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  3308. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3309. 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  3310. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  3311. 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e,
  3312. 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3313. 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  3314. 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3315. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3316. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69,
  3317. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22,
  3318. 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  3319. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e,
  3320. 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61,
  3321. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  3322. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3323. 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  3324. 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3325. 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  3326. 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a,
  3327. 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17,
  3328. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  3329. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3330. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4,
  3331. 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69,
  3332. 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64,
  3333. 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  3334. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75,
  3335. 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3336. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3337. 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e,
  3338. 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d,
  3339. 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12,
  3340. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  3341. 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3342. 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  3343. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3,
  3344. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3345. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a,
  3346. 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70,
  3347. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e,
  3348. 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3349. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25,
  3350. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3351. 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64,
  3352. 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53,
  3353. 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  3354. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e,
  3355. 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3356. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74,
  3357. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61,
  3358. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70,
  3359. 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d,
  3360. 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e,
  3361. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3362. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3363. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3364. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3365. 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69,
  3366. 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65,
  3367. 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3368. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  3369. 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3370. 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3,
  3371. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3372. 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12,
  3373. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74,
  3374. 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3375. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  3376. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c,
  3377. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f,
  3378. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68,
  3379. 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55,
  3380. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3381. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  3382. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3383. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13,
  3384. 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65,
  3385. 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b,
  3386. 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3387. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3388. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3389. 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69,
  3390. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3391. 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3392. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61,
  3393. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3394. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3395. 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3396. 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01,
  3397. 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44,
  3398. 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3399. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3400. 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  3401. 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76,
  3402. 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3403. 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65,
  3404. 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  3405. 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63,
  3406. 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3407. 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72,
  3408. 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3409. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3410. 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70,
  3411. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73,
  3412. 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43,
  3413. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  3414. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  3415. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3416. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82,
  3417. 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3418. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  3419. 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  3420. 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
  3421. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3422. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3423. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f,
  3424. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64,
  3425. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64,
  3426. 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3427. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70,
  3428. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3429. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3430. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3431. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65,
  3432. 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68,
  3433. 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3434. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  3435. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3436. 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82,
  3437. 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3438. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65,
  3439. 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  3440. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69,
  3441. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63,
  3442. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69,
  3443. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70,
  3444. 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  3445. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64,
  3446. 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a,
  3447. 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70,
  3448. 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73,
  3449. 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  3450. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3451. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93,
  3452. 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63,
  3453. 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50,
  3454. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61,
  3455. 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3456. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69,
  3457. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66,
  3458. 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3459. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f,
  3460. 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3461. 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  3462. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69,
  3463. 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3464. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  3465. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  3466. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65,
  3467. 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65,
  3468. 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3469. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  3470. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3471. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4,
  3472. 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  3473. 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a,
  3474. 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61,
  3475. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3476. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61,
  3477. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75,
  3478. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19,
  3479. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75,
  3480. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13,
  3481. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72,
  3482. 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3483. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61,
  3484. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d,
  3485. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61,
  3486. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66,
  3487. 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  3488. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3489. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3490. 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  3491. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69,
  3492. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22,
  3493. 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  3494. 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c,
  3495. 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3496. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65,
  3497. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74,
  3498. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  3499. 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4,
  3500. 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  3501. 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10,
  3502. 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74,
  3503. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f,
  3504. 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3505. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3506. 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70,
  3507. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b,
  3508. 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65,
  3509. 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69,
  3510. 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3511. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72,
  3512. 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68,
  3513. 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73,
  3514. 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c,
  3515. 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3516. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74,
  3517. 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65,
  3518. 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e,
  3519. 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65,
  3520. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3521. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d,
  3522. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  3523. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69,
  3524. 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a,
  3525. 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53,
  3526. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3527. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3528. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  3529. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e,
  3530. 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c,
  3531. 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3532. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f,
  3533. 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  3534. 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3535. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  3536. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
  3537. 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c,
  3538. 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3539. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a,
  3540. 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e,
  3541. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3542. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3543. 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3544. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3545. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66,
  3546. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a,
  3547. 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3548. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3549. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3550. 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49,
  3551. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  3552. 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3553. 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f,
  3554. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65,
  3555. 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
  3556. 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3557. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67,
  3558. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3559. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61,
  3560. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  3561. 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10,
  3562. 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  3563. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3564. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3565. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3566. 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3567. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b,
  3568. 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61,
  3569. 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3570. 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3571. 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61,
  3572. 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f,
  3573. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  3574. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68,
  3575. 0x61, 0x72, 0x67, 0x65, 0x56, 0x69, 0x70, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3576. 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52,
  3577. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3578. 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3579. 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63,
  3580. 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10,
  3581. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3582. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3583. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3584. 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3585. 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3586. 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73,
  3587. 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x56, 0x69, 0x70, 0x52,
  3588. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3589. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3590. 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56,
  3591. 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26,
  3592. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3593. 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x6c,
  3594. 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61,
  3595. 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3596. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73,
  3597. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3598. 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3599. 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3600. 0x73, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3601. 0x7c, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  3602. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3603. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3604. 0x74, 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3605. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  3606. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d,
  3607. 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  3608. 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01,
  3609. 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76,
  3610. 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3611. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3612. 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69,
  3613. 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  3614. 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4,
  3615. 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d,
  3616. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a,
  3617. 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49,
  3618. 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3619. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70,
  3620. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66,
  3621. 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3622. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
  3623. 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73,
  3624. 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3625. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3626. 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  3627. 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17,
  3628. 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65,
  3629. 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x7f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61,
  3630. 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x22, 0x2e, 0x61,
  3631. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f,
  3632. 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3633. 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52,
  3634. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70,
  3635. 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69,
  3636. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74,
  3637. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f,
  3638. 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3639. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65,
  3640. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3641. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93,
  3642. 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e,
  3643. 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a,
  3644. 0x0d, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19,
  3645. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d,
  3646. 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3647. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3648. 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3649. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74,
  3650. 0x75, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3651. 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16,
  3652. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3653. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3654. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24,
  3655. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3656. 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  3657. 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73,
  3658. 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e,
  3659. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
  3660. 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13,
  3661. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65,
  3662. 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70,
  3663. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f,
  3664. 0x6f, 0x6d, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a,
  3665. 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x2e, 0x61,
  3666. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73,
  3667. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  3668. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73,
  3669. 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
  3670. 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73,
  3671. 0x61, 0x67, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x51, 0x0a, 0x0a, 0x47,
  3672. 0x65, 0x74, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3673. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3674. 0x79, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70,
  3675. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61,
  3676. 0x70, 0x69, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x6e,
  3677. 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73,
  3678. 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3679. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69,
  3680. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b,
  3681. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3682. 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x68, 0x61,
  3683. 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7f,
  3684. 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e,
  3685. 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3686. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3687. 0x1a, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55,
  3688. 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e,
  3689. 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22,
  3690. 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f,
  3691. 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12,
  3692. 0x77, 0x0a, 0x16, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61,
  3693. 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3694. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50,
  3695. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3696. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3,
  3697. 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3698. 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75,
  3699. 0x6d, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x14, 0x49, 0x73, 0x43, 0x61,
  3700. 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64,
  3701. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3702. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3703. 0x73, 0x65, 0x72, 0x2e, 0x49, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75,
  3704. 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82,
  3705. 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3706. 0x2f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x2f, 0x72, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x73,
  3707. 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72,
  3708. 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x12,
  3709. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3710. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3711. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3712. 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3713. 0x65, 0x72, 0x2f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x2f, 0x72, 0x65, 0x77, 0x6f, 0x72, 0x64,
  3714. 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x50,
  3715. 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67,
  3716. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3717. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3718. 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75,
  3719. 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f,
  3720. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79,
  3721. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x14, 0x55, 0x73,
  3722. 0x65, 0x72, 0x53, 0x65, 0x74, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74,
  3723. 0x75, 0x73, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3724. 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49,
  3725. 0x6e, 0x66, 0x6f, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3726. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4,
  3727. 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70,
  3728. 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8a, 0x01,
  3729. 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65,
  3730. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3731. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65,
  3732. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  3733. 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  3734. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  3735. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22,
  3736. 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73,
  3737. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x1e, 0x4d,
  3738. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3739. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e,
  3740. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3741. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  3742. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3743. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  3744. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3745. 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  3746. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  3747. 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0xb2,
  3748. 0x01, 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73,
  3749. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72,
  3750. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3751. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65,
  3752. 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
  3753. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3754. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  3755. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3756. 0x32, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3757. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  3758. 0x74, 0x2f, 0x69, 0x73, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  3759. 0x3a, 0x01, 0x2a, 0x12, 0x9d, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  3760. 0x69, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  3761. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3762. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50,
  3763. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3764. 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  3765. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  3766. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23,
  3767. 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71,
  3768. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  3769. 0x3a, 0x01, 0x2a, 0x12, 0xb0, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  3770. 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73,
  3771. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x31, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3772. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43,
  3773. 0x61, 0x6e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
  3774. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3775. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  3776. 0x6e, 0x64, 0x43, 0x61, 0x6e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65,
  3777. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93,
  3778. 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3779. 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  3780. 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3781. 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65,
  3782. 0x72, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  3783. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63,
  3784. 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  3785. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3786. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61,
  3787. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70,
  3788. 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3789. 0x90, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61,
  3790. 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x2c, 0x2e,
  3791. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3792. 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65,
  3793. 0x72, 0x4f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3794. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3795. 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70,
  3796. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69,
  3797. 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a,
  3798. 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61,
  3799. 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65,
  3800. 0x72, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e,
  3801. 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c,
  3802. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  3803. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3804. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d,
  3805. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61,
  3806. 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a,
  3807. 0x12, 0x92, 0x01, 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65, 0x4d, 0x61,
  3808. 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65,
  3809. 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e,
  3810. 0x61, 0x67, 0x65, 0x72, 0x52, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75,
  3811. 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3812. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3813. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25,
  3814. 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71,
  3815. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x6d, 0x61,
  3816. 0x72, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x1d, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3817. 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  3818. 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3819. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  3820. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3821. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93,
  3822. 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3823. 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65,
  3824. 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61,
  3825. 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12,
  3826. 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  3827. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3828. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3829. 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3830. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x73,
  3831. 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x1c, 0x4d, 0x61,
  3832. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x48, 0x69, 0x67, 0x68, 0x51,
  3833. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  3834. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  3835. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3836. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82,
  3837. 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  3838. 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3839. 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x88, 0x01, 0x0a, 0x16, 0x4d,
  3840. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  3841. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3842. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3843. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3844. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3845. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93,
  3846. 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3847. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61,
  3848. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x91, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3849. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x69, 0x63, 0x74, 0x75,
  3850. 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3851. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65,
  3852. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
  3853. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3854. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4,
  3855. 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3856. 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f,
  3857. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1a, 0x4d, 0x61,
  3858. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x53,
  3859. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3860. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  3861. 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  3862. 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3863. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3864. 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3865. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x69, 0x67,
  3866. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  3867. 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  3868. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x2c, 0x2e, 0x61,
  3869. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3870. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x41, 0x76, 0x61,
  3871. 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3872. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3873. 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69,
  3874. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x61, 0x76,
  3875. 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x85,
  3876. 0x01, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3877. 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3878. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  3879. 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71,
  3880. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3881. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3,
  3882. 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3883. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x2f, 0x75, 0x70, 0x64,
  3884. 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3885. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x57, 0x65, 0x69, 0x67,
  3886. 0x68, 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3887. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72,
  3888. 0x73, 0x6f, 0x6e, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3889. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3890. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24,
  3891. 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75,
  3892. 0x73, 0x65, 0x72, 0x2f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74,
  3893. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8c, 0x01, 0x0a, 0x18, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3894. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63,
  3895. 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  3896. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73,
  3897. 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3898. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3899. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23,
  3900. 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75,
  3901. 0x73, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  3902. 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  3903. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  3904. 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3905. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64,
  3906. 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3907. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3908. 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3909. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65,
  3910. 0x64, 0x69, 0x74, 0x2f, 0x61, 0x64, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65,
  3911. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  3912. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  3913. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3914. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e,
  3915. 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18,
  3916. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  3917. 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3918. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65,
  3919. 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73,
  3920. 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69,
  3921. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61,
  3922. 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65,
  3923. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3924. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x17,
  3925. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65,
  3926. 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3927. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  3928. 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3929. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52,
  3930. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3931. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d,
  3932. 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3933. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  3934. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3935. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  3936. 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  3937. 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49,
  3938. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3939. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x82, 0x01,
  3940. 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48,
  3941. 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42,
  3942. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3943. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67,
  3944. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  3945. 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46,
  3946. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68,
  3947. 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3948. 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d,
  3949. 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x12,
  3950. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  3951. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69,
  3952. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d,
  3953. 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52,
  3954. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x53, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52,
  3955. 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70,
  3956. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65,
  3957. 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3958. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3959. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f,
  3960. 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65,
  3961. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3962. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  3963. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3964. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74,
  3965. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64,
  3966. 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3967. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3968. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3969. 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69,
  3970. 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e,
  3971. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3972. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3973. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41,
  3974. 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  3975. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3976. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3977. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3978. 0x79, 0x12, 0x67, 0x0a, 0x1c, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73,
  3979. 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65,
  3980. 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e,
  3981. 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61,
  3982. 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3983. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3984. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65,
  3985. 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70,
  3986. 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61,
  3987. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3988. 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3989. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3990. 0x00, 0x12, 0x84, 0x01, 0x0a, 0x24, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  3991. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74,
  3992. 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69,
  3993. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  3994. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3995. 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64,
  3996. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75,
  3997. 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73,
  3998. 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52,
  3999. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x12, 0x23,
  4000. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63,
  4001. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75,
  4002. 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  4003. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0f, 0x52,
  4004. 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x20,
  4005. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74,
  4006. 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4007. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  4008. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x0d, 0x41, 0x64,
  4009. 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x2e, 0x61, 0x70,
  4010. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72,
  4011. 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  4012. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  4013. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  4014. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x42,
  4015. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  4016. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1b, 0x2e, 0x61, 0x70,
  4017. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  4018. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x21, 0x55,
  4019. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  4020. 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
  4021. 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  4022. 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77,
  4023. 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71,
  4024. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  4025. 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  4026. 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
  4027. 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x11, 0x46, 0x69, 0x6e, 0x64,
  4028. 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e,
  4029. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  4030. 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  4031. 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x4c, 0x69,
  4032. 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x15, 0x4d,
  4033. 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75,
  4034. 0x74, 0x4d, 0x61, 0x70, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  4035. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f,
  4036. 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61,
  4037. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  4038. 0x44, 0x42, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x0e, 0x43, 0x72, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e,
  4039. 0x49, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  4040. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16,
  4041. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  4042. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x16, 0x43, 0x72, 0x6f, 0x6e,
  4043. 0x53, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  4044. 0x74, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  4045. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  4046. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  4047. 0x74, 0x79, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x17, 0x43, 0x72, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f,
  4048. 0x76, 0x65, 0x45, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x70, 0x12,
  4049. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  4050. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  4051. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  4052. 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01, 0x5a,
  4053. 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
  4054. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  4055. 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65, 0x72,
  4056. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4057. }
  4058. var (
  4059. file_user_proto_rawDescOnce sync.Once
  4060. file_user_proto_rawDescData = file_user_proto_rawDesc
  4061. )
  4062. func file_user_proto_rawDescGZIP() []byte {
  4063. file_user_proto_rawDescOnce.Do(func() {
  4064. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  4065. })
  4066. return file_user_proto_rawDescData
  4067. }
  4068. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 51)
  4069. var file_user_proto_goTypes = []interface{}{
  4070. (*UserPrivacyStatusInfo)(nil), // 0: api.user.UserPrivacyStatusInfo
  4071. (*IsCanGetReturnRewordReply)(nil), // 1: api.user.IsCanGetReturnRewordReply
  4072. (*GetRandomMatchingRequest)(nil), // 2: api.user.GetRandomMatchingRequest
  4073. (*MatchUserDBWithoutMapRequest)(nil), // 3: api.user.MatchUserDBWithoutMapRequest
  4074. (*GetUserLookHandPickNumReply)(nil), // 4: api.user.GetUserLookHandPickNumReply
  4075. (*FindUserVipListDBReply)(nil), // 5: api.user.FindUserVipListDBReply
  4076. (*VipInfo)(nil), // 6: api.user.VipInfo
  4077. (*SendMsgReduceCreditRequest)(nil), // 7: api.user.SendMsgReduceCreditRequest
  4078. (*UserGetInformationAwardByActivityRequest)(nil), // 8: api.user.UserGetInformationAwardByActivityRequest
  4079. (*UserGetInformationAwardByActivityReply)(nil), // 9: api.user.UserGetInformationAwardByActivityReply
  4080. (*AddUserCreditRequest)(nil), // 10: api.user.AddUserCreditRequest
  4081. (*ReportUserBlackRequest)(nil), // 11: api.user.ReportUserBlackRequest
  4082. (*SendMessageRequest)(nil), // 12: api.user.SendMessageRequest
  4083. (*ManagerFindIsCheckQualityUserListRequest)(nil), // 13: api.user.ManagerFindIsCheckQualityUserListRequest
  4084. (*ManagerUpdateUserCreditRequest)(nil), // 14: api.user.ManagerUpdateUserCreditRequest
  4085. (*ManagerMarkHighQualityUserRequest)(nil), // 15: api.user.ManagerMarkHighQualityUserRequest
  4086. (*ManagerReMarkHighQualityUserRequest)(nil), // 16: api.user.ManagerReMarkHighQualityUserRequest
  4087. (*GetRecommendUserDBRequest)(nil), // 17: api.user.GetRecommendUserDBRequest
  4088. (*FindRecommendHighQualityUserRequest)(nil), // 18: api.user.FindRecommendHighQualityUserRequest
  4089. (*FindRecommendHighQualityUserReply)(nil), // 19: api.user.FindRecommendHighQualityUserReply
  4090. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 20: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4091. (*GetUserDBMsgFromWebsocketReply)(nil), // 21: api.user.GetUserDBMsgFromWebsocketReply
  4092. (*UpdateUserMatchedNumRequest)(nil), // 22: api.user.UpdateUserMatchedNumRequest
  4093. (*SendNewMessageUnreadReminderRequest)(nil), // 23: api.user.SendNewMessageUnreadReminderRequest
  4094. (*SendMsgReduceCreditReply)(nil), // 24: api.user.SendMsgReduceCreditReply
  4095. (*UserFreeNum)(nil), // 25: api.user.UserFreeNum
  4096. (*ReplyScripRequest)(nil), // 26: api.user.ReplyScripRequest
  4097. (*PersonLookScripRequest)(nil), // 27: api.user.PersonLookScripRequest
  4098. (*UserFindScripRequest)(nil), // 28: api.user.UserFindScripRequest
  4099. (*DeleteScripRequest)(nil), // 29: api.user.DeleteScripRequest
  4100. (*CreateScripRequest)(nil), // 30: api.user.CreateScripRequest
  4101. (*FindMatchingAvatarAndNumReply)(nil), // 31: api.user.FindMatchingAvatarAndNumReply
  4102. (*UserRechargeRequest)(nil), // 32: api.user.UserRechargeRequest
  4103. (*RechargeList)(nil), // 33: api.user.RechargeList
  4104. (*VipRechargeList)(nil), // 34: api.user.VipRechargeList
  4105. (*VipRechargeInfo)(nil), // 35: api.user.VipRechargeInfo
  4106. (*RechargeInfo)(nil), // 36: api.user.RechargeInfo
  4107. (*InformationStatus)(nil), // 37: api.user.InformationStatus
  4108. (*UserBalance)(nil), // 38: api.user.UserBalance
  4109. (*UserFindChatListReply)(nil), // 39: api.user.UserFindChatListReply
  4110. (*UserChatInfo)(nil), // 40: api.user.UserChatInfo
  4111. (*UserInfo)(nil), // 41: api.user.UserInfo
  4112. (*KeyRequest)(nil), // 42: api.user.KeyRequest
  4113. (*CreatePayRequest)(nil), // 43: api.user.CreatePayRequest
  4114. (*PayInfo)(nil), // 44: api.user.PayInfo
  4115. (*PayOrderInfo)(nil), // 45: api.user.PayOrderInfo
  4116. (*PayOrderList)(nil), // 46: api.user.PayOrderList
  4117. (*FindPayOrderListRequest)(nil), // 47: api.user.FindPayOrderListRequest
  4118. (*PayCallbackReply)(nil), // 48: api.user.PayCallbackReply
  4119. nil, // 49: api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  4120. nil, // 50: api.user.FindUserVipListDBReply.VipMapEntry
  4121. (*common.Message)(nil), // 51: api.common.Message
  4122. (*structpb.Value)(nil), // 52: google.protobuf.Value
  4123. (*emptypb.Empty)(nil), // 53: google.protobuf.Empty
  4124. (*common.SendPhoneCodeRequest)(nil), // 54: api.common.SendPhoneCodeRequest
  4125. (*common.CheckPhoneCodeRequest)(nil), // 55: api.common.CheckPhoneCodeRequest
  4126. (*common.UpdateInformationRequest)(nil), // 56: api.common.UpdateInformationRequest
  4127. (*common.CreateChatRoomParam)(nil), // 57: api.common.CreateChatRoomParam
  4128. (*common.PersonParam)(nil), // 58: api.common.PersonParam
  4129. (*common.ListPageRequest)(nil), // 59: api.common.ListPageRequest
  4130. (*common.WxConfReq)(nil), // 60: api.common.WxConfReq
  4131. (*common.SexReq)(nil), // 61: api.common.SexReq
  4132. (*common.ListPage2Request)(nil), // 62: api.common.ListPage2Request
  4133. (*common.FindChatRecordListRequest)(nil), // 63: api.common.FindChatRecordListRequest
  4134. (*common.FindChatRoomMsgRequest)(nil), // 64: api.common.FindChatRoomMsgRequest
  4135. (*common.MemeRequest)(nil), // 65: api.common.MemeRequest
  4136. (*common.FindChatTopicRequest)(nil), // 66: api.common.FindChatTopicRequest
  4137. (*common.RandomNum)(nil), // 67: api.common.RandomNum
  4138. (*common.RandomNumAndSex)(nil), // 68: api.common.RandomNumAndSex
  4139. (*common.ReportChatRequest)(nil), // 69: api.common.ReportChatRequest
  4140. (*common.UpdateLastScripIDRequest)(nil), // 70: api.common.UpdateLastScripIDRequest
  4141. (*common.FindScripRequest)(nil), // 71: api.common.FindScripRequest
  4142. (*common.RoomIDRequest)(nil), // 72: api.common.RoomIDRequest
  4143. (*common.PartnerIDParam)(nil), // 73: api.common.PartnerIDParam
  4144. (*common.PersonIDParam)(nil), // 74: api.common.PersonIDParam
  4145. (*common.ManagerFindPersonListRequest)(nil), // 75: api.common.ManagerFindPersonListRequest
  4146. (*common.ManagerFindCanHandpickUserListRequest)(nil), // 76: api.common.ManagerFindCanHandpickUserListRequest
  4147. (*common.ManagerSetHandpickUserRequest)(nil), // 77: api.common.ManagerSetHandpickUserRequest
  4148. (*common.ManagerSetHandpickUserOneRequest)(nil), // 78: api.common.ManagerSetHandpickUserOneRequest
  4149. (*common.PersonIDList)(nil), // 79: api.common.PersonIDList
  4150. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 80: api.common.ManagerUpdatePersonVoiceRequest
  4151. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 81: api.common.ManagerUpdatePersonPicturesRequest
  4152. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 82: api.common.ManagerUpdatePersonSignatureRequest
  4153. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 83: api.common.ManagerUpdatePersonAvatarRequest
  4154. (*common.ManagerUpdatePersonNameRequest)(nil), // 84: api.common.ManagerUpdatePersonNameRequest
  4155. (*common.ManagerUpdatePersonWeightRequest)(nil), // 85: api.common.ManagerUpdatePersonWeightRequest
  4156. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 86: api.common.ManagerUpdatePersonIsBlackRequest
  4157. (*common.UpdateLastScripIDDBRequest)(nil), // 87: api.common.UpdateLastScripIDDBRequest
  4158. (*common.FindRecommendRequest)(nil), // 88: api.common.FindRecommendRequest
  4159. (*common.IDParam)(nil), // 89: api.common.IDParam
  4160. (*chat.RoomReply)(nil), // 90: api.chat.RoomReply
  4161. (*common.HomeInfo)(nil), // 91: api.common.HomeInfo
  4162. (*common.LookedAndLikedNum)(nil), // 92: api.common.LookedAndLikedNum
  4163. (*statistics.LookAndLikeListReply)(nil), // 93: api.statistics.LookAndLikeListReply
  4164. (*common.WxConfResponse)(nil), // 94: api.common.WxConfResponse
  4165. (*common.TagListReply)(nil), // 95: api.common.TagListReply
  4166. (*common.RecommendPersonListReply)(nil), // 96: api.common.RecommendPersonListReply
  4167. (*common.ChatRecordListReply)(nil), // 97: api.common.ChatRecordListReply
  4168. (*common.ChatRoomMsg)(nil), // 98: api.common.ChatRoomMsg
  4169. (*common.IsLike)(nil), // 99: api.common.IsLike
  4170. (*common.MemeList)(nil), // 100: api.common.MemeList
  4171. (*common.ChatTopicList)(nil), // 101: api.common.ChatTopicList
  4172. (*common.CommonTextList)(nil), // 102: api.common.CommonTextList
  4173. (*common.MemeTitleList)(nil), // 103: api.common.MemeTitleList
  4174. (*common.ChatCardInfo)(nil), // 104: api.common.ChatCardInfo
  4175. (*common.FindOverSevenDayAvatarReply)(nil), // 105: api.common.FindOverSevenDayAvatarReply
  4176. (*common.ScripID)(nil), // 106: api.common.ScripID
  4177. (*common.ScripReply)(nil), // 107: api.common.ScripReply
  4178. (*common.ScripInfo)(nil), // 108: api.common.ScripInfo
  4179. (*common.ChatRecordInfo)(nil), // 109: api.common.ChatRecordInfo
  4180. (*chat.UnreadNumReply)(nil), // 110: api.chat.UnreadNumReply
  4181. (*chat.UserRoomInfo)(nil), // 111: api.chat.UserRoomInfo
  4182. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 112: api.chat.CheckUserPartnerIsRelationshipReply
  4183. (*common.AddFriendMessageInfo)(nil), // 113: api.common.AddFriendMessageInfo
  4184. (*statistics.LookAndLikeMessageReply)(nil), // 114: api.statistics.LookAndLikeMessageReply
  4185. (*statistics.LookMessageReply)(nil), // 115: api.statistics.LookMessageReply
  4186. (*chat.WindowInfo)(nil), // 116: api.chat.WindowInfo
  4187. (*chat.GetRandomMatchingReply)(nil), // 117: api.chat.GetRandomMatchingReply
  4188. (*common.SendMessageReply)(nil), // 118: api.common.SendMessageReply
  4189. (*common.HandpickPersonListReply)(nil), // 119: api.common.HandpickPersonListReply
  4190. (*common.ManagerFindPersonListReply)(nil), // 120: api.common.ManagerFindPersonListReply
  4191. (*common.ManagerFindPersonListReply2)(nil), // 121: api.common.ManagerFindPersonListReply2
  4192. (*common.ManagerFindCanHandpickUserListReply)(nil), // 122: api.common.ManagerFindCanHandpickUserListReply
  4193. (*common.PersonMsg)(nil), // 123: api.common.PersonMsg
  4194. (*common.PersonDBReply)(nil), // 124: api.common.PersonDBReply
  4195. (*common.PersonDB)(nil), // 125: api.common.PersonDB
  4196. }
  4197. var file_user_proto_depIdxs = []int32{
  4198. 49, // 0: api.user.MatchUserDBWithoutMapRequest.isMatchingMap:type_name -> api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  4199. 50, // 1: api.user.FindUserVipListDBReply.vipMap:type_name -> api.user.FindUserVipListDBReply.VipMapEntry
  4200. 51, // 2: api.user.SendMessageRequest.message:type_name -> api.common.Message
  4201. 51, // 3: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  4202. 36, // 4: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  4203. 35, // 5: api.user.VipRechargeList.list:type_name -> api.user.VipRechargeInfo
  4204. 40, // 6: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  4205. 52, // 7: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  4206. 45, // 8: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  4207. 6, // 9: api.user.FindUserVipListDBReply.VipMapEntry.value:type_name -> api.user.VipInfo
  4208. 53, // 10: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  4209. 54, // 11: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  4210. 55, // 12: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  4211. 56, // 13: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  4212. 57, // 14: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  4213. 53, // 15: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  4214. 58, // 16: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  4215. 58, // 17: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  4216. 59, // 18: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  4217. 60, // 19: api.user.User.WxConf:input_type -> api.common.WxConfReq
  4218. 61, // 20: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  4219. 62, // 21: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  4220. 59, // 22: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  4221. 59, // 23: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  4222. 59, // 24: api.user.User.FindCloseFriendRoomList:input_type -> api.common.ListPageRequest
  4223. 63, // 25: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  4224. 64, // 26: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  4225. 58, // 27: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  4226. 65, // 28: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  4227. 66, // 29: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  4228. 67, // 30: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  4229. 68, // 31: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  4230. 53, // 32: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  4231. 58, // 33: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  4232. 53, // 34: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  4233. 58, // 35: api.user.User.UserLike:input_type -> api.common.PersonParam
  4234. 58, // 36: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  4235. 69, // 37: api.user.User.Report:input_type -> api.common.ReportChatRequest
  4236. 53, // 38: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  4237. 70, // 39: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  4238. 30, // 40: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  4239. 29, // 41: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  4240. 28, // 42: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  4241. 71, // 43: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  4242. 28, // 44: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  4243. 27, // 45: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  4244. 53, // 46: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  4245. 26, // 47: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  4246. 72, // 48: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  4247. 53, // 49: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  4248. 58, // 50: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  4249. 59, // 51: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  4250. 59, // 52: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  4251. 72, // 53: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  4252. 73, // 54: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  4253. 42, // 55: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  4254. 53, // 56: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  4255. 53, // 57: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  4256. 53, // 58: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  4257. 53, // 59: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  4258. 53, // 60: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  4259. 58, // 61: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  4260. 32, // 62: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  4261. 32, // 63: api.user.User.UserRechargeVip:input_type -> api.user.UserRechargeRequest
  4262. 53, // 64: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  4263. 53, // 65: api.user.User.FindVipRechargeList:input_type -> google.protobuf.Empty
  4264. 47, // 66: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  4265. 53, // 67: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  4266. 53, // 68: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  4267. 53, // 69: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  4268. 53, // 70: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  4269. 2, // 71: api.user.User.GetRandomMatching:input_type -> api.user.GetRandomMatchingRequest
  4270. 72, // 72: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  4271. 72, // 73: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  4272. 53, // 74: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  4273. 57, // 75: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  4274. 12, // 76: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  4275. 53, // 77: api.user.User.GetVipInfo:input_type -> google.protobuf.Empty
  4276. 53, // 78: api.user.User.FindHandpickUser:input_type -> google.protobuf.Empty
  4277. 53, // 79: api.user.User.GetUserLookHandPickNum:input_type -> google.protobuf.Empty
  4278. 74, // 80: api.user.User.SetUserLookHandPickNum:input_type -> api.common.PersonIDParam
  4279. 53, // 81: api.user.User.IsCanGetReturnReword:input_type -> google.protobuf.Empty
  4280. 53, // 82: api.user.User.UserGetReturnReword:input_type -> google.protobuf.Empty
  4281. 53, // 83: api.user.User.UserPrivacyStatus:input_type -> google.protobuf.Empty
  4282. 0, // 84: api.user.User.UserSetPrivacyStatus:input_type -> api.user.UserPrivacyStatusInfo
  4283. 75, // 85: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  4284. 75, // 86: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  4285. 13, // 87: api.user.User.ManagerFindIsCheckQualityUserList:input_type -> api.user.ManagerFindIsCheckQualityUserListRequest
  4286. 75, // 88: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  4287. 76, // 89: api.user.User.ManagerFindCanHandpickUserList:input_type -> api.common.ManagerFindCanHandpickUserListRequest
  4288. 77, // 90: api.user.User.ManagerSetHandpickUser:input_type -> api.common.ManagerSetHandpickUserRequest
  4289. 78, // 91: api.user.User.ManagerSetHandpickUserOne:input_type -> api.common.ManagerSetHandpickUserOneRequest
  4290. 15, // 92: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  4291. 16, // 93: api.user.User.ManagerReMarkHighQualityUser:input_type -> api.user.ManagerReMarkHighQualityUserRequest
  4292. 74, // 94: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  4293. 79, // 95: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  4294. 74, // 96: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  4295. 80, // 97: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  4296. 81, // 98: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  4297. 82, // 99: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  4298. 83, // 100: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  4299. 84, // 101: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  4300. 85, // 102: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  4301. 86, // 103: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  4302. 14, // 104: api.user.User.ManagerUpdateUserCredit:input_type -> api.user.ManagerUpdateUserCreditRequest
  4303. 74, // 105: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  4304. 79, // 106: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  4305. 87, // 107: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  4306. 88, // 108: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  4307. 74, // 109: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  4308. 89, // 110: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  4309. 18, // 111: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  4310. 74, // 112: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  4311. 7, // 113: api.user.User.SendMsgReduceCredit:input_type -> api.user.SendMsgReduceCreditRequest
  4312. 58, // 114: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  4313. 58, // 115: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  4314. 58, // 116: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  4315. 58, // 117: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  4316. 23, // 118: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  4317. 74, // 119: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  4318. 22, // 120: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  4319. 17, // 121: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  4320. 11, // 122: api.user.User.ReportUserBlack:input_type -> api.user.ReportUserBlackRequest
  4321. 10, // 123: api.user.User.AddUserCredit:input_type -> api.user.AddUserCreditRequest
  4322. 74, // 124: api.user.User.UserInformationStatusDB:input_type -> api.common.PersonIDParam
  4323. 8, // 125: api.user.User.UserGetInformationAwardByActivity:input_type -> api.user.UserGetInformationAwardByActivityRequest
  4324. 79, // 126: api.user.User.FindUserVipDBList:input_type -> api.common.PersonIDList
  4325. 3, // 127: api.user.User.MatchUserDBWithoutMap:input_type -> api.user.MatchUserDBWithoutMapRequest
  4326. 53, // 128: api.user.User.CronSignInUser:input_type -> google.protobuf.Empty
  4327. 53, // 129: api.user.User.CronSendUnreadTemplate:input_type -> google.protobuf.Empty
  4328. 53, // 130: api.user.User.CronRemoveExpirationVip:input_type -> google.protobuf.Empty
  4329. 41, // 131: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  4330. 53, // 132: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  4331. 53, // 133: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  4332. 53, // 134: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  4333. 90, // 135: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  4334. 38, // 136: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  4335. 91, // 137: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  4336. 92, // 138: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  4337. 93, // 139: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  4338. 94, // 140: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  4339. 95, // 141: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  4340. 96, // 142: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  4341. 39, // 143: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4342. 39, // 144: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4343. 39, // 145: api.user.User.FindCloseFriendRoomList:output_type -> api.user.UserFindChatListReply
  4344. 97, // 146: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  4345. 98, // 147: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  4346. 99, // 148: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  4347. 100, // 149: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  4348. 101, // 150: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  4349. 102, // 151: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  4350. 102, // 152: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  4351. 103, // 153: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  4352. 104, // 154: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  4353. 103, // 155: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  4354. 53, // 156: api.user.User.UserLike:output_type -> google.protobuf.Empty
  4355. 53, // 157: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  4356. 53, // 158: api.user.User.Report:output_type -> google.protobuf.Empty
  4357. 105, // 159: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  4358. 53, // 160: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  4359. 106, // 161: api.user.User.CreateScrip:output_type -> api.common.ScripID
  4360. 53, // 162: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  4361. 107, // 163: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  4362. 107, // 164: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  4363. 107, // 165: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  4364. 53, // 166: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  4365. 108, // 167: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  4366. 109, // 168: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  4367. 53, // 169: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  4368. 110, // 170: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  4369. 111, // 171: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  4370. 93, // 172: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  4371. 93, // 173: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  4372. 53, // 174: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  4373. 112, // 175: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  4374. 113, // 176: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  4375. 114, // 177: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  4376. 115, // 178: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  4377. 53, // 179: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  4378. 37, // 180: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  4379. 53, // 181: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  4380. 53, // 182: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  4381. 44, // 183: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  4382. 44, // 184: api.user.User.UserRechargeVip:output_type -> api.user.PayInfo
  4383. 33, // 185: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  4384. 34, // 186: api.user.User.FindVipRechargeList:output_type -> api.user.VipRechargeList
  4385. 46, // 187: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  4386. 96, // 188: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  4387. 31, // 189: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  4388. 116, // 190: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  4389. 25, // 191: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  4390. 117, // 192: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  4391. 53, // 193: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  4392. 53, // 194: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  4393. 53, // 195: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  4394. 90, // 196: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  4395. 118, // 197: api.user.User.SendMessage:output_type -> api.common.SendMessageReply
  4396. 6, // 198: api.user.User.GetVipInfo:output_type -> api.user.VipInfo
  4397. 119, // 199: api.user.User.FindHandpickUser:output_type -> api.common.HandpickPersonListReply
  4398. 4, // 200: api.user.User.GetUserLookHandPickNum:output_type -> api.user.GetUserLookHandPickNumReply
  4399. 53, // 201: api.user.User.SetUserLookHandPickNum:output_type -> google.protobuf.Empty
  4400. 1, // 202: api.user.User.IsCanGetReturnReword:output_type -> api.user.IsCanGetReturnRewordReply
  4401. 53, // 203: api.user.User.UserGetReturnReword:output_type -> google.protobuf.Empty
  4402. 0, // 204: api.user.User.UserPrivacyStatus:output_type -> api.user.UserPrivacyStatusInfo
  4403. 53, // 205: api.user.User.UserSetPrivacyStatus:output_type -> google.protobuf.Empty
  4404. 120, // 206: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  4405. 120, // 207: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  4406. 121, // 208: api.user.User.ManagerFindIsCheckQualityUserList:output_type -> api.common.ManagerFindPersonListReply2
  4407. 120, // 209: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  4408. 122, // 210: api.user.User.ManagerFindCanHandpickUserList:output_type -> api.common.ManagerFindCanHandpickUserListReply
  4409. 53, // 211: api.user.User.ManagerSetHandpickUser:output_type -> google.protobuf.Empty
  4410. 53, // 212: api.user.User.ManagerSetHandpickUserOne:output_type -> google.protobuf.Empty
  4411. 53, // 213: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  4412. 53, // 214: api.user.User.ManagerReMarkHighQualityUser:output_type -> google.protobuf.Empty
  4413. 53, // 215: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  4414. 53, // 216: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  4415. 53, // 217: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  4416. 53, // 218: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  4417. 53, // 219: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  4418. 53, // 220: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  4419. 53, // 221: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  4420. 53, // 222: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  4421. 53, // 223: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  4422. 53, // 224: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  4423. 53, // 225: api.user.User.ManagerUpdateUserCredit:output_type -> google.protobuf.Empty
  4424. 123, // 226: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  4425. 124, // 227: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  4426. 53, // 228: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  4427. 124, // 229: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  4428. 53, // 230: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  4429. 123, // 231: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  4430. 19, // 232: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  4431. 21, // 233: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  4432. 53, // 234: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  4433. 53, // 235: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  4434. 53, // 236: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  4435. 53, // 237: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  4436. 53, // 238: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  4437. 53, // 239: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  4438. 53, // 240: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  4439. 20, // 241: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4440. 125, // 242: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  4441. 53, // 243: api.user.User.ReportUserBlack:output_type -> google.protobuf.Empty
  4442. 53, // 244: api.user.User.AddUserCredit:output_type -> google.protobuf.Empty
  4443. 37, // 245: api.user.User.UserInformationStatusDB:output_type -> api.user.InformationStatus
  4444. 9, // 246: api.user.User.UserGetInformationAwardByActivity:output_type -> api.user.UserGetInformationAwardByActivityReply
  4445. 5, // 247: api.user.User.FindUserVipDBList:output_type -> api.user.FindUserVipListDBReply
  4446. 125, // 248: api.user.User.MatchUserDBWithoutMap:output_type -> api.common.PersonDB
  4447. 53, // 249: api.user.User.CronSignInUser:output_type -> google.protobuf.Empty
  4448. 53, // 250: api.user.User.CronSendUnreadTemplate:output_type -> google.protobuf.Empty
  4449. 53, // 251: api.user.User.CronRemoveExpirationVip:output_type -> google.protobuf.Empty
  4450. 131, // [131:252] is the sub-list for method output_type
  4451. 10, // [10:131] is the sub-list for method input_type
  4452. 10, // [10:10] is the sub-list for extension type_name
  4453. 10, // [10:10] is the sub-list for extension extendee
  4454. 0, // [0:10] is the sub-list for field type_name
  4455. }
  4456. func init() { file_user_proto_init() }
  4457. func file_user_proto_init() {
  4458. if File_user_proto != nil {
  4459. return
  4460. }
  4461. if !protoimpl.UnsafeEnabled {
  4462. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4463. switch v := v.(*UserPrivacyStatusInfo); i {
  4464. case 0:
  4465. return &v.state
  4466. case 1:
  4467. return &v.sizeCache
  4468. case 2:
  4469. return &v.unknownFields
  4470. default:
  4471. return nil
  4472. }
  4473. }
  4474. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4475. switch v := v.(*IsCanGetReturnRewordReply); i {
  4476. case 0:
  4477. return &v.state
  4478. case 1:
  4479. return &v.sizeCache
  4480. case 2:
  4481. return &v.unknownFields
  4482. default:
  4483. return nil
  4484. }
  4485. }
  4486. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4487. switch v := v.(*GetRandomMatchingRequest); i {
  4488. case 0:
  4489. return &v.state
  4490. case 1:
  4491. return &v.sizeCache
  4492. case 2:
  4493. return &v.unknownFields
  4494. default:
  4495. return nil
  4496. }
  4497. }
  4498. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4499. switch v := v.(*MatchUserDBWithoutMapRequest); i {
  4500. case 0:
  4501. return &v.state
  4502. case 1:
  4503. return &v.sizeCache
  4504. case 2:
  4505. return &v.unknownFields
  4506. default:
  4507. return nil
  4508. }
  4509. }
  4510. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4511. switch v := v.(*GetUserLookHandPickNumReply); i {
  4512. case 0:
  4513. return &v.state
  4514. case 1:
  4515. return &v.sizeCache
  4516. case 2:
  4517. return &v.unknownFields
  4518. default:
  4519. return nil
  4520. }
  4521. }
  4522. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4523. switch v := v.(*FindUserVipListDBReply); i {
  4524. case 0:
  4525. return &v.state
  4526. case 1:
  4527. return &v.sizeCache
  4528. case 2:
  4529. return &v.unknownFields
  4530. default:
  4531. return nil
  4532. }
  4533. }
  4534. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4535. switch v := v.(*VipInfo); i {
  4536. case 0:
  4537. return &v.state
  4538. case 1:
  4539. return &v.sizeCache
  4540. case 2:
  4541. return &v.unknownFields
  4542. default:
  4543. return nil
  4544. }
  4545. }
  4546. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4547. switch v := v.(*SendMsgReduceCreditRequest); i {
  4548. case 0:
  4549. return &v.state
  4550. case 1:
  4551. return &v.sizeCache
  4552. case 2:
  4553. return &v.unknownFields
  4554. default:
  4555. return nil
  4556. }
  4557. }
  4558. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4559. switch v := v.(*UserGetInformationAwardByActivityRequest); i {
  4560. case 0:
  4561. return &v.state
  4562. case 1:
  4563. return &v.sizeCache
  4564. case 2:
  4565. return &v.unknownFields
  4566. default:
  4567. return nil
  4568. }
  4569. }
  4570. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4571. switch v := v.(*UserGetInformationAwardByActivityReply); i {
  4572. case 0:
  4573. return &v.state
  4574. case 1:
  4575. return &v.sizeCache
  4576. case 2:
  4577. return &v.unknownFields
  4578. default:
  4579. return nil
  4580. }
  4581. }
  4582. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4583. switch v := v.(*AddUserCreditRequest); i {
  4584. case 0:
  4585. return &v.state
  4586. case 1:
  4587. return &v.sizeCache
  4588. case 2:
  4589. return &v.unknownFields
  4590. default:
  4591. return nil
  4592. }
  4593. }
  4594. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4595. switch v := v.(*ReportUserBlackRequest); i {
  4596. case 0:
  4597. return &v.state
  4598. case 1:
  4599. return &v.sizeCache
  4600. case 2:
  4601. return &v.unknownFields
  4602. default:
  4603. return nil
  4604. }
  4605. }
  4606. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4607. switch v := v.(*SendMessageRequest); i {
  4608. case 0:
  4609. return &v.state
  4610. case 1:
  4611. return &v.sizeCache
  4612. case 2:
  4613. return &v.unknownFields
  4614. default:
  4615. return nil
  4616. }
  4617. }
  4618. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4619. switch v := v.(*ManagerFindIsCheckQualityUserListRequest); i {
  4620. case 0:
  4621. return &v.state
  4622. case 1:
  4623. return &v.sizeCache
  4624. case 2:
  4625. return &v.unknownFields
  4626. default:
  4627. return nil
  4628. }
  4629. }
  4630. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4631. switch v := v.(*ManagerUpdateUserCreditRequest); i {
  4632. case 0:
  4633. return &v.state
  4634. case 1:
  4635. return &v.sizeCache
  4636. case 2:
  4637. return &v.unknownFields
  4638. default:
  4639. return nil
  4640. }
  4641. }
  4642. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4643. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  4644. case 0:
  4645. return &v.state
  4646. case 1:
  4647. return &v.sizeCache
  4648. case 2:
  4649. return &v.unknownFields
  4650. default:
  4651. return nil
  4652. }
  4653. }
  4654. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4655. switch v := v.(*ManagerReMarkHighQualityUserRequest); i {
  4656. case 0:
  4657. return &v.state
  4658. case 1:
  4659. return &v.sizeCache
  4660. case 2:
  4661. return &v.unknownFields
  4662. default:
  4663. return nil
  4664. }
  4665. }
  4666. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4667. switch v := v.(*GetRecommendUserDBRequest); i {
  4668. case 0:
  4669. return &v.state
  4670. case 1:
  4671. return &v.sizeCache
  4672. case 2:
  4673. return &v.unknownFields
  4674. default:
  4675. return nil
  4676. }
  4677. }
  4678. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4679. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  4680. case 0:
  4681. return &v.state
  4682. case 1:
  4683. return &v.sizeCache
  4684. case 2:
  4685. return &v.unknownFields
  4686. default:
  4687. return nil
  4688. }
  4689. }
  4690. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4691. switch v := v.(*FindRecommendHighQualityUserReply); i {
  4692. case 0:
  4693. return &v.state
  4694. case 1:
  4695. return &v.sizeCache
  4696. case 2:
  4697. return &v.unknownFields
  4698. default:
  4699. return nil
  4700. }
  4701. }
  4702. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4703. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  4704. case 0:
  4705. return &v.state
  4706. case 1:
  4707. return &v.sizeCache
  4708. case 2:
  4709. return &v.unknownFields
  4710. default:
  4711. return nil
  4712. }
  4713. }
  4714. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4715. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  4716. case 0:
  4717. return &v.state
  4718. case 1:
  4719. return &v.sizeCache
  4720. case 2:
  4721. return &v.unknownFields
  4722. default:
  4723. return nil
  4724. }
  4725. }
  4726. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4727. switch v := v.(*UpdateUserMatchedNumRequest); i {
  4728. case 0:
  4729. return &v.state
  4730. case 1:
  4731. return &v.sizeCache
  4732. case 2:
  4733. return &v.unknownFields
  4734. default:
  4735. return nil
  4736. }
  4737. }
  4738. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4739. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  4740. case 0:
  4741. return &v.state
  4742. case 1:
  4743. return &v.sizeCache
  4744. case 2:
  4745. return &v.unknownFields
  4746. default:
  4747. return nil
  4748. }
  4749. }
  4750. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4751. switch v := v.(*SendMsgReduceCreditReply); i {
  4752. case 0:
  4753. return &v.state
  4754. case 1:
  4755. return &v.sizeCache
  4756. case 2:
  4757. return &v.unknownFields
  4758. default:
  4759. return nil
  4760. }
  4761. }
  4762. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4763. switch v := v.(*UserFreeNum); i {
  4764. case 0:
  4765. return &v.state
  4766. case 1:
  4767. return &v.sizeCache
  4768. case 2:
  4769. return &v.unknownFields
  4770. default:
  4771. return nil
  4772. }
  4773. }
  4774. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4775. switch v := v.(*ReplyScripRequest); i {
  4776. case 0:
  4777. return &v.state
  4778. case 1:
  4779. return &v.sizeCache
  4780. case 2:
  4781. return &v.unknownFields
  4782. default:
  4783. return nil
  4784. }
  4785. }
  4786. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4787. switch v := v.(*PersonLookScripRequest); i {
  4788. case 0:
  4789. return &v.state
  4790. case 1:
  4791. return &v.sizeCache
  4792. case 2:
  4793. return &v.unknownFields
  4794. default:
  4795. return nil
  4796. }
  4797. }
  4798. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4799. switch v := v.(*UserFindScripRequest); i {
  4800. case 0:
  4801. return &v.state
  4802. case 1:
  4803. return &v.sizeCache
  4804. case 2:
  4805. return &v.unknownFields
  4806. default:
  4807. return nil
  4808. }
  4809. }
  4810. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4811. switch v := v.(*DeleteScripRequest); i {
  4812. case 0:
  4813. return &v.state
  4814. case 1:
  4815. return &v.sizeCache
  4816. case 2:
  4817. return &v.unknownFields
  4818. default:
  4819. return nil
  4820. }
  4821. }
  4822. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4823. switch v := v.(*CreateScripRequest); i {
  4824. case 0:
  4825. return &v.state
  4826. case 1:
  4827. return &v.sizeCache
  4828. case 2:
  4829. return &v.unknownFields
  4830. default:
  4831. return nil
  4832. }
  4833. }
  4834. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4835. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  4836. case 0:
  4837. return &v.state
  4838. case 1:
  4839. return &v.sizeCache
  4840. case 2:
  4841. return &v.unknownFields
  4842. default:
  4843. return nil
  4844. }
  4845. }
  4846. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4847. switch v := v.(*UserRechargeRequest); i {
  4848. case 0:
  4849. return &v.state
  4850. case 1:
  4851. return &v.sizeCache
  4852. case 2:
  4853. return &v.unknownFields
  4854. default:
  4855. return nil
  4856. }
  4857. }
  4858. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4859. switch v := v.(*RechargeList); i {
  4860. case 0:
  4861. return &v.state
  4862. case 1:
  4863. return &v.sizeCache
  4864. case 2:
  4865. return &v.unknownFields
  4866. default:
  4867. return nil
  4868. }
  4869. }
  4870. file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4871. switch v := v.(*VipRechargeList); i {
  4872. case 0:
  4873. return &v.state
  4874. case 1:
  4875. return &v.sizeCache
  4876. case 2:
  4877. return &v.unknownFields
  4878. default:
  4879. return nil
  4880. }
  4881. }
  4882. file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4883. switch v := v.(*VipRechargeInfo); i {
  4884. case 0:
  4885. return &v.state
  4886. case 1:
  4887. return &v.sizeCache
  4888. case 2:
  4889. return &v.unknownFields
  4890. default:
  4891. return nil
  4892. }
  4893. }
  4894. file_user_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4895. switch v := v.(*RechargeInfo); i {
  4896. case 0:
  4897. return &v.state
  4898. case 1:
  4899. return &v.sizeCache
  4900. case 2:
  4901. return &v.unknownFields
  4902. default:
  4903. return nil
  4904. }
  4905. }
  4906. file_user_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4907. switch v := v.(*InformationStatus); i {
  4908. case 0:
  4909. return &v.state
  4910. case 1:
  4911. return &v.sizeCache
  4912. case 2:
  4913. return &v.unknownFields
  4914. default:
  4915. return nil
  4916. }
  4917. }
  4918. file_user_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4919. switch v := v.(*UserBalance); i {
  4920. case 0:
  4921. return &v.state
  4922. case 1:
  4923. return &v.sizeCache
  4924. case 2:
  4925. return &v.unknownFields
  4926. default:
  4927. return nil
  4928. }
  4929. }
  4930. file_user_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4931. switch v := v.(*UserFindChatListReply); i {
  4932. case 0:
  4933. return &v.state
  4934. case 1:
  4935. return &v.sizeCache
  4936. case 2:
  4937. return &v.unknownFields
  4938. default:
  4939. return nil
  4940. }
  4941. }
  4942. file_user_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4943. switch v := v.(*UserChatInfo); i {
  4944. case 0:
  4945. return &v.state
  4946. case 1:
  4947. return &v.sizeCache
  4948. case 2:
  4949. return &v.unknownFields
  4950. default:
  4951. return nil
  4952. }
  4953. }
  4954. file_user_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4955. switch v := v.(*UserInfo); i {
  4956. case 0:
  4957. return &v.state
  4958. case 1:
  4959. return &v.sizeCache
  4960. case 2:
  4961. return &v.unknownFields
  4962. default:
  4963. return nil
  4964. }
  4965. }
  4966. file_user_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4967. switch v := v.(*KeyRequest); i {
  4968. case 0:
  4969. return &v.state
  4970. case 1:
  4971. return &v.sizeCache
  4972. case 2:
  4973. return &v.unknownFields
  4974. default:
  4975. return nil
  4976. }
  4977. }
  4978. file_user_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4979. switch v := v.(*CreatePayRequest); i {
  4980. case 0:
  4981. return &v.state
  4982. case 1:
  4983. return &v.sizeCache
  4984. case 2:
  4985. return &v.unknownFields
  4986. default:
  4987. return nil
  4988. }
  4989. }
  4990. file_user_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4991. switch v := v.(*PayInfo); i {
  4992. case 0:
  4993. return &v.state
  4994. case 1:
  4995. return &v.sizeCache
  4996. case 2:
  4997. return &v.unknownFields
  4998. default:
  4999. return nil
  5000. }
  5001. }
  5002. file_user_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  5003. switch v := v.(*PayOrderInfo); i {
  5004. case 0:
  5005. return &v.state
  5006. case 1:
  5007. return &v.sizeCache
  5008. case 2:
  5009. return &v.unknownFields
  5010. default:
  5011. return nil
  5012. }
  5013. }
  5014. file_user_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  5015. switch v := v.(*PayOrderList); i {
  5016. case 0:
  5017. return &v.state
  5018. case 1:
  5019. return &v.sizeCache
  5020. case 2:
  5021. return &v.unknownFields
  5022. default:
  5023. return nil
  5024. }
  5025. }
  5026. file_user_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  5027. switch v := v.(*FindPayOrderListRequest); i {
  5028. case 0:
  5029. return &v.state
  5030. case 1:
  5031. return &v.sizeCache
  5032. case 2:
  5033. return &v.unknownFields
  5034. default:
  5035. return nil
  5036. }
  5037. }
  5038. file_user_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  5039. switch v := v.(*PayCallbackReply); i {
  5040. case 0:
  5041. return &v.state
  5042. case 1:
  5043. return &v.sizeCache
  5044. case 2:
  5045. return &v.unknownFields
  5046. default:
  5047. return nil
  5048. }
  5049. }
  5050. }
  5051. type x struct{}
  5052. out := protoimpl.TypeBuilder{
  5053. File: protoimpl.DescBuilder{
  5054. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  5055. RawDescriptor: file_user_proto_rawDesc,
  5056. NumEnums: 0,
  5057. NumMessages: 51,
  5058. NumExtensions: 0,
  5059. NumServices: 1,
  5060. },
  5061. GoTypes: file_user_proto_goTypes,
  5062. DependencyIndexes: file_user_proto_depIdxs,
  5063. MessageInfos: file_user_proto_msgTypes,
  5064. }.Build()
  5065. File_user_proto = out.File
  5066. file_user_proto_rawDesc = nil
  5067. file_user_proto_goTypes = nil
  5068. file_user_proto_depIdxs = nil
  5069. }