partner.pb.go 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724
  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: partner.proto
  6. package partner
  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. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. type FindExamineListReply struct {
  25. state protoimpl.MessageState
  26. sizeCache protoimpl.SizeCache
  27. unknownFields protoimpl.UnknownFields
  28. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  29. List []*ExamineInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  30. }
  31. func (x *FindExamineListReply) Reset() {
  32. *x = FindExamineListReply{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_partner_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *FindExamineListReply) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*FindExamineListReply) ProtoMessage() {}
  43. func (x *FindExamineListReply) ProtoReflect() protoreflect.Message {
  44. mi := &file_partner_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use FindExamineListReply.ProtoReflect.Descriptor instead.
  55. func (*FindExamineListReply) Descriptor() ([]byte, []int) {
  56. return file_partner_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *FindExamineListReply) GetNextId() string {
  59. if x != nil {
  60. return x.NextId
  61. }
  62. return ""
  63. }
  64. func (x *FindExamineListReply) GetList() []*ExamineInfo {
  65. if x != nil {
  66. return x.List
  67. }
  68. return nil
  69. }
  70. type ExamineInfo struct {
  71. state protoimpl.MessageState
  72. sizeCache protoimpl.SizeCache
  73. unknownFields protoimpl.UnknownFields
  74. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  75. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  76. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  77. IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  78. Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  79. Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  80. Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
  81. }
  82. func (x *ExamineInfo) Reset() {
  83. *x = ExamineInfo{}
  84. if protoimpl.UnsafeEnabled {
  85. mi := &file_partner_proto_msgTypes[1]
  86. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  87. ms.StoreMessageInfo(mi)
  88. }
  89. }
  90. func (x *ExamineInfo) String() string {
  91. return protoimpl.X.MessageStringOf(x)
  92. }
  93. func (*ExamineInfo) ProtoMessage() {}
  94. func (x *ExamineInfo) ProtoReflect() protoreflect.Message {
  95. mi := &file_partner_proto_msgTypes[1]
  96. if protoimpl.UnsafeEnabled && x != nil {
  97. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  98. if ms.LoadMessageInfo() == nil {
  99. ms.StoreMessageInfo(mi)
  100. }
  101. return ms
  102. }
  103. return mi.MessageOf(x)
  104. }
  105. // Deprecated: Use ExamineInfo.ProtoReflect.Descriptor instead.
  106. func (*ExamineInfo) Descriptor() ([]byte, []int) {
  107. return file_partner_proto_rawDescGZIP(), []int{1}
  108. }
  109. func (x *ExamineInfo) GetPartnerId() string {
  110. if x != nil {
  111. return x.PartnerId
  112. }
  113. return ""
  114. }
  115. func (x *ExamineInfo) GetNickname() string {
  116. if x != nil {
  117. return x.Nickname
  118. }
  119. return ""
  120. }
  121. func (x *ExamineInfo) GetAvatarUrl() string {
  122. if x != nil {
  123. return x.AvatarUrl
  124. }
  125. return ""
  126. }
  127. func (x *ExamineInfo) GetIntroduceVoice() string {
  128. if x != nil {
  129. return x.IntroduceVoice
  130. }
  131. return ""
  132. }
  133. func (x *ExamineInfo) GetSignature() string {
  134. if x != nil {
  135. return x.Signature
  136. }
  137. return ""
  138. }
  139. func (x *ExamineInfo) GetPictures() []string {
  140. if x != nil {
  141. return x.Pictures
  142. }
  143. return nil
  144. }
  145. func (x *ExamineInfo) GetSex() int64 {
  146. if x != nil {
  147. return x.Sex
  148. }
  149. return 0
  150. }
  151. type ExaminePartnerRequest struct {
  152. state protoimpl.MessageState
  153. sizeCache protoimpl.SizeCache
  154. unknownFields protoimpl.UnknownFields
  155. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  156. IsPass bool `protobuf:"varint,2,opt,name=isPass,proto3" json:"isPass"` // 是否审核通过
  157. }
  158. func (x *ExaminePartnerRequest) Reset() {
  159. *x = ExaminePartnerRequest{}
  160. if protoimpl.UnsafeEnabled {
  161. mi := &file_partner_proto_msgTypes[2]
  162. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  163. ms.StoreMessageInfo(mi)
  164. }
  165. }
  166. func (x *ExaminePartnerRequest) String() string {
  167. return protoimpl.X.MessageStringOf(x)
  168. }
  169. func (*ExaminePartnerRequest) ProtoMessage() {}
  170. func (x *ExaminePartnerRequest) ProtoReflect() protoreflect.Message {
  171. mi := &file_partner_proto_msgTypes[2]
  172. if protoimpl.UnsafeEnabled && x != nil {
  173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  174. if ms.LoadMessageInfo() == nil {
  175. ms.StoreMessageInfo(mi)
  176. }
  177. return ms
  178. }
  179. return mi.MessageOf(x)
  180. }
  181. // Deprecated: Use ExaminePartnerRequest.ProtoReflect.Descriptor instead.
  182. func (*ExaminePartnerRequest) Descriptor() ([]byte, []int) {
  183. return file_partner_proto_rawDescGZIP(), []int{2}
  184. }
  185. func (x *ExaminePartnerRequest) GetPartnerId() string {
  186. if x != nil {
  187. return x.PartnerId
  188. }
  189. return ""
  190. }
  191. func (x *ExaminePartnerRequest) GetIsPass() bool {
  192. if x != nil {
  193. return x.IsPass
  194. }
  195. return false
  196. }
  197. type PartnerGetRoomBalanceAndTodayBalanceReply struct {
  198. state protoimpl.MessageState
  199. sizeCache protoimpl.SizeCache
  200. unknownFields protoimpl.UnknownFields
  201. TodayProfit int64 `protobuf:"varint,1,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  202. RoomProfit int64 `protobuf:"varint,2,opt,name=roomProfit,proto3" json:"roomProfit"` // 房间收益
  203. }
  204. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) Reset() {
  205. *x = PartnerGetRoomBalanceAndTodayBalanceReply{}
  206. if protoimpl.UnsafeEnabled {
  207. mi := &file_partner_proto_msgTypes[3]
  208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  209. ms.StoreMessageInfo(mi)
  210. }
  211. }
  212. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) String() string {
  213. return protoimpl.X.MessageStringOf(x)
  214. }
  215. func (*PartnerGetRoomBalanceAndTodayBalanceReply) ProtoMessage() {}
  216. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) ProtoReflect() protoreflect.Message {
  217. mi := &file_partner_proto_msgTypes[3]
  218. if protoimpl.UnsafeEnabled && x != nil {
  219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  220. if ms.LoadMessageInfo() == nil {
  221. ms.StoreMessageInfo(mi)
  222. }
  223. return ms
  224. }
  225. return mi.MessageOf(x)
  226. }
  227. // Deprecated: Use PartnerGetRoomBalanceAndTodayBalanceReply.ProtoReflect.Descriptor instead.
  228. func (*PartnerGetRoomBalanceAndTodayBalanceReply) Descriptor() ([]byte, []int) {
  229. return file_partner_proto_rawDescGZIP(), []int{3}
  230. }
  231. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetTodayProfit() int64 {
  232. if x != nil {
  233. return x.TodayProfit
  234. }
  235. return 0
  236. }
  237. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetRoomProfit() int64 {
  238. if x != nil {
  239. return x.RoomProfit
  240. }
  241. return 0
  242. }
  243. type PartnerCollectIDsRequest struct {
  244. state protoimpl.MessageState
  245. sizeCache protoimpl.SizeCache
  246. unknownFields protoimpl.UnknownFields
  247. ChatRecordIds []int64 `protobuf:"varint,1,rep,packed,name=chatRecordIds,proto3" json:"chatRecordIds"` // 记录ID
  248. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  249. }
  250. func (x *PartnerCollectIDsRequest) Reset() {
  251. *x = PartnerCollectIDsRequest{}
  252. if protoimpl.UnsafeEnabled {
  253. mi := &file_partner_proto_msgTypes[4]
  254. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  255. ms.StoreMessageInfo(mi)
  256. }
  257. }
  258. func (x *PartnerCollectIDsRequest) String() string {
  259. return protoimpl.X.MessageStringOf(x)
  260. }
  261. func (*PartnerCollectIDsRequest) ProtoMessage() {}
  262. func (x *PartnerCollectIDsRequest) ProtoReflect() protoreflect.Message {
  263. mi := &file_partner_proto_msgTypes[4]
  264. if protoimpl.UnsafeEnabled && x != nil {
  265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  266. if ms.LoadMessageInfo() == nil {
  267. ms.StoreMessageInfo(mi)
  268. }
  269. return ms
  270. }
  271. return mi.MessageOf(x)
  272. }
  273. // Deprecated: Use PartnerCollectIDsRequest.ProtoReflect.Descriptor instead.
  274. func (*PartnerCollectIDsRequest) Descriptor() ([]byte, []int) {
  275. return file_partner_proto_rawDescGZIP(), []int{4}
  276. }
  277. func (x *PartnerCollectIDsRequest) GetChatRecordIds() []int64 {
  278. if x != nil {
  279. return x.ChatRecordIds
  280. }
  281. return nil
  282. }
  283. func (x *PartnerCollectIDsRequest) GetRoomId() int64 {
  284. if x != nil {
  285. return x.RoomId
  286. }
  287. return 0
  288. }
  289. type PartnerCollectRequest struct {
  290. state protoimpl.MessageState
  291. sizeCache protoimpl.SizeCache
  292. unknownFields protoimpl.UnknownFields
  293. ChatRecordId int64 `protobuf:"varint,1,opt,name=chatRecordId,proto3" json:"chatRecordId"` // 记录ID
  294. }
  295. func (x *PartnerCollectRequest) Reset() {
  296. *x = PartnerCollectRequest{}
  297. if protoimpl.UnsafeEnabled {
  298. mi := &file_partner_proto_msgTypes[5]
  299. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  300. ms.StoreMessageInfo(mi)
  301. }
  302. }
  303. func (x *PartnerCollectRequest) String() string {
  304. return protoimpl.X.MessageStringOf(x)
  305. }
  306. func (*PartnerCollectRequest) ProtoMessage() {}
  307. func (x *PartnerCollectRequest) ProtoReflect() protoreflect.Message {
  308. mi := &file_partner_proto_msgTypes[5]
  309. if protoimpl.UnsafeEnabled && x != nil {
  310. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  311. if ms.LoadMessageInfo() == nil {
  312. ms.StoreMessageInfo(mi)
  313. }
  314. return ms
  315. }
  316. return mi.MessageOf(x)
  317. }
  318. // Deprecated: Use PartnerCollectRequest.ProtoReflect.Descriptor instead.
  319. func (*PartnerCollectRequest) Descriptor() ([]byte, []int) {
  320. return file_partner_proto_rawDescGZIP(), []int{5}
  321. }
  322. func (x *PartnerCollectRequest) GetChatRecordId() int64 {
  323. if x != nil {
  324. return x.ChatRecordId
  325. }
  326. return 0
  327. }
  328. type CreateScripRequest struct {
  329. state protoimpl.MessageState
  330. sizeCache protoimpl.SizeCache
  331. unknownFields protoimpl.UnknownFields
  332. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  333. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  334. }
  335. func (x *CreateScripRequest) Reset() {
  336. *x = CreateScripRequest{}
  337. if protoimpl.UnsafeEnabled {
  338. mi := &file_partner_proto_msgTypes[6]
  339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  340. ms.StoreMessageInfo(mi)
  341. }
  342. }
  343. func (x *CreateScripRequest) String() string {
  344. return protoimpl.X.MessageStringOf(x)
  345. }
  346. func (*CreateScripRequest) ProtoMessage() {}
  347. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  348. mi := &file_partner_proto_msgTypes[6]
  349. if protoimpl.UnsafeEnabled && x != nil {
  350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  351. if ms.LoadMessageInfo() == nil {
  352. ms.StoreMessageInfo(mi)
  353. }
  354. return ms
  355. }
  356. return mi.MessageOf(x)
  357. }
  358. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  359. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  360. return file_partner_proto_rawDescGZIP(), []int{6}
  361. }
  362. func (x *CreateScripRequest) GetText() string {
  363. if x != nil {
  364. return x.Text
  365. }
  366. return ""
  367. }
  368. func (x *CreateScripRequest) GetPictureUrl() string {
  369. if x != nil {
  370. return x.PictureUrl
  371. }
  372. return ""
  373. }
  374. type ReplyScripRequest struct {
  375. state protoimpl.MessageState
  376. sizeCache protoimpl.SizeCache
  377. unknownFields protoimpl.UnknownFields
  378. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  379. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  380. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  381. }
  382. func (x *ReplyScripRequest) Reset() {
  383. *x = ReplyScripRequest{}
  384. if protoimpl.UnsafeEnabled {
  385. mi := &file_partner_proto_msgTypes[7]
  386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  387. ms.StoreMessageInfo(mi)
  388. }
  389. }
  390. func (x *ReplyScripRequest) String() string {
  391. return protoimpl.X.MessageStringOf(x)
  392. }
  393. func (*ReplyScripRequest) ProtoMessage() {}
  394. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  395. mi := &file_partner_proto_msgTypes[7]
  396. if protoimpl.UnsafeEnabled && x != nil {
  397. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  398. if ms.LoadMessageInfo() == nil {
  399. ms.StoreMessageInfo(mi)
  400. }
  401. return ms
  402. }
  403. return mi.MessageOf(x)
  404. }
  405. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  406. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  407. return file_partner_proto_rawDescGZIP(), []int{7}
  408. }
  409. func (x *ReplyScripRequest) GetScripId() int64 {
  410. if x != nil {
  411. return x.ScripId
  412. }
  413. return 0
  414. }
  415. func (x *ReplyScripRequest) GetMessage() *common.Message {
  416. if x != nil {
  417. return x.Message
  418. }
  419. return nil
  420. }
  421. func (x *ReplyScripRequest) GetMsgType() string {
  422. if x != nil {
  423. return x.MsgType
  424. }
  425. return ""
  426. }
  427. type PartnerWithdrawRecordListReply struct {
  428. state protoimpl.MessageState
  429. sizeCache protoimpl.SizeCache
  430. unknownFields protoimpl.UnknownFields
  431. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  432. List []*WithdrawInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  433. }
  434. func (x *PartnerWithdrawRecordListReply) Reset() {
  435. *x = PartnerWithdrawRecordListReply{}
  436. if protoimpl.UnsafeEnabled {
  437. mi := &file_partner_proto_msgTypes[8]
  438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  439. ms.StoreMessageInfo(mi)
  440. }
  441. }
  442. func (x *PartnerWithdrawRecordListReply) String() string {
  443. return protoimpl.X.MessageStringOf(x)
  444. }
  445. func (*PartnerWithdrawRecordListReply) ProtoMessage() {}
  446. func (x *PartnerWithdrawRecordListReply) ProtoReflect() protoreflect.Message {
  447. mi := &file_partner_proto_msgTypes[8]
  448. if protoimpl.UnsafeEnabled && x != nil {
  449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  450. if ms.LoadMessageInfo() == nil {
  451. ms.StoreMessageInfo(mi)
  452. }
  453. return ms
  454. }
  455. return mi.MessageOf(x)
  456. }
  457. // Deprecated: Use PartnerWithdrawRecordListReply.ProtoReflect.Descriptor instead.
  458. func (*PartnerWithdrawRecordListReply) Descriptor() ([]byte, []int) {
  459. return file_partner_proto_rawDescGZIP(), []int{8}
  460. }
  461. func (x *PartnerWithdrawRecordListReply) GetNextId() int64 {
  462. if x != nil {
  463. return x.NextId
  464. }
  465. return 0
  466. }
  467. func (x *PartnerWithdrawRecordListReply) GetList() []*WithdrawInfo {
  468. if x != nil {
  469. return x.List
  470. }
  471. return nil
  472. }
  473. type WithdrawInfo struct {
  474. state protoimpl.MessageState
  475. sizeCache protoimpl.SizeCache
  476. unknownFields protoimpl.UnknownFields
  477. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 记录ID
  478. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  479. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  480. Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status"` // 状态
  481. Result string `protobuf:"bytes,5,opt,name=result,proto3" json:"result"` // 结果
  482. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  483. SuccessTime int64 `protobuf:"varint,7,opt,name=successTime,proto3" json:"successTime"` // 成功时间
  484. }
  485. func (x *WithdrawInfo) Reset() {
  486. *x = WithdrawInfo{}
  487. if protoimpl.UnsafeEnabled {
  488. mi := &file_partner_proto_msgTypes[9]
  489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  490. ms.StoreMessageInfo(mi)
  491. }
  492. }
  493. func (x *WithdrawInfo) String() string {
  494. return protoimpl.X.MessageStringOf(x)
  495. }
  496. func (*WithdrawInfo) ProtoMessage() {}
  497. func (x *WithdrawInfo) ProtoReflect() protoreflect.Message {
  498. mi := &file_partner_proto_msgTypes[9]
  499. if protoimpl.UnsafeEnabled && x != nil {
  500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  501. if ms.LoadMessageInfo() == nil {
  502. ms.StoreMessageInfo(mi)
  503. }
  504. return ms
  505. }
  506. return mi.MessageOf(x)
  507. }
  508. // Deprecated: Use WithdrawInfo.ProtoReflect.Descriptor instead.
  509. func (*WithdrawInfo) Descriptor() ([]byte, []int) {
  510. return file_partner_proto_rawDescGZIP(), []int{9}
  511. }
  512. func (x *WithdrawInfo) GetId() int64 {
  513. if x != nil {
  514. return x.Id
  515. }
  516. return 0
  517. }
  518. func (x *WithdrawInfo) GetMoney() int64 {
  519. if x != nil {
  520. return x.Money
  521. }
  522. return 0
  523. }
  524. func (x *WithdrawInfo) GetCredit() int64 {
  525. if x != nil {
  526. return x.Credit
  527. }
  528. return 0
  529. }
  530. func (x *WithdrawInfo) GetStatus() string {
  531. if x != nil {
  532. return x.Status
  533. }
  534. return ""
  535. }
  536. func (x *WithdrawInfo) GetResult() string {
  537. if x != nil {
  538. return x.Result
  539. }
  540. return ""
  541. }
  542. func (x *WithdrawInfo) GetCreateTime() int64 {
  543. if x != nil {
  544. return x.CreateTime
  545. }
  546. return 0
  547. }
  548. func (x *WithdrawInfo) GetSuccessTime() int64 {
  549. if x != nil {
  550. return x.SuccessTime
  551. }
  552. return 0
  553. }
  554. type PartnerWithdrawTemplateListReply struct {
  555. state protoimpl.MessageState
  556. sizeCache protoimpl.SizeCache
  557. unknownFields protoimpl.UnknownFields
  558. List []*PartnerWithdrawTemplateInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  559. }
  560. func (x *PartnerWithdrawTemplateListReply) Reset() {
  561. *x = PartnerWithdrawTemplateListReply{}
  562. if protoimpl.UnsafeEnabled {
  563. mi := &file_partner_proto_msgTypes[10]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. }
  568. func (x *PartnerWithdrawTemplateListReply) String() string {
  569. return protoimpl.X.MessageStringOf(x)
  570. }
  571. func (*PartnerWithdrawTemplateListReply) ProtoMessage() {}
  572. func (x *PartnerWithdrawTemplateListReply) ProtoReflect() protoreflect.Message {
  573. mi := &file_partner_proto_msgTypes[10]
  574. if protoimpl.UnsafeEnabled && x != nil {
  575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  576. if ms.LoadMessageInfo() == nil {
  577. ms.StoreMessageInfo(mi)
  578. }
  579. return ms
  580. }
  581. return mi.MessageOf(x)
  582. }
  583. // Deprecated: Use PartnerWithdrawTemplateListReply.ProtoReflect.Descriptor instead.
  584. func (*PartnerWithdrawTemplateListReply) Descriptor() ([]byte, []int) {
  585. return file_partner_proto_rawDescGZIP(), []int{10}
  586. }
  587. func (x *PartnerWithdrawTemplateListReply) GetList() []*PartnerWithdrawTemplateInfo {
  588. if x != nil {
  589. return x.List
  590. }
  591. return nil
  592. }
  593. type PartnerWithdrawTemplateInfo struct {
  594. state protoimpl.MessageState
  595. sizeCache protoimpl.SizeCache
  596. unknownFields protoimpl.UnknownFields
  597. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  598. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  599. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  600. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title"` // 提现的标题
  601. }
  602. func (x *PartnerWithdrawTemplateInfo) Reset() {
  603. *x = PartnerWithdrawTemplateInfo{}
  604. if protoimpl.UnsafeEnabled {
  605. mi := &file_partner_proto_msgTypes[11]
  606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  607. ms.StoreMessageInfo(mi)
  608. }
  609. }
  610. func (x *PartnerWithdrawTemplateInfo) String() string {
  611. return protoimpl.X.MessageStringOf(x)
  612. }
  613. func (*PartnerWithdrawTemplateInfo) ProtoMessage() {}
  614. func (x *PartnerWithdrawTemplateInfo) ProtoReflect() protoreflect.Message {
  615. mi := &file_partner_proto_msgTypes[11]
  616. if protoimpl.UnsafeEnabled && x != nil {
  617. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  618. if ms.LoadMessageInfo() == nil {
  619. ms.StoreMessageInfo(mi)
  620. }
  621. return ms
  622. }
  623. return mi.MessageOf(x)
  624. }
  625. // Deprecated: Use PartnerWithdrawTemplateInfo.ProtoReflect.Descriptor instead.
  626. func (*PartnerWithdrawTemplateInfo) Descriptor() ([]byte, []int) {
  627. return file_partner_proto_rawDescGZIP(), []int{11}
  628. }
  629. func (x *PartnerWithdrawTemplateInfo) GetId() int64 {
  630. if x != nil {
  631. return x.Id
  632. }
  633. return 0
  634. }
  635. func (x *PartnerWithdrawTemplateInfo) GetMoney() int64 {
  636. if x != nil {
  637. return x.Money
  638. }
  639. return 0
  640. }
  641. func (x *PartnerWithdrawTemplateInfo) GetCredit() int64 {
  642. if x != nil {
  643. return x.Credit
  644. }
  645. return 0
  646. }
  647. func (x *PartnerWithdrawTemplateInfo) GetTitle() string {
  648. if x != nil {
  649. return x.Title
  650. }
  651. return ""
  652. }
  653. type PartnerUpdateWorkingStatusRequest struct {
  654. state protoimpl.MessageState
  655. sizeCache protoimpl.SizeCache
  656. unknownFields protoimpl.UnknownFields
  657. WorkingStatus string `protobuf:"bytes,1,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  658. }
  659. func (x *PartnerUpdateWorkingStatusRequest) Reset() {
  660. *x = PartnerUpdateWorkingStatusRequest{}
  661. if protoimpl.UnsafeEnabled {
  662. mi := &file_partner_proto_msgTypes[12]
  663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  664. ms.StoreMessageInfo(mi)
  665. }
  666. }
  667. func (x *PartnerUpdateWorkingStatusRequest) String() string {
  668. return protoimpl.X.MessageStringOf(x)
  669. }
  670. func (*PartnerUpdateWorkingStatusRequest) ProtoMessage() {}
  671. func (x *PartnerUpdateWorkingStatusRequest) ProtoReflect() protoreflect.Message {
  672. mi := &file_partner_proto_msgTypes[12]
  673. if protoimpl.UnsafeEnabled && x != nil {
  674. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  675. if ms.LoadMessageInfo() == nil {
  676. ms.StoreMessageInfo(mi)
  677. }
  678. return ms
  679. }
  680. return mi.MessageOf(x)
  681. }
  682. // Deprecated: Use PartnerUpdateWorkingStatusRequest.ProtoReflect.Descriptor instead.
  683. func (*PartnerUpdateWorkingStatusRequest) Descriptor() ([]byte, []int) {
  684. return file_partner_proto_rawDescGZIP(), []int{12}
  685. }
  686. func (x *PartnerUpdateWorkingStatusRequest) GetWorkingStatus() string {
  687. if x != nil {
  688. return x.WorkingStatus
  689. }
  690. return ""
  691. }
  692. type PartnerGetAwardRequest struct {
  693. state protoimpl.MessageState
  694. sizeCache protoimpl.SizeCache
  695. unknownFields protoimpl.UnknownFields
  696. AwardType string `protobuf:"bytes,1,opt,name=awardType,proto3" json:"awardType"` // 奖励类型
  697. PersonID string `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  698. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"` // 类型
  699. }
  700. func (x *PartnerGetAwardRequest) Reset() {
  701. *x = PartnerGetAwardRequest{}
  702. if protoimpl.UnsafeEnabled {
  703. mi := &file_partner_proto_msgTypes[13]
  704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  705. ms.StoreMessageInfo(mi)
  706. }
  707. }
  708. func (x *PartnerGetAwardRequest) String() string {
  709. return protoimpl.X.MessageStringOf(x)
  710. }
  711. func (*PartnerGetAwardRequest) ProtoMessage() {}
  712. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  713. mi := &file_partner_proto_msgTypes[13]
  714. if protoimpl.UnsafeEnabled && x != nil {
  715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  716. if ms.LoadMessageInfo() == nil {
  717. ms.StoreMessageInfo(mi)
  718. }
  719. return ms
  720. }
  721. return mi.MessageOf(x)
  722. }
  723. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  724. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  725. return file_partner_proto_rawDescGZIP(), []int{13}
  726. }
  727. func (x *PartnerGetAwardRequest) GetAwardType() string {
  728. if x != nil {
  729. return x.AwardType
  730. }
  731. return ""
  732. }
  733. func (x *PartnerGetAwardRequest) GetPersonID() string {
  734. if x != nil {
  735. return x.PersonID
  736. }
  737. return ""
  738. }
  739. func (x *PartnerGetAwardRequest) GetPersonType() string {
  740. if x != nil {
  741. return x.PersonType
  742. }
  743. return ""
  744. }
  745. type LevelTable struct {
  746. state protoimpl.MessageState
  747. sizeCache protoimpl.SizeCache
  748. unknownFields protoimpl.UnknownFields
  749. List []*LevelInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  750. }
  751. func (x *LevelTable) Reset() {
  752. *x = LevelTable{}
  753. if protoimpl.UnsafeEnabled {
  754. mi := &file_partner_proto_msgTypes[14]
  755. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  756. ms.StoreMessageInfo(mi)
  757. }
  758. }
  759. func (x *LevelTable) String() string {
  760. return protoimpl.X.MessageStringOf(x)
  761. }
  762. func (*LevelTable) ProtoMessage() {}
  763. func (x *LevelTable) ProtoReflect() protoreflect.Message {
  764. mi := &file_partner_proto_msgTypes[14]
  765. if protoimpl.UnsafeEnabled && x != nil {
  766. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  767. if ms.LoadMessageInfo() == nil {
  768. ms.StoreMessageInfo(mi)
  769. }
  770. return ms
  771. }
  772. return mi.MessageOf(x)
  773. }
  774. // Deprecated: Use LevelTable.ProtoReflect.Descriptor instead.
  775. func (*LevelTable) Descriptor() ([]byte, []int) {
  776. return file_partner_proto_rawDescGZIP(), []int{14}
  777. }
  778. func (x *LevelTable) GetList() []*LevelInfo {
  779. if x != nil {
  780. return x.List
  781. }
  782. return nil
  783. }
  784. type LevelInfo struct {
  785. state protoimpl.MessageState
  786. sizeCache protoimpl.SizeCache
  787. unknownFields protoimpl.UnknownFields
  788. Level int64 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` // 等级
  789. ChatBenefit int64 `protobuf:"varint,2,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  790. CallBenefit int64 `protobuf:"varint,3,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  791. Condition string `protobuf:"bytes,4,opt,name=condition,proto3" json:"condition"` // 达成条件
  792. }
  793. func (x *LevelInfo) Reset() {
  794. *x = LevelInfo{}
  795. if protoimpl.UnsafeEnabled {
  796. mi := &file_partner_proto_msgTypes[15]
  797. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  798. ms.StoreMessageInfo(mi)
  799. }
  800. }
  801. func (x *LevelInfo) String() string {
  802. return protoimpl.X.MessageStringOf(x)
  803. }
  804. func (*LevelInfo) ProtoMessage() {}
  805. func (x *LevelInfo) ProtoReflect() protoreflect.Message {
  806. mi := &file_partner_proto_msgTypes[15]
  807. if protoimpl.UnsafeEnabled && x != nil {
  808. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  809. if ms.LoadMessageInfo() == nil {
  810. ms.StoreMessageInfo(mi)
  811. }
  812. return ms
  813. }
  814. return mi.MessageOf(x)
  815. }
  816. // Deprecated: Use LevelInfo.ProtoReflect.Descriptor instead.
  817. func (*LevelInfo) Descriptor() ([]byte, []int) {
  818. return file_partner_proto_rawDescGZIP(), []int{15}
  819. }
  820. func (x *LevelInfo) GetLevel() int64 {
  821. if x != nil {
  822. return x.Level
  823. }
  824. return 0
  825. }
  826. func (x *LevelInfo) GetChatBenefit() int64 {
  827. if x != nil {
  828. return x.ChatBenefit
  829. }
  830. return 0
  831. }
  832. func (x *LevelInfo) GetCallBenefit() int64 {
  833. if x != nil {
  834. return x.CallBenefit
  835. }
  836. return 0
  837. }
  838. func (x *LevelInfo) GetCondition() string {
  839. if x != nil {
  840. return x.Condition
  841. }
  842. return ""
  843. }
  844. type AddPartnerBalanceRequest struct {
  845. state protoimpl.MessageState
  846. sizeCache protoimpl.SizeCache
  847. unknownFields protoimpl.UnknownFields
  848. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  849. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"`
  850. }
  851. func (x *AddPartnerBalanceRequest) Reset() {
  852. *x = AddPartnerBalanceRequest{}
  853. if protoimpl.UnsafeEnabled {
  854. mi := &file_partner_proto_msgTypes[16]
  855. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  856. ms.StoreMessageInfo(mi)
  857. }
  858. }
  859. func (x *AddPartnerBalanceRequest) String() string {
  860. return protoimpl.X.MessageStringOf(x)
  861. }
  862. func (*AddPartnerBalanceRequest) ProtoMessage() {}
  863. func (x *AddPartnerBalanceRequest) ProtoReflect() protoreflect.Message {
  864. mi := &file_partner_proto_msgTypes[16]
  865. if protoimpl.UnsafeEnabled && x != nil {
  866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  867. if ms.LoadMessageInfo() == nil {
  868. ms.StoreMessageInfo(mi)
  869. }
  870. return ms
  871. }
  872. return mi.MessageOf(x)
  873. }
  874. // Deprecated: Use AddPartnerBalanceRequest.ProtoReflect.Descriptor instead.
  875. func (*AddPartnerBalanceRequest) Descriptor() ([]byte, []int) {
  876. return file_partner_proto_rawDescGZIP(), []int{16}
  877. }
  878. func (x *AddPartnerBalanceRequest) GetPartnerId() string {
  879. if x != nil {
  880. return x.PartnerId
  881. }
  882. return ""
  883. }
  884. func (x *AddPartnerBalanceRequest) GetBalance() int64 {
  885. if x != nil {
  886. return x.Balance
  887. }
  888. return 0
  889. }
  890. type PartnerInfo struct {
  891. state protoimpl.MessageState
  892. sizeCache protoimpl.SizeCache
  893. unknownFields protoimpl.UnknownFields
  894. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  895. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  896. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  897. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  898. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  899. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  900. Level int64 `protobuf:"varint,7,opt,name=level,proto3" json:"level"` // 等级
  901. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  902. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  903. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  904. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  905. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  906. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  907. PartnerId int64 `protobuf:"varint,14,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  908. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  909. WorkingStatus string `protobuf:"bytes,16,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  910. RegisterStatus string `protobuf:"bytes,17,opt,name=registerStatus,proto3" json:"registerStatus"` // 审核状态
  911. }
  912. func (x *PartnerInfo) Reset() {
  913. *x = PartnerInfo{}
  914. if protoimpl.UnsafeEnabled {
  915. mi := &file_partner_proto_msgTypes[17]
  916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  917. ms.StoreMessageInfo(mi)
  918. }
  919. }
  920. func (x *PartnerInfo) String() string {
  921. return protoimpl.X.MessageStringOf(x)
  922. }
  923. func (*PartnerInfo) ProtoMessage() {}
  924. func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
  925. mi := &file_partner_proto_msgTypes[17]
  926. if protoimpl.UnsafeEnabled && x != nil {
  927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  928. if ms.LoadMessageInfo() == nil {
  929. ms.StoreMessageInfo(mi)
  930. }
  931. return ms
  932. }
  933. return mi.MessageOf(x)
  934. }
  935. // Deprecated: Use PartnerInfo.ProtoReflect.Descriptor instead.
  936. func (*PartnerInfo) Descriptor() ([]byte, []int) {
  937. return file_partner_proto_rawDescGZIP(), []int{17}
  938. }
  939. func (x *PartnerInfo) GetId() string {
  940. if x != nil {
  941. return x.Id
  942. }
  943. return ""
  944. }
  945. func (x *PartnerInfo) GetNickname() string {
  946. if x != nil {
  947. return x.Nickname
  948. }
  949. return ""
  950. }
  951. func (x *PartnerInfo) GetAvatarUrl() string {
  952. if x != nil {
  953. return x.AvatarUrl
  954. }
  955. return ""
  956. }
  957. func (x *PartnerInfo) GetAge() int64 {
  958. if x != nil {
  959. return x.Age
  960. }
  961. return 0
  962. }
  963. func (x *PartnerInfo) GetSex() int64 {
  964. if x != nil {
  965. return x.Sex
  966. }
  967. return 0
  968. }
  969. func (x *PartnerInfo) GetConstellation() string {
  970. if x != nil {
  971. return x.Constellation
  972. }
  973. return ""
  974. }
  975. func (x *PartnerInfo) GetLevel() int64 {
  976. if x != nil {
  977. return x.Level
  978. }
  979. return 0
  980. }
  981. func (x *PartnerInfo) GetTagList() []int64 {
  982. if x != nil {
  983. return x.TagList
  984. }
  985. return nil
  986. }
  987. func (x *PartnerInfo) GetSignature() string {
  988. if x != nil {
  989. return x.Signature
  990. }
  991. return ""
  992. }
  993. func (x *PartnerInfo) GetIntroduceVoice() string {
  994. if x != nil {
  995. return x.IntroduceVoice
  996. }
  997. return ""
  998. }
  999. func (x *PartnerInfo) GetProvince() string {
  1000. if x != nil {
  1001. return x.Province
  1002. }
  1003. return ""
  1004. }
  1005. func (x *PartnerInfo) GetCity() string {
  1006. if x != nil {
  1007. return x.City
  1008. }
  1009. return ""
  1010. }
  1011. func (x *PartnerInfo) GetArea() string {
  1012. if x != nil {
  1013. return x.Area
  1014. }
  1015. return ""
  1016. }
  1017. func (x *PartnerInfo) GetPartnerId() int64 {
  1018. if x != nil {
  1019. return x.PartnerId
  1020. }
  1021. return 0
  1022. }
  1023. func (x *PartnerInfo) GetIsBlack() bool {
  1024. if x != nil {
  1025. return x.IsBlack
  1026. }
  1027. return false
  1028. }
  1029. func (x *PartnerInfo) GetWorkingStatus() string {
  1030. if x != nil {
  1031. return x.WorkingStatus
  1032. }
  1033. return ""
  1034. }
  1035. func (x *PartnerInfo) GetRegisterStatus() string {
  1036. if x != nil {
  1037. return x.RegisterStatus
  1038. }
  1039. return ""
  1040. }
  1041. type PartnerMessage struct {
  1042. state protoimpl.MessageState
  1043. sizeCache protoimpl.SizeCache
  1044. unknownFields protoimpl.UnknownFields
  1045. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1046. LookNum int64 `protobuf:"varint,2,opt,name=lookNum,proto3" json:"lookNum"` // 看过我的数量
  1047. LookUnreadNum int64 `protobuf:"varint,3,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 未读的看过我的数量
  1048. TodayReceptionNum int64 `protobuf:"varint,4,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` // 今日接待人数
  1049. ReversionRate string `protobuf:"bytes,5,opt,name=reversionRate,proto3" json:"reversionRate"` // 五分钟的回复率
  1050. }
  1051. func (x *PartnerMessage) Reset() {
  1052. *x = PartnerMessage{}
  1053. if protoimpl.UnsafeEnabled {
  1054. mi := &file_partner_proto_msgTypes[18]
  1055. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1056. ms.StoreMessageInfo(mi)
  1057. }
  1058. }
  1059. func (x *PartnerMessage) String() string {
  1060. return protoimpl.X.MessageStringOf(x)
  1061. }
  1062. func (*PartnerMessage) ProtoMessage() {}
  1063. func (x *PartnerMessage) ProtoReflect() protoreflect.Message {
  1064. mi := &file_partner_proto_msgTypes[18]
  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 PartnerMessage.ProtoReflect.Descriptor instead.
  1075. func (*PartnerMessage) Descriptor() ([]byte, []int) {
  1076. return file_partner_proto_rawDescGZIP(), []int{18}
  1077. }
  1078. func (x *PartnerMessage) GetId() string {
  1079. if x != nil {
  1080. return x.Id
  1081. }
  1082. return ""
  1083. }
  1084. func (x *PartnerMessage) GetLookNum() int64 {
  1085. if x != nil {
  1086. return x.LookNum
  1087. }
  1088. return 0
  1089. }
  1090. func (x *PartnerMessage) GetLookUnreadNum() int64 {
  1091. if x != nil {
  1092. return x.LookUnreadNum
  1093. }
  1094. return 0
  1095. }
  1096. func (x *PartnerMessage) GetTodayReceptionNum() int64 {
  1097. if x != nil {
  1098. return x.TodayReceptionNum
  1099. }
  1100. return 0
  1101. }
  1102. func (x *PartnerMessage) GetReversionRate() string {
  1103. if x != nil {
  1104. return x.ReversionRate
  1105. }
  1106. return ""
  1107. }
  1108. type PartnerBalance struct {
  1109. state protoimpl.MessageState
  1110. sizeCache protoimpl.SizeCache
  1111. unknownFields protoimpl.UnknownFields
  1112. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1113. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"` // 可提现余额
  1114. TodayProfit int64 `protobuf:"varint,3,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  1115. Level int64 `protobuf:"varint,4,opt,name=level,proto3" json:"level"` // 等级
  1116. ChatBenefit int64 `protobuf:"varint,5,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1117. CallBenefit int64 `protobuf:"varint,6,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1118. UpLevelCondition string `protobuf:"bytes,7,opt,name=upLevelCondition,proto3" json:"upLevelCondition"` // 升级条件
  1119. UpLevelBenefit int64 `protobuf:"varint,8,opt,name=upLevelBenefit,proto3" json:"upLevelBenefit"` // 升级需要的收益
  1120. CumulativeIncome int64 `protobuf:"varint,9,opt,name=cumulativeIncome,proto3" json:"cumulativeIncome"` // 累计收益
  1121. }
  1122. func (x *PartnerBalance) Reset() {
  1123. *x = PartnerBalance{}
  1124. if protoimpl.UnsafeEnabled {
  1125. mi := &file_partner_proto_msgTypes[19]
  1126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1127. ms.StoreMessageInfo(mi)
  1128. }
  1129. }
  1130. func (x *PartnerBalance) String() string {
  1131. return protoimpl.X.MessageStringOf(x)
  1132. }
  1133. func (*PartnerBalance) ProtoMessage() {}
  1134. func (x *PartnerBalance) ProtoReflect() protoreflect.Message {
  1135. mi := &file_partner_proto_msgTypes[19]
  1136. if protoimpl.UnsafeEnabled && x != nil {
  1137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1138. if ms.LoadMessageInfo() == nil {
  1139. ms.StoreMessageInfo(mi)
  1140. }
  1141. return ms
  1142. }
  1143. return mi.MessageOf(x)
  1144. }
  1145. // Deprecated: Use PartnerBalance.ProtoReflect.Descriptor instead.
  1146. func (*PartnerBalance) Descriptor() ([]byte, []int) {
  1147. return file_partner_proto_rawDescGZIP(), []int{19}
  1148. }
  1149. func (x *PartnerBalance) GetId() string {
  1150. if x != nil {
  1151. return x.Id
  1152. }
  1153. return ""
  1154. }
  1155. func (x *PartnerBalance) GetBalance() int64 {
  1156. if x != nil {
  1157. return x.Balance
  1158. }
  1159. return 0
  1160. }
  1161. func (x *PartnerBalance) GetTodayProfit() int64 {
  1162. if x != nil {
  1163. return x.TodayProfit
  1164. }
  1165. return 0
  1166. }
  1167. func (x *PartnerBalance) GetLevel() int64 {
  1168. if x != nil {
  1169. return x.Level
  1170. }
  1171. return 0
  1172. }
  1173. func (x *PartnerBalance) GetChatBenefit() int64 {
  1174. if x != nil {
  1175. return x.ChatBenefit
  1176. }
  1177. return 0
  1178. }
  1179. func (x *PartnerBalance) GetCallBenefit() int64 {
  1180. if x != nil {
  1181. return x.CallBenefit
  1182. }
  1183. return 0
  1184. }
  1185. func (x *PartnerBalance) GetUpLevelCondition() string {
  1186. if x != nil {
  1187. return x.UpLevelCondition
  1188. }
  1189. return ""
  1190. }
  1191. func (x *PartnerBalance) GetUpLevelBenefit() int64 {
  1192. if x != nil {
  1193. return x.UpLevelBenefit
  1194. }
  1195. return 0
  1196. }
  1197. func (x *PartnerBalance) GetCumulativeIncome() int64 {
  1198. if x != nil {
  1199. return x.CumulativeIncome
  1200. }
  1201. return 0
  1202. }
  1203. type PartnerDBBalance struct {
  1204. state protoimpl.MessageState
  1205. sizeCache protoimpl.SizeCache
  1206. unknownFields protoimpl.UnknownFields
  1207. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1208. Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level"` // 等级
  1209. ChatBenefit int64 `protobuf:"varint,3,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1210. CallBenefit int64 `protobuf:"varint,4,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1211. }
  1212. func (x *PartnerDBBalance) Reset() {
  1213. *x = PartnerDBBalance{}
  1214. if protoimpl.UnsafeEnabled {
  1215. mi := &file_partner_proto_msgTypes[20]
  1216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1217. ms.StoreMessageInfo(mi)
  1218. }
  1219. }
  1220. func (x *PartnerDBBalance) String() string {
  1221. return protoimpl.X.MessageStringOf(x)
  1222. }
  1223. func (*PartnerDBBalance) ProtoMessage() {}
  1224. func (x *PartnerDBBalance) ProtoReflect() protoreflect.Message {
  1225. mi := &file_partner_proto_msgTypes[20]
  1226. if protoimpl.UnsafeEnabled && x != nil {
  1227. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1228. if ms.LoadMessageInfo() == nil {
  1229. ms.StoreMessageInfo(mi)
  1230. }
  1231. return ms
  1232. }
  1233. return mi.MessageOf(x)
  1234. }
  1235. // Deprecated: Use PartnerDBBalance.ProtoReflect.Descriptor instead.
  1236. func (*PartnerDBBalance) Descriptor() ([]byte, []int) {
  1237. return file_partner_proto_rawDescGZIP(), []int{20}
  1238. }
  1239. func (x *PartnerDBBalance) GetId() string {
  1240. if x != nil {
  1241. return x.Id
  1242. }
  1243. return ""
  1244. }
  1245. func (x *PartnerDBBalance) GetLevel() int64 {
  1246. if x != nil {
  1247. return x.Level
  1248. }
  1249. return 0
  1250. }
  1251. func (x *PartnerDBBalance) GetChatBenefit() int64 {
  1252. if x != nil {
  1253. return x.ChatBenefit
  1254. }
  1255. return 0
  1256. }
  1257. func (x *PartnerDBBalance) GetCallBenefit() int64 {
  1258. if x != nil {
  1259. return x.CallBenefit
  1260. }
  1261. return 0
  1262. }
  1263. type PartnerApplyWithdrawRequest struct {
  1264. state protoimpl.MessageState
  1265. sizeCache protoimpl.SizeCache
  1266. unknownFields protoimpl.UnknownFields
  1267. TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 提现模板id
  1268. }
  1269. func (x *PartnerApplyWithdrawRequest) Reset() {
  1270. *x = PartnerApplyWithdrawRequest{}
  1271. if protoimpl.UnsafeEnabled {
  1272. mi := &file_partner_proto_msgTypes[21]
  1273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1274. ms.StoreMessageInfo(mi)
  1275. }
  1276. }
  1277. func (x *PartnerApplyWithdrawRequest) String() string {
  1278. return protoimpl.X.MessageStringOf(x)
  1279. }
  1280. func (*PartnerApplyWithdrawRequest) ProtoMessage() {}
  1281. func (x *PartnerApplyWithdrawRequest) ProtoReflect() protoreflect.Message {
  1282. mi := &file_partner_proto_msgTypes[21]
  1283. if protoimpl.UnsafeEnabled && x != nil {
  1284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1285. if ms.LoadMessageInfo() == nil {
  1286. ms.StoreMessageInfo(mi)
  1287. }
  1288. return ms
  1289. }
  1290. return mi.MessageOf(x)
  1291. }
  1292. // Deprecated: Use PartnerApplyWithdrawRequest.ProtoReflect.Descriptor instead.
  1293. func (*PartnerApplyWithdrawRequest) Descriptor() ([]byte, []int) {
  1294. return file_partner_proto_rawDescGZIP(), []int{21}
  1295. }
  1296. func (x *PartnerApplyWithdrawRequest) GetTemplateId() int64 {
  1297. if x != nil {
  1298. return x.TemplateId
  1299. }
  1300. return 0
  1301. }
  1302. var File_partner_proto protoreflect.FileDescriptor
  1303. var file_partner_proto_rawDesc = []byte{
  1304. 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  1305. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
  1306. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  1307. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
  1308. 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
  1309. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  1310. 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1311. 0x1a, 0x1f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
  1312. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1313. 0x6f, 0x1a, 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74,
  1314. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5c, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78,
  1315. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16,
  1316. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1317. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02,
  1318. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1319. 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  1320. 0x6c, 0x69, 0x73, 0x74, 0x22, 0xd9, 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1321. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  1322. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1323. 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  1324. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  1325. 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  1326. 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x26, 0x0a, 0x0e,
  1327. 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x04,
  1328. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  1329. 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
  1330. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  1331. 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06,
  1332. 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10,
  1333. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  1334. 0x22, 0x4d, 0x0a, 0x15, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1335. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
  1336. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
  1337. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x50, 0x61, 0x73,
  1338. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x22,
  1339. 0x6d, 0x0a, 0x29, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f,
  1340. 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79,
  1341. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20, 0x0a, 0x0b,
  1342. 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  1343. 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x1e,
  1344. 0x0a, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01,
  1345. 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x58,
  1346. 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  1347. 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x68,
  1348. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
  1349. 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73,
  1350. 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1351. 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x3b, 0x0a, 0x15, 0x50, 0x61, 0x72, 0x74,
  1352. 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1353. 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49,
  1354. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  1355. 0x6f, 0x72, 0x64, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
  1356. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74,
  1357. 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12,
  1358. 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20,
  1359. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22,
  1360. 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  1361. 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18,
  1362. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d,
  1363. 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1364. 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73,
  1365. 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a,
  1366. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  1367. 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x67, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1368. 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  1369. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78,
  1370. 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  1371. 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1372. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x57, 0x69,
  1373. 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1374. 0x22, 0xbe, 0x01, 0x0a, 0x0c, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66,
  1375. 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
  1376. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1377. 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  1378. 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  1379. 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  1380. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
  1381. 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
  1382. 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20,
  1383. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12,
  1384. 0x20, 0x0a, 0x0b, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07,
  1385. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x69, 0x6d,
  1386. 0x65, 0x22, 0x60, 0x0a, 0x20, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68,
  1387. 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74,
  1388. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x3c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  1389. 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1390. 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61,
  1391. 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
  1392. 0x69, 0x73, 0x74, 0x22, 0x71, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69,
  1393. 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e,
  1394. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1395. 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28,
  1396. 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64,
  1397. 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  1398. 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  1399. 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x49, 0x0a, 0x21, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1400. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74,
  1401. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77,
  1402. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01,
  1403. 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75,
  1404. 0x73, 0x22, 0x72, 0x0a, 0x16, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41,
  1405. 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  1406. 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1407. 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  1408. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  1409. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54,
  1410. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f,
  1411. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x38, 0x0a, 0x0a, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61,
  1412. 0x62, 0x6c, 0x65, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  1413. 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e,
  1414. 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  1415. 0x83, 0x01, 0x0a, 0x09, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a,
  1416. 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65,
  1417. 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66,
  1418. 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65,
  1419. 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e,
  1420. 0x65, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c,
  1421. 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69,
  1422. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64,
  1423. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x52, 0x0a, 0x18, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74,
  1424. 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1425. 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  1426. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12,
  1427. 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1428. 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0xe1, 0x03, 0x0a, 0x0b, 0x50, 0x61,
  1429. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1430. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  1431. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  1432. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1433. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  1434. 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  1435. 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01,
  1436. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74,
  1437. 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  1438. 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a,
  1439. 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65,
  1440. 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08,
  1441. 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a,
  1442. 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  1443. 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69,
  1444. 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20,
  1445. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f,
  1446. 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18,
  1447. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12,
  1448. 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63,
  1449. 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28,
  1450. 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1451. 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74,
  1452. 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b,
  1453. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12,
  1454. 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1455. 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53,
  1456. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  1457. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x72,
  1458. 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb4, 0x01,
  1459. 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  1460. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  1461. 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
  1462. 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f,
  1463. 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28,
  1464. 0x03, 0x52, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
  1465. 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69,
  1466. 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x64,
  1467. 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x24,
  1468. 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x18,
  1469. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  1470. 0x52, 0x61, 0x74, 0x65, 0x22, 0xb6, 0x02, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1471. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  1472. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e,
  1473. 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  1474. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74,
  1475. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f,
  1476. 0x66, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01,
  1477. 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61,
  1478. 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  1479. 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63,
  1480. 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  1481. 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a,
  1482. 0x10, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
  1483. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
  1484. 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x70, 0x4c,
  1485. 0x65, 0x76, 0x65, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28,
  1486. 0x03, 0x52, 0x0e, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69,
  1487. 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49,
  1488. 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x75, 0x6d,
  1489. 0x75, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x22, 0x7c, 0x0a,
  1490. 0x10, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  1491. 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  1492. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1493. 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42,
  1494. 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68,
  1495. 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c,
  1496. 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  1497. 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x22, 0x3d, 0x0a, 0x1b, 0x50,
  1498. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64,
  1499. 0x72, 0x61, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65,
  1500. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  1501. 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x32, 0xc3, 0x38, 0x0a, 0x07, 0x50,
  1502. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x60, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72,
  1503. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1504. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1505. 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50,
  1506. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93,
  1507. 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1508. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64,
  1509. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1510. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  1511. 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1512. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1513. 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70,
  1514. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73,
  1515. 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50,
  1516. 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1517. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  1518. 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1519. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1520. 0x70, 0x74, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70,
  1521. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63,
  1522. 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61,
  1523. 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  1524. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1525. 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1526. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1527. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1528. 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69,
  1529. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f,
  1530. 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x72,
  1531. 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74,
  1532. 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1533. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52,
  1534. 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1535. 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82,
  1536. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  1537. 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a,
  1538. 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1539. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1540. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  1541. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61,
  1542. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1f, 0x82, 0xd3,
  1543. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1544. 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x61, 0x0a,
  1545. 0x12, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49,
  1546. 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1547. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61,
  1548. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e,
  1549. 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69,
  1550. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a,
  1551. 0x12, 0x75, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65,
  1552. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b,
  1553. 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1554. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70,
  1555. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41,
  1556. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93,
  1557. 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1558. 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c,
  1559. 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1560. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  1561. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69,
  1562. 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b,
  1563. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93,
  1564. 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1565. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a,
  1566. 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1567. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a,
  1568. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f,
  1569. 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93,
  1570. 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64,
  1571. 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x62, 0x0a, 0x10, 0x46,
  1572. 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12,
  1573. 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78,
  1574. 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1575. 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82,
  1576. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  1577. 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12,
  1578. 0x79, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  1579. 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1580. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1581. 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63,
  1582. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  1583. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f,
  1584. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  1585. 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x87, 0x01, 0x0a, 0x1a, 0x46,
  1586. 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61,
  1587. 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1588. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52,
  1589. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61,
  1590. 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f,
  1591. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93,
  1592. 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1593. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69,
  1594. 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65,
  1595. 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
  1596. 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1597. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22,
  1598. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1599. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1600. 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69,
  1601. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68,
  1602. 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x12, 0x46,
  1603. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73,
  1604. 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46,
  1605. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73,
  1606. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1607. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  1608. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1609. 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  1610. 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x75,
  1611. 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73,
  1612. 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46,
  1613. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65,
  1614. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1615. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x25,
  1616. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  1617. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d,
  1618. 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74,
  1619. 0x6e, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1620. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  1621. 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1622. 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13,
  1623. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c,
  1624. 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65,
  1625. 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1626. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1627. 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  1628. 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22,
  1629. 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69,
  1630. 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  1631. 0x70, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63,
  1632. 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  1633. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65,
  1634. 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1635. 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82,
  1636. 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  1637. 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01,
  1638. 0x2a, 0x12, 0x69, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12,
  1639. 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e,
  1640. 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1641. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69,
  1642. 0x73, 0x74, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69,
  1643. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65,
  1644. 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x78, 0x0a, 0x12,
  1645. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1646. 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1647. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a,
  1648. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d,
  1649. 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x29, 0x82, 0xd3, 0xe4,
  1650. 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1651. 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e,
  1652. 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65,
  1653. 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1654. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  1655. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d,
  1656. 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
  1657. 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1658. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65,
  1659. 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65,
  1660. 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1661. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  1662. 0x61, 0x6d, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1663. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49,
  1664. 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70,
  1665. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63,
  1666. 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  1667. 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67,
  1668. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1669. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1670. 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22,
  1671. 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  1672. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  1673. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74,
  1674. 0x6e, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1675. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1676. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1677. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16,
  1678. 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c,
  1679. 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x60, 0x0a, 0x0d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1680. 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1681. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  1682. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1683. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18,
  1684. 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x75,
  1685. 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f,
  1686. 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1687. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1688. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1689. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1690. 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  1691. 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x16, 0x46, 0x69,
  1692. 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76,
  1693. 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1694. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61,
  1695. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76,
  1696. 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  1697. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f,
  1698. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72,
  1699. 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  1700. 0x7c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72,
  1701. 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1702. 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69,
  1703. 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1704. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1705. 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  1706. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c,
  1707. 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a,
  1708. 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1f, 0x2e, 0x61,
  1709. 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
  1710. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  1711. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70,
  1712. 0x49, 0x44, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69,
  1713. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63,
  1714. 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65,
  1715. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1716. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
  1717. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1718. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4,
  1719. 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1720. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01,
  1721. 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  1722. 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  1723. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  1724. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70,
  1725. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f,
  1726. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69,
  1727. 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x70,
  1728. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70,
  1729. 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69,
  1730. 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  1731. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69,
  1732. 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d,
  1733. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72,
  1734. 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a,
  1735. 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  1736. 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1737. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  1738. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1739. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4,
  1740. 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1741. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63,
  1742. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0f, 0x50, 0x65, 0x72,
  1743. 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61,
  1744. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  1745. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1746. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1747. 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1748. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f,
  1749. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c,
  1750. 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  1751. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1752. 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1753. 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
  1754. 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1755. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b,
  1756. 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70,
  1757. 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  1758. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  1759. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1760. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49,
  1761. 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70,
  1762. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  1763. 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x11, 0x50, 0x61, 0x72, 0x74,
  1764. 0x6e, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e,
  1765. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49,
  1766. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1767. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1768. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1769. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65,
  1770. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1771. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  1772. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c,
  1773. 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  1774. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1775. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14,
  1776. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6c,
  1777. 0x6c, 0x65, 0x63, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7a, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1778. 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12,
  1779. 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61,
  1780. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75,
  1781. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1782. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4,
  1783. 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1784. 0x72, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
  1785. 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  1786. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70,
  1787. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  1788. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  1789. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1790. 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1791. 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  1792. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  1793. 0x74, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x11, 0x47, 0x65, 0x74,
  1794. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16,
  1795. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1796. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72,
  1797. 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73,
  1798. 0x61, 0x67, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  1799. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1800. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1801. 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1802. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1803. 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  1804. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,
  1805. 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  1806. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x6f,
  1807. 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x6e,
  1808. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e,
  1809. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50,
  1810. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69,
  1811. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e,
  1812. 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29,
  1813. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  1814. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75,
  1815. 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x47, 0x65, 0x74,
  1816. 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x61, 0x62, 0x6c,
  1817. 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1818. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1819. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62,
  1820. 0x6c, 0x65, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69,
  1821. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2f, 0x74,
  1822. 0x61, 0x62, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1823. 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69,
  1824. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1825. 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1826. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1827. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22,
  1828. 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68,
  1829. 0x61, 0x74, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x93, 0x01, 0x0a, 0x1a,
  1830. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f, 0x72,
  1831. 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69,
  1832. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1833. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61,
  1834. 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1835. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1836. 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69,
  1837. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  1838. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01,
  1839. 0x2a, 0x12, 0x73, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1840. 0x79, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1841. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61,
  1842. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52,
  1843. 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3,
  1844. 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1845. 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x2f,
  1846. 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x7a, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1847. 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x12, 0x28,
  1848. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72,
  1849. 0x74, 0x6e, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61,
  1850. 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1851. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1852. 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1853. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x3a,
  1854. 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69,
  1855. 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69,
  1856. 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1857. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69,
  1858. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1859. 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  1860. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1861. 0x28, 0x22, 0x23, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  1862. 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x2f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  1863. 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x93, 0x01, 0x0a, 0x19, 0x50, 0x61,
  1864. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x63,
  1865. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1866. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  1867. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1868. 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72,
  1869. 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1870. 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1871. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  1872. 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  1873. 0x9f, 0x01, 0x0a, 0x24, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f,
  1874. 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61,
  1875. 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1876. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  1877. 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1878. 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d,
  1879. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x42,
  1880. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4,
  1881. 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1882. 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01,
  1883. 0x2a, 0x12, 0x71, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x67, 0x69,
  1884. 0x73, 0x74, 0x65, 0x72, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1885. 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1886. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1887. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1888. 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69,
  1889. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  1890. 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61,
  1891. 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1892. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52,
  1893. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72,
  1894. 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1895. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1896. 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  1897. 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1898. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d,
  1899. 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69,
  1900. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1901. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  1902. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1903. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d,
  1904. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x67,
  1905. 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a,
  1906. 0x12, 0x66, 0x0a, 0x0c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
  1907. 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  1908. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1909. 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1910. 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1911. 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f,
  1912. 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x43, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x50,
  1913. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70,
  1914. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1915. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1916. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x48, 0x0a,
  1917. 0x11, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69,
  1918. 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1919. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61,
  1920. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1921. 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74,
  1922. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26,
  1923. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61,
  1924. 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52,
  1925. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1926. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  1927. 0x12, 0x5b, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  1928. 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20,
  1929. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  1930. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1931. 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  1932. 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a,
  1933. 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x61,
  1934. 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70,
  1935. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  1936. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1937. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  1938. 0x12, 0x52, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42,
  1939. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1940. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61,
  1941. 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1942. 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  1943. 0x63, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1944. 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1945. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1946. 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1947. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1948. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x14, 0x47, 0x65,
  1949. 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e,
  1950. 0x66, 0x6f, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1951. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x20,
  1952. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46,
  1953. 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  1954. 0x42, 0x46, 0x0a, 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50,
  1955. 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f,
  1956. 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74,
  1957. 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1958. 0x3b, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1959. }
  1960. var (
  1961. file_partner_proto_rawDescOnce sync.Once
  1962. file_partner_proto_rawDescData = file_partner_proto_rawDesc
  1963. )
  1964. func file_partner_proto_rawDescGZIP() []byte {
  1965. file_partner_proto_rawDescOnce.Do(func() {
  1966. file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
  1967. })
  1968. return file_partner_proto_rawDescData
  1969. }
  1970. var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
  1971. var file_partner_proto_goTypes = []interface{}{
  1972. (*FindExamineListReply)(nil), // 0: api.partner.FindExamineListReply
  1973. (*ExamineInfo)(nil), // 1: api.partner.ExamineInfo
  1974. (*ExaminePartnerRequest)(nil), // 2: api.partner.ExaminePartnerRequest
  1975. (*PartnerGetRoomBalanceAndTodayBalanceReply)(nil), // 3: api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
  1976. (*PartnerCollectIDsRequest)(nil), // 4: api.partner.PartnerCollectIDsRequest
  1977. (*PartnerCollectRequest)(nil), // 5: api.partner.PartnerCollectRequest
  1978. (*CreateScripRequest)(nil), // 6: api.partner.CreateScripRequest
  1979. (*ReplyScripRequest)(nil), // 7: api.partner.ReplyScripRequest
  1980. (*PartnerWithdrawRecordListReply)(nil), // 8: api.partner.PartnerWithdrawRecordListReply
  1981. (*WithdrawInfo)(nil), // 9: api.partner.WithdrawInfo
  1982. (*PartnerWithdrawTemplateListReply)(nil), // 10: api.partner.PartnerWithdrawTemplateListReply
  1983. (*PartnerWithdrawTemplateInfo)(nil), // 11: api.partner.PartnerWithdrawTemplateInfo
  1984. (*PartnerUpdateWorkingStatusRequest)(nil), // 12: api.partner.PartnerUpdateWorkingStatusRequest
  1985. (*PartnerGetAwardRequest)(nil), // 13: api.partner.PartnerGetAwardRequest
  1986. (*LevelTable)(nil), // 14: api.partner.LevelTable
  1987. (*LevelInfo)(nil), // 15: api.partner.LevelInfo
  1988. (*AddPartnerBalanceRequest)(nil), // 16: api.partner.AddPartnerBalanceRequest
  1989. (*PartnerInfo)(nil), // 17: api.partner.PartnerInfo
  1990. (*PartnerMessage)(nil), // 18: api.partner.PartnerMessage
  1991. (*PartnerBalance)(nil), // 19: api.partner.PartnerBalance
  1992. (*PartnerDBBalance)(nil), // 20: api.partner.PartnerDBBalance
  1993. (*PartnerApplyWithdrawRequest)(nil), // 21: api.partner.PartnerApplyWithdrawRequest
  1994. (*common.Message)(nil), // 22: api.common.Message
  1995. (*emptypb.Empty)(nil), // 23: google.protobuf.Empty
  1996. (*common.SendPhoneCodeRequest)(nil), // 24: api.common.SendPhoneCodeRequest
  1997. (*common.CheckPhoneCodeRequest)(nil), // 25: api.common.CheckPhoneCodeRequest
  1998. (*common.UpdateInformationRequest)(nil), // 26: api.common.UpdateInformationRequest
  1999. (*common.CreateChatRoomParam)(nil), // 27: api.common.CreateChatRoomParam
  2000. (*common.PersonParam)(nil), // 28: api.common.PersonParam
  2001. (*common.ListPageRequest)(nil), // 29: api.common.ListPageRequest
  2002. (*common.WxConfReq)(nil), // 30: api.common.WxConfReq
  2003. (*common.SexReq)(nil), // 31: api.common.SexReq
  2004. (*common.ListPage2Request)(nil), // 32: api.common.ListPage2Request
  2005. (*common.FindChatRecordListRequest)(nil), // 33: api.common.FindChatRecordListRequest
  2006. (*common.FindChatRoomMsgRequest)(nil), // 34: api.common.FindChatRoomMsgRequest
  2007. (*common.MemeRequest)(nil), // 35: api.common.MemeRequest
  2008. (*common.FindChatTopicRequest)(nil), // 36: api.common.FindChatTopicRequest
  2009. (*common.RandomNum)(nil), // 37: api.common.RandomNum
  2010. (*common.RandomNumAndSex)(nil), // 38: api.common.RandomNumAndSex
  2011. (*common.ReportChatRequest)(nil), // 39: api.common.ReportChatRequest
  2012. (*common.UpdateLastScripIDRequest)(nil), // 40: api.common.UpdateLastScripIDRequest
  2013. (*common.ScripIdRequest)(nil), // 41: api.common.ScripIdRequest
  2014. (*common.FindScripRequest)(nil), // 42: api.common.FindScripRequest
  2015. (*common.RoomIDRequest)(nil), // 43: api.common.RoomIDRequest
  2016. (*common.ManagerLoginRequest)(nil), // 44: api.common.ManagerLoginRequest
  2017. (*common.PersonIDParam)(nil), // 45: api.common.PersonIDParam
  2018. (*common.PersonIDList)(nil), // 46: api.common.PersonIDList
  2019. (*common.UpdateLastScripIDDBRequest)(nil), // 47: api.common.UpdateLastScripIDDBRequest
  2020. (*common.FindRecommendRequest)(nil), // 48: api.common.FindRecommendRequest
  2021. (*common.PartnerIDParam)(nil), // 49: api.common.PartnerIDParam
  2022. (*chat.RoomReply)(nil), // 50: api.chat.RoomReply
  2023. (*common.HomeInfo)(nil), // 51: api.common.HomeInfo
  2024. (*common.LookedAndLikedNum)(nil), // 52: api.common.LookedAndLikedNum
  2025. (*statistics.LookAndLikeListReply)(nil), // 53: api.statistics.LookAndLikeListReply
  2026. (*common.WxConfResponse)(nil), // 54: api.common.WxConfResponse
  2027. (*common.TagListReply)(nil), // 55: api.common.TagListReply
  2028. (*common.RecommendPersonListReply)(nil), // 56: api.common.RecommendPersonListReply
  2029. (*chat.PartnerFindRoomListReply)(nil), // 57: api.chat.PartnerFindRoomListReply
  2030. (*common.ChatRecordListReply)(nil), // 58: api.common.ChatRecordListReply
  2031. (*common.ChatRoomMsg)(nil), // 59: api.common.ChatRoomMsg
  2032. (*common.IsLike)(nil), // 60: api.common.IsLike
  2033. (*common.MemeList)(nil), // 61: api.common.MemeList
  2034. (*common.ChatTopicList)(nil), // 62: api.common.ChatTopicList
  2035. (*common.CommonTextList)(nil), // 63: api.common.CommonTextList
  2036. (*common.MemeTitleList)(nil), // 64: api.common.MemeTitleList
  2037. (*common.PartnerChatCardInfo)(nil), // 65: api.common.PartnerChatCardInfo
  2038. (*common.FindOverSevenDayAvatarReply)(nil), // 66: api.common.FindOverSevenDayAvatarReply
  2039. (*common.ScripID)(nil), // 67: api.common.ScripID
  2040. (*common.ScripReply)(nil), // 68: api.common.ScripReply
  2041. (*common.ScripInfo)(nil), // 69: api.common.ScripInfo
  2042. (*common.ChatRecordInfo)(nil), // 70: api.common.ChatRecordInfo
  2043. (*statistics.LookMessageReply)(nil), // 71: api.statistics.LookMessageReply
  2044. (*chat.FindNotReplyNumReply)(nil), // 72: api.chat.FindNotReplyNumReply
  2045. (*common.LoginToken)(nil), // 73: api.common.LoginToken
  2046. (*common.PersonMsg)(nil), // 74: api.common.PersonMsg
  2047. (*common.PersonDBReply)(nil), // 75: api.common.PersonDBReply
  2048. (*common.AddFriendMessageInfo)(nil), // 76: api.common.AddFriendMessageInfo
  2049. }
  2050. var file_partner_proto_depIdxs = []int32{
  2051. 1, // 0: api.partner.FindExamineListReply.list:type_name -> api.partner.ExamineInfo
  2052. 22, // 1: api.partner.ReplyScripRequest.message:type_name -> api.common.Message
  2053. 9, // 2: api.partner.PartnerWithdrawRecordListReply.list:type_name -> api.partner.WithdrawInfo
  2054. 11, // 3: api.partner.PartnerWithdrawTemplateListReply.list:type_name -> api.partner.PartnerWithdrawTemplateInfo
  2055. 15, // 4: api.partner.LevelTable.list:type_name -> api.partner.LevelInfo
  2056. 23, // 5: api.partner.Partner.GetPartnerInfo:input_type -> google.protobuf.Empty
  2057. 24, // 6: api.partner.Partner.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2058. 25, // 7: api.partner.Partner.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2059. 26, // 8: api.partner.Partner.UpdatePartnerInformation:input_type -> api.common.UpdateInformationRequest
  2060. 27, // 9: api.partner.Partner.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  2061. 23, // 10: api.partner.Partner.GetPartnerBalance:input_type -> google.protobuf.Empty
  2062. 28, // 11: api.partner.Partner.PartnerGetHomeInfo:input_type -> api.common.PersonParam
  2063. 28, // 12: api.partner.Partner.PartnerGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2064. 29, // 13: api.partner.Partner.FindLookList:input_type -> api.common.ListPageRequest
  2065. 30, // 14: api.partner.Partner.WxConf:input_type -> api.common.WxConfReq
  2066. 31, // 15: api.partner.Partner.FindTagListBySex:input_type -> api.common.SexReq
  2067. 32, // 16: api.partner.Partner.FindOnlineList:input_type -> api.common.ListPage2Request
  2068. 29, // 17: api.partner.Partner.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2069. 29, // 18: api.partner.Partner.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2070. 33, // 19: api.partner.Partner.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2071. 34, // 20: api.partner.Partner.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2072. 28, // 21: api.partner.Partner.GetPartnerIsLike:input_type -> api.common.PersonParam
  2073. 35, // 22: api.partner.Partner.FindMemeByType:input_type -> api.common.MemeRequest
  2074. 36, // 23: api.partner.Partner.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2075. 37, // 24: api.partner.Partner.RandomMeme:input_type -> api.common.RandomNum
  2076. 38, // 25: api.partner.Partner.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2077. 23, // 26: api.partner.Partner.FindMemeTitle:input_type -> google.protobuf.Empty
  2078. 28, // 27: api.partner.Partner.PartnerGetChatCard:input_type -> api.common.PersonParam
  2079. 23, // 28: api.partner.Partner.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2080. 28, // 29: api.partner.Partner.PartnerLike:input_type -> api.common.PersonParam
  2081. 28, // 30: api.partner.Partner.PartnerUnLike:input_type -> api.common.PersonParam
  2082. 39, // 31: api.partner.Partner.Report:input_type -> api.common.ReportChatRequest
  2083. 23, // 32: api.partner.Partner.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2084. 40, // 33: api.partner.Partner.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2085. 6, // 34: api.partner.Partner.CreateScrip:input_type -> api.partner.CreateScripRequest
  2086. 41, // 35: api.partner.Partner.DeleteScrip:input_type -> api.common.ScripIdRequest
  2087. 29, // 36: api.partner.Partner.FindMyScrip:input_type -> api.common.ListPageRequest
  2088. 42, // 37: api.partner.Partner.FindOtherScrip:input_type -> api.common.FindScripRequest
  2089. 29, // 38: api.partner.Partner.FindRecommendScrip:input_type -> api.common.ListPageRequest
  2090. 41, // 39: api.partner.Partner.PersonLookScrip:input_type -> api.common.ScripIdRequest
  2091. 23, // 40: api.partner.Partner.PersonClickLookBack:input_type -> google.protobuf.Empty
  2092. 7, // 41: api.partner.Partner.PersonReplyScrip:input_type -> api.partner.ReplyScripRequest
  2093. 43, // 42: api.partner.Partner.PartnerDeleteChat:input_type -> api.common.RoomIDRequest
  2094. 4, // 43: api.partner.Partner.PartnerCollect:input_type -> api.partner.PartnerCollectIDsRequest
  2095. 5, // 44: api.partner.Partner.PartnerDeleteCollect:input_type -> api.partner.PartnerCollectRequest
  2096. 33, // 45: api.partner.Partner.FindChatCollectList:input_type -> api.common.FindChatRecordListRequest
  2097. 23, // 46: api.partner.Partner.GetPartnerMessage:input_type -> google.protobuf.Empty
  2098. 23, // 47: api.partner.Partner.GetPartnerLookNum:input_type -> google.protobuf.Empty
  2099. 29, // 48: api.partner.Partner.FindUnReplyRoomList:input_type -> api.common.ListPageRequest
  2100. 23, // 49: api.partner.Partner.GetLevelBalanceTable:input_type -> google.protobuf.Empty
  2101. 13, // 50: api.partner.Partner.PartnerGetAward:input_type -> api.partner.PartnerGetAwardRequest
  2102. 12, // 51: api.partner.Partner.PartnerUpdateWorkingStatus:input_type -> api.partner.PartnerUpdateWorkingStatusRequest
  2103. 23, // 52: api.partner.Partner.FindNotReplyNum:input_type -> google.protobuf.Empty
  2104. 21, // 53: api.partner.Partner.PartnerApplyWithdraw:input_type -> api.partner.PartnerApplyWithdrawRequest
  2105. 23, // 54: api.partner.Partner.PartnerWithdrawTemplateList:input_type -> google.protobuf.Empty
  2106. 29, // 55: api.partner.Partner.PartnerWithdrawRecordList:input_type -> api.common.ListPageRequest
  2107. 43, // 56: api.partner.Partner.PartnerGetRoomBalanceAndTodayBalance:input_type -> api.common.RoomIDRequest
  2108. 26, // 57: api.partner.Partner.PartnerRegister:input_type -> api.common.UpdateInformationRequest
  2109. 32, // 58: api.partner.Partner.FindExamineList:input_type -> api.common.ListPage2Request
  2110. 2, // 59: api.partner.Partner.ExaminePartner:input_type -> api.partner.ExaminePartnerRequest
  2111. 44, // 60: api.partner.Partner.ManagerLogin:input_type -> api.common.ManagerLoginRequest
  2112. 45, // 61: api.partner.Partner.GetPartnerDBMsg:input_type -> api.common.PersonIDParam
  2113. 46, // 62: api.partner.Partner.FindPartnerDBList:input_type -> api.common.PersonIDList
  2114. 47, // 63: api.partner.Partner.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  2115. 48, // 64: api.partner.Partner.FindRecommendPartnerDBList:input_type -> api.common.FindRecommendRequest
  2116. 45, // 65: api.partner.Partner.UpdatePartnerLastLoginTime:input_type -> api.common.PersonIDParam
  2117. 49, // 66: api.partner.Partner.GetPartnerDBBalance:input_type -> api.common.PartnerIDParam
  2118. 16, // 67: api.partner.Partner.AddPartnerBalance:input_type -> api.partner.AddPartnerBalanceRequest
  2119. 49, // 68: api.partner.Partner.GetPartnerCircleInfo:input_type -> api.common.PartnerIDParam
  2120. 17, // 69: api.partner.Partner.GetPartnerInfo:output_type -> api.partner.PartnerInfo
  2121. 23, // 70: api.partner.Partner.SendPhoneCode:output_type -> google.protobuf.Empty
  2122. 23, // 71: api.partner.Partner.CheckPhoneCode:output_type -> google.protobuf.Empty
  2123. 23, // 72: api.partner.Partner.UpdatePartnerInformation:output_type -> google.protobuf.Empty
  2124. 50, // 73: api.partner.Partner.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  2125. 19, // 74: api.partner.Partner.GetPartnerBalance:output_type -> api.partner.PartnerBalance
  2126. 51, // 75: api.partner.Partner.PartnerGetHomeInfo:output_type -> api.common.HomeInfo
  2127. 52, // 76: api.partner.Partner.PartnerGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  2128. 53, // 77: api.partner.Partner.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  2129. 54, // 78: api.partner.Partner.WxConf:output_type -> api.common.WxConfResponse
  2130. 55, // 79: api.partner.Partner.FindTagListBySex:output_type -> api.common.TagListReply
  2131. 56, // 80: api.partner.Partner.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  2132. 57, // 81: api.partner.Partner.FindWithinSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2133. 57, // 82: api.partner.Partner.FindOverSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2134. 58, // 83: api.partner.Partner.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2135. 59, // 84: api.partner.Partner.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2136. 60, // 85: api.partner.Partner.GetPartnerIsLike:output_type -> api.common.IsLike
  2137. 61, // 86: api.partner.Partner.FindMemeByType:output_type -> api.common.MemeList
  2138. 62, // 87: api.partner.Partner.FindChatTopic:output_type -> api.common.ChatTopicList
  2139. 63, // 88: api.partner.Partner.RandomMeme:output_type -> api.common.CommonTextList
  2140. 63, // 89: api.partner.Partner.RandomSwiftMessage:output_type -> api.common.CommonTextList
  2141. 64, // 90: api.partner.Partner.FindMemeTitle:output_type -> api.common.MemeTitleList
  2142. 65, // 91: api.partner.Partner.PartnerGetChatCard:output_type -> api.common.PartnerChatCardInfo
  2143. 64, // 92: api.partner.Partner.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  2144. 23, // 93: api.partner.Partner.PartnerLike:output_type -> google.protobuf.Empty
  2145. 23, // 94: api.partner.Partner.PartnerUnLike:output_type -> google.protobuf.Empty
  2146. 23, // 95: api.partner.Partner.Report:output_type -> google.protobuf.Empty
  2147. 66, // 96: api.partner.Partner.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  2148. 23, // 97: api.partner.Partner.UpdateLastScripID:output_type -> google.protobuf.Empty
  2149. 67, // 98: api.partner.Partner.CreateScrip:output_type -> api.common.ScripID
  2150. 23, // 99: api.partner.Partner.DeleteScrip:output_type -> google.protobuf.Empty
  2151. 68, // 100: api.partner.Partner.FindMyScrip:output_type -> api.common.ScripReply
  2152. 68, // 101: api.partner.Partner.FindOtherScrip:output_type -> api.common.ScripReply
  2153. 68, // 102: api.partner.Partner.FindRecommendScrip:output_type -> api.common.ScripReply
  2154. 23, // 103: api.partner.Partner.PersonLookScrip:output_type -> google.protobuf.Empty
  2155. 69, // 104: api.partner.Partner.PersonClickLookBack:output_type -> api.common.ScripInfo
  2156. 70, // 105: api.partner.Partner.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2157. 23, // 106: api.partner.Partner.PartnerDeleteChat:output_type -> google.protobuf.Empty
  2158. 23, // 107: api.partner.Partner.PartnerCollect:output_type -> google.protobuf.Empty
  2159. 23, // 108: api.partner.Partner.PartnerDeleteCollect:output_type -> google.protobuf.Empty
  2160. 58, // 109: api.partner.Partner.FindChatCollectList:output_type -> api.common.ChatRecordListReply
  2161. 18, // 110: api.partner.Partner.GetPartnerMessage:output_type -> api.partner.PartnerMessage
  2162. 71, // 111: api.partner.Partner.GetPartnerLookNum:output_type -> api.statistics.LookMessageReply
  2163. 57, // 112: api.partner.Partner.FindUnReplyRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2164. 14, // 113: api.partner.Partner.GetLevelBalanceTable:output_type -> api.partner.LevelTable
  2165. 23, // 114: api.partner.Partner.PartnerGetAward:output_type -> google.protobuf.Empty
  2166. 23, // 115: api.partner.Partner.PartnerUpdateWorkingStatus:output_type -> google.protobuf.Empty
  2167. 72, // 116: api.partner.Partner.FindNotReplyNum:output_type -> api.chat.FindNotReplyNumReply
  2168. 23, // 117: api.partner.Partner.PartnerApplyWithdraw:output_type -> google.protobuf.Empty
  2169. 10, // 118: api.partner.Partner.PartnerWithdrawTemplateList:output_type -> api.partner.PartnerWithdrawTemplateListReply
  2170. 8, // 119: api.partner.Partner.PartnerWithdrawRecordList:output_type -> api.partner.PartnerWithdrawRecordListReply
  2171. 3, // 120: api.partner.Partner.PartnerGetRoomBalanceAndTodayBalance:output_type -> api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
  2172. 23, // 121: api.partner.Partner.PartnerRegister:output_type -> google.protobuf.Empty
  2173. 0, // 122: api.partner.Partner.FindExamineList:output_type -> api.partner.FindExamineListReply
  2174. 23, // 123: api.partner.Partner.ExaminePartner:output_type -> google.protobuf.Empty
  2175. 73, // 124: api.partner.Partner.ManagerLogin:output_type -> api.common.LoginToken
  2176. 74, // 125: api.partner.Partner.GetPartnerDBMsg:output_type -> api.common.PersonMsg
  2177. 75, // 126: api.partner.Partner.FindPartnerDBList:output_type -> api.common.PersonDBReply
  2178. 23, // 127: api.partner.Partner.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  2179. 75, // 128: api.partner.Partner.FindRecommendPartnerDBList:output_type -> api.common.PersonDBReply
  2180. 23, // 129: api.partner.Partner.UpdatePartnerLastLoginTime:output_type -> google.protobuf.Empty
  2181. 20, // 130: api.partner.Partner.GetPartnerDBBalance:output_type -> api.partner.PartnerDBBalance
  2182. 23, // 131: api.partner.Partner.AddPartnerBalance:output_type -> google.protobuf.Empty
  2183. 76, // 132: api.partner.Partner.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  2184. 69, // [69:133] is the sub-list for method output_type
  2185. 5, // [5:69] is the sub-list for method input_type
  2186. 5, // [5:5] is the sub-list for extension type_name
  2187. 5, // [5:5] is the sub-list for extension extendee
  2188. 0, // [0:5] is the sub-list for field type_name
  2189. }
  2190. func init() { file_partner_proto_init() }
  2191. func file_partner_proto_init() {
  2192. if File_partner_proto != nil {
  2193. return
  2194. }
  2195. if !protoimpl.UnsafeEnabled {
  2196. file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2197. switch v := v.(*FindExamineListReply); i {
  2198. case 0:
  2199. return &v.state
  2200. case 1:
  2201. return &v.sizeCache
  2202. case 2:
  2203. return &v.unknownFields
  2204. default:
  2205. return nil
  2206. }
  2207. }
  2208. file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2209. switch v := v.(*ExamineInfo); i {
  2210. case 0:
  2211. return &v.state
  2212. case 1:
  2213. return &v.sizeCache
  2214. case 2:
  2215. return &v.unknownFields
  2216. default:
  2217. return nil
  2218. }
  2219. }
  2220. file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2221. switch v := v.(*ExaminePartnerRequest); i {
  2222. case 0:
  2223. return &v.state
  2224. case 1:
  2225. return &v.sizeCache
  2226. case 2:
  2227. return &v.unknownFields
  2228. default:
  2229. return nil
  2230. }
  2231. }
  2232. file_partner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2233. switch v := v.(*PartnerGetRoomBalanceAndTodayBalanceReply); i {
  2234. case 0:
  2235. return &v.state
  2236. case 1:
  2237. return &v.sizeCache
  2238. case 2:
  2239. return &v.unknownFields
  2240. default:
  2241. return nil
  2242. }
  2243. }
  2244. file_partner_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2245. switch v := v.(*PartnerCollectIDsRequest); i {
  2246. case 0:
  2247. return &v.state
  2248. case 1:
  2249. return &v.sizeCache
  2250. case 2:
  2251. return &v.unknownFields
  2252. default:
  2253. return nil
  2254. }
  2255. }
  2256. file_partner_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2257. switch v := v.(*PartnerCollectRequest); i {
  2258. case 0:
  2259. return &v.state
  2260. case 1:
  2261. return &v.sizeCache
  2262. case 2:
  2263. return &v.unknownFields
  2264. default:
  2265. return nil
  2266. }
  2267. }
  2268. file_partner_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2269. switch v := v.(*CreateScripRequest); i {
  2270. case 0:
  2271. return &v.state
  2272. case 1:
  2273. return &v.sizeCache
  2274. case 2:
  2275. return &v.unknownFields
  2276. default:
  2277. return nil
  2278. }
  2279. }
  2280. file_partner_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2281. switch v := v.(*ReplyScripRequest); i {
  2282. case 0:
  2283. return &v.state
  2284. case 1:
  2285. return &v.sizeCache
  2286. case 2:
  2287. return &v.unknownFields
  2288. default:
  2289. return nil
  2290. }
  2291. }
  2292. file_partner_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2293. switch v := v.(*PartnerWithdrawRecordListReply); i {
  2294. case 0:
  2295. return &v.state
  2296. case 1:
  2297. return &v.sizeCache
  2298. case 2:
  2299. return &v.unknownFields
  2300. default:
  2301. return nil
  2302. }
  2303. }
  2304. file_partner_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2305. switch v := v.(*WithdrawInfo); i {
  2306. case 0:
  2307. return &v.state
  2308. case 1:
  2309. return &v.sizeCache
  2310. case 2:
  2311. return &v.unknownFields
  2312. default:
  2313. return nil
  2314. }
  2315. }
  2316. file_partner_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2317. switch v := v.(*PartnerWithdrawTemplateListReply); i {
  2318. case 0:
  2319. return &v.state
  2320. case 1:
  2321. return &v.sizeCache
  2322. case 2:
  2323. return &v.unknownFields
  2324. default:
  2325. return nil
  2326. }
  2327. }
  2328. file_partner_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2329. switch v := v.(*PartnerWithdrawTemplateInfo); i {
  2330. case 0:
  2331. return &v.state
  2332. case 1:
  2333. return &v.sizeCache
  2334. case 2:
  2335. return &v.unknownFields
  2336. default:
  2337. return nil
  2338. }
  2339. }
  2340. file_partner_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2341. switch v := v.(*PartnerUpdateWorkingStatusRequest); i {
  2342. case 0:
  2343. return &v.state
  2344. case 1:
  2345. return &v.sizeCache
  2346. case 2:
  2347. return &v.unknownFields
  2348. default:
  2349. return nil
  2350. }
  2351. }
  2352. file_partner_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2353. switch v := v.(*PartnerGetAwardRequest); i {
  2354. case 0:
  2355. return &v.state
  2356. case 1:
  2357. return &v.sizeCache
  2358. case 2:
  2359. return &v.unknownFields
  2360. default:
  2361. return nil
  2362. }
  2363. }
  2364. file_partner_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2365. switch v := v.(*LevelTable); i {
  2366. case 0:
  2367. return &v.state
  2368. case 1:
  2369. return &v.sizeCache
  2370. case 2:
  2371. return &v.unknownFields
  2372. default:
  2373. return nil
  2374. }
  2375. }
  2376. file_partner_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2377. switch v := v.(*LevelInfo); i {
  2378. case 0:
  2379. return &v.state
  2380. case 1:
  2381. return &v.sizeCache
  2382. case 2:
  2383. return &v.unknownFields
  2384. default:
  2385. return nil
  2386. }
  2387. }
  2388. file_partner_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2389. switch v := v.(*AddPartnerBalanceRequest); i {
  2390. case 0:
  2391. return &v.state
  2392. case 1:
  2393. return &v.sizeCache
  2394. case 2:
  2395. return &v.unknownFields
  2396. default:
  2397. return nil
  2398. }
  2399. }
  2400. file_partner_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2401. switch v := v.(*PartnerInfo); i {
  2402. case 0:
  2403. return &v.state
  2404. case 1:
  2405. return &v.sizeCache
  2406. case 2:
  2407. return &v.unknownFields
  2408. default:
  2409. return nil
  2410. }
  2411. }
  2412. file_partner_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2413. switch v := v.(*PartnerMessage); i {
  2414. case 0:
  2415. return &v.state
  2416. case 1:
  2417. return &v.sizeCache
  2418. case 2:
  2419. return &v.unknownFields
  2420. default:
  2421. return nil
  2422. }
  2423. }
  2424. file_partner_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2425. switch v := v.(*PartnerBalance); i {
  2426. case 0:
  2427. return &v.state
  2428. case 1:
  2429. return &v.sizeCache
  2430. case 2:
  2431. return &v.unknownFields
  2432. default:
  2433. return nil
  2434. }
  2435. }
  2436. file_partner_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2437. switch v := v.(*PartnerDBBalance); i {
  2438. case 0:
  2439. return &v.state
  2440. case 1:
  2441. return &v.sizeCache
  2442. case 2:
  2443. return &v.unknownFields
  2444. default:
  2445. return nil
  2446. }
  2447. }
  2448. file_partner_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2449. switch v := v.(*PartnerApplyWithdrawRequest); i {
  2450. case 0:
  2451. return &v.state
  2452. case 1:
  2453. return &v.sizeCache
  2454. case 2:
  2455. return &v.unknownFields
  2456. default:
  2457. return nil
  2458. }
  2459. }
  2460. }
  2461. type x struct{}
  2462. out := protoimpl.TypeBuilder{
  2463. File: protoimpl.DescBuilder{
  2464. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2465. RawDescriptor: file_partner_proto_rawDesc,
  2466. NumEnums: 0,
  2467. NumMessages: 22,
  2468. NumExtensions: 0,
  2469. NumServices: 1,
  2470. },
  2471. GoTypes: file_partner_proto_goTypes,
  2472. DependencyIndexes: file_partner_proto_depIdxs,
  2473. MessageInfos: file_partner_proto_msgTypes,
  2474. }.Build()
  2475. File_partner_proto = out.File
  2476. file_partner_proto_rawDesc = nil
  2477. file_partner_proto_goTypes = nil
  2478. file_partner_proto_depIdxs = nil
  2479. }