@lansweeper/data-platform-outbound-grpc 0.1.14 → 0.1.16
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/outbound_pb.d.ts +111 -51
- package/gen-proto/outbound_pb.js +899 -337
- package/generated-go/outbound.pb.go +1492 -1284
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +52 -18
|
@@ -495,6 +495,7 @@ func (x *EntityPath) GetEntityId() string {
|
|
|
495
495
|
return ""
|
|
496
496
|
}
|
|
497
497
|
|
|
498
|
+
// Main Entity object: variant
|
|
498
499
|
type Entity struct {
|
|
499
500
|
state protoimpl.MessageState
|
|
500
501
|
sizeCache protoimpl.SizeCache
|
|
@@ -561,22 +562,33 @@ type Entity_Asset struct {
|
|
|
561
562
|
|
|
562
563
|
func (*Entity_Asset) isEntity_Entity() {}
|
|
563
564
|
|
|
565
|
+
// Asset object: IT/OT/CDR... CDK?
|
|
564
566
|
type Asset struct {
|
|
565
567
|
state protoimpl.MessageState
|
|
566
568
|
sizeCache protoimpl.SizeCache
|
|
567
569
|
unknownFields protoimpl.UnknownFields
|
|
568
570
|
|
|
569
|
-
Id
|
|
570
|
-
LastSynced
|
|
571
|
-
FirstSeen
|
|
572
|
-
LastUpdated
|
|
573
|
-
LastEnriched
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
571
|
+
Id *EntityPath `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
572
|
+
LastSynced *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=last_synced,json=lastSynced,proto3" json:"last_synced,omitempty"`
|
|
573
|
+
FirstSeen *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=first_seen,json=firstSeen,proto3" json:"first_seen,omitempty"`
|
|
574
|
+
LastUpdated *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
|
|
575
|
+
LastEnriched *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=last_enriched,json=lastEnriched,proto3" json:"last_enriched,omitempty"`
|
|
576
|
+
//*
|
|
577
|
+
// Source tags in the format: brand/type/sub-type
|
|
578
|
+
// E.g.: LS/IT/CDR
|
|
579
|
+
// E.g.: LS/IT/Scan-WMI
|
|
580
|
+
// E.g.: LS/IT/Scan-MAC
|
|
581
|
+
// E.g.: LS/IT/Scan-Linux
|
|
582
|
+
// E.g.: LS/IT/OT (OT like this?)
|
|
583
|
+
// E.g.: LS/CDK (cloud discovery?)
|
|
584
|
+
// E.g.: LS/DataCore (reconciliation)
|
|
585
|
+
SourceTag []string `protobuf:"bytes,12,rep,name=source_tag,json=sourceTag,proto3" json:"source_tag,omitempty"`
|
|
586
|
+
Core *CoreFields `protobuf:"bytes,6,opt,name=core,proto3" json:"core,omitempty"`
|
|
587
|
+
Hw *HardwareInfo `protobuf:"bytes,7,opt,name=hw,proto3,oneof" json:"hw,omitempty"`
|
|
588
|
+
Os *OperatingSystemInfo `protobuf:"bytes,8,opt,name=os,proto3,oneof" json:"os,omitempty"`
|
|
589
|
+
SoftwareInventory *SoftwareInventory `protobuf:"bytes,9,opt,name=software_inventory,json=softwareInventory,proto3,oneof" json:"software_inventory,omitempty"`
|
|
590
|
+
MonitorInventory *MonitorInventory `protobuf:"bytes,10,opt,name=monitor_inventory,json=monitorInventory,proto3,oneof" json:"monitor_inventory,omitempty"`
|
|
591
|
+
NetworkInterfaces *NetworkInterfaces `protobuf:"bytes,11,opt,name=network_interfaces,json=networkInterfaces,proto3,oneof" json:"network_interfaces,omitempty"`
|
|
580
592
|
}
|
|
581
593
|
|
|
582
594
|
func (x *Asset) Reset() {
|
|
@@ -646,6 +658,13 @@ func (x *Asset) GetLastEnriched() *timestamppb.Timestamp {
|
|
|
646
658
|
return nil
|
|
647
659
|
}
|
|
648
660
|
|
|
661
|
+
func (x *Asset) GetSourceTag() []string {
|
|
662
|
+
if x != nil {
|
|
663
|
+
return x.SourceTag
|
|
664
|
+
}
|
|
665
|
+
return nil
|
|
666
|
+
}
|
|
667
|
+
|
|
649
668
|
func (x *Asset) GetCore() *CoreFields {
|
|
650
669
|
if x != nil {
|
|
651
670
|
return x.Core
|
|
@@ -1087,14 +1106,15 @@ type OperatingSystemInfo struct {
|
|
|
1087
1106
|
// catalog id of: CatalogOs
|
|
1088
1107
|
Id *int64 `protobuf:"varint,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
|
|
1089
1108
|
// catalog id of: CatalogBrand
|
|
1090
|
-
MakeId *int64
|
|
1091
|
-
Name *string
|
|
1092
|
-
Version *string
|
|
1093
|
-
Build *string
|
|
1094
|
-
FwVersion *string
|
|
1095
|
-
Cpe *string
|
|
1096
|
-
FwCpe *string
|
|
1097
|
-
Rank *int32
|
|
1109
|
+
MakeId *int64 `protobuf:"varint,11,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
1110
|
+
Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
|
|
1111
|
+
Version *string `protobuf:"bytes,3,opt,name=version,proto3,oneof" json:"version,omitempty"`
|
|
1112
|
+
Build *string `protobuf:"bytes,4,opt,name=build,proto3,oneof" json:"build,omitempty"`
|
|
1113
|
+
FwVersion *string `protobuf:"bytes,5,opt,name=fw_version,json=fwVersion,proto3,oneof" json:"fw_version,omitempty"`
|
|
1114
|
+
Cpe *string `protobuf:"bytes,6,opt,name=cpe,proto3,oneof" json:"cpe,omitempty"`
|
|
1115
|
+
FwCpe *string `protobuf:"bytes,7,opt,name=fw_cpe,json=fwCpe,proto3,oneof" json:"fw_cpe,omitempty"`
|
|
1116
|
+
Rank *int32 `protobuf:"varint,8,opt,name=rank,proto3,oneof" json:"rank,omitempty"`
|
|
1117
|
+
Patch []*OperatingSystemPatch `protobuf:"bytes,9,rep,name=patch,proto3" json:"patch,omitempty"`
|
|
1098
1118
|
// Types that are assignable to Raw:
|
|
1099
1119
|
// *OperatingSystemInfo_Windows
|
|
1100
1120
|
Raw isOperatingSystemInfo_Raw `protobuf_oneof:"raw"`
|
|
@@ -1195,6 +1215,13 @@ func (x *OperatingSystemInfo) GetRank() int32 {
|
|
|
1195
1215
|
return 0
|
|
1196
1216
|
}
|
|
1197
1217
|
|
|
1218
|
+
func (x *OperatingSystemInfo) GetPatch() []*OperatingSystemPatch {
|
|
1219
|
+
if x != nil {
|
|
1220
|
+
return x.Patch
|
|
1221
|
+
}
|
|
1222
|
+
return nil
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1198
1225
|
func (m *OperatingSystemInfo) GetRaw() isOperatingSystemInfo_Raw {
|
|
1199
1226
|
if m != nil {
|
|
1200
1227
|
return m.Raw
|
|
@@ -1219,6 +1246,97 @@ type OperatingSystemInfo_Windows struct {
|
|
|
1219
1246
|
|
|
1220
1247
|
func (*OperatingSystemInfo_Windows) isOperatingSystemInfo_Raw() {}
|
|
1221
1248
|
|
|
1249
|
+
// OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering
|
|
1250
|
+
type OperatingSystemPatch struct {
|
|
1251
|
+
state protoimpl.MessageState
|
|
1252
|
+
sizeCache protoimpl.SizeCache
|
|
1253
|
+
unknownFields protoimpl.UnknownFields
|
|
1254
|
+
|
|
1255
|
+
// from hot_fix_id, e.g.: "KB4570334"
|
|
1256
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
1257
|
+
// from description, e.g.: Security Update
|
|
1258
|
+
Type *string `protobuf:"bytes,2,opt,name=type,proto3,oneof" json:"type,omitempty"`
|
|
1259
|
+
InstallDate *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=install_date,json=installDate,proto3,oneof" json:"install_date,omitempty"`
|
|
1260
|
+
// e.g.: "NT AUTHORITY\\SYSTEM"
|
|
1261
|
+
InstallBy *string `protobuf:"bytes,4,opt,name=install_by,json=installBy,proto3,oneof" json:"install_by,omitempty"`
|
|
1262
|
+
Comments *string `protobuf:"bytes,5,opt,name=comments,proto3,oneof" json:"comments,omitempty"`
|
|
1263
|
+
WindowsServicePack *string `protobuf:"bytes,6,opt,name=windows_service_pack,json=windowsServicePack,proto3,oneof" json:"windows_service_pack,omitempty"`
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
func (x *OperatingSystemPatch) Reset() {
|
|
1267
|
+
*x = OperatingSystemPatch{}
|
|
1268
|
+
if protoimpl.UnsafeEnabled {
|
|
1269
|
+
mi := &file_outbound_proto_msgTypes[14]
|
|
1270
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1271
|
+
ms.StoreMessageInfo(mi)
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
func (x *OperatingSystemPatch) String() string {
|
|
1276
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
func (*OperatingSystemPatch) ProtoMessage() {}
|
|
1280
|
+
|
|
1281
|
+
func (x *OperatingSystemPatch) ProtoReflect() protoreflect.Message {
|
|
1282
|
+
mi := &file_outbound_proto_msgTypes[14]
|
|
1283
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1284
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1285
|
+
if ms.LoadMessageInfo() == nil {
|
|
1286
|
+
ms.StoreMessageInfo(mi)
|
|
1287
|
+
}
|
|
1288
|
+
return ms
|
|
1289
|
+
}
|
|
1290
|
+
return mi.MessageOf(x)
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
// Deprecated: Use OperatingSystemPatch.ProtoReflect.Descriptor instead.
|
|
1294
|
+
func (*OperatingSystemPatch) Descriptor() ([]byte, []int) {
|
|
1295
|
+
return file_outbound_proto_rawDescGZIP(), []int{14}
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
func (x *OperatingSystemPatch) GetId() string {
|
|
1299
|
+
if x != nil {
|
|
1300
|
+
return x.Id
|
|
1301
|
+
}
|
|
1302
|
+
return ""
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
func (x *OperatingSystemPatch) GetType() string {
|
|
1306
|
+
if x != nil && x.Type != nil {
|
|
1307
|
+
return *x.Type
|
|
1308
|
+
}
|
|
1309
|
+
return ""
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
func (x *OperatingSystemPatch) GetInstallDate() *timestamppb.Timestamp {
|
|
1313
|
+
if x != nil {
|
|
1314
|
+
return x.InstallDate
|
|
1315
|
+
}
|
|
1316
|
+
return nil
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
func (x *OperatingSystemPatch) GetInstallBy() string {
|
|
1320
|
+
if x != nil && x.InstallBy != nil {
|
|
1321
|
+
return *x.InstallBy
|
|
1322
|
+
}
|
|
1323
|
+
return ""
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
func (x *OperatingSystemPatch) GetComments() string {
|
|
1327
|
+
if x != nil && x.Comments != nil {
|
|
1328
|
+
return *x.Comments
|
|
1329
|
+
}
|
|
1330
|
+
return ""
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
func (x *OperatingSystemPatch) GetWindowsServicePack() string {
|
|
1334
|
+
if x != nil && x.WindowsServicePack != nil {
|
|
1335
|
+
return *x.WindowsServicePack
|
|
1336
|
+
}
|
|
1337
|
+
return ""
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1222
1340
|
type WindowsRawOperatingSystemInfo struct {
|
|
1223
1341
|
state protoimpl.MessageState
|
|
1224
1342
|
sizeCache protoimpl.SizeCache
|
|
@@ -1239,7 +1357,7 @@ type WindowsRawOperatingSystemInfo struct {
|
|
|
1239
1357
|
func (x *WindowsRawOperatingSystemInfo) Reset() {
|
|
1240
1358
|
*x = WindowsRawOperatingSystemInfo{}
|
|
1241
1359
|
if protoimpl.UnsafeEnabled {
|
|
1242
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1360
|
+
mi := &file_outbound_proto_msgTypes[15]
|
|
1243
1361
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1244
1362
|
ms.StoreMessageInfo(mi)
|
|
1245
1363
|
}
|
|
@@ -1252,7 +1370,7 @@ func (x *WindowsRawOperatingSystemInfo) String() string {
|
|
|
1252
1370
|
func (*WindowsRawOperatingSystemInfo) ProtoMessage() {}
|
|
1253
1371
|
|
|
1254
1372
|
func (x *WindowsRawOperatingSystemInfo) ProtoReflect() protoreflect.Message {
|
|
1255
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1373
|
+
mi := &file_outbound_proto_msgTypes[15]
|
|
1256
1374
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1257
1375
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1258
1376
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1265,7 +1383,7 @@ func (x *WindowsRawOperatingSystemInfo) ProtoReflect() protoreflect.Message {
|
|
|
1265
1383
|
|
|
1266
1384
|
// Deprecated: Use WindowsRawOperatingSystemInfo.ProtoReflect.Descriptor instead.
|
|
1267
1385
|
func (*WindowsRawOperatingSystemInfo) Descriptor() ([]byte, []int) {
|
|
1268
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1386
|
+
return file_outbound_proto_rawDescGZIP(), []int{15}
|
|
1269
1387
|
}
|
|
1270
1388
|
|
|
1271
1389
|
func (x *WindowsRawOperatingSystemInfo) GetVersion() string {
|
|
@@ -1351,7 +1469,7 @@ type NetworkInterfaces struct {
|
|
|
1351
1469
|
func (x *NetworkInterfaces) Reset() {
|
|
1352
1470
|
*x = NetworkInterfaces{}
|
|
1353
1471
|
if protoimpl.UnsafeEnabled {
|
|
1354
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1472
|
+
mi := &file_outbound_proto_msgTypes[16]
|
|
1355
1473
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1356
1474
|
ms.StoreMessageInfo(mi)
|
|
1357
1475
|
}
|
|
@@ -1364,7 +1482,7 @@ func (x *NetworkInterfaces) String() string {
|
|
|
1364
1482
|
func (*NetworkInterfaces) ProtoMessage() {}
|
|
1365
1483
|
|
|
1366
1484
|
func (x *NetworkInterfaces) ProtoReflect() protoreflect.Message {
|
|
1367
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1485
|
+
mi := &file_outbound_proto_msgTypes[16]
|
|
1368
1486
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1369
1487
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1370
1488
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1377,7 +1495,7 @@ func (x *NetworkInterfaces) ProtoReflect() protoreflect.Message {
|
|
|
1377
1495
|
|
|
1378
1496
|
// Deprecated: Use NetworkInterfaces.ProtoReflect.Descriptor instead.
|
|
1379
1497
|
func (*NetworkInterfaces) Descriptor() ([]byte, []int) {
|
|
1380
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1498
|
+
return file_outbound_proto_rawDescGZIP(), []int{16}
|
|
1381
1499
|
}
|
|
1382
1500
|
|
|
1383
1501
|
func (x *NetworkInterfaces) GetTimestamp() *timestamppb.Timestamp {
|
|
@@ -1419,7 +1537,7 @@ type NetworkInterface struct {
|
|
|
1419
1537
|
func (x *NetworkInterface) Reset() {
|
|
1420
1538
|
*x = NetworkInterface{}
|
|
1421
1539
|
if protoimpl.UnsafeEnabled {
|
|
1422
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1540
|
+
mi := &file_outbound_proto_msgTypes[17]
|
|
1423
1541
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1424
1542
|
ms.StoreMessageInfo(mi)
|
|
1425
1543
|
}
|
|
@@ -1432,7 +1550,7 @@ func (x *NetworkInterface) String() string {
|
|
|
1432
1550
|
func (*NetworkInterface) ProtoMessage() {}
|
|
1433
1551
|
|
|
1434
1552
|
func (x *NetworkInterface) ProtoReflect() protoreflect.Message {
|
|
1435
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1553
|
+
mi := &file_outbound_proto_msgTypes[17]
|
|
1436
1554
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1437
1555
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1438
1556
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1445,7 +1563,7 @@ func (x *NetworkInterface) ProtoReflect() protoreflect.Message {
|
|
|
1445
1563
|
|
|
1446
1564
|
// Deprecated: Use NetworkInterface.ProtoReflect.Descriptor instead.
|
|
1447
1565
|
func (*NetworkInterface) Descriptor() ([]byte, []int) {
|
|
1448
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1566
|
+
return file_outbound_proto_rawDescGZIP(), []int{17}
|
|
1449
1567
|
}
|
|
1450
1568
|
|
|
1451
1569
|
func (x *NetworkInterface) GetName() string {
|
|
@@ -1566,7 +1684,7 @@ type NetIpAddress struct {
|
|
|
1566
1684
|
func (x *NetIpAddress) Reset() {
|
|
1567
1685
|
*x = NetIpAddress{}
|
|
1568
1686
|
if protoimpl.UnsafeEnabled {
|
|
1569
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1687
|
+
mi := &file_outbound_proto_msgTypes[18]
|
|
1570
1688
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1571
1689
|
ms.StoreMessageInfo(mi)
|
|
1572
1690
|
}
|
|
@@ -1579,7 +1697,7 @@ func (x *NetIpAddress) String() string {
|
|
|
1579
1697
|
func (*NetIpAddress) ProtoMessage() {}
|
|
1580
1698
|
|
|
1581
1699
|
func (x *NetIpAddress) ProtoReflect() protoreflect.Message {
|
|
1582
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1700
|
+
mi := &file_outbound_proto_msgTypes[18]
|
|
1583
1701
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1584
1702
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1585
1703
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1592,7 +1710,7 @@ func (x *NetIpAddress) ProtoReflect() protoreflect.Message {
|
|
|
1592
1710
|
|
|
1593
1711
|
// Deprecated: Use NetIpAddress.ProtoReflect.Descriptor instead.
|
|
1594
1712
|
func (*NetIpAddress) Descriptor() ([]byte, []int) {
|
|
1595
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1713
|
+
return file_outbound_proto_rawDescGZIP(), []int{18}
|
|
1596
1714
|
}
|
|
1597
1715
|
|
|
1598
1716
|
func (x *NetIpAddress) GetIp() string {
|
|
@@ -1622,7 +1740,7 @@ type MonitorInventory struct {
|
|
|
1622
1740
|
func (x *MonitorInventory) Reset() {
|
|
1623
1741
|
*x = MonitorInventory{}
|
|
1624
1742
|
if protoimpl.UnsafeEnabled {
|
|
1625
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1743
|
+
mi := &file_outbound_proto_msgTypes[19]
|
|
1626
1744
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1627
1745
|
ms.StoreMessageInfo(mi)
|
|
1628
1746
|
}
|
|
@@ -1635,7 +1753,7 @@ func (x *MonitorInventory) String() string {
|
|
|
1635
1753
|
func (*MonitorInventory) ProtoMessage() {}
|
|
1636
1754
|
|
|
1637
1755
|
func (x *MonitorInventory) ProtoReflect() protoreflect.Message {
|
|
1638
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1756
|
+
mi := &file_outbound_proto_msgTypes[19]
|
|
1639
1757
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1640
1758
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1641
1759
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1648,7 +1766,7 @@ func (x *MonitorInventory) ProtoReflect() protoreflect.Message {
|
|
|
1648
1766
|
|
|
1649
1767
|
// Deprecated: Use MonitorInventory.ProtoReflect.Descriptor instead.
|
|
1650
1768
|
func (*MonitorInventory) Descriptor() ([]byte, []int) {
|
|
1651
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1769
|
+
return file_outbound_proto_rawDescGZIP(), []int{19}
|
|
1652
1770
|
}
|
|
1653
1771
|
|
|
1654
1772
|
func (x *MonitorInventory) GetTimestamp() *timestamppb.Timestamp {
|
|
@@ -1687,7 +1805,7 @@ type Monitor struct {
|
|
|
1687
1805
|
func (x *Monitor) Reset() {
|
|
1688
1806
|
*x = Monitor{}
|
|
1689
1807
|
if protoimpl.UnsafeEnabled {
|
|
1690
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1808
|
+
mi := &file_outbound_proto_msgTypes[20]
|
|
1691
1809
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1692
1810
|
ms.StoreMessageInfo(mi)
|
|
1693
1811
|
}
|
|
@@ -1700,7 +1818,7 @@ func (x *Monitor) String() string {
|
|
|
1700
1818
|
func (*Monitor) ProtoMessage() {}
|
|
1701
1819
|
|
|
1702
1820
|
func (x *Monitor) ProtoReflect() protoreflect.Message {
|
|
1703
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1821
|
+
mi := &file_outbound_proto_msgTypes[20]
|
|
1704
1822
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1705
1823
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1706
1824
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1713,7 +1831,7 @@ func (x *Monitor) ProtoReflect() protoreflect.Message {
|
|
|
1713
1831
|
|
|
1714
1832
|
// Deprecated: Use Monitor.ProtoReflect.Descriptor instead.
|
|
1715
1833
|
func (*Monitor) Descriptor() ([]byte, []int) {
|
|
1716
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1834
|
+
return file_outbound_proto_rawDescGZIP(), []int{20}
|
|
1717
1835
|
}
|
|
1718
1836
|
|
|
1719
1837
|
func (x *Monitor) GetId() int64 {
|
|
@@ -1800,7 +1918,7 @@ type WindowsRawMonitorInfo struct {
|
|
|
1800
1918
|
func (x *WindowsRawMonitorInfo) Reset() {
|
|
1801
1919
|
*x = WindowsRawMonitorInfo{}
|
|
1802
1920
|
if protoimpl.UnsafeEnabled {
|
|
1803
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1921
|
+
mi := &file_outbound_proto_msgTypes[21]
|
|
1804
1922
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1805
1923
|
ms.StoreMessageInfo(mi)
|
|
1806
1924
|
}
|
|
@@ -1813,7 +1931,7 @@ func (x *WindowsRawMonitorInfo) String() string {
|
|
|
1813
1931
|
func (*WindowsRawMonitorInfo) ProtoMessage() {}
|
|
1814
1932
|
|
|
1815
1933
|
func (x *WindowsRawMonitorInfo) ProtoReflect() protoreflect.Message {
|
|
1816
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1934
|
+
mi := &file_outbound_proto_msgTypes[21]
|
|
1817
1935
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1818
1936
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1819
1937
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1826,7 +1944,7 @@ func (x *WindowsRawMonitorInfo) ProtoReflect() protoreflect.Message {
|
|
|
1826
1944
|
|
|
1827
1945
|
// Deprecated: Use WindowsRawMonitorInfo.ProtoReflect.Descriptor instead.
|
|
1828
1946
|
func (*WindowsRawMonitorInfo) Descriptor() ([]byte, []int) {
|
|
1829
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1947
|
+
return file_outbound_proto_rawDescGZIP(), []int{21}
|
|
1830
1948
|
}
|
|
1831
1949
|
|
|
1832
1950
|
func (x *WindowsRawMonitorInfo) GetModel() string {
|
|
@@ -1898,7 +2016,7 @@ type SoftwareInventory struct {
|
|
|
1898
2016
|
func (x *SoftwareInventory) Reset() {
|
|
1899
2017
|
*x = SoftwareInventory{}
|
|
1900
2018
|
if protoimpl.UnsafeEnabled {
|
|
1901
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2019
|
+
mi := &file_outbound_proto_msgTypes[22]
|
|
1902
2020
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1903
2021
|
ms.StoreMessageInfo(mi)
|
|
1904
2022
|
}
|
|
@@ -1911,7 +2029,7 @@ func (x *SoftwareInventory) String() string {
|
|
|
1911
2029
|
func (*SoftwareInventory) ProtoMessage() {}
|
|
1912
2030
|
|
|
1913
2031
|
func (x *SoftwareInventory) ProtoReflect() protoreflect.Message {
|
|
1914
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2032
|
+
mi := &file_outbound_proto_msgTypes[22]
|
|
1915
2033
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1916
2034
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1917
2035
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1924,7 +2042,7 @@ func (x *SoftwareInventory) ProtoReflect() protoreflect.Message {
|
|
|
1924
2042
|
|
|
1925
2043
|
// Deprecated: Use SoftwareInventory.ProtoReflect.Descriptor instead.
|
|
1926
2044
|
func (*SoftwareInventory) Descriptor() ([]byte, []int) {
|
|
1927
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2045
|
+
return file_outbound_proto_rawDescGZIP(), []int{22}
|
|
1928
2046
|
}
|
|
1929
2047
|
|
|
1930
2048
|
func (x *SoftwareInventory) GetTimestamp() *timestamppb.Timestamp {
|
|
@@ -1975,7 +2093,7 @@ type Software struct {
|
|
|
1975
2093
|
func (x *Software) Reset() {
|
|
1976
2094
|
*x = Software{}
|
|
1977
2095
|
if protoimpl.UnsafeEnabled {
|
|
1978
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2096
|
+
mi := &file_outbound_proto_msgTypes[23]
|
|
1979
2097
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1980
2098
|
ms.StoreMessageInfo(mi)
|
|
1981
2099
|
}
|
|
@@ -1988,7 +2106,7 @@ func (x *Software) String() string {
|
|
|
1988
2106
|
func (*Software) ProtoMessage() {}
|
|
1989
2107
|
|
|
1990
2108
|
func (x *Software) ProtoReflect() protoreflect.Message {
|
|
1991
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2109
|
+
mi := &file_outbound_proto_msgTypes[23]
|
|
1992
2110
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1993
2111
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1994
2112
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2001,7 +2119,7 @@ func (x *Software) ProtoReflect() protoreflect.Message {
|
|
|
2001
2119
|
|
|
2002
2120
|
// Deprecated: Use Software.ProtoReflect.Descriptor instead.
|
|
2003
2121
|
func (*Software) Descriptor() ([]byte, []int) {
|
|
2004
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2122
|
+
return file_outbound_proto_rawDescGZIP(), []int{23}
|
|
2005
2123
|
}
|
|
2006
2124
|
|
|
2007
2125
|
func (x *Software) GetRank() int32 {
|
|
@@ -2150,22 +2268,22 @@ type RawSoftware struct {
|
|
|
2150
2268
|
sizeCache protoimpl.SizeCache
|
|
2151
2269
|
unknownFields protoimpl.UnknownFields
|
|
2152
2270
|
|
|
2153
|
-
Name string
|
|
2154
|
-
Vendor *string
|
|
2155
|
-
Version *string
|
|
2156
|
-
Info *string
|
|
2157
|
-
ExePath *string
|
|
2158
|
-
Arch *string
|
|
2159
|
-
InstallDate *
|
|
2160
|
-
SourceType *string
|
|
2161
|
-
SwId *string
|
|
2162
|
-
IsCurrentUser *bool
|
|
2271
|
+
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
2272
|
+
Vendor *string `protobuf:"bytes,2,opt,name=vendor,proto3,oneof" json:"vendor,omitempty"`
|
|
2273
|
+
Version *string `protobuf:"bytes,3,opt,name=version,proto3,oneof" json:"version,omitempty"`
|
|
2274
|
+
Info *string `protobuf:"bytes,4,opt,name=info,proto3,oneof" json:"info,omitempty"`
|
|
2275
|
+
ExePath *string `protobuf:"bytes,5,opt,name=exe_path,json=exePath,proto3,oneof" json:"exe_path,omitempty"`
|
|
2276
|
+
Arch *string `protobuf:"bytes,6,opt,name=arch,proto3,oneof" json:"arch,omitempty"` // when available the specific sw arch
|
|
2277
|
+
InstallDate *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=install_date,json=installDate,proto3,oneof" json:"install_date,omitempty"`
|
|
2278
|
+
SourceType *string `protobuf:"bytes,8,opt,name=source_type,json=sourceType,proto3,oneof" json:"source_type,omitempty"` // Registry | System | MsStore | Package | Custom | etc
|
|
2279
|
+
SwId *string `protobuf:"bytes,9,opt,name=sw_id,json=swId,proto3,oneof" json:"sw_id,omitempty"` // optional SW id on the client side
|
|
2280
|
+
IsCurrentUser *bool `protobuf:"varint,10,opt,name=is_current_user,json=isCurrentUser,proto3,oneof" json:"is_current_user,omitempty"`
|
|
2163
2281
|
}
|
|
2164
2282
|
|
|
2165
2283
|
func (x *RawSoftware) Reset() {
|
|
2166
2284
|
*x = RawSoftware{}
|
|
2167
2285
|
if protoimpl.UnsafeEnabled {
|
|
2168
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2286
|
+
mi := &file_outbound_proto_msgTypes[24]
|
|
2169
2287
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2170
2288
|
ms.StoreMessageInfo(mi)
|
|
2171
2289
|
}
|
|
@@ -2178,7 +2296,7 @@ func (x *RawSoftware) String() string {
|
|
|
2178
2296
|
func (*RawSoftware) ProtoMessage() {}
|
|
2179
2297
|
|
|
2180
2298
|
func (x *RawSoftware) ProtoReflect() protoreflect.Message {
|
|
2181
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2299
|
+
mi := &file_outbound_proto_msgTypes[24]
|
|
2182
2300
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2183
2301
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2184
2302
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2191,7 +2309,7 @@ func (x *RawSoftware) ProtoReflect() protoreflect.Message {
|
|
|
2191
2309
|
|
|
2192
2310
|
// Deprecated: Use RawSoftware.ProtoReflect.Descriptor instead.
|
|
2193
2311
|
func (*RawSoftware) Descriptor() ([]byte, []int) {
|
|
2194
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2312
|
+
return file_outbound_proto_rawDescGZIP(), []int{24}
|
|
2195
2313
|
}
|
|
2196
2314
|
|
|
2197
2315
|
func (x *RawSoftware) GetName() string {
|
|
@@ -2236,11 +2354,11 @@ func (x *RawSoftware) GetArch() string {
|
|
|
2236
2354
|
return ""
|
|
2237
2355
|
}
|
|
2238
2356
|
|
|
2239
|
-
func (x *RawSoftware) GetInstallDate()
|
|
2240
|
-
if x != nil
|
|
2241
|
-
return
|
|
2357
|
+
func (x *RawSoftware) GetInstallDate() *timestamppb.Timestamp {
|
|
2358
|
+
if x != nil {
|
|
2359
|
+
return x.InstallDate
|
|
2242
2360
|
}
|
|
2243
|
-
return
|
|
2361
|
+
return nil
|
|
2244
2362
|
}
|
|
2245
2363
|
|
|
2246
2364
|
func (x *RawSoftware) GetSourceType() string {
|
|
@@ -2269,41 +2387,41 @@ type CatalogBrand struct {
|
|
|
2269
2387
|
sizeCache protoimpl.SizeCache
|
|
2270
2388
|
unknownFields protoimpl.UnknownFields
|
|
2271
2389
|
|
|
2272
|
-
Id int64
|
|
2273
|
-
MakeName string
|
|
2274
|
-
ParentId *int64
|
|
2275
|
-
LastUpdateTime *
|
|
2276
|
-
CountryCode *string
|
|
2277
|
-
LogoImageUrl *string
|
|
2278
|
-
BannerImageUrl *string
|
|
2279
|
-
WikipediaId *string
|
|
2280
|
-
WikipediaLangCode *string
|
|
2281
|
-
WebsiteUrl *string
|
|
2282
|
-
SupportUrl *string
|
|
2283
|
-
SupportPhone *string
|
|
2284
|
-
FacebookAccount *string
|
|
2285
|
-
TwitterAccount *string
|
|
2286
|
-
WarrantyUrl *string
|
|
2287
|
-
WarrantyDirectUrl *string
|
|
2288
|
-
CommunityUrl *string
|
|
2289
|
-
LinkedinAccount *string
|
|
2290
|
-
InstagramAccount *string
|
|
2291
|
-
YoutubeAccount *string
|
|
2292
|
-
PinterestAccount *string
|
|
2293
|
-
TiktokAccount *string
|
|
2294
|
-
ClassHardware *bool
|
|
2295
|
-
ClassSoftware *bool
|
|
2296
|
-
ClassConsumer *bool
|
|
2297
|
-
ClassEnterprise *bool
|
|
2298
|
-
ClassIndustrial *bool
|
|
2299
|
-
ClassIndividual *bool
|
|
2300
|
-
MatchScore *int32
|
|
2390
|
+
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
2391
|
+
MakeName string `protobuf:"bytes,3,opt,name=make_name,json=makeName,proto3" json:"make_name,omitempty"`
|
|
2392
|
+
ParentId *int64 `protobuf:"varint,18,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
|
|
2393
|
+
LastUpdateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
|
|
2394
|
+
CountryCode *string `protobuf:"bytes,6,opt,name=country_code,json=countryCode,proto3,oneof" json:"country_code,omitempty"`
|
|
2395
|
+
LogoImageUrl *string `protobuf:"bytes,7,opt,name=logo_image_url,json=logoImageUrl,proto3,oneof" json:"logo_image_url,omitempty"`
|
|
2396
|
+
BannerImageUrl *string `protobuf:"bytes,8,opt,name=banner_image_url,json=bannerImageUrl,proto3,oneof" json:"banner_image_url,omitempty"`
|
|
2397
|
+
WikipediaId *string `protobuf:"bytes,9,opt,name=wikipedia_id,json=wikipediaId,proto3,oneof" json:"wikipedia_id,omitempty"`
|
|
2398
|
+
WikipediaLangCode *string `protobuf:"bytes,10,opt,name=wikipedia_lang_code,json=wikipediaLangCode,proto3,oneof" json:"wikipedia_lang_code,omitempty"`
|
|
2399
|
+
WebsiteUrl *string `protobuf:"bytes,11,opt,name=website_url,json=websiteUrl,proto3,oneof" json:"website_url,omitempty"`
|
|
2400
|
+
SupportUrl *string `protobuf:"bytes,12,opt,name=support_url,json=supportUrl,proto3,oneof" json:"support_url,omitempty"`
|
|
2401
|
+
SupportPhone *string `protobuf:"bytes,13,opt,name=support_phone,json=supportPhone,proto3,oneof" json:"support_phone,omitempty"`
|
|
2402
|
+
FacebookAccount *string `protobuf:"bytes,14,opt,name=facebook_account,json=facebookAccount,proto3,oneof" json:"facebook_account,omitempty"`
|
|
2403
|
+
TwitterAccount *string `protobuf:"bytes,15,opt,name=twitter_account,json=twitterAccount,proto3,oneof" json:"twitter_account,omitempty"`
|
|
2404
|
+
WarrantyUrl *string `protobuf:"bytes,16,opt,name=warranty_url,json=warrantyUrl,proto3,oneof" json:"warranty_url,omitempty"`
|
|
2405
|
+
WarrantyDirectUrl *string `protobuf:"bytes,17,opt,name=warranty_direct_url,json=warrantyDirectUrl,proto3,oneof" json:"warranty_direct_url,omitempty"`
|
|
2406
|
+
CommunityUrl *string `protobuf:"bytes,20,opt,name=community_url,json=communityUrl,proto3,oneof" json:"community_url,omitempty"`
|
|
2407
|
+
LinkedinAccount *string `protobuf:"bytes,21,opt,name=linkedin_account,json=linkedinAccount,proto3,oneof" json:"linkedin_account,omitempty"`
|
|
2408
|
+
InstagramAccount *string `protobuf:"bytes,22,opt,name=instagram_account,json=instagramAccount,proto3,oneof" json:"instagram_account,omitempty"`
|
|
2409
|
+
YoutubeAccount *string `protobuf:"bytes,23,opt,name=youtube_account,json=youtubeAccount,proto3,oneof" json:"youtube_account,omitempty"`
|
|
2410
|
+
PinterestAccount *string `protobuf:"bytes,24,opt,name=pinterest_account,json=pinterestAccount,proto3,oneof" json:"pinterest_account,omitempty"`
|
|
2411
|
+
TiktokAccount *string `protobuf:"bytes,31,opt,name=tiktok_account,json=tiktokAccount,proto3,oneof" json:"tiktok_account,omitempty"`
|
|
2412
|
+
ClassHardware *bool `protobuf:"varint,25,opt,name=class_hardware,json=classHardware,proto3,oneof" json:"class_hardware,omitempty"`
|
|
2413
|
+
ClassSoftware *bool `protobuf:"varint,26,opt,name=class_software,json=classSoftware,proto3,oneof" json:"class_software,omitempty"`
|
|
2414
|
+
ClassConsumer *bool `protobuf:"varint,27,opt,name=class_consumer,json=classConsumer,proto3,oneof" json:"class_consumer,omitempty"`
|
|
2415
|
+
ClassEnterprise *bool `protobuf:"varint,28,opt,name=class_enterprise,json=classEnterprise,proto3,oneof" json:"class_enterprise,omitempty"`
|
|
2416
|
+
ClassIndustrial *bool `protobuf:"varint,29,opt,name=class_industrial,json=classIndustrial,proto3,oneof" json:"class_industrial,omitempty"`
|
|
2417
|
+
ClassIndividual *bool `protobuf:"varint,30,opt,name=class_individual,json=classIndividual,proto3,oneof" json:"class_individual,omitempty"`
|
|
2418
|
+
MatchScore *int32 `protobuf:"varint,19,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // relevant only in search result
|
|
2301
2419
|
}
|
|
2302
2420
|
|
|
2303
2421
|
func (x *CatalogBrand) Reset() {
|
|
2304
2422
|
*x = CatalogBrand{}
|
|
2305
2423
|
if protoimpl.UnsafeEnabled {
|
|
2306
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2424
|
+
mi := &file_outbound_proto_msgTypes[25]
|
|
2307
2425
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2308
2426
|
ms.StoreMessageInfo(mi)
|
|
2309
2427
|
}
|
|
@@ -2316,7 +2434,7 @@ func (x *CatalogBrand) String() string {
|
|
|
2316
2434
|
func (*CatalogBrand) ProtoMessage() {}
|
|
2317
2435
|
|
|
2318
2436
|
func (x *CatalogBrand) ProtoReflect() protoreflect.Message {
|
|
2319
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2437
|
+
mi := &file_outbound_proto_msgTypes[25]
|
|
2320
2438
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2321
2439
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2322
2440
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2329,7 +2447,7 @@ func (x *CatalogBrand) ProtoReflect() protoreflect.Message {
|
|
|
2329
2447
|
|
|
2330
2448
|
// Deprecated: Use CatalogBrand.ProtoReflect.Descriptor instead.
|
|
2331
2449
|
func (*CatalogBrand) Descriptor() ([]byte, []int) {
|
|
2332
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2450
|
+
return file_outbound_proto_rawDescGZIP(), []int{25}
|
|
2333
2451
|
}
|
|
2334
2452
|
|
|
2335
2453
|
func (x *CatalogBrand) GetId() int64 {
|
|
@@ -2353,11 +2471,11 @@ func (x *CatalogBrand) GetParentId() int64 {
|
|
|
2353
2471
|
return 0
|
|
2354
2472
|
}
|
|
2355
2473
|
|
|
2356
|
-
func (x *CatalogBrand) GetLastUpdateTime()
|
|
2357
|
-
if x != nil
|
|
2358
|
-
return
|
|
2474
|
+
func (x *CatalogBrand) GetLastUpdateTime() *timestamppb.Timestamp {
|
|
2475
|
+
if x != nil {
|
|
2476
|
+
return x.LastUpdateTime
|
|
2359
2477
|
}
|
|
2360
|
-
return
|
|
2478
|
+
return nil
|
|
2361
2479
|
}
|
|
2362
2480
|
|
|
2363
2481
|
func (x *CatalogBrand) GetCountryCode() string {
|
|
@@ -2540,37 +2658,37 @@ type CatalogModel struct {
|
|
|
2540
2658
|
sizeCache protoimpl.SizeCache
|
|
2541
2659
|
unknownFields protoimpl.UnknownFields
|
|
2542
2660
|
|
|
2543
|
-
Id int64
|
|
2544
|
-
MakeId int64
|
|
2545
|
-
DeviceModel string
|
|
2546
|
-
DeviceTypeId *int64
|
|
2547
|
-
DeviceModelCode []string
|
|
2548
|
-
FamilyId *int64
|
|
2549
|
-
IsFamily *bool
|
|
2550
|
-
ManualUrl *string
|
|
2551
|
-
FaqUrl *string
|
|
2552
|
-
ReleaseDate *
|
|
2553
|
-
DiscDate *
|
|
2554
|
-
EosDate *
|
|
2555
|
-
LifecyleConfidence *string
|
|
2556
|
-
PriceClass *string
|
|
2557
|
-
ProductClass *string
|
|
2558
|
-
ShIftttHandle *string
|
|
2559
|
-
ShGoogleAssLangs []string
|
|
2560
|
-
ShAlexaLangs []string
|
|
2561
|
-
ShHassHandle *string
|
|
2562
|
-
ShAppleHomeKit *bool
|
|
2563
|
-
ShOpenHabHandle *string
|
|
2564
|
-
NistCpe *string
|
|
2565
|
-
Popularity *int32
|
|
2566
|
-
LastUpdateTime *
|
|
2567
|
-
MatchScore *int32
|
|
2661
|
+
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
2662
|
+
MakeId int64 `protobuf:"varint,3,opt,name=make_id,json=makeId,proto3" json:"make_id,omitempty"`
|
|
2663
|
+
DeviceModel string `protobuf:"bytes,4,opt,name=device_model,json=deviceModel,proto3" json:"device_model,omitempty"`
|
|
2664
|
+
DeviceTypeId *int64 `protobuf:"varint,5,opt,name=device_type_id,json=deviceTypeId,proto3,oneof" json:"device_type_id,omitempty"`
|
|
2665
|
+
DeviceModelCode []string `protobuf:"bytes,6,rep,name=device_model_code,json=deviceModelCode,proto3" json:"device_model_code,omitempty"`
|
|
2666
|
+
FamilyId *int64 `protobuf:"varint,10,opt,name=family_id,json=familyId,proto3,oneof" json:"family_id,omitempty"`
|
|
2667
|
+
IsFamily *bool `protobuf:"varint,11,opt,name=is_family,json=isFamily,proto3,oneof" json:"is_family,omitempty"`
|
|
2668
|
+
ManualUrl *string `protobuf:"bytes,12,opt,name=manual_url,json=manualUrl,proto3,oneof" json:"manual_url,omitempty"`
|
|
2669
|
+
FaqUrl *string `protobuf:"bytes,13,opt,name=faq_url,json=faqUrl,proto3,oneof" json:"faq_url,omitempty"`
|
|
2670
|
+
ReleaseDate *timestamppb.Timestamp `protobuf:"bytes,14,opt,name=release_date,json=releaseDate,proto3,oneof" json:"release_date,omitempty"`
|
|
2671
|
+
DiscDate *timestamppb.Timestamp `protobuf:"bytes,15,opt,name=disc_date,json=discDate,proto3,oneof" json:"disc_date,omitempty"`
|
|
2672
|
+
EosDate *timestamppb.Timestamp `protobuf:"bytes,26,opt,name=eos_date,json=eosDate,proto3,oneof" json:"eos_date,omitempty"`
|
|
2673
|
+
LifecyleConfidence *string `protobuf:"bytes,29,opt,name=lifecyle_confidence,json=lifecyleConfidence,proto3,oneof" json:"lifecyle_confidence,omitempty"`
|
|
2674
|
+
PriceClass *string `protobuf:"bytes,24,opt,name=price_class,json=priceClass,proto3,oneof" json:"price_class,omitempty"`
|
|
2675
|
+
ProductClass *string `protobuf:"bytes,25,opt,name=product_class,json=productClass,proto3,oneof" json:"product_class,omitempty"`
|
|
2676
|
+
ShIftttHandle *string `protobuf:"bytes,17,opt,name=sh_ifttt_handle,json=shIftttHandle,proto3,oneof" json:"sh_ifttt_handle,omitempty"`
|
|
2677
|
+
ShGoogleAssLangs []string `protobuf:"bytes,18,rep,name=sh_google_ass_langs,json=shGoogleAssLangs,proto3" json:"sh_google_ass_langs,omitempty"`
|
|
2678
|
+
ShAlexaLangs []string `protobuf:"bytes,19,rep,name=sh_alexa_langs,json=shAlexaLangs,proto3" json:"sh_alexa_langs,omitempty"`
|
|
2679
|
+
ShHassHandle *string `protobuf:"bytes,20,opt,name=sh_hass_handle,json=shHassHandle,proto3,oneof" json:"sh_hass_handle,omitempty"`
|
|
2680
|
+
ShAppleHomeKit *bool `protobuf:"varint,21,opt,name=sh_apple_home_kit,json=shAppleHomeKit,proto3,oneof" json:"sh_apple_home_kit,omitempty"`
|
|
2681
|
+
ShOpenHabHandle *string `protobuf:"bytes,22,opt,name=sh_open_hab_handle,json=shOpenHabHandle,proto3,oneof" json:"sh_open_hab_handle,omitempty"`
|
|
2682
|
+
NistCpe *string `protobuf:"bytes,28,opt,name=nist_cpe,json=nistCpe,proto3,oneof" json:"nist_cpe,omitempty"`
|
|
2683
|
+
Popularity *int32 `protobuf:"varint,23,opt,name=popularity,proto3,oneof" json:"popularity,omitempty"`
|
|
2684
|
+
LastUpdateTime *timestamppb.Timestamp `protobuf:"bytes,16,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
|
|
2685
|
+
MatchScore *int32 `protobuf:"varint,27,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // filled only when a result of search
|
|
2568
2686
|
}
|
|
2569
2687
|
|
|
2570
2688
|
func (x *CatalogModel) Reset() {
|
|
2571
2689
|
*x = CatalogModel{}
|
|
2572
2690
|
if protoimpl.UnsafeEnabled {
|
|
2573
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2691
|
+
mi := &file_outbound_proto_msgTypes[26]
|
|
2574
2692
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2575
2693
|
ms.StoreMessageInfo(mi)
|
|
2576
2694
|
}
|
|
@@ -2583,7 +2701,7 @@ func (x *CatalogModel) String() string {
|
|
|
2583
2701
|
func (*CatalogModel) ProtoMessage() {}
|
|
2584
2702
|
|
|
2585
2703
|
func (x *CatalogModel) ProtoReflect() protoreflect.Message {
|
|
2586
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2704
|
+
mi := &file_outbound_proto_msgTypes[26]
|
|
2587
2705
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2588
2706
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2589
2707
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2596,7 +2714,7 @@ func (x *CatalogModel) ProtoReflect() protoreflect.Message {
|
|
|
2596
2714
|
|
|
2597
2715
|
// Deprecated: Use CatalogModel.ProtoReflect.Descriptor instead.
|
|
2598
2716
|
func (*CatalogModel) Descriptor() ([]byte, []int) {
|
|
2599
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2717
|
+
return file_outbound_proto_rawDescGZIP(), []int{26}
|
|
2600
2718
|
}
|
|
2601
2719
|
|
|
2602
2720
|
func (x *CatalogModel) GetId() int64 {
|
|
@@ -2662,25 +2780,25 @@ func (x *CatalogModel) GetFaqUrl() string {
|
|
|
2662
2780
|
return ""
|
|
2663
2781
|
}
|
|
2664
2782
|
|
|
2665
|
-
func (x *CatalogModel) GetReleaseDate()
|
|
2666
|
-
if x != nil
|
|
2667
|
-
return
|
|
2783
|
+
func (x *CatalogModel) GetReleaseDate() *timestamppb.Timestamp {
|
|
2784
|
+
if x != nil {
|
|
2785
|
+
return x.ReleaseDate
|
|
2668
2786
|
}
|
|
2669
|
-
return
|
|
2787
|
+
return nil
|
|
2670
2788
|
}
|
|
2671
2789
|
|
|
2672
|
-
func (x *CatalogModel) GetDiscDate()
|
|
2673
|
-
if x != nil
|
|
2674
|
-
return
|
|
2790
|
+
func (x *CatalogModel) GetDiscDate() *timestamppb.Timestamp {
|
|
2791
|
+
if x != nil {
|
|
2792
|
+
return x.DiscDate
|
|
2675
2793
|
}
|
|
2676
|
-
return
|
|
2794
|
+
return nil
|
|
2677
2795
|
}
|
|
2678
2796
|
|
|
2679
|
-
func (x *CatalogModel) GetEosDate()
|
|
2680
|
-
if x != nil
|
|
2681
|
-
return
|
|
2797
|
+
func (x *CatalogModel) GetEosDate() *timestamppb.Timestamp {
|
|
2798
|
+
if x != nil {
|
|
2799
|
+
return x.EosDate
|
|
2682
2800
|
}
|
|
2683
|
-
return
|
|
2801
|
+
return nil
|
|
2684
2802
|
}
|
|
2685
2803
|
|
|
2686
2804
|
func (x *CatalogModel) GetLifecyleConfidence() string {
|
|
@@ -2760,11 +2878,11 @@ func (x *CatalogModel) GetPopularity() int32 {
|
|
|
2760
2878
|
return 0
|
|
2761
2879
|
}
|
|
2762
2880
|
|
|
2763
|
-
func (x *CatalogModel) GetLastUpdateTime()
|
|
2764
|
-
if x != nil
|
|
2765
|
-
return
|
|
2881
|
+
func (x *CatalogModel) GetLastUpdateTime() *timestamppb.Timestamp {
|
|
2882
|
+
if x != nil {
|
|
2883
|
+
return x.LastUpdateTime
|
|
2766
2884
|
}
|
|
2767
|
-
return
|
|
2885
|
+
return nil
|
|
2768
2886
|
}
|
|
2769
2887
|
|
|
2770
2888
|
func (x *CatalogModel) GetMatchScore() int32 {
|
|
@@ -2779,37 +2897,37 @@ type CatalogOs struct {
|
|
|
2779
2897
|
sizeCache protoimpl.SizeCache
|
|
2780
2898
|
unknownFields protoimpl.UnknownFields
|
|
2781
2899
|
|
|
2782
|
-
Id int64
|
|
2783
|
-
OsName string
|
|
2784
|
-
OsVersion *string
|
|
2785
|
-
OsBuild *string
|
|
2786
|
-
OsVersionName *string
|
|
2787
|
-
OverrideId *int64
|
|
2788
|
-
MakeId *int64
|
|
2789
|
-
ParentId *int64
|
|
2790
|
-
ReleaseDate *
|
|
2791
|
-
EolDate *
|
|
2792
|
-
EosDate *
|
|
2793
|
-
EosxDate *
|
|
2794
|
-
LifecyleConfidence *string
|
|
2795
|
-
LogoImageUrl *string
|
|
2796
|
-
BannerImageUrl *string
|
|
2797
|
-
WikipediaId *string
|
|
2798
|
-
WikipediaLangCode *string
|
|
2799
|
-
WebsiteUrl *string
|
|
2800
|
-
SupportUrl *string
|
|
2801
|
-
SupportPhone *string
|
|
2802
|
-
FacebookAccount *string
|
|
2803
|
-
TwitterAccount *string
|
|
2804
|
-
NistCpe *string
|
|
2805
|
-
LastUpdateTime *
|
|
2806
|
-
MatchScore *int32
|
|
2900
|
+
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
2901
|
+
OsName string `protobuf:"bytes,3,opt,name=os_name,json=osName,proto3" json:"os_name,omitempty"`
|
|
2902
|
+
OsVersion *string `protobuf:"bytes,4,opt,name=os_version,json=osVersion,proto3,oneof" json:"os_version,omitempty"`
|
|
2903
|
+
OsBuild *string `protobuf:"bytes,12,opt,name=os_build,json=osBuild,proto3,oneof" json:"os_build,omitempty"`
|
|
2904
|
+
OsVersionName *string `protobuf:"bytes,5,opt,name=os_version_name,json=osVersionName,proto3,oneof" json:"os_version_name,omitempty"`
|
|
2905
|
+
OverrideId *int64 `protobuf:"varint,6,opt,name=override_id,json=overrideId,proto3,oneof" json:"override_id,omitempty"`
|
|
2906
|
+
MakeId *int64 `protobuf:"varint,7,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
2907
|
+
ParentId *int64 `protobuf:"varint,8,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
|
|
2908
|
+
ReleaseDate *timestamppb.Timestamp `protobuf:"bytes,9,opt,name=release_date,json=releaseDate,proto3,oneof" json:"release_date,omitempty"`
|
|
2909
|
+
EolDate *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=eol_date,json=eolDate,proto3,oneof" json:"eol_date,omitempty"`
|
|
2910
|
+
EosDate *timestamppb.Timestamp `protobuf:"bytes,22,opt,name=eos_date,json=eosDate,proto3,oneof" json:"eos_date,omitempty"`
|
|
2911
|
+
EosxDate *timestamppb.Timestamp `protobuf:"bytes,25,opt,name=eosx_date,json=eosxDate,proto3,oneof" json:"eosx_date,omitempty"`
|
|
2912
|
+
LifecyleConfidence *string `protobuf:"bytes,26,opt,name=lifecyle_confidence,json=lifecyleConfidence,proto3,oneof" json:"lifecyle_confidence,omitempty"`
|
|
2913
|
+
LogoImageUrl *string `protobuf:"bytes,13,opt,name=logo_image_url,json=logoImageUrl,proto3,oneof" json:"logo_image_url,omitempty"`
|
|
2914
|
+
BannerImageUrl *string `protobuf:"bytes,14,opt,name=banner_image_url,json=bannerImageUrl,proto3,oneof" json:"banner_image_url,omitempty"`
|
|
2915
|
+
WikipediaId *string `protobuf:"bytes,15,opt,name=wikipedia_id,json=wikipediaId,proto3,oneof" json:"wikipedia_id,omitempty"`
|
|
2916
|
+
WikipediaLangCode *string `protobuf:"bytes,16,opt,name=wikipedia_lang_code,json=wikipediaLangCode,proto3,oneof" json:"wikipedia_lang_code,omitempty"`
|
|
2917
|
+
WebsiteUrl *string `protobuf:"bytes,17,opt,name=website_url,json=websiteUrl,proto3,oneof" json:"website_url,omitempty"`
|
|
2918
|
+
SupportUrl *string `protobuf:"bytes,18,opt,name=support_url,json=supportUrl,proto3,oneof" json:"support_url,omitempty"`
|
|
2919
|
+
SupportPhone *string `protobuf:"bytes,19,opt,name=support_phone,json=supportPhone,proto3,oneof" json:"support_phone,omitempty"`
|
|
2920
|
+
FacebookAccount *string `protobuf:"bytes,20,opt,name=facebook_account,json=facebookAccount,proto3,oneof" json:"facebook_account,omitempty"`
|
|
2921
|
+
TwitterAccount *string `protobuf:"bytes,21,opt,name=twitter_account,json=twitterAccount,proto3,oneof" json:"twitter_account,omitempty"`
|
|
2922
|
+
NistCpe *string `protobuf:"bytes,23,opt,name=nist_cpe,json=nistCpe,proto3,oneof" json:"nist_cpe,omitempty"`
|
|
2923
|
+
LastUpdateTime *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
|
|
2924
|
+
MatchScore *int32 `protobuf:"varint,24,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // filled only when a result of search
|
|
2807
2925
|
}
|
|
2808
2926
|
|
|
2809
2927
|
func (x *CatalogOs) Reset() {
|
|
2810
2928
|
*x = CatalogOs{}
|
|
2811
2929
|
if protoimpl.UnsafeEnabled {
|
|
2812
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2930
|
+
mi := &file_outbound_proto_msgTypes[27]
|
|
2813
2931
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2814
2932
|
ms.StoreMessageInfo(mi)
|
|
2815
2933
|
}
|
|
@@ -2822,7 +2940,7 @@ func (x *CatalogOs) String() string {
|
|
|
2822
2940
|
func (*CatalogOs) ProtoMessage() {}
|
|
2823
2941
|
|
|
2824
2942
|
func (x *CatalogOs) ProtoReflect() protoreflect.Message {
|
|
2825
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2943
|
+
mi := &file_outbound_proto_msgTypes[27]
|
|
2826
2944
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2827
2945
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2828
2946
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2835,7 +2953,7 @@ func (x *CatalogOs) ProtoReflect() protoreflect.Message {
|
|
|
2835
2953
|
|
|
2836
2954
|
// Deprecated: Use CatalogOs.ProtoReflect.Descriptor instead.
|
|
2837
2955
|
func (*CatalogOs) Descriptor() ([]byte, []int) {
|
|
2838
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2956
|
+
return file_outbound_proto_rawDescGZIP(), []int{27}
|
|
2839
2957
|
}
|
|
2840
2958
|
|
|
2841
2959
|
func (x *CatalogOs) GetId() int64 {
|
|
@@ -2894,32 +3012,32 @@ func (x *CatalogOs) GetParentId() int64 {
|
|
|
2894
3012
|
return 0
|
|
2895
3013
|
}
|
|
2896
3014
|
|
|
2897
|
-
func (x *CatalogOs) GetReleaseDate()
|
|
2898
|
-
if x != nil
|
|
2899
|
-
return
|
|
3015
|
+
func (x *CatalogOs) GetReleaseDate() *timestamppb.Timestamp {
|
|
3016
|
+
if x != nil {
|
|
3017
|
+
return x.ReleaseDate
|
|
2900
3018
|
}
|
|
2901
|
-
return
|
|
3019
|
+
return nil
|
|
2902
3020
|
}
|
|
2903
3021
|
|
|
2904
|
-
func (x *CatalogOs) GetEolDate()
|
|
2905
|
-
if x != nil
|
|
2906
|
-
return
|
|
3022
|
+
func (x *CatalogOs) GetEolDate() *timestamppb.Timestamp {
|
|
3023
|
+
if x != nil {
|
|
3024
|
+
return x.EolDate
|
|
2907
3025
|
}
|
|
2908
|
-
return
|
|
3026
|
+
return nil
|
|
2909
3027
|
}
|
|
2910
3028
|
|
|
2911
|
-
func (x *CatalogOs) GetEosDate()
|
|
2912
|
-
if x != nil
|
|
2913
|
-
return
|
|
3029
|
+
func (x *CatalogOs) GetEosDate() *timestamppb.Timestamp {
|
|
3030
|
+
if x != nil {
|
|
3031
|
+
return x.EosDate
|
|
2914
3032
|
}
|
|
2915
|
-
return
|
|
3033
|
+
return nil
|
|
2916
3034
|
}
|
|
2917
3035
|
|
|
2918
|
-
func (x *CatalogOs) GetEosxDate()
|
|
2919
|
-
if x != nil
|
|
2920
|
-
return
|
|
3036
|
+
func (x *CatalogOs) GetEosxDate() *timestamppb.Timestamp {
|
|
3037
|
+
if x != nil {
|
|
3038
|
+
return x.EosxDate
|
|
2921
3039
|
}
|
|
2922
|
-
return
|
|
3040
|
+
return nil
|
|
2923
3041
|
}
|
|
2924
3042
|
|
|
2925
3043
|
func (x *CatalogOs) GetLifecyleConfidence() string {
|
|
@@ -2999,11 +3117,11 @@ func (x *CatalogOs) GetNistCpe() string {
|
|
|
2999
3117
|
return ""
|
|
3000
3118
|
}
|
|
3001
3119
|
|
|
3002
|
-
func (x *CatalogOs) GetLastUpdateTime()
|
|
3003
|
-
if x != nil
|
|
3004
|
-
return
|
|
3120
|
+
func (x *CatalogOs) GetLastUpdateTime() *timestamppb.Timestamp {
|
|
3121
|
+
if x != nil {
|
|
3122
|
+
return x.LastUpdateTime
|
|
3005
3123
|
}
|
|
3006
|
-
return
|
|
3124
|
+
return nil
|
|
3007
3125
|
}
|
|
3008
3126
|
|
|
3009
3127
|
func (x *CatalogOs) GetMatchScore() int32 {
|
|
@@ -3018,34 +3136,34 @@ type CatalogSoftware struct {
|
|
|
3018
3136
|
sizeCache protoimpl.SizeCache
|
|
3019
3137
|
unknownFields protoimpl.UnknownFields
|
|
3020
3138
|
|
|
3021
|
-
Id int64
|
|
3022
|
-
SwName string
|
|
3023
|
-
SwVersion *string
|
|
3024
|
-
SwMarketVer *string
|
|
3025
|
-
SwEdition *string
|
|
3026
|
-
SwLang *string
|
|
3027
|
-
SwBuild *string
|
|
3028
|
-
MakeId *int64
|
|
3029
|
-
ParentId *int64
|
|
3030
|
-
LatestId *int64
|
|
3031
|
-
SwType *string
|
|
3032
|
-
SwCategory *string
|
|
3033
|
-
ReleaseDate *
|
|
3034
|
-
EolDate *
|
|
3035
|
-
EosDate *
|
|
3036
|
-
EosxDate *
|
|
3037
|
-
LifecyleConfidence *string
|
|
3038
|
-
FlagLatest *bool
|
|
3039
|
-
FlagWidespread *bool
|
|
3040
|
-
FlagDeprecated *bool
|
|
3041
|
-
LastUpdateTime *
|
|
3042
|
-
MatchScore *int32
|
|
3139
|
+
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
3140
|
+
SwName string `protobuf:"bytes,2,opt,name=sw_name,json=swName,proto3" json:"sw_name,omitempty"`
|
|
3141
|
+
SwVersion *string `protobuf:"bytes,3,opt,name=sw_version,json=swVersion,proto3,oneof" json:"sw_version,omitempty"`
|
|
3142
|
+
SwMarketVer *string `protobuf:"bytes,4,opt,name=sw_market_ver,json=swMarketVer,proto3,oneof" json:"sw_market_ver,omitempty"`
|
|
3143
|
+
SwEdition *string `protobuf:"bytes,5,opt,name=sw_edition,json=swEdition,proto3,oneof" json:"sw_edition,omitempty"`
|
|
3144
|
+
SwLang *string `protobuf:"bytes,6,opt,name=sw_lang,json=swLang,proto3,oneof" json:"sw_lang,omitempty"`
|
|
3145
|
+
SwBuild *string `protobuf:"bytes,7,opt,name=sw_build,json=swBuild,proto3,oneof" json:"sw_build,omitempty"`
|
|
3146
|
+
MakeId *int64 `protobuf:"varint,8,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
3147
|
+
ParentId *int64 `protobuf:"varint,9,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
|
|
3148
|
+
LatestId *int64 `protobuf:"varint,10,opt,name=latest_id,json=latestId,proto3,oneof" json:"latest_id,omitempty"`
|
|
3149
|
+
SwType *string `protobuf:"bytes,11,opt,name=sw_type,json=swType,proto3,oneof" json:"sw_type,omitempty"`
|
|
3150
|
+
SwCategory *string `protobuf:"bytes,12,opt,name=sw_category,json=swCategory,proto3,oneof" json:"sw_category,omitempty"`
|
|
3151
|
+
ReleaseDate *timestamppb.Timestamp `protobuf:"bytes,13,opt,name=release_date,json=releaseDate,proto3,oneof" json:"release_date,omitempty"`
|
|
3152
|
+
EolDate *timestamppb.Timestamp `protobuf:"bytes,14,opt,name=eol_date,json=eolDate,proto3,oneof" json:"eol_date,omitempty"`
|
|
3153
|
+
EosDate *timestamppb.Timestamp `protobuf:"bytes,15,opt,name=eos_date,json=eosDate,proto3,oneof" json:"eos_date,omitempty"`
|
|
3154
|
+
EosxDate *timestamppb.Timestamp `protobuf:"bytes,16,opt,name=eosx_date,json=eosxDate,proto3,oneof" json:"eosx_date,omitempty"`
|
|
3155
|
+
LifecyleConfidence *string `protobuf:"bytes,17,opt,name=lifecyle_confidence,json=lifecyleConfidence,proto3,oneof" json:"lifecyle_confidence,omitempty"`
|
|
3156
|
+
FlagLatest *bool `protobuf:"varint,18,opt,name=flag_latest,json=flagLatest,proto3,oneof" json:"flag_latest,omitempty"`
|
|
3157
|
+
FlagWidespread *bool `protobuf:"varint,19,opt,name=flag_widespread,json=flagWidespread,proto3,oneof" json:"flag_widespread,omitempty"`
|
|
3158
|
+
FlagDeprecated *bool `protobuf:"varint,20,opt,name=flag_deprecated,json=flagDeprecated,proto3,oneof" json:"flag_deprecated,omitempty"`
|
|
3159
|
+
LastUpdateTime *timestamppb.Timestamp `protobuf:"bytes,21,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
|
|
3160
|
+
MatchScore *int32 `protobuf:"varint,100,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // filled only when a result of search
|
|
3043
3161
|
}
|
|
3044
3162
|
|
|
3045
3163
|
func (x *CatalogSoftware) Reset() {
|
|
3046
3164
|
*x = CatalogSoftware{}
|
|
3047
3165
|
if protoimpl.UnsafeEnabled {
|
|
3048
|
-
mi := &file_outbound_proto_msgTypes[
|
|
3166
|
+
mi := &file_outbound_proto_msgTypes[28]
|
|
3049
3167
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3050
3168
|
ms.StoreMessageInfo(mi)
|
|
3051
3169
|
}
|
|
@@ -3058,7 +3176,7 @@ func (x *CatalogSoftware) String() string {
|
|
|
3058
3176
|
func (*CatalogSoftware) ProtoMessage() {}
|
|
3059
3177
|
|
|
3060
3178
|
func (x *CatalogSoftware) ProtoReflect() protoreflect.Message {
|
|
3061
|
-
mi := &file_outbound_proto_msgTypes[
|
|
3179
|
+
mi := &file_outbound_proto_msgTypes[28]
|
|
3062
3180
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3063
3181
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3064
3182
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3071,7 +3189,7 @@ func (x *CatalogSoftware) ProtoReflect() protoreflect.Message {
|
|
|
3071
3189
|
|
|
3072
3190
|
// Deprecated: Use CatalogSoftware.ProtoReflect.Descriptor instead.
|
|
3073
3191
|
func (*CatalogSoftware) Descriptor() ([]byte, []int) {
|
|
3074
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
3192
|
+
return file_outbound_proto_rawDescGZIP(), []int{28}
|
|
3075
3193
|
}
|
|
3076
3194
|
|
|
3077
3195
|
func (x *CatalogSoftware) GetId() int64 {
|
|
@@ -3158,32 +3276,32 @@ func (x *CatalogSoftware) GetSwCategory() string {
|
|
|
3158
3276
|
return ""
|
|
3159
3277
|
}
|
|
3160
3278
|
|
|
3161
|
-
func (x *CatalogSoftware) GetReleaseDate()
|
|
3162
|
-
if x != nil
|
|
3163
|
-
return
|
|
3279
|
+
func (x *CatalogSoftware) GetReleaseDate() *timestamppb.Timestamp {
|
|
3280
|
+
if x != nil {
|
|
3281
|
+
return x.ReleaseDate
|
|
3164
3282
|
}
|
|
3165
|
-
return
|
|
3283
|
+
return nil
|
|
3166
3284
|
}
|
|
3167
3285
|
|
|
3168
|
-
func (x *CatalogSoftware) GetEolDate()
|
|
3169
|
-
if x != nil
|
|
3170
|
-
return
|
|
3286
|
+
func (x *CatalogSoftware) GetEolDate() *timestamppb.Timestamp {
|
|
3287
|
+
if x != nil {
|
|
3288
|
+
return x.EolDate
|
|
3171
3289
|
}
|
|
3172
|
-
return
|
|
3290
|
+
return nil
|
|
3173
3291
|
}
|
|
3174
3292
|
|
|
3175
|
-
func (x *CatalogSoftware) GetEosDate()
|
|
3176
|
-
if x != nil
|
|
3177
|
-
return
|
|
3293
|
+
func (x *CatalogSoftware) GetEosDate() *timestamppb.Timestamp {
|
|
3294
|
+
if x != nil {
|
|
3295
|
+
return x.EosDate
|
|
3178
3296
|
}
|
|
3179
|
-
return
|
|
3297
|
+
return nil
|
|
3180
3298
|
}
|
|
3181
3299
|
|
|
3182
|
-
func (x *CatalogSoftware) GetEosxDate()
|
|
3183
|
-
if x != nil
|
|
3184
|
-
return
|
|
3300
|
+
func (x *CatalogSoftware) GetEosxDate() *timestamppb.Timestamp {
|
|
3301
|
+
if x != nil {
|
|
3302
|
+
return x.EosxDate
|
|
3185
3303
|
}
|
|
3186
|
-
return
|
|
3304
|
+
return nil
|
|
3187
3305
|
}
|
|
3188
3306
|
|
|
3189
3307
|
func (x *CatalogSoftware) GetLifecyleConfidence() string {
|
|
@@ -3214,11 +3332,11 @@ func (x *CatalogSoftware) GetFlagDeprecated() bool {
|
|
|
3214
3332
|
return false
|
|
3215
3333
|
}
|
|
3216
3334
|
|
|
3217
|
-
func (x *CatalogSoftware) GetLastUpdateTime()
|
|
3218
|
-
if x != nil
|
|
3219
|
-
return
|
|
3335
|
+
func (x *CatalogSoftware) GetLastUpdateTime() *timestamppb.Timestamp {
|
|
3336
|
+
if x != nil {
|
|
3337
|
+
return x.LastUpdateTime
|
|
3220
3338
|
}
|
|
3221
|
-
return
|
|
3339
|
+
return nil
|
|
3222
3340
|
}
|
|
3223
3341
|
|
|
3224
3342
|
func (x *CatalogSoftware) GetMatchScore() int32 {
|
|
@@ -3233,58 +3351,58 @@ type CatalogMonitor struct {
|
|
|
3233
3351
|
sizeCache protoimpl.SizeCache
|
|
3234
3352
|
unknownFields protoimpl.UnknownFields
|
|
3235
3353
|
|
|
3236
|
-
Id int64
|
|
3237
|
-
Model string
|
|
3238
|
-
VendorId *string
|
|
3239
|
-
MakeId *int64
|
|
3240
|
-
FamilyId *int64
|
|
3241
|
-
IsFamily *bool
|
|
3242
|
-
OfficialPage *string
|
|
3243
|
-
SupportPage *string
|
|
3244
|
-
SizeInch *float64
|
|
3245
|
-
MaxResolution *string
|
|
3246
|
-
AspectRatio *string
|
|
3247
|
-
ResponseTimeMs *float64
|
|
3248
|
-
HdType *string
|
|
3249
|
-
DisplayTech *string
|
|
3250
|
-
RefreshRate *int32
|
|
3251
|
-
Panel *string
|
|
3252
|
-
HeightCm *float64
|
|
3253
|
-
WidthCm *float64
|
|
3254
|
-
DiagonalCm *float64
|
|
3255
|
-
UsbUpstream *string
|
|
3256
|
-
NrUsbUpstream *int32
|
|
3257
|
-
NrUsbTypeADownstream *int32
|
|
3258
|
-
NrHdmi *int32
|
|
3259
|
-
NrVga *int32
|
|
3260
|
-
NrDvi *int32
|
|
3261
|
-
HdmiVersion *float64
|
|
3262
|
-
NrDisplayPorts *int32
|
|
3263
|
-
DisplayPortVersion *float64
|
|
3264
|
-
EnergyClass *string
|
|
3265
|
-
SdrPer_1000U *int32
|
|
3266
|
-
AverageWattUsage *float64
|
|
3267
|
-
MaxWattUsage *float64
|
|
3268
|
-
WattUsageStandby *float64
|
|
3269
|
-
WattPowerSave *float64
|
|
3270
|
-
AcVoltage *string
|
|
3271
|
-
AcFreqHz *string
|
|
3272
|
-
CurrentA *float64
|
|
3273
|
-
FeatureAio *bool
|
|
3274
|
-
FeatureCamera *bool
|
|
3275
|
-
FeatureSpeakers *bool
|
|
3276
|
-
FeatureHdmi *bool
|
|
3277
|
-
FeatureEth *bool
|
|
3278
|
-
FeaturePortrait *bool
|
|
3279
|
-
FeatureCurved *bool
|
|
3280
|
-
LastUpdateTime *
|
|
3281
|
-
MatchScore *int32
|
|
3354
|
+
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
3355
|
+
Model string `protobuf:"bytes,3,opt,name=model,proto3" json:"model,omitempty"`
|
|
3356
|
+
VendorId *string `protobuf:"bytes,4,opt,name=vendor_id,json=vendorId,proto3,oneof" json:"vendor_id,omitempty"`
|
|
3357
|
+
MakeId *int64 `protobuf:"varint,5,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
3358
|
+
FamilyId *int64 `protobuf:"varint,6,opt,name=family_id,json=familyId,proto3,oneof" json:"family_id,omitempty"`
|
|
3359
|
+
IsFamily *bool `protobuf:"varint,7,opt,name=is_family,json=isFamily,proto3,oneof" json:"is_family,omitempty"`
|
|
3360
|
+
OfficialPage *string `protobuf:"bytes,8,opt,name=official_page,json=officialPage,proto3,oneof" json:"official_page,omitempty"`
|
|
3361
|
+
SupportPage *string `protobuf:"bytes,9,opt,name=support_page,json=supportPage,proto3,oneof" json:"support_page,omitempty"`
|
|
3362
|
+
SizeInch *float64 `protobuf:"fixed64,10,opt,name=size_inch,json=sizeInch,proto3,oneof" json:"size_inch,omitempty"`
|
|
3363
|
+
MaxResolution *string `protobuf:"bytes,11,opt,name=max_resolution,json=maxResolution,proto3,oneof" json:"max_resolution,omitempty"`
|
|
3364
|
+
AspectRatio *string `protobuf:"bytes,12,opt,name=aspect_ratio,json=aspectRatio,proto3,oneof" json:"aspect_ratio,omitempty"`
|
|
3365
|
+
ResponseTimeMs *float64 `protobuf:"fixed64,13,opt,name=response_time_ms,json=responseTimeMs,proto3,oneof" json:"response_time_ms,omitempty"`
|
|
3366
|
+
HdType *string `protobuf:"bytes,14,opt,name=hd_type,json=hdType,proto3,oneof" json:"hd_type,omitempty"`
|
|
3367
|
+
DisplayTech *string `protobuf:"bytes,15,opt,name=display_tech,json=displayTech,proto3,oneof" json:"display_tech,omitempty"`
|
|
3368
|
+
RefreshRate *int32 `protobuf:"varint,16,opt,name=refresh_rate,json=refreshRate,proto3,oneof" json:"refresh_rate,omitempty"`
|
|
3369
|
+
Panel *string `protobuf:"bytes,17,opt,name=panel,proto3,oneof" json:"panel,omitempty"`
|
|
3370
|
+
HeightCm *float64 `protobuf:"fixed64,18,opt,name=height_cm,json=heightCm,proto3,oneof" json:"height_cm,omitempty"`
|
|
3371
|
+
WidthCm *float64 `protobuf:"fixed64,19,opt,name=width_cm,json=widthCm,proto3,oneof" json:"width_cm,omitempty"`
|
|
3372
|
+
DiagonalCm *float64 `protobuf:"fixed64,20,opt,name=diagonal_cm,json=diagonalCm,proto3,oneof" json:"diagonal_cm,omitempty"`
|
|
3373
|
+
UsbUpstream *string `protobuf:"bytes,21,opt,name=usb_upstream,json=usbUpstream,proto3,oneof" json:"usb_upstream,omitempty"`
|
|
3374
|
+
NrUsbUpstream *int32 `protobuf:"varint,22,opt,name=nr_usb_upstream,json=nrUsbUpstream,proto3,oneof" json:"nr_usb_upstream,omitempty"`
|
|
3375
|
+
NrUsbTypeADownstream *int32 `protobuf:"varint,23,opt,name=nr_usb_type_a_downstream,json=nrUsbTypeADownstream,proto3,oneof" json:"nr_usb_type_a_downstream,omitempty"`
|
|
3376
|
+
NrHdmi *int32 `protobuf:"varint,24,opt,name=nr_hdmi,json=nrHdmi,proto3,oneof" json:"nr_hdmi,omitempty"`
|
|
3377
|
+
NrVga *int32 `protobuf:"varint,25,opt,name=nr_vga,json=nrVga,proto3,oneof" json:"nr_vga,omitempty"`
|
|
3378
|
+
NrDvi *int32 `protobuf:"varint,26,opt,name=nr_dvi,json=nrDvi,proto3,oneof" json:"nr_dvi,omitempty"`
|
|
3379
|
+
HdmiVersion *float64 `protobuf:"fixed64,27,opt,name=hdmi_version,json=hdmiVersion,proto3,oneof" json:"hdmi_version,omitempty"`
|
|
3380
|
+
NrDisplayPorts *int32 `protobuf:"varint,28,opt,name=nr_display_ports,json=nrDisplayPorts,proto3,oneof" json:"nr_display_ports,omitempty"`
|
|
3381
|
+
DisplayPortVersion *float64 `protobuf:"fixed64,29,opt,name=display_port_version,json=displayPortVersion,proto3,oneof" json:"display_port_version,omitempty"`
|
|
3382
|
+
EnergyClass *string `protobuf:"bytes,30,opt,name=energy_class,json=energyClass,proto3,oneof" json:"energy_class,omitempty"`
|
|
3383
|
+
SdrPer_1000U *int32 `protobuf:"varint,31,opt,name=sdr_per_1000_u,json=sdrPer1000U,proto3,oneof" json:"sdr_per_1000_u,omitempty"`
|
|
3384
|
+
AverageWattUsage *float64 `protobuf:"fixed64,32,opt,name=average_watt_usage,json=averageWattUsage,proto3,oneof" json:"average_watt_usage,omitempty"`
|
|
3385
|
+
MaxWattUsage *float64 `protobuf:"fixed64,33,opt,name=max_watt_usage,json=maxWattUsage,proto3,oneof" json:"max_watt_usage,omitempty"`
|
|
3386
|
+
WattUsageStandby *float64 `protobuf:"fixed64,34,opt,name=watt_usage_standby,json=wattUsageStandby,proto3,oneof" json:"watt_usage_standby,omitempty"`
|
|
3387
|
+
WattPowerSave *float64 `protobuf:"fixed64,35,opt,name=watt_power_save,json=wattPowerSave,proto3,oneof" json:"watt_power_save,omitempty"`
|
|
3388
|
+
AcVoltage *string `protobuf:"bytes,36,opt,name=ac_voltage,json=acVoltage,proto3,oneof" json:"ac_voltage,omitempty"`
|
|
3389
|
+
AcFreqHz *string `protobuf:"bytes,37,opt,name=ac_freq_hz,json=acFreqHz,proto3,oneof" json:"ac_freq_hz,omitempty"`
|
|
3390
|
+
CurrentA *float64 `protobuf:"fixed64,38,opt,name=current_a,json=currentA,proto3,oneof" json:"current_a,omitempty"`
|
|
3391
|
+
FeatureAio *bool `protobuf:"varint,39,opt,name=feature_aio,json=featureAio,proto3,oneof" json:"feature_aio,omitempty"`
|
|
3392
|
+
FeatureCamera *bool `protobuf:"varint,40,opt,name=feature_camera,json=featureCamera,proto3,oneof" json:"feature_camera,omitempty"`
|
|
3393
|
+
FeatureSpeakers *bool `protobuf:"varint,41,opt,name=feature_speakers,json=featureSpeakers,proto3,oneof" json:"feature_speakers,omitempty"`
|
|
3394
|
+
FeatureHdmi *bool `protobuf:"varint,42,opt,name=feature_hdmi,json=featureHdmi,proto3,oneof" json:"feature_hdmi,omitempty"`
|
|
3395
|
+
FeatureEth *bool `protobuf:"varint,43,opt,name=feature_eth,json=featureEth,proto3,oneof" json:"feature_eth,omitempty"`
|
|
3396
|
+
FeaturePortrait *bool `protobuf:"varint,44,opt,name=feature_portrait,json=featurePortrait,proto3,oneof" json:"feature_portrait,omitempty"`
|
|
3397
|
+
FeatureCurved *bool `protobuf:"varint,45,opt,name=feature_curved,json=featureCurved,proto3,oneof" json:"feature_curved,omitempty"`
|
|
3398
|
+
LastUpdateTime *timestamppb.Timestamp `protobuf:"bytes,46,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
|
|
3399
|
+
MatchScore *int32 `protobuf:"varint,100,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // filled only when a result of search
|
|
3282
3400
|
}
|
|
3283
3401
|
|
|
3284
3402
|
func (x *CatalogMonitor) Reset() {
|
|
3285
3403
|
*x = CatalogMonitor{}
|
|
3286
3404
|
if protoimpl.UnsafeEnabled {
|
|
3287
|
-
mi := &file_outbound_proto_msgTypes[
|
|
3405
|
+
mi := &file_outbound_proto_msgTypes[29]
|
|
3288
3406
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3289
3407
|
ms.StoreMessageInfo(mi)
|
|
3290
3408
|
}
|
|
@@ -3297,7 +3415,7 @@ func (x *CatalogMonitor) String() string {
|
|
|
3297
3415
|
func (*CatalogMonitor) ProtoMessage() {}
|
|
3298
3416
|
|
|
3299
3417
|
func (x *CatalogMonitor) ProtoReflect() protoreflect.Message {
|
|
3300
|
-
mi := &file_outbound_proto_msgTypes[
|
|
3418
|
+
mi := &file_outbound_proto_msgTypes[29]
|
|
3301
3419
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3302
3420
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3303
3421
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3310,7 +3428,7 @@ func (x *CatalogMonitor) ProtoReflect() protoreflect.Message {
|
|
|
3310
3428
|
|
|
3311
3429
|
// Deprecated: Use CatalogMonitor.ProtoReflect.Descriptor instead.
|
|
3312
3430
|
func (*CatalogMonitor) Descriptor() ([]byte, []int) {
|
|
3313
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
3431
|
+
return file_outbound_proto_rawDescGZIP(), []int{29}
|
|
3314
3432
|
}
|
|
3315
3433
|
|
|
3316
3434
|
func (x *CatalogMonitor) GetId() int64 {
|
|
@@ -3621,11 +3739,11 @@ func (x *CatalogMonitor) GetFeatureCurved() bool {
|
|
|
3621
3739
|
return false
|
|
3622
3740
|
}
|
|
3623
3741
|
|
|
3624
|
-
func (x *CatalogMonitor) GetLastUpdateTime()
|
|
3625
|
-
if x != nil
|
|
3626
|
-
return
|
|
3742
|
+
func (x *CatalogMonitor) GetLastUpdateTime() *timestamppb.Timestamp {
|
|
3743
|
+
if x != nil {
|
|
3744
|
+
return x.LastUpdateTime
|
|
3627
3745
|
}
|
|
3628
|
-
return
|
|
3746
|
+
return nil
|
|
3629
3747
|
}
|
|
3630
3748
|
|
|
3631
3749
|
func (x *CatalogMonitor) GetMatchScore() int32 {
|
|
@@ -3736,7 +3854,7 @@ var file_outbound_proto_rawDesc = []byte{
|
|
|
3736
3854
|
0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3737
3855
|
0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x41,
|
|
3738
3856
|
0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0x08, 0x0a,
|
|
3739
|
-
0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22,
|
|
3857
|
+
0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, 0xa4, 0x07, 0x0a, 0x05, 0x41, 0x73, 0x73, 0x65,
|
|
3740
3858
|
0x74, 0x12, 0x39, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e,
|
|
3741
3859
|
0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64,
|
|
3742
3860
|
0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e,
|
|
@@ -3756,942 +3874,999 @@ var file_outbound_proto_rawDesc = []byte{
|
|
|
3756
3874
|
0x63, 0x68, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
|
|
3757
3875
|
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
|
|
3758
3876
|
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x45, 0x6e, 0x72, 0x69,
|
|
3759
|
-
0x63, 0x68, 0x65, 0x64, 0x12,
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
0x6f, 0x72, 0x65, 0x12, 0x40, 0x0a, 0x02, 0x68, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3764
|
-
0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3765
|
-
0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
3766
|
-
0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x02,
|
|
3767
|
-
0x68, 0x77, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x02, 0x6f, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28,
|
|
3768
|
-
0x0b, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3877
|
+
0x63, 0x68, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74,
|
|
3878
|
+
0x61, 0x67, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
|
|
3879
|
+
0x54, 0x61, 0x67, 0x12, 0x3d, 0x0a, 0x04, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
3880
|
+
0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3769
3881
|
0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76,
|
|
3770
|
-
0x31, 0x2e,
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79,
|
|
3783
|
-
0x48, 0x03, 0x52, 0x10, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e,
|
|
3784
|
-
0x74, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x12, 0x6e, 0x65, 0x74, 0x77, 0x6f,
|
|
3785
|
-
0x72, 0x6b, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x0b, 0x20,
|
|
3786
|
-
0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
3787
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
|
|
3788
|
-
0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x74, 0x65, 0x72,
|
|
3789
|
-
0x66, 0x61, 0x63, 0x65, 0x73, 0x48, 0x04, 0x52, 0x11, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
|
|
3790
|
-
0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a,
|
|
3791
|
-
0x03, 0x5f, 0x68, 0x77, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x6f, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f,
|
|
3792
|
-
0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f,
|
|
3793
|
-
0x72, 0x79, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69,
|
|
3794
|
-
0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x6e, 0x65, 0x74,
|
|
3795
|
-
0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22,
|
|
3796
|
-
0x69, 0x0a, 0x09, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x07,
|
|
3797
|
-
0x6c, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6c,
|
|
3798
|
-
0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x6c, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x03,
|
|
3799
|
-
0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x6c, 0x73, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x69,
|
|
3800
|
-
0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
|
|
3801
|
-
0x08, 0x66, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a,
|
|
3802
|
-
0x5f, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0xe3, 0x02, 0x0a, 0x0a, 0x43,
|
|
3803
|
-
0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x3c, 0x0a, 0x04, 0x74, 0x79, 0x70,
|
|
3804
|
-
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
|
|
3805
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
|
|
3806
|
-
0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70,
|
|
3807
|
-
0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3808
|
-
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x06, 0x64,
|
|
3809
|
-
0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x64,
|
|
3810
|
-
0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x69, 0x70, 0x5f, 0x61,
|
|
3811
|
-
0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x09,
|
|
3812
|
-
0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06,
|
|
3813
|
-
0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x06,
|
|
3814
|
-
0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x6d, 0x61, 0x63,
|
|
3815
|
-
0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x03, 0x6d, 0x61, 0x63, 0x88, 0x01, 0x01,
|
|
3816
|
-
0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x63, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x07,
|
|
3817
|
-
0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x09, 0x6d, 0x61, 0x63, 0x56, 0x65, 0x6e, 0x64, 0x6f,
|
|
3818
|
-
0x72, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69,
|
|
3819
|
-
0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x73, 0x6f,
|
|
3820
|
-
0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69,
|
|
3821
|
-
0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
|
|
3822
|
-
0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x06, 0x0a, 0x04, 0x5f,
|
|
3823
|
-
0x6d, 0x61, 0x63, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x63, 0x5f, 0x76, 0x65, 0x6e, 0x64,
|
|
3824
|
-
0x6f, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64,
|
|
3825
|
-
0x22, 0xf0, 0x04, 0x0a, 0x0c, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66,
|
|
3826
|
-
0x6f, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
3827
|
-
0x28, 0x03, 0x48, 0x00, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
3828
|
-
0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
|
|
3829
|
-
0x48, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a,
|
|
3830
|
-
0x08, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
3831
|
-
0x02, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a,
|
|
3832
|
-
0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
|
|
3833
|
-
0x48, 0x03, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
3834
|
-
0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x06, 0x20, 0x01,
|
|
3835
|
-
0x28, 0x08, 0x48, 0x04, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01,
|
|
3836
|
-
0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28,
|
|
3837
|
-
0x09, 0x48, 0x05, 0x52, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x20,
|
|
3838
|
-
0x0a, 0x09, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
|
|
3839
|
-
0x09, 0x48, 0x06, 0x52, 0x08, 0x74, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
|
3840
|
-
0x12, 0x20, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20,
|
|
3841
|
-
0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88,
|
|
3842
|
-
0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
3843
|
-
0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4e,
|
|
3844
|
-
0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
3845
|
-
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0a, 0x66,
|
|
3846
|
-
0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03,
|
|
3847
|
-
0x63, 0x70, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x03, 0x63, 0x70, 0x65,
|
|
3848
|
-
0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x14, 0x20, 0x01, 0x28,
|
|
3849
|
-
0x05, 0x48, 0x0b, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x03,
|
|
3850
|
-
0x72, 0x61, 0x77, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
|
|
3882
|
+
0x31, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x52, 0x04, 0x63, 0x6f,
|
|
3883
|
+
0x72, 0x65, 0x12, 0x40, 0x0a, 0x02, 0x68, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b,
|
|
3884
|
+
0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3885
|
+
0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x48,
|
|
3886
|
+
0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x02, 0x68,
|
|
3887
|
+
0x77, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x02, 0x6f, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b,
|
|
3888
|
+
0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3889
|
+
0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
|
|
3890
|
+
0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d,
|
|
3891
|
+
0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x02, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a,
|
|
3892
|
+
0x12, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74,
|
|
3893
|
+
0x6f, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
|
|
3851
3894
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
|
|
3852
|
-
0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
0x72, 0x61, 0x77, 0x22, 0xe6, 0x01, 0x0a, 0x0f, 0x52, 0x61, 0x77, 0x48, 0x61, 0x72, 0x64, 0x77,
|
|
3865
|
-
0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x0a, 0x0c, 0x61, 0x72, 0x63, 0x68, 0x69,
|
|
3866
|
-
0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
|
|
3867
|
-
0x0c, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x88, 0x01, 0x01,
|
|
3868
|
-
0x12, 0x19, 0x0a, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3869
|
-
0x01, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x6d,
|
|
3870
|
-
0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
3871
|
-
0x09, 0x48, 0x02, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65,
|
|
3872
|
-
0x72, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e,
|
|
3873
|
-
0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0c, 0x73,
|
|
3874
|
-
0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x0f,
|
|
3875
|
-
0x0a, 0x0d, 0x5f, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x42,
|
|
3876
|
-
0x08, 0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x6d, 0x61,
|
|
3877
|
-
0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73,
|
|
3878
|
-
0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xc9, 0x03, 0x0a,
|
|
3879
|
-
0x13, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d,
|
|
3880
|
-
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
|
|
3881
|
-
0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b,
|
|
3882
|
-
0x65, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x06, 0x6d, 0x61,
|
|
3883
|
-
0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3884
|
-
0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
|
3885
|
-
0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
3886
|
-
0x09, 0x48, 0x04, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12,
|
|
3887
|
-
0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05,
|
|
3888
|
-
0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x66, 0x77,
|
|
3889
|
-
0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06,
|
|
3890
|
-
0x52, 0x09, 0x66, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x15,
|
|
3891
|
-
0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x03, 0x63,
|
|
3892
|
-
0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x66, 0x77, 0x5f, 0x63, 0x70, 0x65, 0x18,
|
|
3893
|
-
0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x05, 0x66, 0x77, 0x43, 0x70, 0x65, 0x88, 0x01,
|
|
3894
|
-
0x01, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x48,
|
|
3895
|
-
0x09, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x07, 0x77, 0x69,
|
|
3896
|
-
0x6e, 0x64, 0x6f, 0x77, 0x73, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x63, 0x6f,
|
|
3897
|
-
0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e,
|
|
3898
|
-
0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x69, 0x6e, 0x64,
|
|
3899
|
-
0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53,
|
|
3900
|
-
0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x07, 0x77, 0x69, 0x6e,
|
|
3901
|
-
0x64, 0x6f, 0x77, 0x73, 0x42, 0x05, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x42, 0x05, 0x0a, 0x03, 0x5f,
|
|
3902
|
-
0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x07,
|
|
3903
|
-
0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73,
|
|
3904
|
-
0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0d, 0x0a,
|
|
3905
|
-
0x0b, 0x5f, 0x66, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04,
|
|
3906
|
-
0x5f, 0x63, 0x70, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x66, 0x77, 0x5f, 0x63, 0x70, 0x65, 0x42,
|
|
3907
|
-
0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x22, 0xd4, 0x04, 0x0a, 0x1d, 0x57, 0x69, 0x6e,
|
|
3908
|
-
0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67,
|
|
3909
|
-
0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65,
|
|
3910
|
-
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x07, 0x76,
|
|
3911
|
-
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x65, 0x72,
|
|
3912
|
-
0x76, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48,
|
|
3913
|
-
0x01, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x61, 0x63, 0x6b, 0x88, 0x01,
|
|
3914
|
-
0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
|
|
3915
|
-
0x48, 0x02, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c,
|
|
3916
|
-
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
|
|
3917
|
-
0x28, 0x09, 0x48, 0x03, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d,
|
|
3918
|
-
0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75,
|
|
3919
|
-
0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0b, 0x62, 0x75,
|
|
3920
|
-
0x69, 0x6c, 0x64, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c,
|
|
3921
|
-
0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01,
|
|
3922
|
-
0x28, 0x05, 0x48, 0x05, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70,
|
|
3923
|
-
0x65, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x14, 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69,
|
|
3924
|
-
0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01,
|
|
3925
|
-
0x28, 0x08, 0x48, 0x06, 0x52, 0x12, 0x69, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6f,
|
|
3926
|
-
0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x70,
|
|
3927
|
-
0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x08, 0x20,
|
|
3928
|
-
0x01, 0x28, 0x08, 0x48, 0x07, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x74, 0x4f, 0x66, 0x44, 0x6f, 0x6d,
|
|
3929
|
-
0x61, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x12, 0x69, 0x73, 0x5f, 0x61, 0x7a, 0x75,
|
|
3930
|
-
0x72, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01,
|
|
3931
|
-
0x28, 0x08, 0x48, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x41, 0x7a, 0x75, 0x72, 0x65, 0x41, 0x64, 0x4a,
|
|
3932
|
-
0x6f, 0x69, 0x6e, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x63,
|
|
3933
|
-
0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x43,
|
|
3934
|
-
0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69,
|
|
3935
|
-
0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x70,
|
|
3936
|
-
0x61, 0x63, 0x6b, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0f, 0x0a,
|
|
3937
|
-
0x0d, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0f,
|
|
3938
|
-
0x0a, 0x0d, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42,
|
|
3939
|
-
0x0f, 0x0a, 0x0d, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
|
|
3940
|
-
0x42, 0x17, 0x0a, 0x15, 0x5f, 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63,
|
|
3941
|
-
0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x70, 0x61,
|
|
3942
|
-
0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42, 0x15, 0x0a, 0x13,
|
|
3943
|
-
0x5f, 0x69, 0x73, 0x5f, 0x61, 0x7a, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69,
|
|
3944
|
-
0x6e, 0x65, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6f, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22,
|
|
3945
|
-
0x9c, 0x01, 0x0a, 0x11, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x74, 0x65, 0x72,
|
|
3946
|
-
0x66, 0x61, 0x63, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
|
|
3947
|
-
0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
|
|
3948
|
-
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
|
|
3949
|
-
0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12,
|
|
3950
|
-
0x4d, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x03,
|
|
3951
|
-
0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3895
|
+
0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61,
|
|
3896
|
+
0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x48, 0x02, 0x52, 0x11, 0x73,
|
|
3897
|
+
0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79,
|
|
3898
|
+
0x88, 0x01, 0x01, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69,
|
|
3899
|
+
0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f,
|
|
3900
|
+
0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3901
|
+
0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
|
|
3902
|
+
0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x48,
|
|
3903
|
+
0x03, 0x52, 0x10, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74,
|
|
3904
|
+
0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x12, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
|
|
3905
|
+
0x6b, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x01,
|
|
3906
|
+
0x28, 0x0b, 0x32, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3952
3907
|
0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
|
|
3953
3908
|
0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66,
|
|
3954
|
-
0x61, 0x63, 0x65,
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
0x0b, 0x32,
|
|
3970
|
-
0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
0x61, 0x6d,
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
0x0a,
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
0x65,
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
|
|
4044
|
-
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
0x75,
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x0d, 0x0a, 0x0b, 0x5f,
|
|
4063
|
-
0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x68, 0x65, 0x78, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x76,
|
|
4064
|
-
0x65, 0x73, 0x61, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72,
|
|
4065
|
-
0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63,
|
|
4066
|
-
0x74, 0x75, 0x72, 0x65, 0x72, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61,
|
|
4067
|
-
0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
|
4068
|
-
0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x11, 0x53, 0x6f,
|
|
4069
|
-
0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x12,
|
|
4070
|
-
0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01,
|
|
4071
|
-
0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
4072
|
-
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09,
|
|
4073
|
-
0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x43, 0x0a, 0x08, 0x73, 0x6f, 0x66,
|
|
4074
|
-
0x74, 0x77, 0x61, 0x72, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x6f,
|
|
4075
|
-
0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e,
|
|
4076
|
-
0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x6f, 0x66, 0x74,
|
|
4077
|
-
0x77, 0x61, 0x72, 0x65, 0x52, 0x08, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x22, 0xd3,
|
|
4078
|
-
0x06, 0x0a, 0x08, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x12, 0x17, 0x0a, 0x04, 0x72,
|
|
4079
|
-
0x61, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04, 0x72, 0x61, 0x6e,
|
|
4080
|
-
0x6b, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
4081
|
-
0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64, 0x88,
|
|
4082
|
-
0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x63, 0x61, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
|
|
4083
|
-
0x28, 0x03, 0x48, 0x02, 0x52, 0x05, 0x63, 0x61, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c,
|
|
4084
|
-
0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
4085
|
-
0x03, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x05,
|
|
4086
|
-
0x73, 0x77, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x04, 0x73,
|
|
4087
|
-
0x77, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
|
|
4088
|
-
0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72,
|
|
4089
|
-
0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x79, 0x70, 0x65,
|
|
4090
|
-
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x74,
|
|
4091
|
-
0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x63, 0x61,
|
|
4092
|
-
0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x07,
|
|
4093
|
-
0x63, 0x61, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6d, 0x61,
|
|
4094
|
-
0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52,
|
|
4095
|
-
0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04,
|
|
4096
|
-
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x04, 0x6e, 0x61,
|
|
4097
|
-
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
4098
|
-
0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
4099
|
-
0x6e, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76,
|
|
4100
|
-
0x65, 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x09, 0x6d, 0x61, 0x72, 0x6b,
|
|
4101
|
-
0x65, 0x74, 0x56, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x65, 0x64, 0x69, 0x74,
|
|
4102
|
-
0x69, 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x07, 0x65, 0x64, 0x69,
|
|
4103
|
-
0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
|
4104
|
-
0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88,
|
|
4105
|
-
0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09,
|
|
4106
|
-
0x48, 0x0e, 0x52, 0x04, 0x61, 0x72, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6c,
|
|
4107
|
-
0x61, 0x6e, 0x67, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x04, 0x6c, 0x61, 0x6e,
|
|
4108
|
-
0x67, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28,
|
|
4109
|
-
0x09, 0x48, 0x10, 0x52, 0x03, 0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x03, 0x72,
|
|
4110
|
-
0x61, 0x77, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
|
|
3909
|
+
0x61, 0x63, 0x65, 0x73, 0x48, 0x04, 0x52, 0x11, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49,
|
|
3910
|
+
0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a, 0x03,
|
|
3911
|
+
0x5f, 0x68, 0x77, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x6f, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73,
|
|
3912
|
+
0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
|
|
3913
|
+
0x79, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x6e,
|
|
3914
|
+
0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x6e, 0x65, 0x74, 0x77,
|
|
3915
|
+
0x6f, 0x72, 0x6b, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22, 0x69,
|
|
3916
|
+
0x0a, 0x09, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x6c,
|
|
3917
|
+
0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6c, 0x73,
|
|
3918
|
+
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x6c, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
|
|
3919
|
+
0x01, 0x28, 0x05, 0x52, 0x04, 0x6c, 0x73, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x69, 0x6e,
|
|
3920
|
+
0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08,
|
|
3921
|
+
0x66, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
|
3922
|
+
0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0xe3, 0x02, 0x0a, 0x0a, 0x43, 0x6f,
|
|
3923
|
+
0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x3c, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
|
|
3924
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
|
|
3925
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
|
|
3926
|
+
0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65,
|
|
3927
|
+
0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
|
|
3928
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x06, 0x64, 0x6f,
|
|
3929
|
+
0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x64, 0x6f,
|
|
3930
|
+
0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x69, 0x70, 0x5f, 0x61, 0x64,
|
|
3931
|
+
0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x09, 0x69,
|
|
3932
|
+
0x70, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73,
|
|
3933
|
+
0x65, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x06, 0x73,
|
|
3934
|
+
0x65, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x6d, 0x61, 0x63, 0x18,
|
|
3935
|
+
0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x03, 0x6d, 0x61, 0x63, 0x88, 0x01, 0x01, 0x12,
|
|
3936
|
+
0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x63, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x07, 0x20,
|
|
3937
|
+
0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x09, 0x6d, 0x61, 0x63, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72,
|
|
3938
|
+
0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64,
|
|
3939
|
+
0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72,
|
|
3940
|
+
0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
|
|
3941
|
+
0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x42,
|
|
3942
|
+
0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x6d,
|
|
3943
|
+
0x61, 0x63, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x63, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f,
|
|
3944
|
+
0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x22,
|
|
3945
|
+
0xf0, 0x04, 0x0a, 0x0c, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f,
|
|
3946
|
+
0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3947
|
+
0x03, 0x48, 0x00, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c,
|
|
3948
|
+
0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
3949
|
+
0x01, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08,
|
|
3950
|
+
0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02,
|
|
3951
|
+
0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09,
|
|
3952
|
+
0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
3953
|
+
0x03, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20,
|
|
3954
|
+
0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
3955
|
+
0x08, 0x48, 0x04, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01,
|
|
3956
|
+
0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
|
|
3957
|
+
0x48, 0x05, 0x52, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a,
|
|
3958
|
+
0x09, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
|
|
3959
|
+
0x48, 0x06, 0x52, 0x08, 0x74, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3960
|
+
0x20, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01,
|
|
3961
|
+
0x28, 0x09, 0x48, 0x07, 0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01,
|
|
3962
|
+
0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3963
|
+
0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4e, 0x61,
|
|
3964
|
+
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f,
|
|
3965
|
+
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0a, 0x66, 0x61,
|
|
3966
|
+
0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x63,
|
|
3967
|
+
0x70, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x03, 0x63, 0x70, 0x65, 0x88,
|
|
3968
|
+
0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x14, 0x20, 0x01, 0x28, 0x05,
|
|
3969
|
+
0x48, 0x0b, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x03, 0x72,
|
|
3970
|
+
0x61, 0x77, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
|
|
3971
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74,
|
|
3972
|
+
0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x61, 0x77, 0x48, 0x61, 0x72, 0x64,
|
|
3973
|
+
0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x0c, 0x52, 0x03, 0x72, 0x61, 0x77, 0x88,
|
|
3974
|
+
0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0a,
|
|
3975
|
+
0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6d,
|
|
3976
|
+
0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69,
|
|
3977
|
+
0x6c, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d,
|
|
3978
|
+
0x69, 0x6c, 0x79, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x0c,
|
|
3979
|
+
0x0a, 0x0a, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0c, 0x0a, 0x0a,
|
|
3980
|
+
0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d,
|
|
3981
|
+
0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x61,
|
|
3982
|
+
0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63, 0x70,
|
|
3983
|
+
0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x72,
|
|
3984
|
+
0x61, 0x77, 0x22, 0xe6, 0x01, 0x0a, 0x0f, 0x52, 0x61, 0x77, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61,
|
|
3985
|
+
0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x0a, 0x0c, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74,
|
|
3986
|
+
0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c,
|
|
3987
|
+
0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3988
|
+
0x19, 0x0a, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01,
|
|
3989
|
+
0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x6d, 0x61,
|
|
3990
|
+
0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
|
|
3991
|
+
0x48, 0x02, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72,
|
|
3992
|
+
0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75,
|
|
3993
|
+
0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0c, 0x73, 0x65,
|
|
3994
|
+
0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a,
|
|
3995
|
+
0x0d, 0x5f, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x42, 0x08,
|
|
3996
|
+
0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x6d, 0x61, 0x6e,
|
|
3997
|
+
0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x65,
|
|
3998
|
+
0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x94, 0x04, 0x0a, 0x13,
|
|
3999
|
+
0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49,
|
|
4000
|
+
0x6e, 0x66, 0x6f, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
4001
|
+
0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65,
|
|
4002
|
+
0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x06, 0x6d, 0x61, 0x6b,
|
|
4003
|
+
0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
|
|
4004
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4005
|
+
0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
|
|
4006
|
+
0x48, 0x04, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x19,
|
|
4007
|
+
0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52,
|
|
4008
|
+
0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x66, 0x77, 0x5f,
|
|
4009
|
+
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52,
|
|
4010
|
+
0x09, 0x66, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a,
|
|
4011
|
+
0x03, 0x63, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x03, 0x63, 0x70,
|
|
4012
|
+
0x65, 0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x66, 0x77, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x07,
|
|
4013
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x05, 0x66, 0x77, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01,
|
|
4014
|
+
0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x48, 0x09,
|
|
4015
|
+
0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x05, 0x70, 0x61, 0x74,
|
|
4016
|
+
0x63, 0x68, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
|
|
4111
4017
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74,
|
|
4112
|
-
0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
4113
|
-
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
0x0a,
|
|
4123
|
-
|
|
4124
|
-
0x65,
|
|
4125
|
-
0x0a,
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
0x0a,
|
|
4164
|
-
|
|
4165
|
-
0x12,
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
0x6f, 0x75, 0x74,
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4018
|
+
0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
4019
|
+
0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x50, 0x61, 0x74, 0x63, 0x68, 0x52, 0x05, 0x70,
|
|
4020
|
+
0x61, 0x74, 0x63, 0x68, 0x12, 0x58, 0x0a, 0x07, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x18,
|
|
4021
|
+
0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
4022
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
|
|
4023
|
+
0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77,
|
|
4024
|
+
0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49,
|
|
4025
|
+
0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x07, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x42, 0x05,
|
|
4026
|
+
0x0a, 0x03, 0x72, 0x61, 0x77, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08,
|
|
4027
|
+
0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d,
|
|
4028
|
+
0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a,
|
|
4029
|
+
0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x66, 0x77, 0x5f, 0x76,
|
|
4030
|
+
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x09,
|
|
4031
|
+
0x0a, 0x07, 0x5f, 0x66, 0x77, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61,
|
|
4032
|
+
0x6e, 0x6b, 0x22, 0xce, 0x02, 0x0a, 0x14, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67,
|
|
4033
|
+
0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x50, 0x61, 0x74, 0x63, 0x68, 0x12, 0x0e, 0x0a, 0x02, 0x69,
|
|
4034
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x74,
|
|
4035
|
+
0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x74, 0x79, 0x70,
|
|
4036
|
+
0x65, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f,
|
|
4037
|
+
0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
|
|
4038
|
+
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
|
|
4039
|
+
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x01, 0x52, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
4040
|
+
0x6c, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x69, 0x6e, 0x73, 0x74,
|
|
4041
|
+
0x61, 0x6c, 0x6c, 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x09,
|
|
4042
|
+
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a, 0x08,
|
|
4043
|
+
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03,
|
|
4044
|
+
0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a,
|
|
4045
|
+
0x14, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
|
|
4046
|
+
0x5f, 0x70, 0x61, 0x63, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x12, 0x77,
|
|
4047
|
+
0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x61, 0x63,
|
|
4048
|
+
0x6b, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0f, 0x0a,
|
|
4049
|
+
0x0d, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0d,
|
|
4050
|
+
0x0a, 0x0b, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x62, 0x79, 0x42, 0x0b, 0x0a,
|
|
4051
|
+
0x09, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x77,
|
|
4052
|
+
0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x70,
|
|
4053
|
+
0x61, 0x63, 0x6b, 0x22, 0xd4, 0x04, 0x0a, 0x1d, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52,
|
|
4054
|
+
0x61, 0x77, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65,
|
|
4055
|
+
0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
4056
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
4057
|
+
0x6e, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f,
|
|
4058
|
+
0x70, 0x61, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x0b, 0x73, 0x65,
|
|
4059
|
+
0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x61, 0x63, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05,
|
|
4060
|
+
0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x05, 0x62,
|
|
4061
|
+
0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69,
|
|
4062
|
+
0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52,
|
|
4063
|
+
0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4064
|
+
0x26, 0x0a, 0x0c, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
|
|
4065
|
+
0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4e, 0x75,
|
|
4066
|
+
0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75,
|
|
4067
|
+
0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x05, 0x52,
|
|
4068
|
+
0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4069
|
+
0x35, 0x0a, 0x14, 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x6e,
|
|
4070
|
+
0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48, 0x06, 0x52,
|
|
4071
|
+
0x12, 0x69, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
|
|
4072
|
+
0x6c, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x5f, 0x6f,
|
|
4073
|
+
0x66, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x48, 0x07,
|
|
4074
|
+
0x52, 0x0c, 0x70, 0x61, 0x72, 0x74, 0x4f, 0x66, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01,
|
|
4075
|
+
0x01, 0x12, 0x30, 0x0a, 0x12, 0x69, 0x73, 0x5f, 0x61, 0x7a, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x64,
|
|
4076
|
+
0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x48, 0x08, 0x52,
|
|
4077
|
+
0x0f, 0x69, 0x73, 0x41, 0x7a, 0x75, 0x72, 0x65, 0x41, 0x64, 0x4a, 0x6f, 0x69, 0x6e, 0x65, 0x64,
|
|
4078
|
+
0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0a,
|
|
4079
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01,
|
|
4080
|
+
0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a,
|
|
4081
|
+
0x0d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x42, 0x08,
|
|
4082
|
+
0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x76, 0x65, 0x72,
|
|
4083
|
+
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x62, 0x75,
|
|
4084
|
+
0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x70,
|
|
4085
|
+
0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f,
|
|
4086
|
+
0x69, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
|
|
4087
|
+
0x6c, 0x6c, 0x65, 0x72, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66,
|
|
4088
|
+
0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x69, 0x73, 0x5f, 0x61,
|
|
4089
|
+
0x7a, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x42, 0x0a,
|
|
4090
|
+
0x0a, 0x08, 0x5f, 0x6f, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x9c, 0x01, 0x0a, 0x11, 0x4e,
|
|
4091
|
+
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73,
|
|
4092
|
+
0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20,
|
|
4093
|
+
0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
4094
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
|
|
4095
|
+
0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x4d, 0x0a, 0x09, 0x69, 0x6e,
|
|
4096
|
+
0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e,
|
|
4097
|
+
0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64,
|
|
4098
|
+
0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65,
|
|
4099
|
+
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x52, 0x09,
|
|
4100
|
+
0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x22, 0xe8, 0x05, 0x0a, 0x10, 0x4e, 0x65,
|
|
4101
|
+
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x12, 0x12,
|
|
4102
|
+
0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
|
|
4103
|
+
0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
4104
|
+
0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x79,
|
|
4105
|
+
0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62, 0x54, 0x79, 0x70,
|
|
4106
|
+
0x65, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
|
|
4107
|
+
0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x6d, 0x61, 0x63, 0x18, 0x05, 0x20,
|
|
4108
|
+
0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x03, 0x6d, 0x61, 0x63, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a,
|
|
4109
|
+
0x0c, 0x64, 0x68, 0x63, 0x70, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x06, 0x20,
|
|
4110
|
+
0x01, 0x28, 0x08, 0x48, 0x02, 0x52, 0x0b, 0x64, 0x68, 0x63, 0x70, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
4111
|
+
0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x68, 0x63, 0x70, 0x5f, 0x73, 0x65,
|
|
4112
|
+
0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52,
|
|
4113
|
+
0x0c, 0x64, 0x68, 0x63, 0x70, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x70, 0x88, 0x01, 0x01,
|
|
4114
|
+
0x12, 0x3b, 0x0a, 0x02, 0x69, 0x70, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63,
|
|
4115
|
+
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
4116
|
+
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x65, 0x74,
|
|
4117
|
+
0x49, 0x70, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x02, 0x69, 0x70, 0x12, 0x22, 0x0a,
|
|
4118
|
+
0x0a, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x5f, 0x69, 0x70, 0x18, 0x09, 0x20, 0x01, 0x28,
|
|
4119
|
+
0x09, 0x48, 0x04, 0x52, 0x09, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x49, 0x70, 0x88, 0x01,
|
|
4120
|
+
0x01, 0x12, 0x24, 0x0a, 0x0b, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x5f, 0x6d, 0x61, 0x63,
|
|
4121
|
+
0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x0a, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61,
|
|
4122
|
+
0x79, 0x4d, 0x61, 0x63, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x6e, 0x73, 0x5f, 0x73,
|
|
4123
|
+
0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x64, 0x6e, 0x73,
|
|
4124
|
+
0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x6e, 0x73, 0x5f, 0x68, 0x6f,
|
|
4125
|
+
0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52,
|
|
4126
|
+
0x0b, 0x64, 0x6e, 0x73, 0x48, 0x6f, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4127
|
+
0x47, 0x0a, 0x1e, 0x64, 0x6e, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x73, 0x75,
|
|
4128
|
+
0x66, 0x66, 0x69, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x72, 0x64, 0x65,
|
|
4129
|
+
0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x1a, 0x64, 0x6e, 0x73, 0x44, 0x6f,
|
|
4130
|
+
0x6d, 0x61, 0x69, 0x6e, 0x53, 0x75, 0x66, 0x66, 0x69, 0x78, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
|
|
4131
|
+
0x4f, 0x72, 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76,
|
|
4132
|
+
0x69, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08,
|
|
4133
|
+
0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
|
4134
|
+
0x12, 0x28, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x70, 0x61, 0x74,
|
|
4135
|
+
0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0c, 0x64, 0x61, 0x74, 0x61, 0x62,
|
|
4136
|
+
0x61, 0x73, 0x65, 0x50, 0x61, 0x74, 0x68, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69,
|
|
4137
|
+
0x64, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x6d, 0x61, 0x63, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x68,
|
|
4138
|
+
0x63, 0x70, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x64,
|
|
4139
|
+
0x68, 0x63, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x70, 0x42, 0x0d, 0x0a,
|
|
4140
|
+
0x0b, 0x5f, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x5f, 0x69, 0x70, 0x42, 0x0e, 0x0a, 0x0c,
|
|
4141
|
+
0x5f, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x5f, 0x6d, 0x61, 0x63, 0x42, 0x10, 0x0a, 0x0e,
|
|
4142
|
+
0x5f, 0x64, 0x6e, 0x73, 0x5f, 0x68, 0x6f, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x21,
|
|
4143
|
+
0x0a, 0x1f, 0x5f, 0x64, 0x6e, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x73, 0x75,
|
|
4144
|
+
0x66, 0x66, 0x69, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x72, 0x64, 0x65,
|
|
4145
|
+
0x72, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x61,
|
|
4146
|
+
0x6d, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f,
|
|
4147
|
+
0x70, 0x61, 0x74, 0x68, 0x22, 0x36, 0x0a, 0x0c, 0x4e, 0x65, 0x74, 0x49, 0x70, 0x41, 0x64, 0x64,
|
|
4148
|
+
0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
4149
|
+
0x52, 0x02, 0x69, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x6e, 0x65, 0x74, 0x18, 0x02,
|
|
4150
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x75, 0x62, 0x6e, 0x65, 0x74, 0x22, 0x8e, 0x01, 0x0a,
|
|
4151
|
+
0x10, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
|
|
4152
|
+
0x79, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01,
|
|
4153
|
+
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
|
|
4154
|
+
0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
|
|
4155
|
+
0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x40, 0x0a, 0x07, 0x6d,
|
|
4156
|
+
0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63,
|
|
4157
|
+
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
4158
|
+
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x6f, 0x6e,
|
|
4159
|
+
0x69, 0x74, 0x6f, 0x72, 0x52, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x22, 0xe9, 0x02,
|
|
4160
|
+
0x0a, 0x07, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18,
|
|
4161
|
+
0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c,
|
|
4162
|
+
0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
4163
|
+
0x02, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x09,
|
|
4164
|
+
0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
4165
|
+
0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x64,
|
|
4166
|
+
0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d,
|
|
4167
|
+
0x6f, 0x64, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69,
|
|
4168
|
+
0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
4169
|
+
0x03, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88,
|
|
4170
|
+
0x01, 0x01, 0x12, 0x47, 0x0a, 0x11, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72,
|
|
4171
|
+
0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
|
|
4172
|
+
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
4173
|
+
0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x10, 0x6d, 0x61, 0x6e, 0x75, 0x66,
|
|
4174
|
+
0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x44, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, 0x07, 0x77,
|
|
4175
|
+
0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63,
|
|
4176
|
+
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
4177
|
+
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x69, 0x6e,
|
|
4178
|
+
0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e,
|
|
4179
|
+
0x66, 0x6f, 0x48, 0x00, 0x52, 0x07, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x42, 0x05, 0x0a,
|
|
4180
|
+
0x03, 0x72, 0x61, 0x77, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f,
|
|
4181
|
+
0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x65, 0x72, 0x69,
|
|
4182
|
+
0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xf8, 0x03, 0x0a, 0x15, 0x57, 0x69,
|
|
4183
|
+
0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49,
|
|
4184
|
+
0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01,
|
|
4185
|
+
0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x6e, 0x70,
|
|
4186
|
+
0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
4187
|
+
0x48, 0x00, 0x52, 0x0b, 0x70, 0x6e, 0x70, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x88,
|
|
4188
|
+
0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d,
|
|
4189
|
+
0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0c, 0x73, 0x65, 0x72,
|
|
4190
|
+
0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a,
|
|
4191
|
+
0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x68, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
|
|
4192
|
+
0x48, 0x02, 0x52, 0x09, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x48, 0x65, 0x78, 0x88, 0x01, 0x01,
|
|
4193
|
+
0x12, 0x30, 0x0a, 0x11, 0x76, 0x65, 0x73, 0x61, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63,
|
|
4194
|
+
0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x10, 0x76,
|
|
4195
|
+
0x65, 0x73, 0x61, 0x4d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x88,
|
|
4196
|
+
0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x6b, 0x65, 0x79, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61,
|
|
4197
|
+
0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0f,
|
|
4198
|
+
0x6b, 0x65, 0x79, 0x4d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x88,
|
|
4199
|
+
0x01, 0x01, 0x12, 0x4c, 0x0a, 0x11, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72,
|
|
4200
|
+
0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
|
|
4201
|
+
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
4202
|
+
0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x05, 0x52, 0x10, 0x6d, 0x61, 0x6e,
|
|
4203
|
+
0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01,
|
|
4204
|
+
0x12, 0x20, 0x0a, 0x09, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20,
|
|
4205
|
+
0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x64, 0x88,
|
|
4206
|
+
0x01, 0x01, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x6e, 0x70, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63,
|
|
4207
|
+
0x65, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f,
|
|
4208
|
+
0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61,
|
|
4209
|
+
0x6c, 0x5f, 0x68, 0x65, 0x78, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x76, 0x65, 0x73, 0x61, 0x5f, 0x6d,
|
|
4210
|
+
0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x42, 0x13, 0x0a, 0x11, 0x5f,
|
|
4211
|
+
0x6b, 0x65, 0x79, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72,
|
|
4212
|
+
0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65,
|
|
4213
|
+
0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63,
|
|
4214
|
+
0x65, 0x5f, 0x69, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x11, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72,
|
|
4215
|
+
0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69,
|
|
4216
|
+
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
|
|
4217
|
+
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
4218
|
+
0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73,
|
|
4219
|
+
0x74, 0x61, 0x6d, 0x70, 0x12, 0x43, 0x0a, 0x08, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
|
4220
|
+
0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
|
|
4221
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
|
|
4222
|
+
0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x52,
|
|
4223
|
+
0x08, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x22, 0xd3, 0x06, 0x0a, 0x08, 0x53, 0x6f,
|
|
4224
|
+
0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x01,
|
|
4225
|
+
0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12,
|
|
4226
|
+
0x1c, 0x0a, 0x07, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
|
|
4227
|
+
0x48, 0x01, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a,
|
|
4228
|
+
0x06, 0x63, 0x61, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52,
|
|
4229
|
+
0x05, 0x63, 0x61, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b,
|
|
4230
|
+
0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x06, 0x6d, 0x61,
|
|
4231
|
+
0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x05, 0x73, 0x77, 0x5f, 0x69, 0x64,
|
|
4232
|
+
0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x04, 0x73, 0x77, 0x49, 0x64, 0x88, 0x01,
|
|
4233
|
+
0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x06,
|
|
4234
|
+
0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
4235
|
+
0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
4236
|
+
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x74, 0x79, 0x70, 0x65, 0x4e, 0x61,
|
|
4237
|
+
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
|
|
4238
|
+
0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x07, 0x63, 0x61, 0x74, 0x4e, 0x61,
|
|
4239
|
+
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61,
|
|
4240
|
+
0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65,
|
|
4241
|
+
0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
4242
|
+
0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
|
4243
|
+
0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28,
|
|
4244
|
+
0x09, 0x48, 0x0a, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12,
|
|
4245
|
+
0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x18, 0x0c, 0x20,
|
|
4246
|
+
0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x09, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x56, 0x65, 0x72,
|
|
4247
|
+
0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0d,
|
|
4248
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x07, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x88,
|
|
4249
|
+
0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28,
|
|
4250
|
+
0x09, 0x48, 0x0d, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a,
|
|
4251
|
+
0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x04, 0x61,
|
|
4252
|
+
0x72, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6c, 0x61, 0x6e, 0x67, 0x18, 0x15,
|
|
4253
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x04, 0x6c, 0x61, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x12,
|
|
4254
|
+
0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x03,
|
|
4255
|
+
0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x18, 0x11, 0x20,
|
|
4256
|
+
0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
4257
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
|
|
4258
|
+
0x2e, 0x76, 0x31, 0x2e, 0x52, 0x61, 0x77, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x52,
|
|
4259
|
+
0x03, 0x72, 0x61, 0x77, 0x12, 0x1e, 0x0a, 0x08, 0x72, 0x61, 0x77, 0x5f, 0x68, 0x61, 0x73, 0x68,
|
|
4260
|
+
0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x07, 0x72, 0x61, 0x77, 0x48, 0x61, 0x73,
|
|
4261
|
+
0x68, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6e, 0x72, 0x65, 0x5f, 0x68, 0x61, 0x73, 0x68,
|
|
4262
|
+
0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x07, 0x6e, 0x72, 0x65, 0x48, 0x61, 0x73,
|
|
4263
|
+
0x68, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x42, 0x0a, 0x0a,
|
|
4264
|
+
0x08, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x61,
|
|
4265
|
+
0x74, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64,
|
|
4266
|
+
0x42, 0x08, 0x0a, 0x06, 0x5f, 0x73, 0x77, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70,
|
|
4267
|
+
0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x74, 0x79, 0x70,
|
|
4268
|
+
0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x74, 0x5f, 0x6e,
|
|
4269
|
+
0x61, 0x6d, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
|
|
4270
|
+
0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76,
|
|
4271
|
+
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65,
|
|
4272
|
+
0x74, 0x5f, 0x76, 0x65, 0x72, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f,
|
|
4273
|
+
0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f,
|
|
4274
|
+
0x61, 0x72, 0x63, 0x68, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x42, 0x06, 0x0a,
|
|
4275
|
+
0x04, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x72, 0x61, 0x77, 0x5f, 0x68, 0x61,
|
|
4276
|
+
0x73, 0x68, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x72, 0x65, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x22,
|
|
4277
|
+
0xd5, 0x03, 0x0a, 0x0b, 0x52, 0x61, 0x77, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x12,
|
|
4278
|
+
0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
|
|
4279
|
+
0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x06, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x02, 0x20,
|
|
4280
|
+
0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x88, 0x01, 0x01,
|
|
4281
|
+
0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
4282
|
+
0x09, 0x48, 0x01, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12,
|
|
4283
|
+
0x17, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52,
|
|
4284
|
+
0x04, 0x69, 0x6e, 0x66, 0x6f, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x78, 0x65, 0x5f,
|
|
4285
|
+
0x70, 0x61, 0x74, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x07, 0x65, 0x78,
|
|
4286
|
+
0x65, 0x50, 0x61, 0x74, 0x68, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x61, 0x72, 0x63, 0x68,
|
|
4287
|
+
0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x04, 0x61, 0x72, 0x63, 0x68, 0x88, 0x01,
|
|
4288
|
+
0x01, 0x12, 0x42, 0x0a, 0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74,
|
|
4289
|
+
0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
|
|
4290
|
+
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
|
|
4291
|
+
0x61, 0x6d, 0x70, 0x48, 0x05, 0x52, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61,
|
|
4292
|
+
0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f,
|
|
4293
|
+
0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x0a, 0x73, 0x6f,
|
|
4294
|
+
0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x05, 0x73,
|
|
4295
|
+
0x77, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x04, 0x73, 0x77,
|
|
4296
|
+
0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x69, 0x73, 0x5f, 0x63, 0x75, 0x72, 0x72,
|
|
4297
|
+
0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x08,
|
|
4298
|
+
0x52, 0x0d, 0x69, 0x73, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x88,
|
|
4299
|
+
0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x0a, 0x0a,
|
|
4300
|
+
0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x69, 0x6e,
|
|
4301
|
+
0x66, 0x6f, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x78, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x42,
|
|
4302
|
+
0x07, 0x0a, 0x05, 0x5f, 0x61, 0x72, 0x63, 0x68, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x69, 0x6e, 0x73,
|
|
4303
|
+
0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x6f,
|
|
4304
|
+
0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x73, 0x77,
|
|
4305
|
+
0x5f, 0x69, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x69, 0x73, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65,
|
|
4306
|
+
0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x22, 0x95, 0x0e, 0x0a, 0x0c, 0x43, 0x61, 0x74, 0x61,
|
|
4307
|
+
0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
|
|
4308
|
+
0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65,
|
|
4309
|
+
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61, 0x6b,
|
|
4310
|
+
0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f,
|
|
4311
|
+
0x69, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65,
|
|
4312
|
+
0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f,
|
|
4313
|
+
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
|
|
4314
|
+
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
4315
|
+
0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x01, 0x52,
|
|
4316
|
+
0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88,
|
|
4317
|
+
0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f,
|
|
4318
|
+
0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0b, 0x63, 0x6f, 0x75, 0x6e,
|
|
4319
|
+
0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c, 0x6f,
|
|
4320
|
+
0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x07, 0x20, 0x01,
|
|
4321
|
+
0x28, 0x09, 0x48, 0x03, 0x52, 0x0c, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55,
|
|
4322
|
+
0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f,
|
|
4323
|
+
0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
4324
|
+
0x04, 0x52, 0x0e, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72,
|
|
4325
|
+
0x6c, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69,
|
|
4326
|
+
0x61, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x0b, 0x77, 0x69,
|
|
4327
|
+
0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13,
|
|
4328
|
+
0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63,
|
|
4329
|
+
0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x11, 0x77, 0x69, 0x6b,
|
|
4330
|
+
0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01,
|
|
4331
|
+
0x01, 0x12, 0x24, 0x0a, 0x0b, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c,
|
|
4332
|
+
0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74,
|
|
4333
|
+
0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f,
|
|
4334
|
+
0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x0a,
|
|
4335
|
+
0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a,
|
|
4336
|
+
0x0d, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0d,
|
|
4337
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50,
|
|
4338
|
+
0x68, 0x6f, 0x6e, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65, 0x62,
|
|
4339
|
+
0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28,
|
|
4340
|
+
0x09, 0x48, 0x0a, 0x52, 0x0f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63, 0x63,
|
|
4341
|
+
0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74, 0x74,
|
|
4342
|
+
0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09,
|
|
4343
|
+
0x48, 0x0b, 0x52, 0x0e, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
4344
|
+
0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74,
|
|
4345
|
+
0x79, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0b, 0x77,
|
|
4346
|
+
0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a,
|
|
4347
|
+
0x13, 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
|
|
4348
|
+
0x5f, 0x75, 0x72, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x11, 0x77, 0x61,
|
|
4349
|
+
0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x6c, 0x88,
|
|
4350
|
+
0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x5f,
|
|
4351
|
+
0x75, 0x72, 0x6c, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x0c, 0x63, 0x6f, 0x6d,
|
|
4352
|
+
0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10,
|
|
4353
|
+
0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
4354
|
+
0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x0f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64,
|
|
4355
|
+
0x69, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11,
|
|
4356
|
+
0x69, 0x6e, 0x73, 0x74, 0x61, 0x67, 0x72, 0x61, 0x6d, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
4357
|
+
0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x10, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
4358
|
+
0x67, 0x72, 0x61, 0x6d, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2c,
|
|
4359
|
+
0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
4360
|
+
0x74, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75,
|
|
4361
|
+
0x62, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11,
|
|
4260
4362
|
0x70, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
4261
|
-
0x74,
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
0x73,
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
0x01,
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
0x61,
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4363
|
+
0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x10, 0x70, 0x69, 0x6e, 0x74, 0x65,
|
|
4364
|
+
0x72, 0x65, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2a,
|
|
4365
|
+
0x0a, 0x0e, 0x74, 0x69, 0x6b, 0x74, 0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
4366
|
+
0x18, 0x1f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x13, 0x52, 0x0d, 0x74, 0x69, 0x6b, 0x74, 0x6f, 0x6b,
|
|
4367
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x63, 0x6c,
|
|
4368
|
+
0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x18, 0x19, 0x20, 0x01,
|
|
4369
|
+
0x28, 0x08, 0x48, 0x14, 0x52, 0x0d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x48, 0x61, 0x72, 0x64, 0x77,
|
|
4370
|
+
0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f,
|
|
4371
|
+
0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x15,
|
|
4372
|
+
0x52, 0x0d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x88,
|
|
4373
|
+
0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x73,
|
|
4374
|
+
0x75, 0x6d, 0x65, 0x72, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x16, 0x52, 0x0d, 0x63, 0x6c,
|
|
4375
|
+
0x61, 0x73, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x2e,
|
|
4376
|
+
0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69,
|
|
4377
|
+
0x73, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x08, 0x48, 0x17, 0x52, 0x0f, 0x63, 0x6c, 0x61, 0x73,
|
|
4378
|
+
0x73, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e,
|
|
4379
|
+
0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69,
|
|
4380
|
+
0x61, 0x6c, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x08, 0x48, 0x18, 0x52, 0x0f, 0x63, 0x6c, 0x61, 0x73,
|
|
4381
|
+
0x73, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2e,
|
|
4382
|
+
0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75,
|
|
4383
|
+
0x61, 0x6c, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x08, 0x48, 0x19, 0x52, 0x0f, 0x63, 0x6c, 0x61, 0x73,
|
|
4384
|
+
0x73, 0x49, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x24,
|
|
4385
|
+
0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x13, 0x20,
|
|
4386
|
+
0x01, 0x28, 0x05, 0x48, 0x1a, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72,
|
|
4387
|
+
0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f,
|
|
4388
|
+
0x69, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61,
|
|
4389
|
+
0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x63, 0x6f, 0x75, 0x6e,
|
|
4390
|
+
0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6c, 0x6f, 0x67,
|
|
4391
|
+
0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x13, 0x0a, 0x11, 0x5f,
|
|
4392
|
+
0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c,
|
|
4393
|
+
0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x69,
|
|
4394
|
+
0x64, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f,
|
|
4395
|
+
0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x77, 0x65,
|
|
4396
|
+
0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x75,
|
|
4397
|
+
0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x75,
|
|
4398
|
+
0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f,
|
|
4399
|
+
0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
4400
|
+
0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63,
|
|
4401
|
+
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74,
|
|
4402
|
+
0x79, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e,
|
|
4403
|
+
0x74, 0x79, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x10, 0x0a,
|
|
4404
|
+
0x0e, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x42,
|
|
4405
|
+
0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63,
|
|
4406
|
+
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x67, 0x72,
|
|
4407
|
+
0x61, 0x6d, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x79,
|
|
4408
|
+
0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x14,
|
|
4409
|
+
0x0a, 0x12, 0x5f, 0x70, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63,
|
|
4410
|
+
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x74, 0x69, 0x6b, 0x74, 0x6f, 0x6b, 0x5f,
|
|
4411
|
+
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x6c, 0x61, 0x73,
|
|
4412
|
+
0x73, 0x5f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63,
|
|
4413
|
+
0x6c, 0x61, 0x73, 0x73, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x42, 0x11, 0x0a,
|
|
4414
|
+
0x0f, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72,
|
|
4415
|
+
0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x65, 0x6e, 0x74, 0x65, 0x72,
|
|
4416
|
+
0x70, 0x72, 0x69, 0x73, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f,
|
|
4417
|
+
0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63,
|
|
4418
|
+
0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c, 0x42,
|
|
4419
|
+
0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22,
|
|
4420
|
+
0x85, 0x0b, 0x0a, 0x0c, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
|
|
4421
|
+
0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
|
|
4422
|
+
0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
4423
|
+
0x03, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x65, 0x76,
|
|
4424
|
+
0x69, 0x63, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
4425
|
+
0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x29, 0x0a, 0x0e,
|
|
4426
|
+
0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05,
|
|
4427
|
+
0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x0c, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79,
|
|
4428
|
+
0x70, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x11, 0x64, 0x65, 0x76, 0x69, 0x63,
|
|
4429
|
+
0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x03,
|
|
4430
|
+
0x28, 0x09, 0x52, 0x0f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x43,
|
|
4431
|
+
0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64,
|
|
4432
|
+
0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
4433
|
+
0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69,
|
|
4434
|
+
0x6c, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61,
|
|
4435
|
+
0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, 0x61,
|
|
4436
|
+
0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x09, 0x6d,
|
|
4437
|
+
0x61, 0x6e, 0x75, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x66,
|
|
4438
|
+
0x61, 0x71, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x06,
|
|
4439
|
+
0x66, 0x61, 0x71, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x0c, 0x72, 0x65, 0x6c,
|
|
4440
|
+
0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
4441
|
+
0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
|
|
4442
|
+
0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x05, 0x52, 0x0b, 0x72,
|
|
4443
|
+
0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a,
|
|
4444
|
+
0x09, 0x64, 0x69, 0x73, 0x63, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b,
|
|
4445
|
+
0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
4446
|
+
0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x06, 0x52, 0x08,
|
|
4447
|
+
0x64, 0x69, 0x73, 0x63, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x08, 0x65,
|
|
4448
|
+
0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
|
|
4449
|
+
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
4450
|
+
0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x07, 0x52, 0x07, 0x65, 0x6f, 0x73,
|
|
4451
|
+
0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63,
|
|
4452
|
+
0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x1d,
|
|
4453
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x12, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65,
|
|
4454
|
+
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a,
|
|
4455
|
+
0x0b, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x18, 0x20, 0x01,
|
|
4456
|
+
0x28, 0x09, 0x48, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73,
|
|
4457
|
+
0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63,
|
|
4458
|
+
0x6c, 0x61, 0x73, 0x73, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x0c, 0x70, 0x72,
|
|
4459
|
+
0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a,
|
|
4460
|
+
0x0f, 0x73, 0x68, 0x5f, 0x69, 0x66, 0x74, 0x74, 0x74, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
|
|
4461
|
+
0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x0d, 0x73, 0x68, 0x49, 0x66, 0x74, 0x74,
|
|
4462
|
+
0x74, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x13, 0x73, 0x68,
|
|
4463
|
+
0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x5f, 0x6c, 0x61, 0x6e, 0x67,
|
|
4464
|
+
0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x73, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
|
|
4465
|
+
0x65, 0x41, 0x73, 0x73, 0x4c, 0x61, 0x6e, 0x67, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x68, 0x5f,
|
|
4466
|
+
0x61, 0x6c, 0x65, 0x78, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x73, 0x18, 0x13, 0x20, 0x03, 0x28,
|
|
4467
|
+
0x09, 0x52, 0x0c, 0x73, 0x68, 0x41, 0x6c, 0x65, 0x78, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x73, 0x12,
|
|
4468
|
+
0x29, 0x0a, 0x0e, 0x73, 0x68, 0x5f, 0x68, 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c,
|
|
4469
|
+
0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0c, 0x73, 0x68, 0x48, 0x61, 0x73,
|
|
4470
|
+
0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x11, 0x73, 0x68,
|
|
4471
|
+
0x5f, 0x61, 0x70, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x18,
|
|
4472
|
+
0x15, 0x20, 0x01, 0x28, 0x08, 0x48, 0x0d, 0x52, 0x0e, 0x73, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x65,
|
|
4473
|
+
0x48, 0x6f, 0x6d, 0x65, 0x4b, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x12, 0x73, 0x68,
|
|
4474
|
+
0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x68, 0x61, 0x62, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
|
|
4475
|
+
0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x0f, 0x73, 0x68, 0x4f, 0x70, 0x65, 0x6e,
|
|
4476
|
+
0x48, 0x61, 0x62, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08,
|
|
4477
|
+
0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f,
|
|
4478
|
+
0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x23, 0x0a, 0x0a,
|
|
4479
|
+
0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x18, 0x17, 0x20, 0x01, 0x28, 0x05,
|
|
4480
|
+
0x48, 0x10, 0x52, 0x0a, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x88, 0x01,
|
|
4481
|
+
0x01, 0x12, 0x49, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
4482
|
+
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
|
|
4483
|
+
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
|
|
4484
|
+
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x11, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55,
|
|
4485
|
+
0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b,
|
|
4486
|
+
0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28,
|
|
4487
|
+
0x05, 0x48, 0x12, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88,
|
|
4488
|
+
0x01, 0x01, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79,
|
|
4489
|
+
0x70, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
4490
|
+
0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c,
|
|
4491
|
+
0x79, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c,
|
|
4492
|
+
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x66, 0x61, 0x71, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d,
|
|
4493
|
+
0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a,
|
|
4494
|
+
0x0a, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f,
|
|
4495
|
+
0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x66,
|
|
4496
|
+
0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65,
|
|
4497
|
+
0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73,
|
|
4498
|
+
0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6c, 0x61,
|
|
4499
|
+
0x73, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x73, 0x68, 0x5f, 0x69, 0x66, 0x74, 0x74, 0x74, 0x5f,
|
|
4500
|
+
0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x73, 0x68, 0x5f, 0x68, 0x61,
|
|
4501
|
+
0x73, 0x73, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x73, 0x68,
|
|
4502
|
+
0x5f, 0x61, 0x70, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x42,
|
|
4503
|
+
0x15, 0x0a, 0x13, 0x5f, 0x73, 0x68, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x68, 0x61, 0x62, 0x5f,
|
|
4504
|
+
0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x69, 0x73, 0x74, 0x5f,
|
|
4505
|
+
0x63, 0x70, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69,
|
|
4506
|
+
0x74, 0x79, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61,
|
|
4507
|
+
0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63,
|
|
4508
|
+
0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0xe0, 0x0b, 0x0a, 0x09, 0x43, 0x61, 0x74, 0x61,
|
|
4509
|
+
0x6c, 0x6f, 0x67, 0x4f, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
4510
|
+
0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
4511
|
+
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22,
|
|
4512
|
+
0x0a, 0x0a, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
|
|
4513
|
+
0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88,
|
|
4514
|
+
0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x0c,
|
|
4515
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x07, 0x6f, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x88,
|
|
4516
|
+
0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
4517
|
+
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0d, 0x6f,
|
|
4518
|
+
0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4519
|
+
0x24, 0x0a, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06,
|
|
4520
|
+
0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x0a, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65,
|
|
4521
|
+
0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64,
|
|
4522
|
+
0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64,
|
|
4523
|
+
0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
|
|
4524
|
+
0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
|
|
4525
|
+
0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65,
|
|
4526
|
+
0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
|
|
4527
|
+
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
|
|
4528
|
+
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x06, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65, 0x61,
|
|
4529
|
+
0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x08, 0x65, 0x6f, 0x6c,
|
|
4530
|
+
0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
|
|
4531
|
+
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
|
|
4532
|
+
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x07, 0x52, 0x07, 0x65, 0x6f, 0x6c, 0x44, 0x61,
|
|
4533
|
+
0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x08, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74,
|
|
4534
|
+
0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
|
|
4535
|
+
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
|
|
4536
|
+
0x61, 0x6d, 0x70, 0x48, 0x08, 0x52, 0x07, 0x65, 0x6f, 0x73, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01,
|
|
4537
|
+
0x01, 0x12, 0x3c, 0x0a, 0x09, 0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x19,
|
|
4538
|
+
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
|
|
4539
|
+
0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
|
|
4540
|
+
0x48, 0x09, 0x52, 0x08, 0x65, 0x6f, 0x73, 0x78, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4541
|
+
0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
|
|
4542
|
+
0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x12,
|
|
4543
|
+
0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e,
|
|
4544
|
+
0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d,
|
|
4545
|
+
0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52,
|
|
4546
|
+
0x0c, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01,
|
|
4547
|
+
0x12, 0x2d, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
|
|
4548
|
+
0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0e, 0x62, 0x61,
|
|
4549
|
+
0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12,
|
|
4550
|
+
0x26, 0x0a, 0x0c, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x69, 0x64, 0x18,
|
|
4551
|
+
0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x0b, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64,
|
|
4552
|
+
0x69, 0x61, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13, 0x77, 0x69, 0x6b, 0x69, 0x70,
|
|
4553
|
+
0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x10,
|
|
4554
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x11, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69,
|
|
4555
|
+
0x61, 0x4c, 0x61, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b,
|
|
4556
|
+
0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28,
|
|
4557
|
+
0x09, 0x48, 0x0f, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x55, 0x72, 0x6c, 0x88,
|
|
4558
|
+
0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72,
|
|
4559
|
+
0x6c, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x0a, 0x73, 0x75, 0x70, 0x70, 0x6f,
|
|
4560
|
+
0x72, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x75, 0x70, 0x70,
|
|
4561
|
+
0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
4562
|
+
0x11, 0x52, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x88,
|
|
4563
|
+
0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61,
|
|
4564
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x0f,
|
|
4565
|
+
0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88,
|
|
4566
|
+
0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x63,
|
|
4567
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x13, 0x52, 0x0e, 0x74,
|
|
4568
|
+
0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01,
|
|
4569
|
+
0x12, 0x1e, 0x0a, 0x08, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x17, 0x20, 0x01,
|
|
4570
|
+
0x28, 0x09, 0x48, 0x14, 0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01,
|
|
4571
|
+
0x12, 0x49, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
|
|
4572
|
+
0x74, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
|
|
4573
|
+
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
|
|
4574
|
+
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x15, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70,
|
|
4575
|
+
0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6d,
|
|
4576
|
+
0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x05,
|
|
4577
|
+
0x48, 0x16, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01,
|
|
4578
|
+
0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
4579
|
+
0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x12, 0x0a,
|
|
4580
|
+
0x10, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d,
|
|
4581
|
+
0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69,
|
|
4582
|
+
0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a,
|
|
4583
|
+
0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f,
|
|
4584
|
+
0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09,
|
|
4585
|
+
0x5f, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6f,
|
|
4586
|
+
0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x65, 0x6f, 0x73, 0x78, 0x5f,
|
|
4587
|
+
0x64, 0x61, 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c,
|
|
4588
|
+
0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x11, 0x0a, 0x0f,
|
|
4589
|
+
0x5f, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42,
|
|
4590
|
+
0x13, 0x0a, 0x11, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
|
|
4591
|
+
0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64,
|
|
4592
|
+
0x69, 0x61, 0x5f, 0x69, 0x64, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65,
|
|
4593
|
+
0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x0e, 0x0a,
|
|
4594
|
+
0x0c, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0e, 0x0a,
|
|
4595
|
+
0x0c, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x10, 0x0a,
|
|
4596
|
+
0x0e, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x42,
|
|
4597
|
+
0x13, 0x0a, 0x11, 0x5f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63,
|
|
4598
|
+
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72,
|
|
4599
|
+
0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x69, 0x73,
|
|
4600
|
+
0x74, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75,
|
|
4601
|
+
0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d,
|
|
4602
|
+
0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0xed, 0x09, 0x0a, 0x0f, 0x43,
|
|
4603
|
+
0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x12, 0x0e,
|
|
4604
|
+
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17,
|
|
4605
|
+
0x0a, 0x07, 0x73, 0x77, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
4606
|
+
0x06, 0x73, 0x77, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x77, 0x5f, 0x76, 0x65,
|
|
4607
|
+
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x73,
|
|
4608
|
+
0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0d, 0x73,
|
|
4609
|
+
0x77, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
|
|
4610
|
+
0x28, 0x09, 0x48, 0x01, 0x52, 0x0b, 0x73, 0x77, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x56, 0x65,
|
|
4611
|
+
0x72, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x77, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69,
|
|
4612
|
+
0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x09, 0x73, 0x77, 0x45, 0x64,
|
|
4613
|
+
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x73, 0x77, 0x5f, 0x6c,
|
|
4614
|
+
0x61, 0x6e, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x06, 0x73, 0x77, 0x4c,
|
|
4615
|
+
0x61, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x73, 0x77, 0x5f, 0x62, 0x75, 0x69,
|
|
4616
|
+
0x6c, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x07, 0x73, 0x77, 0x42, 0x75,
|
|
4617
|
+
0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69,
|
|
4618
|
+
0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49,
|
|
4619
|
+
0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69,
|
|
4620
|
+
0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
|
|
4621
|
+
0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74,
|
|
4622
|
+
0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x08, 0x6c, 0x61, 0x74,
|
|
4623
|
+
0x65, 0x73, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x73, 0x77, 0x5f, 0x74,
|
|
4624
|
+
0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x06, 0x73, 0x77, 0x54,
|
|
4625
|
+
0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x77, 0x5f, 0x63, 0x61, 0x74,
|
|
4626
|
+
0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0a, 0x73,
|
|
4627
|
+
0x77, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x0c,
|
|
4628
|
+
0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0d, 0x20, 0x01,
|
|
4629
|
+
0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
4630
|
+
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x0a,
|
|
4631
|
+
0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01,
|
|
4632
|
+
0x12, 0x3a, 0x0a, 0x08, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0e, 0x20, 0x01,
|
|
4633
|
+
0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
4634
|
+
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x0b,
|
|
4635
|
+
0x52, 0x07, 0x65, 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x08,
|
|
4636
|
+
0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
|
|
4637
|
+
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
|
4638
|
+
0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x0c, 0x52, 0x07, 0x65, 0x6f,
|
|
4639
|
+
0x73, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x09, 0x65, 0x6f, 0x73, 0x78,
|
|
4640
|
+
0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
|
|
4641
|
+
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
|
|
4642
|
+
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48, 0x0d, 0x52, 0x08, 0x65, 0x6f, 0x73, 0x78, 0x44,
|
|
4643
|
+
0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79,
|
|
4644
|
+
0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x11, 0x20,
|
|
4645
|
+
0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x12, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x43,
|
|
4646
|
+
0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b,
|
|
4647
|
+
0x66, 0x6c, 0x61, 0x67, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x18, 0x12, 0x20, 0x01, 0x28,
|
|
4648
|
+
0x08, 0x48, 0x0f, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x67, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x88,
|
|
4649
|
+
0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x77, 0x69, 0x64, 0x65, 0x73,
|
|
4650
|
+
0x70, 0x72, 0x65, 0x61, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x08, 0x48, 0x10, 0x52, 0x0e, 0x66,
|
|
4651
|
+
0x6c, 0x61, 0x67, 0x57, 0x69, 0x64, 0x65, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64, 0x88, 0x01, 0x01,
|
|
4652
|
+
0x12, 0x2c, 0x0a, 0x0f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61,
|
|
4653
|
+
0x74, 0x65, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x08, 0x48, 0x11, 0x52, 0x0e, 0x66, 0x6c, 0x61,
|
|
4654
|
+
0x67, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x49,
|
|
4655
|
+
0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69,
|
|
4656
|
+
0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
|
|
4657
|
+
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
|
|
4658
|
+
0x74, 0x61, 0x6d, 0x70, 0x48, 0x12, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61,
|
|
4329
4659
|
0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74,
|
|
4330
|
-
0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18,
|
|
4660
|
+
0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x64, 0x20, 0x01, 0x28, 0x05, 0x48, 0x13,
|
|
4331
4661
|
0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42,
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
0x42,
|
|
4335
|
-
0x0a,
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
0x69,
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
0x0c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x10, 0x0a,
|
|
4342
|
-
0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42,
|
|
4343
|
-
0x12, 0x0a, 0x10, 0x5f, 0x73, 0x68, 0x5f, 0x69, 0x66, 0x74, 0x74, 0x74, 0x5f, 0x68, 0x61, 0x6e,
|
|
4344
|
-
0x64, 0x6c, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x73, 0x68, 0x5f, 0x68, 0x61, 0x73, 0x73, 0x5f,
|
|
4345
|
-
0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x73, 0x68, 0x5f, 0x61, 0x70,
|
|
4346
|
-
0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x42, 0x15, 0x0a, 0x13,
|
|
4347
|
-
0x5f, 0x73, 0x68, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x68, 0x61, 0x62, 0x5f, 0x68, 0x61, 0x6e,
|
|
4348
|
-
0x64, 0x6c, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65,
|
|
4349
|
-
0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x42,
|
|
4350
|
-
0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
|
|
4351
|
-
0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73,
|
|
4352
|
-
0x63, 0x6f, 0x72, 0x65, 0x22, 0xd4, 0x0a, 0x0a, 0x09, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67,
|
|
4353
|
-
0x4f, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
|
|
4354
|
-
0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
|
|
4355
|
-
0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x6f,
|
|
4356
|
-
0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
4357
|
-
0x00, 0x52, 0x09, 0x6f, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12,
|
|
4358
|
-
0x1e, 0x0a, 0x08, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28,
|
|
4359
|
-
0x09, 0x48, 0x01, 0x52, 0x07, 0x6f, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
4360
|
-
0x2b, 0x0a, 0x0f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61,
|
|
4361
|
-
0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0d, 0x6f, 0x73, 0x56, 0x65,
|
|
4362
|
-
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b,
|
|
4363
|
-
0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
4364
|
-
0x03, 0x48, 0x03, 0x52, 0x0a, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x49, 0x64, 0x88,
|
|
4365
|
-
0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20,
|
|
4366
|
-
0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01,
|
|
4367
|
-
0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20,
|
|
4368
|
-
0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88,
|
|
4369
|
-
0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61,
|
|
4370
|
-
0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65,
|
|
4371
|
-
0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f,
|
|
4372
|
-
0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x07,
|
|
4373
|
-
0x65, 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f,
|
|
4374
|
-
0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x03, 0x48, 0x08, 0x52, 0x07,
|
|
4375
|
-
0x65, 0x6f, 0x73, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x65, 0x6f,
|
|
4376
|
-
0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x03, 0x48, 0x09, 0x52,
|
|
4377
|
-
0x08, 0x65, 0x6f, 0x73, 0x78, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13,
|
|
4378
|
-
0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65,
|
|
4379
|
-
0x6e, 0x63, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x12, 0x6c, 0x69, 0x66,
|
|
4380
|
-
0x65, 0x63, 0x79, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x88,
|
|
4381
|
-
0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
|
|
4382
|
-
0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x0c, 0x6c, 0x6f,
|
|
4383
|
-
0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a,
|
|
4384
|
-
0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72,
|
|
4385
|
-
0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0e, 0x62, 0x61, 0x6e, 0x6e, 0x65,
|
|
4386
|
-
0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c,
|
|
4387
|
-
0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01,
|
|
4388
|
-
0x28, 0x09, 0x48, 0x0d, 0x52, 0x0b, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x49,
|
|
4389
|
-
0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69,
|
|
4390
|
-
0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28,
|
|
4391
|
-
0x09, 0x48, 0x0e, 0x52, 0x11, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x4c, 0x61,
|
|
4392
|
-
0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x77, 0x65, 0x62,
|
|
4393
|
-
0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f,
|
|
4394
|
-
0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12,
|
|
4395
|
-
0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x12,
|
|
4396
|
-
0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x0a, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x55,
|
|
4397
|
-
0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74,
|
|
4398
|
-
0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x0c,
|
|
4399
|
-
0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4400
|
-
0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f,
|
|
4401
|
-
0x75, 0x6e, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x0f, 0x66, 0x61, 0x63,
|
|
4402
|
-
0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12,
|
|
4403
|
-
0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
|
4404
|
-
0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x13, 0x52, 0x0e, 0x74, 0x77, 0x69, 0x74,
|
|
4405
|
-
0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a,
|
|
4406
|
-
0x08, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
4407
|
-
0x14, 0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a,
|
|
4408
|
-
0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
|
|
4409
|
-
0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x15, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55,
|
|
4410
|
-
0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b,
|
|
4411
|
-
0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28,
|
|
4412
|
-
0x05, 0x48, 0x16, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88,
|
|
4413
|
-
0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
4414
|
-
0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x12,
|
|
4415
|
-
0x0a, 0x10, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61,
|
|
4416
|
-
0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f,
|
|
4417
|
-
0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c,
|
|
4418
|
-
0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0f, 0x0a, 0x0d,
|
|
4662
|
+
0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x10,
|
|
4663
|
+
0x0a, 0x0e, 0x5f, 0x73, 0x77, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72,
|
|
4664
|
+
0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x77, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x42,
|
|
4665
|
+
0x0a, 0x0a, 0x08, 0x5f, 0x73, 0x77, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x42, 0x0b, 0x0a, 0x09, 0x5f,
|
|
4666
|
+
0x73, 0x77, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b,
|
|
4667
|
+
0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f,
|
|
4668
|
+
0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64,
|
|
4669
|
+
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x73, 0x77, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0e, 0x0a, 0x0c,
|
|
4670
|
+
0x5f, 0x73, 0x77, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x0f, 0x0a, 0x0d,
|
|
4419
4671
|
0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a,
|
|
4420
4672
|
0x09, 0x5f, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65,
|
|
4421
4673
|
0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x65, 0x6f, 0x73, 0x78,
|
|
4422
4674
|
0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79,
|
|
4423
|
-
0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x42,
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
0x74,
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
0x20, 0x01, 0x28, 0x09, 0x48,
|
|
4474
|
-
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
0x88, 0x01, 0x01, 0x12,
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
0x61,
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
0x12,
|
|
4528
|
-
|
|
4529
|
-
0x65,
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
0x20, 0x01, 0x28,
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
0x65,
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
0x5f,
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
0x01, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x18, 0x26,
|
|
4596
|
-
0x20, 0x01, 0x28, 0x01, 0x48, 0x22, 0x52, 0x08, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x41,
|
|
4597
|
-
0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x61,
|
|
4598
|
-
0x69, 0x6f, 0x18, 0x27, 0x20, 0x01, 0x28, 0x08, 0x48, 0x23, 0x52, 0x0a, 0x66, 0x65, 0x61, 0x74,
|
|
4599
|
-
0x75, 0x72, 0x65, 0x41, 0x69, 0x6f, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x66, 0x65, 0x61,
|
|
4600
|
-
0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x18, 0x28, 0x20, 0x01, 0x28,
|
|
4601
|
-
0x08, 0x48, 0x24, 0x52, 0x0d, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x43, 0x61, 0x6d, 0x65,
|
|
4602
|
-
0x72, 0x61, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4603
|
-
0x5f, 0x73, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x18, 0x29, 0x20, 0x01, 0x28, 0x08, 0x48,
|
|
4604
|
-
0x25, 0x52, 0x0f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x70, 0x65, 0x61, 0x6b, 0x65,
|
|
4605
|
-
0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4606
|
-
0x5f, 0x68, 0x64, 0x6d, 0x69, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x26, 0x52, 0x0b, 0x66,
|
|
4607
|
-
0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x48, 0x64, 0x6d, 0x69, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a,
|
|
4608
|
-
0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x74, 0x68, 0x18, 0x2b, 0x20, 0x01,
|
|
4609
|
-
0x28, 0x08, 0x48, 0x27, 0x52, 0x0a, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x45, 0x74, 0x68,
|
|
4610
|
-
0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x70,
|
|
4611
|
-
0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x08, 0x48, 0x28, 0x52,
|
|
4612
|
-
0x0f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74,
|
|
4613
|
-
0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63,
|
|
4614
|
-
0x75, 0x72, 0x76, 0x65, 0x64, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x08, 0x48, 0x29, 0x52, 0x0d, 0x66,
|
|
4615
|
-
0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x43, 0x75, 0x72, 0x76, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
4616
|
-
0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74,
|
|
4617
|
-
0x69, 0x6d, 0x65, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x2a, 0x52, 0x0e, 0x6c, 0x61, 0x73,
|
|
4618
|
-
0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24,
|
|
4619
|
-
0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x64, 0x20,
|
|
4620
|
-
0x01, 0x28, 0x05, 0x48, 0x2b, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72,
|
|
4621
|
-
0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x5f,
|
|
4622
|
-
0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c,
|
|
4623
|
-
0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a,
|
|
4624
|
-
0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6f,
|
|
4625
|
-
0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x42, 0x0f, 0x0a, 0x0d,
|
|
4626
|
-
0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x42, 0x0c, 0x0a,
|
|
4627
|
-
0x0a, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x69, 0x6e, 0x63, 0x68, 0x42, 0x11, 0x0a, 0x0f, 0x5f,
|
|
4628
|
-
0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0f,
|
|
4629
|
-
0x0a, 0x0d, 0x5f, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x42,
|
|
4630
|
-
0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x69, 0x6d,
|
|
4631
|
-
0x65, 0x5f, 0x6d, 0x73, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x68, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65,
|
|
4632
|
-
0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x74, 0x65, 0x63,
|
|
4633
|
-
0x68, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f, 0x72, 0x61,
|
|
4634
|
-
0x74, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x70, 0x61, 0x6e, 0x65, 0x6c, 0x42, 0x0c, 0x0a, 0x0a,
|
|
4635
|
-
0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x63, 0x6d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x77,
|
|
4636
|
-
0x69, 0x64, 0x74, 0x68, 0x5f, 0x63, 0x6d, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x69, 0x61, 0x67,
|
|
4637
|
-
0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6d, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x75, 0x73, 0x62, 0x5f,
|
|
4638
|
-
0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6e, 0x72, 0x5f,
|
|
4639
|
-
0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x1b, 0x0a, 0x19,
|
|
4640
|
-
0x5f, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x61, 0x5f, 0x64,
|
|
4641
|
-
0x6f, 0x77, 0x6e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6e, 0x72,
|
|
4642
|
-
0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6e, 0x72, 0x5f, 0x76, 0x67, 0x61,
|
|
4643
|
-
0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6e, 0x72, 0x5f, 0x64, 0x76, 0x69, 0x42, 0x0f, 0x0a, 0x0d, 0x5f,
|
|
4644
|
-
0x68, 0x64, 0x6d, 0x69, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x13, 0x0a, 0x11,
|
|
4645
|
-
0x5f, 0x6e, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f, 0x72, 0x74,
|
|
4646
|
-
0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f,
|
|
4647
|
-
0x72, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x65,
|
|
4648
|
-
0x6e, 0x65, 0x72, 0x67, 0x79, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x11, 0x0a, 0x0f, 0x5f,
|
|
4649
|
-
0x73, 0x64, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x31, 0x30, 0x30, 0x30, 0x5f, 0x75, 0x42, 0x15,
|
|
4650
|
-
0x0a, 0x13, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f,
|
|
4651
|
-
0x75, 0x73, 0x61, 0x67, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x77, 0x61,
|
|
4652
|
-
0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x77, 0x61, 0x74,
|
|
4653
|
-
0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x62, 0x79, 0x42,
|
|
4654
|
-
0x12, 0x0a, 0x10, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x73,
|
|
4655
|
-
0x61, 0x76, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61,
|
|
4656
|
-
0x67, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x63, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x5f, 0x68,
|
|
4657
|
-
0x7a, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x42,
|
|
4658
|
-
0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x69, 0x6f, 0x42,
|
|
4659
|
-
0x11, 0x0a, 0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x65,
|
|
4660
|
-
0x72, 0x61, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x73,
|
|
4661
|
-
0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x66, 0x65, 0x61, 0x74,
|
|
4662
|
-
0x75, 0x72, 0x65, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x65, 0x61,
|
|
4663
|
-
0x74, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x74, 0x68, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x65, 0x61,
|
|
4664
|
-
0x74, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74, 0x42, 0x11, 0x0a,
|
|
4665
|
-
0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x75, 0x72, 0x76, 0x65, 0x64,
|
|
4666
|
-
0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
4667
|
-
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f,
|
|
4668
|
-
0x73, 0x63, 0x6f, 0x72, 0x65, 0x32, 0x82, 0x03, 0x0a, 0x17, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f,
|
|
4669
|
-
0x72, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
|
|
4670
|
-
0x65, 0x12, 0x70, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2f,
|
|
4671
|
-
0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
4672
|
-
0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
4673
|
-
0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
4674
|
-
0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
4675
|
-
0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
4676
|
-
0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
4677
|
-
0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74,
|
|
4678
|
-
0x69, 0x65, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
4679
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
|
|
4680
|
-
0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65,
|
|
4681
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
4675
|
+
0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x0e, 0x0a,
|
|
4676
|
+
0x0c, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x42, 0x12, 0x0a,
|
|
4677
|
+
0x10, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x77, 0x69, 0x64, 0x65, 0x73, 0x70, 0x72, 0x65, 0x61,
|
|
4678
|
+
0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x64, 0x65, 0x70, 0x72, 0x65,
|
|
4679
|
+
0x63, 0x61, 0x74, 0x65, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75,
|
|
4680
|
+
0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d,
|
|
4681
|
+
0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x9f, 0x14, 0x0a, 0x0e, 0x43,
|
|
4682
|
+
0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x12, 0x0e, 0x0a,
|
|
4683
|
+
0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a,
|
|
4684
|
+
0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f,
|
|
4685
|
+
0x64, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x09, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x5f, 0x69, 0x64,
|
|
4686
|
+
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72,
|
|
4687
|
+
0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64,
|
|
4688
|
+
0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64,
|
|
4689
|
+
0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64,
|
|
4690
|
+
0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
4691
|
+
0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69,
|
|
4692
|
+
0x6c, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48, 0x03, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61,
|
|
4693
|
+
0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x6f, 0x66, 0x66, 0x69, 0x63,
|
|
4694
|
+
0x69, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04,
|
|
4695
|
+
0x52, 0x0c, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x50, 0x61, 0x67, 0x65, 0x88, 0x01,
|
|
4696
|
+
0x01, 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x67,
|
|
4697
|
+
0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f,
|
|
4698
|
+
0x72, 0x74, 0x50, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x69, 0x7a,
|
|
4699
|
+
0x65, 0x5f, 0x69, 0x6e, 0x63, 0x68, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x48, 0x06, 0x52, 0x08,
|
|
4700
|
+
0x73, 0x69, 0x7a, 0x65, 0x49, 0x6e, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x6d,
|
|
4701
|
+
0x61, 0x78, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20,
|
|
4702
|
+
0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x0d, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x75,
|
|
4703
|
+
0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x61, 0x73, 0x70, 0x65, 0x63,
|
|
4704
|
+
0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52,
|
|
4705
|
+
0x0b, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x88, 0x01, 0x01, 0x12,
|
|
4706
|
+
0x2d, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
|
|
4707
|
+
0x5f, 0x6d, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x48, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x73,
|
|
4708
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4d, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1c,
|
|
4709
|
+
0x0a, 0x07, 0x68, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
4710
|
+
0x0a, 0x52, 0x06, 0x68, 0x64, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c,
|
|
4711
|
+
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x74, 0x65, 0x63, 0x68, 0x18, 0x0f, 0x20, 0x01,
|
|
4712
|
+
0x28, 0x09, 0x48, 0x0b, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x54, 0x65, 0x63,
|
|
4713
|
+
0x68, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f,
|
|
4714
|
+
0x72, 0x61, 0x74, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x48, 0x0c, 0x52, 0x0b, 0x72, 0x65,
|
|
4715
|
+
0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05,
|
|
4716
|
+
0x70, 0x61, 0x6e, 0x65, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x05, 0x70,
|
|
4717
|
+
0x61, 0x6e, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x68, 0x65, 0x69, 0x67, 0x68,
|
|
4718
|
+
0x74, 0x5f, 0x63, 0x6d, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0e, 0x52, 0x08, 0x68, 0x65,
|
|
4719
|
+
0x69, 0x67, 0x68, 0x74, 0x43, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x77, 0x69, 0x64,
|
|
4720
|
+
0x74, 0x68, 0x5f, 0x63, 0x6d, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0f, 0x52, 0x07, 0x77,
|
|
4721
|
+
0x69, 0x64, 0x74, 0x68, 0x43, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x64, 0x69, 0x61,
|
|
4722
|
+
0x67, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6d, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x48, 0x10,
|
|
4723
|
+
0x52, 0x0a, 0x64, 0x69, 0x61, 0x67, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6d, 0x88, 0x01, 0x01, 0x12,
|
|
4724
|
+
0x26, 0x0a, 0x0c, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18,
|
|
4725
|
+
0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x0b, 0x75, 0x73, 0x62, 0x55, 0x70, 0x73, 0x74,
|
|
4726
|
+
0x72, 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x6e, 0x72, 0x5f, 0x75, 0x73,
|
|
4727
|
+
0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x05,
|
|
4728
|
+
0x48, 0x12, 0x52, 0x0d, 0x6e, 0x72, 0x55, 0x73, 0x62, 0x55, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61,
|
|
4729
|
+
0x6d, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x18, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x74,
|
|
4730
|
+
0x79, 0x70, 0x65, 0x5f, 0x61, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d,
|
|
4731
|
+
0x18, 0x17, 0x20, 0x01, 0x28, 0x05, 0x48, 0x13, 0x52, 0x14, 0x6e, 0x72, 0x55, 0x73, 0x62, 0x54,
|
|
4732
|
+
0x79, 0x70, 0x65, 0x41, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x88, 0x01,
|
|
4733
|
+
0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6e, 0x72, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x18, 0x18, 0x20, 0x01,
|
|
4734
|
+
0x28, 0x05, 0x48, 0x14, 0x52, 0x06, 0x6e, 0x72, 0x48, 0x64, 0x6d, 0x69, 0x88, 0x01, 0x01, 0x12,
|
|
4735
|
+
0x1a, 0x0a, 0x06, 0x6e, 0x72, 0x5f, 0x76, 0x67, 0x61, 0x18, 0x19, 0x20, 0x01, 0x28, 0x05, 0x48,
|
|
4736
|
+
0x15, 0x52, 0x05, 0x6e, 0x72, 0x56, 0x67, 0x61, 0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x6e,
|
|
4737
|
+
0x72, 0x5f, 0x64, 0x76, 0x69, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x05, 0x48, 0x16, 0x52, 0x05, 0x6e,
|
|
4738
|
+
0x72, 0x44, 0x76, 0x69, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x68, 0x64, 0x6d, 0x69, 0x5f,
|
|
4739
|
+
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x48, 0x17, 0x52,
|
|
4740
|
+
0x0b, 0x68, 0x64, 0x6d, 0x69, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12,
|
|
4741
|
+
0x2d, 0x0a, 0x10, 0x6e, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f,
|
|
4742
|
+
0x72, 0x74, 0x73, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x05, 0x48, 0x18, 0x52, 0x0e, 0x6e, 0x72, 0x44,
|
|
4743
|
+
0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x72, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35,
|
|
4744
|
+
0x0a, 0x14, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x76,
|
|
4745
|
+
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x48, 0x19, 0x52, 0x12,
|
|
4746
|
+
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x72, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69,
|
|
4747
|
+
0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x65, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x5f,
|
|
4748
|
+
0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x1a, 0x52, 0x0b, 0x65,
|
|
4749
|
+
0x6e, 0x65, 0x72, 0x67, 0x79, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a,
|
|
4750
|
+
0x0e, 0x73, 0x64, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x31, 0x30, 0x30, 0x30, 0x5f, 0x75, 0x18,
|
|
4751
|
+
0x1f, 0x20, 0x01, 0x28, 0x05, 0x48, 0x1b, 0x52, 0x0b, 0x73, 0x64, 0x72, 0x50, 0x65, 0x72, 0x31,
|
|
4752
|
+
0x30, 0x30, 0x30, 0x55, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61,
|
|
4753
|
+
0x67, 0x65, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x18, 0x20, 0x20,
|
|
4754
|
+
0x01, 0x28, 0x01, 0x48, 0x1c, 0x52, 0x10, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x57, 0x61,
|
|
4755
|
+
0x74, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6d, 0x61,
|
|
4756
|
+
0x78, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x18, 0x21, 0x20, 0x01,
|
|
4757
|
+
0x28, 0x01, 0x48, 0x1d, 0x52, 0x0c, 0x6d, 0x61, 0x78, 0x57, 0x61, 0x74, 0x74, 0x55, 0x73, 0x61,
|
|
4758
|
+
0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x12, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73,
|
|
4759
|
+
0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x62, 0x79, 0x18, 0x22, 0x20, 0x01, 0x28,
|
|
4760
|
+
0x01, 0x48, 0x1e, 0x52, 0x10, 0x77, 0x61, 0x74, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74,
|
|
4761
|
+
0x61, 0x6e, 0x64, 0x62, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x77, 0x61, 0x74, 0x74,
|
|
4762
|
+
0x5f, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x73, 0x61, 0x76, 0x65, 0x18, 0x23, 0x20, 0x01, 0x28,
|
|
4763
|
+
0x01, 0x48, 0x1f, 0x52, 0x0d, 0x77, 0x61, 0x74, 0x74, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x53, 0x61,
|
|
4764
|
+
0x76, 0x65, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x61, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x74,
|
|
4765
|
+
0x61, 0x67, 0x65, 0x18, 0x24, 0x20, 0x01, 0x28, 0x09, 0x48, 0x20, 0x52, 0x09, 0x61, 0x63, 0x56,
|
|
4766
|
+
0x6f, 0x6c, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x21, 0x0a, 0x0a, 0x61, 0x63, 0x5f,
|
|
4767
|
+
0x66, 0x72, 0x65, 0x71, 0x5f, 0x68, 0x7a, 0x18, 0x25, 0x20, 0x01, 0x28, 0x09, 0x48, 0x21, 0x52,
|
|
4768
|
+
0x08, 0x61, 0x63, 0x46, 0x72, 0x65, 0x71, 0x48, 0x7a, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09,
|
|
4769
|
+
0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x48,
|
|
4770
|
+
0x22, 0x52, 0x08, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x88, 0x01, 0x01, 0x12, 0x24,
|
|
4771
|
+
0x0a, 0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x69, 0x6f, 0x18, 0x27, 0x20,
|
|
4772
|
+
0x01, 0x28, 0x08, 0x48, 0x23, 0x52, 0x0a, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x69,
|
|
4773
|
+
0x6f, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f,
|
|
4774
|
+
0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x18, 0x28, 0x20, 0x01, 0x28, 0x08, 0x48, 0x24, 0x52, 0x0d,
|
|
4775
|
+
0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x88, 0x01, 0x01,
|
|
4776
|
+
0x12, 0x2e, 0x0a, 0x10, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x73, 0x70, 0x65, 0x61,
|
|
4777
|
+
0x6b, 0x65, 0x72, 0x73, 0x18, 0x29, 0x20, 0x01, 0x28, 0x08, 0x48, 0x25, 0x52, 0x0f, 0x66, 0x65,
|
|
4778
|
+
0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01,
|
|
4779
|
+
0x12, 0x26, 0x0a, 0x0c, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x68, 0x64, 0x6d, 0x69,
|
|
4780
|
+
0x18, 0x2a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x26, 0x52, 0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72,
|
|
4781
|
+
0x65, 0x48, 0x64, 0x6d, 0x69, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x66, 0x65, 0x61, 0x74,
|
|
4782
|
+
0x75, 0x72, 0x65, 0x5f, 0x65, 0x74, 0x68, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x27, 0x52,
|
|
4783
|
+
0x0a, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x45, 0x74, 0x68, 0x88, 0x01, 0x01, 0x12, 0x2e,
|
|
4784
|
+
0x0a, 0x10, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x72, 0x61,
|
|
4785
|
+
0x69, 0x74, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x08, 0x48, 0x28, 0x52, 0x0f, 0x66, 0x65, 0x61, 0x74,
|
|
4786
|
+
0x75, 0x72, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2a,
|
|
4787
|
+
0x0a, 0x0e, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x75, 0x72, 0x76, 0x65, 0x64,
|
|
4788
|
+
0x18, 0x2d, 0x20, 0x01, 0x28, 0x08, 0x48, 0x29, 0x52, 0x0d, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72,
|
|
4789
|
+
0x65, 0x43, 0x75, 0x72, 0x76, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x10, 0x6c, 0x61,
|
|
4790
|
+
0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x2e,
|
|
4791
|
+
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
|
|
4792
|
+
0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
|
|
4793
|
+
0x48, 0x2a, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
|
|
4794
|
+
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73,
|
|
4795
|
+
0x63, 0x6f, 0x72, 0x65, 0x18, 0x64, 0x20, 0x01, 0x28, 0x05, 0x48, 0x2b, 0x52, 0x0a, 0x6d, 0x61,
|
|
4796
|
+
0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
|
4797
|
+
0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61,
|
|
4798
|
+
0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
4799
|
+
0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c,
|
|
4800
|
+
0x79, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x5f, 0x70,
|
|
4801
|
+
0x61, 0x67, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f,
|
|
4802
|
+
0x70, 0x61, 0x67, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x69, 0x6e,
|
|
4803
|
+
0x63, 0x68, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x6c,
|
|
4804
|
+
0x75, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74,
|
|
4805
|
+
0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f,
|
|
4806
|
+
0x6e, 0x73, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x42, 0x0a, 0x0a, 0x08, 0x5f,
|
|
4807
|
+
0x68, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x69, 0x73, 0x70,
|
|
4808
|
+
0x6c, 0x61, 0x79, 0x5f, 0x74, 0x65, 0x63, 0x68, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x66,
|
|
4809
|
+
0x72, 0x65, 0x73, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x70, 0x61,
|
|
4810
|
+
0x6e, 0x65, 0x6c, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x63,
|
|
4811
|
+
0x6d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x5f, 0x63, 0x6d, 0x42, 0x0e,
|
|
4812
|
+
0x0a, 0x0c, 0x5f, 0x64, 0x69, 0x61, 0x67, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6d, 0x42, 0x0f,
|
|
4813
|
+
0x0a, 0x0d, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42,
|
|
4814
|
+
0x12, 0x0a, 0x10, 0x5f, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72,
|
|
4815
|
+
0x65, 0x61, 0x6d, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x74,
|
|
4816
|
+
0x79, 0x70, 0x65, 0x5f, 0x61, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d,
|
|
4817
|
+
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6e, 0x72, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42, 0x09, 0x0a, 0x07,
|
|
4818
|
+
0x5f, 0x6e, 0x72, 0x5f, 0x76, 0x67, 0x61, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6e, 0x72, 0x5f, 0x64,
|
|
4819
|
+
0x76, 0x69, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x5f, 0x76, 0x65, 0x72, 0x73,
|
|
4820
|
+
0x69, 0x6f, 0x6e, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6e, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c,
|
|
4821
|
+
0x61, 0x79, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x64, 0x69, 0x73,
|
|
4822
|
+
0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
4823
|
+
0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x65, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x5f, 0x63, 0x6c, 0x61,
|
|
4824
|
+
0x73, 0x73, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x73, 0x64, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x31,
|
|
4825
|
+
0x30, 0x30, 0x30, 0x5f, 0x75, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
|
|
4826
|
+
0x65, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x42, 0x11, 0x0a, 0x0f,
|
|
4827
|
+
0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x42,
|
|
4828
|
+
0x15, 0x0a, 0x13, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73,
|
|
4829
|
+
0x74, 0x61, 0x6e, 0x64, 0x62, 0x79, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f,
|
|
4830
|
+
0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x73, 0x61, 0x76, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61,
|
|
4831
|
+
0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61, 0x67, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x63,
|
|
4832
|
+
0x5f, 0x66, 0x72, 0x65, 0x71, 0x5f, 0x68, 0x7a, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x75, 0x72,
|
|
4833
|
+
0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75,
|
|
4834
|
+
0x72, 0x65, 0x5f, 0x61, 0x69, 0x6f, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75,
|
|
4835
|
+
0x72, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x65,
|
|
4836
|
+
0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x73, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x42, 0x0f,
|
|
4837
|
+
0x0a, 0x0d, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42,
|
|
4838
|
+
0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x74, 0x68, 0x42,
|
|
4839
|
+
0x13, 0x0a, 0x11, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74,
|
|
4840
|
+
0x72, 0x61, 0x69, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4841
|
+
0x5f, 0x63, 0x75, 0x72, 0x76, 0x65, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74,
|
|
4842
|
+
0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c,
|
|
4843
|
+
0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x32, 0x82, 0x03, 0x0a,
|
|
4844
|
+
0x17, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
|
|
4845
|
+
0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x70, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x45,
|
|
4846
|
+
0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
4682
4847
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
|
|
4683
|
-
0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
0x2e,
|
|
4694
|
-
|
|
4848
|
+
0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52,
|
|
4849
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
|
|
4850
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
|
|
4851
|
+
0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
|
|
4852
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0c, 0x4c, 0x69,
|
|
4853
|
+
0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x6f, 0x6d,
|
|
4854
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
|
|
4855
|
+
0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45,
|
|
4856
|
+
0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63,
|
|
4857
|
+
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
4858
|
+
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73,
|
|
4859
|
+
0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
4860
|
+
0x00, 0x30, 0x01, 0x12, 0x7c, 0x0a, 0x0d, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f,
|
|
4861
|
+
0x6f, 0x6b, 0x75, 0x70, 0x12, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
4862
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
|
|
4863
|
+
0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b,
|
|
4864
|
+
0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
|
|
4865
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
|
|
4866
|
+
0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f,
|
|
4867
|
+
0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
4868
|
+
0x00, 0x42, 0x12, 0x50, 0x01, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
|
|
4869
|
+
0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
4695
4870
|
}
|
|
4696
4871
|
|
|
4697
4872
|
var (
|
|
@@ -4706,7 +4881,7 @@ func file_outbound_proto_rawDescGZIP() []byte {
|
|
|
4706
4881
|
return file_outbound_proto_rawDescData
|
|
4707
4882
|
}
|
|
4708
4883
|
|
|
4709
|
-
var file_outbound_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
4884
|
+
var file_outbound_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
|
|
4710
4885
|
var file_outbound_proto_goTypes = []interface{}{
|
|
4711
4886
|
(*GetEntityRequest)(nil), // 0: com.lansweeper.dp.outbound.v1.GetEntityRequest
|
|
4712
4887
|
(*GetEntityResponse)(nil), // 1: com.lansweeper.dp.outbound.v1.GetEntityResponse
|
|
@@ -4722,22 +4897,23 @@ var file_outbound_proto_goTypes = []interface{}{
|
|
|
4722
4897
|
(*HardwareInfo)(nil), // 11: com.lansweeper.dp.outbound.v1.HardwareInfo
|
|
4723
4898
|
(*RawHardwareInfo)(nil), // 12: com.lansweeper.dp.outbound.v1.RawHardwareInfo
|
|
4724
4899
|
(*OperatingSystemInfo)(nil), // 13: com.lansweeper.dp.outbound.v1.OperatingSystemInfo
|
|
4725
|
-
(*
|
|
4726
|
-
(*
|
|
4727
|
-
(*
|
|
4728
|
-
(*
|
|
4729
|
-
(*
|
|
4730
|
-
(*
|
|
4731
|
-
(*
|
|
4732
|
-
(*
|
|
4733
|
-
(*
|
|
4734
|
-
(*
|
|
4735
|
-
(*
|
|
4736
|
-
(*
|
|
4737
|
-
(*
|
|
4738
|
-
(*
|
|
4739
|
-
(*
|
|
4740
|
-
(*
|
|
4900
|
+
(*OperatingSystemPatch)(nil), // 14: com.lansweeper.dp.outbound.v1.OperatingSystemPatch
|
|
4901
|
+
(*WindowsRawOperatingSystemInfo)(nil), // 15: com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo
|
|
4902
|
+
(*NetworkInterfaces)(nil), // 16: com.lansweeper.dp.outbound.v1.NetworkInterfaces
|
|
4903
|
+
(*NetworkInterface)(nil), // 17: com.lansweeper.dp.outbound.v1.NetworkInterface
|
|
4904
|
+
(*NetIpAddress)(nil), // 18: com.lansweeper.dp.outbound.v1.NetIpAddress
|
|
4905
|
+
(*MonitorInventory)(nil), // 19: com.lansweeper.dp.outbound.v1.MonitorInventory
|
|
4906
|
+
(*Monitor)(nil), // 20: com.lansweeper.dp.outbound.v1.Monitor
|
|
4907
|
+
(*WindowsRawMonitorInfo)(nil), // 21: com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo
|
|
4908
|
+
(*SoftwareInventory)(nil), // 22: com.lansweeper.dp.outbound.v1.SoftwareInventory
|
|
4909
|
+
(*Software)(nil), // 23: com.lansweeper.dp.outbound.v1.Software
|
|
4910
|
+
(*RawSoftware)(nil), // 24: com.lansweeper.dp.outbound.v1.RawSoftware
|
|
4911
|
+
(*CatalogBrand)(nil), // 25: com.lansweeper.dp.outbound.v1.CatalogBrand
|
|
4912
|
+
(*CatalogModel)(nil), // 26: com.lansweeper.dp.outbound.v1.CatalogModel
|
|
4913
|
+
(*CatalogOs)(nil), // 27: com.lansweeper.dp.outbound.v1.CatalogOs
|
|
4914
|
+
(*CatalogSoftware)(nil), // 28: com.lansweeper.dp.outbound.v1.CatalogSoftware
|
|
4915
|
+
(*CatalogMonitor)(nil), // 29: com.lansweeper.dp.outbound.v1.CatalogMonitor
|
|
4916
|
+
(*timestamppb.Timestamp)(nil), // 30: google.protobuf.Timestamp
|
|
4741
4917
|
}
|
|
4742
4918
|
var file_outbound_proto_depIdxs = []int32{
|
|
4743
4919
|
6, // 0: com.lansweeper.dp.outbound.v1.GetEntityRequest.entity_path:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
|
|
@@ -4746,48 +4922,67 @@ var file_outbound_proto_depIdxs = []int32{
|
|
|
4746
4922
|
6, // 3: com.lansweeper.dp.outbound.v1.ListEntityRequest.filter:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
|
|
4747
4923
|
7, // 4: com.lansweeper.dp.outbound.v1.ListEntityResponse.entity:type_name -> com.lansweeper.dp.outbound.v1.Entity
|
|
4748
4924
|
7, // 5: com.lansweeper.dp.outbound.v1.ListEntityResponse.related:type_name -> com.lansweeper.dp.outbound.v1.Entity
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4925
|
+
25, // 6: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.brand:type_name -> com.lansweeper.dp.outbound.v1.CatalogBrand
|
|
4926
|
+
26, // 7: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.model:type_name -> com.lansweeper.dp.outbound.v1.CatalogModel
|
|
4927
|
+
27, // 8: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.os:type_name -> com.lansweeper.dp.outbound.v1.CatalogOs
|
|
4928
|
+
28, // 9: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.sw:type_name -> com.lansweeper.dp.outbound.v1.CatalogSoftware
|
|
4929
|
+
29, // 10: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.monitor:type_name -> com.lansweeper.dp.outbound.v1.CatalogMonitor
|
|
4754
4930
|
8, // 11: com.lansweeper.dp.outbound.v1.Entity.asset:type_name -> com.lansweeper.dp.outbound.v1.Asset
|
|
4755
4931
|
6, // 12: com.lansweeper.dp.outbound.v1.Asset.id:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4932
|
+
30, // 13: com.lansweeper.dp.outbound.v1.Asset.last_synced:type_name -> google.protobuf.Timestamp
|
|
4933
|
+
30, // 14: com.lansweeper.dp.outbound.v1.Asset.first_seen:type_name -> google.protobuf.Timestamp
|
|
4934
|
+
30, // 15: com.lansweeper.dp.outbound.v1.Asset.last_updated:type_name -> google.protobuf.Timestamp
|
|
4935
|
+
30, // 16: com.lansweeper.dp.outbound.v1.Asset.last_enriched:type_name -> google.protobuf.Timestamp
|
|
4760
4936
|
10, // 17: com.lansweeper.dp.outbound.v1.Asset.core:type_name -> com.lansweeper.dp.outbound.v1.CoreFields
|
|
4761
4937
|
11, // 18: com.lansweeper.dp.outbound.v1.Asset.hw:type_name -> com.lansweeper.dp.outbound.v1.HardwareInfo
|
|
4762
4938
|
13, // 19: com.lansweeper.dp.outbound.v1.Asset.os:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystemInfo
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4939
|
+
22, // 20: com.lansweeper.dp.outbound.v1.Asset.software_inventory:type_name -> com.lansweeper.dp.outbound.v1.SoftwareInventory
|
|
4940
|
+
19, // 21: com.lansweeper.dp.outbound.v1.Asset.monitor_inventory:type_name -> com.lansweeper.dp.outbound.v1.MonitorInventory
|
|
4941
|
+
16, // 22: com.lansweeper.dp.outbound.v1.Asset.network_interfaces:type_name -> com.lansweeper.dp.outbound.v1.NetworkInterfaces
|
|
4766
4942
|
9, // 23: com.lansweeper.dp.outbound.v1.CoreFields.type:type_name -> com.lansweeper.dp.outbound.v1.AssetType
|
|
4767
4943
|
12, // 24: com.lansweeper.dp.outbound.v1.HardwareInfo.raw:type_name -> com.lansweeper.dp.outbound.v1.RawHardwareInfo
|
|
4768
|
-
14, // 25: com.lansweeper.dp.outbound.v1.OperatingSystemInfo.
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
20, // 32: com.lansweeper.dp.outbound.v1.
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4944
|
+
14, // 25: com.lansweeper.dp.outbound.v1.OperatingSystemInfo.patch:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystemPatch
|
|
4945
|
+
15, // 26: com.lansweeper.dp.outbound.v1.OperatingSystemInfo.windows:type_name -> com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo
|
|
4946
|
+
30, // 27: com.lansweeper.dp.outbound.v1.OperatingSystemPatch.install_date:type_name -> google.protobuf.Timestamp
|
|
4947
|
+
30, // 28: com.lansweeper.dp.outbound.v1.NetworkInterfaces.timestamp:type_name -> google.protobuf.Timestamp
|
|
4948
|
+
17, // 29: com.lansweeper.dp.outbound.v1.NetworkInterfaces.interface:type_name -> com.lansweeper.dp.outbound.v1.NetworkInterface
|
|
4949
|
+
18, // 30: com.lansweeper.dp.outbound.v1.NetworkInterface.ip:type_name -> com.lansweeper.dp.outbound.v1.NetIpAddress
|
|
4950
|
+
30, // 31: com.lansweeper.dp.outbound.v1.MonitorInventory.timestamp:type_name -> google.protobuf.Timestamp
|
|
4951
|
+
20, // 32: com.lansweeper.dp.outbound.v1.MonitorInventory.monitor:type_name -> com.lansweeper.dp.outbound.v1.Monitor
|
|
4952
|
+
30, // 33: com.lansweeper.dp.outbound.v1.Monitor.manufacturer_date:type_name -> google.protobuf.Timestamp
|
|
4953
|
+
21, // 34: com.lansweeper.dp.outbound.v1.Monitor.windows:type_name -> com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo
|
|
4954
|
+
30, // 35: com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo.manufacturer_date:type_name -> google.protobuf.Timestamp
|
|
4955
|
+
30, // 36: com.lansweeper.dp.outbound.v1.SoftwareInventory.timestamp:type_name -> google.protobuf.Timestamp
|
|
4956
|
+
23, // 37: com.lansweeper.dp.outbound.v1.SoftwareInventory.software:type_name -> com.lansweeper.dp.outbound.v1.Software
|
|
4957
|
+
24, // 38: com.lansweeper.dp.outbound.v1.Software.raw:type_name -> com.lansweeper.dp.outbound.v1.RawSoftware
|
|
4958
|
+
30, // 39: com.lansweeper.dp.outbound.v1.RawSoftware.install_date:type_name -> google.protobuf.Timestamp
|
|
4959
|
+
30, // 40: com.lansweeper.dp.outbound.v1.CatalogBrand.last_update_time:type_name -> google.protobuf.Timestamp
|
|
4960
|
+
30, // 41: com.lansweeper.dp.outbound.v1.CatalogModel.release_date:type_name -> google.protobuf.Timestamp
|
|
4961
|
+
30, // 42: com.lansweeper.dp.outbound.v1.CatalogModel.disc_date:type_name -> google.protobuf.Timestamp
|
|
4962
|
+
30, // 43: com.lansweeper.dp.outbound.v1.CatalogModel.eos_date:type_name -> google.protobuf.Timestamp
|
|
4963
|
+
30, // 44: com.lansweeper.dp.outbound.v1.CatalogModel.last_update_time:type_name -> google.protobuf.Timestamp
|
|
4964
|
+
30, // 45: com.lansweeper.dp.outbound.v1.CatalogOs.release_date:type_name -> google.protobuf.Timestamp
|
|
4965
|
+
30, // 46: com.lansweeper.dp.outbound.v1.CatalogOs.eol_date:type_name -> google.protobuf.Timestamp
|
|
4966
|
+
30, // 47: com.lansweeper.dp.outbound.v1.CatalogOs.eos_date:type_name -> google.protobuf.Timestamp
|
|
4967
|
+
30, // 48: com.lansweeper.dp.outbound.v1.CatalogOs.eosx_date:type_name -> google.protobuf.Timestamp
|
|
4968
|
+
30, // 49: com.lansweeper.dp.outbound.v1.CatalogOs.last_update_time:type_name -> google.protobuf.Timestamp
|
|
4969
|
+
30, // 50: com.lansweeper.dp.outbound.v1.CatalogSoftware.release_date:type_name -> google.protobuf.Timestamp
|
|
4970
|
+
30, // 51: com.lansweeper.dp.outbound.v1.CatalogSoftware.eol_date:type_name -> google.protobuf.Timestamp
|
|
4971
|
+
30, // 52: com.lansweeper.dp.outbound.v1.CatalogSoftware.eos_date:type_name -> google.protobuf.Timestamp
|
|
4972
|
+
30, // 53: com.lansweeper.dp.outbound.v1.CatalogSoftware.eosx_date:type_name -> google.protobuf.Timestamp
|
|
4973
|
+
30, // 54: com.lansweeper.dp.outbound.v1.CatalogSoftware.last_update_time:type_name -> google.protobuf.Timestamp
|
|
4974
|
+
30, // 55: com.lansweeper.dp.outbound.v1.CatalogMonitor.last_update_time:type_name -> google.protobuf.Timestamp
|
|
4975
|
+
0, // 56: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:input_type -> com.lansweeper.dp.outbound.v1.GetEntityRequest
|
|
4976
|
+
2, // 57: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:input_type -> com.lansweeper.dp.outbound.v1.ListEntityRequest
|
|
4977
|
+
4, // 58: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:input_type -> com.lansweeper.dp.outbound.v1.CatalogLookupRequest
|
|
4978
|
+
1, // 59: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:output_type -> com.lansweeper.dp.outbound.v1.GetEntityResponse
|
|
4979
|
+
3, // 60: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:output_type -> com.lansweeper.dp.outbound.v1.ListEntityResponse
|
|
4980
|
+
5, // 61: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:output_type -> com.lansweeper.dp.outbound.v1.CatalogLookupResponse
|
|
4981
|
+
59, // [59:62] is the sub-list for method output_type
|
|
4982
|
+
56, // [56:59] is the sub-list for method input_type
|
|
4983
|
+
56, // [56:56] is the sub-list for extension type_name
|
|
4984
|
+
56, // [56:56] is the sub-list for extension extendee
|
|
4985
|
+
0, // [0:56] is the sub-list for field type_name
|
|
4791
4986
|
}
|
|
4792
4987
|
|
|
4793
4988
|
func init() { file_outbound_proto_init() }
|
|
@@ -4965,7 +5160,7 @@ func file_outbound_proto_init() {
|
|
|
4965
5160
|
}
|
|
4966
5161
|
}
|
|
4967
5162
|
file_outbound_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
|
4968
|
-
switch v := v.(*
|
|
5163
|
+
switch v := v.(*OperatingSystemPatch); i {
|
|
4969
5164
|
case 0:
|
|
4970
5165
|
return &v.state
|
|
4971
5166
|
case 1:
|
|
@@ -4977,7 +5172,7 @@ func file_outbound_proto_init() {
|
|
|
4977
5172
|
}
|
|
4978
5173
|
}
|
|
4979
5174
|
file_outbound_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
|
4980
|
-
switch v := v.(*
|
|
5175
|
+
switch v := v.(*WindowsRawOperatingSystemInfo); i {
|
|
4981
5176
|
case 0:
|
|
4982
5177
|
return &v.state
|
|
4983
5178
|
case 1:
|
|
@@ -4989,7 +5184,7 @@ func file_outbound_proto_init() {
|
|
|
4989
5184
|
}
|
|
4990
5185
|
}
|
|
4991
5186
|
file_outbound_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
|
4992
|
-
switch v := v.(*
|
|
5187
|
+
switch v := v.(*NetworkInterfaces); i {
|
|
4993
5188
|
case 0:
|
|
4994
5189
|
return &v.state
|
|
4995
5190
|
case 1:
|
|
@@ -5001,7 +5196,7 @@ func file_outbound_proto_init() {
|
|
|
5001
5196
|
}
|
|
5002
5197
|
}
|
|
5003
5198
|
file_outbound_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
|
5004
|
-
switch v := v.(*
|
|
5199
|
+
switch v := v.(*NetworkInterface); i {
|
|
5005
5200
|
case 0:
|
|
5006
5201
|
return &v.state
|
|
5007
5202
|
case 1:
|
|
@@ -5013,7 +5208,7 @@ func file_outbound_proto_init() {
|
|
|
5013
5208
|
}
|
|
5014
5209
|
}
|
|
5015
5210
|
file_outbound_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
|
5016
|
-
switch v := v.(*
|
|
5211
|
+
switch v := v.(*NetIpAddress); i {
|
|
5017
5212
|
case 0:
|
|
5018
5213
|
return &v.state
|
|
5019
5214
|
case 1:
|
|
@@ -5025,7 +5220,7 @@ func file_outbound_proto_init() {
|
|
|
5025
5220
|
}
|
|
5026
5221
|
}
|
|
5027
5222
|
file_outbound_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
|
5028
|
-
switch v := v.(*
|
|
5223
|
+
switch v := v.(*MonitorInventory); i {
|
|
5029
5224
|
case 0:
|
|
5030
5225
|
return &v.state
|
|
5031
5226
|
case 1:
|
|
@@ -5037,7 +5232,7 @@ func file_outbound_proto_init() {
|
|
|
5037
5232
|
}
|
|
5038
5233
|
}
|
|
5039
5234
|
file_outbound_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
|
5040
|
-
switch v := v.(*
|
|
5235
|
+
switch v := v.(*Monitor); i {
|
|
5041
5236
|
case 0:
|
|
5042
5237
|
return &v.state
|
|
5043
5238
|
case 1:
|
|
@@ -5049,7 +5244,7 @@ func file_outbound_proto_init() {
|
|
|
5049
5244
|
}
|
|
5050
5245
|
}
|
|
5051
5246
|
file_outbound_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
|
5052
|
-
switch v := v.(*
|
|
5247
|
+
switch v := v.(*WindowsRawMonitorInfo); i {
|
|
5053
5248
|
case 0:
|
|
5054
5249
|
return &v.state
|
|
5055
5250
|
case 1:
|
|
@@ -5061,7 +5256,7 @@ func file_outbound_proto_init() {
|
|
|
5061
5256
|
}
|
|
5062
5257
|
}
|
|
5063
5258
|
file_outbound_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
|
5064
|
-
switch v := v.(*
|
|
5259
|
+
switch v := v.(*SoftwareInventory); i {
|
|
5065
5260
|
case 0:
|
|
5066
5261
|
return &v.state
|
|
5067
5262
|
case 1:
|
|
@@ -5073,7 +5268,7 @@ func file_outbound_proto_init() {
|
|
|
5073
5268
|
}
|
|
5074
5269
|
}
|
|
5075
5270
|
file_outbound_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
|
5076
|
-
switch v := v.(*
|
|
5271
|
+
switch v := v.(*Software); i {
|
|
5077
5272
|
case 0:
|
|
5078
5273
|
return &v.state
|
|
5079
5274
|
case 1:
|
|
@@ -5085,7 +5280,7 @@ func file_outbound_proto_init() {
|
|
|
5085
5280
|
}
|
|
5086
5281
|
}
|
|
5087
5282
|
file_outbound_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
|
5088
|
-
switch v := v.(*
|
|
5283
|
+
switch v := v.(*RawSoftware); i {
|
|
5089
5284
|
case 0:
|
|
5090
5285
|
return &v.state
|
|
5091
5286
|
case 1:
|
|
@@ -5097,7 +5292,7 @@ func file_outbound_proto_init() {
|
|
|
5097
5292
|
}
|
|
5098
5293
|
}
|
|
5099
5294
|
file_outbound_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
|
5100
|
-
switch v := v.(*
|
|
5295
|
+
switch v := v.(*CatalogBrand); i {
|
|
5101
5296
|
case 0:
|
|
5102
5297
|
return &v.state
|
|
5103
5298
|
case 1:
|
|
@@ -5109,7 +5304,7 @@ func file_outbound_proto_init() {
|
|
|
5109
5304
|
}
|
|
5110
5305
|
}
|
|
5111
5306
|
file_outbound_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
|
5112
|
-
switch v := v.(*
|
|
5307
|
+
switch v := v.(*CatalogModel); i {
|
|
5113
5308
|
case 0:
|
|
5114
5309
|
return &v.state
|
|
5115
5310
|
case 1:
|
|
@@ -5121,7 +5316,7 @@ func file_outbound_proto_init() {
|
|
|
5121
5316
|
}
|
|
5122
5317
|
}
|
|
5123
5318
|
file_outbound_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
|
5124
|
-
switch v := v.(*
|
|
5319
|
+
switch v := v.(*CatalogOs); i {
|
|
5125
5320
|
case 0:
|
|
5126
5321
|
return &v.state
|
|
5127
5322
|
case 1:
|
|
@@ -5133,6 +5328,18 @@ func file_outbound_proto_init() {
|
|
|
5133
5328
|
}
|
|
5134
5329
|
}
|
|
5135
5330
|
file_outbound_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
|
5331
|
+
switch v := v.(*CatalogSoftware); i {
|
|
5332
|
+
case 0:
|
|
5333
|
+
return &v.state
|
|
5334
|
+
case 1:
|
|
5335
|
+
return &v.sizeCache
|
|
5336
|
+
case 2:
|
|
5337
|
+
return &v.unknownFields
|
|
5338
|
+
default:
|
|
5339
|
+
return nil
|
|
5340
|
+
}
|
|
5341
|
+
}
|
|
5342
|
+
file_outbound_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
|
5136
5343
|
switch v := v.(*CatalogMonitor); i {
|
|
5137
5344
|
case 0:
|
|
5138
5345
|
return &v.state
|
|
@@ -5160,25 +5367,26 @@ func file_outbound_proto_init() {
|
|
|
5160
5367
|
(*OperatingSystemInfo_Windows)(nil),
|
|
5161
5368
|
}
|
|
5162
5369
|
file_outbound_proto_msgTypes[14].OneofWrappers = []interface{}{}
|
|
5163
|
-
file_outbound_proto_msgTypes[
|
|
5164
|
-
file_outbound_proto_msgTypes[
|
|
5370
|
+
file_outbound_proto_msgTypes[15].OneofWrappers = []interface{}{}
|
|
5371
|
+
file_outbound_proto_msgTypes[17].OneofWrappers = []interface{}{}
|
|
5372
|
+
file_outbound_proto_msgTypes[20].OneofWrappers = []interface{}{
|
|
5165
5373
|
(*Monitor_Windows)(nil),
|
|
5166
5374
|
}
|
|
5167
|
-
file_outbound_proto_msgTypes[
|
|
5168
|
-
file_outbound_proto_msgTypes[22].OneofWrappers = []interface{}{}
|
|
5375
|
+
file_outbound_proto_msgTypes[21].OneofWrappers = []interface{}{}
|
|
5169
5376
|
file_outbound_proto_msgTypes[23].OneofWrappers = []interface{}{}
|
|
5170
5377
|
file_outbound_proto_msgTypes[24].OneofWrappers = []interface{}{}
|
|
5171
5378
|
file_outbound_proto_msgTypes[25].OneofWrappers = []interface{}{}
|
|
5172
5379
|
file_outbound_proto_msgTypes[26].OneofWrappers = []interface{}{}
|
|
5173
5380
|
file_outbound_proto_msgTypes[27].OneofWrappers = []interface{}{}
|
|
5174
5381
|
file_outbound_proto_msgTypes[28].OneofWrappers = []interface{}{}
|
|
5382
|
+
file_outbound_proto_msgTypes[29].OneofWrappers = []interface{}{}
|
|
5175
5383
|
type x struct{}
|
|
5176
5384
|
out := protoimpl.TypeBuilder{
|
|
5177
5385
|
File: protoimpl.DescBuilder{
|
|
5178
5386
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
5179
5387
|
RawDescriptor: file_outbound_proto_rawDesc,
|
|
5180
5388
|
NumEnums: 0,
|
|
5181
|
-
NumMessages:
|
|
5389
|
+
NumMessages: 30,
|
|
5182
5390
|
NumExtensions: 0,
|
|
5183
5391
|
NumServices: 1,
|
|
5184
5392
|
},
|