user.pb.go 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.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 SendMessageRequest struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  30. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  31. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  32. }
  33. func (x *SendMessageRequest) Reset() {
  34. *x = SendMessageRequest{}
  35. if protoimpl.UnsafeEnabled {
  36. mi := &file_user_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. }
  41. func (x *SendMessageRequest) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*SendMessageRequest) ProtoMessage() {}
  45. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  46. mi := &file_user_proto_msgTypes[0]
  47. if protoimpl.UnsafeEnabled && x != nil {
  48. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  49. if ms.LoadMessageInfo() == nil {
  50. ms.StoreMessageInfo(mi)
  51. }
  52. return ms
  53. }
  54. return mi.MessageOf(x)
  55. }
  56. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  57. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  58. return file_user_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *SendMessageRequest) GetRoomId() int64 {
  61. if x != nil {
  62. return x.RoomId
  63. }
  64. return 0
  65. }
  66. func (x *SendMessageRequest) GetMessage() *common.Message {
  67. if x != nil {
  68. return x.Message
  69. }
  70. return nil
  71. }
  72. func (x *SendMessageRequest) GetMsgType() string {
  73. if x != nil {
  74. return x.MsgType
  75. }
  76. return ""
  77. }
  78. type ManagerFindIsCheckQualityUserListRequest struct {
  79. state protoimpl.MessageState
  80. sizeCache protoimpl.SizeCache
  81. unknownFields protoimpl.UnknownFields
  82. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  83. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
  84. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"` // 用户ID
  85. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 姓名
  86. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  87. }
  88. func (x *ManagerFindIsCheckQualityUserListRequest) Reset() {
  89. *x = ManagerFindIsCheckQualityUserListRequest{}
  90. if protoimpl.UnsafeEnabled {
  91. mi := &file_user_proto_msgTypes[1]
  92. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  93. ms.StoreMessageInfo(mi)
  94. }
  95. }
  96. func (x *ManagerFindIsCheckQualityUserListRequest) String() string {
  97. return protoimpl.X.MessageStringOf(x)
  98. }
  99. func (*ManagerFindIsCheckQualityUserListRequest) ProtoMessage() {}
  100. func (x *ManagerFindIsCheckQualityUserListRequest) ProtoReflect() protoreflect.Message {
  101. mi := &file_user_proto_msgTypes[1]
  102. if protoimpl.UnsafeEnabled && x != nil {
  103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  104. if ms.LoadMessageInfo() == nil {
  105. ms.StoreMessageInfo(mi)
  106. }
  107. return ms
  108. }
  109. return mi.MessageOf(x)
  110. }
  111. // Deprecated: Use ManagerFindIsCheckQualityUserListRequest.ProtoReflect.Descriptor instead.
  112. func (*ManagerFindIsCheckQualityUserListRequest) Descriptor() ([]byte, []int) {
  113. return file_user_proto_rawDescGZIP(), []int{1}
  114. }
  115. func (x *ManagerFindIsCheckQualityUserListRequest) GetPage() int64 {
  116. if x != nil {
  117. return x.Page
  118. }
  119. return 0
  120. }
  121. func (x *ManagerFindIsCheckQualityUserListRequest) GetPageSize() int64 {
  122. if x != nil {
  123. return x.PageSize
  124. }
  125. return 0
  126. }
  127. func (x *ManagerFindIsCheckQualityUserListRequest) GetId() int64 {
  128. if x != nil {
  129. return x.Id
  130. }
  131. return 0
  132. }
  133. func (x *ManagerFindIsCheckQualityUserListRequest) GetName() string {
  134. if x != nil {
  135. return x.Name
  136. }
  137. return ""
  138. }
  139. func (x *ManagerFindIsCheckQualityUserListRequest) GetSex() int64 {
  140. if x != nil {
  141. return x.Sex
  142. }
  143. return 0
  144. }
  145. type ManagerUpdateUserCreditRequest struct {
  146. state protoimpl.MessageState
  147. sizeCache protoimpl.SizeCache
  148. unknownFields protoimpl.UnknownFields
  149. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  150. Num int64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
  151. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title"`
  152. }
  153. func (x *ManagerUpdateUserCreditRequest) Reset() {
  154. *x = ManagerUpdateUserCreditRequest{}
  155. if protoimpl.UnsafeEnabled {
  156. mi := &file_user_proto_msgTypes[2]
  157. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  158. ms.StoreMessageInfo(mi)
  159. }
  160. }
  161. func (x *ManagerUpdateUserCreditRequest) String() string {
  162. return protoimpl.X.MessageStringOf(x)
  163. }
  164. func (*ManagerUpdateUserCreditRequest) ProtoMessage() {}
  165. func (x *ManagerUpdateUserCreditRequest) ProtoReflect() protoreflect.Message {
  166. mi := &file_user_proto_msgTypes[2]
  167. if protoimpl.UnsafeEnabled && x != nil {
  168. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  169. if ms.LoadMessageInfo() == nil {
  170. ms.StoreMessageInfo(mi)
  171. }
  172. return ms
  173. }
  174. return mi.MessageOf(x)
  175. }
  176. // Deprecated: Use ManagerUpdateUserCreditRequest.ProtoReflect.Descriptor instead.
  177. func (*ManagerUpdateUserCreditRequest) Descriptor() ([]byte, []int) {
  178. return file_user_proto_rawDescGZIP(), []int{2}
  179. }
  180. func (x *ManagerUpdateUserCreditRequest) GetPersonId() string {
  181. if x != nil {
  182. return x.PersonId
  183. }
  184. return ""
  185. }
  186. func (x *ManagerUpdateUserCreditRequest) GetNum() int64 {
  187. if x != nil {
  188. return x.Num
  189. }
  190. return 0
  191. }
  192. func (x *ManagerUpdateUserCreditRequest) GetTitle() string {
  193. if x != nil {
  194. return x.Title
  195. }
  196. return ""
  197. }
  198. type ManagerMarkHighQualityUserRequest struct {
  199. state protoimpl.MessageState
  200. sizeCache protoimpl.SizeCache
  201. unknownFields protoimpl.UnknownFields
  202. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  203. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  204. }
  205. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  206. *x = ManagerMarkHighQualityUserRequest{}
  207. if protoimpl.UnsafeEnabled {
  208. mi := &file_user_proto_msgTypes[3]
  209. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  210. ms.StoreMessageInfo(mi)
  211. }
  212. }
  213. func (x *ManagerMarkHighQualityUserRequest) String() string {
  214. return protoimpl.X.MessageStringOf(x)
  215. }
  216. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  217. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  218. mi := &file_user_proto_msgTypes[3]
  219. if protoimpl.UnsafeEnabled && x != nil {
  220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  221. if ms.LoadMessageInfo() == nil {
  222. ms.StoreMessageInfo(mi)
  223. }
  224. return ms
  225. }
  226. return mi.MessageOf(x)
  227. }
  228. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  229. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  230. return file_user_proto_rawDescGZIP(), []int{3}
  231. }
  232. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  233. if x != nil {
  234. return x.PassIds
  235. }
  236. return nil
  237. }
  238. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  239. if x != nil {
  240. return x.UnPassIds
  241. }
  242. return nil
  243. }
  244. type GetRecommendUserDBRequest struct {
  245. state protoimpl.MessageState
  246. sizeCache protoimpl.SizeCache
  247. unknownFields protoimpl.UnknownFields
  248. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  249. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  250. }
  251. func (x *GetRecommendUserDBRequest) Reset() {
  252. *x = GetRecommendUserDBRequest{}
  253. if protoimpl.UnsafeEnabled {
  254. mi := &file_user_proto_msgTypes[4]
  255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  256. ms.StoreMessageInfo(mi)
  257. }
  258. }
  259. func (x *GetRecommendUserDBRequest) String() string {
  260. return protoimpl.X.MessageStringOf(x)
  261. }
  262. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  263. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  264. mi := &file_user_proto_msgTypes[4]
  265. if protoimpl.UnsafeEnabled && x != nil {
  266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  267. if ms.LoadMessageInfo() == nil {
  268. ms.StoreMessageInfo(mi)
  269. }
  270. return ms
  271. }
  272. return mi.MessageOf(x)
  273. }
  274. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  275. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  276. return file_user_proto_rawDescGZIP(), []int{4}
  277. }
  278. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  279. if x != nil {
  280. return x.Sex
  281. }
  282. return 0
  283. }
  284. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  285. if x != nil {
  286. return x.PersonIds
  287. }
  288. return nil
  289. }
  290. type FindRecommendHighQualityUserRequest struct {
  291. state protoimpl.MessageState
  292. sizeCache protoimpl.SizeCache
  293. unknownFields protoimpl.UnknownFields
  294. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  295. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  296. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  297. }
  298. func (x *FindRecommendHighQualityUserRequest) Reset() {
  299. *x = FindRecommendHighQualityUserRequest{}
  300. if protoimpl.UnsafeEnabled {
  301. mi := &file_user_proto_msgTypes[5]
  302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  303. ms.StoreMessageInfo(mi)
  304. }
  305. }
  306. func (x *FindRecommendHighQualityUserRequest) String() string {
  307. return protoimpl.X.MessageStringOf(x)
  308. }
  309. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  310. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  311. mi := &file_user_proto_msgTypes[5]
  312. if protoimpl.UnsafeEnabled && x != nil {
  313. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  314. if ms.LoadMessageInfo() == nil {
  315. ms.StoreMessageInfo(mi)
  316. }
  317. return ms
  318. }
  319. return mi.MessageOf(x)
  320. }
  321. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  322. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  323. return file_user_proto_rawDescGZIP(), []int{5}
  324. }
  325. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  326. if x != nil {
  327. return x.Num
  328. }
  329. return 0
  330. }
  331. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  332. if x != nil {
  333. return x.Sex
  334. }
  335. return 0
  336. }
  337. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  338. if x != nil {
  339. return x.PersonId
  340. }
  341. return ""
  342. }
  343. type FindRecommendHighQualityUserReply struct {
  344. state protoimpl.MessageState
  345. sizeCache protoimpl.SizeCache
  346. unknownFields protoimpl.UnknownFields
  347. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  348. }
  349. func (x *FindRecommendHighQualityUserReply) Reset() {
  350. *x = FindRecommendHighQualityUserReply{}
  351. if protoimpl.UnsafeEnabled {
  352. mi := &file_user_proto_msgTypes[6]
  353. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  354. ms.StoreMessageInfo(mi)
  355. }
  356. }
  357. func (x *FindRecommendHighQualityUserReply) String() string {
  358. return protoimpl.X.MessageStringOf(x)
  359. }
  360. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  361. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  362. mi := &file_user_proto_msgTypes[6]
  363. if protoimpl.UnsafeEnabled && x != nil {
  364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  365. if ms.LoadMessageInfo() == nil {
  366. ms.StoreMessageInfo(mi)
  367. }
  368. return ms
  369. }
  370. return mi.MessageOf(x)
  371. }
  372. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  373. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  374. return file_user_proto_rawDescGZIP(), []int{6}
  375. }
  376. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  377. if x != nil {
  378. return x.PersonIdList
  379. }
  380. return nil
  381. }
  382. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  383. state protoimpl.MessageState
  384. sizeCache protoimpl.SizeCache
  385. unknownFields protoimpl.UnknownFields
  386. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  387. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  388. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  389. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  390. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  391. }
  392. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  393. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  394. if protoimpl.UnsafeEnabled {
  395. mi := &file_user_proto_msgTypes[7]
  396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  397. ms.StoreMessageInfo(mi)
  398. }
  399. }
  400. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  401. return protoimpl.X.MessageStringOf(x)
  402. }
  403. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  404. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  405. mi := &file_user_proto_msgTypes[7]
  406. if protoimpl.UnsafeEnabled && x != nil {
  407. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  408. if ms.LoadMessageInfo() == nil {
  409. ms.StoreMessageInfo(mi)
  410. }
  411. return ms
  412. }
  413. return mi.MessageOf(x)
  414. }
  415. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  416. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  417. return file_user_proto_rawDescGZIP(), []int{7}
  418. }
  419. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  420. if x != nil {
  421. return x.TodayMatchedNum
  422. }
  423. return 0
  424. }
  425. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  426. if x != nil {
  427. return x.Nickname
  428. }
  429. return ""
  430. }
  431. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  432. if x != nil {
  433. return x.AvatarUrl
  434. }
  435. return ""
  436. }
  437. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  438. if x != nil {
  439. return x.Sex
  440. }
  441. return 0
  442. }
  443. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  444. if x != nil {
  445. return x.Age
  446. }
  447. return 0
  448. }
  449. type GetUserDBMsgFromWebsocketReply struct {
  450. state protoimpl.MessageState
  451. sizeCache protoimpl.SizeCache
  452. unknownFields protoimpl.UnknownFields
  453. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  454. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  455. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  456. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  457. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  458. }
  459. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  460. *x = GetUserDBMsgFromWebsocketReply{}
  461. if protoimpl.UnsafeEnabled {
  462. mi := &file_user_proto_msgTypes[8]
  463. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  464. ms.StoreMessageInfo(mi)
  465. }
  466. }
  467. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  468. return protoimpl.X.MessageStringOf(x)
  469. }
  470. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  471. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  472. mi := &file_user_proto_msgTypes[8]
  473. if protoimpl.UnsafeEnabled && x != nil {
  474. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  475. if ms.LoadMessageInfo() == nil {
  476. ms.StoreMessageInfo(mi)
  477. }
  478. return ms
  479. }
  480. return mi.MessageOf(x)
  481. }
  482. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  483. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  484. return file_user_proto_rawDescGZIP(), []int{8}
  485. }
  486. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  487. if x != nil {
  488. return x.Id
  489. }
  490. return ""
  491. }
  492. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  493. if x != nil {
  494. return x.Sex
  495. }
  496. return 0
  497. }
  498. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  499. if x != nil {
  500. return x.Weight
  501. }
  502. return 0
  503. }
  504. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  505. if x != nil {
  506. return x.WorkingStatus
  507. }
  508. return ""
  509. }
  510. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  511. if x != nil {
  512. return x.TodayMatchedNum
  513. }
  514. return 0
  515. }
  516. type UpdateUserMatchedNumRequest struct {
  517. state protoimpl.MessageState
  518. sizeCache protoimpl.SizeCache
  519. unknownFields protoimpl.UnknownFields
  520. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  521. }
  522. func (x *UpdateUserMatchedNumRequest) Reset() {
  523. *x = UpdateUserMatchedNumRequest{}
  524. if protoimpl.UnsafeEnabled {
  525. mi := &file_user_proto_msgTypes[9]
  526. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  527. ms.StoreMessageInfo(mi)
  528. }
  529. }
  530. func (x *UpdateUserMatchedNumRequest) String() string {
  531. return protoimpl.X.MessageStringOf(x)
  532. }
  533. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  534. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  535. mi := &file_user_proto_msgTypes[9]
  536. if protoimpl.UnsafeEnabled && x != nil {
  537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  538. if ms.LoadMessageInfo() == nil {
  539. ms.StoreMessageInfo(mi)
  540. }
  541. return ms
  542. }
  543. return mi.MessageOf(x)
  544. }
  545. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  546. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  547. return file_user_proto_rawDescGZIP(), []int{9}
  548. }
  549. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  550. if x != nil {
  551. return x.UserId
  552. }
  553. return ""
  554. }
  555. type SendNewMessageUnreadReminderRequest struct {
  556. state protoimpl.MessageState
  557. sizeCache protoimpl.SizeCache
  558. unknownFields protoimpl.UnknownFields
  559. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  560. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  561. }
  562. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  563. *x = SendNewMessageUnreadReminderRequest{}
  564. if protoimpl.UnsafeEnabled {
  565. mi := &file_user_proto_msgTypes[10]
  566. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  567. ms.StoreMessageInfo(mi)
  568. }
  569. }
  570. func (x *SendNewMessageUnreadReminderRequest) String() string {
  571. return protoimpl.X.MessageStringOf(x)
  572. }
  573. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  574. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  575. mi := &file_user_proto_msgTypes[10]
  576. if protoimpl.UnsafeEnabled && x != nil {
  577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  578. if ms.LoadMessageInfo() == nil {
  579. ms.StoreMessageInfo(mi)
  580. }
  581. return ms
  582. }
  583. return mi.MessageOf(x)
  584. }
  585. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  586. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  587. return file_user_proto_rawDescGZIP(), []int{10}
  588. }
  589. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  590. if x != nil {
  591. return x.PersonId
  592. }
  593. return ""
  594. }
  595. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  596. if x != nil {
  597. return x.SendPersonId
  598. }
  599. return ""
  600. }
  601. type SendMsgReduceCreditReply struct {
  602. state protoimpl.MessageState
  603. sizeCache protoimpl.SizeCache
  604. unknownFields protoimpl.UnknownFields
  605. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  606. }
  607. func (x *SendMsgReduceCreditReply) Reset() {
  608. *x = SendMsgReduceCreditReply{}
  609. if protoimpl.UnsafeEnabled {
  610. mi := &file_user_proto_msgTypes[11]
  611. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  612. ms.StoreMessageInfo(mi)
  613. }
  614. }
  615. func (x *SendMsgReduceCreditReply) String() string {
  616. return protoimpl.X.MessageStringOf(x)
  617. }
  618. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  619. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  620. mi := &file_user_proto_msgTypes[11]
  621. if protoimpl.UnsafeEnabled && x != nil {
  622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  623. if ms.LoadMessageInfo() == nil {
  624. ms.StoreMessageInfo(mi)
  625. }
  626. return ms
  627. }
  628. return mi.MessageOf(x)
  629. }
  630. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  631. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  632. return file_user_proto_rawDescGZIP(), []int{11}
  633. }
  634. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  635. if x != nil {
  636. return x.IsSendReminder
  637. }
  638. return false
  639. }
  640. type UserFreeNum struct {
  641. state protoimpl.MessageState
  642. sizeCache protoimpl.SizeCache
  643. unknownFields protoimpl.UnknownFields
  644. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  645. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  646. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  647. }
  648. func (x *UserFreeNum) Reset() {
  649. *x = UserFreeNum{}
  650. if protoimpl.UnsafeEnabled {
  651. mi := &file_user_proto_msgTypes[12]
  652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  653. ms.StoreMessageInfo(mi)
  654. }
  655. }
  656. func (x *UserFreeNum) String() string {
  657. return protoimpl.X.MessageStringOf(x)
  658. }
  659. func (*UserFreeNum) ProtoMessage() {}
  660. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  661. mi := &file_user_proto_msgTypes[12]
  662. if protoimpl.UnsafeEnabled && x != nil {
  663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  664. if ms.LoadMessageInfo() == nil {
  665. ms.StoreMessageInfo(mi)
  666. }
  667. return ms
  668. }
  669. return mi.MessageOf(x)
  670. }
  671. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  672. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  673. return file_user_proto_rawDescGZIP(), []int{12}
  674. }
  675. func (x *UserFreeNum) GetReplyScripNum() int64 {
  676. if x != nil {
  677. return x.ReplyScripNum
  678. }
  679. return 0
  680. }
  681. func (x *UserFreeNum) GetCreateScripNum() int64 {
  682. if x != nil {
  683. return x.CreateScripNum
  684. }
  685. return 0
  686. }
  687. func (x *UserFreeNum) GetMatchingNum() int64 {
  688. if x != nil {
  689. return x.MatchingNum
  690. }
  691. return 0
  692. }
  693. type ReplyScripRequest struct {
  694. state protoimpl.MessageState
  695. sizeCache protoimpl.SizeCache
  696. unknownFields protoimpl.UnknownFields
  697. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  698. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  699. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  700. }
  701. func (x *ReplyScripRequest) Reset() {
  702. *x = ReplyScripRequest{}
  703. if protoimpl.UnsafeEnabled {
  704. mi := &file_user_proto_msgTypes[13]
  705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  706. ms.StoreMessageInfo(mi)
  707. }
  708. }
  709. func (x *ReplyScripRequest) String() string {
  710. return protoimpl.X.MessageStringOf(x)
  711. }
  712. func (*ReplyScripRequest) ProtoMessage() {}
  713. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  714. mi := &file_user_proto_msgTypes[13]
  715. if protoimpl.UnsafeEnabled && x != nil {
  716. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  717. if ms.LoadMessageInfo() == nil {
  718. ms.StoreMessageInfo(mi)
  719. }
  720. return ms
  721. }
  722. return mi.MessageOf(x)
  723. }
  724. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  725. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  726. return file_user_proto_rawDescGZIP(), []int{13}
  727. }
  728. func (x *ReplyScripRequest) GetScripId() int64 {
  729. if x != nil {
  730. return x.ScripId
  731. }
  732. return 0
  733. }
  734. func (x *ReplyScripRequest) GetMessage() *common.Message {
  735. if x != nil {
  736. return x.Message
  737. }
  738. return nil
  739. }
  740. func (x *ReplyScripRequest) GetMsgType() string {
  741. if x != nil {
  742. return x.MsgType
  743. }
  744. return ""
  745. }
  746. type PersonLookScripRequest struct {
  747. state protoimpl.MessageState
  748. sizeCache protoimpl.SizeCache
  749. unknownFields protoimpl.UnknownFields
  750. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  751. }
  752. func (x *PersonLookScripRequest) Reset() {
  753. *x = PersonLookScripRequest{}
  754. if protoimpl.UnsafeEnabled {
  755. mi := &file_user_proto_msgTypes[14]
  756. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  757. ms.StoreMessageInfo(mi)
  758. }
  759. }
  760. func (x *PersonLookScripRequest) String() string {
  761. return protoimpl.X.MessageStringOf(x)
  762. }
  763. func (*PersonLookScripRequest) ProtoMessage() {}
  764. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  765. mi := &file_user_proto_msgTypes[14]
  766. if protoimpl.UnsafeEnabled && x != nil {
  767. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  768. if ms.LoadMessageInfo() == nil {
  769. ms.StoreMessageInfo(mi)
  770. }
  771. return ms
  772. }
  773. return mi.MessageOf(x)
  774. }
  775. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  776. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  777. return file_user_proto_rawDescGZIP(), []int{14}
  778. }
  779. func (x *PersonLookScripRequest) GetScripId() int64 {
  780. if x != nil {
  781. return x.ScripId
  782. }
  783. return 0
  784. }
  785. type UserFindScripRequest struct {
  786. state protoimpl.MessageState
  787. sizeCache protoimpl.SizeCache
  788. unknownFields protoimpl.UnknownFields
  789. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  790. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  791. }
  792. func (x *UserFindScripRequest) Reset() {
  793. *x = UserFindScripRequest{}
  794. if protoimpl.UnsafeEnabled {
  795. mi := &file_user_proto_msgTypes[15]
  796. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  797. ms.StoreMessageInfo(mi)
  798. }
  799. }
  800. func (x *UserFindScripRequest) String() string {
  801. return protoimpl.X.MessageStringOf(x)
  802. }
  803. func (*UserFindScripRequest) ProtoMessage() {}
  804. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  805. mi := &file_user_proto_msgTypes[15]
  806. if protoimpl.UnsafeEnabled && x != nil {
  807. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  808. if ms.LoadMessageInfo() == nil {
  809. ms.StoreMessageInfo(mi)
  810. }
  811. return ms
  812. }
  813. return mi.MessageOf(x)
  814. }
  815. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  816. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  817. return file_user_proto_rawDescGZIP(), []int{15}
  818. }
  819. func (x *UserFindScripRequest) GetNextId() int64 {
  820. if x != nil {
  821. return x.NextId
  822. }
  823. return 0
  824. }
  825. func (x *UserFindScripRequest) GetOffset() int64 {
  826. if x != nil {
  827. return x.Offset
  828. }
  829. return 0
  830. }
  831. type DeleteScripRequest struct {
  832. state protoimpl.MessageState
  833. sizeCache protoimpl.SizeCache
  834. unknownFields protoimpl.UnknownFields
  835. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  836. }
  837. func (x *DeleteScripRequest) Reset() {
  838. *x = DeleteScripRequest{}
  839. if protoimpl.UnsafeEnabled {
  840. mi := &file_user_proto_msgTypes[16]
  841. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  842. ms.StoreMessageInfo(mi)
  843. }
  844. }
  845. func (x *DeleteScripRequest) String() string {
  846. return protoimpl.X.MessageStringOf(x)
  847. }
  848. func (*DeleteScripRequest) ProtoMessage() {}
  849. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  850. mi := &file_user_proto_msgTypes[16]
  851. if protoimpl.UnsafeEnabled && x != nil {
  852. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  853. if ms.LoadMessageInfo() == nil {
  854. ms.StoreMessageInfo(mi)
  855. }
  856. return ms
  857. }
  858. return mi.MessageOf(x)
  859. }
  860. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  861. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  862. return file_user_proto_rawDescGZIP(), []int{16}
  863. }
  864. func (x *DeleteScripRequest) GetScripId() int64 {
  865. if x != nil {
  866. return x.ScripId
  867. }
  868. return 0
  869. }
  870. type CreateScripRequest struct {
  871. state protoimpl.MessageState
  872. sizeCache protoimpl.SizeCache
  873. unknownFields protoimpl.UnknownFields
  874. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  875. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  876. }
  877. func (x *CreateScripRequest) Reset() {
  878. *x = CreateScripRequest{}
  879. if protoimpl.UnsafeEnabled {
  880. mi := &file_user_proto_msgTypes[17]
  881. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  882. ms.StoreMessageInfo(mi)
  883. }
  884. }
  885. func (x *CreateScripRequest) String() string {
  886. return protoimpl.X.MessageStringOf(x)
  887. }
  888. func (*CreateScripRequest) ProtoMessage() {}
  889. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  890. mi := &file_user_proto_msgTypes[17]
  891. if protoimpl.UnsafeEnabled && x != nil {
  892. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  893. if ms.LoadMessageInfo() == nil {
  894. ms.StoreMessageInfo(mi)
  895. }
  896. return ms
  897. }
  898. return mi.MessageOf(x)
  899. }
  900. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  901. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  902. return file_user_proto_rawDescGZIP(), []int{17}
  903. }
  904. func (x *CreateScripRequest) GetText() string {
  905. if x != nil {
  906. return x.Text
  907. }
  908. return ""
  909. }
  910. func (x *CreateScripRequest) GetPictureUrl() string {
  911. if x != nil {
  912. return x.PictureUrl
  913. }
  914. return ""
  915. }
  916. type FindMatchingAvatarAndNumReply struct {
  917. state protoimpl.MessageState
  918. sizeCache protoimpl.SizeCache
  919. unknownFields protoimpl.UnknownFields
  920. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  921. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  922. }
  923. func (x *FindMatchingAvatarAndNumReply) Reset() {
  924. *x = FindMatchingAvatarAndNumReply{}
  925. if protoimpl.UnsafeEnabled {
  926. mi := &file_user_proto_msgTypes[18]
  927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  928. ms.StoreMessageInfo(mi)
  929. }
  930. }
  931. func (x *FindMatchingAvatarAndNumReply) String() string {
  932. return protoimpl.X.MessageStringOf(x)
  933. }
  934. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  935. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  936. mi := &file_user_proto_msgTypes[18]
  937. if protoimpl.UnsafeEnabled && x != nil {
  938. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  939. if ms.LoadMessageInfo() == nil {
  940. ms.StoreMessageInfo(mi)
  941. }
  942. return ms
  943. }
  944. return mi.MessageOf(x)
  945. }
  946. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  947. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  948. return file_user_proto_rawDescGZIP(), []int{18}
  949. }
  950. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  951. if x != nil {
  952. return x.Num
  953. }
  954. return 0
  955. }
  956. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  957. if x != nil {
  958. return x.List
  959. }
  960. return nil
  961. }
  962. type UserRechargeRequest struct {
  963. state protoimpl.MessageState
  964. sizeCache protoimpl.SizeCache
  965. unknownFields protoimpl.UnknownFields
  966. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  967. }
  968. func (x *UserRechargeRequest) Reset() {
  969. *x = UserRechargeRequest{}
  970. if protoimpl.UnsafeEnabled {
  971. mi := &file_user_proto_msgTypes[19]
  972. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  973. ms.StoreMessageInfo(mi)
  974. }
  975. }
  976. func (x *UserRechargeRequest) String() string {
  977. return protoimpl.X.MessageStringOf(x)
  978. }
  979. func (*UserRechargeRequest) ProtoMessage() {}
  980. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  981. mi := &file_user_proto_msgTypes[19]
  982. if protoimpl.UnsafeEnabled && x != nil {
  983. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  984. if ms.LoadMessageInfo() == nil {
  985. ms.StoreMessageInfo(mi)
  986. }
  987. return ms
  988. }
  989. return mi.MessageOf(x)
  990. }
  991. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  992. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  993. return file_user_proto_rawDescGZIP(), []int{19}
  994. }
  995. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  996. if x != nil {
  997. return x.RechargeTemplateId
  998. }
  999. return 0
  1000. }
  1001. type RechargeList struct {
  1002. state protoimpl.MessageState
  1003. sizeCache protoimpl.SizeCache
  1004. unknownFields protoimpl.UnknownFields
  1005. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1006. }
  1007. func (x *RechargeList) Reset() {
  1008. *x = RechargeList{}
  1009. if protoimpl.UnsafeEnabled {
  1010. mi := &file_user_proto_msgTypes[20]
  1011. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1012. ms.StoreMessageInfo(mi)
  1013. }
  1014. }
  1015. func (x *RechargeList) String() string {
  1016. return protoimpl.X.MessageStringOf(x)
  1017. }
  1018. func (*RechargeList) ProtoMessage() {}
  1019. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1020. mi := &file_user_proto_msgTypes[20]
  1021. if protoimpl.UnsafeEnabled && x != nil {
  1022. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1023. if ms.LoadMessageInfo() == nil {
  1024. ms.StoreMessageInfo(mi)
  1025. }
  1026. return ms
  1027. }
  1028. return mi.MessageOf(x)
  1029. }
  1030. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1031. func (*RechargeList) Descriptor() ([]byte, []int) {
  1032. return file_user_proto_rawDescGZIP(), []int{20}
  1033. }
  1034. func (x *RechargeList) GetList() []*RechargeInfo {
  1035. if x != nil {
  1036. return x.List
  1037. }
  1038. return nil
  1039. }
  1040. type RechargeInfo struct {
  1041. state protoimpl.MessageState
  1042. sizeCache protoimpl.SizeCache
  1043. unknownFields protoimpl.UnknownFields
  1044. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1045. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1046. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1047. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1048. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1049. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1050. }
  1051. func (x *RechargeInfo) Reset() {
  1052. *x = RechargeInfo{}
  1053. if protoimpl.UnsafeEnabled {
  1054. mi := &file_user_proto_msgTypes[21]
  1055. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1056. ms.StoreMessageInfo(mi)
  1057. }
  1058. }
  1059. func (x *RechargeInfo) String() string {
  1060. return protoimpl.X.MessageStringOf(x)
  1061. }
  1062. func (*RechargeInfo) ProtoMessage() {}
  1063. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  1064. mi := &file_user_proto_msgTypes[21]
  1065. if protoimpl.UnsafeEnabled && x != nil {
  1066. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1067. if ms.LoadMessageInfo() == nil {
  1068. ms.StoreMessageInfo(mi)
  1069. }
  1070. return ms
  1071. }
  1072. return mi.MessageOf(x)
  1073. }
  1074. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  1075. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  1076. return file_user_proto_rawDescGZIP(), []int{21}
  1077. }
  1078. func (x *RechargeInfo) GetId() int64 {
  1079. if x != nil {
  1080. return x.Id
  1081. }
  1082. return 0
  1083. }
  1084. func (x *RechargeInfo) GetPrice() int64 {
  1085. if x != nil {
  1086. return x.Price
  1087. }
  1088. return 0
  1089. }
  1090. func (x *RechargeInfo) GetCredit() int64 {
  1091. if x != nil {
  1092. return x.Credit
  1093. }
  1094. return 0
  1095. }
  1096. func (x *RechargeInfo) GetGiveCredit() int64 {
  1097. if x != nil {
  1098. return x.GiveCredit
  1099. }
  1100. return 0
  1101. }
  1102. func (x *RechargeInfo) GetDescription() string {
  1103. if x != nil {
  1104. return x.Description
  1105. }
  1106. return ""
  1107. }
  1108. func (x *RechargeInfo) GetTitle() string {
  1109. if x != nil {
  1110. return x.Title
  1111. }
  1112. return ""
  1113. }
  1114. type InformationStatus struct {
  1115. state protoimpl.MessageState
  1116. sizeCache protoimpl.SizeCache
  1117. unknownFields protoimpl.UnknownFields
  1118. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  1119. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  1120. }
  1121. func (x *InformationStatus) Reset() {
  1122. *x = InformationStatus{}
  1123. if protoimpl.UnsafeEnabled {
  1124. mi := &file_user_proto_msgTypes[22]
  1125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1126. ms.StoreMessageInfo(mi)
  1127. }
  1128. }
  1129. func (x *InformationStatus) String() string {
  1130. return protoimpl.X.MessageStringOf(x)
  1131. }
  1132. func (*InformationStatus) ProtoMessage() {}
  1133. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  1134. mi := &file_user_proto_msgTypes[22]
  1135. if protoimpl.UnsafeEnabled && x != nil {
  1136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1137. if ms.LoadMessageInfo() == nil {
  1138. ms.StoreMessageInfo(mi)
  1139. }
  1140. return ms
  1141. }
  1142. return mi.MessageOf(x)
  1143. }
  1144. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  1145. func (*InformationStatus) Descriptor() ([]byte, []int) {
  1146. return file_user_proto_rawDescGZIP(), []int{22}
  1147. }
  1148. func (x *InformationStatus) GetIsFinishInformation() bool {
  1149. if x != nil {
  1150. return x.IsFinishInformation
  1151. }
  1152. return false
  1153. }
  1154. func (x *InformationStatus) GetIsGetAward() bool {
  1155. if x != nil {
  1156. return x.IsGetAward
  1157. }
  1158. return false
  1159. }
  1160. type UserBalance struct {
  1161. state protoimpl.MessageState
  1162. sizeCache protoimpl.SizeCache
  1163. unknownFields protoimpl.UnknownFields
  1164. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1165. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  1166. }
  1167. func (x *UserBalance) Reset() {
  1168. *x = UserBalance{}
  1169. if protoimpl.UnsafeEnabled {
  1170. mi := &file_user_proto_msgTypes[23]
  1171. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1172. ms.StoreMessageInfo(mi)
  1173. }
  1174. }
  1175. func (x *UserBalance) String() string {
  1176. return protoimpl.X.MessageStringOf(x)
  1177. }
  1178. func (*UserBalance) ProtoMessage() {}
  1179. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  1180. mi := &file_user_proto_msgTypes[23]
  1181. if protoimpl.UnsafeEnabled && x != nil {
  1182. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1183. if ms.LoadMessageInfo() == nil {
  1184. ms.StoreMessageInfo(mi)
  1185. }
  1186. return ms
  1187. }
  1188. return mi.MessageOf(x)
  1189. }
  1190. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  1191. func (*UserBalance) Descriptor() ([]byte, []int) {
  1192. return file_user_proto_rawDescGZIP(), []int{23}
  1193. }
  1194. func (x *UserBalance) GetId() string {
  1195. if x != nil {
  1196. return x.Id
  1197. }
  1198. return ""
  1199. }
  1200. func (x *UserBalance) GetCredit() int64 {
  1201. if x != nil {
  1202. return x.Credit
  1203. }
  1204. return 0
  1205. }
  1206. type UserFindChatListReply struct {
  1207. state protoimpl.MessageState
  1208. sizeCache protoimpl.SizeCache
  1209. unknownFields protoimpl.UnknownFields
  1210. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1211. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1212. }
  1213. func (x *UserFindChatListReply) Reset() {
  1214. *x = UserFindChatListReply{}
  1215. if protoimpl.UnsafeEnabled {
  1216. mi := &file_user_proto_msgTypes[24]
  1217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1218. ms.StoreMessageInfo(mi)
  1219. }
  1220. }
  1221. func (x *UserFindChatListReply) String() string {
  1222. return protoimpl.X.MessageStringOf(x)
  1223. }
  1224. func (*UserFindChatListReply) ProtoMessage() {}
  1225. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  1226. mi := &file_user_proto_msgTypes[24]
  1227. if protoimpl.UnsafeEnabled && x != nil {
  1228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1229. if ms.LoadMessageInfo() == nil {
  1230. ms.StoreMessageInfo(mi)
  1231. }
  1232. return ms
  1233. }
  1234. return mi.MessageOf(x)
  1235. }
  1236. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  1237. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  1238. return file_user_proto_rawDescGZIP(), []int{24}
  1239. }
  1240. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  1241. if x != nil {
  1242. return x.List
  1243. }
  1244. return nil
  1245. }
  1246. func (x *UserFindChatListReply) GetNextId() int64 {
  1247. if x != nil {
  1248. return x.NextId
  1249. }
  1250. return 0
  1251. }
  1252. type UserChatInfo struct {
  1253. state protoimpl.MessageState
  1254. sizeCache protoimpl.SizeCache
  1255. unknownFields protoimpl.UnknownFields
  1256. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  1257. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  1258. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  1259. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  1260. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  1261. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  1262. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1263. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1264. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  1265. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  1266. }
  1267. func (x *UserChatInfo) Reset() {
  1268. *x = UserChatInfo{}
  1269. if protoimpl.UnsafeEnabled {
  1270. mi := &file_user_proto_msgTypes[25]
  1271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1272. ms.StoreMessageInfo(mi)
  1273. }
  1274. }
  1275. func (x *UserChatInfo) String() string {
  1276. return protoimpl.X.MessageStringOf(x)
  1277. }
  1278. func (*UserChatInfo) ProtoMessage() {}
  1279. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  1280. mi := &file_user_proto_msgTypes[25]
  1281. if protoimpl.UnsafeEnabled && x != nil {
  1282. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1283. if ms.LoadMessageInfo() == nil {
  1284. ms.StoreMessageInfo(mi)
  1285. }
  1286. return ms
  1287. }
  1288. return mi.MessageOf(x)
  1289. }
  1290. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  1291. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  1292. return file_user_proto_rawDescGZIP(), []int{25}
  1293. }
  1294. func (x *UserChatInfo) GetPersonId() string {
  1295. if x != nil {
  1296. return x.PersonId
  1297. }
  1298. return ""
  1299. }
  1300. func (x *UserChatInfo) GetUnreadNum() int64 {
  1301. if x != nil {
  1302. return x.UnreadNum
  1303. }
  1304. return 0
  1305. }
  1306. func (x *UserChatInfo) GetLastContent() string {
  1307. if x != nil {
  1308. return x.LastContent
  1309. }
  1310. return ""
  1311. }
  1312. func (x *UserChatInfo) GetLastTime() int64 {
  1313. if x != nil {
  1314. return x.LastTime
  1315. }
  1316. return 0
  1317. }
  1318. func (x *UserChatInfo) GetLikeability() int64 {
  1319. if x != nil {
  1320. return x.Likeability
  1321. }
  1322. return 0
  1323. }
  1324. func (x *UserChatInfo) GetSex() int64 {
  1325. if x != nil {
  1326. return x.Sex
  1327. }
  1328. return 0
  1329. }
  1330. func (x *UserChatInfo) GetAvatarUrl() string {
  1331. if x != nil {
  1332. return x.AvatarUrl
  1333. }
  1334. return ""
  1335. }
  1336. func (x *UserChatInfo) GetNickname() string {
  1337. if x != nil {
  1338. return x.Nickname
  1339. }
  1340. return ""
  1341. }
  1342. func (x *UserChatInfo) GetAge() int64 {
  1343. if x != nil {
  1344. return x.Age
  1345. }
  1346. return 0
  1347. }
  1348. func (x *UserChatInfo) GetRoomId() int64 {
  1349. if x != nil {
  1350. return x.RoomId
  1351. }
  1352. return 0
  1353. }
  1354. type UserInfo struct {
  1355. state protoimpl.MessageState
  1356. sizeCache protoimpl.SizeCache
  1357. unknownFields protoimpl.UnknownFields
  1358. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1359. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1360. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1361. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  1362. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1363. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  1364. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  1365. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  1366. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  1367. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1368. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  1369. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  1370. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  1371. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  1372. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  1373. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  1374. }
  1375. func (x *UserInfo) Reset() {
  1376. *x = UserInfo{}
  1377. if protoimpl.UnsafeEnabled {
  1378. mi := &file_user_proto_msgTypes[26]
  1379. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1380. ms.StoreMessageInfo(mi)
  1381. }
  1382. }
  1383. func (x *UserInfo) String() string {
  1384. return protoimpl.X.MessageStringOf(x)
  1385. }
  1386. func (*UserInfo) ProtoMessage() {}
  1387. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  1388. mi := &file_user_proto_msgTypes[26]
  1389. if protoimpl.UnsafeEnabled && x != nil {
  1390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1391. if ms.LoadMessageInfo() == nil {
  1392. ms.StoreMessageInfo(mi)
  1393. }
  1394. return ms
  1395. }
  1396. return mi.MessageOf(x)
  1397. }
  1398. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  1399. func (*UserInfo) Descriptor() ([]byte, []int) {
  1400. return file_user_proto_rawDescGZIP(), []int{26}
  1401. }
  1402. func (x *UserInfo) GetId() string {
  1403. if x != nil {
  1404. return x.Id
  1405. }
  1406. return ""
  1407. }
  1408. func (x *UserInfo) GetNickname() string {
  1409. if x != nil {
  1410. return x.Nickname
  1411. }
  1412. return ""
  1413. }
  1414. func (x *UserInfo) GetAvatarUrl() string {
  1415. if x != nil {
  1416. return x.AvatarUrl
  1417. }
  1418. return ""
  1419. }
  1420. func (x *UserInfo) GetAge() int64 {
  1421. if x != nil {
  1422. return x.Age
  1423. }
  1424. return 0
  1425. }
  1426. func (x *UserInfo) GetSex() int64 {
  1427. if x != nil {
  1428. return x.Sex
  1429. }
  1430. return 0
  1431. }
  1432. func (x *UserInfo) GetConstellation() string {
  1433. if x != nil {
  1434. return x.Constellation
  1435. }
  1436. return ""
  1437. }
  1438. func (x *UserInfo) GetCredit() int64 {
  1439. if x != nil {
  1440. return x.Credit
  1441. }
  1442. return 0
  1443. }
  1444. func (x *UserInfo) GetTagList() []int64 {
  1445. if x != nil {
  1446. return x.TagList
  1447. }
  1448. return nil
  1449. }
  1450. func (x *UserInfo) GetSignature() string {
  1451. if x != nil {
  1452. return x.Signature
  1453. }
  1454. return ""
  1455. }
  1456. func (x *UserInfo) GetIntroduceVoice() string {
  1457. if x != nil {
  1458. return x.IntroduceVoice
  1459. }
  1460. return ""
  1461. }
  1462. func (x *UserInfo) GetProvince() string {
  1463. if x != nil {
  1464. return x.Province
  1465. }
  1466. return ""
  1467. }
  1468. func (x *UserInfo) GetCity() string {
  1469. if x != nil {
  1470. return x.City
  1471. }
  1472. return ""
  1473. }
  1474. func (x *UserInfo) GetArea() string {
  1475. if x != nil {
  1476. return x.Area
  1477. }
  1478. return ""
  1479. }
  1480. func (x *UserInfo) GetUserId() int64 {
  1481. if x != nil {
  1482. return x.UserId
  1483. }
  1484. return 0
  1485. }
  1486. func (x *UserInfo) GetIsBlack() bool {
  1487. if x != nil {
  1488. return x.IsBlack
  1489. }
  1490. return false
  1491. }
  1492. func (x *UserInfo) GetIsRegister() bool {
  1493. if x != nil {
  1494. return x.IsRegister
  1495. }
  1496. return false
  1497. }
  1498. type KeyRequest struct {
  1499. state protoimpl.MessageState
  1500. sizeCache protoimpl.SizeCache
  1501. unknownFields protoimpl.UnknownFields
  1502. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  1503. }
  1504. func (x *KeyRequest) Reset() {
  1505. *x = KeyRequest{}
  1506. if protoimpl.UnsafeEnabled {
  1507. mi := &file_user_proto_msgTypes[27]
  1508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1509. ms.StoreMessageInfo(mi)
  1510. }
  1511. }
  1512. func (x *KeyRequest) String() string {
  1513. return protoimpl.X.MessageStringOf(x)
  1514. }
  1515. func (*KeyRequest) ProtoMessage() {}
  1516. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  1517. mi := &file_user_proto_msgTypes[27]
  1518. if protoimpl.UnsafeEnabled && x != nil {
  1519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1520. if ms.LoadMessageInfo() == nil {
  1521. ms.StoreMessageInfo(mi)
  1522. }
  1523. return ms
  1524. }
  1525. return mi.MessageOf(x)
  1526. }
  1527. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  1528. func (*KeyRequest) Descriptor() ([]byte, []int) {
  1529. return file_user_proto_rawDescGZIP(), []int{27}
  1530. }
  1531. func (x *KeyRequest) GetKey() string {
  1532. if x != nil {
  1533. return x.Key
  1534. }
  1535. return ""
  1536. }
  1537. type CreatePayRequest struct {
  1538. state protoimpl.MessageState
  1539. sizeCache protoimpl.SizeCache
  1540. unknownFields protoimpl.UnknownFields
  1541. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  1542. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  1543. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  1544. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  1545. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  1546. }
  1547. func (x *CreatePayRequest) Reset() {
  1548. *x = CreatePayRequest{}
  1549. if protoimpl.UnsafeEnabled {
  1550. mi := &file_user_proto_msgTypes[28]
  1551. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1552. ms.StoreMessageInfo(mi)
  1553. }
  1554. }
  1555. func (x *CreatePayRequest) String() string {
  1556. return protoimpl.X.MessageStringOf(x)
  1557. }
  1558. func (*CreatePayRequest) ProtoMessage() {}
  1559. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  1560. mi := &file_user_proto_msgTypes[28]
  1561. if protoimpl.UnsafeEnabled && x != nil {
  1562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1563. if ms.LoadMessageInfo() == nil {
  1564. ms.StoreMessageInfo(mi)
  1565. }
  1566. return ms
  1567. }
  1568. return mi.MessageOf(x)
  1569. }
  1570. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  1571. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  1572. return file_user_proto_rawDescGZIP(), []int{28}
  1573. }
  1574. func (x *CreatePayRequest) GetMoney() int64 {
  1575. if x != nil {
  1576. return x.Money
  1577. }
  1578. return 0
  1579. }
  1580. func (x *CreatePayRequest) GetType() string {
  1581. if x != nil {
  1582. return x.Type
  1583. }
  1584. return ""
  1585. }
  1586. func (x *CreatePayRequest) GetOpenId() string {
  1587. if x != nil {
  1588. return x.OpenId
  1589. }
  1590. return ""
  1591. }
  1592. func (x *CreatePayRequest) GetDescription() string {
  1593. if x != nil {
  1594. return x.Description
  1595. }
  1596. return ""
  1597. }
  1598. func (x *CreatePayRequest) GetAttach() string {
  1599. if x != nil {
  1600. return x.Attach
  1601. }
  1602. return ""
  1603. }
  1604. type PayInfo struct {
  1605. state protoimpl.MessageState
  1606. sizeCache protoimpl.SizeCache
  1607. unknownFields protoimpl.UnknownFields
  1608. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  1609. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  1610. }
  1611. func (x *PayInfo) Reset() {
  1612. *x = PayInfo{}
  1613. if protoimpl.UnsafeEnabled {
  1614. mi := &file_user_proto_msgTypes[29]
  1615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1616. ms.StoreMessageInfo(mi)
  1617. }
  1618. }
  1619. func (x *PayInfo) String() string {
  1620. return protoimpl.X.MessageStringOf(x)
  1621. }
  1622. func (*PayInfo) ProtoMessage() {}
  1623. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  1624. mi := &file_user_proto_msgTypes[29]
  1625. if protoimpl.UnsafeEnabled && x != nil {
  1626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1627. if ms.LoadMessageInfo() == nil {
  1628. ms.StoreMessageInfo(mi)
  1629. }
  1630. return ms
  1631. }
  1632. return mi.MessageOf(x)
  1633. }
  1634. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  1635. func (*PayInfo) Descriptor() ([]byte, []int) {
  1636. return file_user_proto_rawDescGZIP(), []int{29}
  1637. }
  1638. func (x *PayInfo) GetPayInfo() *structpb.Value {
  1639. if x != nil {
  1640. return x.PayInfo
  1641. }
  1642. return nil
  1643. }
  1644. func (x *PayInfo) GetOrderId() int64 {
  1645. if x != nil {
  1646. return x.OrderId
  1647. }
  1648. return 0
  1649. }
  1650. type PayOrderInfo struct {
  1651. state protoimpl.MessageState
  1652. sizeCache protoimpl.SizeCache
  1653. unknownFields protoimpl.UnknownFields
  1654. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  1655. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  1656. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  1657. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  1658. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  1659. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  1660. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  1661. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  1662. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  1663. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1664. }
  1665. func (x *PayOrderInfo) Reset() {
  1666. *x = PayOrderInfo{}
  1667. if protoimpl.UnsafeEnabled {
  1668. mi := &file_user_proto_msgTypes[30]
  1669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1670. ms.StoreMessageInfo(mi)
  1671. }
  1672. }
  1673. func (x *PayOrderInfo) String() string {
  1674. return protoimpl.X.MessageStringOf(x)
  1675. }
  1676. func (*PayOrderInfo) ProtoMessage() {}
  1677. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  1678. mi := &file_user_proto_msgTypes[30]
  1679. if protoimpl.UnsafeEnabled && x != nil {
  1680. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1681. if ms.LoadMessageInfo() == nil {
  1682. ms.StoreMessageInfo(mi)
  1683. }
  1684. return ms
  1685. }
  1686. return mi.MessageOf(x)
  1687. }
  1688. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  1689. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  1690. return file_user_proto_rawDescGZIP(), []int{30}
  1691. }
  1692. func (x *PayOrderInfo) GetUserID() string {
  1693. if x != nil {
  1694. return x.UserID
  1695. }
  1696. return ""
  1697. }
  1698. func (x *PayOrderInfo) GetOrderID() int64 {
  1699. if x != nil {
  1700. return x.OrderID
  1701. }
  1702. return 0
  1703. }
  1704. func (x *PayOrderInfo) GetMoney() int64 {
  1705. if x != nil {
  1706. return x.Money
  1707. }
  1708. return 0
  1709. }
  1710. func (x *PayOrderInfo) GetType() string {
  1711. if x != nil {
  1712. return x.Type
  1713. }
  1714. return ""
  1715. }
  1716. func (x *PayOrderInfo) GetTransactionID() string {
  1717. if x != nil {
  1718. return x.TransactionID
  1719. }
  1720. return ""
  1721. }
  1722. func (x *PayOrderInfo) GetOpenId() string {
  1723. if x != nil {
  1724. return x.OpenId
  1725. }
  1726. return ""
  1727. }
  1728. func (x *PayOrderInfo) GetDescription() string {
  1729. if x != nil {
  1730. return x.Description
  1731. }
  1732. return ""
  1733. }
  1734. func (x *PayOrderInfo) GetStatus() string {
  1735. if x != nil {
  1736. return x.Status
  1737. }
  1738. return ""
  1739. }
  1740. func (x *PayOrderInfo) GetPayTime() int64 {
  1741. if x != nil {
  1742. return x.PayTime
  1743. }
  1744. return 0
  1745. }
  1746. func (x *PayOrderInfo) GetCreateTime() int64 {
  1747. if x != nil {
  1748. return x.CreateTime
  1749. }
  1750. return 0
  1751. }
  1752. type PayOrderList struct {
  1753. state protoimpl.MessageState
  1754. sizeCache protoimpl.SizeCache
  1755. unknownFields protoimpl.UnknownFields
  1756. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1757. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1758. }
  1759. func (x *PayOrderList) Reset() {
  1760. *x = PayOrderList{}
  1761. if protoimpl.UnsafeEnabled {
  1762. mi := &file_user_proto_msgTypes[31]
  1763. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1764. ms.StoreMessageInfo(mi)
  1765. }
  1766. }
  1767. func (x *PayOrderList) String() string {
  1768. return protoimpl.X.MessageStringOf(x)
  1769. }
  1770. func (*PayOrderList) ProtoMessage() {}
  1771. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  1772. mi := &file_user_proto_msgTypes[31]
  1773. if protoimpl.UnsafeEnabled && x != nil {
  1774. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1775. if ms.LoadMessageInfo() == nil {
  1776. ms.StoreMessageInfo(mi)
  1777. }
  1778. return ms
  1779. }
  1780. return mi.MessageOf(x)
  1781. }
  1782. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  1783. func (*PayOrderList) Descriptor() ([]byte, []int) {
  1784. return file_user_proto_rawDescGZIP(), []int{31}
  1785. }
  1786. func (x *PayOrderList) GetList() []*PayOrderInfo {
  1787. if x != nil {
  1788. return x.List
  1789. }
  1790. return nil
  1791. }
  1792. func (x *PayOrderList) GetNextId() int64 {
  1793. if x != nil {
  1794. return x.NextId
  1795. }
  1796. return 0
  1797. }
  1798. type FindPayOrderListRequest struct {
  1799. state protoimpl.MessageState
  1800. sizeCache protoimpl.SizeCache
  1801. unknownFields protoimpl.UnknownFields
  1802. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1803. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1804. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  1805. }
  1806. func (x *FindPayOrderListRequest) Reset() {
  1807. *x = FindPayOrderListRequest{}
  1808. if protoimpl.UnsafeEnabled {
  1809. mi := &file_user_proto_msgTypes[32]
  1810. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1811. ms.StoreMessageInfo(mi)
  1812. }
  1813. }
  1814. func (x *FindPayOrderListRequest) String() string {
  1815. return protoimpl.X.MessageStringOf(x)
  1816. }
  1817. func (*FindPayOrderListRequest) ProtoMessage() {}
  1818. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  1819. mi := &file_user_proto_msgTypes[32]
  1820. if protoimpl.UnsafeEnabled && x != nil {
  1821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1822. if ms.LoadMessageInfo() == nil {
  1823. ms.StoreMessageInfo(mi)
  1824. }
  1825. return ms
  1826. }
  1827. return mi.MessageOf(x)
  1828. }
  1829. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  1830. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  1831. return file_user_proto_rawDescGZIP(), []int{32}
  1832. }
  1833. func (x *FindPayOrderListRequest) GetNextId() int64 {
  1834. if x != nil {
  1835. return x.NextId
  1836. }
  1837. return 0
  1838. }
  1839. func (x *FindPayOrderListRequest) GetOffset() int64 {
  1840. if x != nil {
  1841. return x.Offset
  1842. }
  1843. return 0
  1844. }
  1845. func (x *FindPayOrderListRequest) GetStatus() string {
  1846. if x != nil {
  1847. return x.Status
  1848. }
  1849. return ""
  1850. }
  1851. type PayCallbackReply struct {
  1852. state protoimpl.MessageState
  1853. sizeCache protoimpl.SizeCache
  1854. unknownFields protoimpl.UnknownFields
  1855. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  1856. }
  1857. func (x *PayCallbackReply) Reset() {
  1858. *x = PayCallbackReply{}
  1859. if protoimpl.UnsafeEnabled {
  1860. mi := &file_user_proto_msgTypes[33]
  1861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1862. ms.StoreMessageInfo(mi)
  1863. }
  1864. }
  1865. func (x *PayCallbackReply) String() string {
  1866. return protoimpl.X.MessageStringOf(x)
  1867. }
  1868. func (*PayCallbackReply) ProtoMessage() {}
  1869. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  1870. mi := &file_user_proto_msgTypes[33]
  1871. if protoimpl.UnsafeEnabled && x != nil {
  1872. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1873. if ms.LoadMessageInfo() == nil {
  1874. ms.StoreMessageInfo(mi)
  1875. }
  1876. return ms
  1877. }
  1878. return mi.MessageOf(x)
  1879. }
  1880. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  1881. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  1882. return file_user_proto_rawDescGZIP(), []int{33}
  1883. }
  1884. func (x *PayCallbackReply) GetResult() []byte {
  1885. if x != nil {
  1886. return x.Result
  1887. }
  1888. return nil
  1889. }
  1890. var File_user_proto protoreflect.FileDescriptor
  1891. var file_user_proto_rawDesc = []byte{
  1892. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1893. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  1894. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  1895. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1896. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1897. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1898. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1899. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  1900. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1901. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  1902. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  1903. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x75,
  1904. 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  1905. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01,
  1906. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07,
  1907. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e,
  1908. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1909. 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d,
  1910. 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73,
  1911. 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x90, 0x01, 0x0a, 0x28, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  1912. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c,
  1913. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  1914. 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1915. 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  1916. 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  1917. 0x7a, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1918. 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  1919. 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20,
  1920. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x64, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61,
  1921. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65,
  1922. 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  1923. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  1924. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20,
  1925. 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c,
  1926. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x5b,
  1927. 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67,
  1928. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  1929. 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x01,
  1930. 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a,
  1931. 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
  1932. 0x52, 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x22, 0x4b, 0x0a, 0x19, 0x47,
  1933. 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44,
  1934. 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  1935. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65,
  1936. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70,
  1937. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64,
  1938. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61,
  1939. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1940. 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75,
  1941. 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1942. 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  1943. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22,
  1944. 0x47, 0x0a, 0x21, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  1945. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52,
  1946. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  1947. 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73,
  1948. 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xb3, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64,
  1949. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75,
  1950. 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73,
  1951. 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d,
  1952. 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1953. 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d,
  1954. 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  1955. 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  1956. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1957. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1958. 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03,
  1959. 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x22, 0xaa,
  1960. 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46,
  1961. 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1962. 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  1963. 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1964. 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03, 0x20,
  1965. 0x01, 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77,
  1966. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01,
  1967. 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75,
  1968. 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  1969. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61,
  1970. 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x35, 0x0a, 0x1b, 0x55,
  1971. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64,
  1972. 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  1973. 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  1974. 0x49, 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73,
  1975. 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  1976. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  1977. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  1978. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72,
  1979. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x65, 0x6e,
  1980. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18, 0x53, 0x65, 0x6e,
  1981. 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  1982. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52,
  1983. 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69,
  1984. 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x7d, 0x0a,
  1985. 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d,
  1986. 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20,
  1987. 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e,
  1988. 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  1989. 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61,
  1990. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61,
  1991. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1992. 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a, 0x11,
  1993. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1994. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  1995. 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d,
  1996. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61,
  1997. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1998. 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73,
  1999. 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67,
  2000. 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f,
  2001. 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  2002. 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2003. 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72,
  2004. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2005. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2006. 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
  2007. 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  2008. 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2009. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49,
  2010. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64,
  2011. 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2012. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01,
  2013. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69,
  2014. 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2015. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x1d, 0x46, 0x69,
  2016. 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  2017. 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e,
  2018. 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a,
  2019. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73,
  2020. 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  2021. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68,
  2022. 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01,
  2023. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65,
  2024. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68,
  2025. 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2026. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2027. 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  2028. 0x6c, 0x69, 0x73, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  2029. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2030. 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02,
  2031. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63,
  2032. 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65,
  2033. 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69,
  2034. 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65,
  2035. 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  2036. 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  2037. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06,
  2038. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x65, 0x0a, 0x11, 0x49,
  2039. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2040. 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f,
  2041. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69,
  2042. 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  2043. 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64,
  2044. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61,
  2045. 0x72, 0x64, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  2046. 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  2047. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  2048. 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65,
  2049. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2050. 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  2051. 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2052. 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16,
  2053. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2054. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x43,
  2055. 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  2056. 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f,
  2057. 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
  2058. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75,
  2059. 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  2060. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74,
  2061. 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18,
  2062. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12,
  2063. 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06,
  2064. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  2065. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  2066. 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  2067. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  2068. 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20,
  2069. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a,
  2070. 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12,
  2071. 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52,
  2072. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xac, 0x03, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72,
  2073. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2074. 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  2075. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  2076. 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20,
  2077. 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10,
  2078. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  2079. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  2080. 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74,
  2081. 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74,
  2082. 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64,
  2083. 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  2084. 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28,
  2085. 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69,
  2086. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  2087. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  2088. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  2089. 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  2090. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01,
  2091. 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04,
  2092. 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79,
  2093. 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2094. 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e,
  2095. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07,
  2096. 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69,
  2097. 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69,
  2098. 0x73, 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65,
  2099. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71,
  2100. 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  2101. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74,
  2102. 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d,
  2103. 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65,
  2104. 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2105. 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18,
  2106. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a,
  2107. 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  2108. 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  2109. 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  2110. 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e,
  2111. 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
  2112. 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2113. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79,
  2114. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18,
  2115. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c,
  2116. 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  2117. 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2118. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72,
  2119. 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49,
  2120. 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2121. 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  2122. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54,
  2123. 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01,
  2124. 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  2125. 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
  2126. 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73,
  2127. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  2128. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73,
  2129. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61,
  2130. 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a,
  2131. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  2132. 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28,
  2133. 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a,
  2134. 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a,
  2135. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70,
  2136. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  2137. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  2138. 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  2139. 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65,
  2140. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  2141. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
  2142. 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
  2143. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06,
  2144. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74,
  2145. 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62,
  2146. 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
  2147. 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
  2148. 0x32, 0xce, 0x54, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74,
  2149. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2150. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2151. 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2152. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61,
  2153. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12,
  2154. 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65,
  2155. 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65,
  2156. 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  2157. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2158. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93,
  2159. 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f,
  2160. 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68,
  2161. 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61,
  2162. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50,
  2163. 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2164. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2165. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22,
  2166. 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f,
  2167. 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61,
  2168. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2169. 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55,
  2170. 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2171. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2172. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2173. 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2174. 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  2175. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61,
  2176. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d,
  2177. 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72,
  2178. 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61,
  2179. 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f,
  2180. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  2181. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  2182. 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55,
  2183. 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2184. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2185. 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  2186. 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2187. 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c,
  2188. 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47,
  2189. 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  2190. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  2191. 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2192. 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2193. 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d,
  2194. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50,
  2195. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f,
  2196. 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2197. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61,
  2198. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64,
  2199. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4,
  2200. 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e,
  2201. 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f,
  2202. 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2203. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  2204. 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  2205. 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c,
  2206. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18,
  2207. 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  2208. 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f,
  2209. 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2210. 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2211. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73,
  2212. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f,
  2213. 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e,
  2214. 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61,
  2215. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69,
  2216. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18,
  2217. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c,
  2218. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17,
  2219. 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  2220. 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  2221. 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2222. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32,
  2223. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2224. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65,
  2225. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82,
  2226. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2227. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2228. 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65,
  2229. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b,
  2230. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  2231. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70,
  2232. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2233. 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3,
  2234. 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2235. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e,
  2236. 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53,
  2237. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2238. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  2239. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61,
  2240. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  2241. 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82,
  2242. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2243. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a,
  2244. 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  2245. 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2246. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  2247. 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2248. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  2249. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2250. 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2251. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a,
  2252. 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  2253. 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2254. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  2255. 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2256. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  2257. 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69,
  2258. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f,
  2259. 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2260. 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2261. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2262. 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73,
  2263. 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61,
  2264. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01,
  2265. 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54,
  2266. 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2267. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61,
  2268. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69,
  2269. 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69,
  2270. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f,
  2271. 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2272. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2273. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f,
  2274. 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  2275. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69,
  2276. 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f,
  2277. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f,
  2278. 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  2279. 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2280. 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70,
  2281. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54,
  2282. 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22,
  2283. 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  2284. 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75,
  2285. 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73,
  2286. 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2287. 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65,
  2288. 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  2289. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82,
  2290. 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2291. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64,
  2292. 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d,
  2293. 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2294. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19,
  2295. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65,
  2296. 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2297. 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e,
  2298. 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2299. 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61,
  2300. 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2301. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70,
  2302. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72,
  2303. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f,
  2304. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61,
  2305. 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  2306. 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  2307. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2308. 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2309. 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24,
  2310. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2311. 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c,
  2312. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65,
  2313. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2314. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2315. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2316. 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2317. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a,
  2318. 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  2319. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  2320. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2321. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4,
  2322. 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75,
  2323. 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f,
  2324. 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2325. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2326. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2327. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2328. 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70,
  2329. 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  2330. 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61,
  2331. 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2332. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2333. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53,
  2334. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70,
  2335. 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  2336. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61,
  2337. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64,
  2338. 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24,
  2339. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61,
  2340. 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71,
  2341. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2342. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3,
  2343. 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2344. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74,
  2345. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63,
  2346. 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43,
  2347. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2348. 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  2349. 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16,
  2350. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2351. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c,
  2352. 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2353. 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2354. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2355. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21,
  2356. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2357. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01,
  2358. 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  2359. 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2360. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2361. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63,
  2362. 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e,
  2363. 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69,
  2364. 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d,
  2365. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70,
  2366. 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  2367. 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  2368. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69,
  2369. 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a,
  2370. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2371. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a,
  2372. 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63,
  2373. 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  2374. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  2375. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2376. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4,
  2377. 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  2378. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2379. 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2380. 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2381. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53,
  2382. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2383. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2384. 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  2385. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f,
  2386. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c,
  2387. 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  2388. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2389. 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2390. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93,
  2391. 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63,
  2392. 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a,
  2393. 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53,
  2394. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2395. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2396. 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  2397. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82,
  2398. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2399. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12,
  2400. 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61,
  2401. 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  2402. 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2403. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2404. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  2405. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c,
  2406. 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2407. 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e,
  2408. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2409. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2410. 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2411. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2412. 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e,
  2413. 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2414. 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61,
  2415. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2416. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2417. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82,
  2418. 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2419. 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a,
  2420. 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e,
  2421. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50,
  2422. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69,
  2423. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b,
  2424. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2425. 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2426. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a,
  2427. 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73,
  2428. 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  2429. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24,
  2430. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  2431. 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2432. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61,
  2433. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b,
  2434. 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74,
  2435. 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2436. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71,
  2437. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2438. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3,
  2439. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2440. 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a,
  2441. 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2442. 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12,
  2443. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72,
  2444. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70,
  2445. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
  2446. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2447. 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
  2448. 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68,
  2449. 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70,
  2450. 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2451. 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70,
  2452. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2453. 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
  2454. 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49,
  2455. 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  2456. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e,
  2457. 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f,
  2458. 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2459. 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2460. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2461. 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2462. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65,
  2463. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93,
  2464. 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75,
  2465. 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69,
  2466. 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d,
  2467. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2468. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  2469. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65,
  2470. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  2471. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f,
  2472. 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65,
  2473. 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  2474. 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2475. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2476. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2477. 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  2478. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2479. 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55,
  2480. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
  2481. 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2482. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61,
  2483. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2484. 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2485. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66,
  2486. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a,
  2487. 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66,
  2488. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e,
  2489. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2490. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2491. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82,
  2492. 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2493. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61,
  2494. 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c,
  2495. 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2496. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  2497. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2498. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  2499. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f,
  2500. 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c,
  2501. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61,
  2502. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68,
  2503. 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70,
  2504. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d,
  2505. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2506. 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a,
  2507. 0x10, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73,
  2508. 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2509. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2510. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73,
  2511. 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2512. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69,
  2513. 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79,
  2514. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2515. 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2516. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2517. 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22,
  2518. 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2519. 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c,
  2520. 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50,
  2521. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2522. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2523. 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  2524. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  2525. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22,
  2526. 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  2527. 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a,
  2528. 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61,
  2529. 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2530. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2531. 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e,
  2532. 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41,
  2533. 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93,
  2534. 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61,
  2535. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01,
  2536. 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e,
  2537. 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2538. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69,
  2539. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f,
  2540. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2541. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f,
  2542. 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  2543. 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2544. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2545. 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  2546. 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22,
  2547. 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f,
  2548. 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e,
  2549. 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x2e, 0x61, 0x70,
  2550. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a,
  2551. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61,
  2552. 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c,
  2553. 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2554. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63,
  2555. 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63,
  2556. 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2557. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2558. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2559. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2560. 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c,
  2561. 0x6f, 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d,
  2562. 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e,
  2563. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49,
  2564. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2565. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2566. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2567. 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75,
  2568. 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  2569. 0x73, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e,
  2570. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2571. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2572. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82,
  2573. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2574. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  2575. 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2576. 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61,
  2577. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  2578. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e,
  2579. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70,
  2580. 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69,
  2581. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f,
  2582. 0x6d, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b,
  2583. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x2e, 0x61, 0x70,
  2584. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2585. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2586. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2587. 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2588. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x65, 0x6e,
  2589. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x8a, 0x01, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2590. 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61,
  2591. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2592. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2593. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2594. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50,
  2595. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21,
  2596. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2597. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
  2598. 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  2599. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x73, 0x65, 0x72,
  2600. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2601. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72,
  2602. 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26,
  2603. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2604. 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
  2605. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22,
  2606. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65,
  2607. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  2608. 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0xb2, 0x01, 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2609. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c,
  2610. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x61, 0x70,
  2611. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  2612. 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  2613. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2614. 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  2615. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  2616. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x32, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a,
  2617. 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75,
  2618. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x73, 0x63, 0x68, 0x65, 0x63, 0x6b,
  2619. 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x9d, 0x01, 0x0a, 0x1e, 0x4d,
  2620. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75,
  2621. 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e,
  2622. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2623. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  2624. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2625. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  2626. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2627. 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  2628. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73,
  2629. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x4d,
  2630. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75,
  2631. 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2632. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b,
  2633. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52,
  2634. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2635. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28,
  2636. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2637. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65,
  2638. 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x1d, 0x4d, 0x61, 0x6e,
  2639. 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c,
  2640. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  2641. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  2642. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2643. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82,
  2644. 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  2645. 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2646. 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x4d,
  2647. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61,
  2648. 0x63, 0x6b, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2649. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2650. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2651. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61,
  2652. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b,
  2653. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a,
  2654. 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x48, 0x69,
  2655. 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x19, 0x2e,
  2656. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2657. 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2658. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2659. 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2660. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75,
  2661. 0x73, 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x88, 0x01,
  2662. 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  2663. 0x73, 0x65, 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2664. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  2665. 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65,
  2666. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2667. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82,
  2668. 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  2669. 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x2f, 0x75,
  2670. 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x91, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e,
  2671. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x69,
  2672. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2673. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  2674. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x52,
  2675. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2676. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c,
  2677. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2678. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  2679. 0x65, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a,
  2680. 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2681. 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2f, 0x2e, 0x61, 0x70,
  2682. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2683. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e,
  2684. 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2685. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2686. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61,
  2687. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2688. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  2689. 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  2690. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12,
  2691. 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  2692. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2693. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2694. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2695. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f,
  2696. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2697. 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01,
  2698. 0x2a, 0x12, 0x85, 0x01, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  2699. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70,
  2700. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2701. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65,
  2702. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2703. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2704. 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  2705. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x2f,
  2706. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61,
  2707. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x57,
  2708. 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2709. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2710. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x52, 0x65, 0x71, 0x75,
  2711. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2712. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4,
  2713. 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2714. 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2f, 0x75, 0x70,
  2715. 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8c, 0x01, 0x0a, 0x18, 0x4d, 0x61, 0x6e, 0x61,
  2716. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x42,
  2717. 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2718. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  2719. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75,
  2720. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2721. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4,
  2722. 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2723. 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x70, 0x64,
  2724. 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2725. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64,
  2726. 0x69, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61,
  2727. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43,
  2728. 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2729. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2730. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61,
  2731. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2732. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x2f, 0x61, 0x64, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a,
  2733. 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e,
  2734. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2735. 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2736. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12,
  2737. 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73,
  2738. 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  2739. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70,
  2740. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44,
  2741. 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2742. 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e,
  2743. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
  2744. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65,
  2745. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2746. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  2747. 0x58, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  2748. 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69,
  2749. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  2750. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61,
  2751. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2752. 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70, 0x64,
  2753. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
  2754. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2755. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2756. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2757. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x17, 0x47, 0x65, 0x74,
  2758. 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75,
  2759. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2760. 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2761. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67,
  2762. 0x12, 0x82, 0x01, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  2763. 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65,
  2764. 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2765. 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  2766. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52,
  2767. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2768. 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48,
  2769. 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  2770. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2771. 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  2772. 0x65, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2773. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x28, 0x2e,
  2774. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2775. 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
  2776. 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x46, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d,
  2777. 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17,
  2778. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2779. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2780. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12,
  2781. 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70,
  2782. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61,
  2783. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2784. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2785. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a, 0x0a,
  2786. 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75,
  2787. 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2788. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  2789. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2790. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65, 0x70,
  2791. 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65,
  2792. 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2793. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  2794. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2795. 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  2796. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2797. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2798. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2799. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x67, 0x0a, 0x1c, 0x53, 0x65, 0x6e, 0x64, 0x4e,
  2800. 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52,
  2801. 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2802. 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2803. 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52,
  2804. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2805. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  2806. 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73, 0x69, 0x74,
  2807. 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  2808. 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2809. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2810. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2811. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x24, 0x55, 0x70, 0x64, 0x61,
  2812. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d,
  2813. 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67,
  2814. 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61,
  2815. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d,
  2816. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2817. 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74,
  2818. 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e,
  2819. 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51,
  2820. 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73,
  2821. 0x65, 0x72, 0x44, 0x42, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  2822. 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  2823. 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2824. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22,
  2825. 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01, 0x5a,
  2826. 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
  2827. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2828. 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65, 0x72,
  2829. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2830. }
  2831. var (
  2832. file_user_proto_rawDescOnce sync.Once
  2833. file_user_proto_rawDescData = file_user_proto_rawDesc
  2834. )
  2835. func file_user_proto_rawDescGZIP() []byte {
  2836. file_user_proto_rawDescOnce.Do(func() {
  2837. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  2838. })
  2839. return file_user_proto_rawDescData
  2840. }
  2841. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 34)
  2842. var file_user_proto_goTypes = []interface{}{
  2843. (*SendMessageRequest)(nil), // 0: api.user.SendMessageRequest
  2844. (*ManagerFindIsCheckQualityUserListRequest)(nil), // 1: api.user.ManagerFindIsCheckQualityUserListRequest
  2845. (*ManagerUpdateUserCreditRequest)(nil), // 2: api.user.ManagerUpdateUserCreditRequest
  2846. (*ManagerMarkHighQualityUserRequest)(nil), // 3: api.user.ManagerMarkHighQualityUserRequest
  2847. (*GetRecommendUserDBRequest)(nil), // 4: api.user.GetRecommendUserDBRequest
  2848. (*FindRecommendHighQualityUserRequest)(nil), // 5: api.user.FindRecommendHighQualityUserRequest
  2849. (*FindRecommendHighQualityUserReply)(nil), // 6: api.user.FindRecommendHighQualityUserReply
  2850. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 7: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  2851. (*GetUserDBMsgFromWebsocketReply)(nil), // 8: api.user.GetUserDBMsgFromWebsocketReply
  2852. (*UpdateUserMatchedNumRequest)(nil), // 9: api.user.UpdateUserMatchedNumRequest
  2853. (*SendNewMessageUnreadReminderRequest)(nil), // 10: api.user.SendNewMessageUnreadReminderRequest
  2854. (*SendMsgReduceCreditReply)(nil), // 11: api.user.SendMsgReduceCreditReply
  2855. (*UserFreeNum)(nil), // 12: api.user.UserFreeNum
  2856. (*ReplyScripRequest)(nil), // 13: api.user.ReplyScripRequest
  2857. (*PersonLookScripRequest)(nil), // 14: api.user.PersonLookScripRequest
  2858. (*UserFindScripRequest)(nil), // 15: api.user.UserFindScripRequest
  2859. (*DeleteScripRequest)(nil), // 16: api.user.DeleteScripRequest
  2860. (*CreateScripRequest)(nil), // 17: api.user.CreateScripRequest
  2861. (*FindMatchingAvatarAndNumReply)(nil), // 18: api.user.FindMatchingAvatarAndNumReply
  2862. (*UserRechargeRequest)(nil), // 19: api.user.UserRechargeRequest
  2863. (*RechargeList)(nil), // 20: api.user.RechargeList
  2864. (*RechargeInfo)(nil), // 21: api.user.RechargeInfo
  2865. (*InformationStatus)(nil), // 22: api.user.InformationStatus
  2866. (*UserBalance)(nil), // 23: api.user.UserBalance
  2867. (*UserFindChatListReply)(nil), // 24: api.user.UserFindChatListReply
  2868. (*UserChatInfo)(nil), // 25: api.user.UserChatInfo
  2869. (*UserInfo)(nil), // 26: api.user.UserInfo
  2870. (*KeyRequest)(nil), // 27: api.user.KeyRequest
  2871. (*CreatePayRequest)(nil), // 28: api.user.CreatePayRequest
  2872. (*PayInfo)(nil), // 29: api.user.PayInfo
  2873. (*PayOrderInfo)(nil), // 30: api.user.PayOrderInfo
  2874. (*PayOrderList)(nil), // 31: api.user.PayOrderList
  2875. (*FindPayOrderListRequest)(nil), // 32: api.user.FindPayOrderListRequest
  2876. (*PayCallbackReply)(nil), // 33: api.user.PayCallbackReply
  2877. (*common.Message)(nil), // 34: api.common.Message
  2878. (*structpb.Value)(nil), // 35: google.protobuf.Value
  2879. (*emptypb.Empty)(nil), // 36: google.protobuf.Empty
  2880. (*common.SendPhoneCodeRequest)(nil), // 37: api.common.SendPhoneCodeRequest
  2881. (*common.CheckPhoneCodeRequest)(nil), // 38: api.common.CheckPhoneCodeRequest
  2882. (*common.UpdateInformationRequest)(nil), // 39: api.common.UpdateInformationRequest
  2883. (*common.CreateChatRoomParam)(nil), // 40: api.common.CreateChatRoomParam
  2884. (*common.PersonParam)(nil), // 41: api.common.PersonParam
  2885. (*common.ListPageRequest)(nil), // 42: api.common.ListPageRequest
  2886. (*common.WxConfReq)(nil), // 43: api.common.WxConfReq
  2887. (*common.SexReq)(nil), // 44: api.common.SexReq
  2888. (*common.ListPage2Request)(nil), // 45: api.common.ListPage2Request
  2889. (*common.FindChatRecordListRequest)(nil), // 46: api.common.FindChatRecordListRequest
  2890. (*common.FindChatRoomMsgRequest)(nil), // 47: api.common.FindChatRoomMsgRequest
  2891. (*common.MemeRequest)(nil), // 48: api.common.MemeRequest
  2892. (*common.FindChatTopicRequest)(nil), // 49: api.common.FindChatTopicRequest
  2893. (*common.RandomNum)(nil), // 50: api.common.RandomNum
  2894. (*common.RandomNumAndSex)(nil), // 51: api.common.RandomNumAndSex
  2895. (*common.ReportChatRequest)(nil), // 52: api.common.ReportChatRequest
  2896. (*common.UpdateLastScripIDRequest)(nil), // 53: api.common.UpdateLastScripIDRequest
  2897. (*common.FindScripRequest)(nil), // 54: api.common.FindScripRequest
  2898. (*common.RoomIDRequest)(nil), // 55: api.common.RoomIDRequest
  2899. (*common.PartnerIDParam)(nil), // 56: api.common.PartnerIDParam
  2900. (*common.ManagerFindPersonListRequest)(nil), // 57: api.common.ManagerFindPersonListRequest
  2901. (*common.PersonIDParam)(nil), // 58: api.common.PersonIDParam
  2902. (*common.PersonIDList)(nil), // 59: api.common.PersonIDList
  2903. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 60: api.common.ManagerUpdatePersonVoiceRequest
  2904. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 61: api.common.ManagerUpdatePersonPicturesRequest
  2905. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 62: api.common.ManagerUpdatePersonSignatureRequest
  2906. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 63: api.common.ManagerUpdatePersonAvatarRequest
  2907. (*common.ManagerUpdatePersonNameRequest)(nil), // 64: api.common.ManagerUpdatePersonNameRequest
  2908. (*common.ManagerUpdatePersonWeightRequest)(nil), // 65: api.common.ManagerUpdatePersonWeightRequest
  2909. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 66: api.common.ManagerUpdatePersonIsBlackRequest
  2910. (*common.UpdateLastScripIDDBRequest)(nil), // 67: api.common.UpdateLastScripIDDBRequest
  2911. (*common.FindRecommendRequest)(nil), // 68: api.common.FindRecommendRequest
  2912. (*common.IDParam)(nil), // 69: api.common.IDParam
  2913. (*chat.RoomReply)(nil), // 70: api.chat.RoomReply
  2914. (*common.HomeInfo)(nil), // 71: api.common.HomeInfo
  2915. (*common.LookedAndLikedNum)(nil), // 72: api.common.LookedAndLikedNum
  2916. (*statistics.LookAndLikeListReply)(nil), // 73: api.statistics.LookAndLikeListReply
  2917. (*common.WxConfResponse)(nil), // 74: api.common.WxConfResponse
  2918. (*common.TagListReply)(nil), // 75: api.common.TagListReply
  2919. (*common.RecommendPersonListReply)(nil), // 76: api.common.RecommendPersonListReply
  2920. (*common.ChatRecordListReply)(nil), // 77: api.common.ChatRecordListReply
  2921. (*common.ChatRoomMsg)(nil), // 78: api.common.ChatRoomMsg
  2922. (*common.IsLike)(nil), // 79: api.common.IsLike
  2923. (*common.MemeList)(nil), // 80: api.common.MemeList
  2924. (*common.ChatTopicList)(nil), // 81: api.common.ChatTopicList
  2925. (*common.CommonTextList)(nil), // 82: api.common.CommonTextList
  2926. (*common.MemeTitleList)(nil), // 83: api.common.MemeTitleList
  2927. (*common.ChatCardInfo)(nil), // 84: api.common.ChatCardInfo
  2928. (*common.FindOverSevenDayAvatarReply)(nil), // 85: api.common.FindOverSevenDayAvatarReply
  2929. (*common.ScripID)(nil), // 86: api.common.ScripID
  2930. (*common.ScripReply)(nil), // 87: api.common.ScripReply
  2931. (*common.ScripInfo)(nil), // 88: api.common.ScripInfo
  2932. (*common.ChatRecordInfo)(nil), // 89: api.common.ChatRecordInfo
  2933. (*chat.UnreadNumReply)(nil), // 90: api.chat.UnreadNumReply
  2934. (*chat.UserRoomInfo)(nil), // 91: api.chat.UserRoomInfo
  2935. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 92: api.chat.CheckUserPartnerIsRelationshipReply
  2936. (*common.AddFriendMessageInfo)(nil), // 93: api.common.AddFriendMessageInfo
  2937. (*statistics.LookAndLikeMessageReply)(nil), // 94: api.statistics.LookAndLikeMessageReply
  2938. (*statistics.LookMessageReply)(nil), // 95: api.statistics.LookMessageReply
  2939. (*chat.WindowInfo)(nil), // 96: api.chat.WindowInfo
  2940. (*chat.GetRandomMatchingReply)(nil), // 97: api.chat.GetRandomMatchingReply
  2941. (*common.ManagerFindPersonListReply)(nil), // 98: api.common.ManagerFindPersonListReply
  2942. (*common.ManagerFindPersonListReply2)(nil), // 99: api.common.ManagerFindPersonListReply2
  2943. (*common.PersonMsg)(nil), // 100: api.common.PersonMsg
  2944. (*common.PersonDBReply)(nil), // 101: api.common.PersonDBReply
  2945. (*common.PersonDB)(nil), // 102: api.common.PersonDB
  2946. }
  2947. var file_user_proto_depIdxs = []int32{
  2948. 34, // 0: api.user.SendMessageRequest.message:type_name -> api.common.Message
  2949. 34, // 1: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  2950. 21, // 2: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  2951. 25, // 3: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  2952. 35, // 4: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  2953. 30, // 5: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  2954. 36, // 6: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  2955. 37, // 7: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2956. 38, // 8: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2957. 39, // 9: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  2958. 40, // 10: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  2959. 36, // 11: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  2960. 41, // 12: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  2961. 41, // 13: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2962. 42, // 14: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  2963. 43, // 15: api.user.User.WxConf:input_type -> api.common.WxConfReq
  2964. 44, // 16: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  2965. 45, // 17: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  2966. 42, // 18: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2967. 42, // 19: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2968. 46, // 20: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2969. 47, // 21: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2970. 41, // 22: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  2971. 48, // 23: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  2972. 49, // 24: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2973. 50, // 25: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  2974. 51, // 26: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2975. 36, // 27: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  2976. 41, // 28: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  2977. 36, // 29: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2978. 41, // 30: api.user.User.UserLike:input_type -> api.common.PersonParam
  2979. 41, // 31: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  2980. 52, // 32: api.user.User.Report:input_type -> api.common.ReportChatRequest
  2981. 36, // 33: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2982. 53, // 34: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2983. 17, // 35: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  2984. 16, // 36: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  2985. 15, // 37: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  2986. 54, // 38: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  2987. 15, // 39: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  2988. 14, // 40: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  2989. 36, // 41: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  2990. 13, // 42: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  2991. 55, // 43: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  2992. 36, // 44: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  2993. 41, // 45: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  2994. 42, // 46: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  2995. 42, // 47: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  2996. 55, // 48: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  2997. 56, // 49: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  2998. 27, // 50: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  2999. 36, // 51: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  3000. 36, // 52: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  3001. 36, // 53: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  3002. 36, // 54: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  3003. 36, // 55: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  3004. 41, // 56: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  3005. 19, // 57: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  3006. 36, // 58: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  3007. 32, // 59: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  3008. 36, // 60: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  3009. 36, // 61: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  3010. 36, // 62: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  3011. 36, // 63: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  3012. 44, // 64: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  3013. 55, // 65: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  3014. 55, // 66: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  3015. 36, // 67: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  3016. 40, // 68: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  3017. 0, // 69: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  3018. 57, // 70: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  3019. 57, // 71: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  3020. 1, // 72: api.user.User.ManagerFindIsCheckQualityUserList:input_type -> api.user.ManagerFindIsCheckQualityUserListRequest
  3021. 57, // 73: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  3022. 3, // 74: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  3023. 58, // 75: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  3024. 59, // 76: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  3025. 58, // 77: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  3026. 60, // 78: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  3027. 61, // 79: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  3028. 62, // 80: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  3029. 63, // 81: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  3030. 64, // 82: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  3031. 65, // 83: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  3032. 66, // 84: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  3033. 2, // 85: api.user.User.ManagerUpdateUserCredit:input_type -> api.user.ManagerUpdateUserCreditRequest
  3034. 58, // 86: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  3035. 59, // 87: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  3036. 67, // 88: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  3037. 68, // 89: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  3038. 58, // 90: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  3039. 69, // 91: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  3040. 5, // 92: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  3041. 58, // 93: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  3042. 41, // 94: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  3043. 41, // 95: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  3044. 41, // 96: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  3045. 41, // 97: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  3046. 41, // 98: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  3047. 10, // 99: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  3048. 58, // 100: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  3049. 9, // 101: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  3050. 4, // 102: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  3051. 26, // 103: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  3052. 36, // 104: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  3053. 36, // 105: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  3054. 36, // 106: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  3055. 70, // 107: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  3056. 23, // 108: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  3057. 71, // 109: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  3058. 72, // 110: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  3059. 73, // 111: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  3060. 74, // 112: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  3061. 75, // 113: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  3062. 76, // 114: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  3063. 24, // 115: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  3064. 24, // 116: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  3065. 77, // 117: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  3066. 78, // 118: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  3067. 79, // 119: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  3068. 80, // 120: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  3069. 81, // 121: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  3070. 82, // 122: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  3071. 82, // 123: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  3072. 83, // 124: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  3073. 84, // 125: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  3074. 83, // 126: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  3075. 36, // 127: api.user.User.UserLike:output_type -> google.protobuf.Empty
  3076. 36, // 128: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  3077. 36, // 129: api.user.User.Report:output_type -> google.protobuf.Empty
  3078. 85, // 130: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  3079. 36, // 131: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  3080. 86, // 132: api.user.User.CreateScrip:output_type -> api.common.ScripID
  3081. 36, // 133: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  3082. 87, // 134: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  3083. 87, // 135: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  3084. 87, // 136: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  3085. 36, // 137: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  3086. 88, // 138: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  3087. 89, // 139: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  3088. 36, // 140: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  3089. 90, // 141: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  3090. 91, // 142: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  3091. 73, // 143: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  3092. 73, // 144: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  3093. 36, // 145: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  3094. 92, // 146: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  3095. 93, // 147: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  3096. 94, // 148: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  3097. 95, // 149: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  3098. 36, // 150: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  3099. 22, // 151: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  3100. 36, // 152: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  3101. 36, // 153: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  3102. 29, // 154: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  3103. 20, // 155: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  3104. 31, // 156: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  3105. 76, // 157: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  3106. 18, // 158: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  3107. 96, // 159: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  3108. 12, // 160: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  3109. 97, // 161: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  3110. 36, // 162: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  3111. 36, // 163: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  3112. 36, // 164: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  3113. 70, // 165: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  3114. 36, // 166: api.user.User.SendMessage:output_type -> google.protobuf.Empty
  3115. 98, // 167: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  3116. 98, // 168: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  3117. 99, // 169: api.user.User.ManagerFindIsCheckQualityUserList:output_type -> api.common.ManagerFindPersonListReply2
  3118. 98, // 170: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  3119. 36, // 171: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  3120. 36, // 172: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  3121. 36, // 173: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  3122. 36, // 174: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  3123. 36, // 175: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  3124. 36, // 176: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  3125. 36, // 177: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  3126. 36, // 178: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  3127. 36, // 179: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  3128. 36, // 180: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  3129. 36, // 181: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  3130. 36, // 182: api.user.User.ManagerUpdateUserCredit:output_type -> google.protobuf.Empty
  3131. 100, // 183: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  3132. 101, // 184: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  3133. 36, // 185: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  3134. 101, // 186: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  3135. 36, // 187: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  3136. 100, // 188: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  3137. 6, // 189: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  3138. 8, // 190: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  3139. 36, // 191: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  3140. 36, // 192: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  3141. 36, // 193: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  3142. 36, // 194: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  3143. 36, // 195: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  3144. 36, // 196: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  3145. 36, // 197: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  3146. 7, // 198: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  3147. 102, // 199: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  3148. 103, // [103:200] is the sub-list for method output_type
  3149. 6, // [6:103] is the sub-list for method input_type
  3150. 6, // [6:6] is the sub-list for extension type_name
  3151. 6, // [6:6] is the sub-list for extension extendee
  3152. 0, // [0:6] is the sub-list for field type_name
  3153. }
  3154. func init() { file_user_proto_init() }
  3155. func file_user_proto_init() {
  3156. if File_user_proto != nil {
  3157. return
  3158. }
  3159. if !protoimpl.UnsafeEnabled {
  3160. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3161. switch v := v.(*SendMessageRequest); i {
  3162. case 0:
  3163. return &v.state
  3164. case 1:
  3165. return &v.sizeCache
  3166. case 2:
  3167. return &v.unknownFields
  3168. default:
  3169. return nil
  3170. }
  3171. }
  3172. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3173. switch v := v.(*ManagerFindIsCheckQualityUserListRequest); i {
  3174. case 0:
  3175. return &v.state
  3176. case 1:
  3177. return &v.sizeCache
  3178. case 2:
  3179. return &v.unknownFields
  3180. default:
  3181. return nil
  3182. }
  3183. }
  3184. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3185. switch v := v.(*ManagerUpdateUserCreditRequest); i {
  3186. case 0:
  3187. return &v.state
  3188. case 1:
  3189. return &v.sizeCache
  3190. case 2:
  3191. return &v.unknownFields
  3192. default:
  3193. return nil
  3194. }
  3195. }
  3196. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3197. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  3198. case 0:
  3199. return &v.state
  3200. case 1:
  3201. return &v.sizeCache
  3202. case 2:
  3203. return &v.unknownFields
  3204. default:
  3205. return nil
  3206. }
  3207. }
  3208. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3209. switch v := v.(*GetRecommendUserDBRequest); i {
  3210. case 0:
  3211. return &v.state
  3212. case 1:
  3213. return &v.sizeCache
  3214. case 2:
  3215. return &v.unknownFields
  3216. default:
  3217. return nil
  3218. }
  3219. }
  3220. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3221. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  3222. case 0:
  3223. return &v.state
  3224. case 1:
  3225. return &v.sizeCache
  3226. case 2:
  3227. return &v.unknownFields
  3228. default:
  3229. return nil
  3230. }
  3231. }
  3232. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3233. switch v := v.(*FindRecommendHighQualityUserReply); i {
  3234. case 0:
  3235. return &v.state
  3236. case 1:
  3237. return &v.sizeCache
  3238. case 2:
  3239. return &v.unknownFields
  3240. default:
  3241. return nil
  3242. }
  3243. }
  3244. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3245. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  3246. case 0:
  3247. return &v.state
  3248. case 1:
  3249. return &v.sizeCache
  3250. case 2:
  3251. return &v.unknownFields
  3252. default:
  3253. return nil
  3254. }
  3255. }
  3256. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3257. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  3258. case 0:
  3259. return &v.state
  3260. case 1:
  3261. return &v.sizeCache
  3262. case 2:
  3263. return &v.unknownFields
  3264. default:
  3265. return nil
  3266. }
  3267. }
  3268. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3269. switch v := v.(*UpdateUserMatchedNumRequest); i {
  3270. case 0:
  3271. return &v.state
  3272. case 1:
  3273. return &v.sizeCache
  3274. case 2:
  3275. return &v.unknownFields
  3276. default:
  3277. return nil
  3278. }
  3279. }
  3280. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3281. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  3282. case 0:
  3283. return &v.state
  3284. case 1:
  3285. return &v.sizeCache
  3286. case 2:
  3287. return &v.unknownFields
  3288. default:
  3289. return nil
  3290. }
  3291. }
  3292. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3293. switch v := v.(*SendMsgReduceCreditReply); i {
  3294. case 0:
  3295. return &v.state
  3296. case 1:
  3297. return &v.sizeCache
  3298. case 2:
  3299. return &v.unknownFields
  3300. default:
  3301. return nil
  3302. }
  3303. }
  3304. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3305. switch v := v.(*UserFreeNum); i {
  3306. case 0:
  3307. return &v.state
  3308. case 1:
  3309. return &v.sizeCache
  3310. case 2:
  3311. return &v.unknownFields
  3312. default:
  3313. return nil
  3314. }
  3315. }
  3316. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3317. switch v := v.(*ReplyScripRequest); i {
  3318. case 0:
  3319. return &v.state
  3320. case 1:
  3321. return &v.sizeCache
  3322. case 2:
  3323. return &v.unknownFields
  3324. default:
  3325. return nil
  3326. }
  3327. }
  3328. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3329. switch v := v.(*PersonLookScripRequest); i {
  3330. case 0:
  3331. return &v.state
  3332. case 1:
  3333. return &v.sizeCache
  3334. case 2:
  3335. return &v.unknownFields
  3336. default:
  3337. return nil
  3338. }
  3339. }
  3340. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3341. switch v := v.(*UserFindScripRequest); i {
  3342. case 0:
  3343. return &v.state
  3344. case 1:
  3345. return &v.sizeCache
  3346. case 2:
  3347. return &v.unknownFields
  3348. default:
  3349. return nil
  3350. }
  3351. }
  3352. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3353. switch v := v.(*DeleteScripRequest); i {
  3354. case 0:
  3355. return &v.state
  3356. case 1:
  3357. return &v.sizeCache
  3358. case 2:
  3359. return &v.unknownFields
  3360. default:
  3361. return nil
  3362. }
  3363. }
  3364. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3365. switch v := v.(*CreateScripRequest); i {
  3366. case 0:
  3367. return &v.state
  3368. case 1:
  3369. return &v.sizeCache
  3370. case 2:
  3371. return &v.unknownFields
  3372. default:
  3373. return nil
  3374. }
  3375. }
  3376. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3377. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  3378. case 0:
  3379. return &v.state
  3380. case 1:
  3381. return &v.sizeCache
  3382. case 2:
  3383. return &v.unknownFields
  3384. default:
  3385. return nil
  3386. }
  3387. }
  3388. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3389. switch v := v.(*UserRechargeRequest); i {
  3390. case 0:
  3391. return &v.state
  3392. case 1:
  3393. return &v.sizeCache
  3394. case 2:
  3395. return &v.unknownFields
  3396. default:
  3397. return nil
  3398. }
  3399. }
  3400. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3401. switch v := v.(*RechargeList); i {
  3402. case 0:
  3403. return &v.state
  3404. case 1:
  3405. return &v.sizeCache
  3406. case 2:
  3407. return &v.unknownFields
  3408. default:
  3409. return nil
  3410. }
  3411. }
  3412. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3413. switch v := v.(*RechargeInfo); i {
  3414. case 0:
  3415. return &v.state
  3416. case 1:
  3417. return &v.sizeCache
  3418. case 2:
  3419. return &v.unknownFields
  3420. default:
  3421. return nil
  3422. }
  3423. }
  3424. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3425. switch v := v.(*InformationStatus); i {
  3426. case 0:
  3427. return &v.state
  3428. case 1:
  3429. return &v.sizeCache
  3430. case 2:
  3431. return &v.unknownFields
  3432. default:
  3433. return nil
  3434. }
  3435. }
  3436. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3437. switch v := v.(*UserBalance); i {
  3438. case 0:
  3439. return &v.state
  3440. case 1:
  3441. return &v.sizeCache
  3442. case 2:
  3443. return &v.unknownFields
  3444. default:
  3445. return nil
  3446. }
  3447. }
  3448. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3449. switch v := v.(*UserFindChatListReply); i {
  3450. case 0:
  3451. return &v.state
  3452. case 1:
  3453. return &v.sizeCache
  3454. case 2:
  3455. return &v.unknownFields
  3456. default:
  3457. return nil
  3458. }
  3459. }
  3460. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3461. switch v := v.(*UserChatInfo); i {
  3462. case 0:
  3463. return &v.state
  3464. case 1:
  3465. return &v.sizeCache
  3466. case 2:
  3467. return &v.unknownFields
  3468. default:
  3469. return nil
  3470. }
  3471. }
  3472. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3473. switch v := v.(*UserInfo); i {
  3474. case 0:
  3475. return &v.state
  3476. case 1:
  3477. return &v.sizeCache
  3478. case 2:
  3479. return &v.unknownFields
  3480. default:
  3481. return nil
  3482. }
  3483. }
  3484. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3485. switch v := v.(*KeyRequest); i {
  3486. case 0:
  3487. return &v.state
  3488. case 1:
  3489. return &v.sizeCache
  3490. case 2:
  3491. return &v.unknownFields
  3492. default:
  3493. return nil
  3494. }
  3495. }
  3496. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3497. switch v := v.(*CreatePayRequest); i {
  3498. case 0:
  3499. return &v.state
  3500. case 1:
  3501. return &v.sizeCache
  3502. case 2:
  3503. return &v.unknownFields
  3504. default:
  3505. return nil
  3506. }
  3507. }
  3508. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3509. switch v := v.(*PayInfo); i {
  3510. case 0:
  3511. return &v.state
  3512. case 1:
  3513. return &v.sizeCache
  3514. case 2:
  3515. return &v.unknownFields
  3516. default:
  3517. return nil
  3518. }
  3519. }
  3520. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3521. switch v := v.(*PayOrderInfo); i {
  3522. case 0:
  3523. return &v.state
  3524. case 1:
  3525. return &v.sizeCache
  3526. case 2:
  3527. return &v.unknownFields
  3528. default:
  3529. return nil
  3530. }
  3531. }
  3532. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3533. switch v := v.(*PayOrderList); i {
  3534. case 0:
  3535. return &v.state
  3536. case 1:
  3537. return &v.sizeCache
  3538. case 2:
  3539. return &v.unknownFields
  3540. default:
  3541. return nil
  3542. }
  3543. }
  3544. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3545. switch v := v.(*FindPayOrderListRequest); i {
  3546. case 0:
  3547. return &v.state
  3548. case 1:
  3549. return &v.sizeCache
  3550. case 2:
  3551. return &v.unknownFields
  3552. default:
  3553. return nil
  3554. }
  3555. }
  3556. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3557. switch v := v.(*PayCallbackReply); i {
  3558. case 0:
  3559. return &v.state
  3560. case 1:
  3561. return &v.sizeCache
  3562. case 2:
  3563. return &v.unknownFields
  3564. default:
  3565. return nil
  3566. }
  3567. }
  3568. }
  3569. type x struct{}
  3570. out := protoimpl.TypeBuilder{
  3571. File: protoimpl.DescBuilder{
  3572. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3573. RawDescriptor: file_user_proto_rawDesc,
  3574. NumEnums: 0,
  3575. NumMessages: 34,
  3576. NumExtensions: 0,
  3577. NumServices: 1,
  3578. },
  3579. GoTypes: file_user_proto_goTypes,
  3580. DependencyIndexes: file_user_proto_depIdxs,
  3581. MessageInfos: file_user_proto_msgTypes,
  3582. }.Build()
  3583. File_user_proto = out.File
  3584. file_user_proto_rawDesc = nil
  3585. file_user_proto_goTypes = nil
  3586. file_user_proto_depIdxs = nil
  3587. }