@lansweeper/multitenant-api-grpc 0.4.62 → 0.4.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_grpc_pb.d.ts +34 -0
- package/gen-proto/multitenant_grpc_pb.js +66 -0
- package/gen-proto/multitenant_pb.d.ts +86 -0
- package/gen-proto/multitenant_pb.js +768 -100
- package/generated-go/multitenant.pb.go +1054 -752
- package/generated-go/multitenant_grpc.pb.go +76 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +19 -0
|
@@ -5026,6 +5026,116 @@ func (x *UpdateSiteMetadataResponse) GetSuccess() bool {
|
|
|
5026
5026
|
return false
|
|
5027
5027
|
}
|
|
5028
5028
|
|
|
5029
|
+
type UpdateSiteSkipDataExportRequest struct {
|
|
5030
|
+
state protoimpl.MessageState
|
|
5031
|
+
sizeCache protoimpl.SizeCache
|
|
5032
|
+
unknownFields protoimpl.UnknownFields
|
|
5033
|
+
|
|
5034
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
5035
|
+
SkipDataExport bool `protobuf:"varint,2,opt,name=skip_data_export,json=skipDataExport,proto3" json:"skip_data_export,omitempty"`
|
|
5036
|
+
UpdatedBy string `protobuf:"bytes,3,opt,name=updated_by,json=updatedBy,proto3" json:"updated_by,omitempty"`
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
func (x *UpdateSiteSkipDataExportRequest) Reset() {
|
|
5040
|
+
*x = UpdateSiteSkipDataExportRequest{}
|
|
5041
|
+
if protoimpl.UnsafeEnabled {
|
|
5042
|
+
mi := &file_multitenant_proto_msgTypes[83]
|
|
5043
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5044
|
+
ms.StoreMessageInfo(mi)
|
|
5045
|
+
}
|
|
5046
|
+
}
|
|
5047
|
+
|
|
5048
|
+
func (x *UpdateSiteSkipDataExportRequest) String() string {
|
|
5049
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5050
|
+
}
|
|
5051
|
+
|
|
5052
|
+
func (*UpdateSiteSkipDataExportRequest) ProtoMessage() {}
|
|
5053
|
+
|
|
5054
|
+
func (x *UpdateSiteSkipDataExportRequest) ProtoReflect() protoreflect.Message {
|
|
5055
|
+
mi := &file_multitenant_proto_msgTypes[83]
|
|
5056
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5057
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5058
|
+
if ms.LoadMessageInfo() == nil {
|
|
5059
|
+
ms.StoreMessageInfo(mi)
|
|
5060
|
+
}
|
|
5061
|
+
return ms
|
|
5062
|
+
}
|
|
5063
|
+
return mi.MessageOf(x)
|
|
5064
|
+
}
|
|
5065
|
+
|
|
5066
|
+
// Deprecated: Use UpdateSiteSkipDataExportRequest.ProtoReflect.Descriptor instead.
|
|
5067
|
+
func (*UpdateSiteSkipDataExportRequest) Descriptor() ([]byte, []int) {
|
|
5068
|
+
return file_multitenant_proto_rawDescGZIP(), []int{83}
|
|
5069
|
+
}
|
|
5070
|
+
|
|
5071
|
+
func (x *UpdateSiteSkipDataExportRequest) GetSiteId() string {
|
|
5072
|
+
if x != nil {
|
|
5073
|
+
return x.SiteId
|
|
5074
|
+
}
|
|
5075
|
+
return ""
|
|
5076
|
+
}
|
|
5077
|
+
|
|
5078
|
+
func (x *UpdateSiteSkipDataExportRequest) GetSkipDataExport() bool {
|
|
5079
|
+
if x != nil {
|
|
5080
|
+
return x.SkipDataExport
|
|
5081
|
+
}
|
|
5082
|
+
return false
|
|
5083
|
+
}
|
|
5084
|
+
|
|
5085
|
+
func (x *UpdateSiteSkipDataExportRequest) GetUpdatedBy() string {
|
|
5086
|
+
if x != nil {
|
|
5087
|
+
return x.UpdatedBy
|
|
5088
|
+
}
|
|
5089
|
+
return ""
|
|
5090
|
+
}
|
|
5091
|
+
|
|
5092
|
+
type UpdateSiteSkipDataExportResponse struct {
|
|
5093
|
+
state protoimpl.MessageState
|
|
5094
|
+
sizeCache protoimpl.SizeCache
|
|
5095
|
+
unknownFields protoimpl.UnknownFields
|
|
5096
|
+
|
|
5097
|
+
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
|
|
5098
|
+
}
|
|
5099
|
+
|
|
5100
|
+
func (x *UpdateSiteSkipDataExportResponse) Reset() {
|
|
5101
|
+
*x = UpdateSiteSkipDataExportResponse{}
|
|
5102
|
+
if protoimpl.UnsafeEnabled {
|
|
5103
|
+
mi := &file_multitenant_proto_msgTypes[84]
|
|
5104
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5105
|
+
ms.StoreMessageInfo(mi)
|
|
5106
|
+
}
|
|
5107
|
+
}
|
|
5108
|
+
|
|
5109
|
+
func (x *UpdateSiteSkipDataExportResponse) String() string {
|
|
5110
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5111
|
+
}
|
|
5112
|
+
|
|
5113
|
+
func (*UpdateSiteSkipDataExportResponse) ProtoMessage() {}
|
|
5114
|
+
|
|
5115
|
+
func (x *UpdateSiteSkipDataExportResponse) ProtoReflect() protoreflect.Message {
|
|
5116
|
+
mi := &file_multitenant_proto_msgTypes[84]
|
|
5117
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5118
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5119
|
+
if ms.LoadMessageInfo() == nil {
|
|
5120
|
+
ms.StoreMessageInfo(mi)
|
|
5121
|
+
}
|
|
5122
|
+
return ms
|
|
5123
|
+
}
|
|
5124
|
+
return mi.MessageOf(x)
|
|
5125
|
+
}
|
|
5126
|
+
|
|
5127
|
+
// Deprecated: Use UpdateSiteSkipDataExportResponse.ProtoReflect.Descriptor instead.
|
|
5128
|
+
func (*UpdateSiteSkipDataExportResponse) Descriptor() ([]byte, []int) {
|
|
5129
|
+
return file_multitenant_proto_rawDescGZIP(), []int{84}
|
|
5130
|
+
}
|
|
5131
|
+
|
|
5132
|
+
func (x *UpdateSiteSkipDataExportResponse) GetSuccess() bool {
|
|
5133
|
+
if x != nil {
|
|
5134
|
+
return x.Success
|
|
5135
|
+
}
|
|
5136
|
+
return false
|
|
5137
|
+
}
|
|
5138
|
+
|
|
5029
5139
|
type GetSiteLimitsRequest struct {
|
|
5030
5140
|
state protoimpl.MessageState
|
|
5031
5141
|
sizeCache protoimpl.SizeCache
|
|
@@ -5037,7 +5147,7 @@ type GetSiteLimitsRequest struct {
|
|
|
5037
5147
|
func (x *GetSiteLimitsRequest) Reset() {
|
|
5038
5148
|
*x = GetSiteLimitsRequest{}
|
|
5039
5149
|
if protoimpl.UnsafeEnabled {
|
|
5040
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5150
|
+
mi := &file_multitenant_proto_msgTypes[85]
|
|
5041
5151
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5042
5152
|
ms.StoreMessageInfo(mi)
|
|
5043
5153
|
}
|
|
@@ -5050,7 +5160,7 @@ func (x *GetSiteLimitsRequest) String() string {
|
|
|
5050
5160
|
func (*GetSiteLimitsRequest) ProtoMessage() {}
|
|
5051
5161
|
|
|
5052
5162
|
func (x *GetSiteLimitsRequest) ProtoReflect() protoreflect.Message {
|
|
5053
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5163
|
+
mi := &file_multitenant_proto_msgTypes[85]
|
|
5054
5164
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5055
5165
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5056
5166
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5063,7 +5173,7 @@ func (x *GetSiteLimitsRequest) ProtoReflect() protoreflect.Message {
|
|
|
5063
5173
|
|
|
5064
5174
|
// Deprecated: Use GetSiteLimitsRequest.ProtoReflect.Descriptor instead.
|
|
5065
5175
|
func (*GetSiteLimitsRequest) Descriptor() ([]byte, []int) {
|
|
5066
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5176
|
+
return file_multitenant_proto_rawDescGZIP(), []int{85}
|
|
5067
5177
|
}
|
|
5068
5178
|
|
|
5069
5179
|
func (x *GetSiteLimitsRequest) GetSiteIds() []string {
|
|
@@ -5084,7 +5194,7 @@ type GetSiteLimitsResponse struct {
|
|
|
5084
5194
|
func (x *GetSiteLimitsResponse) Reset() {
|
|
5085
5195
|
*x = GetSiteLimitsResponse{}
|
|
5086
5196
|
if protoimpl.UnsafeEnabled {
|
|
5087
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5197
|
+
mi := &file_multitenant_proto_msgTypes[86]
|
|
5088
5198
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5089
5199
|
ms.StoreMessageInfo(mi)
|
|
5090
5200
|
}
|
|
@@ -5097,7 +5207,7 @@ func (x *GetSiteLimitsResponse) String() string {
|
|
|
5097
5207
|
func (*GetSiteLimitsResponse) ProtoMessage() {}
|
|
5098
5208
|
|
|
5099
5209
|
func (x *GetSiteLimitsResponse) ProtoReflect() protoreflect.Message {
|
|
5100
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5210
|
+
mi := &file_multitenant_proto_msgTypes[86]
|
|
5101
5211
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5102
5212
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5103
5213
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5110,7 +5220,7 @@ func (x *GetSiteLimitsResponse) ProtoReflect() protoreflect.Message {
|
|
|
5110
5220
|
|
|
5111
5221
|
// Deprecated: Use GetSiteLimitsResponse.ProtoReflect.Descriptor instead.
|
|
5112
5222
|
func (*GetSiteLimitsResponse) Descriptor() ([]byte, []int) {
|
|
5113
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5223
|
+
return file_multitenant_proto_rawDescGZIP(), []int{86}
|
|
5114
5224
|
}
|
|
5115
5225
|
|
|
5116
5226
|
func (x *GetSiteLimitsResponse) GetSiteLimits() map[string]*generated_go.SiteLimits {
|
|
@@ -5132,7 +5242,7 @@ type MsmpPagination struct {
|
|
|
5132
5242
|
func (x *MsmpPagination) Reset() {
|
|
5133
5243
|
*x = MsmpPagination{}
|
|
5134
5244
|
if protoimpl.UnsafeEnabled {
|
|
5135
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5245
|
+
mi := &file_multitenant_proto_msgTypes[87]
|
|
5136
5246
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5137
5247
|
ms.StoreMessageInfo(mi)
|
|
5138
5248
|
}
|
|
@@ -5145,7 +5255,7 @@ func (x *MsmpPagination) String() string {
|
|
|
5145
5255
|
func (*MsmpPagination) ProtoMessage() {}
|
|
5146
5256
|
|
|
5147
5257
|
func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
|
|
5148
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5258
|
+
mi := &file_multitenant_proto_msgTypes[87]
|
|
5149
5259
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5150
5260
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5151
5261
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5158,7 +5268,7 @@ func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
|
|
|
5158
5268
|
|
|
5159
5269
|
// Deprecated: Use MsmpPagination.ProtoReflect.Descriptor instead.
|
|
5160
5270
|
func (*MsmpPagination) Descriptor() ([]byte, []int) {
|
|
5161
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5271
|
+
return file_multitenant_proto_rawDescGZIP(), []int{87}
|
|
5162
5272
|
}
|
|
5163
5273
|
|
|
5164
5274
|
func (x *MsmpPagination) GetOffset() int32 {
|
|
@@ -5189,7 +5299,7 @@ type MsmpPaginationInfo struct {
|
|
|
5189
5299
|
func (x *MsmpPaginationInfo) Reset() {
|
|
5190
5300
|
*x = MsmpPaginationInfo{}
|
|
5191
5301
|
if protoimpl.UnsafeEnabled {
|
|
5192
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5302
|
+
mi := &file_multitenant_proto_msgTypes[88]
|
|
5193
5303
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5194
5304
|
ms.StoreMessageInfo(mi)
|
|
5195
5305
|
}
|
|
@@ -5202,7 +5312,7 @@ func (x *MsmpPaginationInfo) String() string {
|
|
|
5202
5312
|
func (*MsmpPaginationInfo) ProtoMessage() {}
|
|
5203
5313
|
|
|
5204
5314
|
func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
|
|
5205
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5315
|
+
mi := &file_multitenant_proto_msgTypes[88]
|
|
5206
5316
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5207
5317
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5208
5318
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5215,7 +5325,7 @@ func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
|
|
|
5215
5325
|
|
|
5216
5326
|
// Deprecated: Use MsmpPaginationInfo.ProtoReflect.Descriptor instead.
|
|
5217
5327
|
func (*MsmpPaginationInfo) Descriptor() ([]byte, []int) {
|
|
5218
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5328
|
+
return file_multitenant_proto_rawDescGZIP(), []int{88}
|
|
5219
5329
|
}
|
|
5220
5330
|
|
|
5221
5331
|
func (x *MsmpPaginationInfo) GetTotal() int32 {
|
|
@@ -5259,7 +5369,7 @@ type GetMsmpOrganizationListRequest struct {
|
|
|
5259
5369
|
func (x *GetMsmpOrganizationListRequest) Reset() {
|
|
5260
5370
|
*x = GetMsmpOrganizationListRequest{}
|
|
5261
5371
|
if protoimpl.UnsafeEnabled {
|
|
5262
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5372
|
+
mi := &file_multitenant_proto_msgTypes[89]
|
|
5263
5373
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5264
5374
|
ms.StoreMessageInfo(mi)
|
|
5265
5375
|
}
|
|
@@ -5272,7 +5382,7 @@ func (x *GetMsmpOrganizationListRequest) String() string {
|
|
|
5272
5382
|
func (*GetMsmpOrganizationListRequest) ProtoMessage() {}
|
|
5273
5383
|
|
|
5274
5384
|
func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
|
|
5275
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5385
|
+
mi := &file_multitenant_proto_msgTypes[89]
|
|
5276
5386
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5277
5387
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5278
5388
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5285,7 +5395,7 @@ func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
|
|
|
5285
5395
|
|
|
5286
5396
|
// Deprecated: Use GetMsmpOrganizationListRequest.ProtoReflect.Descriptor instead.
|
|
5287
5397
|
func (*GetMsmpOrganizationListRequest) Descriptor() ([]byte, []int) {
|
|
5288
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5398
|
+
return file_multitenant_proto_rawDescGZIP(), []int{89}
|
|
5289
5399
|
}
|
|
5290
5400
|
|
|
5291
5401
|
func (x *GetMsmpOrganizationListRequest) GetUserId() string {
|
|
@@ -5321,7 +5431,7 @@ type GetMsmpOrganizationListResponse struct {
|
|
|
5321
5431
|
func (x *GetMsmpOrganizationListResponse) Reset() {
|
|
5322
5432
|
*x = GetMsmpOrganizationListResponse{}
|
|
5323
5433
|
if protoimpl.UnsafeEnabled {
|
|
5324
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5434
|
+
mi := &file_multitenant_proto_msgTypes[90]
|
|
5325
5435
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5326
5436
|
ms.StoreMessageInfo(mi)
|
|
5327
5437
|
}
|
|
@@ -5334,7 +5444,7 @@ func (x *GetMsmpOrganizationListResponse) String() string {
|
|
|
5334
5444
|
func (*GetMsmpOrganizationListResponse) ProtoMessage() {}
|
|
5335
5445
|
|
|
5336
5446
|
func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
|
|
5337
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5447
|
+
mi := &file_multitenant_proto_msgTypes[90]
|
|
5338
5448
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5339
5449
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5340
5450
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5347,7 +5457,7 @@ func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
|
|
|
5347
5457
|
|
|
5348
5458
|
// Deprecated: Use GetMsmpOrganizationListResponse.ProtoReflect.Descriptor instead.
|
|
5349
5459
|
func (*GetMsmpOrganizationListResponse) Descriptor() ([]byte, []int) {
|
|
5350
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5460
|
+
return file_multitenant_proto_rawDescGZIP(), []int{90}
|
|
5351
5461
|
}
|
|
5352
5462
|
|
|
5353
5463
|
func (x *GetMsmpOrganizationListResponse) GetOrganizations() []*GetMsmpOrganizationListResponse_MsmpOrganization {
|
|
@@ -5377,7 +5487,7 @@ type GetMsmpOrganizationAccountRequest struct {
|
|
|
5377
5487
|
func (x *GetMsmpOrganizationAccountRequest) Reset() {
|
|
5378
5488
|
*x = GetMsmpOrganizationAccountRequest{}
|
|
5379
5489
|
if protoimpl.UnsafeEnabled {
|
|
5380
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5490
|
+
mi := &file_multitenant_proto_msgTypes[91]
|
|
5381
5491
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5382
5492
|
ms.StoreMessageInfo(mi)
|
|
5383
5493
|
}
|
|
@@ -5390,7 +5500,7 @@ func (x *GetMsmpOrganizationAccountRequest) String() string {
|
|
|
5390
5500
|
func (*GetMsmpOrganizationAccountRequest) ProtoMessage() {}
|
|
5391
5501
|
|
|
5392
5502
|
func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message {
|
|
5393
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5503
|
+
mi := &file_multitenant_proto_msgTypes[91]
|
|
5394
5504
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5395
5505
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5396
5506
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5403,7 +5513,7 @@ func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message
|
|
|
5403
5513
|
|
|
5404
5514
|
// Deprecated: Use GetMsmpOrganizationAccountRequest.ProtoReflect.Descriptor instead.
|
|
5405
5515
|
func (*GetMsmpOrganizationAccountRequest) Descriptor() ([]byte, []int) {
|
|
5406
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5516
|
+
return file_multitenant_proto_rawDescGZIP(), []int{91}
|
|
5407
5517
|
}
|
|
5408
5518
|
|
|
5409
5519
|
func (x *GetMsmpOrganizationAccountRequest) GetUserId() string {
|
|
@@ -5441,7 +5551,7 @@ type GetMsmpOrganizationAccountResponse struct {
|
|
|
5441
5551
|
func (x *GetMsmpOrganizationAccountResponse) Reset() {
|
|
5442
5552
|
*x = GetMsmpOrganizationAccountResponse{}
|
|
5443
5553
|
if protoimpl.UnsafeEnabled {
|
|
5444
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5554
|
+
mi := &file_multitenant_proto_msgTypes[92]
|
|
5445
5555
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5446
5556
|
ms.StoreMessageInfo(mi)
|
|
5447
5557
|
}
|
|
@@ -5454,7 +5564,7 @@ func (x *GetMsmpOrganizationAccountResponse) String() string {
|
|
|
5454
5564
|
func (*GetMsmpOrganizationAccountResponse) ProtoMessage() {}
|
|
5455
5565
|
|
|
5456
5566
|
func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message {
|
|
5457
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5567
|
+
mi := &file_multitenant_proto_msgTypes[92]
|
|
5458
5568
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5459
5569
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5460
5570
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5467,7 +5577,7 @@ func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message
|
|
|
5467
5577
|
|
|
5468
5578
|
// Deprecated: Use GetMsmpOrganizationAccountResponse.ProtoReflect.Descriptor instead.
|
|
5469
5579
|
func (*GetMsmpOrganizationAccountResponse) Descriptor() ([]byte, []int) {
|
|
5470
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5580
|
+
return file_multitenant_proto_rawDescGZIP(), []int{92}
|
|
5471
5581
|
}
|
|
5472
5582
|
|
|
5473
5583
|
func (x *GetMsmpOrganizationAccountResponse) GetId() string {
|
|
@@ -5512,7 +5622,7 @@ type GetSitesByMsmpOrganizationIdRequest struct {
|
|
|
5512
5622
|
func (x *GetSitesByMsmpOrganizationIdRequest) Reset() {
|
|
5513
5623
|
*x = GetSitesByMsmpOrganizationIdRequest{}
|
|
5514
5624
|
if protoimpl.UnsafeEnabled {
|
|
5515
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5625
|
+
mi := &file_multitenant_proto_msgTypes[93]
|
|
5516
5626
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5517
5627
|
ms.StoreMessageInfo(mi)
|
|
5518
5628
|
}
|
|
@@ -5525,7 +5635,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) String() string {
|
|
|
5525
5635
|
func (*GetSitesByMsmpOrganizationIdRequest) ProtoMessage() {}
|
|
5526
5636
|
|
|
5527
5637
|
func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Message {
|
|
5528
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5638
|
+
mi := &file_multitenant_proto_msgTypes[93]
|
|
5529
5639
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5530
5640
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5531
5641
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5538,7 +5648,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Messag
|
|
|
5538
5648
|
|
|
5539
5649
|
// Deprecated: Use GetSitesByMsmpOrganizationIdRequest.ProtoReflect.Descriptor instead.
|
|
5540
5650
|
func (*GetSitesByMsmpOrganizationIdRequest) Descriptor() ([]byte, []int) {
|
|
5541
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5651
|
+
return file_multitenant_proto_rawDescGZIP(), []int{93}
|
|
5542
5652
|
}
|
|
5543
5653
|
|
|
5544
5654
|
func (x *GetSitesByMsmpOrganizationIdRequest) GetUserId() string {
|
|
@@ -5581,7 +5691,7 @@ type GetSitesByMsmpOrganizationIdResponse struct {
|
|
|
5581
5691
|
func (x *GetSitesByMsmpOrganizationIdResponse) Reset() {
|
|
5582
5692
|
*x = GetSitesByMsmpOrganizationIdResponse{}
|
|
5583
5693
|
if protoimpl.UnsafeEnabled {
|
|
5584
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5694
|
+
mi := &file_multitenant_proto_msgTypes[94]
|
|
5585
5695
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5586
5696
|
ms.StoreMessageInfo(mi)
|
|
5587
5697
|
}
|
|
@@ -5594,7 +5704,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) String() string {
|
|
|
5594
5704
|
func (*GetSitesByMsmpOrganizationIdResponse) ProtoMessage() {}
|
|
5595
5705
|
|
|
5596
5706
|
func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Message {
|
|
5597
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5707
|
+
mi := &file_multitenant_proto_msgTypes[94]
|
|
5598
5708
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5599
5709
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5600
5710
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5607,7 +5717,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Messa
|
|
|
5607
5717
|
|
|
5608
5718
|
// Deprecated: Use GetSitesByMsmpOrganizationIdResponse.ProtoReflect.Descriptor instead.
|
|
5609
5719
|
func (*GetSitesByMsmpOrganizationIdResponse) Descriptor() ([]byte, []int) {
|
|
5610
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5720
|
+
return file_multitenant_proto_rawDescGZIP(), []int{94}
|
|
5611
5721
|
}
|
|
5612
5722
|
|
|
5613
5723
|
func (x *GetSitesByMsmpOrganizationIdResponse) GetSites() []*PreviewSite {
|
|
@@ -5636,7 +5746,7 @@ type SetEnabledCustomFieldsFederationRequest struct {
|
|
|
5636
5746
|
func (x *SetEnabledCustomFieldsFederationRequest) Reset() {
|
|
5637
5747
|
*x = SetEnabledCustomFieldsFederationRequest{}
|
|
5638
5748
|
if protoimpl.UnsafeEnabled {
|
|
5639
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5749
|
+
mi := &file_multitenant_proto_msgTypes[95]
|
|
5640
5750
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5641
5751
|
ms.StoreMessageInfo(mi)
|
|
5642
5752
|
}
|
|
@@ -5649,7 +5759,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) String() string {
|
|
|
5649
5759
|
func (*SetEnabledCustomFieldsFederationRequest) ProtoMessage() {}
|
|
5650
5760
|
|
|
5651
5761
|
func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Message {
|
|
5652
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5762
|
+
mi := &file_multitenant_proto_msgTypes[95]
|
|
5653
5763
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5654
5764
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5655
5765
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5662,7 +5772,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Me
|
|
|
5662
5772
|
|
|
5663
5773
|
// Deprecated: Use SetEnabledCustomFieldsFederationRequest.ProtoReflect.Descriptor instead.
|
|
5664
5774
|
func (*SetEnabledCustomFieldsFederationRequest) Descriptor() ([]byte, []int) {
|
|
5665
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5775
|
+
return file_multitenant_proto_rawDescGZIP(), []int{95}
|
|
5666
5776
|
}
|
|
5667
5777
|
|
|
5668
5778
|
func (x *SetEnabledCustomFieldsFederationRequest) GetSiteId() string {
|
|
@@ -5690,7 +5800,7 @@ type IsCustomFieldsFederationEnabledRequest struct {
|
|
|
5690
5800
|
func (x *IsCustomFieldsFederationEnabledRequest) Reset() {
|
|
5691
5801
|
*x = IsCustomFieldsFederationEnabledRequest{}
|
|
5692
5802
|
if protoimpl.UnsafeEnabled {
|
|
5693
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5803
|
+
mi := &file_multitenant_proto_msgTypes[96]
|
|
5694
5804
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5695
5805
|
ms.StoreMessageInfo(mi)
|
|
5696
5806
|
}
|
|
@@ -5703,7 +5813,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) String() string {
|
|
|
5703
5813
|
func (*IsCustomFieldsFederationEnabledRequest) ProtoMessage() {}
|
|
5704
5814
|
|
|
5705
5815
|
func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
|
|
5706
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5816
|
+
mi := &file_multitenant_proto_msgTypes[96]
|
|
5707
5817
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5708
5818
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5709
5819
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5716,7 +5826,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Mes
|
|
|
5716
5826
|
|
|
5717
5827
|
// Deprecated: Use IsCustomFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
|
|
5718
5828
|
func (*IsCustomFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
|
|
5719
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5829
|
+
return file_multitenant_proto_rawDescGZIP(), []int{96}
|
|
5720
5830
|
}
|
|
5721
5831
|
|
|
5722
5832
|
func (x *IsCustomFieldsFederationEnabledRequest) GetSiteId() string {
|
|
@@ -5726,6 +5836,53 @@ func (x *IsCustomFieldsFederationEnabledRequest) GetSiteId() string {
|
|
|
5726
5836
|
return ""
|
|
5727
5837
|
}
|
|
5728
5838
|
|
|
5839
|
+
type IsMetadataFieldsFederationEnabledRequest struct {
|
|
5840
|
+
state protoimpl.MessageState
|
|
5841
|
+
sizeCache protoimpl.SizeCache
|
|
5842
|
+
unknownFields protoimpl.UnknownFields
|
|
5843
|
+
|
|
5844
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
5845
|
+
}
|
|
5846
|
+
|
|
5847
|
+
func (x *IsMetadataFieldsFederationEnabledRequest) Reset() {
|
|
5848
|
+
*x = IsMetadataFieldsFederationEnabledRequest{}
|
|
5849
|
+
if protoimpl.UnsafeEnabled {
|
|
5850
|
+
mi := &file_multitenant_proto_msgTypes[97]
|
|
5851
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5852
|
+
ms.StoreMessageInfo(mi)
|
|
5853
|
+
}
|
|
5854
|
+
}
|
|
5855
|
+
|
|
5856
|
+
func (x *IsMetadataFieldsFederationEnabledRequest) String() string {
|
|
5857
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5858
|
+
}
|
|
5859
|
+
|
|
5860
|
+
func (*IsMetadataFieldsFederationEnabledRequest) ProtoMessage() {}
|
|
5861
|
+
|
|
5862
|
+
func (x *IsMetadataFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
|
|
5863
|
+
mi := &file_multitenant_proto_msgTypes[97]
|
|
5864
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5865
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5866
|
+
if ms.LoadMessageInfo() == nil {
|
|
5867
|
+
ms.StoreMessageInfo(mi)
|
|
5868
|
+
}
|
|
5869
|
+
return ms
|
|
5870
|
+
}
|
|
5871
|
+
return mi.MessageOf(x)
|
|
5872
|
+
}
|
|
5873
|
+
|
|
5874
|
+
// Deprecated: Use IsMetadataFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
|
|
5875
|
+
func (*IsMetadataFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
|
|
5876
|
+
return file_multitenant_proto_rawDescGZIP(), []int{97}
|
|
5877
|
+
}
|
|
5878
|
+
|
|
5879
|
+
func (x *IsMetadataFieldsFederationEnabledRequest) GetSiteId() string {
|
|
5880
|
+
if x != nil {
|
|
5881
|
+
return x.SiteId
|
|
5882
|
+
}
|
|
5883
|
+
return ""
|
|
5884
|
+
}
|
|
5885
|
+
|
|
5729
5886
|
type IsCustomFieldsFederationEnabledResponse struct {
|
|
5730
5887
|
state protoimpl.MessageState
|
|
5731
5888
|
sizeCache protoimpl.SizeCache
|
|
@@ -5737,7 +5894,7 @@ type IsCustomFieldsFederationEnabledResponse struct {
|
|
|
5737
5894
|
func (x *IsCustomFieldsFederationEnabledResponse) Reset() {
|
|
5738
5895
|
*x = IsCustomFieldsFederationEnabledResponse{}
|
|
5739
5896
|
if protoimpl.UnsafeEnabled {
|
|
5740
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5897
|
+
mi := &file_multitenant_proto_msgTypes[98]
|
|
5741
5898
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5742
5899
|
ms.StoreMessageInfo(mi)
|
|
5743
5900
|
}
|
|
@@ -5750,7 +5907,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) String() string {
|
|
|
5750
5907
|
func (*IsCustomFieldsFederationEnabledResponse) ProtoMessage() {}
|
|
5751
5908
|
|
|
5752
5909
|
func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
|
|
5753
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5910
|
+
mi := &file_multitenant_proto_msgTypes[98]
|
|
5754
5911
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5755
5912
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5756
5913
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5763,7 +5920,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Me
|
|
|
5763
5920
|
|
|
5764
5921
|
// Deprecated: Use IsCustomFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
|
|
5765
5922
|
func (*IsCustomFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
|
|
5766
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5923
|
+
return file_multitenant_proto_rawDescGZIP(), []int{98}
|
|
5767
5924
|
}
|
|
5768
5925
|
|
|
5769
5926
|
func (x *IsCustomFieldsFederationEnabledResponse) GetIsEnabled() bool {
|
|
@@ -5773,6 +5930,53 @@ func (x *IsCustomFieldsFederationEnabledResponse) GetIsEnabled() bool {
|
|
|
5773
5930
|
return false
|
|
5774
5931
|
}
|
|
5775
5932
|
|
|
5933
|
+
type IsMetadataFieldsFederationEnabledResponse struct {
|
|
5934
|
+
state protoimpl.MessageState
|
|
5935
|
+
sizeCache protoimpl.SizeCache
|
|
5936
|
+
unknownFields protoimpl.UnknownFields
|
|
5937
|
+
|
|
5938
|
+
IsEnabled bool `protobuf:"varint,1,opt,name=is_enabled,json=isEnabled,proto3" json:"is_enabled,omitempty"`
|
|
5939
|
+
}
|
|
5940
|
+
|
|
5941
|
+
func (x *IsMetadataFieldsFederationEnabledResponse) Reset() {
|
|
5942
|
+
*x = IsMetadataFieldsFederationEnabledResponse{}
|
|
5943
|
+
if protoimpl.UnsafeEnabled {
|
|
5944
|
+
mi := &file_multitenant_proto_msgTypes[99]
|
|
5945
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5946
|
+
ms.StoreMessageInfo(mi)
|
|
5947
|
+
}
|
|
5948
|
+
}
|
|
5949
|
+
|
|
5950
|
+
func (x *IsMetadataFieldsFederationEnabledResponse) String() string {
|
|
5951
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5952
|
+
}
|
|
5953
|
+
|
|
5954
|
+
func (*IsMetadataFieldsFederationEnabledResponse) ProtoMessage() {}
|
|
5955
|
+
|
|
5956
|
+
func (x *IsMetadataFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
|
|
5957
|
+
mi := &file_multitenant_proto_msgTypes[99]
|
|
5958
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5959
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5960
|
+
if ms.LoadMessageInfo() == nil {
|
|
5961
|
+
ms.StoreMessageInfo(mi)
|
|
5962
|
+
}
|
|
5963
|
+
return ms
|
|
5964
|
+
}
|
|
5965
|
+
return mi.MessageOf(x)
|
|
5966
|
+
}
|
|
5967
|
+
|
|
5968
|
+
// Deprecated: Use IsMetadataFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
|
|
5969
|
+
func (*IsMetadataFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
|
|
5970
|
+
return file_multitenant_proto_rawDescGZIP(), []int{99}
|
|
5971
|
+
}
|
|
5972
|
+
|
|
5973
|
+
func (x *IsMetadataFieldsFederationEnabledResponse) GetIsEnabled() bool {
|
|
5974
|
+
if x != nil {
|
|
5975
|
+
return x.IsEnabled
|
|
5976
|
+
}
|
|
5977
|
+
return false
|
|
5978
|
+
}
|
|
5979
|
+
|
|
5776
5980
|
type GetSitePreviewRequest struct {
|
|
5777
5981
|
state protoimpl.MessageState
|
|
5778
5982
|
sizeCache protoimpl.SizeCache
|
|
@@ -5784,7 +5988,7 @@ type GetSitePreviewRequest struct {
|
|
|
5784
5988
|
func (x *GetSitePreviewRequest) Reset() {
|
|
5785
5989
|
*x = GetSitePreviewRequest{}
|
|
5786
5990
|
if protoimpl.UnsafeEnabled {
|
|
5787
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5991
|
+
mi := &file_multitenant_proto_msgTypes[100]
|
|
5788
5992
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5789
5993
|
ms.StoreMessageInfo(mi)
|
|
5790
5994
|
}
|
|
@@ -5797,7 +6001,7 @@ func (x *GetSitePreviewRequest) String() string {
|
|
|
5797
6001
|
func (*GetSitePreviewRequest) ProtoMessage() {}
|
|
5798
6002
|
|
|
5799
6003
|
func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
|
|
5800
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6004
|
+
mi := &file_multitenant_proto_msgTypes[100]
|
|
5801
6005
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5802
6006
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5803
6007
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5810,7 +6014,7 @@ func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
|
|
|
5810
6014
|
|
|
5811
6015
|
// Deprecated: Use GetSitePreviewRequest.ProtoReflect.Descriptor instead.
|
|
5812
6016
|
func (*GetSitePreviewRequest) Descriptor() ([]byte, []int) {
|
|
5813
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6017
|
+
return file_multitenant_proto_rawDescGZIP(), []int{100}
|
|
5814
6018
|
}
|
|
5815
6019
|
|
|
5816
6020
|
func (x *GetSitePreviewRequest) GetSiteId() string {
|
|
@@ -5831,7 +6035,7 @@ type GetSitePreviewResponse struct {
|
|
|
5831
6035
|
func (x *GetSitePreviewResponse) Reset() {
|
|
5832
6036
|
*x = GetSitePreviewResponse{}
|
|
5833
6037
|
if protoimpl.UnsafeEnabled {
|
|
5834
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6038
|
+
mi := &file_multitenant_proto_msgTypes[101]
|
|
5835
6039
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5836
6040
|
ms.StoreMessageInfo(mi)
|
|
5837
6041
|
}
|
|
@@ -5844,7 +6048,7 @@ func (x *GetSitePreviewResponse) String() string {
|
|
|
5844
6048
|
func (*GetSitePreviewResponse) ProtoMessage() {}
|
|
5845
6049
|
|
|
5846
6050
|
func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
|
|
5847
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6051
|
+
mi := &file_multitenant_proto_msgTypes[101]
|
|
5848
6052
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5849
6053
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5850
6054
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5857,7 +6061,7 @@ func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
|
|
|
5857
6061
|
|
|
5858
6062
|
// Deprecated: Use GetSitePreviewResponse.ProtoReflect.Descriptor instead.
|
|
5859
6063
|
func (*GetSitePreviewResponse) Descriptor() ([]byte, []int) {
|
|
5860
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6064
|
+
return file_multitenant_proto_rawDescGZIP(), []int{101}
|
|
5861
6065
|
}
|
|
5862
6066
|
|
|
5863
6067
|
func (x *GetSitePreviewResponse) GetSite() *PreviewSite {
|
|
@@ -5879,7 +6083,7 @@ type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
|
5879
6083
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
|
|
5880
6084
|
*x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
|
|
5881
6085
|
if protoimpl.UnsafeEnabled {
|
|
5882
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6086
|
+
mi := &file_multitenant_proto_msgTypes[102]
|
|
5883
6087
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5884
6088
|
ms.StoreMessageInfo(mi)
|
|
5885
6089
|
}
|
|
@@ -5892,7 +6096,7 @@ func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
|
|
|
5892
6096
|
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
|
|
5893
6097
|
|
|
5894
6098
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
|
|
5895
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6099
|
+
mi := &file_multitenant_proto_msgTypes[102]
|
|
5896
6100
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5897
6101
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5898
6102
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5933,7 +6137,7 @@ type Install_InstallState struct {
|
|
|
5933
6137
|
func (x *Install_InstallState) Reset() {
|
|
5934
6138
|
*x = Install_InstallState{}
|
|
5935
6139
|
if protoimpl.UnsafeEnabled {
|
|
5936
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6140
|
+
mi := &file_multitenant_proto_msgTypes[103]
|
|
5937
6141
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5938
6142
|
ms.StoreMessageInfo(mi)
|
|
5939
6143
|
}
|
|
@@ -5946,7 +6150,7 @@ func (x *Install_InstallState) String() string {
|
|
|
5946
6150
|
func (*Install_InstallState) ProtoMessage() {}
|
|
5947
6151
|
|
|
5948
6152
|
func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
|
|
5949
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6153
|
+
mi := &file_multitenant_proto_msgTypes[103]
|
|
5950
6154
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5951
6155
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5952
6156
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5983,7 +6187,7 @@ type GetInstallsBySiteRequest_Filter struct {
|
|
|
5983
6187
|
func (x *GetInstallsBySiteRequest_Filter) Reset() {
|
|
5984
6188
|
*x = GetInstallsBySiteRequest_Filter{}
|
|
5985
6189
|
if protoimpl.UnsafeEnabled {
|
|
5986
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6190
|
+
mi := &file_multitenant_proto_msgTypes[104]
|
|
5987
6191
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5988
6192
|
ms.StoreMessageInfo(mi)
|
|
5989
6193
|
}
|
|
@@ -5996,7 +6200,7 @@ func (x *GetInstallsBySiteRequest_Filter) String() string {
|
|
|
5996
6200
|
func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
|
|
5997
6201
|
|
|
5998
6202
|
func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
|
|
5999
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6203
|
+
mi := &file_multitenant_proto_msgTypes[104]
|
|
6000
6204
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6001
6205
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6002
6206
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6048,7 +6252,7 @@ type UpdateInstallByClientIdRequest_SyncerSettings struct {
|
|
|
6048
6252
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
|
|
6049
6253
|
*x = UpdateInstallByClientIdRequest_SyncerSettings{}
|
|
6050
6254
|
if protoimpl.UnsafeEnabled {
|
|
6051
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6255
|
+
mi := &file_multitenant_proto_msgTypes[105]
|
|
6052
6256
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6053
6257
|
ms.StoreMessageInfo(mi)
|
|
6054
6258
|
}
|
|
@@ -6061,7 +6265,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
|
|
|
6061
6265
|
func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
|
|
6062
6266
|
|
|
6063
6267
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
|
|
6064
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6268
|
+
mi := &file_multitenant_proto_msgTypes[105]
|
|
6065
6269
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6066
6270
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6067
6271
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6117,7 +6321,7 @@ type RemoveInstallDataBySiteIdResponse_Result struct {
|
|
|
6117
6321
|
func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
|
|
6118
6322
|
*x = RemoveInstallDataBySiteIdResponse_Result{}
|
|
6119
6323
|
if protoimpl.UnsafeEnabled {
|
|
6120
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6324
|
+
mi := &file_multitenant_proto_msgTypes[106]
|
|
6121
6325
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6122
6326
|
ms.StoreMessageInfo(mi)
|
|
6123
6327
|
}
|
|
@@ -6130,7 +6334,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
|
|
|
6130
6334
|
func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
|
|
6131
6335
|
|
|
6132
6336
|
func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
|
|
6133
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6337
|
+
mi := &file_multitenant_proto_msgTypes[106]
|
|
6134
6338
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6135
6339
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6136
6340
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6172,7 +6376,7 @@ type GetUserPermissionsResponse_AuthorizationAction struct {
|
|
|
6172
6376
|
func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
|
|
6173
6377
|
*x = GetUserPermissionsResponse_AuthorizationAction{}
|
|
6174
6378
|
if protoimpl.UnsafeEnabled {
|
|
6175
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6379
|
+
mi := &file_multitenant_proto_msgTypes[107]
|
|
6176
6380
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6177
6381
|
ms.StoreMessageInfo(mi)
|
|
6178
6382
|
}
|
|
@@ -6185,7 +6389,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
|
|
|
6185
6389
|
func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
|
|
6186
6390
|
|
|
6187
6391
|
func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
|
|
6188
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6392
|
+
mi := &file_multitenant_proto_msgTypes[107]
|
|
6189
6393
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6190
6394
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6191
6395
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6226,7 +6430,7 @@ type GetUserPermissionsResponse_Scope struct {
|
|
|
6226
6430
|
func (x *GetUserPermissionsResponse_Scope) Reset() {
|
|
6227
6431
|
*x = GetUserPermissionsResponse_Scope{}
|
|
6228
6432
|
if protoimpl.UnsafeEnabled {
|
|
6229
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6433
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6230
6434
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6231
6435
|
ms.StoreMessageInfo(mi)
|
|
6232
6436
|
}
|
|
@@ -6239,7 +6443,7 @@ func (x *GetUserPermissionsResponse_Scope) String() string {
|
|
|
6239
6443
|
func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
|
|
6240
6444
|
|
|
6241
6445
|
func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
6242
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6446
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6243
6447
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6244
6448
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6245
6449
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6276,7 +6480,7 @@ type GetUserPermissionsResponse_Role struct {
|
|
|
6276
6480
|
func (x *GetUserPermissionsResponse_Role) Reset() {
|
|
6277
6481
|
*x = GetUserPermissionsResponse_Role{}
|
|
6278
6482
|
if protoimpl.UnsafeEnabled {
|
|
6279
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6483
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6280
6484
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6281
6485
|
ms.StoreMessageInfo(mi)
|
|
6282
6486
|
}
|
|
@@ -6289,7 +6493,7 @@ func (x *GetUserPermissionsResponse_Role) String() string {
|
|
|
6289
6493
|
func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
|
|
6290
6494
|
|
|
6291
6495
|
func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
6292
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6496
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6293
6497
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6294
6498
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6295
6499
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6348,7 +6552,7 @@ type DisableWebhookEmailRequest_WebhookError struct {
|
|
|
6348
6552
|
func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
|
|
6349
6553
|
*x = DisableWebhookEmailRequest_WebhookError{}
|
|
6350
6554
|
if protoimpl.UnsafeEnabled {
|
|
6351
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6555
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6352
6556
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6353
6557
|
ms.StoreMessageInfo(mi)
|
|
6354
6558
|
}
|
|
@@ -6361,7 +6565,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) String() string {
|
|
|
6361
6565
|
func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
|
|
6362
6566
|
|
|
6363
6567
|
func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
|
|
6364
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6568
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6365
6569
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6366
6570
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6367
6571
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6418,7 +6622,7 @@ type GetMsmpOrganizationListRequest_MsmpPaginationRequest struct {
|
|
|
6418
6622
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) Reset() {
|
|
6419
6623
|
*x = GetMsmpOrganizationListRequest_MsmpPaginationRequest{}
|
|
6420
6624
|
if protoimpl.UnsafeEnabled {
|
|
6421
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6625
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6422
6626
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6423
6627
|
ms.StoreMessageInfo(mi)
|
|
6424
6628
|
}
|
|
@@ -6431,7 +6635,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) String() string {
|
|
|
6431
6635
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoMessage() {}
|
|
6432
6636
|
|
|
6433
6637
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() protoreflect.Message {
|
|
6434
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6638
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6435
6639
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6436
6640
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6437
6641
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6444,7 +6648,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() pr
|
|
|
6444
6648
|
|
|
6445
6649
|
// Deprecated: Use GetMsmpOrganizationListRequest_MsmpPaginationRequest.ProtoReflect.Descriptor instead.
|
|
6446
6650
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) Descriptor() ([]byte, []int) {
|
|
6447
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6651
|
+
return file_multitenant_proto_rawDescGZIP(), []int{89, 0}
|
|
6448
6652
|
}
|
|
6449
6653
|
|
|
6450
6654
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) GetOffset() int32 {
|
|
@@ -6473,7 +6677,7 @@ type GetMsmpOrganizationListResponse_MsmpOrganization struct {
|
|
|
6473
6677
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) Reset() {
|
|
6474
6678
|
*x = GetMsmpOrganizationListResponse_MsmpOrganization{}
|
|
6475
6679
|
if protoimpl.UnsafeEnabled {
|
|
6476
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6680
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6477
6681
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6478
6682
|
ms.StoreMessageInfo(mi)
|
|
6479
6683
|
}
|
|
@@ -6486,7 +6690,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) String() string {
|
|
|
6486
6690
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) ProtoMessage() {}
|
|
6487
6691
|
|
|
6488
6692
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protoreflect.Message {
|
|
6489
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6693
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6490
6694
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6491
6695
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6492
6696
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6499,7 +6703,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protor
|
|
|
6499
6703
|
|
|
6500
6704
|
// Deprecated: Use GetMsmpOrganizationListResponse_MsmpOrganization.ProtoReflect.Descriptor instead.
|
|
6501
6705
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) Descriptor() ([]byte, []int) {
|
|
6502
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6706
|
+
return file_multitenant_proto_rawDescGZIP(), []int{90, 0}
|
|
6503
6707
|
}
|
|
6504
6708
|
|
|
6505
6709
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) GetId() string {
|
|
@@ -6530,7 +6734,7 @@ type GetMsmpOrganizationListResponse_MsmpPageInfo struct {
|
|
|
6530
6734
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) Reset() {
|
|
6531
6735
|
*x = GetMsmpOrganizationListResponse_MsmpPageInfo{}
|
|
6532
6736
|
if protoimpl.UnsafeEnabled {
|
|
6533
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6737
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6534
6738
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6535
6739
|
ms.StoreMessageInfo(mi)
|
|
6536
6740
|
}
|
|
@@ -6543,7 +6747,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) String() string {
|
|
|
6543
6747
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoMessage() {}
|
|
6544
6748
|
|
|
6545
6749
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protoreflect.Message {
|
|
6546
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6750
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6547
6751
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6548
6752
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6549
6753
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6556,7 +6760,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protorefle
|
|
|
6556
6760
|
|
|
6557
6761
|
// Deprecated: Use GetMsmpOrganizationListResponse_MsmpPageInfo.ProtoReflect.Descriptor instead.
|
|
6558
6762
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) Descriptor() ([]byte, []int) {
|
|
6559
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6763
|
+
return file_multitenant_proto_rawDescGZIP(), []int{90, 1}
|
|
6560
6764
|
}
|
|
6561
6765
|
|
|
6562
6766
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) GetTotal() int32 {
|
|
@@ -7294,603 +7498,645 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
7294
7498
|
0x75, 0x65, 0x22, 0x36, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65,
|
|
7295
7499
|
0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7296
7500
|
0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
7297
|
-
0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22,
|
|
7298
|
-
|
|
7299
|
-
|
|
7300
|
-
|
|
7301
|
-
|
|
7302
|
-
|
|
7303
|
-
|
|
7304
|
-
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
0x69,
|
|
7308
|
-
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
|
-
|
|
7312
|
-
|
|
7313
|
-
|
|
7314
|
-
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7318
|
-
|
|
7319
|
-
|
|
7320
|
-
|
|
7321
|
-
|
|
7322
|
-
|
|
7501
|
+
0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x1f, 0x55,
|
|
7502
|
+
0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74,
|
|
7503
|
+
0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17,
|
|
7504
|
+
0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
7505
|
+
0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6b, 0x69, 0x70, 0x5f,
|
|
7506
|
+
0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
7507
|
+
0x08, 0x52, 0x0e, 0x73, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72,
|
|
7508
|
+
0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18,
|
|
7509
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79,
|
|
7510
|
+
0x22, 0x3c, 0x0a, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b,
|
|
7511
|
+
0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70,
|
|
7512
|
+
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18,
|
|
7513
|
+
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x31,
|
|
7514
|
+
0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52,
|
|
7515
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69,
|
|
7516
|
+
0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
7517
|
+
0x73, 0x22, 0xe2, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d,
|
|
7518
|
+
0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x61, 0x0a, 0x0b, 0x73,
|
|
7519
|
+
0x69, 0x74, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
|
|
7520
|
+
0x32, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7521
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
7522
|
+
0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
7523
|
+
0x73, 0x65, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x74,
|
|
7524
|
+
0x72, 0x79, 0x52, 0x0a, 0x73, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x1a, 0x66,
|
|
7525
|
+
0x0a, 0x0f, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x72,
|
|
7526
|
+
0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
|
7527
|
+
0x6b, 0x65, 0x79, 0x12, 0x3d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
7528
|
+
0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7529
|
+
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31,
|
|
7530
|
+
0x2e, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
|
7531
|
+
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x3e, 0x0a, 0x0e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61,
|
|
7532
|
+
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
|
|
7533
|
+
0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
|
|
7534
|
+
0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
|
|
7535
|
+
0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x7c, 0x0a, 0x12, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61,
|
|
7536
|
+
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05,
|
|
7537
|
+
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74,
|
|
7538
|
+
0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01,
|
|
7539
|
+
0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
|
|
7540
|
+
0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
|
|
7541
|
+
0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67,
|
|
7542
|
+
0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74,
|
|
7543
|
+
0x50, 0x61, 0x67, 0x65, 0x22, 0x95, 0x02, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
|
|
7544
|
+
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
|
|
7545
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
|
|
7546
|
+
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
|
|
7547
|
+
0x12, 0x78, 0x0a, 0x0f, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
|
|
7548
|
+
0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7549
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7550
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67,
|
|
7551
|
+
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
|
|
7552
|
+
0x75, 0x65, 0x73, 0x74, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
|
|
7553
|
+
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70,
|
|
7554
|
+
0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72,
|
|
7555
|
+
0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72,
|
|
7556
|
+
0x61, 0x63, 0x65, 0x49, 0x64, 0x1a, 0x45, 0x0a, 0x15, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67,
|
|
7557
|
+
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
|
|
7558
|
+
0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
|
|
7323
7559
|
0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
|
|
7324
|
-
|
|
7325
|
-
|
|
7326
|
-
|
|
7327
|
-
|
|
7328
|
-
|
|
7329
|
-
0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01,
|
|
7330
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x78, 0x0a, 0x0f,
|
|
7331
|
-
0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
|
|
7332
|
-
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7333
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7334
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
|
|
7335
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7336
|
-
0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
7337
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69,
|
|
7338
|
-
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f,
|
|
7339
|
-
0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49,
|
|
7340
|
-
0x64, 0x1a, 0x45, 0x0a, 0x15, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
|
|
7341
|
-
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
|
|
7342
|
-
0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
|
|
7343
|
-
0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
7344
|
-
0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xb3, 0x03, 0x0a, 0x1f, 0x47, 0x65, 0x74,
|
|
7345
|
-
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7346
|
-
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0d,
|
|
7347
|
-
0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20,
|
|
7348
|
-
0x03, 0x28, 0x0b, 0x32, 0x4b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7349
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7350
|
-
0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
|
|
7351
|
-
0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
|
|
7352
|
-
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7353
|
-
0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
|
|
7354
|
-
0x6d, 0x0a, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66,
|
|
7355
|
-
0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7560
|
+
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xb3, 0x03, 0x0a,
|
|
7561
|
+
0x1f, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
|
|
7562
|
+
0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7563
|
+
0x12, 0x71, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7564
|
+
0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7356
7565
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7357
7566
|
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
|
|
7358
7567
|
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7359
|
-
0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70,
|
|
7360
|
-
|
|
7361
|
-
|
|
7362
|
-
|
|
7363
|
-
|
|
7364
|
-
|
|
7365
|
-
|
|
7366
|
-
|
|
7367
|
-
|
|
7368
|
-
0x66,
|
|
7369
|
-
|
|
7370
|
-
|
|
7371
|
-
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
|
-
|
|
7382
|
-
|
|
7383
|
-
|
|
7384
|
-
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
|
|
7388
|
-
|
|
7389
|
-
|
|
7390
|
-
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7398
|
-
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7402
|
-
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7413
|
-
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
0x6e,
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
|
-
|
|
7422
|
-
|
|
7423
|
-
|
|
7424
|
-
|
|
7425
|
-
|
|
7426
|
-
|
|
7427
|
-
|
|
7428
|
-
|
|
7429
|
-
|
|
7430
|
-
|
|
7431
|
-
|
|
7432
|
-
|
|
7433
|
-
|
|
7434
|
-
|
|
7435
|
-
|
|
7436
|
-
|
|
7437
|
-
|
|
7438
|
-
|
|
7439
|
-
|
|
7440
|
-
|
|
7441
|
-
|
|
7442
|
-
|
|
7443
|
-
|
|
7444
|
-
|
|
7445
|
-
|
|
7446
|
-
|
|
7447
|
-
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
|
|
7451
|
-
|
|
7452
|
-
|
|
7453
|
-
|
|
7454
|
-
|
|
7455
|
-
|
|
7456
|
-
|
|
7457
|
-
|
|
7458
|
-
|
|
7459
|
-
|
|
7460
|
-
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7568
|
+
0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
|
|
7569
|
+
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69,
|
|
7570
|
+
0x6f, 0x6e, 0x73, 0x12, 0x6d, 0x0a, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x65,
|
|
7571
|
+
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x6c, 0x61,
|
|
7572
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7573
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
7574
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
|
|
7575
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65,
|
|
7576
|
+
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e,
|
|
7577
|
+
0x66, 0x6f, 0x1a, 0x36, 0x0a, 0x10, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7578
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
7579
|
+
0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
|
|
7580
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x1a, 0x76, 0x0a, 0x0c, 0x4d, 0x73,
|
|
7581
|
+
0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
|
|
7582
|
+
0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
|
|
7583
|
+
0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
|
|
7584
|
+
0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69,
|
|
7585
|
+
0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22,
|
|
7586
|
+
0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18,
|
|
7587
|
+
0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61,
|
|
7588
|
+
0x67, 0x65, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
|
|
7589
|
+
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
7590
|
+
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
|
|
7591
|
+
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
|
|
7592
|
+
0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7593
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
7594
|
+
0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
7595
|
+
0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
7596
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc0,
|
|
7597
|
+
0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7598
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
|
7599
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
7600
|
+
0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20,
|
|
7601
|
+
0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f,
|
|
7602
|
+
0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
|
|
7603
|
+
0x73, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x57, 0x0a, 0x29, 0x68, 0x61, 0x73, 0x5f,
|
|
7604
|
+
0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x73,
|
|
7605
|
+
0x69, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x70,
|
|
7606
|
+
0x6f, 0x72, 0x74, 0x61, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x24, 0x68, 0x61, 0x73,
|
|
7607
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x69, 0x74,
|
|
7608
|
+
0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x61,
|
|
7609
|
+
0x6c, 0x22, 0xdf, 0x01, 0x0a, 0x23, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79,
|
|
7610
|
+
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7611
|
+
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65,
|
|
7612
|
+
0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
|
|
7613
|
+
0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e,
|
|
7614
|
+
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
7615
|
+
0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69,
|
|
7616
|
+
0x6f, 0x6e, 0x49, 0x64, 0x12, 0x52, 0x0a, 0x0f, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67,
|
|
7617
|
+
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e,
|
|
7618
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
7619
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61,
|
|
7620
|
+
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61,
|
|
7621
|
+
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63,
|
|
7622
|
+
0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63,
|
|
7623
|
+
0x65, 0x49, 0x64, 0x22, 0xc5, 0x01, 0x0a, 0x24, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73,
|
|
7624
|
+
0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69,
|
|
7625
|
+
0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x05,
|
|
7626
|
+
0x73, 0x69, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61,
|
|
7627
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7628
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53,
|
|
7629
|
+
0x69, 0x74, 0x65, 0x52, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73, 0x12, 0x5f, 0x0a, 0x14, 0x6d, 0x73,
|
|
7630
|
+
0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e,
|
|
7631
|
+
0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
7632
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7633
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
|
|
7634
|
+
0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67,
|
|
7635
|
+
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x5c, 0x0a, 0x27, 0x53,
|
|
7636
|
+
0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46,
|
|
7637
|
+
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
7638
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69,
|
|
7639
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12,
|
|
7640
|
+
0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
|
|
7641
|
+
0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x41, 0x0a, 0x26, 0x49, 0x73, 0x43,
|
|
7642
|
+
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
7643
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
7644
|
+
0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
|
|
7645
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x43, 0x0a, 0x28,
|
|
7646
|
+
0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73,
|
|
7647
|
+
0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
7648
|
+
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65,
|
|
7649
|
+
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49,
|
|
7650
|
+
0x64, 0x22, 0x48, 0x0a, 0x27, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65,
|
|
7651
|
+
0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61,
|
|
7652
|
+
0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
|
|
7653
|
+
0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
|
|
7654
|
+
0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x4a, 0x0a, 0x29, 0x49,
|
|
7655
|
+
0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46,
|
|
7656
|
+
0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
7657
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65,
|
|
7658
|
+
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73,
|
|
7659
|
+
0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x30, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
7660
|
+
0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7661
|
+
0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
7662
|
+
0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x54, 0x0a, 0x16, 0x47, 0x65, 0x74,
|
|
7663
|
+
0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7664
|
+
0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
7665
|
+
0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7666
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
|
|
7667
|
+
0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x04, 0x73, 0x69, 0x74, 0x65, 0x2a,
|
|
7668
|
+
0x4e, 0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55,
|
|
7669
|
+
0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a,
|
|
7670
|
+
0x0c, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12,
|
|
7671
|
+
0x08, 0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x48, 0x59, 0x42,
|
|
7672
|
+
0x52, 0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x2a,
|
|
7673
|
+
0x77, 0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56,
|
|
7674
|
+
0x61, 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f,
|
|
7675
|
+
0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53,
|
|
7676
|
+
0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x4e,
|
|
7677
|
+
0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55,
|
|
7678
|
+
0x45, 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x4e, 0x53, 0x54,
|
|
7679
|
+
0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
7680
|
+
0x55, 0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x2a, 0x4d, 0x0a, 0x0b, 0x49, 0x6e, 0x73, 0x74,
|
|
7681
|
+
0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x49, 0x54, 0x10, 0x00, 0x12,
|
|
7682
|
+
0x06, 0x0a, 0x02, 0x4f, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x54, 0x5f, 0x41, 0x47,
|
|
7683
|
+
0x45, 0x4e, 0x54, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x03,
|
|
7684
|
+
0x12, 0x15, 0x0a, 0x11, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x5f, 0x44, 0x49, 0x53, 0x43,
|
|
7685
|
+
0x4f, 0x56, 0x45, 0x52, 0x59, 0x10, 0x04, 0x2a, 0xf3, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73,
|
|
7686
|
+
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24,
|
|
7687
|
+
0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50,
|
|
7688
|
+
0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49,
|
|
7689
|
+
0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52,
|
|
7690
|
+
0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55,
|
|
7691
|
+
0x45, 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42,
|
|
7692
|
+
0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56,
|
|
7693
|
+
0x41, 0x4c, 0x55, 0x45, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x57, 0x41, 0x52, 0x45, 0x10, 0x02, 0x12,
|
|
7694
|
+
0x23, 0x0a, 0x1f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f,
|
|
7695
|
+
0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54,
|
|
7696
|
+
0x45, 0x52, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
|
|
7467
7697
|
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
7468
|
-
|
|
7469
|
-
|
|
7470
|
-
|
|
7471
|
-
|
|
7472
|
-
|
|
7473
|
-
|
|
7474
|
-
|
|
7475
|
-
|
|
7476
|
-
|
|
7698
|
+
0x50, 0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a, 0x22, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49,
|
|
7699
|
+
0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
7700
|
+
0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, 0x05, 0x32, 0xf7, 0x36,
|
|
7701
|
+
0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01,
|
|
7702
|
+
0x0a, 0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53,
|
|
7703
|
+
0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e,
|
|
7704
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7705
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
7706
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63,
|
|
7707
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f,
|
|
7708
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7709
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
7710
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63,
|
|
7711
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
7712
|
+
0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73,
|
|
7713
|
+
0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
7714
|
+
0x64, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7715
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68,
|
|
7716
|
+
0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42,
|
|
7717
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7718
|
+
0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7719
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
|
|
7477
7720
|
0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79,
|
|
7478
|
-
|
|
7479
|
-
|
|
7480
|
-
|
|
7481
|
-
0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
7482
|
-
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7483
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7484
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73,
|
|
7485
|
-
0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
7486
|
-
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a,
|
|
7487
|
-
0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69,
|
|
7488
|
-
0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3d, 0x2e, 0x6c,
|
|
7721
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7722
|
+
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65,
|
|
7723
|
+
0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c,
|
|
7489
7724
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7490
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7491
|
-
|
|
7492
|
-
|
|
7493
|
-
|
|
7494
|
-
|
|
7495
|
-
|
|
7496
|
-
|
|
7497
|
-
|
|
7498
|
-
|
|
7499
|
-
|
|
7500
|
-
0x2e,
|
|
7501
|
-
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79,
|
|
7502
|
-
|
|
7503
|
-
|
|
7504
|
-
|
|
7505
|
-
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
7512
|
-
0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7513
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65,
|
|
7514
|
-
0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
7515
|
-
0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
7516
|
-
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x50, 0x72,
|
|
7725
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76,
|
|
7726
|
+
0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65,
|
|
7727
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7728
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7729
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
|
|
7730
|
+
0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
7731
|
+
0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76,
|
|
7732
|
+
0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
7733
|
+
0x65, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7734
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7735
|
+
0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63,
|
|
7736
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52,
|
|
7737
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
7738
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
7739
|
+
0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
|
|
7740
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
7741
|
+
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e,
|
|
7742
|
+
0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
7743
|
+
0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x12, 0x40,
|
|
7744
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7745
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72,
|
|
7517
7746
|
0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41,
|
|
7518
|
-
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73,
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
0x6e, 0x73,
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
0x75,
|
|
7527
|
-
|
|
7528
|
-
|
|
7747
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7748
|
+
0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7749
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
7750
|
+
0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42,
|
|
7751
|
+
0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7752
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72,
|
|
7753
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
|
|
7754
|
+
0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7755
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
7756
|
+
0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f,
|
|
7757
|
+
0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c,
|
|
7529
7758
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7530
7759
|
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f,
|
|
7531
7760
|
0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
7532
|
-
0x52, 0x65,
|
|
7533
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7534
|
-
0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
7535
|
-
0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7536
|
-
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75,
|
|
7537
|
-
0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66,
|
|
7538
|
-
0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7539
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7540
|
-
0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c,
|
|
7541
|
-
0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
7542
|
-
0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7543
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c,
|
|
7761
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c,
|
|
7544
7762
|
0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e,
|
|
7545
|
-
0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
7546
|
-
0x65,
|
|
7547
|
-
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
|
|
7554
|
-
|
|
7763
|
+
0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7764
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7765
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
|
|
7766
|
+
0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
7767
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7768
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7769
|
+
0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
|
|
7770
|
+
0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65,
|
|
7771
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x50, 0x61, 0x74, 0x63,
|
|
7772
|
+
0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7773
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7774
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d,
|
|
7775
|
+
0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7555
7776
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7556
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7557
|
-
|
|
7558
|
-
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
|
|
7562
|
-
|
|
7563
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7564
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69,
|
|
7565
|
-
0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7566
|
-
0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7777
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65,
|
|
7778
|
+
0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
|
|
7779
|
+
0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12,
|
|
7780
|
+
0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7781
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
|
7782
|
+
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7783
|
+
0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7567
7784
|
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
|
|
7568
|
-
0x61, 0x74, 0x65,
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7572
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
7573
|
-
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52,
|
|
7574
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
7575
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
7576
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
7577
|
-
0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e,
|
|
7578
|
-
0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x66, 0x6f,
|
|
7579
|
-
0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x3d,
|
|
7580
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7581
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e,
|
|
7582
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c,
|
|
7583
|
-
0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e,
|
|
7785
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
7786
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
|
|
7787
|
+
0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x36, 0x2e,
|
|
7584
7788
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
7585
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7586
|
-
|
|
7587
|
-
|
|
7588
|
-
0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
7589
|
-
0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7590
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
7591
|
-
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65,
|
|
7592
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7789
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
7790
|
+
0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65,
|
|
7791
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7593
7792
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7594
|
-
0x31, 0x2e,
|
|
7595
|
-
|
|
7596
|
-
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
7597
|
-
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12,
|
|
7793
|
+
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49,
|
|
7794
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
7795
|
+
0x12, 0x80, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
7796
|
+
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
7598
7797
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
7599
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
7603
|
-
|
|
7604
|
-
|
|
7605
|
-
|
|
7606
|
-
0x12,
|
|
7607
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7608
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
7609
|
-
|
|
7610
|
-
|
|
7611
|
-
|
|
7612
|
-
|
|
7613
|
-
|
|
7614
|
-
0x73,
|
|
7615
|
-
|
|
7616
|
-
|
|
7617
|
-
|
|
7618
|
-
|
|
7798
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
7799
|
+
0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61,
|
|
7800
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7801
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7802
|
+
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
7803
|
+
0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7804
|
+
0x6c, 0x6c, 0x73, 0x66, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69,
|
|
7805
|
+
0x74, 0x65, 0x73, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7806
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7807
|
+
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75,
|
|
7808
|
+
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
7809
|
+
0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7810
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
7811
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c,
|
|
7812
|
+
0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
7813
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7814
|
+
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7815
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7816
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
7817
|
+
0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7619
7818
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7620
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7621
|
-
|
|
7622
|
-
|
|
7819
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
7820
|
+
0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
7821
|
+
0x12, 0x89, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
7822
|
+
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c, 0x61,
|
|
7823
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7824
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7825
|
+
0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65,
|
|
7826
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7827
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7828
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75,
|
|
7829
|
+
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a,
|
|
7830
|
+
0x14, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69,
|
|
7831
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7832
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7833
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c,
|
|
7834
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e,
|
|
7835
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
7836
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
|
|
7837
|
+
0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
7838
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64,
|
|
7623
7839
|
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
7624
7840
|
0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7625
7841
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7626
|
-
0x2e,
|
|
7842
|
+
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
7627
7843
|
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
7628
7844
|
0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7629
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7845
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
7630
7846
|
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
7631
|
-
0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
7632
|
-
0x0a,
|
|
7633
|
-
|
|
7634
|
-
|
|
7635
|
-
|
|
7636
|
-
0x61, 0x6c,
|
|
7637
|
-
|
|
7638
|
-
|
|
7639
|
-
|
|
7847
|
+
0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01,
|
|
7848
|
+
0x0a, 0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
7849
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7850
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7851
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
7852
|
+
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
7853
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7854
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7855
|
+
0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
7856
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7857
|
+
0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c,
|
|
7640
7858
|
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
7641
|
-
0x64,
|
|
7642
|
-
|
|
7643
|
-
|
|
7859
|
+
0x64, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7860
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
7861
|
+
0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
7862
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
7863
|
+
0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7864
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b,
|
|
7865
|
+
0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c,
|
|
7866
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
7867
|
+
0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7868
|
+
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c,
|
|
7869
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7870
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49,
|
|
7871
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
7872
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7644
7873
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7645
7874
|
0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
7646
|
-
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
7647
|
-
|
|
7648
|
-
|
|
7649
|
-
|
|
7650
|
-
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
7651
|
-
0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7652
|
-
0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3b,
|
|
7653
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7654
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76,
|
|
7655
|
-
0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69,
|
|
7656
|
-
0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61,
|
|
7657
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7658
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e,
|
|
7659
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49,
|
|
7660
|
-
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f,
|
|
7661
|
-
0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73,
|
|
7662
|
-
0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12,
|
|
7663
|
-
0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7664
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44,
|
|
7665
|
-
0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
7666
|
-
0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
7667
|
-
0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7668
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
7669
|
-
0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74,
|
|
7670
|
-
0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65,
|
|
7671
|
-
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74,
|
|
7672
|
-
0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12,
|
|
7673
|
-
0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7674
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55,
|
|
7675
|
-
0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
|
|
7676
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7677
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7678
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
7679
|
-
0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xbf,
|
|
7680
|
-
0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69,
|
|
7681
|
-
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63,
|
|
7682
|
-
0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7683
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7684
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70,
|
|
7685
|
-
0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61,
|
|
7686
|
-
0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75,
|
|
7687
|
-
0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7875
|
+
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7876
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
|
|
7877
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
7878
|
+
0x65, 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7688
7879
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7689
|
-
|
|
7690
|
-
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
|
|
7694
|
-
|
|
7695
|
-
|
|
7696
|
-
0x65,
|
|
7697
|
-
|
|
7698
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7699
|
-
0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45,
|
|
7700
|
-
0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c,
|
|
7701
|
-
0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
|
|
7702
|
-
0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
|
7703
|
-
0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7880
|
+
0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74,
|
|
7881
|
+
0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7882
|
+
0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7883
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d,
|
|
7884
|
+
0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79,
|
|
7885
|
+
0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
7886
|
+
0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
7887
|
+
0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62,
|
|
7888
|
+
0x61, 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7704
7889
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7705
|
-
0x2e,
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69,
|
|
7709
|
-
0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01,
|
|
7710
|
-
0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42,
|
|
7711
|
-
0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7890
|
+
0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
|
|
7891
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64,
|
|
7892
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7712
7893
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7713
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
|
|
7717
|
-
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
|
|
7894
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
|
|
7895
|
+
0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61,
|
|
7896
|
+
0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01,
|
|
7897
|
+
0x0a, 0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
7898
|
+
0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7899
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7900
|
+
0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
|
|
7901
|
+
0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7721
7902
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7722
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
|
|
7726
|
-
|
|
7727
|
-
|
|
7728
|
-
|
|
7729
|
-
0x74, 0x65,
|
|
7730
|
-
|
|
7731
|
-
|
|
7732
|
-
0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
|
|
7733
|
-
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x6c,
|
|
7734
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7735
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
|
|
7736
|
-
0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
7737
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x72,
|
|
7738
|
-
0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64,
|
|
7739
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7740
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7741
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61,
|
|
7742
|
-
0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65,
|
|
7743
|
-
0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
7903
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65,
|
|
7904
|
+
0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
7905
|
+
0x65, 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
|
|
7906
|
+
0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
|
7907
|
+
0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48,
|
|
7908
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7909
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
|
|
7910
|
+
0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65,
|
|
7911
|
+
0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65,
|
|
7912
|
+
0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
7744
7913
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7745
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7746
|
-
|
|
7747
|
-
|
|
7748
|
-
|
|
7749
|
-
|
|
7750
|
-
|
|
7751
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7752
|
-
|
|
7753
|
-
|
|
7754
|
-
0x65,
|
|
7755
|
-
|
|
7756
|
-
|
|
7757
|
-
|
|
7758
|
-
|
|
7759
|
-
|
|
7914
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70,
|
|
7915
|
+
0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c,
|
|
7916
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7917
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x44, 0x69,
|
|
7918
|
+
0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61,
|
|
7919
|
+
0x69, 0x6c, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7920
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44,
|
|
7921
|
+
0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61,
|
|
7922
|
+
0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7923
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7924
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62,
|
|
7925
|
+
0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
7926
|
+
0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f,
|
|
7927
|
+
0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c,
|
|
7928
|
+
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7929
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7930
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
|
|
7931
|
+
0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c,
|
|
7932
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7933
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
|
7934
|
+
0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7935
|
+
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
7936
|
+
0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c,
|
|
7937
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7938
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f,
|
|
7939
|
+
0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65,
|
|
7940
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7941
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7942
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42,
|
|
7943
|
+
0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
7944
|
+
0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67,
|
|
7945
|
+
0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
|
|
7946
|
+
0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7947
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63,
|
|
7948
|
+
0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63,
|
|
7949
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c,
|
|
7950
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7951
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61,
|
|
7952
|
+
0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
|
7953
|
+
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8f, 0x01, 0x0a,
|
|
7954
|
+
0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63,
|
|
7955
|
+
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7956
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7957
|
+
0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75,
|
|
7958
|
+
0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
7959
|
+
0x74, 0x1a, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7960
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
|
|
7961
|
+
0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
7962
|
+
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e,
|
|
7963
|
+
0x01, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69,
|
|
7964
|
+
0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d,
|
|
7760
7965
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7761
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7762
|
-
|
|
7763
|
-
|
|
7764
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41,
|
|
7765
|
-
0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52,
|
|
7766
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x53, 0x65,
|
|
7767
|
-
0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65,
|
|
7768
|
-
0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
7769
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
7770
|
-
0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63,
|
|
7771
|
-
0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
7772
|
-
0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7773
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53,
|
|
7774
|
-
0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73,
|
|
7775
|
-
0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
7776
|
-
0x00, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
|
|
7777
|
-
0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
7778
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
7779
|
-
0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
|
|
7780
|
-
0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7781
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7782
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
|
|
7783
|
-
0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
7784
|
-
0x03, 0x88, 0x02, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c,
|
|
7785
|
-
0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7786
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7787
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e,
|
|
7788
|
-
0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
7789
|
-
0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7790
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
|
7791
|
-
0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
|
|
7792
|
-
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x53,
|
|
7793
|
-
0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72,
|
|
7794
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x38, 0x2e,
|
|
7966
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
|
7967
|
+
0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73,
|
|
7968
|
+
0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e,
|
|
7795
7969
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
7796
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7797
|
-
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
|
|
7802
|
-
|
|
7803
|
-
|
|
7804
|
-
|
|
7970
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
7971
|
+
0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74,
|
|
7972
|
+
0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
7973
|
+
0xad, 0x01, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74,
|
|
7974
|
+
0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
7975
|
+
0x6e, 0x74, 0x49, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7976
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7977
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7978
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
7979
|
+
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
7805
7980
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7806
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7807
|
-
|
|
7808
|
-
|
|
7809
|
-
|
|
7810
|
-
|
|
7811
|
-
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
|
|
7816
|
-
|
|
7817
|
-
|
|
7818
|
-
|
|
7819
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
|
|
7820
|
-
0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52,
|
|
7821
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x47, 0x65, 0x74,
|
|
7822
|
-
0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7823
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7824
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69,
|
|
7825
|
-
0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61,
|
|
7981
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61,
|
|
7982
|
+
0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
7983
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
7984
|
+
0x7d, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78,
|
|
7985
|
+
0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7986
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7987
|
+
0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74,
|
|
7988
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7989
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7990
|
+
0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45,
|
|
7991
|
+
0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95,
|
|
7992
|
+
0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63,
|
|
7993
|
+
0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61,
|
|
7826
7994
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7827
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7828
|
-
|
|
7829
|
-
|
|
7830
|
-
|
|
7995
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69,
|
|
7996
|
+
0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c,
|
|
7997
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7998
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7999
|
+
0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f,
|
|
8000
|
+
0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70,
|
|
8001
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72,
|
|
8002
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x6c, 0x61,
|
|
8003
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8004
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
8005
|
+
0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8006
|
+
0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8007
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50,
|
|
8008
|
+
0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
8009
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x43, 0x72,
|
|
8010
|
+
0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x12,
|
|
8011
|
+
0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8012
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
|
8013
|
+
0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
|
|
8014
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8015
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8016
|
+
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f,
|
|
8017
|
+
0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a,
|
|
8018
|
+
0x21, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49,
|
|
8019
|
+
0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
8020
|
+
0x49, 0x64, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8021
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
8022
|
+
0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74,
|
|
8023
|
+
0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x38, 0x2e, 0x6c,
|
|
8024
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8025
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
|
|
8026
|
+
0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69,
|
|
8027
|
+
0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x43, 0x68, 0x65,
|
|
8028
|
+
0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f,
|
|
8029
|
+
0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x2e,
|
|
8030
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8031
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53,
|
|
8032
|
+
0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77,
|
|
8033
|
+
0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8034
|
+
0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8035
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68,
|
|
8036
|
+
0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53,
|
|
8037
|
+
0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
8038
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64,
|
|
8039
|
+
0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12,
|
|
8040
|
+
0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8041
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
8042
|
+
0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65,
|
|
8043
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8044
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8045
|
+
0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61,
|
|
8046
|
+
0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
|
|
8047
|
+
0x0a, 0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x12,
|
|
8048
|
+
0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8049
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
8050
|
+
0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8051
|
+
0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8052
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8053
|
+
0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8054
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
|
|
8055
|
+
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
|
|
8056
|
+
0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8057
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8058
|
+
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8059
|
+
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61,
|
|
7831
8060
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7832
8061
|
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
7833
8062
|
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
|
|
7834
|
-
0x65,
|
|
8063
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x47, 0x65,
|
|
8064
|
+
0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
8065
|
+
0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8066
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8067
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61,
|
|
8068
|
+
0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52,
|
|
8069
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
7835
8070
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
7836
8071
|
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7837
|
-
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7838
|
-
0x73, 0x65, 0x22, 0x00, 0x12,
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7842
|
-
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
0x74,
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
7850
|
-
0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7851
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7852
|
-
0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
|
|
7853
|
-
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
7854
|
-
0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7855
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7856
|
-
0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
|
|
7857
|
-
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
7858
|
-
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x49, 0x6e,
|
|
7859
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
|
|
7860
|
-
0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7861
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8072
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
|
8073
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53,
|
|
8074
|
+
0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
8075
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8076
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8077
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d,
|
|
8078
|
+
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
|
|
8079
|
+
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8080
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8081
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d,
|
|
8082
|
+
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
|
|
8083
|
+
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18,
|
|
7862
8084
|
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74,
|
|
7863
|
-
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73,
|
|
7864
|
-
|
|
7865
|
-
0x74,
|
|
7866
|
-
|
|
7867
|
-
|
|
7868
|
-
|
|
8085
|
+
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8086
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8087
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8088
|
+
0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71,
|
|
8089
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8090
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8091
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78,
|
|
8092
|
+
0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8093
|
+
0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
8094
|
+
0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65,
|
|
8095
|
+
0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8096
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8097
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43,
|
|
8098
|
+
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
8099
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
|
|
8100
|
+
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
|
|
8101
|
+
0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x49, 0x73, 0x43, 0x75, 0x73,
|
|
7869
8102
|
0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
|
|
7870
|
-
0x69, 0x6f, 0x6e,
|
|
7871
|
-
|
|
7872
|
-
|
|
8103
|
+
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8104
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8105
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46,
|
|
8106
|
+
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
8107
|
+
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e,
|
|
8108
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8109
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74,
|
|
8110
|
+
0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
8111
|
+
0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8112
|
+
0x65, 0x22, 0x00, 0x12, 0xb0, 0x01, 0x0a, 0x21, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61,
|
|
8113
|
+
0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
8114
|
+
0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8115
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8116
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
|
|
7873
8117
|
0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7874
|
-
|
|
7875
|
-
0x2e,
|
|
7876
|
-
|
|
7877
|
-
|
|
7878
|
-
0x61,
|
|
7879
|
-
|
|
7880
|
-
|
|
7881
|
-
0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
7882
|
-
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8118
|
+
0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x44,
|
|
8119
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8120
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74,
|
|
8121
|
+
0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
8122
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
8123
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
8124
|
+
0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
7883
8125
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7884
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7889
|
-
|
|
7890
|
-
|
|
7891
|
-
|
|
7892
|
-
|
|
7893
|
-
|
|
8126
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76,
|
|
8127
|
+
0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8128
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8129
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72,
|
|
8130
|
+
0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8131
|
+
0x95, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b,
|
|
8132
|
+
0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3a, 0x2e, 0x6c,
|
|
8133
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8134
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
|
|
8135
|
+
0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72,
|
|
8136
|
+
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8137
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8138
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53,
|
|
8139
|
+
0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73,
|
|
7894
8140
|
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e,
|
|
7895
8141
|
0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
7896
8142
|
0x33,
|
|
@@ -7909,7 +8155,7 @@ func file_multitenant_proto_rawDescGZIP() []byte {
|
|
|
7909
8155
|
}
|
|
7910
8156
|
|
|
7911
8157
|
var file_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
|
|
7912
|
-
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
8158
|
+
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 115)
|
|
7913
8159
|
var file_multitenant_proto_goTypes = []any{
|
|
7914
8160
|
(SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
|
|
7915
8161
|
(InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
|
|
@@ -7998,36 +8244,40 @@ var file_multitenant_proto_goTypes = []any{
|
|
|
7998
8244
|
(*CheckStandardizedSoftwareEnabledResponse)(nil), // 84: lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
7999
8245
|
(*UpdateSiteMetadataRequest)(nil), // 85: lansweeper.multitenant.v1.UpdateSiteMetadataRequest
|
|
8000
8246
|
(*UpdateSiteMetadataResponse)(nil), // 86: lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
8001
|
-
(*
|
|
8002
|
-
(*
|
|
8003
|
-
(*
|
|
8004
|
-
(*
|
|
8005
|
-
(*
|
|
8006
|
-
(*
|
|
8007
|
-
(*
|
|
8008
|
-
(*
|
|
8009
|
-
(*
|
|
8010
|
-
(*
|
|
8011
|
-
(*
|
|
8012
|
-
(*
|
|
8013
|
-
(*
|
|
8014
|
-
(*
|
|
8015
|
-
(*
|
|
8016
|
-
(*
|
|
8017
|
-
(*
|
|
8018
|
-
(*
|
|
8019
|
-
(*
|
|
8020
|
-
(*
|
|
8021
|
-
(*
|
|
8022
|
-
(*
|
|
8023
|
-
(*
|
|
8024
|
-
(*
|
|
8025
|
-
nil, // 111: lansweeper.multitenant.v1.
|
|
8026
|
-
(*
|
|
8027
|
-
(*
|
|
8028
|
-
(*
|
|
8029
|
-
|
|
8030
|
-
(*
|
|
8247
|
+
(*UpdateSiteSkipDataExportRequest)(nil), // 87: lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest
|
|
8248
|
+
(*UpdateSiteSkipDataExportResponse)(nil), // 88: lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
|
|
8249
|
+
(*GetSiteLimitsRequest)(nil), // 89: lansweeper.multitenant.v1.GetSiteLimitsRequest
|
|
8250
|
+
(*GetSiteLimitsResponse)(nil), // 90: lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
8251
|
+
(*MsmpPagination)(nil), // 91: lansweeper.multitenant.v1.MsmpPagination
|
|
8252
|
+
(*MsmpPaginationInfo)(nil), // 92: lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
8253
|
+
(*GetMsmpOrganizationListRequest)(nil), // 93: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
|
|
8254
|
+
(*GetMsmpOrganizationListResponse)(nil), // 94: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
8255
|
+
(*GetMsmpOrganizationAccountRequest)(nil), // 95: lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
|
|
8256
|
+
(*GetMsmpOrganizationAccountResponse)(nil), // 96: lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
8257
|
+
(*GetSitesByMsmpOrganizationIdRequest)(nil), // 97: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
|
|
8258
|
+
(*GetSitesByMsmpOrganizationIdResponse)(nil), // 98: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
8259
|
+
(*SetEnabledCustomFieldsFederationRequest)(nil), // 99: lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
|
|
8260
|
+
(*IsCustomFieldsFederationEnabledRequest)(nil), // 100: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
|
|
8261
|
+
(*IsMetadataFieldsFederationEnabledRequest)(nil), // 101: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
|
|
8262
|
+
(*IsCustomFieldsFederationEnabledResponse)(nil), // 102: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
8263
|
+
(*IsMetadataFieldsFederationEnabledResponse)(nil), // 103: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
8264
|
+
(*GetSitePreviewRequest)(nil), // 104: lansweeper.multitenant.v1.GetSitePreviewRequest
|
|
8265
|
+
(*GetSitePreviewResponse)(nil), // 105: lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
8266
|
+
(*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 106: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
8267
|
+
(*Install_InstallState)(nil), // 107: lansweeper.multitenant.v1.Install.InstallState
|
|
8268
|
+
(*GetInstallsBySiteRequest_Filter)(nil), // 108: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
8269
|
+
(*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 109: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
8270
|
+
(*RemoveInstallDataBySiteIdResponse_Result)(nil), // 110: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
8271
|
+
(*GetUserPermissionsResponse_AuthorizationAction)(nil), // 111: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
8272
|
+
(*GetUserPermissionsResponse_Scope)(nil), // 112: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
8273
|
+
(*GetUserPermissionsResponse_Role)(nil), // 113: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
8274
|
+
(*DisableWebhookEmailRequest_WebhookError)(nil), // 114: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
8275
|
+
nil, // 115: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
8276
|
+
(*GetMsmpOrganizationListRequest_MsmpPaginationRequest)(nil), // 116: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
8277
|
+
(*GetMsmpOrganizationListResponse_MsmpOrganization)(nil), // 117: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
8278
|
+
(*GetMsmpOrganizationListResponse_MsmpPageInfo)(nil), // 118: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
8279
|
+
(*generated_go.SiteLimits)(nil), // 119: lansweeper.shared.limits.v1.SiteLimits
|
|
8280
|
+
(*emptypb.Empty)(nil), // 120: google.protobuf.Empty
|
|
8031
8281
|
}
|
|
8032
8282
|
var file_multitenant_proto_depIdxs = []int32{
|
|
8033
8283
|
4, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
@@ -8039,13 +8289,13 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8039
8289
|
11, // 6: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8040
8290
|
14, // 7: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
8041
8291
|
14, // 8: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
8042
|
-
|
|
8043
|
-
|
|
8292
|
+
106, // 9: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
8293
|
+
107, // 10: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
|
|
8044
8294
|
2, // 11: lansweeper.multitenant.v1.Install.install_type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8045
8295
|
23, // 12: lansweeper.multitenant.v1.GetInstallsByIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8046
8296
|
23, // 13: lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8047
8297
|
2, // 14: lansweeper.multitenant.v1.NullableInstallType.data:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8048
|
-
|
|
8298
|
+
108, // 15: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
8049
8299
|
23, // 16: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8050
8300
|
23, // 17: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse.installs:type_name -> lansweeper.multitenant.v1.Install
|
|
8051
8301
|
23, // 18: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
@@ -8055,38 +8305,38 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8055
8305
|
2, // 22: lansweeper.multitenant.v1.CreateAndLinkInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8056
8306
|
23, // 23: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8057
8307
|
24, // 24: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
8058
|
-
|
|
8308
|
+
109, // 25: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
8059
8309
|
23, // 26: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8060
8310
|
2, // 27: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8061
8311
|
23, // 28: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8062
8312
|
24, // 29: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
8063
8313
|
11, // 30: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8064
|
-
|
|
8314
|
+
110, // 31: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
8065
8315
|
23, // 32: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8066
|
-
|
|
8067
|
-
|
|
8316
|
+
113, // 33: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
8317
|
+
114, // 34: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
8068
8318
|
60, // 35: lansweeper.multitenant.v1.AuthorizedSitesResponse.site:type_name -> lansweeper.multitenant.v1.Site
|
|
8069
8319
|
3, // 36: lansweeper.multitenant.v1.Subscription.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
8070
8320
|
3, // 37: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
8071
8321
|
67, // 38: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse.subscription:type_name -> lansweeper.multitenant.v1.Subscription
|
|
8072
8322
|
14, // 39: lansweeper.multitenant.v1.AllProfilesExistResponse.profiles:type_name -> lansweeper.multitenant.v1.Profile
|
|
8073
8323
|
4, // 40: lansweeper.multitenant.v1.AllProfilesExistResponse.createdBy:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8077
|
-
|
|
8078
|
-
|
|
8324
|
+
115, // 41: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
8325
|
+
116, // 42: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
8326
|
+
117, // 43: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.organizations:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
8327
|
+
118, // 44: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.msmp_page_info:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
8328
|
+
91, // 45: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.MsmpPagination
|
|
8079
8329
|
11, // 46: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.sites:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8080
|
-
|
|
8330
|
+
92, // 47: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.msmp_pagination_info:type_name -> lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
8081
8331
|
11, // 48: lansweeper.multitenant.v1.GetSitePreviewResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8082
8332
|
1, // 49: lansweeper.multitenant.v1.Install.InstallState.value:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
8083
8333
|
1, // 50: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
8084
8334
|
2, // 51: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8085
8335
|
31, // 52: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
|
|
8086
|
-
|
|
8336
|
+
111, // 53: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
8087
8337
|
23, // 54: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
|
|
8088
|
-
|
|
8089
|
-
|
|
8338
|
+
112, // 55: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
8339
|
+
119, // 56: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
|
|
8090
8340
|
19, // 57: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
8091
8341
|
21, // 58: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
|
|
8092
8342
|
5, // 59: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
@@ -8124,61 +8374,65 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8124
8374
|
82, // 91: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:input_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
8125
8375
|
83, // 92: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:input_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest
|
|
8126
8376
|
85, // 93: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:input_type -> lansweeper.multitenant.v1.UpdateSiteMetadataRequest
|
|
8127
|
-
|
|
8128
|
-
|
|
8129
|
-
|
|
8130
|
-
|
|
8377
|
+
89, // 94: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:input_type -> lansweeper.multitenant.v1.GetSiteLimitsRequest
|
|
8378
|
+
93, // 95: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
|
|
8379
|
+
95, // 96: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
|
|
8380
|
+
97, // 97: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:input_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
|
|
8131
8381
|
29, // 98: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:input_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsRequest
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
|
|
8146
|
-
|
|
8147
|
-
|
|
8148
|
-
|
|
8149
|
-
|
|
8150
|
-
|
|
8151
|
-
|
|
8152
|
-
|
|
8153
|
-
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
|
|
8174
|
-
|
|
8175
|
-
|
|
8176
|
-
|
|
8177
|
-
|
|
8178
|
-
|
|
8179
|
-
|
|
8180
|
-
102, //
|
|
8181
|
-
|
|
8382
|
+
99, // 99: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:input_type -> lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
|
|
8383
|
+
100, // 100: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
|
|
8384
|
+
101, // 101: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
|
|
8385
|
+
104, // 102: lansweeper.multitenant.v1.Multitenant.GetSitePreview:input_type -> lansweeper.multitenant.v1.GetSitePreviewRequest
|
|
8386
|
+
87, // 103: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:input_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest
|
|
8387
|
+
20, // 104: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
8388
|
+
22, // 105: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
|
|
8389
|
+
6, // 106: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
8390
|
+
8, // 107: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:output_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse
|
|
8391
|
+
10, // 108: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:output_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse
|
|
8392
|
+
16, // 109: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
8393
|
+
18, // 110: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
8394
|
+
13, // 111: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
8395
|
+
39, // 112: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
|
|
8396
|
+
41, // 113: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
|
|
8397
|
+
33, // 114: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
8398
|
+
35, // 115: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
|
|
8399
|
+
28, // 116: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
|
|
8400
|
+
26, // 117: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
8401
|
+
37, // 118: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
8402
|
+
43, // 119: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
8403
|
+
45, // 120: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
8404
|
+
49, // 121: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
|
|
8405
|
+
47, // 122: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
8406
|
+
51, // 123: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
8407
|
+
53, // 124: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
8408
|
+
55, // 125: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
8409
|
+
57, // 126: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
8410
|
+
59, // 127: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
8411
|
+
62, // 128: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
|
|
8412
|
+
64, // 129: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
|
|
8413
|
+
66, // 130: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
|
|
8414
|
+
69, // 131: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
|
|
8415
|
+
71, // 132: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
|
|
8416
|
+
73, // 133: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
|
|
8417
|
+
77, // 134: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
|
|
8418
|
+
79, // 135: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
|
|
8419
|
+
75, // 136: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
|
|
8420
|
+
81, // 137: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
|
|
8421
|
+
82, // 138: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
8422
|
+
84, // 139: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
8423
|
+
86, // 140: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
8424
|
+
90, // 141: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
8425
|
+
94, // 142: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
8426
|
+
96, // 143: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
8427
|
+
98, // 144: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:output_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
8428
|
+
30, // 145: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:output_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse
|
|
8429
|
+
120, // 146: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:output_type -> google.protobuf.Empty
|
|
8430
|
+
102, // 147: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
8431
|
+
103, // 148: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
8432
|
+
105, // 149: lansweeper.multitenant.v1.Multitenant.GetSitePreview:output_type -> lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
8433
|
+
88, // 150: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:output_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
|
|
8434
|
+
104, // [104:151] is the sub-list for method output_type
|
|
8435
|
+
57, // [57:104] is the sub-list for method input_type
|
|
8182
8436
|
57, // [57:57] is the sub-list for extension type_name
|
|
8183
8437
|
57, // [57:57] is the sub-list for extension extendee
|
|
8184
8438
|
0, // [0:57] is the sub-list for field type_name
|
|
@@ -9187,7 +9441,7 @@ func file_multitenant_proto_init() {
|
|
|
9187
9441
|
}
|
|
9188
9442
|
}
|
|
9189
9443
|
file_multitenant_proto_msgTypes[83].Exporter = func(v any, i int) any {
|
|
9190
|
-
switch v := v.(*
|
|
9444
|
+
switch v := v.(*UpdateSiteSkipDataExportRequest); i {
|
|
9191
9445
|
case 0:
|
|
9192
9446
|
return &v.state
|
|
9193
9447
|
case 1:
|
|
@@ -9199,7 +9453,7 @@ func file_multitenant_proto_init() {
|
|
|
9199
9453
|
}
|
|
9200
9454
|
}
|
|
9201
9455
|
file_multitenant_proto_msgTypes[84].Exporter = func(v any, i int) any {
|
|
9202
|
-
switch v := v.(*
|
|
9456
|
+
switch v := v.(*UpdateSiteSkipDataExportResponse); i {
|
|
9203
9457
|
case 0:
|
|
9204
9458
|
return &v.state
|
|
9205
9459
|
case 1:
|
|
@@ -9211,7 +9465,7 @@ func file_multitenant_proto_init() {
|
|
|
9211
9465
|
}
|
|
9212
9466
|
}
|
|
9213
9467
|
file_multitenant_proto_msgTypes[85].Exporter = func(v any, i int) any {
|
|
9214
|
-
switch v := v.(*
|
|
9468
|
+
switch v := v.(*GetSiteLimitsRequest); i {
|
|
9215
9469
|
case 0:
|
|
9216
9470
|
return &v.state
|
|
9217
9471
|
case 1:
|
|
@@ -9223,7 +9477,7 @@ func file_multitenant_proto_init() {
|
|
|
9223
9477
|
}
|
|
9224
9478
|
}
|
|
9225
9479
|
file_multitenant_proto_msgTypes[86].Exporter = func(v any, i int) any {
|
|
9226
|
-
switch v := v.(*
|
|
9480
|
+
switch v := v.(*GetSiteLimitsResponse); i {
|
|
9227
9481
|
case 0:
|
|
9228
9482
|
return &v.state
|
|
9229
9483
|
case 1:
|
|
@@ -9235,7 +9489,7 @@ func file_multitenant_proto_init() {
|
|
|
9235
9489
|
}
|
|
9236
9490
|
}
|
|
9237
9491
|
file_multitenant_proto_msgTypes[87].Exporter = func(v any, i int) any {
|
|
9238
|
-
switch v := v.(*
|
|
9492
|
+
switch v := v.(*MsmpPagination); i {
|
|
9239
9493
|
case 0:
|
|
9240
9494
|
return &v.state
|
|
9241
9495
|
case 1:
|
|
@@ -9247,7 +9501,7 @@ func file_multitenant_proto_init() {
|
|
|
9247
9501
|
}
|
|
9248
9502
|
}
|
|
9249
9503
|
file_multitenant_proto_msgTypes[88].Exporter = func(v any, i int) any {
|
|
9250
|
-
switch v := v.(*
|
|
9504
|
+
switch v := v.(*MsmpPaginationInfo); i {
|
|
9251
9505
|
case 0:
|
|
9252
9506
|
return &v.state
|
|
9253
9507
|
case 1:
|
|
@@ -9259,7 +9513,7 @@ func file_multitenant_proto_init() {
|
|
|
9259
9513
|
}
|
|
9260
9514
|
}
|
|
9261
9515
|
file_multitenant_proto_msgTypes[89].Exporter = func(v any, i int) any {
|
|
9262
|
-
switch v := v.(*
|
|
9516
|
+
switch v := v.(*GetMsmpOrganizationListRequest); i {
|
|
9263
9517
|
case 0:
|
|
9264
9518
|
return &v.state
|
|
9265
9519
|
case 1:
|
|
@@ -9271,7 +9525,7 @@ func file_multitenant_proto_init() {
|
|
|
9271
9525
|
}
|
|
9272
9526
|
}
|
|
9273
9527
|
file_multitenant_proto_msgTypes[90].Exporter = func(v any, i int) any {
|
|
9274
|
-
switch v := v.(*
|
|
9528
|
+
switch v := v.(*GetMsmpOrganizationListResponse); i {
|
|
9275
9529
|
case 0:
|
|
9276
9530
|
return &v.state
|
|
9277
9531
|
case 1:
|
|
@@ -9283,7 +9537,7 @@ func file_multitenant_proto_init() {
|
|
|
9283
9537
|
}
|
|
9284
9538
|
}
|
|
9285
9539
|
file_multitenant_proto_msgTypes[91].Exporter = func(v any, i int) any {
|
|
9286
|
-
switch v := v.(*
|
|
9540
|
+
switch v := v.(*GetMsmpOrganizationAccountRequest); i {
|
|
9287
9541
|
case 0:
|
|
9288
9542
|
return &v.state
|
|
9289
9543
|
case 1:
|
|
@@ -9295,7 +9549,7 @@ func file_multitenant_proto_init() {
|
|
|
9295
9549
|
}
|
|
9296
9550
|
}
|
|
9297
9551
|
file_multitenant_proto_msgTypes[92].Exporter = func(v any, i int) any {
|
|
9298
|
-
switch v := v.(*
|
|
9552
|
+
switch v := v.(*GetMsmpOrganizationAccountResponse); i {
|
|
9299
9553
|
case 0:
|
|
9300
9554
|
return &v.state
|
|
9301
9555
|
case 1:
|
|
@@ -9307,7 +9561,7 @@ func file_multitenant_proto_init() {
|
|
|
9307
9561
|
}
|
|
9308
9562
|
}
|
|
9309
9563
|
file_multitenant_proto_msgTypes[93].Exporter = func(v any, i int) any {
|
|
9310
|
-
switch v := v.(*
|
|
9564
|
+
switch v := v.(*GetSitesByMsmpOrganizationIdRequest); i {
|
|
9311
9565
|
case 0:
|
|
9312
9566
|
return &v.state
|
|
9313
9567
|
case 1:
|
|
@@ -9319,7 +9573,7 @@ func file_multitenant_proto_init() {
|
|
|
9319
9573
|
}
|
|
9320
9574
|
}
|
|
9321
9575
|
file_multitenant_proto_msgTypes[94].Exporter = func(v any, i int) any {
|
|
9322
|
-
switch v := v.(*
|
|
9576
|
+
switch v := v.(*GetSitesByMsmpOrganizationIdResponse); i {
|
|
9323
9577
|
case 0:
|
|
9324
9578
|
return &v.state
|
|
9325
9579
|
case 1:
|
|
@@ -9331,7 +9585,7 @@ func file_multitenant_proto_init() {
|
|
|
9331
9585
|
}
|
|
9332
9586
|
}
|
|
9333
9587
|
file_multitenant_proto_msgTypes[95].Exporter = func(v any, i int) any {
|
|
9334
|
-
switch v := v.(*
|
|
9588
|
+
switch v := v.(*SetEnabledCustomFieldsFederationRequest); i {
|
|
9335
9589
|
case 0:
|
|
9336
9590
|
return &v.state
|
|
9337
9591
|
case 1:
|
|
@@ -9343,7 +9597,7 @@ func file_multitenant_proto_init() {
|
|
|
9343
9597
|
}
|
|
9344
9598
|
}
|
|
9345
9599
|
file_multitenant_proto_msgTypes[96].Exporter = func(v any, i int) any {
|
|
9346
|
-
switch v := v.(*
|
|
9600
|
+
switch v := v.(*IsCustomFieldsFederationEnabledRequest); i {
|
|
9347
9601
|
case 0:
|
|
9348
9602
|
return &v.state
|
|
9349
9603
|
case 1:
|
|
@@ -9355,7 +9609,7 @@ func file_multitenant_proto_init() {
|
|
|
9355
9609
|
}
|
|
9356
9610
|
}
|
|
9357
9611
|
file_multitenant_proto_msgTypes[97].Exporter = func(v any, i int) any {
|
|
9358
|
-
switch v := v.(*
|
|
9612
|
+
switch v := v.(*IsMetadataFieldsFederationEnabledRequest); i {
|
|
9359
9613
|
case 0:
|
|
9360
9614
|
return &v.state
|
|
9361
9615
|
case 1:
|
|
@@ -9367,7 +9621,7 @@ func file_multitenant_proto_init() {
|
|
|
9367
9621
|
}
|
|
9368
9622
|
}
|
|
9369
9623
|
file_multitenant_proto_msgTypes[98].Exporter = func(v any, i int) any {
|
|
9370
|
-
switch v := v.(*
|
|
9624
|
+
switch v := v.(*IsCustomFieldsFederationEnabledResponse); i {
|
|
9371
9625
|
case 0:
|
|
9372
9626
|
return &v.state
|
|
9373
9627
|
case 1:
|
|
@@ -9379,7 +9633,7 @@ func file_multitenant_proto_init() {
|
|
|
9379
9633
|
}
|
|
9380
9634
|
}
|
|
9381
9635
|
file_multitenant_proto_msgTypes[99].Exporter = func(v any, i int) any {
|
|
9382
|
-
switch v := v.(*
|
|
9636
|
+
switch v := v.(*IsMetadataFieldsFederationEnabledResponse); i {
|
|
9383
9637
|
case 0:
|
|
9384
9638
|
return &v.state
|
|
9385
9639
|
case 1:
|
|
@@ -9391,7 +9645,7 @@ func file_multitenant_proto_init() {
|
|
|
9391
9645
|
}
|
|
9392
9646
|
}
|
|
9393
9647
|
file_multitenant_proto_msgTypes[100].Exporter = func(v any, i int) any {
|
|
9394
|
-
switch v := v.(*
|
|
9648
|
+
switch v := v.(*GetSitePreviewRequest); i {
|
|
9395
9649
|
case 0:
|
|
9396
9650
|
return &v.state
|
|
9397
9651
|
case 1:
|
|
@@ -9403,7 +9657,7 @@ func file_multitenant_proto_init() {
|
|
|
9403
9657
|
}
|
|
9404
9658
|
}
|
|
9405
9659
|
file_multitenant_proto_msgTypes[101].Exporter = func(v any, i int) any {
|
|
9406
|
-
switch v := v.(*
|
|
9660
|
+
switch v := v.(*GetSitePreviewResponse); i {
|
|
9407
9661
|
case 0:
|
|
9408
9662
|
return &v.state
|
|
9409
9663
|
case 1:
|
|
@@ -9415,7 +9669,7 @@ func file_multitenant_proto_init() {
|
|
|
9415
9669
|
}
|
|
9416
9670
|
}
|
|
9417
9671
|
file_multitenant_proto_msgTypes[102].Exporter = func(v any, i int) any {
|
|
9418
|
-
switch v := v.(*
|
|
9672
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
|
|
9419
9673
|
case 0:
|
|
9420
9674
|
return &v.state
|
|
9421
9675
|
case 1:
|
|
@@ -9427,7 +9681,7 @@ func file_multitenant_proto_init() {
|
|
|
9427
9681
|
}
|
|
9428
9682
|
}
|
|
9429
9683
|
file_multitenant_proto_msgTypes[103].Exporter = func(v any, i int) any {
|
|
9430
|
-
switch v := v.(*
|
|
9684
|
+
switch v := v.(*Install_InstallState); i {
|
|
9431
9685
|
case 0:
|
|
9432
9686
|
return &v.state
|
|
9433
9687
|
case 1:
|
|
@@ -9439,7 +9693,7 @@ func file_multitenant_proto_init() {
|
|
|
9439
9693
|
}
|
|
9440
9694
|
}
|
|
9441
9695
|
file_multitenant_proto_msgTypes[104].Exporter = func(v any, i int) any {
|
|
9442
|
-
switch v := v.(*
|
|
9696
|
+
switch v := v.(*GetInstallsBySiteRequest_Filter); i {
|
|
9443
9697
|
case 0:
|
|
9444
9698
|
return &v.state
|
|
9445
9699
|
case 1:
|
|
@@ -9451,7 +9705,7 @@ func file_multitenant_proto_init() {
|
|
|
9451
9705
|
}
|
|
9452
9706
|
}
|
|
9453
9707
|
file_multitenant_proto_msgTypes[105].Exporter = func(v any, i int) any {
|
|
9454
|
-
switch v := v.(*
|
|
9708
|
+
switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
|
|
9455
9709
|
case 0:
|
|
9456
9710
|
return &v.state
|
|
9457
9711
|
case 1:
|
|
@@ -9463,7 +9717,19 @@ func file_multitenant_proto_init() {
|
|
|
9463
9717
|
}
|
|
9464
9718
|
}
|
|
9465
9719
|
file_multitenant_proto_msgTypes[106].Exporter = func(v any, i int) any {
|
|
9466
|
-
switch v := v.(*
|
|
9720
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
|
|
9721
|
+
case 0:
|
|
9722
|
+
return &v.state
|
|
9723
|
+
case 1:
|
|
9724
|
+
return &v.sizeCache
|
|
9725
|
+
case 2:
|
|
9726
|
+
return &v.unknownFields
|
|
9727
|
+
default:
|
|
9728
|
+
return nil
|
|
9729
|
+
}
|
|
9730
|
+
}
|
|
9731
|
+
file_multitenant_proto_msgTypes[107].Exporter = func(v any, i int) any {
|
|
9732
|
+
switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
|
|
9467
9733
|
case 0:
|
|
9468
9734
|
return &v.state
|
|
9469
9735
|
case 1:
|
|
@@ -9475,7 +9741,7 @@ func file_multitenant_proto_init() {
|
|
|
9475
9741
|
}
|
|
9476
9742
|
}
|
|
9477
9743
|
file_multitenant_proto_msgTypes[108].Exporter = func(v any, i int) any {
|
|
9478
|
-
switch v := v.(*
|
|
9744
|
+
switch v := v.(*GetUserPermissionsResponse_Scope); i {
|
|
9479
9745
|
case 0:
|
|
9480
9746
|
return &v.state
|
|
9481
9747
|
case 1:
|
|
@@ -9487,7 +9753,7 @@ func file_multitenant_proto_init() {
|
|
|
9487
9753
|
}
|
|
9488
9754
|
}
|
|
9489
9755
|
file_multitenant_proto_msgTypes[109].Exporter = func(v any, i int) any {
|
|
9490
|
-
switch v := v.(*
|
|
9756
|
+
switch v := v.(*GetUserPermissionsResponse_Role); i {
|
|
9491
9757
|
case 0:
|
|
9492
9758
|
return &v.state
|
|
9493
9759
|
case 1:
|
|
@@ -9499,6 +9765,42 @@ func file_multitenant_proto_init() {
|
|
|
9499
9765
|
}
|
|
9500
9766
|
}
|
|
9501
9767
|
file_multitenant_proto_msgTypes[110].Exporter = func(v any, i int) any {
|
|
9768
|
+
switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
|
|
9769
|
+
case 0:
|
|
9770
|
+
return &v.state
|
|
9771
|
+
case 1:
|
|
9772
|
+
return &v.sizeCache
|
|
9773
|
+
case 2:
|
|
9774
|
+
return &v.unknownFields
|
|
9775
|
+
default:
|
|
9776
|
+
return nil
|
|
9777
|
+
}
|
|
9778
|
+
}
|
|
9779
|
+
file_multitenant_proto_msgTypes[112].Exporter = func(v any, i int) any {
|
|
9780
|
+
switch v := v.(*GetMsmpOrganizationListRequest_MsmpPaginationRequest); i {
|
|
9781
|
+
case 0:
|
|
9782
|
+
return &v.state
|
|
9783
|
+
case 1:
|
|
9784
|
+
return &v.sizeCache
|
|
9785
|
+
case 2:
|
|
9786
|
+
return &v.unknownFields
|
|
9787
|
+
default:
|
|
9788
|
+
return nil
|
|
9789
|
+
}
|
|
9790
|
+
}
|
|
9791
|
+
file_multitenant_proto_msgTypes[113].Exporter = func(v any, i int) any {
|
|
9792
|
+
switch v := v.(*GetMsmpOrganizationListResponse_MsmpOrganization); i {
|
|
9793
|
+
case 0:
|
|
9794
|
+
return &v.state
|
|
9795
|
+
case 1:
|
|
9796
|
+
return &v.sizeCache
|
|
9797
|
+
case 2:
|
|
9798
|
+
return &v.unknownFields
|
|
9799
|
+
default:
|
|
9800
|
+
return nil
|
|
9801
|
+
}
|
|
9802
|
+
}
|
|
9803
|
+
file_multitenant_proto_msgTypes[114].Exporter = func(v any, i int) any {
|
|
9502
9804
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpPageInfo); i {
|
|
9503
9805
|
case 0:
|
|
9504
9806
|
return &v.state
|
|
@@ -9520,7 +9822,7 @@ func file_multitenant_proto_init() {
|
|
|
9520
9822
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
9521
9823
|
RawDescriptor: file_multitenant_proto_rawDesc,
|
|
9522
9824
|
NumEnums: 4,
|
|
9523
|
-
NumMessages:
|
|
9825
|
+
NumMessages: 115,
|
|
9524
9826
|
NumExtensions: 0,
|
|
9525
9827
|
NumServices: 1,
|
|
9526
9828
|
},
|