@lansweeper/data-platform-outbound-grpc 0.1.53 → 0.1.55

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.
@@ -1 +1 @@
1
- {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"uniqueKey","proto3Optional":true},{"name":"scan_error","number":33,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScanError","jsonName":"scanError"},{"name":"last_synced_source","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSource","proto3Optional":true},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"},{"name":"relation","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Relation","jsonName":"relation"},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":2,"jsonName":"internetIp","proto3Optional":true},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":3,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":4,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":5,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":6,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":7,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":37,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":8,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":43,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"chassis","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":9,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":10,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":11,"jsonName":"motherboard","proto3Optional":true},{"name":"optical_drive","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":38,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"network_volume","number":40,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"graphics_card","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"auto_run_command","number":34,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":12,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":36,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":41,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":44,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"last_user","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":13,"jsonName":"lastUser","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":14,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":15,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_unique_key"},{"name":"_last_synced_source"},{"name":"_internet_ip"},{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_os_recovery"},{"name":"_chassis"},{"name":"_memory"},{"name":"_motherboard"},{"name":"_boot_config"},{"name":"_last_user"},{"name":"_ot_module"},{"name":"_cloud"}]},{"name":"Tag","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"value","proto3Optional":true}],"oneofDecl":[{"name":"_value"}]},{"name":"Relation","field":[{"name":"from","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":0,"jsonName":"from","proto3Optional":true},{"name":"to","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"to","proto3Optional":true},{"name":"start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"end","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"tag","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"}],"oneofDecl":[{"name":"_from"},{"name":"_to"},{"name":"_end"}]},{"name":"CloudEntity","field":[{"name":"body","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"}]},{"name":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"rack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtRack","oneofIndex":1,"jsonName":"rack","proto3Optional":true},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"is_network_node","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isNetworkNode"},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"partNumber","proto3Optional":true},{"name":"ext_info","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModuleExtInfo","jsonName":"extInfo"},{"name":"route_path","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"routePath","proto3Optional":true}],"oneofDecl":[{"name":"_component_type"},{"name":"_rack"},{"name":"_part_number"},{"name":"_route_path"}]},{"name":"OtRack","field":[{"name":"number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"type","proto3Optional":true},{"name":"size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"size"},{"name":"slot_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"slotNumber","proto3Optional":true},{"name":"slot_width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"slotWidth","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_slot_number"},{"name":"_slot_width"}]},{"name":"OtModuleExtInfo","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"ls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"lsId"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true},{"name":"sub_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"subType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"},{"name":"_sub_type"}]},{"name":"ScanError","field":[{"name":"section","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"section"},{"name":"error","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"error"},{"name":"source","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"source","proto3Optional":true},{"name":"timestamp","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"timestamp","proto3Optional":true},{"name":"duration","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"duration","proto3Optional":true}],"oneofDecl":[{"name":"_source"},{"name":"_timestamp"},{"name":"_duration"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true},{"name":"fqdn","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fqdn","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"},{"name":"_fqdn"}]},{"name":"LastUser","field":[{"name":"user_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userName"},{"name":"user_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userType","proto3Optional":true},{"name":"upn","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"upn","proto3Optional":true},{"name":"sid","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"sid","proto3Optional":true}],"oneofDecl":[{"name":"_user_type"},{"name":"_upn"},{"name":"_sid"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":13,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":15,"jsonName":"catalogFamily","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_spec"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"}]},{"name":"SpecHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"system_sku","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"systemSku","proto3Optional":true},{"name":"uptime","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"uptime","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"}]},{"name":"OperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"},{"name":"mac","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo","oneofIndex":0,"jsonName":"mac"},{"name":"linux","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo","oneofIndex":0,"jsonName":"linux"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"MacOperatingSystemInfo","field":[{"name":"kernel_caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelCaption","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"}]},{"name":"LinuxOperatingSystemInfo","field":[{"name":"kernel_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"kernelRelease","proto3Optional":true},{"name":"kernel_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"kernelVersion","proto3Optional":true},{"name":"distribution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"distribution","proto3Optional":true},{"name":"os_release","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"osRelease","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_kernel_version"},{"name":"_distribution"},{"name":"_os_release"}]},{"name":"WindowsOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"OperatingSystemFeature","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"caption"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"Chassis","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"type"},{"name":"lock_present","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"lockPresent","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"security_status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"securityStatus","proto3Optional":true},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"asset_tag","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"assetTag","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"version","proto3Optional":true},{"name":"bootup_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"bootupState","proto3Optional":true}],"oneofDecl":[{"name":"_lock_present"},{"name":"_manufacturer"},{"name":"_security_status"},{"name":"_serial_number"},{"name":"_asset_tag"},{"name":"_version"},{"name":"_bootup_state"}]},{"name":"HardDrive","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"compressed","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"drive_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"driveType","proto3Optional":true},{"name":"file_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileSystem","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"size","proto3Optional":true},{"name":"volume_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"volumeName","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"serialNumber","proto3Optional":true},{"name":"mounted_on","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"mountedOn","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_compressed"},{"name":"_description"},{"name":"_device_id"},{"name":"_drive_type"},{"name":"_file_system"},{"name":"_free_space"},{"name":"_size"},{"name":"_volume_name"},{"name":"_serial_number"},{"name":"_mounted_on"}]},{"name":"DriveVolume","field":[{"name":"device_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"deviceId","proto3Optional":true},{"name":"path","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"label","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"label","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"capacity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"capacity","proto3Optional":true},{"name":"block_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"blockSize","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"drive_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"driveType","proto3Optional":true},{"name":"protection_status","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"protectionStatus","proto3Optional":true},{"name":"error_description","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"errorDescription","proto3Optional":true},{"name":"error_methodology","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"errorMethodology","proto3Optional":true},{"name":"file_system","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"fileSystem","proto3Optional":true},{"name":"auto_mount","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"autoMount","proto3Optional":true},{"name":"compressed","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"compressed","proto3Optional":true},{"name":"dirty_bit_set","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"dirtyBitSet","proto3Optional":true},{"name":"error_cleared","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"errorCleared","proto3Optional":true},{"name":"indexing_enabled","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"indexingEnabled","proto3Optional":true},{"name":"page_file_present","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"pageFilePresent","proto3Optional":true},{"name":"supports_disk_quotas","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"supportsDiskQuotas","proto3Optional":true},{"name":"supports_file_based_compression","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"supportsFileBasedCompression","proto3Optional":true},{"name":"mounted","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"mounted","proto3Optional":true},{"name":"mount_point","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"mountPoint","proto3Optional":true}],"oneofDecl":[{"name":"_device_id"},{"name":"_path"},{"name":"_label"},{"name":"_name"},{"name":"_capacity"},{"name":"_block_size"},{"name":"_free_space"},{"name":"_drive_type"},{"name":"_protection_status"},{"name":"_error_description"},{"name":"_error_methodology"},{"name":"_file_system"},{"name":"_auto_mount"},{"name":"_compressed"},{"name":"_dirty_bit_set"},{"name":"_error_cleared"},{"name":"_indexing_enabled"},{"name":"_page_file_present"},{"name":"_supports_disk_quotas"},{"name":"_supports_file_based_compression"},{"name":"_mounted"},{"name":"_mount_point"}]},{"name":"NetworkVolume","field":[{"name":"win_mapped_drive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMappedDrive","oneofIndex":0,"jsonName":"winMappedDrive"},{"name":"mac_volume","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacNetworkVolume","oneofIndex":0,"jsonName":"macVolume"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"}]},{"name":"WindowsMappedDrive","field":[{"name":"drive_letter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"driveLetter"},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userName","proto3Optional":true},{"name":"user_domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userDomain","proto3Optional":true},{"name":"remote_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"remotePath","proto3Optional":true}],"oneofDecl":[{"name":"_user_name"},{"name":"_user_domain"},{"name":"_remote_path"}]},{"name":"MacNetworkVolume","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"auto_mounted","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"autoMounted","proto3Optional":true},{"name":"fsmt_non_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"fsmtNonName","proto3Optional":true},{"name":"fs_type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"fsTypeName","proto3Optional":true},{"name":"mnt_from_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"mntFromName","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_auto_mounted"},{"name":"_fsmt_non_name"},{"name":"_fs_type_name"},{"name":"_mnt_from_name"}]},{"name":"Keyboard","field":[{"name":"config_manager_error_code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"layout","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"layout","proto3Optional":true},{"name":"number_of_function_keys","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"numberOfFunctionKeys","proto3Optional":true}],"oneofDecl":[{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_description"},{"name":"_device_id"},{"name":"_layout"},{"name":"_number_of_function_keys"}]},{"name":"PointingDevice","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"device_interface","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"deviceInterface","proto3Optional":true},{"name":"double_speed_threshold","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"doubleSpeedThreshold","proto3Optional":true},{"name":"handedness","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"handedness","proto3Optional":true},{"name":"inf_file_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"infFileName","proto3Optional":true},{"name":"inf_section","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"infSection","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"number_of_buttons","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"numberOfButtons","proto3Optional":true},{"name":"pointing_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":9,"jsonName":"pointingType","proto3Optional":true},{"name":"quad_speed_threshold","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"quadSpeedThreshold","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_device_interface"},{"name":"_double_speed_threshold"},{"name":"_handedness"},{"name":"_inf_file_name"},{"name":"_inf_section"},{"name":"_manufacturer"},{"name":"_number_of_buttons"},{"name":"_pointing_type"},{"name":"_quad_speed_threshold"}]},{"name":"AutoRunCommand","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"command","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"command","proto3Optional":true},{"name":"location","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"user","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"user","proto3Optional":true},{"name":"user_sid","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userSid","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_command"},{"name":"_location"},{"name":"_name"},{"name":"_user"},{"name":"_user_sid"}]},{"name":"BootConfig","field":[{"name":"boot_directory","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"bootDirectory","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"configuration_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"configurationPath","proto3Optional":true},{"name":"scratch_directory","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"scratchDirectory","proto3Optional":true},{"name":"temp_directory","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tempDirectory","proto3Optional":true},{"name":"boot_volume","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootMode","proto3Optional":true}],"oneofDecl":[{"name":"_boot_directory"},{"name":"_caption"},{"name":"_name"},{"name":"_configuration_path"},{"name":"_scratch_directory"},{"name":"_temp_directory"},{"name":"_boot_volume"},{"name":"_boot_mode"}]},{"name":"SharedResource","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"path","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_path"},{"name":"_type"}]},{"name":"RunningProcess","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"threads","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"threads","proto3Optional":true},{"name":"priority","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"priority","proto3Optional":true},{"name":"handle","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"handle","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_path"},{"name":"_threads"},{"name":"_priority"},{"name":"_handle"}]},{"name":"OperatingSystemService","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"pathname","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"pathname","proto3Optional":true},{"name":"start_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"startName","proto3Optional":true},{"name":"state","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"state","proto3Optional":true},{"name":"started","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"started","proto3Optional":true},{"name":"accept_pause","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"desktopInteract","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_pathname"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_started"},{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"}]},{"name":"OperatingSystemRecovery","field":[{"name":"win","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOsRecovery","oneofIndex":0,"jsonName":"win"}],"oneofDecl":[{"name":"os"}]},{"name":"WindowsOsRecovery","field":[{"name":"auto_reboot","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"autoReboot","proto3Optional":true},{"name":"debug_file_path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"debugFilePath","proto3Optional":true},{"name":"kernel_dump_only","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"kernelDumpOnly","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"overwrite_existing_debug_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"overwriteExistingDebugFile","proto3Optional":true},{"name":"send_admin_alert","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"sendAdminAlert","proto3Optional":true},{"name":"write_debug_info","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"writeDebugInfo","proto3Optional":true},{"name":"write_to_system_log","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"writeToSystemLog","proto3Optional":true},{"name":"debug_info_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"debugInfoType","proto3Optional":true},{"name":"mini_dump_directory","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"miniDumpDirectory","proto3Optional":true}],"oneofDecl":[{"name":"_auto_reboot"},{"name":"_debug_file_path"},{"name":"_kernel_dump_only"},{"name":"_name"},{"name":"_overwrite_existing_debug_file"},{"name":"_send_admin_alert"},{"name":"_write_debug_info"},{"name":"_write_to_system_log"},{"name":"_debug_info_type"},{"name":"_mini_dump_directory"}]},{"name":"Driver","field":[{"name":"win_sys","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSystemDriver","oneofIndex":0,"jsonName":"winSys"},{"name":"win_pnp","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPnpSignedDriver","oneofIndex":0,"jsonName":"winPnp"},{"name":"win_printer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPrinterDriver","oneofIndex":0,"jsonName":"winPrinter"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"description","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"},{"name":"_description"}]},{"name":"WindowsSystemDriver","field":[{"name":"accept_pause","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"desktopInteract","proto3Optional":true},{"name":"error_control","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"errorControl","proto3Optional":true},{"name":"exit_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"exitCode","proto3Optional":true},{"name":"path_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pathName","proto3Optional":true},{"name":"service_specific_exit_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"serviceSpecificExitCode","proto3Optional":true},{"name":"service_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"serviceType","proto3Optional":true},{"name":"started","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"started","proto3Optional":true},{"name":"start_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"startName","proto3Optional":true},{"name":"state","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"state","proto3Optional":true},{"name":"status","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"status","proto3Optional":true},{"name":"tag_id","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"tagId","proto3Optional":true},{"name":"name","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"name","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"description","proto3Optional":true},{"name":"caption","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"caption","proto3Optional":true},{"name":"display_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"displayName","proto3Optional":true}],"oneofDecl":[{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"},{"name":"_error_control"},{"name":"_exit_code"},{"name":"_path_name"},{"name":"_service_specific_exit_code"},{"name":"_service_type"},{"name":"_started"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_status"},{"name":"_tag_id"},{"name":"_name"},{"name":"_description"},{"name":"_caption"},{"name":"_display_name"}]},{"name":"WindowsPnpSignedDriver","field":[{"name":"compat_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"compatId","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"dev_loader","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"devLoader","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"friendly_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"friendlyName","proto3Optional":true},{"name":"driver_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"driverDate"},{"name":"driver_version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"hardware_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"infName","proto3Optional":true},{"name":"is_signed","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isSigned","proto3Optional":true},{"name":"location","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"location","proto3Optional":true},{"name":"pdo","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pdo","proto3Optional":true},{"name":"manufacturer","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"manufacturer","proto3Optional":true},{"name":"device_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"deviceName","proto3Optional":true},{"name":"device_class","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"deviceClass","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"description","proto3Optional":true},{"name":"signer","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"signer","proto3Optional":true},{"name":"driver_provider_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"driverProviderName","proto3Optional":true}],"oneofDecl":[{"name":"_compat_id"},{"name":"_device_id"},{"name":"_dev_loader"},{"name":"_driver_name"},{"name":"_friendly_name"},{"name":"_driver_version"},{"name":"_hardware_id"},{"name":"_inf_name"},{"name":"_is_signed"},{"name":"_location"},{"name":"_pdo"},{"name":"_manufacturer"},{"name":"_device_name"},{"name":"_device_class"},{"name":"_description"},{"name":"_signer"},{"name":"_driver_provider_name"}]},{"name":"WindowsPrinterDriver","field":[{"name":"config_file","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"configFile","proto3Optional":true},{"name":"data_file","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"dataFile","proto3Optional":true},{"name":"default_data_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"defaultDataType","proto3Optional":true},{"name":"driver_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverPath","proto3Optional":true},{"name":"file_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"filePath","proto3Optional":true},{"name":"help_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"helpFile","proto3Optional":true},{"name":"monitor_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"monitorName","proto3Optional":true},{"name":"oem_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"oemUrl","proto3Optional":true},{"name":"version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"version","proto3Optional":true},{"name":"driver_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"driverVersion","proto3Optional":true},{"name":"driver_date","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverDate","proto3Optional":true},{"name":"hardware_id","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_path","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infPath","proto3Optional":true},{"name":"printer_environment","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"printerEnvironment","proto3Optional":true},{"name":"print_processor","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"printProcessor","proto3Optional":true},{"name":"name","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"name","proto3Optional":true},{"name":"provider","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"provider","proto3Optional":true},{"name":"supported_platform","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportedPlatform","proto3Optional":true},{"name":"manufacturer","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_config_file"},{"name":"_data_file"},{"name":"_default_data_type"},{"name":"_driver_path"},{"name":"_file_path"},{"name":"_help_file"},{"name":"_monitor_name"},{"name":"_oem_url"},{"name":"_version"},{"name":"_driver_version"},{"name":"_driver_date"},{"name":"_hardware_id"},{"name":"_inf_path"},{"name":"_printer_environment"},{"name":"_print_processor"},{"name":"_name"},{"name":"_provider"},{"name":"_supported_platform"},{"name":"_manufacturer"}]},{"name":"SoundCard","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"type","proto3Optional":true},{"name":"subsystem_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"subsystemName","proto3Optional":true},{"name":"subsystem_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"parent","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"parent","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_type"},{"name":"_subsystem_name"},{"name":"_subsystem_manufacturer"},{"name":"_parent"}]},{"name":"GraphicsCard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"color_planes_count","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"colorPlanesCount","proto3Optional":true},{"name":"current_bits_per_pixel","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"currentBitsPerPixel","proto3Optional":true},{"name":"current_horizontal_resolution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"currentHorizontalResolution","proto3Optional":true},{"name":"current_number_of_colors","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"currentNumberOfColors","proto3Optional":true},{"name":"current_refresh_rate","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"currentRefreshRate","proto3Optional":true},{"name":"current_scan_mode","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"currentScanMode","proto3Optional":true},{"name":"current_vertical_resolution","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentVerticalResolution","proto3Optional":true},{"name":"device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"deviceId","proto3Optional":true},{"name":"device_specific_pens","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"driver_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverVersion","proto3Optional":true},{"name":"inf_filename","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"infFilename","proto3Optional":true},{"name":"inf_section","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infSection","proto3Optional":true},{"name":"installed_display_drivers","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"installedDisplayDrivers","proto3Optional":true},{"name":"is_monochrome","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"isMonochrome","proto3Optional":true},{"name":"manufacturer","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_refresh_rate","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"maxRefreshRate","proto3Optional":true},{"name":"memory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"memory","proto3Optional":true},{"name":"memory_type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":18,"jsonName":"memoryType","proto3Optional":true},{"name":"min_refresh_rate","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"minRefreshRate","proto3Optional":true},{"name":"pci_type","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"pciType","proto3Optional":true},{"name":"pnp_device_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"state","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"state","proto3Optional":true},{"name":"subsystem_manufacturer","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"subsystem_name","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"subsystemName","proto3Optional":true},{"name":"video_architecture","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"videoArchitecture","proto3Optional":true},{"name":"video_mode","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"videoMode","proto3Optional":true},{"name":"video_processor","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"videoProcessor","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_color_planes_count"},{"name":"_current_bits_per_pixel"},{"name":"_current_horizontal_resolution"},{"name":"_current_number_of_colors"},{"name":"_current_refresh_rate"},{"name":"_current_scan_mode"},{"name":"_current_vertical_resolution"},{"name":"_device_id"},{"name":"_device_specific_pens"},{"name":"_driver_version"},{"name":"_inf_filename"},{"name":"_inf_section"},{"name":"_installed_display_drivers"},{"name":"_is_monochrome"},{"name":"_manufacturer"},{"name":"_max_refresh_rate"},{"name":"_memory"},{"name":"_memory_type"},{"name":"_min_refresh_rate"},{"name":"_pci_type"},{"name":"_pnp_device_id"},{"name":"_state"},{"name":"_subsystem_manufacturer"},{"name":"_subsystem_name"},{"name":"_video_architecture"},{"name":"_video_mode"},{"name":"_video_processor"}]},{"name":"OpticalDrive","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"status","proto3Optional":true},{"name":"bus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bus","proto3Optional":true},{"name":"capabilities","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"cache_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"cacheSize","proto3Optional":true},{"name":"burn_support","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"burnSupport","proto3Optional":true},{"name":"cd_write","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"cdWrite","proto3Optional":true},{"name":"dvd_write","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dvdWrite","proto3Optional":true},{"name":"read_dvd","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"readDvd","proto3Optional":true},{"name":"drive_path","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"drivePath","proto3Optional":true},{"name":"firmware_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"connection","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"connection","proto3Optional":true},{"name":"is_underrun_protection_enabled","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"isUnderrunProtectionEnabled","proto3Optional":true},{"name":"manufacturer","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"manufacturer","proto3Optional":true},{"name":"mount_point","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"mountPoint","proto3Optional":true},{"name":"write_strategies","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"writeStrategies","proto3Optional":true},{"name":"scsi_bus","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"scsiBus","proto3Optional":true},{"name":"scsi_logical_unit","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"scsiLogicalUnit","proto3Optional":true},{"name":"scsi_port","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"scsiPort","proto3Optional":true},{"name":"scsi_target_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"scsiTargetId","proto3Optional":true},{"name":"media_burn_information","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"mediaBurnInformation","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_status"},{"name":"_bus"},{"name":"_cache_size"},{"name":"_burn_support"},{"name":"_cd_write"},{"name":"_dvd_write"},{"name":"_read_dvd"},{"name":"_drive_path"},{"name":"_firmware_version"},{"name":"_connection"},{"name":"_is_underrun_protection_enabled"},{"name":"_manufacturer"},{"name":"_mount_point"},{"name":"_write_strategies"},{"name":"_scsi_bus"},{"name":"_scsi_logical_unit"},{"name":"_scsi_port"},{"name":"_scsi_target_id"},{"name":"_media_burn_information"}]},{"name":"Motherboard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"config_options","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"configOptions"},{"name":"is_hosting_board","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isHostingBoard","proto3Optional":true},{"name":"is_powered_on","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isPoweredOn","proto3Optional":true},{"name":"location","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"serialNumber","proto3Optional":true},{"name":"tag","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tag","proto3Optional":true},{"name":"type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"type","proto3Optional":true},{"name":"version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true},{"name":"device","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MotherboardDevice","jsonName":"device"}],"oneofDecl":[{"name":"_is_hosting_board"},{"name":"_is_powered_on"},{"name":"_location"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_tag"},{"name":"_type"},{"name":"_version"}]},{"name":"MotherboardDevice","field":[{"name":"description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"enabled","proto3Optional":true},{"name":"tag","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"tag","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_description"},{"name":"_enabled"},{"name":"_tag"},{"name":"_type"}]},{"name":"Memory","field":[{"name":"installed_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"installedSize"},{"name":"physical_memory","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PhysicalMemory","jsonName":"physicalMemory"},{"name":"memory_array","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MemoryArray","jsonName":"memoryArray"}]},{"name":"PhysicalMemory","field":[{"name":"size","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"size","proto3Optional":true},{"name":"bank_locator","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bankLocator","proto3Optional":true},{"name":"configured_clock_speed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"configuredClockSpeed","proto3Optional":true},{"name":"configured_voltage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"configuredVoltage","proto3Optional":true},{"name":"data_width","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_locator","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"deviceLocator","proto3Optional":true},{"name":"form_factor","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"formFactor","proto3Optional":true},{"name":"interleave_data_depth","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"interleaveDataDepth","proto3Optional":true},{"name":"interleave_position","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"interleavePosition","proto3Optional":true},{"name":"manufacturer","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"part_number","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"partNumber","proto3Optional":true},{"name":"position_in_row","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"positionInRow","proto3Optional":true},{"name":"serial_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"serialNumber","proto3Optional":true},{"name":"set","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"set","proto3Optional":true},{"name":"sku","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"sku","proto3Optional":true},{"name":"speed","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"speed","proto3Optional":true},{"name":"state","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"state","proto3Optional":true},{"name":"total_width","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"totalWidth","proto3Optional":true},{"name":"type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":19,"jsonName":"type","proto3Optional":true},{"name":"type_detail","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":20,"jsonName":"typeDetail","proto3Optional":true}],"oneofDecl":[{"name":"_size"},{"name":"_bank_locator"},{"name":"_configured_clock_speed"},{"name":"_configured_voltage"},{"name":"_data_width"},{"name":"_device_locator"},{"name":"_form_factor"},{"name":"_interleave_data_depth"},{"name":"_interleave_position"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_part_number"},{"name":"_position_in_row"},{"name":"_serial_number"},{"name":"_set"},{"name":"_sku"},{"name":"_speed"},{"name":"_state"},{"name":"_total_width"},{"name":"_type"},{"name":"_type_detail"}]},{"name":"MemoryArray","field":[{"name":"max_capacity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"maxCapacity","proto3Optional":true},{"name":"location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"location","proto3Optional":true},{"name":"memory_devices","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"memoryDevices","proto3Optional":true},{"name":"memory_error_correction","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"memoryErrorCorrection","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"tag","proto3Optional":true},{"name":"use","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"use","proto3Optional":true}],"oneofDecl":[{"name":"_max_capacity"},{"name":"_location"},{"name":"_memory_devices"},{"name":"_memory_error_correction"},{"name":"_tag"},{"name":"_use"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"model_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"modelName"},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":4,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_monitor","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","oneofIndex":5,"jsonName":"catalogMonitor","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"},{"name":"_catalog_brand"},{"name":"_catalog_monitor"}]},{"name":"WindowsMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"AntivirusSoftware","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"guid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"guid","proto3Optional":true},{"name":"enabled","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"enabled","proto3Optional":true},{"name":"up_to_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"upToDate","proto3Optional":true},{"name":"software","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":4,"jsonName":"software","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_guid"},{"name":"_enabled"},{"name":"_up_to_date"},{"name":"_software"}]},{"name":"IpInfo","field":[{"name":"address","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"address"},{"name":"hostname","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"hostname","proto3Optional":true},{"name":"timezone","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"timezone","proto3Optional":true},{"name":"continent_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"continentCode","proto3Optional":true},{"name":"country_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"countryCode","proto3Optional":true},{"name":"region_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"regionCode","proto3Optional":true},{"name":"country_city","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"countryCity","proto3Optional":true},{"name":"isp","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"isp","proto3Optional":true},{"name":"organization","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"organization","proto3Optional":true}],"oneofDecl":[{"name":"_hostname"},{"name":"_timezone"},{"name":"_continent_code"},{"name":"_country_code"},{"name":"_region_code"},{"name":"_country_city"},{"name":"_isp"},{"name":"_organization"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"nreHash","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":19,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_software","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":20,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"catalog_parent","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":21,"jsonName":"catalogParent","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_raw_hash"},{"name":"_nre_hash"},{"name":"_catalog_brand"},{"name":"_catalog_software"},{"name":"_catalog_parent"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_tiktok_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true},{"name":"CatalogLookup","inputType":".com.lansweeper.dp.outbound.v1.CatalogLookupRequest","outputType":".com.lansweeper.dp.outbound.v1.CatalogLookupResponse","options":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,1354,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,33,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[38,0,41,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[38,8,24]},{"path":[4,0,2,0],"span":[39,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[39,2,12]},{"path":[4,0,2,0,1],"span":[39,13,24]},{"path":[4,0,2,0,3],"span":[39,27,28]},{"path":[4,1],"span":[43,0,49,1]},{"path":[4,1,1],"span":[43,8,25]},{"path":[4,1,2,0],"span":[44,2,19]},{"path":[4,1,2,0,5],"span":[44,2,6]},{"path":[4,1,2,0,1],"span":[44,7,14]},{"path":[4,1,2,0,3],"span":[44,17,18]},{"path":[4,1,2,1],"span":[45,2,40]},{"path":[4,1,2,1,4],"span":[45,2,10]},{"path":[4,1,2,1,5],"span":[45,11,17]},{"path":[4,1,2,1,1],"span":[45,18,35]},{"path":[4,1,2,1,3],"span":[45,38,39]},{"path":[4,1,2,2],"span":[47,2,29]},{"path":[4,1,2,2,4],"span":[47,2,10]},{"path":[4,1,2,2,6],"span":[47,11,17]},{"path":[4,1,2,2,1],"span":[47,18,24]},{"path":[4,1,2,2,3],"span":[47,27,28]},{"path":[4,1,2,3],"span":[48,2,30]},{"path":[4,1,2,3,4],"span":[48,2,10]},{"path":[4,1,2,3,6],"span":[48,11,17]},{"path":[4,1,2,3,1],"span":[48,18,25]},{"path":[4,1,2,3,3],"span":[48,28,29]},{"path":[4,2],"span":[51,0,53,1]},{"path":[4,2,1],"span":[51,8,25]},{"path":[4,2,2,0],"span":[52,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[52,2,12]},{"path":[4,2,2,0,1],"span":[52,13,19]},{"path":[4,2,2,0,3],"span":[52,22,23]},{"path":[4,3],"span":[55,0,58,1]},{"path":[4,3,1],"span":[55,8,26]},{"path":[4,3,2,0],"span":[56,2,20]},{"path":[4,3,2,0,6],"span":[56,2,8]},{"path":[4,3,2,0,1],"span":[56,9,15]},{"path":[4,3,2,0,3],"span":[56,18,19]},{"path":[4,3,2,1],"span":[57,2,30]},{"path":[4,3,2,1,4],"span":[57,2,10]},{"path":[4,3,2,1,6],"span":[57,11,17]},{"path":[4,3,2,1,1],"span":[57,18,25]},{"path":[4,3,2,1,3],"span":[57,28,29]},{"path":[4,4],"span":[60,0,68,1]},{"path":[4,4,1],"span":[60,8,28]},{"path":[4,4,2,0],"span":[61,2,30]},{"path":[4,4,2,0,4],"span":[61,2,10]},{"path":[4,4,2,0,5],"span":[61,11,16]},{"path":[4,4,2,0,1],"span":[61,17,25]},{"path":[4,4,2,0,3],"span":[61,28,29]},{"path":[4,4,2,1],"span":[62,2,30]},{"path":[4,4,2,1,4],"span":[62,2,10]},{"path":[4,4,2,1,5],"span":[62,11,16]},{"path":[4,4,2,1,1],"span":[62,17,25]},{"path":[4,4,2,1,3],"span":[62,28,29]},{"path":[4,4,2,2],"span":[63,2,27]},{"path":[4,4,2,2,4],"span":[63,2,10]},{"path":[4,4,2,2,5],"span":[63,11,16]},{"path":[4,4,2,2,1],"span":[63,17,22]},{"path":[4,4,2,2,3],"span":[63,25,26]},{"path":[4,4,2,3],"span":[64,2,27]},{"path":[4,4,2,3,4],"span":[64,2,10]},{"path":[4,4,2,3,5],"span":[64,11,16]},{"path":[4,4,2,3,1],"span":[64,17,22]},{"path":[4,4,2,3,3],"span":[64,25,26]},{"path":[4,4,2,4],"span":[65,2,32]},{"path":[4,4,2,4,4],"span":[65,2,10]},{"path":[4,4,2,4,5],"span":[65,11,16]},{"path":[4,4,2,4,1],"span":[65,17,27]},{"path":[4,4,2,4,3],"span":[65,30,31]},{"path":[4,4,2,5],"span":[67,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[67,2,10]},{"path":[4,4,2,5,5],"span":[67,11,15]},{"path":[4,4,2,5,1],"span":[67,16,30]},{"path":[4,4,2,5,3],"span":[67,33,35]},{"path":[4,5],"span":[70,0,76,1]},{"path":[4,5,1],"span":[70,8,29]},{"path":[4,5,2,0],"span":[71,2,34]},{"path":[4,5,2,0,4],"span":[71,2,10]},{"path":[4,5,2,0,6],"span":[71,11,23]},{"path":[4,5,2,0,1],"span":[71,24,29]},{"path":[4,5,2,0,3],"span":[71,32,33]},{"path":[4,5,2,1],"span":[72,2,34]},{"path":[4,5,2,1,4],"span":[72,2,10]},{"path":[4,5,2,1,6],"span":[72,11,23]},{"path":[4,5,2,1,1],"span":[72,24,29]},{"path":[4,5,2,1,3],"span":[72,32,33]},{"path":[4,5,2,2],"span":[73,2,28]},{"path":[4,5,2,2,4],"span":[73,2,10]},{"path":[4,5,2,2,6],"span":[73,11,20]},{"path":[4,5,2,2,1],"span":[73,21,23]},{"path":[4,5,2,2,3],"span":[73,26,27]},{"path":[4,5,2,3],"span":[74,2,34]},{"path":[4,5,2,3,4],"span":[74,2,10]},{"path":[4,5,2,3,6],"span":[74,11,26]},{"path":[4,5,2,3,1],"span":[74,27,29]},{"path":[4,5,2,3,3],"span":[74,32,33]},{"path":[4,5,2,4],"span":[75,2,38]},{"path":[4,5,2,4,4],"span":[75,2,10]},{"path":[4,5,2,4,6],"span":[75,11,25]},{"path":[4,5,2,4,1],"span":[75,26,33]},{"path":[4,5,2,4,3],"span":[75,36,37]},{"path":[4,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[99,0,175,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[99,8,13]},{"path":[4,8,2,0],"span":[101,2,20]},{"path":[4,8,2,0,6],"span":[101,2,12]},{"path":[4,8,2,0,1],"span":[101,13,15]},{"path":[4,8,2,0,3],"span":[101,18,19]},{"path":[4,8,2,1],"span":[103,2,44]},{"path":[4,8,2,1,6],"span":[103,2,27]},{"path":[4,8,2,1,1],"span":[103,28,39]},{"path":[4,8,2,1,3],"span":[103,42,43]},{"path":[4,8,2,2],"span":[104,2,43]},{"path":[4,8,2,2,6],"span":[104,2,27]},{"path":[4,8,2,2,1],"span":[104,28,38]},{"path":[4,8,2,2,3],"span":[104,41,42]},{"path":[4,8,2,3],"span":[105,2,45]},{"path":[4,8,2,3,6],"span":[105,2,27]},{"path":[4,8,2,3,1],"span":[105,28,40]},{"path":[4,8,2,3,3],"span":[105,43,44]},{"path":[4,8,2,4],"span":[106,2,46]},{"path":[4,8,2,4,6],"span":[106,2,27]},{"path":[4,8,2,4,1],"span":[106,28,41]},{"path":[4,8,2,4,3],"span":[106,44,45]},{"path":[4,8,2,5],"span":[115,2,34],"leadingComments":"\n This is unique and source of UUID asset_id. Kept also in verbose key format for debug/future use.\n The key is not globally unique across sites, but it's made up with strongest attributes of the asset.\n Like e.g.: brand/model/serial of a Windows PC.\n Like e.g.: MAC address of CDR devices (if present).\n"},{"path":[4,8,2,5,4],"span":[115,2,10]},{"path":[4,8,2,5,5],"span":[115,11,17]},{"path":[4,8,2,5,1],"span":[115,18,28]},{"path":[4,8,2,5,3],"span":[115,31,33]},{"path":[4,8,2,6],"span":[117,2,37]},{"path":[4,8,2,6,4],"span":[117,2,10]},{"path":[4,8,2,6,6],"span":[117,11,20]},{"path":[4,8,2,6,1],"span":[117,21,31]},{"path":[4,8,2,6,3],"span":[117,34,36]},{"path":[4,8,2,7],"span":[119,2,42],"trailingComments":" last synced source name and version\n"},{"path":[4,8,2,7,4],"span":[119,2,10]},{"path":[4,8,2,7,5],"span":[119,11,17]},{"path":[4,8,2,7,1],"span":[119,18,36]},{"path":[4,8,2,7,3],"span":[119,39,41]},{"path":[4,8,2,8],"span":[121,2,24]},{"path":[4,8,2,8,4],"span":[121,2,10]},{"path":[4,8,2,8,6],"span":[121,11,14]},{"path":[4,8,2,8,1],"span":[121,15,18]},{"path":[4,8,2,8,3],"span":[121,21,23]},{"path":[4,8,2,9],"span":[122,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,9,4],"span":[122,2,10]},{"path":[4,8,2,9,6],"span":[122,11,19]},{"path":[4,8,2,9,1],"span":[122,20,28]},{"path":[4,8,2,9,3],"span":[122,31,33]},{"path":[4,8,2,10],"span":[124,2,22]},{"path":[4,8,2,10,6],"span":[124,2,12]},{"path":[4,8,2,10,1],"span":[124,13,17]},{"path":[4,8,2,10,3],"span":[124,20,21]},{"path":[4,8,2,11],"span":[126,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,11,4],"span":[126,2,10]},{"path":[4,8,2,11,6],"span":[126,11,17]},{"path":[4,8,2,11,1],"span":[126,18,29]},{"path":[4,8,2,11,3],"span":[126,32,34]},{"path":[4,8,2,12],"span":[128,2,31]},{"path":[4,8,2,12,4],"span":[128,2,10]},{"path":[4,8,2,12,6],"span":[128,11,23]},{"path":[4,8,2,12,1],"span":[128,24,26]},{"path":[4,8,2,12,3],"span":[128,29,30]},{"path":[4,8,2,13],"span":[129,2,34]},{"path":[4,8,2,13,4],"span":[129,2,10]},{"path":[4,8,2,13,6],"span":[129,11,26]},{"path":[4,8,2,13,1],"span":[129,27,29]},{"path":[4,8,2,13,3],"span":[129,32,33]},{"path":[4,8,2,14],"span":[131,2,52]},{"path":[4,8,2,14,4],"span":[131,2,10]},{"path":[4,8,2,14,6],"span":[131,11,28]},{"path":[4,8,2,14,1],"span":[131,29,47]},{"path":[4,8,2,14,3],"span":[131,50,51]},{"path":[4,8,2,15],"span":[132,2,44]},{"path":[4,8,2,15,4],"span":[132,2,10]},{"path":[4,8,2,15,6],"span":[132,11,28]},{"path":[4,8,2,15,1],"span":[132,29,38]},{"path":[4,8,2,15,3],"span":[132,41,43]},{"path":[4,8,2,16],"span":[134,2,51]},{"path":[4,8,2,16,4],"span":[134,2,10]},{"path":[4,8,2,16,6],"span":[134,11,27]},{"path":[4,8,2,16,1],"span":[134,28,45]},{"path":[4,8,2,16,3],"span":[134,48,50]},{"path":[4,8,2,17],"span":[136,2,53]},{"path":[4,8,2,17,4],"span":[136,2,10]},{"path":[4,8,2,17,6],"span":[136,11,28]},{"path":[4,8,2,17,1],"span":[136,29,47]},{"path":[4,8,2,17,3],"span":[136,50,52]},{"path":[4,8,2,18],"span":[138,2,46]},{"path":[4,8,2,18,4],"span":[138,2,10]},{"path":[4,8,2,18,6],"span":[138,11,31]},{"path":[4,8,2,18,1],"span":[138,32,40]},{"path":[4,8,2,18,3],"span":[138,43,45]},{"path":[4,8,2,19],"span":[139,2,50]},{"path":[4,8,2,19,4],"span":[139,2,10]},{"path":[4,8,2,19,6],"span":[139,11,33]},{"path":[4,8,2,19,1],"span":[139,34,44]},{"path":[4,8,2,19,3],"span":[139,47,49]},{"path":[4,8,2,20],"span":[140,2,52]},{"path":[4,8,2,20,4],"span":[140,2,10]},{"path":[4,8,2,20,6],"span":[140,11,34]},{"path":[4,8,2,20,1],"span":[140,35,46]},{"path":[4,8,2,20,3],"span":[140,49,51]},{"path":[4,8,2,21],"span":[141,2,50]},{"path":[4,8,2,21,4],"span":[141,2,10]},{"path":[4,8,2,21,6],"span":[141,11,33]},{"path":[4,8,2,21,1],"span":[141,34,44]},{"path":[4,8,2,21,3],"span":[141,47,49]},{"path":[4,8,2,22],"span":[143,2,36]},{"path":[4,8,2,22,4],"span":[143,2,10]},{"path":[4,8,2,22,6],"span":[143,11,20]},{"path":[4,8,2,22,1],"span":[143,21,30]},{"path":[4,8,2,22,3],"span":[143,33,35]},{"path":[4,8,2,23],"span":[144,2,32]},{"path":[4,8,2,23,4],"span":[144,2,10]},{"path":[4,8,2,23,6],"span":[144,11,18]},{"path":[4,8,2,23,1],"span":[144,19,26]},{"path":[4,8,2,23,3],"span":[144,29,31]},{"path":[4,8,2,24],"span":[145,2,30]},{"path":[4,8,2,24,4],"span":[145,2,10]},{"path":[4,8,2,24,6],"span":[145,11,17]},{"path":[4,8,2,24,1],"span":[145,18,24]},{"path":[4,8,2,24,3],"span":[145,27,29]},{"path":[4,8,2,25],"span":[146,2,40]},{"path":[4,8,2,25,4],"span":[146,2,10]},{"path":[4,8,2,25,6],"span":[146,11,22]},{"path":[4,8,2,25,1],"span":[146,23,34]},{"path":[4,8,2,25,3],"span":[146,37,39]},{"path":[4,8,2,26],"span":[147,2,43]},{"path":[4,8,2,26,4],"span":[147,2,10]},{"path":[4,8,2,26,6],"span":[147,11,23]},{"path":[4,8,2,26,1],"span":[147,24,37]},{"path":[4,8,2,26,3],"span":[147,40,42]},{"path":[4,8,2,27],"span":[148,2,37]},{"path":[4,8,2,27,4],"span":[148,2,10]},{"path":[4,8,2,27,6],"span":[148,11,20]},{"path":[4,8,2,27,1],"span":[148,21,31]},{"path":[4,8,2,27,3],"span":[148,34,36]},{"path":[4,8,2,28],"span":[149,2,41]},{"path":[4,8,2,28,4],"span":[149,2,10]},{"path":[4,8,2,28,6],"span":[149,11,22]},{"path":[4,8,2,28,1],"span":[149,23,35]},{"path":[4,8,2,28,3],"span":[149,38,40]},{"path":[4,8,2,29],"span":[150,2,45]},{"path":[4,8,2,29,4],"span":[150,2,10]},{"path":[4,8,2,29,6],"span":[150,11,24]},{"path":[4,8,2,29,1],"span":[150,25,39]},{"path":[4,8,2,29,3],"span":[150,42,44]},{"path":[4,8,2,30],"span":[151,2,43]},{"path":[4,8,2,30,4],"span":[151,2,10]},{"path":[4,8,2,30,6],"span":[151,11,23]},{"path":[4,8,2,30,1],"span":[151,24,37]},{"path":[4,8,2,30,3],"span":[151,40,42]},{"path":[4,8,2,31],"span":[152,2,37]},{"path":[4,8,2,31,4],"span":[152,2,10]},{"path":[4,8,2,31,6],"span":[152,11,20]},{"path":[4,8,2,31,1],"span":[152,21,31]},{"path":[4,8,2,31,3],"span":[152,34,36]},{"path":[4,8,2,32],"span":[153,2,34]},{"path":[4,8,2,32,4],"span":[153,2,10]},{"path":[4,8,2,32,6],"span":[153,11,19]},{"path":[4,8,2,32,1],"span":[153,20,28]},{"path":[4,8,2,32,3],"span":[153,31,33]},{"path":[4,8,2,33],"span":[154,2,47]},{"path":[4,8,2,33,4],"span":[154,2,10]},{"path":[4,8,2,33,6],"span":[154,11,25]},{"path":[4,8,2,33,1],"span":[154,26,41]},{"path":[4,8,2,33,3],"span":[154,44,46]},{"path":[4,8,2,34],"span":[156,2,48]},{"path":[4,8,2,34,4],"span":[156,2,10]},{"path":[4,8,2,34,6],"span":[156,11,25]},{"path":[4,8,2,34,1],"span":[156,26,42]},{"path":[4,8,2,34,3],"span":[156,45,47]},{"path":[4,8,2,35],"span":[157,2,39]},{"path":[4,8,2,35,4],"span":[157,2,10]},{"path":[4,8,2,35,6],"span":[157,11,21]},{"path":[4,8,2,35,1],"span":[157,22,33]},{"path":[4,8,2,35,3],"span":[157,36,38]},{"path":[4,8,2,36],"span":[158,2,30]},{"path":[4,8,2,36,4],"span":[158,2,10]},{"path":[4,8,2,36,6],"span":[158,11,17]},{"path":[4,8,2,36,1],"span":[158,18,24]},{"path":[4,8,2,36,3],"span":[158,27,29]},{"path":[4,8,2,37],"span":[159,2,47]},{"path":[4,8,2,37,4],"span":[159,2,10]},{"path":[4,8,2,37,6],"span":[159,11,25]},{"path":[4,8,2,37,1],"span":[159,26,41]},{"path":[4,8,2,37,3],"span":[159,44,46]},{"path":[4,8,2,38],"span":[160,2,47]},{"path":[4,8,2,38,4],"span":[160,2,10]},{"path":[4,8,2,38,6],"span":[160,11,25]},{"path":[4,8,2,38,1],"span":[160,26,41]},{"path":[4,8,2,38,3],"span":[160,44,46]},{"path":[4,8,2,39],"span":[162,2,35]},{"path":[4,8,2,39,4],"span":[162,2,10]},{"path":[4,8,2,39,6],"span":[162,11,19]},{"path":[4,8,2,39,1],"span":[162,20,29]},{"path":[4,8,2,39,3],"span":[162,32,34]},{"path":[4,8,2,40],"span":[164,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,40,4],"span":[164,2,10]},{"path":[4,8,2,40,6],"span":[164,11,19]},{"path":[4,8,2,40,1],"span":[164,20,29]},{"path":[4,8,2,40,3],"span":[164,32,34]},{"path":[4,8,2,41],"span":[166,2,34]},{"path":[4,8,2,41,4],"span":[166,2,10]},{"path":[4,8,2,41,6],"span":[166,11,22]},{"path":[4,8,2,41,1],"span":[166,23,28]},{"path":[4,8,2,41,3],"span":[166,31,33]},{"path":[4,9],"span":[193,0,196,1],"leadingComments":"\n A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.\n It is used to associate metadata or additional information with an entity or data element.\n The key represents the identifier or name of the tag, while the value contains the associated data or information.\n The key serves as a unique label or reference that can be used to retrieve or manipulate the value associated with it.\n In this context, the key can be thought of as a variable name or a dictionary key, and the value can be any data type or object.\n\n Among other things we also use this to mark the Source.\n * E.g.: Source: LS/IT/CDR\n * E.g.: Source: LS/IT/Scan-WMI\n * E.g.: Source: LS/IT/Scan-MAC\n * E.g.: Source: LS/IT/Scan-Linux\n * E.g.: Source: LS/IT/OT (OT like this?)\n * E.g.: Source: LS/CDK (cloud discovery?)\n * E.g.: Source: LS/DataCore (reconciliation)\n"},{"path":[4,9,1],"span":[193,8,11]},{"path":[4,9,2,0],"span":[194,2,17]},{"path":[4,9,2,0,5],"span":[194,2,8]},{"path":[4,9,2,0,1],"span":[194,9,12]},{"path":[4,9,2,0,3],"span":[194,15,16]},{"path":[4,9,2,1],"span":[195,2,28]},{"path":[4,9,2,1,4],"span":[195,2,10]},{"path":[4,9,2,1,5],"span":[195,11,17]},{"path":[4,9,2,1,1],"span":[195,18,23]},{"path":[4,9,2,1,3],"span":[195,26,27]},{"path":[4,10],"span":[203,0,210,1],"leadingComments":"\n A relation between two entities refers to the connection, association, or interaction that exists between them.\n It signifies the way in which these entities are related or linked to each other based on certain characteristics,\n attributes, behaviors, dependencies, or roles they share.\n"},{"path":[4,10,1],"span":[203,8,16]},{"path":[4,10,2,0],"span":[204,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[204,2,10]},{"path":[4,10,2,0,6],"span":[204,11,21]},{"path":[4,10,2,0,1],"span":[204,22,26]},{"path":[4,10,2,0,3],"span":[204,29,30]},{"path":[4,10,2,1],"span":[205,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[205,2,10]},{"path":[4,10,2,1,6],"span":[205,11,21]},{"path":[4,10,2,1,1],"span":[205,22,24]},{"path":[4,10,2,1,3],"span":[205,27,28]},{"path":[4,10,2,2],"span":[206,2,38]},{"path":[4,10,2,2,6],"span":[206,2,27]},{"path":[4,10,2,2,1],"span":[206,28,33]},{"path":[4,10,2,2,3],"span":[206,36,37]},{"path":[4,10,2,3],"span":[207,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,10,2,3,4],"span":[207,2,10]},{"path":[4,10,2,3,6],"span":[207,11,36]},{"path":[4,10,2,3,1],"span":[207,37,40]},{"path":[4,10,2,3,3],"span":[207,43,44]},{"path":[4,10,2,4],"span":[208,2,18]},{"path":[4,10,2,4,5],"span":[208,2,8]},{"path":[4,10,2,4,1],"span":[208,9,13]},{"path":[4,10,2,4,3],"span":[208,16,17]},{"path":[4,10,2,5],"span":[209,2,23]},{"path":[4,10,2,5,4],"span":[209,2,10]},{"path":[4,10,2,5,6],"span":[209,11,14]},{"path":[4,10,2,5,1],"span":[209,15,18]},{"path":[4,10,2,5,3],"span":[209,21,22]},{"path":[4,11],"span":[220,0,222,1],"leadingComments":"\n Cloud entity coming from CDK scanner.\n This could be extended later on to become more than a carrier of opaque info.\n I.e. the any object contains objects as defined in discovery_cloud.proto\n Only objects needing to be mapped into common/core asset fields are handled\n the rest is fast-forwarded ahead to the chain to allow us to avoid useless\n early heavy mapping and post-pone it only where/when it's needed.\n"},{"path":[4,11,1],"span":[220,8,19]},{"path":[4,11,2,0],"span":[221,2,31]},{"path":[4,11,2,0,6],"span":[221,2,21]},{"path":[4,11,2,0,1],"span":[221,22,26]},{"path":[4,11,2,0,3],"span":[221,29,30]},{"path":[4,12],"span":[232,0,244,1],"leadingComments":"\n OT module/card specific info.\n Information about belonging rack and:\n - if it's main module, reference to all sub-modules\n - if it's sub-module, reference to parent main\n HW info: in HW standard section.\n OS info: in OS standard section.\n"},{"path":[4,12,1],"span":[232,8,16]},{"path":[4,12,2,0],"span":[233,2,37]},{"path":[4,12,2,0,4],"span":[233,2,10]},{"path":[4,12,2,0,5],"span":[233,11,17]},{"path":[4,12,2,0,1],"span":[233,18,32]},{"path":[4,12,2,0,3],"span":[233,35,36]},{"path":[4,12,2,1],"span":[234,2,27]},{"path":[4,12,2,1,4],"span":[234,2,10]},{"path":[4,12,2,1,6],"span":[234,11,17]},{"path":[4,12,2,1,1],"span":[234,18,22]},{"path":[4,12,2,1,3],"span":[234,25,26]},{"path":[4,12,2,2],"span":[236,2,26]},{"path":[4,12,2,2,5],"span":[236,2,6]},{"path":[4,12,2,2,1],"span":[236,7,21]},{"path":[4,12,2,2,3],"span":[236,24,25]},{"path":[4,12,2,3],"span":[237,2,27]},{"path":[4,12,2,3,5],"span":[237,2,6]},{"path":[4,12,2,3,1],"span":[237,7,22]},{"path":[4,12,2,3,3],"span":[237,25,26]},{"path":[4,12,2,4],"span":[239,2,34]},{"path":[4,12,2,4,4],"span":[239,2,10]},{"path":[4,12,2,4,5],"span":[239,11,17]},{"path":[4,12,2,4,1],"span":[239,18,29]},{"path":[4,12,2,4,3],"span":[239,32,33]},{"path":[4,12,2,5],"span":[240,2,40]},{"path":[4,12,2,5,4],"span":[240,2,10]},{"path":[4,12,2,5,6],"span":[240,11,26]},{"path":[4,12,2,5,1],"span":[240,27,35]},{"path":[4,12,2,5,3],"span":[240,38,39]},{"path":[4,12,2,6],"span":[242,2,33]},{"path":[4,12,2,6,4],"span":[242,2,10]},{"path":[4,12,2,6,5],"span":[242,11,17]},{"path":[4,12,2,6,1],"span":[242,18,28]},{"path":[4,12,2,6,3],"span":[242,31,32]},{"path":[4,13],"span":[247,0,254,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,13,1],"span":[247,8,14]},{"path":[4,13,2,0],"span":[248,2,19]},{"path":[4,13,2,0,5],"span":[248,2,7]},{"path":[4,13,2,0,1],"span":[248,8,14]},{"path":[4,13,2,0,3],"span":[248,17,18]},{"path":[4,13,2,1],"span":[249,2,27]},{"path":[4,13,2,1,4],"span":[249,2,10]},{"path":[4,13,2,1,5],"span":[249,11,17]},{"path":[4,13,2,1,1],"span":[249,18,22]},{"path":[4,13,2,1,3],"span":[249,25,26]},{"path":[4,13,2,2],"span":[250,2,27]},{"path":[4,13,2,2,4],"span":[250,2,10]},{"path":[4,13,2,2,5],"span":[250,11,17]},{"path":[4,13,2,2,1],"span":[250,18,22]},{"path":[4,13,2,2,3],"span":[250,25,26]},{"path":[4,13,2,3],"span":[251,2,17]},{"path":[4,13,2,3,5],"span":[251,2,7]},{"path":[4,13,2,3,1],"span":[251,8,12]},{"path":[4,13,2,3,3],"span":[251,15,16]},{"path":[4,13,2,4],"span":[252,2,33],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,13,2,4,4],"span":[252,2,10]},{"path":[4,13,2,4,5],"span":[252,11,16]},{"path":[4,13,2,4,1],"span":[252,17,28]},{"path":[4,13,2,4,3],"span":[252,31,32]},{"path":[4,13,2,5],"span":[253,2,32],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,13,2,5,4],"span":[253,2,10]},{"path":[4,13,2,5,5],"span":[253,11,16]},{"path":[4,13,2,5,1],"span":[253,17,27]},{"path":[4,13,2,5,3],"span":[253,30,31]},{"path":[4,14],"span":[256,0,259,1]},{"path":[4,14,1],"span":[256,8,23]},{"path":[4,14,2,0],"span":[257,2,17]},{"path":[4,14,2,0,5],"span":[257,2,8]},{"path":[4,14,2,0,1],"span":[257,9,12]},{"path":[4,14,2,0,3],"span":[257,15,16]},{"path":[4,14,2,1],"span":[258,2,19]},{"path":[4,14,2,1,5],"span":[258,2,8]},{"path":[4,14,2,1,1],"span":[258,9,14]},{"path":[4,14,2,1,3],"span":[258,17,18]},{"path":[4,15],"span":[265,0,274,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,15,1],"span":[265,8,17]},{"path":[4,15,2,0],"span":[267,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,15,2,0,5],"span":[267,2,8]},{"path":[4,15,2,0,1],"span":[267,9,16]},{"path":[4,15,2,0,3],"span":[267,19,20]},{"path":[4,15,2,1],"span":[269,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,15,2,1,5],"span":[269,2,7]},{"path":[4,15,2,1,1],"span":[269,8,13]},{"path":[4,15,2,1,3],"span":[269,16,17]},{"path":[4,15,2,2],"span":[271,2,32],"leadingComments":" Fing Type\n"},{"path":[4,15,2,2,4],"span":[271,2,10]},{"path":[4,15,2,2,5],"span":[271,11,17]},{"path":[4,15,2,2,1],"span":[271,18,27]},{"path":[4,15,2,2,3],"span":[271,30,31]},{"path":[4,15,2,3],"span":[273,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,15,2,3,4],"span":[273,2,10]},{"path":[4,15,2,3,5],"span":[273,11,17]},{"path":[4,15,2,3,1],"span":[273,18,26]},{"path":[4,15,2,3,3],"span":[273,29,30]},{"path":[4,16],"span":[279,0,285,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,16,1],"span":[279,8,17]},{"path":[4,16,2,0],"span":[280,2,21],"trailingComments":" name of section\n"},{"path":[4,16,2,0,5],"span":[280,2,8]},{"path":[4,16,2,0,1],"span":[280,9,16]},{"path":[4,16,2,0,3],"span":[280,19,20]},{"path":[4,16,2,1],"span":[281,2,19],"trailingComments":" error descr\n"},{"path":[4,16,2,1,5],"span":[281,2,8]},{"path":[4,16,2,1,1],"span":[281,9,14]},{"path":[4,16,2,1,3],"span":[281,17,18]},{"path":[4,16,2,2],"span":[282,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,16,2,2,4],"span":[282,2,10]},{"path":[4,16,2,2,5],"span":[282,11,17]},{"path":[4,16,2,2,1],"span":[282,18,24]},{"path":[4,16,2,2,3],"span":[282,27,28]},{"path":[4,16,2,3],"span":[283,2,51]},{"path":[4,16,2,3,4],"span":[283,2,10]},{"path":[4,16,2,3,6],"span":[283,11,36]},{"path":[4,16,2,3,1],"span":[283,37,46]},{"path":[4,16,2,3,3],"span":[283,49,50]},{"path":[4,16,2,4],"span":[284,2,30]},{"path":[4,16,2,4,4],"span":[284,2,10]},{"path":[4,16,2,4,5],"span":[284,11,16]},{"path":[4,16,2,4,1],"span":[284,17,25]},{"path":[4,16,2,4,3],"span":[284,28,29]},{"path":[4,17],"span":[290,0,300,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,17,1],"span":[290,8,18]},{"path":[4,17,2,0],"span":[291,2,21]},{"path":[4,17,2,0,6],"span":[291,2,11]},{"path":[4,17,2,0,1],"span":[291,12,16]},{"path":[4,17,2,0,3],"span":[291,19,20]},{"path":[4,17,2,1],"span":[292,2,18]},{"path":[4,17,2,1,5],"span":[292,2,8]},{"path":[4,17,2,1,1],"span":[292,9,13]},{"path":[4,17,2,1,3],"span":[292,16,17]},{"path":[4,17,2,2],"span":[293,2,29]},{"path":[4,17,2,2,4],"span":[293,2,10]},{"path":[4,17,2,2,5],"span":[293,11,17]},{"path":[4,17,2,2,1],"span":[293,18,24]},{"path":[4,17,2,2,3],"span":[293,27,28]},{"path":[4,17,2,3],"span":[294,2,33]},{"path":[4,17,2,3,4],"span":[294,2,10]},{"path":[4,17,2,3,5],"span":[294,11,17]},{"path":[4,17,2,3,1],"span":[294,18,28]},{"path":[4,17,2,3,3],"span":[294,31,32]},{"path":[4,17,2,4],"span":[295,2,29]},{"path":[4,17,2,4,4],"span":[295,2,10]},{"path":[4,17,2,4,5],"span":[295,11,17]},{"path":[4,17,2,4,1],"span":[295,18,24]},{"path":[4,17,2,4,3],"span":[295,27,28]},{"path":[4,17,2,5],"span":[296,2,26]},{"path":[4,17,2,5,4],"span":[296,2,10]},{"path":[4,17,2,5,5],"span":[296,11,17]},{"path":[4,17,2,5,1],"span":[296,18,21]},{"path":[4,17,2,5,3],"span":[296,24,25]},{"path":[4,17,2,6],"span":[297,2,33]},{"path":[4,17,2,6,4],"span":[297,2,10]},{"path":[4,17,2,6,5],"span":[297,11,17]},{"path":[4,17,2,6,1],"span":[297,18,28]},{"path":[4,17,2,6,3],"span":[297,31,32]},{"path":[4,17,2,7],"span":[298,2,32]},{"path":[4,17,2,7,4],"span":[298,2,10]},{"path":[4,17,2,7,5],"span":[298,11,17]},{"path":[4,17,2,7,1],"span":[298,18,27]},{"path":[4,17,2,7,3],"span":[298,30,31]},{"path":[4,17,2,8],"span":[299,2,27]},{"path":[4,17,2,8,4],"span":[299,2,10]},{"path":[4,17,2,8,5],"span":[299,11,17]},{"path":[4,17,2,8,1],"span":[299,18,22]},{"path":[4,17,2,8,3],"span":[299,25,26]},{"path":[4,18],"span":[302,0,307,1]},{"path":[4,18,1],"span":[302,8,16]},{"path":[4,18,2,0],"span":[303,4,25]},{"path":[4,18,2,0,5],"span":[303,4,10]},{"path":[4,18,2,0,1],"span":[303,11,20]},{"path":[4,18,2,0,3],"span":[303,23,24]},{"path":[4,18,2,1],"span":[304,4,34]},{"path":[4,18,2,1,4],"span":[304,4,12]},{"path":[4,18,2,1,5],"span":[304,13,19]},{"path":[4,18,2,1,1],"span":[304,20,29]},{"path":[4,18,2,1,3],"span":[304,32,33]},{"path":[4,18,2,2],"span":[305,4,28]},{"path":[4,18,2,2,4],"span":[305,4,12]},{"path":[4,18,2,2,5],"span":[305,13,19]},{"path":[4,18,2,2,1],"span":[305,20,23]},{"path":[4,18,2,2,3],"span":[305,26,27]},{"path":[4,18,2,3],"span":[306,4,28]},{"path":[4,18,2,3,4],"span":[306,4,12]},{"path":[4,18,2,3,5],"span":[306,13,19]},{"path":[4,18,2,3,1],"span":[306,20,23]},{"path":[4,18,2,3,3],"span":[306,26,27]},{"path":[4,19],"span":[309,0,339,1]},{"path":[4,19,1],"span":[309,8,20]},{"path":[4,19,2,0],"span":[310,2,29]},{"path":[4,19,2,0,4],"span":[310,2,10]},{"path":[4,19,2,0,5],"span":[310,11,16]},{"path":[4,19,2,0,1],"span":[310,17,24]},{"path":[4,19,2,0,3],"span":[310,27,28]},{"path":[4,19,2,1],"span":[313,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,19,2,1,4],"span":[313,2,10]},{"path":[4,19,2,1,5],"span":[313,11,16]},{"path":[4,19,2,1,1],"span":[313,17,24]},{"path":[4,19,2,1,3],"span":[313,27,28]},{"path":[4,19,2,2],"span":[316,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,19,2,2,4],"span":[316,2,10]},{"path":[4,19,2,2,5],"span":[316,11,16]},{"path":[4,19,2,2,1],"span":[316,17,25]},{"path":[4,19,2,2,3],"span":[316,28,29]},{"path":[4,19,2,3],"span":[319,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,19,2,3,4],"span":[319,2,10]},{"path":[4,19,2,3,5],"span":[319,11,16]},{"path":[4,19,2,3,1],"span":[319,17,26]},{"path":[4,19,2,3,3],"span":[319,29,30]},{"path":[4,19,2,4],"span":[321,2,30]},{"path":[4,19,2,4,4],"span":[321,2,10]},{"path":[4,19,2,4,5],"span":[321,11,15]},{"path":[4,19,2,4,1],"span":[321,16,25]},{"path":[4,19,2,4,3],"span":[321,28,29]},{"path":[4,19,2,5],"span":[322,2,29]},{"path":[4,19,2,5,4],"span":[322,2,10]},{"path":[4,19,2,5,5],"span":[322,11,17]},{"path":[4,19,2,5,1],"span":[322,18,24]},{"path":[4,19,2,5,3],"span":[322,27,28]},{"path":[4,19,2,6],"span":[323,2,33]},{"path":[4,19,2,6,4],"span":[323,2,10]},{"path":[4,19,2,6,5],"span":[323,11,17]},{"path":[4,19,2,6,1],"span":[323,18,27]},{"path":[4,19,2,6,3],"span":[323,30,32]},{"path":[4,19,2,7],"span":[324,2,33]},{"path":[4,19,2,7,4],"span":[324,2,10]},{"path":[4,19,2,7,5],"span":[324,11,17]},{"path":[4,19,2,7,1],"span":[324,18,27]},{"path":[4,19,2,7,3],"span":[324,30,32]},{"path":[4,19,2,8],"span":[325,2,34]},{"path":[4,19,2,8,4],"span":[325,2,10]},{"path":[4,19,2,8,5],"span":[325,11,17]},{"path":[4,19,2,8,1],"span":[325,18,28]},{"path":[4,19,2,8,3],"span":[325,31,33]},{"path":[4,19,2,9],"span":[326,2,35]},{"path":[4,19,2,9,4],"span":[326,2,10]},{"path":[4,19,2,9,5],"span":[326,11,17]},{"path":[4,19,2,9,1],"span":[326,18,29]},{"path":[4,19,2,9,3],"span":[326,32,34]},{"path":[4,19,2,10],"span":[328,2,27]},{"path":[4,19,2,10,4],"span":[328,2,10]},{"path":[4,19,2,10,5],"span":[328,11,17]},{"path":[4,19,2,10,1],"span":[328,18,21]},{"path":[4,19,2,10,3],"span":[328,24,26]},{"path":[4,19,2,11],"span":[329,2,27]},{"path":[4,19,2,11,4],"span":[329,2,10]},{"path":[4,19,2,11,5],"span":[329,11,16]},{"path":[4,19,2,11,1],"span":[329,17,21]},{"path":[4,19,2,11,3],"span":[329,24,26]},{"path":[4,19,2,12],"span":[331,2,38]},{"path":[4,19,2,12,4],"span":[331,2,10]},{"path":[4,19,2,12,6],"span":[331,11,27]},{"path":[4,19,2,12,1],"span":[331,28,32]},{"path":[4,19,2,12,3],"span":[331,35,37]},{"path":[4,19,2,13],"span":[334,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,19,2,13,4],"span":[334,2,10]},{"path":[4,19,2,13,6],"span":[334,11,23]},{"path":[4,19,2,13,1],"span":[334,24,37]},{"path":[4,19,2,13,3],"span":[334,40,42]},{"path":[4,19,2,14],"span":[336,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,19,2,14,4],"span":[336,2,10]},{"path":[4,19,2,14,6],"span":[336,11,23]},{"path":[4,19,2,14,1],"span":[336,24,37]},{"path":[4,19,2,14,3],"span":[336,40,42]},{"path":[4,19,2,15],"span":[338,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,19,2,15,4],"span":[338,2,10]},{"path":[4,19,2,15,6],"span":[338,11,23]},{"path":[4,19,2,15,1],"span":[338,24,38]},{"path":[4,19,2,15,3],"span":[338,41,43]},{"path":[4,20],"span":[341,0,348,1]},{"path":[4,20,1],"span":[341,8,24]},{"path":[4,20,2,0],"span":[342,2,35]},{"path":[4,20,2,0,4],"span":[342,2,10]},{"path":[4,20,2,0,5],"span":[342,11,17]},{"path":[4,20,2,0,1],"span":[342,18,30]},{"path":[4,20,2,0,3],"span":[342,33,34]},{"path":[4,20,2,1],"span":[343,2,28]},{"path":[4,20,2,1,4],"span":[343,2,10]},{"path":[4,20,2,1,5],"span":[343,11,17]},{"path":[4,20,2,1,1],"span":[343,18,23]},{"path":[4,20,2,1,3],"span":[343,26,27]},{"path":[4,20,2,2],"span":[344,2,35]},{"path":[4,20,2,2,4],"span":[344,2,10]},{"path":[4,20,2,2,5],"span":[344,11,17]},{"path":[4,20,2,2,1],"span":[344,18,30]},{"path":[4,20,2,2,3],"span":[344,33,34]},{"path":[4,20,2,3],"span":[345,2,36]},{"path":[4,20,2,3,4],"span":[345,2,10]},{"path":[4,20,2,3,5],"span":[345,11,17]},{"path":[4,20,2,3,1],"span":[345,18,31]},{"path":[4,20,2,3,3],"span":[345,34,35]},{"path":[4,20,2,4],"span":[346,2,33]},{"path":[4,20,2,4,4],"span":[346,2,10]},{"path":[4,20,2,4,5],"span":[346,11,17]},{"path":[4,20,2,4,1],"span":[346,18,28]},{"path":[4,20,2,4,3],"span":[346,31,32]},{"path":[4,20,2,5],"span":[347,2,29]},{"path":[4,20,2,5,4],"span":[347,2,10]},{"path":[4,20,2,5,5],"span":[347,11,16]},{"path":[4,20,2,5,1],"span":[347,18,24]},{"path":[4,20,2,5,3],"span":[347,27,28]},{"path":[4,21],"span":[352,0,375,1]},{"path":[4,21,1],"span":[352,8,23]},{"path":[4,21,2,0],"span":[354,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,21,2,0,4],"span":[354,2,10]},{"path":[4,21,2,0,5],"span":[354,11,16]},{"path":[4,21,2,0,1],"span":[354,17,19]},{"path":[4,21,2,0,3],"span":[354,22,23]},{"path":[4,21,2,1],"span":[357,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,21,2,1,4],"span":[357,2,10]},{"path":[4,21,2,1,5],"span":[357,11,16]},{"path":[4,21,2,1,1],"span":[357,17,24]},{"path":[4,21,2,1,3],"span":[357,27,29]},{"path":[4,21,2,2],"span":[359,2,27]},{"path":[4,21,2,2,4],"span":[359,2,10]},{"path":[4,21,2,2,5],"span":[359,11,17]},{"path":[4,21,2,2,1],"span":[359,18,22]},{"path":[4,21,2,2,3],"span":[359,25,26]},{"path":[4,21,2,3],"span":[360,2,30]},{"path":[4,21,2,3,4],"span":[360,2,10]},{"path":[4,21,2,3,5],"span":[360,11,17]},{"path":[4,21,2,3,1],"span":[360,18,25]},{"path":[4,21,2,3,3],"span":[360,28,29]},{"path":[4,21,2,4],"span":[361,2,28]},{"path":[4,21,2,4,4],"span":[361,2,10]},{"path":[4,21,2,4,5],"span":[361,11,17]},{"path":[4,21,2,4,1],"span":[361,18,23]},{"path":[4,21,2,4,3],"span":[361,26,27]},{"path":[4,21,2,5],"span":[363,2,33]},{"path":[4,21,2,5,4],"span":[363,2,10]},{"path":[4,21,2,5,5],"span":[363,11,17]},{"path":[4,21,2,5,1],"span":[363,18,28]},{"path":[4,21,2,5,3],"span":[363,31,32]},{"path":[4,21,2,6],"span":[365,2,26]},{"path":[4,21,2,6,4],"span":[365,2,10]},{"path":[4,21,2,6,5],"span":[365,11,17]},{"path":[4,21,2,6,1],"span":[365,18,21]},{"path":[4,21,2,6,3],"span":[365,24,25]},{"path":[4,21,2,7],"span":[366,2,29]},{"path":[4,21,2,7,4],"span":[366,2,10]},{"path":[4,21,2,7,5],"span":[366,11,17]},{"path":[4,21,2,7,1],"span":[366,18,24]},{"path":[4,21,2,7,3],"span":[366,27,28]},{"path":[4,21,2,8],"span":[368,2,26]},{"path":[4,21,2,8,4],"span":[368,2,10]},{"path":[4,21,2,8,5],"span":[368,11,16]},{"path":[4,21,2,8,1],"span":[368,17,21]},{"path":[4,21,2,8,3],"span":[368,24,25]},{"path":[4,21,8,0],"span":[370,2,374,3]},{"path":[4,21,8,0,1],"span":[370,8,12]},{"path":[4,21,2,9],"span":[371,4,44]},{"path":[4,21,2,9,6],"span":[371,4,30]},{"path":[4,21,2,9,1],"span":[371,31,38]},{"path":[4,21,2,9,3],"span":[371,41,43]},{"path":[4,21,2,10],"span":[372,4,36]},{"path":[4,21,2,10,6],"span":[372,4,26]},{"path":[4,21,2,10,1],"span":[372,27,30]},{"path":[4,21,2,10,3],"span":[372,33,35]},{"path":[4,21,2,11],"span":[373,4,40]},{"path":[4,21,2,11,6],"span":[373,4,28]},{"path":[4,21,2,11,1],"span":[373,29,34]},{"path":[4,21,2,11,3],"span":[373,37,39]},{"path":[4,22],"span":[377,0,379,1]},{"path":[4,22,1],"span":[377,8,30]},{"path":[4,22,2,0],"span":[378,2,37]},{"path":[4,22,2,0,4],"span":[378,2,10]},{"path":[4,22,2,0,5],"span":[378,11,17]},{"path":[4,22,2,0,1],"span":[378,18,32]},{"path":[4,22,2,0,3],"span":[378,35,36]},{"path":[4,23],"span":[381,0,387,1]},{"path":[4,23,1],"span":[381,8,32]},{"path":[4,23,2,0],"span":[382,2,34]},{"path":[4,23,2,0,4],"span":[382,2,10]},{"path":[4,23,2,0,5],"span":[382,11,17]},{"path":[4,23,2,0,1],"span":[382,18,29]},{"path":[4,23,2,0,3],"span":[382,32,33]},{"path":[4,23,2,1],"span":[383,2,37]},{"path":[4,23,2,1,4],"span":[383,2,10]},{"path":[4,23,2,1,5],"span":[383,11,17]},{"path":[4,23,2,1,1],"span":[383,18,32]},{"path":[4,23,2,1,3],"span":[383,35,36]},{"path":[4,23,2,2],"span":[384,2,37]},{"path":[4,23,2,2,4],"span":[384,2,10]},{"path":[4,23,2,2,5],"span":[384,11,17]},{"path":[4,23,2,2,1],"span":[384,18,32]},{"path":[4,23,2,2,3],"span":[384,35,36]},{"path":[4,23,2,3],"span":[385,2,35]},{"path":[4,23,2,3,4],"span":[385,2,10]},{"path":[4,23,2,3,5],"span":[385,11,17]},{"path":[4,23,2,3,1],"span":[385,18,30]},{"path":[4,23,2,3,3],"span":[385,33,34]},{"path":[4,23,2,4],"span":[386,2,33]},{"path":[4,23,2,4,4],"span":[386,2,10]},{"path":[4,23,2,4,5],"span":[386,11,17]},{"path":[4,23,2,4,1],"span":[386,18,28]},{"path":[4,23,2,4,3],"span":[386,31,32]},{"path":[4,24],"span":[389,0,442,1]},{"path":[4,24,1],"span":[389,8,34]},{"path":[4,24,2,0],"span":[390,2,30]},{"path":[4,24,2,0,4],"span":[390,2,10]},{"path":[4,24,2,0,5],"span":[390,11,17]},{"path":[4,24,2,0,1],"span":[390,18,25]},{"path":[4,24,2,0,3],"span":[390,28,29]},{"path":[4,24,2,1],"span":[391,2,34]},{"path":[4,24,2,1,4],"span":[391,2,10]},{"path":[4,24,2,1,5],"span":[391,11,16]},{"path":[4,24,2,1,1],"span":[391,17,29]},{"path":[4,24,2,1,3],"span":[391,32,33]},{"path":[4,24,2,2],"span":[392,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,24,2,2,4],"span":[392,2,10]},{"path":[4,24,2,2,5],"span":[392,11,17]},{"path":[4,24,2,2,1],"span":[392,18,23]},{"path":[4,24,2,2,3],"span":[392,26,27]},{"path":[4,24,2,3],"span":[393,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,24,2,3,4],"span":[393,2,10]},{"path":[4,24,2,3,5],"span":[393,11,17]},{"path":[4,24,2,3,1],"span":[393,18,30]},{"path":[4,24,2,3,3],"span":[393,33,34]},{"path":[4,24,2,4],"span":[394,2,41]},{"path":[4,24,2,4,4],"span":[394,2,10]},{"path":[4,24,2,4,5],"span":[394,11,15]},{"path":[4,24,2,4,1],"span":[394,16,36]},{"path":[4,24,2,4,3],"span":[394,39,40]},{"path":[4,24,2,5],"span":[395,2,35]},{"path":[4,24,2,5,4],"span":[395,2,10]},{"path":[4,24,2,5,5],"span":[395,11,15]},{"path":[4,24,2,5,1],"span":[395,16,30]},{"path":[4,24,2,5,3],"span":[395,33,34]},{"path":[4,24,2,6],"span":[396,2,39]},{"path":[4,24,2,6,4],"span":[396,2,10]},{"path":[4,24,2,6,5],"span":[396,11,15]},{"path":[4,24,2,6,1],"span":[396,16,34]},{"path":[4,24,2,6,3],"span":[396,37,38]},{"path":[4,24,2,7],"span":[398,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,24,2,7,4],"span":[398,2,10]},{"path":[4,24,2,7,5],"span":[398,11,17]},{"path":[4,24,2,7,1],"span":[398,18,25]},{"path":[4,24,2,7,3],"span":[398,28,30]},{"path":[4,24,2,8],"span":[400,2,35]},{"path":[4,24,2,8,4],"span":[400,2,10]},{"path":[4,24,2,8,5],"span":[400,11,17]},{"path":[4,24,2,8,1],"span":[400,18,29]},{"path":[4,24,2,8,3],"span":[400,32,34]},{"path":[4,24,2,9],"span":[401,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,24,2,9,4],"span":[401,2,10]},{"path":[4,24,2,9,5],"span":[401,11,17]},{"path":[4,24,2,9,1],"span":[401,18,30]},{"path":[4,24,2,9,3],"span":[401,33,35]},{"path":[4,24,2,10],"span":[402,2,34]},{"path":[4,24,2,10,4],"span":[402,2,10]},{"path":[4,24,2,10,5],"span":[402,11,17]},{"path":[4,24,2,10,1],"span":[402,18,28]},{"path":[4,24,2,10,3],"span":[402,31,33]},{"path":[4,24,2,11],"span":[403,2,31]},{"path":[4,24,2,11,4],"span":[403,2,10]},{"path":[4,24,2,11,5],"span":[403,11,17]},{"path":[4,24,2,11,1],"span":[403,18,25]},{"path":[4,24,2,11,3],"span":[403,28,30]},{"path":[4,24,2,12],"span":[404,2,32]},{"path":[4,24,2,12,4],"span":[404,2,10]},{"path":[4,24,2,12,5],"span":[404,11,17]},{"path":[4,24,2,12,1],"span":[404,18,26]},{"path":[4,24,2,12,3],"span":[404,29,31]},{"path":[4,24,2,13],"span":[405,2,36]},{"path":[4,24,2,13,4],"span":[405,2,10]},{"path":[4,24,2,13,5],"span":[405,11,17]},{"path":[4,24,2,13,1],"span":[405,18,30]},{"path":[4,24,2,13,3],"span":[405,33,35]},{"path":[4,24,2,14],"span":[406,2,35]},{"path":[4,24,2,14,4],"span":[406,2,10]},{"path":[4,24,2,14,5],"span":[406,11,17]},{"path":[4,24,2,14,1],"span":[406,18,29]},{"path":[4,24,2,14,3],"span":[406,32,34]},{"path":[4,24,2,15],"span":[407,2,39]},{"path":[4,24,2,15,4],"span":[407,2,10]},{"path":[4,24,2,15,5],"span":[407,11,16]},{"path":[4,24,2,15,1],"span":[407,17,33]},{"path":[4,24,2,15,3],"span":[407,36,38]},{"path":[4,24,2,16],"span":[408,2,27]},{"path":[4,24,2,16,4],"span":[408,2,10]},{"path":[4,24,2,16,5],"span":[408,11,15]},{"path":[4,24,2,16,1],"span":[408,16,21]},{"path":[4,24,2,16,3],"span":[408,24,26]},{"path":[4,24,2,17],"span":[409,2,35]},{"path":[4,24,2,17,4],"span":[409,2,10]},{"path":[4,24,2,17,5],"span":[409,11,17]},{"path":[4,24,2,17,1],"span":[409,18,29]},{"path":[4,24,2,17,3],"span":[409,32,34]},{"path":[4,24,2,18],"span":[410,2,52]},{"path":[4,24,2,18,4],"span":[410,2,10]},{"path":[4,24,2,18,5],"span":[410,11,17]},{"path":[4,24,2,18,1],"span":[410,18,46]},{"path":[4,24,2,18,3],"span":[410,49,51]},{"path":[4,24,2,19],"span":[411,2,55]},{"path":[4,24,2,19,4],"span":[411,2,10]},{"path":[4,24,2,19,6],"span":[411,11,36]},{"path":[4,24,2,19,1],"span":[411,37,49]},{"path":[4,24,2,19,3],"span":[411,52,54]},{"path":[4,24,2,20],"span":[412,2,47]},{"path":[4,24,2,20,4],"span":[412,2,10]},{"path":[4,24,2,20,5],"span":[412,11,17]},{"path":[4,24,2,20,1],"span":[412,18,41]},{"path":[4,24,2,20,3],"span":[412,44,46]},{"path":[4,24,2,21],"span":[413,2,48]},{"path":[4,24,2,21,4],"span":[413,2,10]},{"path":[4,24,2,21,5],"span":[413,11,17]},{"path":[4,24,2,21,1],"span":[413,18,42]},{"path":[4,24,2,21,3],"span":[413,45,47]},{"path":[4,24,2,22],"span":[414,2,36]},{"path":[4,24,2,22,4],"span":[414,2,10]},{"path":[4,24,2,22,5],"span":[414,11,17]},{"path":[4,24,2,22,1],"span":[414,18,30]},{"path":[4,24,2,22,3],"span":[414,33,35]},{"path":[4,24,2,23],"span":[415,2,40]},{"path":[4,24,2,23,4],"span":[415,2,10]},{"path":[4,24,2,23,6],"span":[415,11,22]},{"path":[4,24,2,23,1],"span":[415,23,34]},{"path":[4,24,2,23,3],"span":[415,37,39]},{"path":[4,24,2,24],"span":[416,2,45]},{"path":[4,24,2,24,4],"span":[416,2,10]},{"path":[4,24,2,24,6],"span":[416,11,22]},{"path":[4,24,2,24,1],"span":[416,23,39]},{"path":[4,24,2,24,3],"span":[416,42,44]},{"path":[4,24,2,25],"span":[417,2,36]},{"path":[4,24,2,25,4],"span":[417,2,10]},{"path":[4,24,2,25,6],"span":[417,11,22]},{"path":[4,24,2,25,1],"span":[417,23,30]},{"path":[4,24,2,25,3],"span":[417,33,35]},{"path":[4,24,2,26],"span":[418,2,39]},{"path":[4,24,2,26,4],"span":[418,2,10]},{"path":[4,24,2,26,5],"span":[418,11,17]},{"path":[4,24,2,26,1],"span":[418,18,33]},{"path":[4,24,2,26,3],"span":[418,36,38]},{"path":[4,24,2,27],"span":[419,2,43]},{"path":[4,24,2,27,4],"span":[419,2,10]},{"path":[4,24,2,27,5],"span":[419,11,17]},{"path":[4,24,2,27,1],"span":[419,18,37]},{"path":[4,24,2,27,3],"span":[419,40,42]},{"path":[4,24,2,28],"span":[420,2,39]},{"path":[4,24,2,28,4],"span":[420,2,10]},{"path":[4,24,2,28,5],"span":[420,11,17]},{"path":[4,24,2,28,1],"span":[420,18,33]},{"path":[4,24,2,28,3],"span":[420,36,38]},{"path":[4,24,2,29],"span":[421,2,37]},{"path":[4,24,2,29,4],"span":[421,2,10]},{"path":[4,24,2,29,5],"span":[421,11,17]},{"path":[4,24,2,29,1],"span":[421,18,31]},{"path":[4,24,2,29,3],"span":[421,34,36]},{"path":[4,24,2,30],"span":[422,2,50]},{"path":[4,24,2,30,4],"span":[422,2,10]},{"path":[4,24,2,30,5],"span":[422,11,17]},{"path":[4,24,2,30,1],"span":[422,18,44]},{"path":[4,24,2,30,3],"span":[422,47,49]},{"path":[4,24,2,31],"span":[423,2,50]},{"path":[4,24,2,31,4],"span":[423,2,10]},{"path":[4,24,2,31,5],"span":[423,11,17]},{"path":[4,24,2,31,1],"span":[423,18,44]},{"path":[4,24,2,31,3],"span":[423,47,49]},{"path":[4,24,2,32],"span":[424,2,51]},{"path":[4,24,2,32,4],"span":[424,2,10]},{"path":[4,24,2,32,5],"span":[424,11,17]},{"path":[4,24,2,32,1],"span":[424,18,45]},{"path":[4,24,2,32,3],"span":[424,48,50]},{"path":[4,24,2,33],"span":[425,2,30]},{"path":[4,24,2,33,4],"span":[425,2,10]},{"path":[4,24,2,33,5],"span":[425,11,17]},{"path":[4,24,2,33,1],"span":[425,18,24]},{"path":[4,24,2,33,3],"span":[425,27,29]},{"path":[4,24,2,34],"span":[426,2,37]},{"path":[4,24,2,34,4],"span":[426,2,10]},{"path":[4,24,2,34,5],"span":[426,11,17]},{"path":[4,24,2,34,1],"span":[426,18,31]},{"path":[4,24,2,34,3],"span":[426,34,36]},{"path":[4,24,2,35],"span":[427,2,40]},{"path":[4,24,2,35,4],"span":[427,2,10]},{"path":[4,24,2,35,5],"span":[427,11,17]},{"path":[4,24,2,35,1],"span":[427,18,34]},{"path":[4,24,2,35,3],"span":[427,37,39]},{"path":[4,24,2,36],"span":[428,2,49]},{"path":[4,24,2,36,4],"span":[428,2,10]},{"path":[4,24,2,36,5],"span":[428,11,17]},{"path":[4,24,2,36,1],"span":[428,18,43]},{"path":[4,24,2,36,3],"span":[428,46,48]},{"path":[4,24,2,37],"span":[429,2,49]},{"path":[4,24,2,37,4],"span":[429,2,10]},{"path":[4,24,2,37,5],"span":[429,11,17]},{"path":[4,24,2,37,1],"span":[429,18,43]},{"path":[4,24,2,37,3],"span":[429,46,48]},{"path":[4,24,2,38],"span":[430,2,41]},{"path":[4,24,2,38,4],"span":[430,2,10]},{"path":[4,24,2,38,5],"span":[430,11,17]},{"path":[4,24,2,38,1],"span":[430,18,35]},{"path":[4,24,2,38,3],"span":[430,38,40]},{"path":[4,24,2,39],"span":[431,2,45]},{"path":[4,24,2,39,4],"span":[431,2,10]},{"path":[4,24,2,39,5],"span":[431,11,17]},{"path":[4,24,2,39,1],"span":[431,18,39]},{"path":[4,24,2,39,3],"span":[431,42,44]},{"path":[4,24,2,40],"span":[432,2,42]},{"path":[4,24,2,40,4],"span":[432,2,10]},{"path":[4,24,2,40,5],"span":[432,11,17]},{"path":[4,24,2,40,1],"span":[432,18,36]},{"path":[4,24,2,40,3],"span":[432,39,41]},{"path":[4,24,2,41],"span":[433,2,46]},{"path":[4,24,2,41,4],"span":[433,2,10]},{"path":[4,24,2,41,5],"span":[433,11,17]},{"path":[4,24,2,41,1],"span":[433,18,40]},{"path":[4,24,2,41,3],"span":[433,43,45]},{"path":[4,24,2,42],"span":[434,2,41]},{"path":[4,24,2,42,4],"span":[434,2,10]},{"path":[4,24,2,42,6],"span":[434,11,22]},{"path":[4,24,2,42,1],"span":[434,23,35]},{"path":[4,24,2,42,3],"span":[434,38,40]},{"path":[4,24,2,43],"span":[435,2,34]},{"path":[4,24,2,43,4],"span":[435,2,10]},{"path":[4,24,2,43,5],"span":[435,11,17]},{"path":[4,24,2,43,1],"span":[435,18,28]},{"path":[4,24,2,43,3],"span":[435,31,33]},{"path":[4,24,2,44],"span":[436,2,36]},{"path":[4,24,2,44,4],"span":[436,2,10]},{"path":[4,24,2,44,5],"span":[436,11,17]},{"path":[4,24,2,44,1],"span":[436,18,30]},{"path":[4,24,2,44,3],"span":[436,33,35]},{"path":[4,24,2,45],"span":[437,2,40]},{"path":[4,24,2,45,4],"span":[437,2,10]},{"path":[4,24,2,45,5],"span":[437,11,17]},{"path":[4,24,2,45,1],"span":[437,18,34]},{"path":[4,24,2,45,3],"span":[437,37,39]},{"path":[4,24,2,46],"span":[438,2,66]},{"path":[4,24,2,46,4],"span":[438,2,10]},{"path":[4,24,2,46,5],"span":[438,11,15]},{"path":[4,24,2,46,1],"span":[438,16,60]},{"path":[4,24,2,46,3],"span":[438,63,65]},{"path":[4,24,2,47],"span":[439,2,60]},{"path":[4,24,2,47,4],"span":[439,2,10]},{"path":[4,24,2,47,5],"span":[439,11,15]},{"path":[4,24,2,47,1],"span":[439,16,54]},{"path":[4,24,2,47,3],"span":[439,57,59]},{"path":[4,24,2,48],"span":[440,2,55]},{"path":[4,24,2,48,4],"span":[440,2,10]},{"path":[4,24,2,48,5],"span":[440,11,15]},{"path":[4,24,2,48,1],"span":[440,16,49]},{"path":[4,24,2,48,3],"span":[440,52,54]},{"path":[4,24,2,49],"span":[441,2,64]},{"path":[4,24,2,49,4],"span":[441,2,10]},{"path":[4,24,2,49,5],"span":[441,11,17]},{"path":[4,24,2,49,1],"span":[441,18,58]},{"path":[4,24,2,49,3],"span":[441,61,63]},{"path":[4,25],"span":[446,0,449,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,25,1],"span":[446,8,30]},{"path":[4,25,2,0],"span":[447,2,18]},{"path":[4,25,2,0,5],"span":[447,2,8]},{"path":[4,25,2,0,1],"span":[447,9,13]},{"path":[4,25,2,0,3],"span":[447,16,17]},{"path":[4,25,2,1],"span":[448,2,21]},{"path":[4,25,2,1,5],"span":[448,2,8]},{"path":[4,25,2,1,1],"span":[448,9,16]},{"path":[4,25,2,1,3],"span":[448,19,20]},{"path":[4,26],"span":[452,0,468,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,26,1],"span":[452,8,28]},{"path":[4,26,2,0],"span":[454,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,26,2,0,5],"span":[454,2,8]},{"path":[4,26,2,0,1],"span":[454,9,11]},{"path":[4,26,2,0,3],"span":[454,14,15]},{"path":[4,26,2,1],"span":[457,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,26,2,1,4],"span":[457,2,10]},{"path":[4,26,2,1,5],"span":[457,11,17]},{"path":[4,26,2,1,1],"span":[457,18,22]},{"path":[4,26,2,1,3],"span":[457,25,26]},{"path":[4,26,2,2],"span":[459,2,54]},{"path":[4,26,2,2,4],"span":[459,2,10]},{"path":[4,26,2,2,6],"span":[459,11,36]},{"path":[4,26,2,2,1],"span":[459,37,49]},{"path":[4,26,2,2,3],"span":[459,52,53]},{"path":[4,26,2,3],"span":[462,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,26,2,3,4],"span":[462,2,10]},{"path":[4,26,2,3,5],"span":[462,11,17]},{"path":[4,26,2,3,1],"span":[462,18,28]},{"path":[4,26,2,3,3],"span":[462,31,32]},{"path":[4,26,2,4],"span":[464,2,31]},{"path":[4,26,2,4,4],"span":[464,2,10]},{"path":[4,26,2,4,5],"span":[464,11,17]},{"path":[4,26,2,4,1],"span":[464,18,26]},{"path":[4,26,2,4,3],"span":[464,29,30]},{"path":[4,26,2,5],"span":[466,2,43]},{"path":[4,26,2,5,4],"span":[466,2,10]},{"path":[4,26,2,5,5],"span":[466,11,17]},{"path":[4,26,2,5,1],"span":[466,18,38]},{"path":[4,26,2,5,3],"span":[466,41,42]},{"path":[4,27],"span":[471,0,474,1],"leadingComments":" Network Interface cards "},{"path":[4,27,1],"span":[471,8,25]},{"path":[4,27,2,0],"span":[472,2,42]},{"path":[4,27,2,0,6],"span":[472,2,27]},{"path":[4,27,2,0,1],"span":[472,28,37]},{"path":[4,27,2,0,3],"span":[472,40,41]},{"path":[4,27,2,1],"span":[473,2,42]},{"path":[4,27,2,1,4],"span":[473,2,10]},{"path":[4,27,2,1,6],"span":[473,11,27]},{"path":[4,27,2,1,1],"span":[473,28,37]},{"path":[4,27,2,1,3],"span":[473,40,41]},{"path":[4,28],"span":[476,0,499,1]},{"path":[4,28,1],"span":[476,8,24]},{"path":[4,28,2,0],"span":[477,2,18]},{"path":[4,28,2,0,5],"span":[477,2,8]},{"path":[4,28,2,0,1],"span":[477,9,13]},{"path":[4,28,2,0,3],"span":[477,16,17]},{"path":[4,28,2,1],"span":[478,2,18]},{"path":[4,28,2,1,5],"span":[478,2,8]},{"path":[4,28,2,1,1],"span":[478,9,13]},{"path":[4,28,2,1,3],"span":[478,16,17]},{"path":[4,28,2,2],"span":[479,2,22]},{"path":[4,28,2,2,5],"span":[479,2,8]},{"path":[4,28,2,2,1],"span":[479,9,17]},{"path":[4,28,2,2,3],"span":[479,20,21]},{"path":[4,28,2,3],"span":[481,2,25]},{"path":[4,28,2,3,4],"span":[481,2,10]},{"path":[4,28,2,3,5],"span":[481,11,17]},{"path":[4,28,2,3,1],"span":[481,18,20]},{"path":[4,28,2,3,3],"span":[481,23,24]},{"path":[4,28,2,4],"span":[483,2,26]},{"path":[4,28,2,4,4],"span":[483,2,10]},{"path":[4,28,2,4,5],"span":[483,11,17]},{"path":[4,28,2,4,1],"span":[483,18,21]},{"path":[4,28,2,4,3],"span":[483,24,25]},{"path":[4,28,2,5],"span":[485,2,33]},{"path":[4,28,2,5,4],"span":[485,2,10]},{"path":[4,28,2,5,5],"span":[485,11,15]},{"path":[4,28,2,5,1],"span":[485,16,28]},{"path":[4,28,2,5,3],"span":[485,31,32]},{"path":[4,28,2,6],"span":[486,2,37]},{"path":[4,28,2,6,4],"span":[486,2,10]},{"path":[4,28,2,6,5],"span":[486,11,17]},{"path":[4,28,2,6,1],"span":[486,18,32]},{"path":[4,28,2,6,3],"span":[486,35,36]},{"path":[4,28,2,7],"span":[488,2,31]},{"path":[4,28,2,7,4],"span":[488,2,10]},{"path":[4,28,2,7,6],"span":[488,11,23]},{"path":[4,28,2,7,1],"span":[488,24,26]},{"path":[4,28,2,7,3],"span":[488,29,30]},{"path":[4,28,2,8],"span":[490,2,33]},{"path":[4,28,2,8,4],"span":[490,2,10]},{"path":[4,28,2,8,5],"span":[490,11,17]},{"path":[4,28,2,8,1],"span":[490,18,28]},{"path":[4,28,2,8,3],"span":[490,31,32]},{"path":[4,28,2,9],"span":[491,2,35]},{"path":[4,28,2,9,4],"span":[491,2,10]},{"path":[4,28,2,9,5],"span":[491,11,17]},{"path":[4,28,2,9,1],"span":[491,18,29]},{"path":[4,28,2,9,3],"span":[491,32,34]},{"path":[4,28,2,10],"span":[493,2,34]},{"path":[4,28,2,10,4],"span":[493,2,10]},{"path":[4,28,2,10,5],"span":[493,11,17]},{"path":[4,28,2,10,1],"span":[493,18,28]},{"path":[4,28,2,10,3],"span":[493,31,33]},{"path":[4,28,2,11],"span":[494,2,37]},{"path":[4,28,2,11,4],"span":[494,2,10]},{"path":[4,28,2,11,5],"span":[494,11,17]},{"path":[4,28,2,11,1],"span":[494,18,31]},{"path":[4,28,2,11,3],"span":[494,34,36]},{"path":[4,28,2,12],"span":[495,2,54]},{"path":[4,28,2,12,4],"span":[495,2,10]},{"path":[4,28,2,12,5],"span":[495,11,17]},{"path":[4,28,2,12,1],"span":[495,18,48]},{"path":[4,28,2,12,3],"span":[495,51,53]},{"path":[4,28,2,13],"span":[497,2,36]},{"path":[4,28,2,13,4],"span":[497,2,10]},{"path":[4,28,2,13,5],"span":[497,11,17]},{"path":[4,28,2,13,1],"span":[497,18,30]},{"path":[4,28,2,13,3],"span":[497,33,35]},{"path":[4,28,2,14],"span":[498,2,37]},{"path":[4,28,2,14,4],"span":[498,2,10]},{"path":[4,28,2,14,5],"span":[498,11,17]},{"path":[4,28,2,14,1],"span":[498,18,31]},{"path":[4,28,2,14,3],"span":[498,34,36]},{"path":[4,29],"span":[502,0,505,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,29,1],"span":[502,8,20]},{"path":[4,29,2,0],"span":[503,2,16]},{"path":[4,29,2,0,5],"span":[503,2,8]},{"path":[4,29,2,0,1],"span":[503,9,11]},{"path":[4,29,2,0,3],"span":[503,14,15]},{"path":[4,29,2,1],"span":[504,2,20]},{"path":[4,29,2,1,5],"span":[504,2,8]},{"path":[4,29,2,1,1],"span":[504,9,15]},{"path":[4,29,2,1,3],"span":[504,18,19]},{"path":[4,30],"span":[508,0,549,1],"leadingComments":" Processor *"},{"path":[4,30,1],"span":[508,8,17]},{"path":[4,30,2,0],"span":[509,2,21]},{"path":[4,30,2,0,5],"span":[509,2,8]},{"path":[4,30,2,0,1],"span":[509,10,14]},{"path":[4,30,2,0,3],"span":[509,17,18]},{"path":[4,30,2,1],"span":[510,2,36],"trailingComments":" Linux-only\n"},{"path":[4,30,2,1,4],"span":[510,2,10]},{"path":[4,30,2,1,5],"span":[510,11,17]},{"path":[4,30,2,1,1],"span":[510,18,31]},{"path":[4,30,2,1,3],"span":[510,34,35]},{"path":[4,30,2,2],"span":[511,2,35],"trailingComments":" Windows-only\n"},{"path":[4,30,2,2,4],"span":[511,2,10]},{"path":[4,30,2,2,5],"span":[511,11,16]},{"path":[4,30,2,2,1],"span":[511,17,30]},{"path":[4,30,2,2,3],"span":[511,33,34]},{"path":[4,30,2,3],"span":[512,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,30,2,3,4],"span":[512,2,10]},{"path":[4,30,2,3,6],"span":[512,11,22]},{"path":[4,30,2,3,1],"span":[512,23,35]},{"path":[4,30,2,3,3],"span":[512,38,39]},{"path":[4,30,2,4],"span":[513,2,34],"trailingComments":" Windows-only\n"},{"path":[4,30,2,4,4],"span":[513,2,10]},{"path":[4,30,2,4,5],"span":[513,11,16]},{"path":[4,30,2,4,1],"span":[513,17,29]},{"path":[4,30,2,4,3],"span":[513,32,33]},{"path":[4,30,2,5],"span":[514,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,30,2,5,4],"span":[514,2,10]},{"path":[4,30,2,5,5],"span":[514,11,17]},{"path":[4,30,2,5,1],"span":[514,18,27]},{"path":[4,30,2,5,3],"span":[514,30,31]},{"path":[4,30,2,6],"span":[515,2,33],"trailingComments":" Linux-only\n"},{"path":[4,30,2,6,4],"span":[515,2,10]},{"path":[4,30,2,6,5],"span":[515,11,17]},{"path":[4,30,2,6,1],"span":[515,18,28]},{"path":[4,30,2,6,3],"span":[515,31,32]},{"path":[4,30,2,7],"span":[516,2,30],"trailingComments":" Windows-only\n"},{"path":[4,30,2,7,4],"span":[516,2,10]},{"path":[4,30,2,7,5],"span":[516,11,17]},{"path":[4,30,2,7,1],"span":[516,18,25]},{"path":[4,30,2,7,3],"span":[516,28,29]},{"path":[4,30,2,8],"span":[517,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,30,2,8,4],"span":[517,2,10]},{"path":[4,30,2,8,5],"span":[517,11,16]},{"path":[4,30,2,8,1],"span":[517,17,36]},{"path":[4,30,2,8,3],"span":[517,39,40]},{"path":[4,30,2,9],"span":[518,2,33],"trailingComments":" Windows-only\n"},{"path":[4,30,2,9,4],"span":[518,2,10]},{"path":[4,30,2,9,5],"span":[518,11,16]},{"path":[4,30,2,9,1],"span":[518,17,27]},{"path":[4,30,2,9,3],"span":[518,30,32]},{"path":[4,30,2,10],"span":[519,2,33],"trailingComments":" Windows-only\n"},{"path":[4,30,2,10,4],"span":[519,2,10]},{"path":[4,30,2,10,5],"span":[519,11,17]},{"path":[4,30,2,10,1],"span":[519,18,27]},{"path":[4,30,2,10,3],"span":[519,30,32]},{"path":[4,30,2,11],"span":[520,2,41],"trailingComments":" Windows-only\n"},{"path":[4,30,2,11,4],"span":[520,2,10]},{"path":[4,30,2,11,5],"span":[520,11,16]},{"path":[4,30,2,11,1],"span":[520,17,35]},{"path":[4,30,2,11,3],"span":[520,38,40]},{"path":[4,30,2,12],"span":[521,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,30,2,12,4],"span":[521,2,10]},{"path":[4,30,2,12,6],"span":[521,11,22]},{"path":[4,30,2,12,1],"span":[521,23,29]},{"path":[4,30,2,12,3],"span":[521,32,34]},{"path":[4,30,2,13],"span":[522,2,41],"trailingComments":" Linux-only\n"},{"path":[4,30,2,13,4],"span":[522,2,10]},{"path":[4,30,2,13,5],"span":[522,11,17]},{"path":[4,30,2,13,1],"span":[522,18,35]},{"path":[4,30,2,13,3],"span":[522,38,40]},{"path":[4,30,2,14],"span":[523,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,30,2,14,4],"span":[523,2,10]},{"path":[4,30,2,14,5],"span":[523,11,16]},{"path":[4,30,2,14,1],"span":[523,17,34]},{"path":[4,30,2,14,3],"span":[523,37,39]},{"path":[4,30,2,15],"span":[524,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,30,2,15,4],"span":[524,2,10]},{"path":[4,30,2,15,5],"span":[524,11,16]},{"path":[4,30,2,15,1],"span":[524,17,34]},{"path":[4,30,2,15,3],"span":[524,37,39]},{"path":[4,30,2,16],"span":[525,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,30,2,16,4],"span":[525,2,10]},{"path":[4,30,2,16,5],"span":[525,11,16]},{"path":[4,30,2,16,1],"span":[525,17,33]},{"path":[4,30,2,16,3],"span":[525,36,38]},{"path":[4,30,2,17],"span":[526,2,41],"trailingComments":" Windows-only\n"},{"path":[4,30,2,17,4],"span":[526,2,10]},{"path":[4,30,2,17,5],"span":[526,11,16]},{"path":[4,30,2,17,1],"span":[526,17,35]},{"path":[4,30,2,17,3],"span":[526,38,40]},{"path":[4,30,2,18],"span":[527,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,30,2,18,4],"span":[527,2,10]},{"path":[4,30,2,18,5],"span":[527,11,16]},{"path":[4,30,2,18,1],"span":[527,17,33]},{"path":[4,30,2,18,3],"span":[527,36,38]},{"path":[4,30,2,19],"span":[528,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,30,2,19,4],"span":[528,2,10]},{"path":[4,30,2,19,5],"span":[528,11,16]},{"path":[4,30,2,19,1],"span":[528,17,22]},{"path":[4,30,2,19,3],"span":[528,25,27]},{"path":[4,30,2,20],"span":[529,2,44]},{"path":[4,30,2,20,4],"span":[529,2,10]},{"path":[4,30,2,20,5],"span":[529,11,16]},{"path":[4,30,2,20,1],"span":[529,17,36]},{"path":[4,30,2,20,3],"span":[529,39,41]},{"path":[4,30,2,21],"span":[530,2,38]},{"path":[4,30,2,21,4],"span":[530,2,10]},{"path":[4,30,2,21,5],"span":[530,11,17]},{"path":[4,30,2,21,1],"span":[530,18,30]},{"path":[4,30,2,21,3],"span":[530,33,35]},{"path":[4,30,2,22],"span":[531,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,30,2,22,4],"span":[531,2,10]},{"path":[4,30,2,22,5],"span":[531,11,16]},{"path":[4,30,2,22,1],"span":[531,17,36]},{"path":[4,30,2,22,3],"span":[531,39,41]},{"path":[4,30,2,23],"span":[532,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,30,2,23,4],"span":[532,2,10]},{"path":[4,30,2,23,5],"span":[532,11,16]},{"path":[4,30,2,23,1],"span":[532,17,36]},{"path":[4,30,2,23,3],"span":[532,39,41]},{"path":[4,30,2,24],"span":[533,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,30,2,24,4],"span":[533,2,10]},{"path":[4,30,2,24,5],"span":[533,11,16]},{"path":[4,30,2,24,1],"span":[533,17,29]},{"path":[4,30,2,24,3],"span":[533,32,34]},{"path":[4,30,2,25],"span":[534,2,32],"trailingComments":" Linux-only\n"},{"path":[4,30,2,25,4],"span":[534,2,10]},{"path":[4,30,2,25,5],"span":[534,11,17]},{"path":[4,30,2,25,1],"span":[534,18,26]},{"path":[4,30,2,25,3],"span":[534,29,31]},{"path":[4,30,2,26],"span":[535,2,45]},{"path":[4,30,2,26,4],"span":[535,2,10]},{"path":[4,30,2,26,5],"span":[535,11,16]},{"path":[4,30,2,26,1],"span":[535,17,37]},{"path":[4,30,2,26,3],"span":[535,40,42]},{"path":[4,30,2,27],"span":[536,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,30,2,27,4],"span":[536,2,10]},{"path":[4,30,2,27,5],"span":[536,11,17]},{"path":[4,30,2,27,1],"span":[536,18,30]},{"path":[4,30,2,27,3],"span":[536,33,35]},{"path":[4,30,2,28],"span":[537,2,43],"trailingComments":" Windows-only\n"},{"path":[4,30,2,28,4],"span":[537,2,10]},{"path":[4,30,2,28,6],"span":[537,11,22]},{"path":[4,30,2,28,1],"span":[537,23,37]},{"path":[4,30,2,28,3],"span":[537,40,42]},{"path":[4,30,2,29],"span":[538,2,31],"trailingComments":" Windows-only\n"},{"path":[4,30,2,29,4],"span":[538,2,10]},{"path":[4,30,2,29,5],"span":[538,11,16]},{"path":[4,30,2,29,1],"span":[538,17,25]},{"path":[4,30,2,29,3],"span":[538,28,30]},{"path":[4,30,2,30],"span":[539,2,42],"trailingComments":" Windows-only\n"},{"path":[4,30,2,30,4],"span":[539,2,10]},{"path":[4,30,2,30,5],"span":[539,11,17]},{"path":[4,30,2,30,1],"span":[539,18,36]},{"path":[4,30,2,30,3],"span":[539,39,41]},{"path":[4,30,2,31],"span":[540,2,31],"trailingComments":" Linux-only\n"},{"path":[4,30,2,31,4],"span":[540,2,10]},{"path":[4,30,2,31,5],"span":[540,11,16]},{"path":[4,30,2,31,1],"span":[540,18,25]},{"path":[4,30,2,31,3],"span":[540,28,30]},{"path":[4,30,2,32],"span":[541,2,35],"trailingComments":" Windows-only\n"},{"path":[4,30,2,32,4],"span":[541,2,10]},{"path":[4,30,2,32,6],"span":[541,11,22]},{"path":[4,30,2,32,1],"span":[541,23,29]},{"path":[4,30,2,32,3],"span":[541,32,34]},{"path":[4,30,2,33],"span":[542,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,30,2,33,4],"span":[542,2,10]},{"path":[4,30,2,33,5],"span":[542,11,16]},{"path":[4,30,2,33,1],"span":[542,17,25]},{"path":[4,30,2,33,3],"span":[542,28,30]},{"path":[4,30,2,34],"span":[543,2,54],"trailingComments":" Linux-only\n"},{"path":[4,30,2,34,4],"span":[543,2,10]},{"path":[4,30,2,34,5],"span":[543,11,16]},{"path":[4,30,2,34,1],"span":[543,17,48]},{"path":[4,30,2,34,3],"span":[543,51,53]},{"path":[4,30,2,35],"span":[544,2,33],"trailingComments":" Windows-only\n"},{"path":[4,30,2,35,4],"span":[544,2,10]},{"path":[4,30,2,35,5],"span":[544,11,17]},{"path":[4,30,2,35,1],"span":[544,18,27]},{"path":[4,30,2,35,3],"span":[544,30,32]},{"path":[4,30,2,36],"span":[545,2,43],"trailingComments":" Windows-only\n"},{"path":[4,30,2,36,4],"span":[545,2,10]},{"path":[4,30,2,36,6],"span":[545,11,22]},{"path":[4,30,2,36,1],"span":[545,23,37]},{"path":[4,30,2,36,3],"span":[545,40,42]},{"path":[4,30,2,37],"span":[546,2,31],"trailingComments":" Windows-only\n"},{"path":[4,30,2,37,4],"span":[546,2,10]},{"path":[4,30,2,37,5],"span":[546,11,17]},{"path":[4,30,2,37,1],"span":[546,18,25]},{"path":[4,30,2,37,3],"span":[546,28,30]},{"path":[4,30,2,38],"span":[547,2,38],"trailingComments":" Linux-only\n"},{"path":[4,30,2,38,4],"span":[547,2,10]},{"path":[4,30,2,38,5],"span":[547,11,17]},{"path":[4,30,2,38,1],"span":[547,18,32]},{"path":[4,30,2,38,3],"span":[547,35,37]},{"path":[4,30,2,39],"span":[548,2,49],"trailingComments":" Windows-only\n"},{"path":[4,30,2,39,4],"span":[548,2,10]},{"path":[4,30,2,39,6],"span":[548,11,22]},{"path":[4,30,2,39,1],"span":[548,23,43]},{"path":[4,30,2,39,3],"span":[548,46,48]},{"path":[4,31],"span":[552,0,562,1],"leadingComments":" Chassis *"},{"path":[4,31,1],"span":[552,8,15]},{"path":[4,31,2,0],"span":[554,2,25]},{"path":[4,31,2,0,6],"span":[554,2,13]},{"path":[4,31,2,0,1],"span":[554,16,20]},{"path":[4,31,2,0,3],"span":[554,23,24]},{"path":[4,31,2,1],"span":[555,2,33]},{"path":[4,31,2,1,4],"span":[555,2,10]},{"path":[4,31,2,1,5],"span":[555,11,15]},{"path":[4,31,2,1,1],"span":[555,16,28]},{"path":[4,31,2,1,3],"span":[555,31,32]},{"path":[4,31,2,2],"span":[556,2,41]},{"path":[4,31,2,2,4],"span":[556,2,10]},{"path":[4,31,2,2,5],"span":[556,11,17]},{"path":[4,31,2,2,1],"span":[556,24,36]},{"path":[4,31,2,2,3],"span":[556,39,40]},{"path":[4,31,2,3],"span":[557,2,43]},{"path":[4,31,2,3,4],"span":[557,2,10]},{"path":[4,31,2,3,6],"span":[557,11,22]},{"path":[4,31,2,3,1],"span":[557,23,38]},{"path":[4,31,2,3,3],"span":[557,41,42]},{"path":[4,31,2,4],"span":[558,2,42]},{"path":[4,31,2,4,4],"span":[558,2,10]},{"path":[4,31,2,4,5],"span":[558,11,17]},{"path":[4,31,2,4,1],"span":[558,24,37]},{"path":[4,31,2,4,3],"span":[558,40,41]},{"path":[4,31,2,5],"span":[559,2,38]},{"path":[4,31,2,5,4],"span":[559,2,10]},{"path":[4,31,2,5,5],"span":[559,11,17]},{"path":[4,31,2,5,1],"span":[559,24,33]},{"path":[4,31,2,5,3],"span":[559,36,37]},{"path":[4,31,2,6],"span":[560,2,36]},{"path":[4,31,2,6,4],"span":[560,2,10]},{"path":[4,31,2,6,5],"span":[560,11,17]},{"path":[4,31,2,6,1],"span":[560,24,31]},{"path":[4,31,2,6,3],"span":[560,34,35]},{"path":[4,31,2,7],"span":[561,2,40]},{"path":[4,31,2,7,4],"span":[561,2,10]},{"path":[4,31,2,7,6],"span":[561,11,22]},{"path":[4,31,2,7,1],"span":[561,23,35]},{"path":[4,31,2,7,3],"span":[561,38,39]},{"path":[4,32],"span":[567,0,579,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,32,1],"span":[567,8,17]},{"path":[4,32,2,0],"span":[568,2,30]},{"path":[4,32,2,0,4],"span":[568,2,10]},{"path":[4,32,2,0,5],"span":[568,11,17]},{"path":[4,32,2,0,1],"span":[568,18,25]},{"path":[4,32,2,0,3],"span":[568,28,29]},{"path":[4,32,2,1],"span":[569,2,31]},{"path":[4,32,2,1,4],"span":[569,2,10]},{"path":[4,32,2,1,5],"span":[569,11,15]},{"path":[4,32,2,1,1],"span":[569,16,26]},{"path":[4,32,2,1,3],"span":[569,29,30]},{"path":[4,32,2,2],"span":[570,2,34]},{"path":[4,32,2,2,4],"span":[570,2,10]},{"path":[4,32,2,2,5],"span":[570,11,17]},{"path":[4,32,2,2,1],"span":[570,18,29]},{"path":[4,32,2,2,3],"span":[570,32,33]},{"path":[4,32,2,3],"span":[571,2,32]},{"path":[4,32,2,3,4],"span":[571,2,10]},{"path":[4,32,2,3,5],"span":[571,11,17]},{"path":[4,32,2,3,1],"span":[571,18,27]},{"path":[4,32,2,3,3],"span":[571,30,31]},{"path":[4,32,2,4],"span":[572,2,38]},{"path":[4,32,2,4,4],"span":[572,2,10]},{"path":[4,32,2,4,6],"span":[572,11,22]},{"path":[4,32,2,4,1],"span":[572,23,33]},{"path":[4,32,2,4,3],"span":[572,36,37]},{"path":[4,32,2,5],"span":[573,2,34]},{"path":[4,32,2,5,4],"span":[573,2,10]},{"path":[4,32,2,5,5],"span":[573,11,17]},{"path":[4,32,2,5,1],"span":[573,18,29]},{"path":[4,32,2,5,3],"span":[573,32,33]},{"path":[4,32,2,6],"span":[574,2,32]},{"path":[4,32,2,6,4],"span":[574,2,10]},{"path":[4,32,2,6,5],"span":[574,11,16]},{"path":[4,32,2,6,1],"span":[574,17,27]},{"path":[4,32,2,6,3],"span":[574,30,31]},{"path":[4,32,2,7],"span":[575,2,26]},{"path":[4,32,2,7,4],"span":[575,2,10]},{"path":[4,32,2,7,5],"span":[575,11,16]},{"path":[4,32,2,7,1],"span":[575,17,21]},{"path":[4,32,2,7,3],"span":[575,24,25]},{"path":[4,32,2,8],"span":[576,2,34]},{"path":[4,32,2,8,4],"span":[576,2,10]},{"path":[4,32,2,8,5],"span":[576,11,17]},{"path":[4,32,2,8,1],"span":[576,18,29]},{"path":[4,32,2,8,3],"span":[576,32,33]},{"path":[4,32,2,9],"span":[577,2,37]},{"path":[4,32,2,9,4],"span":[577,2,10]},{"path":[4,32,2,9,5],"span":[577,11,17]},{"path":[4,32,2,9,1],"span":[577,18,31]},{"path":[4,32,2,9,3],"span":[577,34,36]},{"path":[4,32,2,10],"span":[578,2,34]},{"path":[4,32,2,10,4],"span":[578,2,10]},{"path":[4,32,2,10,5],"span":[578,11,17]},{"path":[4,32,2,10,1],"span":[578,18,28]},{"path":[4,32,2,10,3],"span":[578,31,33]},{"path":[4,33],"span":[584,0,614,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,33,1],"span":[584,8,19]},{"path":[4,33,2,0],"span":[585,2,32]},{"path":[4,33,2,0,4],"span":[585,2,10]},{"path":[4,33,2,0,5],"span":[585,11,17]},{"path":[4,33,2,0,1],"span":[585,18,27]},{"path":[4,33,2,0,3],"span":[585,30,31]},{"path":[4,33,2,1],"span":[586,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,33,2,1,4],"span":[586,2,10]},{"path":[4,33,2,1,5],"span":[586,11,17]},{"path":[4,33,2,1,1],"span":[586,18,22]},{"path":[4,33,2,1,3],"span":[586,25,26]},{"path":[4,33,2,2],"span":[587,2,28],"trailingComments":" win and linux\n"},{"path":[4,33,2,2,4],"span":[587,2,10]},{"path":[4,33,2,2,5],"span":[587,11,17]},{"path":[4,33,2,2,1],"span":[587,18,23]},{"path":[4,33,2,2,3],"span":[587,26,27]},{"path":[4,33,2,3],"span":[588,2,27]},{"path":[4,33,2,3,4],"span":[588,2,10]},{"path":[4,33,2,3,5],"span":[588,11,17]},{"path":[4,33,2,3,1],"span":[588,18,22]},{"path":[4,33,2,3,3],"span":[588,25,26]},{"path":[4,33,2,4],"span":[590,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,33,2,4,4],"span":[590,2,10]},{"path":[4,33,2,4,5],"span":[590,11,16]},{"path":[4,33,2,4,1],"span":[590,17,25]},{"path":[4,33,2,4,3],"span":[590,28,29]},{"path":[4,33,2,5],"span":[591,2,32]},{"path":[4,33,2,5,4],"span":[591,2,10]},{"path":[4,33,2,5,5],"span":[591,11,16]},{"path":[4,33,2,5,1],"span":[591,17,27]},{"path":[4,33,2,5,3],"span":[591,30,31]},{"path":[4,33,2,6],"span":[592,2,32]},{"path":[4,33,2,6,4],"span":[592,2,10]},{"path":[4,33,2,6,5],"span":[592,11,16]},{"path":[4,33,2,6,1],"span":[592,17,27]},{"path":[4,33,2,6,3],"span":[592,30,31]},{"path":[4,33,2,7],"span":[594,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,33,2,7,4],"span":[594,2,10]},{"path":[4,33,2,7,6],"span":[594,11,22]},{"path":[4,33,2,7,1],"span":[594,23,33]},{"path":[4,33,2,7,3],"span":[594,36,37]},{"path":[4,33,2,8],"span":[595,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,33,2,8,4],"span":[595,2,10]},{"path":[4,33,2,8,6],"span":[595,11,22]},{"path":[4,33,2,8,1],"span":[595,23,40]},{"path":[4,33,2,8,3],"span":[595,43,44]},{"path":[4,33,2,9],"span":[597,2,41]},{"path":[4,33,2,9,4],"span":[597,2,10]},{"path":[4,33,2,9,5],"span":[597,11,17]},{"path":[4,33,2,9,1],"span":[597,18,35]},{"path":[4,33,2,9,3],"span":[597,38,40]},{"path":[4,33,2,10],"span":[598,2,41]},{"path":[4,33,2,10,4],"span":[598,2,10]},{"path":[4,33,2,10,5],"span":[598,11,17]},{"path":[4,33,2,10,1],"span":[598,18,35]},{"path":[4,33,2,10,3],"span":[598,38,40]},{"path":[4,33,2,11],"span":[599,2,35]},{"path":[4,33,2,11,4],"span":[599,2,10]},{"path":[4,33,2,11,5],"span":[599,11,17]},{"path":[4,33,2,11,1],"span":[599,18,29]},{"path":[4,33,2,11,3],"span":[599,32,34]},{"path":[4,33,2,12],"span":[601,2,32]},{"path":[4,33,2,12,4],"span":[601,2,10]},{"path":[4,33,2,12,5],"span":[601,11,15]},{"path":[4,33,2,12,1],"span":[601,16,26]},{"path":[4,33,2,12,3],"span":[601,29,31]},{"path":[4,33,2,13],"span":[602,2,32]},{"path":[4,33,2,13,4],"span":[602,2,10]},{"path":[4,33,2,13,5],"span":[602,11,15]},{"path":[4,33,2,13,1],"span":[602,16,26]},{"path":[4,33,2,13,3],"span":[602,29,31]},{"path":[4,33,2,14],"span":[603,2,35]},{"path":[4,33,2,14,4],"span":[603,2,10]},{"path":[4,33,2,14,5],"span":[603,11,15]},{"path":[4,33,2,14,1],"span":[603,16,29]},{"path":[4,33,2,14,3],"span":[603,32,34]},{"path":[4,33,2,15],"span":[604,2,35]},{"path":[4,33,2,15,4],"span":[604,2,10]},{"path":[4,33,2,15,5],"span":[604,11,15]},{"path":[4,33,2,15,1],"span":[604,16,29]},{"path":[4,33,2,15,3],"span":[604,32,34]},{"path":[4,33,2,16],"span":[605,2,38]},{"path":[4,33,2,16,4],"span":[605,2,10]},{"path":[4,33,2,16,5],"span":[605,11,15]},{"path":[4,33,2,16,1],"span":[605,16,32]},{"path":[4,33,2,16,3],"span":[605,35,37]},{"path":[4,33,2,17],"span":[606,2,39]},{"path":[4,33,2,17,4],"span":[606,2,10]},{"path":[4,33,2,17,5],"span":[606,11,15]},{"path":[4,33,2,17,1],"span":[606,16,33]},{"path":[4,33,2,17,3],"span":[606,36,38]},{"path":[4,33,2,18],"span":[607,2,42]},{"path":[4,33,2,18,4],"span":[607,2,10]},{"path":[4,33,2,18,5],"span":[607,11,15]},{"path":[4,33,2,18,1],"span":[607,16,36]},{"path":[4,33,2,18,3],"span":[607,39,41]},{"path":[4,33,2,19],"span":[608,2,53]},{"path":[4,33,2,19,4],"span":[608,2,10]},{"path":[4,33,2,19,5],"span":[608,11,15]},{"path":[4,33,2,19,1],"span":[608,16,47]},{"path":[4,33,2,19,3],"span":[608,50,52]},{"path":[4,33,2,20],"span":[611,2,31],"leadingComments":" unix\n"},{"path":[4,33,2,20,4],"span":[611,2,10]},{"path":[4,33,2,20,5],"span":[611,11,17]},{"path":[4,33,2,20,1],"span":[611,18,25]},{"path":[4,33,2,20,3],"span":[611,28,30]},{"path":[4,33,2,21],"span":[612,2,35]},{"path":[4,33,2,21,4],"span":[612,2,10]},{"path":[4,33,2,21,5],"span":[612,11,17]},{"path":[4,33,2,21,1],"span":[612,18,29]},{"path":[4,33,2,21,3],"span":[612,32,34]},{"path":[4,34],"span":[619,0,626,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,34,1],"span":[619,8,21]},{"path":[4,34,8,0],"span":[620,2,623,5]},{"path":[4,34,8,0,1],"span":[620,8,14]},{"path":[4,34,2,0],"span":[621,4,44]},{"path":[4,34,2,0,6],"span":[621,4,22]},{"path":[4,34,2,0,1],"span":[621,23,39]},{"path":[4,34,2,0,3],"span":[621,42,43]},{"path":[4,34,2,1],"span":[622,4,36]},{"path":[4,34,2,1,6],"span":[622,4,20]},{"path":[4,34,2,1,1],"span":[622,21,31]},{"path":[4,34,2,1,3],"span":[622,34,35]},{"path":[4,34,2,2],"span":[625,2,29]},{"path":[4,34,2,2,4],"span":[625,2,10]},{"path":[4,34,2,2,5],"span":[625,11,17]},{"path":[4,34,2,2,1],"span":[625,18,22]},{"path":[4,34,2,2,3],"span":[625,25,28]},{"path":[4,35],"span":[629,0,634,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,35,1],"span":[629,8,26]},{"path":[4,35,2,0],"span":[630,2,26]},{"path":[4,35,2,0,5],"span":[630,2,8]},{"path":[4,35,2,0,1],"span":[630,9,21]},{"path":[4,35,2,0,3],"span":[630,24,25]},{"path":[4,35,2,1],"span":[631,2,32]},{"path":[4,35,2,1,4],"span":[631,2,10]},{"path":[4,35,2,1,5],"span":[631,11,17]},{"path":[4,35,2,1,1],"span":[631,18,27]},{"path":[4,35,2,1,3],"span":[631,30,31]},{"path":[4,35,2,2],"span":[632,2,34]},{"path":[4,35,2,2,4],"span":[632,2,10]},{"path":[4,35,2,2,5],"span":[632,11,17]},{"path":[4,35,2,2,1],"span":[632,18,29]},{"path":[4,35,2,2,3],"span":[632,32,33]},{"path":[4,35,2,3],"span":[633,2,34]},{"path":[4,35,2,3,4],"span":[633,2,10]},{"path":[4,35,2,3,5],"span":[633,11,17]},{"path":[4,35,2,3,1],"span":[633,18,29]},{"path":[4,35,2,3,3],"span":[633,32,33]},{"path":[4,36],"span":[637,0,643,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,36,1],"span":[637,8,24]},{"path":[4,36,2,0],"span":[638,2,27]},{"path":[4,36,2,0,4],"span":[638,2,10]},{"path":[4,36,2,0,5],"span":[638,11,17]},{"path":[4,36,2,0,1],"span":[638,18,22]},{"path":[4,36,2,0,3],"span":[638,25,26]},{"path":[4,36,2,1],"span":[639,2,35]},{"path":[4,36,2,1,4],"span":[639,2,10]},{"path":[4,36,2,1,5],"span":[639,11,17]},{"path":[4,36,2,1,1],"span":[639,18,30]},{"path":[4,36,2,1,3],"span":[639,33,34]},{"path":[4,36,2,2],"span":[640,2,36]},{"path":[4,36,2,2,4],"span":[640,2,10]},{"path":[4,36,2,2,5],"span":[640,11,17]},{"path":[4,36,2,2,1],"span":[640,18,31]},{"path":[4,36,2,2,3],"span":[640,34,35]},{"path":[4,36,2,3],"span":[641,2,35]},{"path":[4,36,2,3,4],"span":[641,2,10]},{"path":[4,36,2,3,5],"span":[641,11,17]},{"path":[4,36,2,3,1],"span":[641,18,30]},{"path":[4,36,2,3,3],"span":[641,33,34]},{"path":[4,36,2,4],"span":[642,2,36]},{"path":[4,36,2,4,4],"span":[642,2,10]},{"path":[4,36,2,4,5],"span":[642,11,17]},{"path":[4,36,2,4,1],"span":[642,18,31]},{"path":[4,36,2,4,3],"span":[642,34,35]},{"path":[4,37],"span":[648,0,655,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,37,1],"span":[648,8,16]},{"path":[4,37,2,0],"span":[649,2,53]},{"path":[4,37,2,0,4],"span":[649,2,10]},{"path":[4,37,2,0,6],"span":[649,11,22]},{"path":[4,37,2,0,1],"span":[649,23,48]},{"path":[4,37,2,0,3],"span":[649,51,52]},{"path":[4,37,2,1],"span":[650,2,47]},{"path":[4,37,2,1,4],"span":[650,2,10]},{"path":[4,37,2,1,5],"span":[650,11,15]},{"path":[4,37,2,1,1],"span":[650,16,42]},{"path":[4,37,2,1,3],"span":[650,45,46]},{"path":[4,37,2,2],"span":[651,2,34]},{"path":[4,37,2,2,4],"span":[651,2,10]},{"path":[4,37,2,2,5],"span":[651,11,17]},{"path":[4,37,2,2,1],"span":[651,18,29]},{"path":[4,37,2,2,3],"span":[651,32,33]},{"path":[4,37,2,3],"span":[652,2,32]},{"path":[4,37,2,3,4],"span":[652,2,10]},{"path":[4,37,2,3,5],"span":[652,11,17]},{"path":[4,37,2,3,1],"span":[652,18,27]},{"path":[4,37,2,3,3],"span":[652,30,31]},{"path":[4,37,2,4],"span":[653,2,29]},{"path":[4,37,2,4,4],"span":[653,2,10]},{"path":[4,37,2,4,5],"span":[653,11,17]},{"path":[4,37,2,4,1],"span":[653,18,24]},{"path":[4,37,2,4,3],"span":[653,27,28]},{"path":[4,37,2,5],"span":[654,2,45]},{"path":[4,37,2,5,4],"span":[654,2,10]},{"path":[4,37,2,5,5],"span":[654,11,16]},{"path":[4,37,2,5,1],"span":[654,17,40]},{"path":[4,37,2,5,3],"span":[654,43,44]},{"path":[4,38],"span":[660,0,672,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,38,1],"span":[660,8,22]},{"path":[4,38,2,0],"span":[661,2,30]},{"path":[4,38,2,0,4],"span":[661,2,10]},{"path":[4,38,2,0,5],"span":[661,11,17]},{"path":[4,38,2,0,1],"span":[661,18,25]},{"path":[4,38,2,0,3],"span":[661,28,29]},{"path":[4,38,2,1],"span":[662,2,32]},{"path":[4,38,2,1,4],"span":[662,2,10]},{"path":[4,38,2,1,5],"span":[662,11,17]},{"path":[4,38,2,1,1],"span":[662,18,27]},{"path":[4,38,2,1,3],"span":[662,30,31]},{"path":[4,38,2,2],"span":[663,2,44]},{"path":[4,38,2,2,4],"span":[663,2,10]},{"path":[4,38,2,2,6],"span":[663,11,22]},{"path":[4,38,2,2,1],"span":[663,23,39]},{"path":[4,38,2,2,3],"span":[663,42,43]},{"path":[4,38,2,3],"span":[664,2,45]},{"path":[4,38,2,3,4],"span":[664,2,10]},{"path":[4,38,2,3,5],"span":[664,11,16]},{"path":[4,38,2,3,1],"span":[664,18,40]},{"path":[4,38,2,3,3],"span":[664,43,44]},{"path":[4,38,2,4],"span":[665,2,38]},{"path":[4,38,2,4,4],"span":[665,2,10]},{"path":[4,38,2,4,6],"span":[665,11,22]},{"path":[4,38,2,4,1],"span":[665,23,33]},{"path":[4,38,2,4,3],"span":[665,36,37]},{"path":[4,38,2,5],"span":[666,2,36]},{"path":[4,38,2,5,4],"span":[666,2,10]},{"path":[4,38,2,5,5],"span":[666,11,17]},{"path":[4,38,2,5,1],"span":[666,18,31]},{"path":[4,38,2,5,3],"span":[666,34,35]},{"path":[4,38,2,6],"span":[667,2,34]},{"path":[4,38,2,6,4],"span":[667,2,10]},{"path":[4,38,2,6,5],"span":[667,11,17]},{"path":[4,38,2,6,1],"span":[667,18,29]},{"path":[4,38,2,6,3],"span":[667,32,33]},{"path":[4,38,2,7],"span":[668,2,35]},{"path":[4,38,2,7,4],"span":[668,2,10]},{"path":[4,38,2,7,5],"span":[668,11,17]},{"path":[4,38,2,7,1],"span":[668,18,30]},{"path":[4,38,2,7,3],"span":[668,33,34]},{"path":[4,38,2,8],"span":[669,2,40]},{"path":[4,38,2,8,4],"span":[669,2,10]},{"path":[4,38,2,8,5],"span":[669,11,16]},{"path":[4,38,2,8,1],"span":[669,18,35]},{"path":[4,38,2,8,3],"span":[669,38,39]},{"path":[4,38,2,9],"span":[670,2,42]},{"path":[4,38,2,9,4],"span":[670,2,10]},{"path":[4,38,2,9,6],"span":[670,11,22]},{"path":[4,38,2,9,1],"span":[670,23,36]},{"path":[4,38,2,9,3],"span":[670,39,41]},{"path":[4,38,2,10],"span":[671,2,44]},{"path":[4,38,2,10,4],"span":[671,2,10]},{"path":[4,38,2,10,5],"span":[671,11,16]},{"path":[4,38,2,10,1],"span":[671,18,38]},{"path":[4,38,2,10,3],"span":[671,41,43]},{"path":[4,39],"span":[677,0,684,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,39,1],"span":[677,8,22]},{"path":[4,39,2,0],"span":[678,2,30]},{"path":[4,39,2,0,4],"span":[678,2,10]},{"path":[4,39,2,0,5],"span":[678,11,17]},{"path":[4,39,2,0,1],"span":[678,18,25]},{"path":[4,39,2,0,3],"span":[678,28,29]},{"path":[4,39,2,1],"span":[679,2,30]},{"path":[4,39,2,1,4],"span":[679,2,10]},{"path":[4,39,2,1,5],"span":[679,11,17]},{"path":[4,39,2,1,1],"span":[679,18,25]},{"path":[4,39,2,1,3],"span":[679,28,29]},{"path":[4,39,2,2],"span":[680,2,31]},{"path":[4,39,2,2,4],"span":[680,2,10]},{"path":[4,39,2,2,5],"span":[680,11,17]},{"path":[4,39,2,2,1],"span":[680,18,26]},{"path":[4,39,2,2,3],"span":[680,29,30]},{"path":[4,39,2,3],"span":[681,2,27]},{"path":[4,39,2,3,4],"span":[681,2,10]},{"path":[4,39,2,3,5],"span":[681,11,17]},{"path":[4,39,2,3,1],"span":[681,18,22]},{"path":[4,39,2,3,3],"span":[681,25,26]},{"path":[4,39,2,4],"span":[682,2,27]},{"path":[4,39,2,4,4],"span":[682,2,10]},{"path":[4,39,2,4,5],"span":[682,11,17]},{"path":[4,39,2,4,1],"span":[682,18,22]},{"path":[4,39,2,4,3],"span":[682,25,26]},{"path":[4,39,2,5],"span":[683,2,31]},{"path":[4,39,2,5,4],"span":[683,2,10]},{"path":[4,39,2,5,5],"span":[683,11,17]},{"path":[4,39,2,5,1],"span":[683,18,26]},{"path":[4,39,2,5,3],"span":[683,29,30]},{"path":[4,40],"span":[689,0,700,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,40,1],"span":[689,8,18]},{"path":[4,40,2,0],"span":[690,2,37]},{"path":[4,40,2,0,4],"span":[690,2,10]},{"path":[4,40,2,0,5],"span":[690,11,17]},{"path":[4,40,2,0,1],"span":[690,18,32]},{"path":[4,40,2,0,3],"span":[690,35,36]},{"path":[4,40,2,1],"span":[691,2,30]},{"path":[4,40,2,1,4],"span":[691,2,10]},{"path":[4,40,2,1,5],"span":[691,11,17]},{"path":[4,40,2,1,1],"span":[691,18,25]},{"path":[4,40,2,1,3],"span":[691,28,29]},{"path":[4,40,2,2],"span":[692,2,27]},{"path":[4,40,2,2,4],"span":[692,2,10]},{"path":[4,40,2,2,5],"span":[692,11,17]},{"path":[4,40,2,2,1],"span":[692,18,22]},{"path":[4,40,2,2,3],"span":[692,25,26]},{"path":[4,40,2,3],"span":[693,2,41]},{"path":[4,40,2,3,4],"span":[693,2,10]},{"path":[4,40,2,3,5],"span":[693,11,17]},{"path":[4,40,2,3,1],"span":[693,18,36]},{"path":[4,40,2,3,3],"span":[693,39,40]},{"path":[4,40,2,4],"span":[694,2,40]},{"path":[4,40,2,4,4],"span":[694,2,10]},{"path":[4,40,2,4,5],"span":[694,11,17]},{"path":[4,40,2,4,1],"span":[694,18,35]},{"path":[4,40,2,4,3],"span":[694,38,39]},{"path":[4,40,2,5],"span":[695,2,37]},{"path":[4,40,2,5,4],"span":[695,2,10]},{"path":[4,40,2,5,5],"span":[695,11,17]},{"path":[4,40,2,5,1],"span":[695,18,32]},{"path":[4,40,2,5,3],"span":[695,35,36]},{"path":[4,40,2,6],"span":[698,2,34],"leadingComments":" from mac\n"},{"path":[4,40,2,6,4],"span":[698,2,10]},{"path":[4,40,2,6,5],"span":[698,11,17]},{"path":[4,40,2,6,1],"span":[698,18,29]},{"path":[4,40,2,6,3],"span":[698,32,33]},{"path":[4,40,2,7],"span":[699,2,32]},{"path":[4,40,2,7,4],"span":[699,2,10]},{"path":[4,40,2,7,5],"span":[699,11,17]},{"path":[4,40,2,7,1],"span":[699,18,27]},{"path":[4,40,2,7,3],"span":[699,30,31]},{"path":[4,41],"span":[705,0,710,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,41,1],"span":[705,8,22]},{"path":[4,41,2,0],"span":[706,2,30]},{"path":[4,41,2,0,4],"span":[706,2,10]},{"path":[4,41,2,0,5],"span":[706,11,17]},{"path":[4,41,2,0,1],"span":[706,18,25]},{"path":[4,41,2,0,3],"span":[706,28,29]},{"path":[4,41,2,1],"span":[707,2,28]},{"path":[4,41,2,1,4],"span":[707,2,10]},{"path":[4,41,2,1,5],"span":[707,11,17]},{"path":[4,41,2,1,1],"span":[707,18,22]},{"path":[4,41,2,1,3],"span":[707,26,27]},{"path":[4,41,2,2],"span":[708,2,27]},{"path":[4,41,2,2,4],"span":[708,2,10]},{"path":[4,41,2,2,5],"span":[708,11,17]},{"path":[4,41,2,2,1],"span":[708,18,22]},{"path":[4,41,2,2,3],"span":[708,25,26]},{"path":[4,41,2,3],"span":[709,2,32]},{"path":[4,41,2,3,4],"span":[709,2,10]},{"path":[4,41,2,3,6],"span":[709,11,22]},{"path":[4,41,2,3,1],"span":[709,23,27]},{"path":[4,41,2,3,3],"span":[709,30,31]},{"path":[4,42],"span":[715,0,721,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,42,1],"span":[715,8,22]},{"path":[4,42,2,0],"span":[716,2,27],"trailingComments":" caption\n"},{"path":[4,42,2,0,4],"span":[716,2,10]},{"path":[4,42,2,0,5],"span":[716,11,17]},{"path":[4,42,2,0,1],"span":[716,18,22]},{"path":[4,42,2,0,3],"span":[716,25,26]},{"path":[4,42,2,1],"span":[717,2,27],"trailingComments":" executable_path\n"},{"path":[4,42,2,1,4],"span":[717,2,10]},{"path":[4,42,2,1,5],"span":[717,11,17]},{"path":[4,42,2,1,1],"span":[717,18,22]},{"path":[4,42,2,1,3],"span":[717,25,26]},{"path":[4,42,2,2],"span":[718,2,29]},{"path":[4,42,2,2,4],"span":[718,2,10]},{"path":[4,42,2,2,5],"span":[718,11,16]},{"path":[4,42,2,2,1],"span":[718,17,24]},{"path":[4,42,2,2,3],"span":[718,27,28]},{"path":[4,42,2,3],"span":[719,2,30],"trailingComments":" windows: 0 = LOWEST , 31 = HIGHEST, as per table: https://learn.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities\n"},{"path":[4,42,2,3,4],"span":[719,2,10]},{"path":[4,42,2,3,5],"span":[719,11,16]},{"path":[4,42,2,3,1],"span":[719,17,25]},{"path":[4,42,2,3,3],"span":[719,28,29]},{"path":[4,42,2,4],"span":[720,2,29]},{"path":[4,42,2,4,4],"span":[720,2,10]},{"path":[4,42,2,4,5],"span":[720,11,17]},{"path":[4,42,2,4,1],"span":[720,18,24]},{"path":[4,42,2,4,3],"span":[720,27,28]},{"path":[4,43],"span":[726,0,737,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,43,1],"span":[726,8,30]},{"path":[4,43,2,0],"span":[727,2,27]},{"path":[4,43,2,0,4],"span":[727,2,10]},{"path":[4,43,2,0,5],"span":[727,11,17]},{"path":[4,43,2,0,1],"span":[727,18,22]},{"path":[4,43,2,0,3],"span":[727,25,26]},{"path":[4,43,2,1],"span":[728,2,30]},{"path":[4,43,2,1,4],"span":[728,2,10]},{"path":[4,43,2,1,5],"span":[728,11,17]},{"path":[4,43,2,1,1],"span":[728,18,25]},{"path":[4,43,2,1,3],"span":[728,28,29]},{"path":[4,43,2,2],"span":[729,2,31]},{"path":[4,43,2,2,4],"span":[729,2,10]},{"path":[4,43,2,2,5],"span":[729,11,17]},{"path":[4,43,2,2,1],"span":[729,18,26]},{"path":[4,43,2,2,3],"span":[729,29,30]},{"path":[4,43,2,3],"span":[730,2,33]},{"path":[4,43,2,3,4],"span":[730,2,10]},{"path":[4,43,2,3,5],"span":[730,11,17]},{"path":[4,43,2,3,1],"span":[730,18,28]},{"path":[4,43,2,3,3],"span":[730,31,32]},{"path":[4,43,2,4],"span":[731,2,33]},{"path":[4,43,2,4,4],"span":[731,2,10]},{"path":[4,43,2,4,5],"span":[731,11,17]},{"path":[4,43,2,4,1],"span":[731,18,28]},{"path":[4,43,2,4,3],"span":[731,31,32]},{"path":[4,43,2,5],"span":[732,2,28]},{"path":[4,43,2,5,4],"span":[732,2,10]},{"path":[4,43,2,5,5],"span":[732,11,17]},{"path":[4,43,2,5,1],"span":[732,18,23]},{"path":[4,43,2,5,3],"span":[732,26,27]},{"path":[4,43,2,6],"span":[733,2,28]},{"path":[4,43,2,6,4],"span":[733,2,10]},{"path":[4,43,2,6,5],"span":[733,11,15]},{"path":[4,43,2,6,1],"span":[733,16,23]},{"path":[4,43,2,6,3],"span":[733,26,27]},{"path":[4,43,2,7],"span":[734,2,33]},{"path":[4,43,2,7,4],"span":[734,2,10]},{"path":[4,43,2,7,5],"span":[734,11,15]},{"path":[4,43,2,7,1],"span":[734,16,28]},{"path":[4,43,2,7,3],"span":[734,31,32]},{"path":[4,43,2,8],"span":[735,2,32]},{"path":[4,43,2,8,4],"span":[735,2,10]},{"path":[4,43,2,8,5],"span":[735,11,15]},{"path":[4,43,2,8,1],"span":[735,16,27]},{"path":[4,43,2,8,3],"span":[735,30,31]},{"path":[4,43,2,9],"span":[736,2,38]},{"path":[4,43,2,9,4],"span":[736,2,10]},{"path":[4,43,2,9,5],"span":[736,11,15]},{"path":[4,43,2,9,1],"span":[736,16,32]},{"path":[4,43,2,9,3],"span":[736,35,37]},{"path":[4,44],"span":[742,0,746,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,44,1],"span":[742,8,31]},{"path":[4,44,8,0],"span":[743,2,745,3]},{"path":[4,44,8,0,1],"span":[743,8,10]},{"path":[4,44,2,0],"span":[744,6,32]},{"path":[4,44,2,0,6],"span":[744,6,23]},{"path":[4,44,2,0,1],"span":[744,24,27]},{"path":[4,44,2,0,3],"span":[744,30,31]},{"path":[4,45],"span":[751,0,762,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,45,1],"span":[751,8,25]},{"path":[4,45,2,0],"span":[752,2,32]},{"path":[4,45,2,0,4],"span":[752,2,10]},{"path":[4,45,2,0,5],"span":[752,11,15]},{"path":[4,45,2,0,1],"span":[752,16,27]},{"path":[4,45,2,0,3],"span":[752,30,31]},{"path":[4,45,2,1],"span":[753,2,38]},{"path":[4,45,2,1,4],"span":[753,2,10]},{"path":[4,45,2,1,5],"span":[753,11,17]},{"path":[4,45,2,1,1],"span":[753,18,33]},{"path":[4,45,2,1,3],"span":[753,36,37]},{"path":[4,45,2,2],"span":[754,2,37]},{"path":[4,45,2,2,4],"span":[754,2,10]},{"path":[4,45,2,2,5],"span":[754,11,15]},{"path":[4,45,2,2,1],"span":[754,16,32]},{"path":[4,45,2,2,3],"span":[754,35,36]},{"path":[4,45,2,3],"span":[755,2,27]},{"path":[4,45,2,3,4],"span":[755,2,10]},{"path":[4,45,2,3,5],"span":[755,11,17]},{"path":[4,45,2,3,1],"span":[755,18,22]},{"path":[4,45,2,3,3],"span":[755,25,26]},{"path":[4,45,2,4],"span":[756,2,50]},{"path":[4,45,2,4,4],"span":[756,2,10]},{"path":[4,45,2,4,5],"span":[756,11,15]},{"path":[4,45,2,4,1],"span":[756,16,45]},{"path":[4,45,2,4,3],"span":[756,48,49]},{"path":[4,45,2,5],"span":[757,2,37]},{"path":[4,45,2,5,4],"span":[757,2,10]},{"path":[4,45,2,5,5],"span":[757,11,15]},{"path":[4,45,2,5,1],"span":[757,16,32]},{"path":[4,45,2,5,3],"span":[757,35,36]},{"path":[4,45,2,6],"span":[758,2,37]},{"path":[4,45,2,6,4],"span":[758,2,10]},{"path":[4,45,2,6,5],"span":[758,11,15]},{"path":[4,45,2,6,1],"span":[758,16,32]},{"path":[4,45,2,6,3],"span":[758,35,36]},{"path":[4,45,2,7],"span":[759,2,40]},{"path":[4,45,2,7,4],"span":[759,2,10]},{"path":[4,45,2,7,5],"span":[759,11,15]},{"path":[4,45,2,7,1],"span":[759,16,35]},{"path":[4,45,2,7,3],"span":[759,38,39]},{"path":[4,45,2,8],"span":[760,2,44]},{"path":[4,45,2,8,4],"span":[760,2,10]},{"path":[4,45,2,8,6],"span":[760,11,22]},{"path":[4,45,2,8,1],"span":[760,23,38]},{"path":[4,45,2,8,3],"span":[760,41,43]},{"path":[4,45,2,9],"span":[761,2,43]},{"path":[4,45,2,9,4],"span":[761,2,10]},{"path":[4,45,2,9,5],"span":[761,11,17]},{"path":[4,45,2,9,1],"span":[761,18,37]},{"path":[4,45,2,9,3],"span":[761,40,42]},{"path":[4,46],"span":[768,0,777,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,46,1],"span":[768,8,14]},{"path":[4,46,8,0],"span":[769,2,773,3]},{"path":[4,46,8,0,1],"span":[769,8,14]},{"path":[4,46,2,0],"span":[770,4,36]},{"path":[4,46,2,0,6],"span":[770,4,23]},{"path":[4,46,2,0,1],"span":[770,24,31]},{"path":[4,46,2,0,3],"span":[770,34,35]},{"path":[4,46,2,1],"span":[771,4,39]},{"path":[4,46,2,1,6],"span":[771,4,26]},{"path":[4,46,2,1,1],"span":[771,27,34]},{"path":[4,46,2,1,3],"span":[771,37,38]},{"path":[4,46,2,2],"span":[772,4,41]},{"path":[4,46,2,2,6],"span":[772,4,24]},{"path":[4,46,2,2,1],"span":[772,25,36]},{"path":[4,46,2,2,3],"span":[772,39,40]},{"path":[4,46,2,3],"span":[775,2,29]},{"path":[4,46,2,3,4],"span":[775,2,10]},{"path":[4,46,2,3,5],"span":[775,11,17]},{"path":[4,46,2,3,1],"span":[775,18,22]},{"path":[4,46,2,3,3],"span":[775,25,28]},{"path":[4,46,2,4],"span":[776,2,36]},{"path":[4,46,2,4,4],"span":[776,2,10]},{"path":[4,46,2,4,5],"span":[776,11,17]},{"path":[4,46,2,4,1],"span":[776,18,29]},{"path":[4,46,2,4,3],"span":[776,32,35]},{"path":[4,47],"span":[782,0,801,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,47,1],"span":[782,8,27]},{"path":[4,47,2,0],"span":[783,2,34]},{"path":[4,47,2,0,4],"span":[783,2,10]},{"path":[4,47,2,0,5],"span":[783,11,15]},{"path":[4,47,2,0,1],"span":[783,17,29]},{"path":[4,47,2,0,3],"span":[783,32,33]},{"path":[4,47,2,1],"span":[784,2,33]},{"path":[4,47,2,1,4],"span":[784,2,10]},{"path":[4,47,2,1,5],"span":[784,11,15]},{"path":[4,47,2,1,1],"span":[784,17,28]},{"path":[4,47,2,1,3],"span":[784,31,32]},{"path":[4,47,2,2],"span":[785,2,38]},{"path":[4,47,2,2,4],"span":[785,2,10]},{"path":[4,47,2,2,5],"span":[785,11,15]},{"path":[4,47,2,2,1],"span":[785,17,33]},{"path":[4,47,2,2,3],"span":[785,36,37]},{"path":[4,47,2,3],"span":[786,2,36]},{"path":[4,47,2,3,4],"span":[786,2,10]},{"path":[4,47,2,3,5],"span":[786,11,17]},{"path":[4,47,2,3,1],"span":[786,18,31]},{"path":[4,47,2,3,3],"span":[786,34,35]},{"path":[4,47,2,4],"span":[787,2,32]},{"path":[4,47,2,4,4],"span":[787,2,10]},{"path":[4,47,2,4,5],"span":[787,11,16]},{"path":[4,47,2,4,1],"span":[787,18,27]},{"path":[4,47,2,4,3],"span":[787,30,31]},{"path":[4,47,2,5],"span":[788,2,32]},{"path":[4,47,2,5,4],"span":[788,2,10]},{"path":[4,47,2,5,5],"span":[788,11,17]},{"path":[4,47,2,5,1],"span":[788,18,27]},{"path":[4,47,2,5,3],"span":[788,30,31]},{"path":[4,47,2,6],"span":[789,2,49]},{"path":[4,47,2,6,4],"span":[789,2,10]},{"path":[4,47,2,6,5],"span":[789,11,16]},{"path":[4,47,2,6,1],"span":[789,18,44]},{"path":[4,47,2,6,3],"span":[789,47,48]},{"path":[4,47,2,7],"span":[790,2,34]},{"path":[4,47,2,7,4],"span":[790,2,10]},{"path":[4,47,2,7,5],"span":[790,11,17]},{"path":[4,47,2,7,1],"span":[790,18,30]},{"path":[4,47,2,7,3],"span":[790,32,33]},{"path":[4,47,2,8],"span":[791,2,29]},{"path":[4,47,2,8,4],"span":[791,2,10]},{"path":[4,47,2,8,5],"span":[791,11,15]},{"path":[4,47,2,8,1],"span":[791,17,24]},{"path":[4,47,2,8,3],"span":[791,27,28]},{"path":[4,47,2,9],"span":[792,2,34]},{"path":[4,47,2,9,4],"span":[792,2,10]},{"path":[4,47,2,9,5],"span":[792,11,17]},{"path":[4,47,2,9,1],"span":[792,18,28]},{"path":[4,47,2,9,3],"span":[792,31,33]},{"path":[4,47,2,10],"span":[793,2,34]},{"path":[4,47,2,10,4],"span":[793,2,10]},{"path":[4,47,2,10,5],"span":[793,11,17]},{"path":[4,47,2,10,1],"span":[793,18,28]},{"path":[4,47,2,10,3],"span":[793,31,33]},{"path":[4,47,2,11],"span":[794,2,29]},{"path":[4,47,2,11,4],"span":[794,2,10]},{"path":[4,47,2,11,5],"span":[794,11,17]},{"path":[4,47,2,11,1],"span":[794,18,23]},{"path":[4,47,2,11,3],"span":[794,26,28]},{"path":[4,47,2,12],"span":[795,2,30]},{"path":[4,47,2,12,4],"span":[795,2,10]},{"path":[4,47,2,12,5],"span":[795,11,17]},{"path":[4,47,2,12,1],"span":[795,18,24]},{"path":[4,47,2,12,3],"span":[795,27,29]},{"path":[4,47,2,13],"span":[796,2,30]},{"path":[4,47,2,13,4],"span":[796,2,10]},{"path":[4,47,2,13,5],"span":[796,11,16]},{"path":[4,47,2,13,1],"span":[796,18,24]},{"path":[4,47,2,13,3],"span":[796,27,29]},{"path":[4,47,2,14],"span":[797,2,28]},{"path":[4,47,2,14,4],"span":[797,2,10]},{"path":[4,47,2,14,5],"span":[797,11,17]},{"path":[4,47,2,14,1],"span":[797,18,22]},{"path":[4,47,2,14,3],"span":[797,25,27]},{"path":[4,47,2,15],"span":[798,2,35]},{"path":[4,47,2,15,4],"span":[798,2,10]},{"path":[4,47,2,15,5],"span":[798,11,17]},{"path":[4,47,2,15,1],"span":[798,18,29]},{"path":[4,47,2,15,3],"span":[798,32,34]},{"path":[4,47,2,16],"span":[799,2,31]},{"path":[4,47,2,16,4],"span":[799,2,10]},{"path":[4,47,2,16,5],"span":[799,11,17]},{"path":[4,47,2,16,1],"span":[799,18,25]},{"path":[4,47,2,16,3],"span":[799,28,30]},{"path":[4,47,2,17],"span":[800,2,36]},{"path":[4,47,2,17,4],"span":[800,2,10]},{"path":[4,47,2,17,5],"span":[800,11,17]},{"path":[4,47,2,17,1],"span":[800,18,30]},{"path":[4,47,2,17,3],"span":[800,33,35]},{"path":[4,48],"span":[806,0,825,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,48,1],"span":[806,8,30]},{"path":[4,48,2,0],"span":[807,2,32]},{"path":[4,48,2,0,4],"span":[807,2,10]},{"path":[4,48,2,0,5],"span":[807,11,17]},{"path":[4,48,2,0,1],"span":[807,18,27]},{"path":[4,48,2,0,3],"span":[807,30,31]},{"path":[4,48,2,1],"span":[808,2,32]},{"path":[4,48,2,1,4],"span":[808,2,10]},{"path":[4,48,2,1,5],"span":[808,11,17]},{"path":[4,48,2,1,1],"span":[808,18,27]},{"path":[4,48,2,1,3],"span":[808,30,31]},{"path":[4,48,2,2],"span":[809,2,33]},{"path":[4,48,2,2,4],"span":[809,2,10]},{"path":[4,48,2,2,5],"span":[809,11,17]},{"path":[4,48,2,2,1],"span":[809,18,28]},{"path":[4,48,2,2,3],"span":[809,31,32]},{"path":[4,48,2,3],"span":[810,2,34]},{"path":[4,48,2,3,4],"span":[810,2,10]},{"path":[4,48,2,3,5],"span":[810,11,17]},{"path":[4,48,2,3,1],"span":[810,18,29]},{"path":[4,48,2,3,3],"span":[810,32,33]},{"path":[4,48,2,4],"span":[811,2,36]},{"path":[4,48,2,4,4],"span":[811,2,10]},{"path":[4,48,2,4,5],"span":[811,11,17]},{"path":[4,48,2,4,1],"span":[811,18,31]},{"path":[4,48,2,4,3],"span":[811,34,35]},{"path":[4,48,2,5],"span":[812,2,44]},{"path":[4,48,2,5,6],"span":[812,2,27]},{"path":[4,48,2,5,1],"span":[812,28,39]},{"path":[4,48,2,5,3],"span":[812,42,43]},{"path":[4,48,2,6],"span":[813,2,37]},{"path":[4,48,2,6,4],"span":[813,2,10]},{"path":[4,48,2,6,5],"span":[813,11,17]},{"path":[4,48,2,6,1],"span":[813,18,32]},{"path":[4,48,2,6,3],"span":[813,35,36]},{"path":[4,48,2,7],"span":[814,2,34]},{"path":[4,48,2,7,4],"span":[814,2,10]},{"path":[4,48,2,7,5],"span":[814,11,17]},{"path":[4,48,2,7,1],"span":[814,18,29]},{"path":[4,48,2,7,3],"span":[814,32,33]},{"path":[4,48,2,8],"span":[815,2,31]},{"path":[4,48,2,8,4],"span":[815,2,10]},{"path":[4,48,2,8,5],"span":[815,11,17]},{"path":[4,48,2,8,1],"span":[815,18,26]},{"path":[4,48,2,8,3],"span":[815,29,30]},{"path":[4,48,2,9],"span":[816,2,32]},{"path":[4,48,2,9,4],"span":[816,2,10]},{"path":[4,48,2,9,5],"span":[816,11,15]},{"path":[4,48,2,9,1],"span":[816,17,26]},{"path":[4,48,2,9,3],"span":[816,29,31]},{"path":[4,48,2,10],"span":[817,2,32]},{"path":[4,48,2,10,4],"span":[817,2,10]},{"path":[4,48,2,10,5],"span":[817,11,17]},{"path":[4,48,2,10,1],"span":[817,18,26]},{"path":[4,48,2,10,3],"span":[817,29,31]},{"path":[4,48,2,11],"span":[818,2,27]},{"path":[4,48,2,11,4],"span":[818,2,10]},{"path":[4,48,2,11,5],"span":[818,11,17]},{"path":[4,48,2,11,1],"span":[818,18,21]},{"path":[4,48,2,11,3],"span":[818,24,26]},{"path":[4,48,2,12],"span":[819,2,36]},{"path":[4,48,2,12,4],"span":[819,2,10]},{"path":[4,48,2,12,5],"span":[819,11,17]},{"path":[4,48,2,12,1],"span":[819,18,30]},{"path":[4,48,2,12,3],"span":[819,33,35]},{"path":[4,48,2,13],"span":[820,2,35]},{"path":[4,48,2,13,4],"span":[820,2,10]},{"path":[4,48,2,13,5],"span":[820,11,17]},{"path":[4,48,2,13,1],"span":[820,18,29]},{"path":[4,48,2,13,3],"span":[820,32,34]},{"path":[4,48,2,14],"span":[821,2,36]},{"path":[4,48,2,14,4],"span":[821,2,10]},{"path":[4,48,2,14,5],"span":[821,11,17]},{"path":[4,48,2,14,1],"span":[821,18,30]},{"path":[4,48,2,14,3],"span":[821,33,35]},{"path":[4,48,2,15],"span":[822,2,35]},{"path":[4,48,2,15,4],"span":[822,2,10]},{"path":[4,48,2,15,5],"span":[822,11,17]},{"path":[4,48,2,15,1],"span":[822,18,29]},{"path":[4,48,2,15,3],"span":[822,32,34]},{"path":[4,48,2,16],"span":[823,2,30]},{"path":[4,48,2,16,4],"span":[823,2,10]},{"path":[4,48,2,16,5],"span":[823,11,17]},{"path":[4,48,2,16,1],"span":[823,18,24]},{"path":[4,48,2,16,3],"span":[823,27,29]},{"path":[4,48,2,17],"span":[824,2,44]},{"path":[4,48,2,17,4],"span":[824,2,10]},{"path":[4,48,2,17,5],"span":[824,11,17]},{"path":[4,48,2,17,1],"span":[824,18,38]},{"path":[4,48,2,17,3],"span":[824,41,43]},{"path":[4,49],"span":[830,0,850,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,49,1],"span":[830,8,28]},{"path":[4,49,2,0],"span":[831,2,34]},{"path":[4,49,2,0,4],"span":[831,2,10]},{"path":[4,49,2,0,5],"span":[831,11,17]},{"path":[4,49,2,0,1],"span":[831,18,29]},{"path":[4,49,2,0,3],"span":[831,32,33]},{"path":[4,49,2,1],"span":[832,2,32]},{"path":[4,49,2,1,4],"span":[832,2,10]},{"path":[4,49,2,1,5],"span":[832,11,17]},{"path":[4,49,2,1,1],"span":[832,18,27]},{"path":[4,49,2,1,3],"span":[832,30,31]},{"path":[4,49,2,2],"span":[833,2,40]},{"path":[4,49,2,2,4],"span":[833,2,10]},{"path":[4,49,2,2,5],"span":[833,11,17]},{"path":[4,49,2,2,1],"span":[833,18,35]},{"path":[4,49,2,2,3],"span":[833,38,39]},{"path":[4,49,2,3],"span":[834,2,34]},{"path":[4,49,2,3,4],"span":[834,2,10]},{"path":[4,49,2,3,5],"span":[834,11,17]},{"path":[4,49,2,3,1],"span":[834,18,29]},{"path":[4,49,2,3,3],"span":[834,32,33]},{"path":[4,49,2,4],"span":[835,2,32]},{"path":[4,49,2,4,4],"span":[835,2,10]},{"path":[4,49,2,4,5],"span":[835,11,17]},{"path":[4,49,2,4,1],"span":[835,18,27]},{"path":[4,49,2,4,3],"span":[835,30,31]},{"path":[4,49,2,5],"span":[836,2,32]},{"path":[4,49,2,5,4],"span":[836,2,10]},{"path":[4,49,2,5,5],"span":[836,11,17]},{"path":[4,49,2,5,1],"span":[836,18,27]},{"path":[4,49,2,5,3],"span":[836,30,31]},{"path":[4,49,2,6],"span":[837,2,35]},{"path":[4,49,2,6,4],"span":[837,2,10]},{"path":[4,49,2,6,5],"span":[837,11,17]},{"path":[4,49,2,6,1],"span":[837,18,30]},{"path":[4,49,2,6,3],"span":[837,33,34]},{"path":[4,49,2,7],"span":[838,2,30]},{"path":[4,49,2,7,4],"span":[838,2,10]},{"path":[4,49,2,7,5],"span":[838,11,17]},{"path":[4,49,2,7,1],"span":[838,18,25]},{"path":[4,49,2,7,3],"span":[838,28,29]},{"path":[4,49,2,8],"span":[839,2,30]},{"path":[4,49,2,8,4],"span":[839,2,10]},{"path":[4,49,2,8,5],"span":[839,11,16]},{"path":[4,49,2,8,1],"span":[839,18,25]},{"path":[4,49,2,8,3],"span":[839,28,29]},{"path":[4,49,2,9],"span":[840,2,38]},{"path":[4,49,2,9,4],"span":[840,2,10]},{"path":[4,49,2,9,5],"span":[840,11,17]},{"path":[4,49,2,9,1],"span":[840,18,32]},{"path":[4,49,2,9,3],"span":[840,35,37]},{"path":[4,49,2,10],"span":[841,2,35]},{"path":[4,49,2,10,4],"span":[841,2,10]},{"path":[4,49,2,10,5],"span":[841,11,17]},{"path":[4,49,2,10,1],"span":[841,18,29]},{"path":[4,49,2,10,3],"span":[841,32,34]},{"path":[4,49,2,11],"span":[842,2,35]},{"path":[4,49,2,11,4],"span":[842,2,10]},{"path":[4,49,2,11,5],"span":[842,11,17]},{"path":[4,49,2,11,1],"span":[842,18,29]},{"path":[4,49,2,11,3],"span":[842,32,34]},{"path":[4,49,2,12],"span":[843,2,32]},{"path":[4,49,2,12,4],"span":[843,2,10]},{"path":[4,49,2,12,5],"span":[843,11,17]},{"path":[4,49,2,12,1],"span":[843,18,26]},{"path":[4,49,2,12,3],"span":[843,29,31]},{"path":[4,49,2,13],"span":[844,2,43]},{"path":[4,49,2,13,4],"span":[844,2,10]},{"path":[4,49,2,13,5],"span":[844,11,17]},{"path":[4,49,2,13,1],"span":[844,18,37]},{"path":[4,49,2,13,3],"span":[844,40,42]},{"path":[4,49,2,14],"span":[845,2,39]},{"path":[4,49,2,14,4],"span":[845,2,10]},{"path":[4,49,2,14,5],"span":[845,11,17]},{"path":[4,49,2,14,1],"span":[845,18,33]},{"path":[4,49,2,14,3],"span":[845,36,38]},{"path":[4,49,2,15],"span":[846,2,28]},{"path":[4,49,2,15,4],"span":[846,2,10]},{"path":[4,49,2,15,5],"span":[846,11,17]},{"path":[4,49,2,15,1],"span":[846,18,22]},{"path":[4,49,2,15,3],"span":[846,25,27]},{"path":[4,49,2,16],"span":[847,2,32]},{"path":[4,49,2,16,4],"span":[847,2,10]},{"path":[4,49,2,16,5],"span":[847,11,17]},{"path":[4,49,2,16,1],"span":[847,18,26]},{"path":[4,49,2,16,3],"span":[847,29,31]},{"path":[4,49,2,17],"span":[848,2,42]},{"path":[4,49,2,17,4],"span":[848,2,10]},{"path":[4,49,2,17,5],"span":[848,11,17]},{"path":[4,49,2,17,1],"span":[848,18,36]},{"path":[4,49,2,17,3],"span":[848,39,41]},{"path":[4,49,2,18],"span":[849,2,36]},{"path":[4,49,2,18,4],"span":[849,2,10]},{"path":[4,49,2,18,5],"span":[849,11,17]},{"path":[4,49,2,18,1],"span":[849,18,30]},{"path":[4,49,2,18,3],"span":[849,33,35]},{"path":[4,50],"span":[855,0,864,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,50,1],"span":[855,8,17]},{"path":[4,50,2,0],"span":[856,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,50,2,0,4],"span":[856,2,10]},{"path":[4,50,2,0,5],"span":[856,11,17]},{"path":[4,50,2,0,1],"span":[856,18,25]},{"path":[4,50,2,0,3],"span":[856,28,29]},{"path":[4,50,2,1],"span":[857,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,50,2,1,4],"span":[857,2,10]},{"path":[4,50,2,1,5],"span":[857,11,17]},{"path":[4,50,2,1,1],"span":[857,18,27]},{"path":[4,50,2,1,3],"span":[857,30,31]},{"path":[4,50,2,2],"span":[858,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,50,2,2,4],"span":[858,2,10]},{"path":[4,50,2,2,5],"span":[858,11,17]},{"path":[4,50,2,2,1],"span":[858,18,30]},{"path":[4,50,2,2,3],"span":[858,33,34]},{"path":[4,50,2,3],"span":[860,2,27],"trailingComments":" Linux\n"},{"path":[4,50,2,3,4],"span":[860,2,10]},{"path":[4,50,2,3,5],"span":[860,11,17]},{"path":[4,50,2,3,1],"span":[860,18,22]},{"path":[4,50,2,3,3],"span":[860,25,26]},{"path":[4,50,2,4],"span":[861,2,37],"trailingComments":" Linux\n"},{"path":[4,50,2,4,4],"span":[861,2,10]},{"path":[4,50,2,4,5],"span":[861,11,17]},{"path":[4,50,2,4,1],"span":[861,18,32]},{"path":[4,50,2,4,3],"span":[861,35,36]},{"path":[4,50,2,5],"span":[862,2,45],"trailingComments":" Linux\n"},{"path":[4,50,2,5,4],"span":[862,2,10]},{"path":[4,50,2,5,5],"span":[862,11,17]},{"path":[4,50,2,5,1],"span":[862,18,40]},{"path":[4,50,2,5,3],"span":[862,43,44]},{"path":[4,50,2,6],"span":[863,2,29],"trailingComments":" Linux\n"},{"path":[4,50,2,6,4],"span":[863,2,10]},{"path":[4,50,2,6,5],"span":[863,11,17]},{"path":[4,50,2,6,1],"span":[863,18,24]},{"path":[4,50,2,6,3],"span":[863,27,28]},{"path":[4,51],"span":[869,0,898,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,51,1],"span":[869,8,20]},{"path":[4,51,2,0],"span":[870,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,51,2,0,4],"span":[870,2,10]},{"path":[4,51,2,0,5],"span":[870,16,22]},{"path":[4,51,2,0,1],"span":[870,24,28]},{"path":[4,51,2,0,3],"span":[870,31,32]},{"path":[4,51,2,1],"span":[871,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,1,4],"span":[871,2,10]},{"path":[4,51,2,1,5],"span":[871,16,21]},{"path":[4,51,2,1,1],"span":[871,24,42]},{"path":[4,51,2,1,3],"span":[871,45,46]},{"path":[4,51,2,2],"span":[872,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,2,4],"span":[872,2,10]},{"path":[4,51,2,2,5],"span":[872,16,21]},{"path":[4,51,2,2,1],"span":[872,24,46]},{"path":[4,51,2,2,3],"span":[872,49,50]},{"path":[4,51,2,3],"span":[873,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,3,4],"span":[873,2,10]},{"path":[4,51,2,3,5],"span":[873,16,21]},{"path":[4,51,2,3,1],"span":[873,24,53]},{"path":[4,51,2,3,3],"span":[873,56,57]},{"path":[4,51,2,4],"span":[874,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,4,4],"span":[874,2,10]},{"path":[4,51,2,4,5],"span":[874,16,21]},{"path":[4,51,2,4,1],"span":[874,24,48]},{"path":[4,51,2,4,3],"span":[874,51,52]},{"path":[4,51,2,5],"span":[875,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,5,4],"span":[875,2,10]},{"path":[4,51,2,5,5],"span":[875,16,21]},{"path":[4,51,2,5,1],"span":[875,24,44]},{"path":[4,51,2,5,3],"span":[875,47,48]},{"path":[4,51,2,6],"span":[876,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,6,4],"span":[876,2,10]},{"path":[4,51,2,6,6],"span":[876,16,27]},{"path":[4,51,2,6,1],"span":[876,32,49]},{"path":[4,51,2,6,3],"span":[876,52,53]},{"path":[4,51,2,7],"span":[877,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,7,4],"span":[877,2,10]},{"path":[4,51,2,7,5],"span":[877,16,21]},{"path":[4,51,2,7,1],"span":[877,24,51]},{"path":[4,51,2,7,3],"span":[877,54,55]},{"path":[4,51,2,8],"span":[878,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,51,2,8,4],"span":[878,2,10]},{"path":[4,51,2,8,5],"span":[878,16,22]},{"path":[4,51,2,8,1],"span":[878,24,33]},{"path":[4,51,2,8,3],"span":[878,36,37]},{"path":[4,51,2,9],"span":[879,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,9,4],"span":[879,2,10]},{"path":[4,51,2,9,5],"span":[879,16,21]},{"path":[4,51,2,9,1],"span":[879,24,44]},{"path":[4,51,2,9,3],"span":[879,47,49]},{"path":[4,51,2,10],"span":[880,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,10,4],"span":[880,2,10]},{"path":[4,51,2,10,5],"span":[880,16,22]},{"path":[4,51,2,10,1],"span":[880,24,38]},{"path":[4,51,2,10,3],"span":[880,41,43]},{"path":[4,51,2,11],"span":[881,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,11,4],"span":[881,2,10]},{"path":[4,51,2,11,5],"span":[881,16,22]},{"path":[4,51,2,11,1],"span":[881,24,36]},{"path":[4,51,2,11,3],"span":[881,39,41]},{"path":[4,51,2,12],"span":[882,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,12,4],"span":[882,2,10]},{"path":[4,51,2,12,5],"span":[882,16,22]},{"path":[4,51,2,12,1],"span":[882,24,35]},{"path":[4,51,2,12,3],"span":[882,38,40]},{"path":[4,51,2,13],"span":[883,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,13,4],"span":[883,2,10]},{"path":[4,51,2,13,5],"span":[883,16,22]},{"path":[4,51,2,13,1],"span":[883,24,49]},{"path":[4,51,2,13,3],"span":[883,52,54]},{"path":[4,51,2,14],"span":[884,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,14,4],"span":[884,2,10]},{"path":[4,51,2,14,5],"span":[884,16,20]},{"path":[4,51,2,14,1],"span":[884,24,37]},{"path":[4,51,2,14,3],"span":[884,40,42]},{"path":[4,51,2,15],"span":[885,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,51,2,15,4],"span":[885,2,10]},{"path":[4,51,2,15,5],"span":[885,16,22]},{"path":[4,51,2,15,1],"span":[885,24,36]},{"path":[4,51,2,15,3],"span":[885,39,41]},{"path":[4,51,2,16],"span":[886,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,16,4],"span":[886,2,10]},{"path":[4,51,2,16,5],"span":[886,16,21]},{"path":[4,51,2,16,1],"span":[886,24,40]},{"path":[4,51,2,16,3],"span":[886,43,45]},{"path":[4,51,2,17],"span":[887,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,17,4],"span":[887,2,10]},{"path":[4,51,2,17,5],"span":[887,16,21]},{"path":[4,51,2,17,1],"span":[887,24,30]},{"path":[4,51,2,17,3],"span":[887,33,35]},{"path":[4,51,2,18],"span":[888,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,18,4],"span":[888,2,10]},{"path":[4,51,2,18,6],"span":[888,16,27]},{"path":[4,51,2,18,1],"span":[888,32,43]},{"path":[4,51,2,18,3],"span":[888,46,48]},{"path":[4,51,2,19],"span":[889,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,19,4],"span":[889,2,10]},{"path":[4,51,2,19,5],"span":[889,16,21]},{"path":[4,51,2,19,1],"span":[889,24,40]},{"path":[4,51,2,19,3],"span":[889,43,45]},{"path":[4,51,2,20],"span":[890,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,51,2,20,4],"span":[890,2,10]},{"path":[4,51,2,20,5],"span":[890,16,22]},{"path":[4,51,2,20,1],"span":[890,24,32]},{"path":[4,51,2,20,3],"span":[890,35,37]},{"path":[4,51,2,21],"span":[891,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,21,4],"span":[891,2,10]},{"path":[4,51,2,21,5],"span":[891,16,22]},{"path":[4,51,2,21,1],"span":[891,24,37]},{"path":[4,51,2,21,3],"span":[891,40,42]},{"path":[4,51,2,22],"span":[892,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,22,4],"span":[892,2,10]},{"path":[4,51,2,22,6],"span":[892,16,27]},{"path":[4,51,2,22,1],"span":[892,32,37]},{"path":[4,51,2,22,3],"span":[892,40,42]},{"path":[4,51,2,23],"span":[893,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,51,2,23,4],"span":[893,2,10]},{"path":[4,51,2,23,5],"span":[893,16,22]},{"path":[4,51,2,23,1],"span":[893,24,46]},{"path":[4,51,2,23,3],"span":[893,49,51]},{"path":[4,51,2,24],"span":[894,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,51,2,24,4],"span":[894,2,10]},{"path":[4,51,2,24,5],"span":[894,16,22]},{"path":[4,51,2,24,1],"span":[894,24,38]},{"path":[4,51,2,24,3],"span":[894,41,43]},{"path":[4,51,2,25],"span":[895,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,25,4],"span":[895,2,10]},{"path":[4,51,2,25,6],"span":[895,16,27]},{"path":[4,51,2,25,1],"span":[895,32,50]},{"path":[4,51,2,25,3],"span":[895,53,55]},{"path":[4,51,2,26],"span":[896,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,26,4],"span":[896,2,10]},{"path":[4,51,2,26,5],"span":[896,16,22]},{"path":[4,51,2,26,1],"span":[896,24,34]},{"path":[4,51,2,26,3],"span":[896,37,39]},{"path":[4,51,2,27],"span":[897,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,27,4],"span":[897,2,10]},{"path":[4,51,2,27,5],"span":[897,16,22]},{"path":[4,51,2,27,1],"span":[897,24,39]},{"path":[4,51,2,27,3],"span":[897,42,44]},{"path":[4,52],"span":[903,0,925,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,52,1],"span":[903,8,20]},{"path":[4,52,2,0],"span":[904,2,36],"trailingComments":" Windows: \"HL-DT-ST DVD+-RW GHB0N\", Linux: \"VMware SATA CD00\", Mac: \"NECVMWar VMware SATA CD01\"\tWindows, Linux, Mac\n"},{"path":[4,52,2,0,4],"span":[904,2,10]},{"path":[4,52,2,0,5],"span":[904,16,22]},{"path":[4,52,2,0,1],"span":[904,24,28]},{"path":[4,52,2,0,3],"span":[904,34,35]},{"path":[4,52,2,1],"span":[905,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,52,2,1,4],"span":[905,2,10]},{"path":[4,52,2,1,5],"span":[905,16,22]},{"path":[4,52,2,1,1],"span":[905,24,30]},{"path":[4,52,2,1,3],"span":[905,34,35]},{"path":[4,52,2,2],"span":[906,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,52,2,2,4],"span":[906,2,10]},{"path":[4,52,2,2,5],"span":[906,16,22]},{"path":[4,52,2,2,1],"span":[906,24,27]},{"path":[4,52,2,2,3],"span":[906,34,35]},{"path":[4,52,2,3],"span":[907,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,52,2,3,4],"span":[907,2,10]},{"path":[4,52,2,3,6],"span":[907,16,27]},{"path":[4,52,2,3,1],"span":[907,32,44]},{"path":[4,52,2,3,3],"span":[907,50,51]},{"path":[4,52,2,4],"span":[908,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,52,2,4,4],"span":[908,2,10]},{"path":[4,52,2,4,5],"span":[908,16,22]},{"path":[4,52,2,4,1],"span":[908,24,34]},{"path":[4,52,2,4,3],"span":[908,42,43]},{"path":[4,52,2,5],"span":[909,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,52,2,5,4],"span":[909,2,10]},{"path":[4,52,2,5,5],"span":[909,16,22]},{"path":[4,52,2,5,1],"span":[909,24,36]},{"path":[4,52,2,5,3],"span":[909,42,43]},{"path":[4,52,2,6],"span":[910,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,52,2,6,4],"span":[910,2,10]},{"path":[4,52,2,6,5],"span":[910,16,22]},{"path":[4,52,2,6,1],"span":[910,24,32]},{"path":[4,52,2,6,3],"span":[910,42,43]},{"path":[4,52,2,7],"span":[911,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,52,2,7,4],"span":[911,2,10]},{"path":[4,52,2,7,5],"span":[911,16,22]},{"path":[4,52,2,7,1],"span":[911,24,33]},{"path":[4,52,2,7,3],"span":[911,42,43]},{"path":[4,52,2,8],"span":[912,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,52,2,8,4],"span":[912,2,10]},{"path":[4,52,2,8,5],"span":[912,16,22]},{"path":[4,52,2,8,1],"span":[912,24,32]},{"path":[4,52,2,8,3],"span":[912,42,43]},{"path":[4,52,2,9],"span":[913,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,52,2,9,4],"span":[913,2,10]},{"path":[4,52,2,9,5],"span":[913,16,22]},{"path":[4,52,2,9,1],"span":[913,24,34]},{"path":[4,52,2,9,3],"span":[913,42,44]},{"path":[4,52,2,10],"span":[914,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,52,2,10,4],"span":[914,2,10]},{"path":[4,52,2,10,5],"span":[914,16,22]},{"path":[4,52,2,10,1],"span":[914,24,40]},{"path":[4,52,2,10,3],"span":[914,50,52]},{"path":[4,52,2,11],"span":[915,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,52,2,11,4],"span":[915,2,10]},{"path":[4,52,2,11,5],"span":[915,16,22]},{"path":[4,52,2,11,1],"span":[915,24,34]},{"path":[4,52,2,11,3],"span":[915,42,44]},{"path":[4,52,2,12],"span":[916,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,52,2,12,4],"span":[916,2,10]},{"path":[4,52,2,12,5],"span":[916,16,22]},{"path":[4,52,2,12,1],"span":[916,24,54]},{"path":[4,52,2,12,3],"span":[916,58,60]},{"path":[4,52,2,13],"span":[917,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,52,2,13,4],"span":[917,2,10]},{"path":[4,52,2,13,5],"span":[917,16,22]},{"path":[4,52,2,13,1],"span":[917,24,36]},{"path":[4,52,2,13,3],"span":[917,42,44]},{"path":[4,52,2,14],"span":[918,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,52,2,14,4],"span":[918,2,10]},{"path":[4,52,2,14,5],"span":[918,16,22]},{"path":[4,52,2,14,1],"span":[918,24,35]},{"path":[4,52,2,14,3],"span":[918,42,44]},{"path":[4,52,2,15],"span":[919,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,52,2,15,4],"span":[919,2,10]},{"path":[4,52,2,15,5],"span":[919,16,22]},{"path":[4,52,2,15,1],"span":[919,24,40]},{"path":[4,52,2,15,3],"span":[919,50,52]},{"path":[4,52,2,16],"span":[920,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,52,2,16,4],"span":[920,2,10]},{"path":[4,52,2,16,5],"span":[920,16,21]},{"path":[4,52,2,16,1],"span":[920,24,32]},{"path":[4,52,2,16,3],"span":[920,42,44]},{"path":[4,52,2,17],"span":[921,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,52,2,17,4],"span":[921,2,10]},{"path":[4,52,2,17,5],"span":[921,16,21]},{"path":[4,52,2,17,1],"span":[921,24,41]},{"path":[4,52,2,17,3],"span":[921,50,52]},{"path":[4,52,2,18],"span":[922,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,52,2,18,4],"span":[922,2,10]},{"path":[4,52,2,18,5],"span":[922,16,21]},{"path":[4,52,2,18,1],"span":[922,24,33]},{"path":[4,52,2,18,3],"span":[922,42,44]},{"path":[4,52,2,19],"span":[923,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,52,2,19,4],"span":[923,2,10]},{"path":[4,52,2,19,5],"span":[923,16,21]},{"path":[4,52,2,19,1],"span":[923,24,38]},{"path":[4,52,2,19,3],"span":[923,42,44]},{"path":[4,52,2,20],"span":[924,2,52],"trailingComments":" \tMac\n"},{"path":[4,52,2,20,4],"span":[924,2,10]},{"path":[4,52,2,20,5],"span":[924,16,22]},{"path":[4,52,2,20,1],"span":[924,24,46]},{"path":[4,52,2,20,3],"span":[924,49,51]},{"path":[4,53],"span":[930,0,943,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,53,1],"span":[930,8,19]},{"path":[4,53,2,0],"span":[931,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,53,2,0,5],"span":[931,2,8]},{"path":[4,53,2,0,1],"span":[931,9,13]},{"path":[4,53,2,0,3],"span":[931,16,17]},{"path":[4,53,2,1],"span":[932,2,43],"trailingComments":" Windows\n"},{"path":[4,53,2,1,4],"span":[932,2,10]},{"path":[4,53,2,1,5],"span":[932,11,17]},{"path":[4,53,2,1,1],"span":[932,24,38]},{"path":[4,53,2,1,3],"span":[932,41,42]},{"path":[4,53,2,2],"span":[933,2,37],"trailingComments":" Windows\n"},{"path":[4,53,2,2,4],"span":[933,2,10]},{"path":[4,53,2,2,5],"span":[933,11,15]},{"path":[4,53,2,2,1],"span":[933,16,32]},{"path":[4,53,2,2,3],"span":[933,35,36]},{"path":[4,53,2,3],"span":[934,2,34],"trailingComments":" Windows\n"},{"path":[4,53,2,3,4],"span":[934,2,10]},{"path":[4,53,2,3,5],"span":[934,11,15]},{"path":[4,53,2,3,1],"span":[934,16,29]},{"path":[4,53,2,3,3],"span":[934,32,33]},{"path":[4,53,2,4],"span":[935,2,37],"trailingComments":" Linux\n"},{"path":[4,53,2,4,4],"span":[935,2,10]},{"path":[4,53,2,4,5],"span":[935,11,17]},{"path":[4,53,2,4,1],"span":[935,24,32]},{"path":[4,53,2,4,3],"span":[935,35,36]},{"path":[4,53,2,5],"span":[936,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,53,2,5,4],"span":[936,2,10]},{"path":[4,53,2,5,5],"span":[936,11,17]},{"path":[4,53,2,5,1],"span":[936,24,36]},{"path":[4,53,2,5,3],"span":[936,39,40]},{"path":[4,53,2,6],"span":[937,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,53,2,6,4],"span":[937,2,10]},{"path":[4,53,2,6,5],"span":[937,11,17]},{"path":[4,53,2,6,1],"span":[937,24,37]},{"path":[4,53,2,6,3],"span":[937,40,41]},{"path":[4,53,2,7],"span":[938,2,32],"trailingComments":" Windows\n"},{"path":[4,53,2,7,4],"span":[938,2,10]},{"path":[4,53,2,7,5],"span":[938,11,17]},{"path":[4,53,2,7,1],"span":[938,24,27]},{"path":[4,53,2,7,3],"span":[938,30,31]},{"path":[4,53,2,8],"span":[939,2,33],"trailingComments":" Linux\n"},{"path":[4,53,2,8,4],"span":[939,2,10]},{"path":[4,53,2,8,5],"span":[939,11,17]},{"path":[4,53,2,8,1],"span":[939,24,28]},{"path":[4,53,2,8,3],"span":[939,31,32]},{"path":[4,53,2,9],"span":[940,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,53,2,9,4],"span":[940,2,10]},{"path":[4,53,2,9,5],"span":[940,11,17]},{"path":[4,53,2,9,1],"span":[940,24,31]},{"path":[4,53,2,9,3],"span":[940,34,36]},{"path":[4,53,2,10],"span":[942,2,41]},{"path":[4,53,2,10,4],"span":[942,2,10]},{"path":[4,53,2,10,6],"span":[942,11,28]},{"path":[4,53,2,10,1],"span":[942,29,35]},{"path":[4,53,2,10,3],"span":[942,38,40]},{"path":[4,54],"span":[948,0,953,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,54,1],"span":[948,8,25]},{"path":[4,54,2,0],"span":[949,2,40]},{"path":[4,54,2,0,4],"span":[949,2,10]},{"path":[4,54,2,0,5],"span":[949,11,17]},{"path":[4,54,2,0,1],"span":[949,24,35]},{"path":[4,54,2,0,3],"span":[949,38,39]},{"path":[4,54,2,1],"span":[950,2,28]},{"path":[4,54,2,1,4],"span":[950,2,10]},{"path":[4,54,2,1,5],"span":[950,11,15]},{"path":[4,54,2,1,1],"span":[950,16,23]},{"path":[4,54,2,1,3],"span":[950,26,27]},{"path":[4,54,2,2],"span":[951,2,32]},{"path":[4,54,2,2,4],"span":[951,2,10]},{"path":[4,54,2,2,5],"span":[951,11,17]},{"path":[4,54,2,2,1],"span":[951,24,27]},{"path":[4,54,2,2,3],"span":[951,30,31]},{"path":[4,54,2,3],"span":[952,2,32]},{"path":[4,54,2,3,4],"span":[952,2,10]},{"path":[4,54,2,3,6],"span":[952,11,22]},{"path":[4,54,2,3,1],"span":[952,23,27]},{"path":[4,54,2,3,3],"span":[952,30,31]},{"path":[4,55],"span":[958,0,962,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,55,1],"span":[958,8,14]},{"path":[4,55,2,0],"span":[959,4,29]},{"path":[4,55,2,0,5],"span":[959,4,9]},{"path":[4,55,2,0,1],"span":[959,10,24]},{"path":[4,55,2,0,3],"span":[959,27,28]},{"path":[4,55,2,1],"span":[960,4,48]},{"path":[4,55,2,1,4],"span":[960,4,12]},{"path":[4,55,2,1,6],"span":[960,13,27]},{"path":[4,55,2,1,1],"span":[960,28,43]},{"path":[4,55,2,1,3],"span":[960,46,47]},{"path":[4,55,2,2],"span":[961,4,42]},{"path":[4,55,2,2,4],"span":[961,4,12]},{"path":[4,55,2,2,6],"span":[961,13,24]},{"path":[4,55,2,2,1],"span":[961,25,37]},{"path":[4,55,2,2,3],"span":[961,40,41]},{"path":[4,56],"span":[965,0,988,1],"leadingComments":" MemoryEntry *"},{"path":[4,56,1],"span":[965,8,22]},{"path":[4,56,2,0],"span":[967,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,56,2,0,4],"span":[967,4,12]},{"path":[4,56,2,0,5],"span":[967,14,19]},{"path":[4,56,2,0,1],"span":[967,20,24]},{"path":[4,56,2,0,3],"span":[967,27,29]},{"path":[4,56,2,1],"span":[968,4,40],"trailingComments":"\tLinux\n"},{"path":[4,56,2,1,4],"span":[968,4,12]},{"path":[4,56,2,1,5],"span":[968,13,19]},{"path":[4,56,2,1,1],"span":[968,24,36]},{"path":[4,56,2,1,3],"span":[968,38,39]},{"path":[4,56,2,2],"span":[969,4,51],"trailingComments":"\tWindows\n"},{"path":[4,56,2,2,4],"span":[969,4,12]},{"path":[4,56,2,2,5],"span":[969,13,18]},{"path":[4,56,2,2,1],"span":[969,24,46]},{"path":[4,56,2,2,3],"span":[969,49,50]},{"path":[4,56,2,3],"span":[970,4,46],"trailingComments":"\tWindows\n"},{"path":[4,56,2,3,4],"span":[970,4,12]},{"path":[4,56,2,3,5],"span":[970,13,18]},{"path":[4,56,2,3,1],"span":[970,24,42]},{"path":[4,56,2,3,3],"span":[970,44,45]},{"path":[4,56,2,4],"span":[971,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,4,4],"span":[971,4,12]},{"path":[4,56,2,4,5],"span":[971,13,18]},{"path":[4,56,2,4,1],"span":[971,24,34]},{"path":[4,56,2,4,3],"span":[971,36,37]},{"path":[4,56,2,5],"span":[972,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,5,4],"span":[972,4,12]},{"path":[4,56,2,5,5],"span":[972,13,19]},{"path":[4,56,2,5,1],"span":[972,24,38]},{"path":[4,56,2,5,3],"span":[972,40,41]},{"path":[4,56,2,6],"span":[973,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,6,4],"span":[973,4,12]},{"path":[4,56,2,6,6],"span":[973,13,24]},{"path":[4,56,2,6,1],"span":[973,32,43]},{"path":[4,56,2,6,3],"span":[973,45,46]},{"path":[4,56,2,7],"span":[974,4,49],"trailingComments":"\tWindows\n"},{"path":[4,56,2,7,4],"span":[974,4,12]},{"path":[4,56,2,7,5],"span":[974,13,18]},{"path":[4,56,2,7,1],"span":[974,24,45]},{"path":[4,56,2,7,3],"span":[974,47,48]},{"path":[4,56,2,8],"span":[975,4,55],"trailingComments":"\tWindows\n"},{"path":[4,56,2,8,4],"span":[975,4,12]},{"path":[4,56,2,8,6],"span":[975,13,24]},{"path":[4,56,2,8,1],"span":[975,32,51]},{"path":[4,56,2,8,3],"span":[975,53,54]},{"path":[4,56,2,9],"span":[976,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,9,4],"span":[976,4,12]},{"path":[4,56,2,9,5],"span":[976,13,19]},{"path":[4,56,2,9,1],"span":[976,24,36]},{"path":[4,56,2,9,3],"span":[976,38,39]},{"path":[4,56,2,10],"span":[977,4,33],"trailingComments":"\tMac\n"},{"path":[4,56,2,10,4],"span":[977,4,12]},{"path":[4,56,2,10,5],"span":[977,13,19]},{"path":[4,56,2,10,1],"span":[977,24,28]},{"path":[4,56,2,10,3],"span":[977,30,32]},{"path":[4,56,2,11],"span":[978,4,40],"trailingComments":"\tWindows\n"},{"path":[4,56,2,11,4],"span":[978,4,12]},{"path":[4,56,2,11,5],"span":[978,13,19]},{"path":[4,56,2,11,1],"span":[978,24,35]},{"path":[4,56,2,11,3],"span":[978,37,39]},{"path":[4,56,2,12],"span":[979,4,44],"trailingComments":"\tWindows\n"},{"path":[4,56,2,12,4],"span":[979,4,12]},{"path":[4,56,2,12,5],"span":[979,13,18]},{"path":[4,56,2,12,1],"span":[979,24,39]},{"path":[4,56,2,12,3],"span":[979,41,43]},{"path":[4,56,2,13],"span":[980,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,13,4],"span":[980,4,12]},{"path":[4,56,2,13,5],"span":[980,13,19]},{"path":[4,56,2,13,1],"span":[980,24,37]},{"path":[4,56,2,13,3],"span":[980,39,41]},{"path":[4,56,2,14],"span":[981,4,32],"trailingComments":"\tLinux\n"},{"path":[4,56,2,14,4],"span":[981,4,12]},{"path":[4,56,2,14,5],"span":[981,13,19]},{"path":[4,56,2,14,1],"span":[981,24,27]},{"path":[4,56,2,14,3],"span":[981,29,31]},{"path":[4,56,2,15],"span":[982,4,32],"trailingComments":"\tWindows\n"},{"path":[4,56,2,15,4],"span":[982,4,12]},{"path":[4,56,2,15,5],"span":[982,13,19]},{"path":[4,56,2,15,1],"span":[982,24,27]},{"path":[4,56,2,15,3],"span":[982,29,31]},{"path":[4,56,2,16],"span":[983,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,56,2,16,4],"span":[983,4,12]},{"path":[4,56,2,16,5],"span":[983,13,18]},{"path":[4,56,2,16,1],"span":[983,24,29]},{"path":[4,56,2,16,3],"span":[983,31,33]},{"path":[4,56,2,17],"span":[984,4,34],"trailingComments":"\tMac\n"},{"path":[4,56,2,17,4],"span":[984,4,12]},{"path":[4,56,2,17,5],"span":[984,13,19]},{"path":[4,56,2,17,1],"span":[984,24,29]},{"path":[4,56,2,17,3],"span":[984,31,33]},{"path":[4,56,2,18],"span":[985,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,18,4],"span":[985,4,12]},{"path":[4,56,2,18,5],"span":[985,13,18]},{"path":[4,56,2,18,1],"span":[985,24,35]},{"path":[4,56,2,18,3],"span":[985,37,39]},{"path":[4,56,2,19],"span":[986,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,56,2,19,4],"span":[986,4,12]},{"path":[4,56,2,19,6],"span":[986,13,24]},{"path":[4,56,2,19,1],"span":[986,32,36]},{"path":[4,56,2,19,3],"span":[986,38,40]},{"path":[4,56,2,20],"span":[987,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,20,4],"span":[987,4,12]},{"path":[4,56,2,20,6],"span":[987,13,24]},{"path":[4,56,2,20,1],"span":[987,32,43]},{"path":[4,56,2,20,3],"span":[987,45,47]},{"path":[4,57],"span":[992,0,999,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,57,1],"span":[992,8,19]},{"path":[4,57,2,0],"span":[993,2,40],"trailingComments":"\tWindows\n"},{"path":[4,57,2,0,4],"span":[993,2,10]},{"path":[4,57,2,0,5],"span":[993,11,16]},{"path":[4,57,2,0,1],"span":[993,24,36]},{"path":[4,57,2,0,3],"span":[993,38,39]},{"path":[4,57,2,1],"span":[994,2,36],"trailingComments":"\tWindows\n"},{"path":[4,57,2,1,4],"span":[994,2,10]},{"path":[4,57,2,1,6],"span":[994,11,22]},{"path":[4,57,2,1,1],"span":[994,24,32]},{"path":[4,57,2,1,3],"span":[994,34,35]},{"path":[4,57,2,2],"span":[995,2,42],"trailingComments":"\tWindows\n"},{"path":[4,57,2,2,4],"span":[995,2,10]},{"path":[4,57,2,2,5],"span":[995,11,16]},{"path":[4,57,2,2,1],"span":[995,24,38]},{"path":[4,57,2,2,3],"span":[995,40,41]},{"path":[4,57,2,3],"span":[996,2,51],"trailingComments":"\tWindows\n"},{"path":[4,57,2,3,4],"span":[996,2,10]},{"path":[4,57,2,3,6],"span":[996,11,22]},{"path":[4,57,2,3,1],"span":[996,24,47]},{"path":[4,57,2,3,3],"span":[996,49,50]},{"path":[4,57,2,4],"span":[997,2,31],"trailingComments":"\tWindows\n"},{"path":[4,57,2,4,4],"span":[997,2,10]},{"path":[4,57,2,4,5],"span":[997,11,17]},{"path":[4,57,2,4,1],"span":[997,24,27]},{"path":[4,57,2,4,3],"span":[997,29,30]},{"path":[4,57,2,5],"span":[998,2,31],"trailingComments":"\tWindows\n"},{"path":[4,57,2,5,4],"span":[998,2,10]},{"path":[4,57,2,5,6],"span":[998,11,22]},{"path":[4,57,2,5,1],"span":[998,24,27]},{"path":[4,57,2,5,3],"span":[998,29,30]},{"path":[4,58],"span":[1005,0,1008,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,58,1],"span":[1005,8,19]},{"path":[4,58,2,0],"span":[1006,2,18]},{"path":[4,58,2,0,5],"span":[1006,2,7]},{"path":[4,58,2,0,1],"span":[1006,8,13]},{"path":[4,58,2,0,3],"span":[1006,16,17]},{"path":[4,58,2,1],"span":[1007,2,27]},{"path":[4,58,2,1,4],"span":[1007,2,10]},{"path":[4,58,2,1,5],"span":[1007,11,17]},{"path":[4,58,2,1,1],"span":[1007,18,22]},{"path":[4,58,2,1,3],"span":[1007,25,26]},{"path":[4,59],"span":[1011,0,1014,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,59,1],"span":[1011,8,24]},{"path":[4,59,2,0],"span":[1012,2,42]},{"path":[4,59,2,0,6],"span":[1012,2,27]},{"path":[4,59,2,0,1],"span":[1012,28,37]},{"path":[4,59,2,0,3],"span":[1012,40,41]},{"path":[4,59,2,1],"span":[1013,2,31]},{"path":[4,59,2,1,4],"span":[1013,2,10]},{"path":[4,59,2,1,6],"span":[1013,11,18]},{"path":[4,59,2,1,1],"span":[1013,19,26]},{"path":[4,59,2,1,3],"span":[1013,29,30]},{"path":[4,60],"span":[1018,0,1039,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,60,1],"span":[1018,8,15]},{"path":[4,60,2,0],"span":[1020,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,60,2,0,4],"span":[1020,2,10]},{"path":[4,60,2,0,5],"span":[1020,11,16]},{"path":[4,60,2,0,1],"span":[1020,17,19]},{"path":[4,60,2,0,3],"span":[1020,22,23]},{"path":[4,60,2,1],"span":[1023,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,60,2,1,4],"span":[1023,2,10]},{"path":[4,60,2,1,5],"span":[1023,11,16]},{"path":[4,60,2,1,1],"span":[1023,17,24]},{"path":[4,60,2,1,3],"span":[1023,27,28]},{"path":[4,60,2,2],"span":[1025,2,23]},{"path":[4,60,2,2,5],"span":[1025,2,8]},{"path":[4,60,2,2,1],"span":[1025,9,18]},{"path":[4,60,2,2,3],"span":[1025,21,22]},{"path":[4,60,2,3],"span":[1026,2,24]},{"path":[4,60,2,3,5],"span":[1026,2,8]},{"path":[4,60,2,3,1],"span":[1026,9,19]},{"path":[4,60,2,3,3],"span":[1026,22,23]},{"path":[4,60,2,4],"span":[1028,2,36]},{"path":[4,60,2,4,4],"span":[1028,2,10]},{"path":[4,60,2,4,5],"span":[1028,11,17]},{"path":[4,60,2,4,1],"span":[1028,18,31]},{"path":[4,60,2,4,3],"span":[1028,34,35]},{"path":[4,60,2,5],"span":[1029,2,50]},{"path":[4,60,2,5,6],"span":[1029,2,27]},{"path":[4,60,2,5,1],"span":[1029,28,45]},{"path":[4,60,2,5,3],"span":[1029,48,49]},{"path":[4,60,8,0],"span":[1031,2,1033,3]},{"path":[4,60,8,0,1],"span":[1031,8,12]},{"path":[4,60,2,6],"span":[1032,4,36]},{"path":[4,60,2,6,6],"span":[1032,4,22]},{"path":[4,60,2,6,1],"span":[1032,23,30]},{"path":[4,60,2,6,3],"span":[1032,33,35]},{"path":[4,60,2,7],"span":[1036,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,60,2,7,4],"span":[1036,2,10]},{"path":[4,60,2,7,6],"span":[1036,11,23]},{"path":[4,60,2,7,1],"span":[1036,24,37]},{"path":[4,60,2,7,3],"span":[1036,40,42]},{"path":[4,60,2,8],"span":[1038,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,60,2,8,4],"span":[1038,2,10]},{"path":[4,60,2,8,6],"span":[1038,11,25]},{"path":[4,60,2,8,1],"span":[1038,26,41]},{"path":[4,60,2,8,3],"span":[1038,44,46]},{"path":[4,61],"span":[1041,0,1050,1]},{"path":[4,61,1],"span":[1041,8,26]},{"path":[4,61,2,0],"span":[1042,2,19]},{"path":[4,61,2,0,5],"span":[1042,2,8]},{"path":[4,61,2,0,1],"span":[1042,9,14]},{"path":[4,61,2,0,3],"span":[1042,17,18]},{"path":[4,61,2,1],"span":[1043,2,36]},{"path":[4,61,2,1,4],"span":[1043,2,10]},{"path":[4,61,2,1,5],"span":[1043,11,17]},{"path":[4,61,2,1,1],"span":[1043,18,31]},{"path":[4,61,2,1,3],"span":[1043,34,35]},{"path":[4,61,2,2],"span":[1044,2,36]},{"path":[4,61,2,2,4],"span":[1044,2,10]},{"path":[4,61,2,2,5],"span":[1044,11,17]},{"path":[4,61,2,2,1],"span":[1044,18,31]},{"path":[4,61,2,2,3],"span":[1044,34,35]},{"path":[4,61,2,3],"span":[1045,2,33]},{"path":[4,61,2,3,4],"span":[1045,2,10]},{"path":[4,61,2,3,5],"span":[1045,11,17]},{"path":[4,61,2,3,1],"span":[1045,18,28]},{"path":[4,61,2,3,3],"span":[1045,31,32]},{"path":[4,61,2,4],"span":[1046,2,40]},{"path":[4,61,2,4,4],"span":[1046,2,10]},{"path":[4,61,2,4,5],"span":[1046,11,17]},{"path":[4,61,2,4,1],"span":[1046,18,35]},{"path":[4,61,2,4,3],"span":[1046,38,39]},{"path":[4,61,2,5],"span":[1047,2,39]},{"path":[4,61,2,5,4],"span":[1047,2,10]},{"path":[4,61,2,5,5],"span":[1047,11,17]},{"path":[4,61,2,5,1],"span":[1047,18,34]},{"path":[4,61,2,5,3],"span":[1047,37,38]},{"path":[4,61,2,6],"span":[1048,2,59]},{"path":[4,61,2,6,4],"span":[1048,2,10]},{"path":[4,61,2,6,6],"span":[1048,11,36]},{"path":[4,61,2,6,1],"span":[1048,37,54]},{"path":[4,61,2,6,3],"span":[1048,57,58]},{"path":[4,61,2,7],"span":[1049,2,32]},{"path":[4,61,2,7,4],"span":[1049,2,10]},{"path":[4,61,2,7,5],"span":[1049,11,17]},{"path":[4,61,2,7,1],"span":[1049,18,27]},{"path":[4,61,2,7,3],"span":[1049,30,31]},{"path":[4,62],"span":[1055,0,1061,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,62,1],"span":[1055,8,25]},{"path":[4,62,2,0],"span":[1056,2,27]},{"path":[4,62,2,0,4],"span":[1056,2,10]},{"path":[4,62,2,0,5],"span":[1056,11,17]},{"path":[4,62,2,0,1],"span":[1056,18,22]},{"path":[4,62,2,0,3],"span":[1056,25,26]},{"path":[4,62,2,1],"span":[1057,2,27]},{"path":[4,62,2,1,4],"span":[1057,2,10]},{"path":[4,62,2,1,5],"span":[1057,11,17]},{"path":[4,62,2,1,1],"span":[1057,18,22]},{"path":[4,62,2,1,3],"span":[1057,25,26]},{"path":[4,62,2,2],"span":[1058,2,28]},{"path":[4,62,2,2,4],"span":[1058,2,10]},{"path":[4,62,2,2,5],"span":[1058,11,15]},{"path":[4,62,2,2,1],"span":[1058,16,23]},{"path":[4,62,2,2,3],"span":[1058,26,27]},{"path":[4,62,2,3],"span":[1059,2,31]},{"path":[4,62,2,3,4],"span":[1059,2,10]},{"path":[4,62,2,3,5],"span":[1059,11,15]},{"path":[4,62,2,3,1],"span":[1059,16,26]},{"path":[4,62,2,3,3],"span":[1059,29,30]},{"path":[4,62,2,4],"span":[1060,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,62,2,4,4],"span":[1060,2,10]},{"path":[4,62,2,4,6],"span":[1060,11,19]},{"path":[4,62,2,4,1],"span":[1060,20,28]},{"path":[4,62,2,4,3],"span":[1060,31,32]},{"path":[4,63],"span":[1066,0,1076,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,63,1],"span":[1066,8,14]},{"path":[4,63,2,0],"span":[1067,2,21]},{"path":[4,63,2,0,5],"span":[1067,2,8]},{"path":[4,63,2,0,1],"span":[1067,9,16]},{"path":[4,63,2,0,3],"span":[1067,19,20]},{"path":[4,63,2,1],"span":[1068,2,31]},{"path":[4,63,2,1,4],"span":[1068,2,10]},{"path":[4,63,2,1,5],"span":[1068,11,17]},{"path":[4,63,2,1,1],"span":[1068,18,26]},{"path":[4,63,2,1,3],"span":[1068,29,30]},{"path":[4,63,2,2],"span":[1069,2,31]},{"path":[4,63,2,2,4],"span":[1069,2,10]},{"path":[4,63,2,2,5],"span":[1069,11,17]},{"path":[4,63,2,2,1],"span":[1069,18,26]},{"path":[4,63,2,2,3],"span":[1069,29,30]},{"path":[4,63,2,3],"span":[1070,2,37]},{"path":[4,63,2,3,4],"span":[1070,2,10]},{"path":[4,63,2,3,5],"span":[1070,11,17]},{"path":[4,63,2,3,1],"span":[1070,18,32]},{"path":[4,63,2,3,3],"span":[1070,35,36]},{"path":[4,63,2,4],"span":[1071,2,35]},{"path":[4,63,2,4,4],"span":[1071,2,10]},{"path":[4,63,2,4,5],"span":[1071,11,17]},{"path":[4,63,2,4,1],"span":[1071,18,30]},{"path":[4,63,2,4,3],"span":[1071,33,34]},{"path":[4,63,2,5],"span":[1072,2,34]},{"path":[4,63,2,5,4],"span":[1072,2,10]},{"path":[4,63,2,5,5],"span":[1072,11,17]},{"path":[4,63,2,5,1],"span":[1072,18,29]},{"path":[4,63,2,5,3],"span":[1072,32,33]},{"path":[4,63,2,6],"span":[1073,2,35]},{"path":[4,63,2,6,4],"span":[1073,2,10]},{"path":[4,63,2,6,5],"span":[1073,11,17]},{"path":[4,63,2,6,1],"span":[1073,18,30]},{"path":[4,63,2,6,3],"span":[1073,33,34]},{"path":[4,63,2,7],"span":[1074,2,26]},{"path":[4,63,2,7,4],"span":[1074,2,10]},{"path":[4,63,2,7,5],"span":[1074,11,17]},{"path":[4,63,2,7,1],"span":[1074,18,21]},{"path":[4,63,2,7,3],"span":[1074,24,25]},{"path":[4,63,2,8],"span":[1075,2,35]},{"path":[4,63,2,8,4],"span":[1075,2,10]},{"path":[4,63,2,8,5],"span":[1075,11,17]},{"path":[4,63,2,8,1],"span":[1075,18,30]},{"path":[4,63,2,8,3],"span":[1075,33,34]},{"path":[4,64],"span":[1085,0,1088,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,64,1],"span":[1085,8,25]},{"path":[4,64,2,0],"span":[1086,2,42]},{"path":[4,64,2,0,6],"span":[1086,2,27]},{"path":[4,64,2,0,1],"span":[1086,28,37]},{"path":[4,64,2,0,3],"span":[1086,40,41]},{"path":[4,64,2,1],"span":[1087,2,33]},{"path":[4,64,2,1,4],"span":[1087,2,10]},{"path":[4,64,2,1,6],"span":[1087,11,19]},{"path":[4,64,2,1,1],"span":[1087,20,28]},{"path":[4,64,2,1,3],"span":[1087,31,32]},{"path":[4,65],"span":[1097,0,1135,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,65,1],"span":[1097,8,16]},{"path":[4,65,2,0],"span":[1099,2,26]},{"path":[4,65,2,0,4],"span":[1099,2,10]},{"path":[4,65,2,0,5],"span":[1099,11,16]},{"path":[4,65,2,0,1],"span":[1099,17,21]},{"path":[4,65,2,0,3],"span":[1099,24,25]},{"path":[4,65,2,1],"span":[1100,2,29]},{"path":[4,65,2,1,4],"span":[1100,2,10]},{"path":[4,65,2,1,5],"span":[1100,11,16]},{"path":[4,65,2,1,1],"span":[1100,17,24]},{"path":[4,65,2,1,3],"span":[1100,27,28]},{"path":[4,65,2,2],"span":[1101,2,28]},{"path":[4,65,2,2,4],"span":[1101,2,10]},{"path":[4,65,2,2,5],"span":[1101,11,16]},{"path":[4,65,2,2,1],"span":[1101,17,23]},{"path":[4,65,2,2,3],"span":[1101,26,27]},{"path":[4,65,2,3],"span":[1104,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,65,2,3,4],"span":[1104,2,10]},{"path":[4,65,2,3,5],"span":[1104,11,16]},{"path":[4,65,2,3,1],"span":[1104,17,24]},{"path":[4,65,2,3,3],"span":[1104,27,28]},{"path":[4,65,2,4],"span":[1107,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,65,2,4,4],"span":[1107,2,10]},{"path":[4,65,2,4,5],"span":[1107,11,16]},{"path":[4,65,2,4,1],"span":[1107,17,22]},{"path":[4,65,2,4,3],"span":[1107,25,26]},{"path":[4,65,2,5],"span":[1110,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,65,2,5,4],"span":[1110,2,10]},{"path":[4,65,2,5,5],"span":[1110,11,16]},{"path":[4,65,2,5,1],"span":[1110,17,26]},{"path":[4,65,2,5,3],"span":[1110,29,30]},{"path":[4,65,2,6],"span":[1112,2,32]},{"path":[4,65,2,6,4],"span":[1112,2,10]},{"path":[4,65,2,6,5],"span":[1112,11,17]},{"path":[4,65,2,6,1],"span":[1112,18,27]},{"path":[4,65,2,6,3],"span":[1112,30,31]},{"path":[4,65,2,7],"span":[1113,2,31]},{"path":[4,65,2,7,4],"span":[1113,2,10]},{"path":[4,65,2,7,5],"span":[1113,11,17]},{"path":[4,65,2,7,1],"span":[1113,18,26]},{"path":[4,65,2,7,3],"span":[1113,29,30]},{"path":[4,65,2,8],"span":[1114,2,32]},{"path":[4,65,2,8,4],"span":[1114,2,10]},{"path":[4,65,2,8,5],"span":[1114,11,17]},{"path":[4,65,2,8,1],"span":[1114,18,27]},{"path":[4,65,2,8,3],"span":[1114,30,31]},{"path":[4,65,2,9],"span":[1115,2,28]},{"path":[4,65,2,9,4],"span":[1115,2,10]},{"path":[4,65,2,9,5],"span":[1115,11,17]},{"path":[4,65,2,9,1],"span":[1115,18,22]},{"path":[4,65,2,9,3],"span":[1115,25,27]},{"path":[4,65,2,10],"span":[1116,2,31]},{"path":[4,65,2,10,4],"span":[1116,2,10]},{"path":[4,65,2,10,5],"span":[1116,11,17]},{"path":[4,65,2,10,1],"span":[1116,18,25]},{"path":[4,65,2,10,3],"span":[1116,28,30]},{"path":[4,65,2,11],"span":[1117,2,34]},{"path":[4,65,2,11,4],"span":[1117,2,10]},{"path":[4,65,2,11,5],"span":[1117,11,17]},{"path":[4,65,2,11,1],"span":[1117,18,28]},{"path":[4,65,2,11,3],"span":[1117,31,33]},{"path":[4,65,2,12],"span":[1118,2,31]},{"path":[4,65,2,12,4],"span":[1118,2,10]},{"path":[4,65,2,12,5],"span":[1118,11,17]},{"path":[4,65,2,12,1],"span":[1118,18,25]},{"path":[4,65,2,12,3],"span":[1118,28,30]},{"path":[4,65,2,13],"span":[1119,2,29]},{"path":[4,65,2,13,4],"span":[1119,2,10]},{"path":[4,65,2,13,5],"span":[1119,11,17]},{"path":[4,65,2,13,1],"span":[1119,18,23]},{"path":[4,65,2,13,3],"span":[1119,26,28]},{"path":[4,65,2,14],"span":[1120,2,28]},{"path":[4,65,2,14,4],"span":[1120,2,10]},{"path":[4,65,2,14,5],"span":[1120,11,17]},{"path":[4,65,2,14,1],"span":[1120,18,22]},{"path":[4,65,2,14,3],"span":[1120,25,27]},{"path":[4,65,2,15],"span":[1121,2,28]},{"path":[4,65,2,15,4],"span":[1121,2,10]},{"path":[4,65,2,15,5],"span":[1121,11,17]},{"path":[4,65,2,15,1],"span":[1121,18,22]},{"path":[4,65,2,15,3],"span":[1121,25,27]},{"path":[4,65,2,16],"span":[1123,2,27]},{"path":[4,65,2,16,4],"span":[1123,2,10]},{"path":[4,65,2,16,5],"span":[1123,11,17]},{"path":[4,65,2,16,1],"span":[1123,18,21]},{"path":[4,65,2,16,3],"span":[1123,24,26]},{"path":[4,65,2,17],"span":[1125,2,23]},{"path":[4,65,2,17,6],"span":[1125,2,13]},{"path":[4,65,2,17,1],"span":[1125,14,17]},{"path":[4,65,2,17,3],"span":[1125,20,22]},{"path":[4,65,2,18],"span":[1126,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,65,2,18,4],"span":[1126,2,10]},{"path":[4,65,2,18,5],"span":[1126,11,17]},{"path":[4,65,2,18,1],"span":[1126,18,26]},{"path":[4,65,2,18,3],"span":[1126,29,31]},{"path":[4,65,2,19],"span":[1127,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,65,2,19,4],"span":[1127,2,10]},{"path":[4,65,2,19,5],"span":[1127,11,17]},{"path":[4,65,2,19,1],"span":[1127,18,26]},{"path":[4,65,2,19,3],"span":[1127,29,31]},{"path":[4,65,2,20],"span":[1130,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,65,2,20,4],"span":[1130,2,10]},{"path":[4,65,2,20,6],"span":[1130,11,23]},{"path":[4,65,2,20,1],"span":[1130,24,37]},{"path":[4,65,2,20,3],"span":[1130,40,42]},{"path":[4,65,2,21],"span":[1132,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,65,2,21,4],"span":[1132,2,10]},{"path":[4,65,2,21,6],"span":[1132,11,26]},{"path":[4,65,2,21,1],"span":[1132,27,43]},{"path":[4,65,2,21,3],"span":[1132,46,48]},{"path":[4,65,2,22],"span":[1134,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,65,2,22,4],"span":[1134,2,10]},{"path":[4,65,2,22,6],"span":[1134,11,26]},{"path":[4,65,2,22,1],"span":[1134,27,41]},{"path":[4,65,2,22,3],"span":[1134,44,46]},{"path":[4,66],"span":[1140,0,1154,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,66,1],"span":[1140,8,19]},{"path":[4,66,2,0],"span":[1141,2,18]},{"path":[4,66,2,0,5],"span":[1141,2,8]},{"path":[4,66,2,0,1],"span":[1141,9,13]},{"path":[4,66,2,0,3],"span":[1141,16,17]},{"path":[4,66,2,1],"span":[1143,2,29]},{"path":[4,66,2,1,4],"span":[1143,2,10]},{"path":[4,66,2,1,5],"span":[1143,11,17]},{"path":[4,66,2,1,1],"span":[1143,18,24]},{"path":[4,66,2,1,3],"span":[1143,27,28]},{"path":[4,66,2,2],"span":[1144,2,30]},{"path":[4,66,2,2,4],"span":[1144,2,10]},{"path":[4,66,2,2,5],"span":[1144,11,17]},{"path":[4,66,2,2,1],"span":[1144,18,25]},{"path":[4,66,2,2,3],"span":[1144,28,29]},{"path":[4,66,2,3],"span":[1145,2,27]},{"path":[4,66,2,3,4],"span":[1145,2,10]},{"path":[4,66,2,3,5],"span":[1145,11,17]},{"path":[4,66,2,3,1],"span":[1145,18,22]},{"path":[4,66,2,3,3],"span":[1145,25,26]},{"path":[4,66,2,4],"span":[1146,2,31]},{"path":[4,66,2,4,4],"span":[1146,2,10]},{"path":[4,66,2,4,5],"span":[1146,11,17]},{"path":[4,66,2,4,1],"span":[1146,18,26]},{"path":[4,66,2,4,3],"span":[1146,29,30]},{"path":[4,66,2,5],"span":[1147,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,66,2,5,4],"span":[1147,2,10]},{"path":[4,66,2,5,5],"span":[1147,11,17]},{"path":[4,66,2,5,1],"span":[1147,18,22]},{"path":[4,66,2,5,3],"span":[1147,25,26]},{"path":[4,66,2,6],"span":[1148,2,54]},{"path":[4,66,2,6,4],"span":[1148,2,10]},{"path":[4,66,2,6,6],"span":[1148,11,36]},{"path":[4,66,2,6,1],"span":[1148,37,49]},{"path":[4,66,2,6,3],"span":[1148,52,53]},{"path":[4,66,2,7],"span":[1149,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,66,2,7,4],"span":[1149,2,10]},{"path":[4,66,2,7,5],"span":[1149,11,17]},{"path":[4,66,2,7,1],"span":[1149,18,29]},{"path":[4,66,2,7,3],"span":[1149,32,33]},{"path":[4,66,2,8],"span":[1151,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,66,2,8,4],"span":[1151,2,10]},{"path":[4,66,2,8,5],"span":[1151,11,17]},{"path":[4,66,2,8,1],"span":[1151,18,23]},{"path":[4,66,2,8,3],"span":[1151,26,27]},{"path":[4,66,2,9],"span":[1153,2,37]},{"path":[4,66,2,9,4],"span":[1153,2,10]},{"path":[4,66,2,9,5],"span":[1153,11,15]},{"path":[4,66,2,9,1],"span":[1153,16,31]},{"path":[4,66,2,9,3],"span":[1153,34,36]},{"path":[4,67],"span":[1158,0,1192,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,67,1],"span":[1158,8,20]},{"path":[4,67,2,0],"span":[1159,2,16]},{"path":[4,67,2,0,5],"span":[1159,2,7]},{"path":[4,67,2,0,1],"span":[1159,9,11]},{"path":[4,67,2,0,3],"span":[1159,14,15]},{"path":[4,67,2,1],"span":[1160,2,23]},{"path":[4,67,2,1,5],"span":[1160,2,8]},{"path":[4,67,2,1,1],"span":[1160,9,18]},{"path":[4,67,2,1,3],"span":[1160,21,22]},{"path":[4,67,2,2],"span":[1162,2,32]},{"path":[4,67,2,2,4],"span":[1162,2,10]},{"path":[4,67,2,2,5],"span":[1162,11,16]},{"path":[4,67,2,2,1],"span":[1162,17,26]},{"path":[4,67,2,2,3],"span":[1162,29,31]},{"path":[4,67,2,3],"span":[1163,2,58]},{"path":[4,67,2,3,4],"span":[1163,2,10]},{"path":[4,67,2,3,6],"span":[1163,11,36]},{"path":[4,67,2,3,1],"span":[1163,37,53]},{"path":[4,67,2,3,3],"span":[1163,56,57]},{"path":[4,67,2,4],"span":[1165,2,35]},{"path":[4,67,2,4,4],"span":[1165,2,10]},{"path":[4,67,2,4,5],"span":[1165,11,17]},{"path":[4,67,2,4,1],"span":[1165,18,30]},{"path":[4,67,2,4,3],"span":[1165,33,34]},{"path":[4,67,2,5],"span":[1166,2,37]},{"path":[4,67,2,5,4],"span":[1166,2,10]},{"path":[4,67,2,5,5],"span":[1166,11,17]},{"path":[4,67,2,5,1],"span":[1166,18,32]},{"path":[4,67,2,5,3],"span":[1166,35,36]},{"path":[4,67,2,6],"span":[1167,2,39]},{"path":[4,67,2,6,4],"span":[1167,2,10]},{"path":[4,67,2,6,5],"span":[1167,11,17]},{"path":[4,67,2,6,1],"span":[1167,18,34]},{"path":[4,67,2,6,3],"span":[1167,37,38]},{"path":[4,67,2,7],"span":[1168,2,35]},{"path":[4,67,2,7,4],"span":[1168,2,10]},{"path":[4,67,2,7,5],"span":[1168,11,17]},{"path":[4,67,2,7,1],"span":[1168,18,30]},{"path":[4,67,2,7,3],"span":[1168,33,34]},{"path":[4,67,2,8],"span":[1169,2,43]},{"path":[4,67,2,8,4],"span":[1169,2,10]},{"path":[4,67,2,8,5],"span":[1169,11,17]},{"path":[4,67,2,8,1],"span":[1169,18,37]},{"path":[4,67,2,8,3],"span":[1169,40,42]},{"path":[4,67,2,9],"span":[1170,2,35]},{"path":[4,67,2,9,4],"span":[1170,2,10]},{"path":[4,67,2,9,5],"span":[1170,11,17]},{"path":[4,67,2,9,1],"span":[1170,18,29]},{"path":[4,67,2,9,3],"span":[1170,32,34]},{"path":[4,67,2,10],"span":[1171,2,35]},{"path":[4,67,2,10,4],"span":[1171,2,10]},{"path":[4,67,2,10,5],"span":[1171,11,17]},{"path":[4,67,2,10,1],"span":[1171,18,29]},{"path":[4,67,2,10,3],"span":[1171,32,34]},{"path":[4,67,2,11],"span":[1172,2,37]},{"path":[4,67,2,11,4],"span":[1172,2,10]},{"path":[4,67,2,11,5],"span":[1172,11,17]},{"path":[4,67,2,11,1],"span":[1172,18,31]},{"path":[4,67,2,11,3],"span":[1172,34,36]},{"path":[4,67,2,12],"span":[1173,2,40]},{"path":[4,67,2,12,4],"span":[1173,2,10]},{"path":[4,67,2,12,5],"span":[1173,11,17]},{"path":[4,67,2,12,1],"span":[1173,18,34]},{"path":[4,67,2,12,3],"span":[1173,37,39]},{"path":[4,67,2,13],"span":[1174,2,39]},{"path":[4,67,2,13,4],"span":[1174,2,10]},{"path":[4,67,2,13,5],"span":[1174,11,17]},{"path":[4,67,2,13,1],"span":[1174,18,33]},{"path":[4,67,2,13,3],"span":[1174,36,38]},{"path":[4,67,2,14],"span":[1175,2,36]},{"path":[4,67,2,14,4],"span":[1175,2,10]},{"path":[4,67,2,14,5],"span":[1175,11,17]},{"path":[4,67,2,14,1],"span":[1175,18,30]},{"path":[4,67,2,14,3],"span":[1175,33,35]},{"path":[4,67,2,15],"span":[1176,2,43]},{"path":[4,67,2,15,4],"span":[1176,2,10]},{"path":[4,67,2,15,5],"span":[1176,11,17]},{"path":[4,67,2,15,1],"span":[1176,18,37]},{"path":[4,67,2,15,3],"span":[1176,40,42]},{"path":[4,67,2,16],"span":[1177,2,37]},{"path":[4,67,2,16,4],"span":[1177,2,10]},{"path":[4,67,2,16,5],"span":[1177,11,17]},{"path":[4,67,2,16,1],"span":[1177,18,31]},{"path":[4,67,2,16,3],"span":[1177,34,36]},{"path":[4,67,2,17],"span":[1178,2,40]},{"path":[4,67,2,17,4],"span":[1178,2,10]},{"path":[4,67,2,17,5],"span":[1178,11,17]},{"path":[4,67,2,17,1],"span":[1178,18,34]},{"path":[4,67,2,17,3],"span":[1178,37,39]},{"path":[4,67,2,18],"span":[1179,2,41]},{"path":[4,67,2,18,4],"span":[1179,2,10]},{"path":[4,67,2,18,5],"span":[1179,11,17]},{"path":[4,67,2,18,1],"span":[1179,18,35]},{"path":[4,67,2,18,3],"span":[1179,38,40]},{"path":[4,67,2,19],"span":[1180,2,39]},{"path":[4,67,2,19,4],"span":[1180,2,10]},{"path":[4,67,2,19,5],"span":[1180,11,17]},{"path":[4,67,2,19,1],"span":[1180,18,33]},{"path":[4,67,2,19,3],"span":[1180,36,38]},{"path":[4,67,2,20],"span":[1181,2,41]},{"path":[4,67,2,20,4],"span":[1181,2,10]},{"path":[4,67,2,20,5],"span":[1181,11,17]},{"path":[4,67,2,20,1],"span":[1181,18,35]},{"path":[4,67,2,20,3],"span":[1181,38,40]},{"path":[4,67,2,21],"span":[1182,2,38]},{"path":[4,67,2,21,4],"span":[1182,2,10]},{"path":[4,67,2,21,5],"span":[1182,11,17]},{"path":[4,67,2,21,1],"span":[1182,18,32]},{"path":[4,67,2,21,3],"span":[1182,35,37]},{"path":[4,67,2,22],"span":[1184,2,36]},{"path":[4,67,2,22,4],"span":[1184,2,10]},{"path":[4,67,2,22,5],"span":[1184,11,15]},{"path":[4,67,2,22,1],"span":[1184,16,30]},{"path":[4,67,2,22,3],"span":[1184,33,35]},{"path":[4,67,2,23],"span":[1185,2,36]},{"path":[4,67,2,23,4],"span":[1185,2,10]},{"path":[4,67,2,23,5],"span":[1185,11,15]},{"path":[4,67,2,23,1],"span":[1185,16,30]},{"path":[4,67,2,23,3],"span":[1185,33,35]},{"path":[4,67,2,24],"span":[1186,2,36]},{"path":[4,67,2,24,4],"span":[1186,2,10]},{"path":[4,67,2,24,5],"span":[1186,11,15]},{"path":[4,67,2,24,1],"span":[1186,16,30]},{"path":[4,67,2,24,3],"span":[1186,33,35]},{"path":[4,67,2,25],"span":[1187,2,38]},{"path":[4,67,2,25,4],"span":[1187,2,10]},{"path":[4,67,2,25,5],"span":[1187,11,15]},{"path":[4,67,2,25,1],"span":[1187,16,32]},{"path":[4,67,2,25,3],"span":[1187,35,37]},{"path":[4,67,2,26],"span":[1188,2,38]},{"path":[4,67,2,26,4],"span":[1188,2,10]},{"path":[4,67,2,26,5],"span":[1188,11,15]},{"path":[4,67,2,26,1],"span":[1188,16,32]},{"path":[4,67,2,26,3],"span":[1188,35,37]},{"path":[4,67,2,27],"span":[1189,2,38]},{"path":[4,67,2,27,4],"span":[1189,2,10]},{"path":[4,67,2,27,5],"span":[1189,11,15]},{"path":[4,67,2,27,1],"span":[1189,16,32]},{"path":[4,67,2,27,3],"span":[1189,35,37]},{"path":[4,67,2,28],"span":[1191,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,67,2,28,4],"span":[1191,2,10]},{"path":[4,67,2,28,5],"span":[1191,11,16]},{"path":[4,67,2,28,1],"span":[1191,17,28]},{"path":[4,67,2,28,3],"span":[1191,31,33]},{"path":[4,68],"span":[1194,0,1229,1]},{"path":[4,68,1],"span":[1194,8,20]},{"path":[4,68,2,0],"span":[1195,2,15]},{"path":[4,68,2,0,5],"span":[1195,2,7]},{"path":[4,68,2,0,1],"span":[1195,8,10]},{"path":[4,68,2,0,3],"span":[1195,13,14]},{"path":[4,68,2,1],"span":[1197,2,20]},{"path":[4,68,2,1,5],"span":[1197,2,7]},{"path":[4,68,2,1,1],"span":[1197,8,15]},{"path":[4,68,2,1,3],"span":[1197,18,19]},{"path":[4,68,2,2],"span":[1198,2,26]},{"path":[4,68,2,2,5],"span":[1198,2,8]},{"path":[4,68,2,2,1],"span":[1198,9,21]},{"path":[4,68,2,2,3],"span":[1198,24,25]},{"path":[4,68,2,3],"span":[1200,2,36]},{"path":[4,68,2,3,4],"span":[1200,2,10]},{"path":[4,68,2,3,5],"span":[1200,11,16]},{"path":[4,68,2,3,1],"span":[1200,17,31]},{"path":[4,68,2,3,3],"span":[1200,34,35]},{"path":[4,68,2,4],"span":[1201,2,40]},{"path":[4,68,2,4,4],"span":[1201,2,10]},{"path":[4,68,2,4,5],"span":[1201,11,17]},{"path":[4,68,2,4,1],"span":[1201,18,35]},{"path":[4,68,2,4,3],"span":[1201,38,39]},{"path":[4,68,2,5],"span":[1203,2,32]},{"path":[4,68,2,5,4],"span":[1203,2,10]},{"path":[4,68,2,5,5],"span":[1203,11,16]},{"path":[4,68,2,5,1],"span":[1203,17,26]},{"path":[4,68,2,5,3],"span":[1203,29,31]},{"path":[4,68,2,6],"span":[1204,2,31]},{"path":[4,68,2,6,4],"span":[1204,2,10]},{"path":[4,68,2,6,5],"span":[1204,11,15]},{"path":[4,68,2,6,1],"span":[1204,16,25]},{"path":[4,68,2,6,3],"span":[1204,28,30]},{"path":[4,68,2,7],"span":[1205,2,34]},{"path":[4,68,2,7,4],"span":[1205,2,10]},{"path":[4,68,2,7,5],"span":[1205,11,17]},{"path":[4,68,2,7,1],"span":[1205,18,28]},{"path":[4,68,2,7,3],"span":[1205,31,33]},{"path":[4,68,2,8],"span":[1206,2,31]},{"path":[4,68,2,8,4],"span":[1206,2,10]},{"path":[4,68,2,8,5],"span":[1206,11,17]},{"path":[4,68,2,8,1],"span":[1206,18,25]},{"path":[4,68,2,8,3],"span":[1206,28,30]},{"path":[4,68,2,9],"span":[1207,2,55]},{"path":[4,68,2,9,4],"span":[1207,2,10]},{"path":[4,68,2,9,6],"span":[1207,11,36]},{"path":[4,68,2,9,1],"span":[1207,37,49]},{"path":[4,68,2,9,3],"span":[1207,52,54]},{"path":[4,68,2,10],"span":[1208,2,52]},{"path":[4,68,2,10,4],"span":[1208,2,10]},{"path":[4,68,2,10,6],"span":[1208,11,36]},{"path":[4,68,2,10,1],"span":[1208,37,46]},{"path":[4,68,2,10,3],"span":[1208,49,51]},{"path":[4,68,2,11],"span":[1209,2,51]},{"path":[4,68,2,11,4],"span":[1209,2,10]},{"path":[4,68,2,11,6],"span":[1209,11,36]},{"path":[4,68,2,11,1],"span":[1209,37,45]},{"path":[4,68,2,11,3],"span":[1209,48,50]},{"path":[4,68,2,12],"span":[1210,2,43]},{"path":[4,68,2,12,4],"span":[1210,2,10]},{"path":[4,68,2,12,5],"span":[1210,11,17]},{"path":[4,68,2,12,1],"span":[1210,18,37]},{"path":[4,68,2,12,3],"span":[1210,40,42]},{"path":[4,68,2,13],"span":[1212,2,35]},{"path":[4,68,2,13,4],"span":[1212,2,10]},{"path":[4,68,2,13,5],"span":[1212,11,17]},{"path":[4,68,2,13,1],"span":[1212,18,29]},{"path":[4,68,2,13,3],"span":[1212,32,34]},{"path":[4,68,2,14],"span":[1213,2,37]},{"path":[4,68,2,14,4],"span":[1213,2,10]},{"path":[4,68,2,14,5],"span":[1213,11,17]},{"path":[4,68,2,14,1],"span":[1213,18,31]},{"path":[4,68,2,14,3],"span":[1213,34,36]},{"path":[4,68,2,15],"span":[1215,2,39]},{"path":[4,68,2,15,4],"span":[1215,2,10]},{"path":[4,68,2,15,5],"span":[1215,11,17]},{"path":[4,68,2,15,1],"span":[1215,18,33]},{"path":[4,68,2,15,3],"span":[1215,36,38]},{"path":[4,68,2,16],"span":[1216,2,43]},{"path":[4,68,2,16,4],"span":[1216,2,10]},{"path":[4,68,2,16,5],"span":[1216,11,17]},{"path":[4,68,2,16,1],"span":[1216,18,37]},{"path":[4,68,2,16,3],"span":[1216,40,42]},{"path":[4,68,2,17],"span":[1217,2,38]},{"path":[4,68,2,17,4],"span":[1217,2,10]},{"path":[4,68,2,17,5],"span":[1217,11,17]},{"path":[4,68,2,17,1],"span":[1217,18,32]},{"path":[4,68,2,17,3],"span":[1217,35,37]},{"path":[4,68,2,18],"span":[1218,2,38]},{"path":[4,68,2,18,4],"span":[1218,2,10]},{"path":[4,68,2,18,5],"span":[1218,11,17]},{"path":[4,68,2,18,1],"span":[1218,18,32]},{"path":[4,68,2,18,3],"span":[1218,35,37]},{"path":[4,68,2,19],"span":[1219,2,41]},{"path":[4,68,2,19,4],"span":[1219,2,10]},{"path":[4,68,2,19,5],"span":[1219,11,15]},{"path":[4,68,2,19,1],"span":[1219,18,35]},{"path":[4,68,2,19,3],"span":[1219,38,40]},{"path":[4,68,2,20],"span":[1220,2,42]},{"path":[4,68,2,20,4],"span":[1220,2,10]},{"path":[4,68,2,20,5],"span":[1220,11,17]},{"path":[4,68,2,20,1],"span":[1220,18,36]},{"path":[4,68,2,20,3],"span":[1220,39,41]},{"path":[4,68,2,21],"span":[1222,2,32]},{"path":[4,68,2,21,4],"span":[1222,2,10]},{"path":[4,68,2,21,5],"span":[1222,11,17]},{"path":[4,68,2,21,1],"span":[1222,18,26]},{"path":[4,68,2,21,3],"span":[1222,29,31]},{"path":[4,68,2,22],"span":[1224,2,33]},{"path":[4,68,2,22,4],"span":[1224,2,10]},{"path":[4,68,2,22,5],"span":[1224,11,16]},{"path":[4,68,2,22,1],"span":[1224,17,27]},{"path":[4,68,2,22,3],"span":[1224,30,32]},{"path":[4,68,2,23],"span":[1226,2,59]},{"path":[4,68,2,23,4],"span":[1226,2,10]},{"path":[4,68,2,23,6],"span":[1226,11,36]},{"path":[4,68,2,23,1],"span":[1226,37,53]},{"path":[4,68,2,23,3],"span":[1226,56,58]},{"path":[4,68,2,24],"span":[1228,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,68,2,24,4],"span":[1228,2,10]},{"path":[4,68,2,24,5],"span":[1228,11,16]},{"path":[4,68,2,24,1],"span":[1228,17,28]},{"path":[4,68,2,24,3],"span":[1228,31,33]},{"path":[4,69],"span":[1231,0,1264,1]},{"path":[4,69,1],"span":[1231,8,17]},{"path":[4,69,2,0],"span":[1232,2,15]},{"path":[4,69,2,0,5],"span":[1232,2,7]},{"path":[4,69,2,0,1],"span":[1232,8,10]},{"path":[4,69,2,0,3],"span":[1232,13,14]},{"path":[4,69,2,1],"span":[1234,2,21]},{"path":[4,69,2,1,5],"span":[1234,2,8]},{"path":[4,69,2,1,1],"span":[1234,9,16]},{"path":[4,69,2,1,3],"span":[1234,19,20]},{"path":[4,69,2,2],"span":[1236,2,33]},{"path":[4,69,2,2,4],"span":[1236,2,10]},{"path":[4,69,2,2,5],"span":[1236,11,17]},{"path":[4,69,2,2,1],"span":[1236,18,28]},{"path":[4,69,2,2,3],"span":[1236,31,32]},{"path":[4,69,2,3],"span":[1237,2,32]},{"path":[4,69,2,3,4],"span":[1237,2,10]},{"path":[4,69,2,3,5],"span":[1237,11,17]},{"path":[4,69,2,3,1],"span":[1237,18,26]},{"path":[4,69,2,3,3],"span":[1237,29,31]},{"path":[4,69,2,4],"span":[1238,2,38]},{"path":[4,69,2,4,4],"span":[1238,2,10]},{"path":[4,69,2,4,5],"span":[1238,11,17]},{"path":[4,69,2,4,1],"span":[1238,18,33]},{"path":[4,69,2,4,3],"span":[1238,36,37]},{"path":[4,69,2,5],"span":[1240,2,33]},{"path":[4,69,2,5,4],"span":[1240,2,10]},{"path":[4,69,2,5,5],"span":[1240,11,16]},{"path":[4,69,2,5,1],"span":[1240,17,28]},{"path":[4,69,2,5,3],"span":[1240,31,32]},{"path":[4,69,2,6],"span":[1241,2,29]},{"path":[4,69,2,6,4],"span":[1241,2,10]},{"path":[4,69,2,6,5],"span":[1241,11,16]},{"path":[4,69,2,6,1],"span":[1241,17,24]},{"path":[4,69,2,6,3],"span":[1241,27,28]},{"path":[4,69,2,7],"span":[1242,2,31]},{"path":[4,69,2,7,4],"span":[1242,2,10]},{"path":[4,69,2,7,5],"span":[1242,11,16]},{"path":[4,69,2,7,1],"span":[1242,17,26]},{"path":[4,69,2,7,3],"span":[1242,29,30]},{"path":[4,69,2,8],"span":[1244,2,54]},{"path":[4,69,2,8,4],"span":[1244,2,10]},{"path":[4,69,2,8,6],"span":[1244,11,36]},{"path":[4,69,2,8,1],"span":[1244,37,49]},{"path":[4,69,2,8,3],"span":[1244,52,53]},{"path":[4,69,2,9],"span":[1245,2,51]},{"path":[4,69,2,9,4],"span":[1245,2,10]},{"path":[4,69,2,9,6],"span":[1245,11,36]},{"path":[4,69,2,9,1],"span":[1245,37,45]},{"path":[4,69,2,9,3],"span":[1245,48,50]},{"path":[4,69,2,10],"span":[1246,2,51]},{"path":[4,69,2,10,4],"span":[1246,2,10]},{"path":[4,69,2,10,6],"span":[1246,11,36]},{"path":[4,69,2,10,1],"span":[1246,37,45]},{"path":[4,69,2,10,3],"span":[1246,48,50]},{"path":[4,69,2,11],"span":[1247,2,52]},{"path":[4,69,2,11,4],"span":[1247,2,10]},{"path":[4,69,2,11,6],"span":[1247,11,36]},{"path":[4,69,2,11,1],"span":[1247,37,46]},{"path":[4,69,2,11,3],"span":[1247,49,51]},{"path":[4,69,2,12],"span":[1248,2,43]},{"path":[4,69,2,12,4],"span":[1248,2,10]},{"path":[4,69,2,12,5],"span":[1248,11,17]},{"path":[4,69,2,12,1],"span":[1248,18,37]},{"path":[4,69,2,12,3],"span":[1248,40,42]},{"path":[4,69,2,13],"span":[1249,2,38]},{"path":[4,69,2,13,4],"span":[1249,2,10]},{"path":[4,69,2,13,5],"span":[1249,11,17]},{"path":[4,69,2,13,1],"span":[1249,18,32]},{"path":[4,69,2,13,3],"span":[1249,35,37]},{"path":[4,69,2,14],"span":[1250,2,40]},{"path":[4,69,2,14,4],"span":[1250,2,10]},{"path":[4,69,2,14,5],"span":[1250,11,17]},{"path":[4,69,2,14,1],"span":[1250,18,34]},{"path":[4,69,2,14,3],"span":[1250,37,39]},{"path":[4,69,2,15],"span":[1251,2,36]},{"path":[4,69,2,15,4],"span":[1251,2,10]},{"path":[4,69,2,15,5],"span":[1251,11,17]},{"path":[4,69,2,15,1],"span":[1251,18,30]},{"path":[4,69,2,15,3],"span":[1251,33,35]},{"path":[4,69,2,16],"span":[1252,2,43]},{"path":[4,69,2,16,4],"span":[1252,2,10]},{"path":[4,69,2,16,5],"span":[1252,11,17]},{"path":[4,69,2,16,1],"span":[1252,18,37]},{"path":[4,69,2,16,3],"span":[1252,40,42]},{"path":[4,69,2,17],"span":[1253,2,35]},{"path":[4,69,2,17,4],"span":[1253,2,10]},{"path":[4,69,2,17,5],"span":[1253,11,17]},{"path":[4,69,2,17,1],"span":[1253,18,29]},{"path":[4,69,2,17,3],"span":[1253,32,34]},{"path":[4,69,2,18],"span":[1254,2,35]},{"path":[4,69,2,18,4],"span":[1254,2,10]},{"path":[4,69,2,18,5],"span":[1254,11,17]},{"path":[4,69,2,18,1],"span":[1254,18,29]},{"path":[4,69,2,18,3],"span":[1254,32,34]},{"path":[4,69,2,19],"span":[1255,2,37]},{"path":[4,69,2,19,4],"span":[1255,2,10]},{"path":[4,69,2,19,5],"span":[1255,11,17]},{"path":[4,69,2,19,1],"span":[1255,18,31]},{"path":[4,69,2,19,3],"span":[1255,34,36]},{"path":[4,69,2,20],"span":[1256,2,40]},{"path":[4,69,2,20,4],"span":[1256,2,10]},{"path":[4,69,2,20,5],"span":[1256,11,17]},{"path":[4,69,2,20,1],"span":[1256,18,34]},{"path":[4,69,2,20,3],"span":[1256,37,39]},{"path":[4,69,2,21],"span":[1257,2,39]},{"path":[4,69,2,21,4],"span":[1257,2,10]},{"path":[4,69,2,21,5],"span":[1257,11,17]},{"path":[4,69,2,21,1],"span":[1257,18,33]},{"path":[4,69,2,21,3],"span":[1257,36,38]},{"path":[4,69,2,22],"span":[1259,2,32]},{"path":[4,69,2,22,4],"span":[1259,2,10]},{"path":[4,69,2,22,5],"span":[1259,11,17]},{"path":[4,69,2,22,1],"span":[1259,18,26]},{"path":[4,69,2,22,3],"span":[1259,29,31]},{"path":[4,69,2,23],"span":[1261,2,59]},{"path":[4,69,2,23,4],"span":[1261,2,10]},{"path":[4,69,2,23,6],"span":[1261,11,36]},{"path":[4,69,2,23,1],"span":[1261,37,53]},{"path":[4,69,2,23,3],"span":[1261,56,58]},{"path":[4,69,2,24],"span":[1263,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,69,2,24,4],"span":[1263,2,10]},{"path":[4,69,2,24,5],"span":[1263,11,16]},{"path":[4,69,2,24,1],"span":[1263,17,28]},{"path":[4,69,2,24,3],"span":[1263,31,33]},{"path":[4,70],"span":[1266,0,1296,1]},{"path":[4,70,1],"span":[1266,8,23]},{"path":[4,70,2,0],"span":[1267,2,15]},{"path":[4,70,2,0,5],"span":[1267,2,7]},{"path":[4,70,2,0,1],"span":[1267,8,10]},{"path":[4,70,2,0,3],"span":[1267,13,14]},{"path":[4,70,2,1],"span":[1268,2,21]},{"path":[4,70,2,1,5],"span":[1268,2,8]},{"path":[4,70,2,1,1],"span":[1268,9,16]},{"path":[4,70,2,1,3],"span":[1268,19,20]},{"path":[4,70,2,2],"span":[1270,2,33]},{"path":[4,70,2,2,4],"span":[1270,2,10]},{"path":[4,70,2,2,5],"span":[1270,11,17]},{"path":[4,70,2,2,1],"span":[1270,18,28]},{"path":[4,70,2,2,3],"span":[1270,31,32]},{"path":[4,70,2,3],"span":[1271,2,36]},{"path":[4,70,2,3,4],"span":[1271,2,10]},{"path":[4,70,2,3,5],"span":[1271,11,17]},{"path":[4,70,2,3,1],"span":[1271,18,31]},{"path":[4,70,2,3,3],"span":[1271,34,35]},{"path":[4,70,2,4],"span":[1272,2,33]},{"path":[4,70,2,4,4],"span":[1272,2,10]},{"path":[4,70,2,4,5],"span":[1272,11,17]},{"path":[4,70,2,4,1],"span":[1272,18,28]},{"path":[4,70,2,4,3],"span":[1272,31,32]},{"path":[4,70,2,5],"span":[1273,2,30]},{"path":[4,70,2,5,4],"span":[1273,2,10]},{"path":[4,70,2,5,5],"span":[1273,11,17]},{"path":[4,70,2,5,1],"span":[1273,18,25]},{"path":[4,70,2,5,3],"span":[1273,28,29]},{"path":[4,70,2,6],"span":[1274,2,31]},{"path":[4,70,2,6,4],"span":[1274,2,10]},{"path":[4,70,2,6,5],"span":[1274,11,17]},{"path":[4,70,2,6,1],"span":[1274,18,26]},{"path":[4,70,2,6,3],"span":[1274,29,30]},{"path":[4,70,2,7],"span":[1276,2,29]},{"path":[4,70,2,7,4],"span":[1276,2,10]},{"path":[4,70,2,7,5],"span":[1276,11,16]},{"path":[4,70,2,7,1],"span":[1276,17,24]},{"path":[4,70,2,7,3],"span":[1276,27,28]},{"path":[4,70,2,8],"span":[1277,2,31]},{"path":[4,70,2,8,4],"span":[1277,2,10]},{"path":[4,70,2,8,5],"span":[1277,11,16]},{"path":[4,70,2,8,1],"span":[1277,17,26]},{"path":[4,70,2,8,3],"span":[1277,29,30]},{"path":[4,70,2,9],"span":[1278,2,32]},{"path":[4,70,2,9,4],"span":[1278,2,10]},{"path":[4,70,2,9,5],"span":[1278,11,16]},{"path":[4,70,2,9,1],"span":[1278,17,26]},{"path":[4,70,2,9,3],"span":[1278,29,31]},{"path":[4,70,2,10],"span":[1280,2,31]},{"path":[4,70,2,10,4],"span":[1280,2,10]},{"path":[4,70,2,10,5],"span":[1280,11,17]},{"path":[4,70,2,10,1],"span":[1280,18,25]},{"path":[4,70,2,10,3],"span":[1280,28,30]},{"path":[4,70,2,11],"span":[1281,2,35]},{"path":[4,70,2,11,4],"span":[1281,2,10]},{"path":[4,70,2,11,5],"span":[1281,11,17]},{"path":[4,70,2,11,1],"span":[1281,18,29]},{"path":[4,70,2,11,3],"span":[1281,32,34]},{"path":[4,70,2,12],"span":[1283,2,55]},{"path":[4,70,2,12,4],"span":[1283,2,10]},{"path":[4,70,2,12,6],"span":[1283,11,36]},{"path":[4,70,2,12,1],"span":[1283,37,49]},{"path":[4,70,2,12,3],"span":[1283,52,54]},{"path":[4,70,2,13],"span":[1284,2,51]},{"path":[4,70,2,13,4],"span":[1284,2,10]},{"path":[4,70,2,13,6],"span":[1284,11,36]},{"path":[4,70,2,13,1],"span":[1284,37,45]},{"path":[4,70,2,13,3],"span":[1284,48,50]},{"path":[4,70,2,14],"span":[1285,2,51]},{"path":[4,70,2,14,4],"span":[1285,2,10]},{"path":[4,70,2,14,6],"span":[1285,11,36]},{"path":[4,70,2,14,1],"span":[1285,37,45]},{"path":[4,70,2,14,3],"span":[1285,48,50]},{"path":[4,70,2,15],"span":[1286,2,52]},{"path":[4,70,2,15,4],"span":[1286,2,10]},{"path":[4,70,2,15,6],"span":[1286,11,36]},{"path":[4,70,2,15,1],"span":[1286,37,46]},{"path":[4,70,2,15,3],"span":[1286,49,51]},{"path":[4,70,2,16],"span":[1287,2,43]},{"path":[4,70,2,16,4],"span":[1287,2,10]},{"path":[4,70,2,16,5],"span":[1287,11,17]},{"path":[4,70,2,16,1],"span":[1287,18,37]},{"path":[4,70,2,16,3],"span":[1287,40,42]},{"path":[4,70,2,17],"span":[1289,2,33]},{"path":[4,70,2,17,4],"span":[1289,2,10]},{"path":[4,70,2,17,5],"span":[1289,11,15]},{"path":[4,70,2,17,1],"span":[1289,16,27]},{"path":[4,70,2,17,3],"span":[1289,30,32]},{"path":[4,70,2,18],"span":[1290,2,37]},{"path":[4,70,2,18,4],"span":[1290,2,10]},{"path":[4,70,2,18,5],"span":[1290,11,15]},{"path":[4,70,2,18,1],"span":[1290,16,31]},{"path":[4,70,2,18,3],"span":[1290,34,36]},{"path":[4,70,2,19],"span":[1291,2,37]},{"path":[4,70,2,19,4],"span":[1291,2,10]},{"path":[4,70,2,19,5],"span":[1291,11,15]},{"path":[4,70,2,19,1],"span":[1291,16,31]},{"path":[4,70,2,19,3],"span":[1291,34,36]},{"path":[4,70,2,20],"span":[1293,2,59]},{"path":[4,70,2,20,4],"span":[1293,2,10]},{"path":[4,70,2,20,6],"span":[1293,11,36]},{"path":[4,70,2,20,1],"span":[1293,37,53]},{"path":[4,70,2,20,3],"span":[1293,56,58]},{"path":[4,70,2,21],"span":[1295,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,70,2,21,4],"span":[1295,2,10]},{"path":[4,70,2,21,5],"span":[1295,11,16]},{"path":[4,70,2,21,1],"span":[1295,17,28]},{"path":[4,70,2,21,3],"span":[1295,31,34]},{"path":[4,71],"span":[1298,0,1354,1]},{"path":[4,71,1],"span":[1298,8,22]},{"path":[4,71,2,0],"span":[1299,2,16]},{"path":[4,71,2,0,5],"span":[1299,2,7]},{"path":[4,71,2,0,1],"span":[1299,9,11]},{"path":[4,71,2,0,3],"span":[1299,14,15]},{"path":[4,71,2,1],"span":[1301,2,19]},{"path":[4,71,2,1,5],"span":[1301,2,8]},{"path":[4,71,2,1,1],"span":[1301,9,14]},{"path":[4,71,2,1,3],"span":[1301,17,18]},{"path":[4,71,2,2],"span":[1302,2,32]},{"path":[4,71,2,2,4],"span":[1302,2,10]},{"path":[4,71,2,2,5],"span":[1302,11,17]},{"path":[4,71,2,2,1],"span":[1302,18,27]},{"path":[4,71,2,2,3],"span":[1302,30,31]},{"path":[4,71,2,3],"span":[1303,2,29]},{"path":[4,71,2,3,4],"span":[1303,2,10]},{"path":[4,71,2,3,5],"span":[1303,11,16]},{"path":[4,71,2,3,1],"span":[1303,17,24]},{"path":[4,71,2,3,3],"span":[1303,27,28]},{"path":[4,71,2,4],"span":[1305,2,31]},{"path":[4,71,2,4,4],"span":[1305,2,10]},{"path":[4,71,2,4,5],"span":[1305,11,16]},{"path":[4,71,2,4,1],"span":[1305,17,26]},{"path":[4,71,2,4,3],"span":[1305,29,30]},{"path":[4,71,2,5],"span":[1306,2,30]},{"path":[4,71,2,5,4],"span":[1306,2,10]},{"path":[4,71,2,5,5],"span":[1306,11,15]},{"path":[4,71,2,5,1],"span":[1306,16,25]},{"path":[4,71,2,5,3],"span":[1306,28,29]},{"path":[4,71,2,6],"span":[1307,2,36]},{"path":[4,71,2,6,4],"span":[1307,2,10]},{"path":[4,71,2,6,5],"span":[1307,11,17]},{"path":[4,71,2,6,1],"span":[1307,18,31]},{"path":[4,71,2,6,3],"span":[1307,34,35]},{"path":[4,71,2,7],"span":[1308,2,35]},{"path":[4,71,2,7,4],"span":[1308,2,10]},{"path":[4,71,2,7,5],"span":[1308,11,17]},{"path":[4,71,2,7,1],"span":[1308,18,30]},{"path":[4,71,2,7,3],"span":[1308,33,34]},{"path":[4,71,2,8],"span":[1310,2,33]},{"path":[4,71,2,8,4],"span":[1310,2,10]},{"path":[4,71,2,8,5],"span":[1310,11,17]},{"path":[4,71,2,8,1],"span":[1310,18,27]},{"path":[4,71,2,8,3],"span":[1310,30,32]},{"path":[4,71,2,9],"span":[1311,2,38]},{"path":[4,71,2,9,4],"span":[1311,2,10]},{"path":[4,71,2,9,5],"span":[1311,11,17]},{"path":[4,71,2,9,1],"span":[1311,18,32]},{"path":[4,71,2,9,3],"span":[1311,35,37]},{"path":[4,71,2,10],"span":[1312,2,36]},{"path":[4,71,2,10,4],"span":[1312,2,10]},{"path":[4,71,2,10,5],"span":[1312,11,17]},{"path":[4,71,2,10,1],"span":[1312,18,30]},{"path":[4,71,2,10,3],"span":[1312,33,35]},{"path":[4,71,2,11],"span":[1313,2,40]},{"path":[4,71,2,11,4],"span":[1313,2,10]},{"path":[4,71,2,11,5],"span":[1313,11,17]},{"path":[4,71,2,11,1],"span":[1313,18,34]},{"path":[4,71,2,11,3],"span":[1313,37,39]},{"path":[4,71,2,12],"span":[1314,2,31]},{"path":[4,71,2,12,4],"span":[1314,2,10]},{"path":[4,71,2,12,5],"span":[1314,11,17]},{"path":[4,71,2,12,1],"span":[1314,18,25]},{"path":[4,71,2,12,3],"span":[1314,28,30]},{"path":[4,71,2,13],"span":[1315,2,36]},{"path":[4,71,2,13,4],"span":[1315,2,10]},{"path":[4,71,2,13,5],"span":[1315,11,17]},{"path":[4,71,2,13,1],"span":[1315,18,30]},{"path":[4,71,2,13,3],"span":[1315,33,35]},{"path":[4,71,2,14],"span":[1316,2,35]},{"path":[4,71,2,14,4],"span":[1316,2,10]},{"path":[4,71,2,14,5],"span":[1316,11,16]},{"path":[4,71,2,14,1],"span":[1316,17,29]},{"path":[4,71,2,14,3],"span":[1316,32,34]},{"path":[4,71,2,15],"span":[1317,2,29]},{"path":[4,71,2,15,4],"span":[1317,2,10]},{"path":[4,71,2,15,5],"span":[1317,11,17]},{"path":[4,71,2,15,1],"span":[1317,18,23]},{"path":[4,71,2,15,3],"span":[1317,26,28]},{"path":[4,71,2,16],"span":[1318,2,33]},{"path":[4,71,2,16,4],"span":[1318,2,10]},{"path":[4,71,2,16,5],"span":[1318,11,17]},{"path":[4,71,2,16,1],"span":[1318,18,27]},{"path":[4,71,2,16,3],"span":[1318,30,32]},{"path":[4,71,2,17],"span":[1319,2,32]},{"path":[4,71,2,17,4],"span":[1319,2,10]},{"path":[4,71,2,17,5],"span":[1319,11,17]},{"path":[4,71,2,17,1],"span":[1319,18,26]},{"path":[4,71,2,17,3],"span":[1319,29,31]},{"path":[4,71,2,18],"span":[1320,2,35]},{"path":[4,71,2,18,4],"span":[1320,2,10]},{"path":[4,71,2,18,5],"span":[1320,11,17]},{"path":[4,71,2,18,1],"span":[1320,18,29]},{"path":[4,71,2,18,3],"span":[1320,32,34]},{"path":[4,71,2,19],"span":[1322,2,36]},{"path":[4,71,2,19,4],"span":[1322,2,10]},{"path":[4,71,2,19,5],"span":[1322,11,17]},{"path":[4,71,2,19,1],"span":[1322,18,30]},{"path":[4,71,2,19,3],"span":[1322,33,35]},{"path":[4,71,2,20],"span":[1323,2,38]},{"path":[4,71,2,20,4],"span":[1323,2,10]},{"path":[4,71,2,20,5],"span":[1323,11,16]},{"path":[4,71,2,20,1],"span":[1323,17,32]},{"path":[4,71,2,20,3],"span":[1323,35,37]},{"path":[4,71,2,21],"span":[1324,2,47]},{"path":[4,71,2,21,4],"span":[1324,2,10]},{"path":[4,71,2,21,5],"span":[1324,11,16]},{"path":[4,71,2,21,1],"span":[1324,17,41]},{"path":[4,71,2,21,3],"span":[1324,44,46]},{"path":[4,71,2,22],"span":[1325,2,30]},{"path":[4,71,2,22,4],"span":[1325,2,10]},{"path":[4,71,2,22,5],"span":[1325,11,16]},{"path":[4,71,2,22,1],"span":[1325,17,24]},{"path":[4,71,2,22,3],"span":[1325,27,29]},{"path":[4,71,2,23],"span":[1326,2,29]},{"path":[4,71,2,23,4],"span":[1326,2,10]},{"path":[4,71,2,23,5],"span":[1326,11,16]},{"path":[4,71,2,23,1],"span":[1326,17,23]},{"path":[4,71,2,23,3],"span":[1326,26,28]},{"path":[4,71,2,24],"span":[1327,2,29]},{"path":[4,71,2,24,4],"span":[1327,2,10]},{"path":[4,71,2,24,5],"span":[1327,11,16]},{"path":[4,71,2,24,1],"span":[1327,17,23]},{"path":[4,71,2,24,3],"span":[1327,26,28]},{"path":[4,71,2,25],"span":[1328,2,36]},{"path":[4,71,2,25,4],"span":[1328,2,10]},{"path":[4,71,2,25,5],"span":[1328,11,17]},{"path":[4,71,2,25,1],"span":[1328,18,30]},{"path":[4,71,2,25,3],"span":[1328,33,35]},{"path":[4,71,2,26],"span":[1329,2,39]},{"path":[4,71,2,26,4],"span":[1329,2,10]},{"path":[4,71,2,26,5],"span":[1329,11,16]},{"path":[4,71,2,26,1],"span":[1329,17,33]},{"path":[4,71,2,26,3],"span":[1329,36,38]},{"path":[4,71,2,27],"span":[1330,2,44]},{"path":[4,71,2,27,4],"span":[1330,2,10]},{"path":[4,71,2,27,5],"span":[1330,11,17]},{"path":[4,71,2,27,1],"span":[1330,18,38]},{"path":[4,71,2,27,3],"span":[1330,41,43]},{"path":[4,71,2,28],"span":[1332,2,36]},{"path":[4,71,2,28,4],"span":[1332,2,10]},{"path":[4,71,2,28,5],"span":[1332,11,17]},{"path":[4,71,2,28,1],"span":[1332,18,30]},{"path":[4,71,2,28,3],"span":[1332,33,35]},{"path":[4,71,2,29],"span":[1333,2,37]},{"path":[4,71,2,29,4],"span":[1333,2,10]},{"path":[4,71,2,29,5],"span":[1333,11,16]},{"path":[4,71,2,29,1],"span":[1333,17,31]},{"path":[4,71,2,29,3],"span":[1333,34,36]},{"path":[4,71,2,30],"span":[1334,2,42]},{"path":[4,71,2,30,4],"span":[1334,2,10]},{"path":[4,71,2,30,5],"span":[1334,11,17]},{"path":[4,71,2,30,1],"span":[1334,18,36]},{"path":[4,71,2,30,3],"span":[1334,39,41]},{"path":[4,71,2,31],"span":[1335,2,38]},{"path":[4,71,2,31,4],"span":[1335,2,10]},{"path":[4,71,2,31,5],"span":[1335,11,17]},{"path":[4,71,2,31,1],"span":[1335,18,32]},{"path":[4,71,2,31,3],"span":[1335,35,37]},{"path":[4,71,2,32],"span":[1336,2,42]},{"path":[4,71,2,32,4],"span":[1336,2,10]},{"path":[4,71,2,32,5],"span":[1336,11,17]},{"path":[4,71,2,32,1],"span":[1336,18,36]},{"path":[4,71,2,32,3],"span":[1336,39,41]},{"path":[4,71,2,33],"span":[1337,2,39]},{"path":[4,71,2,33,4],"span":[1337,2,10]},{"path":[4,71,2,33,5],"span":[1337,11,17]},{"path":[4,71,2,33,1],"span":[1337,18,33]},{"path":[4,71,2,33,3],"span":[1337,36,38]},{"path":[4,71,2,34],"span":[1338,2,34]},{"path":[4,71,2,34,4],"span":[1338,2,10]},{"path":[4,71,2,34,5],"span":[1338,11,17]},{"path":[4,71,2,34,1],"span":[1338,18,28]},{"path":[4,71,2,34,3],"span":[1338,31,33]},{"path":[4,71,2,35],"span":[1339,2,34]},{"path":[4,71,2,35,4],"span":[1339,2,10]},{"path":[4,71,2,35,5],"span":[1339,11,17]},{"path":[4,71,2,35,1],"span":[1339,18,28]},{"path":[4,71,2,35,3],"span":[1339,31,33]},{"path":[4,71,2,36],"span":[1340,2,33]},{"path":[4,71,2,36,4],"span":[1340,2,10]},{"path":[4,71,2,36,5],"span":[1340,11,17]},{"path":[4,71,2,36,1],"span":[1340,18,27]},{"path":[4,71,2,36,3],"span":[1340,30,32]},{"path":[4,71,2,37],"span":[1342,2,33]},{"path":[4,71,2,37,4],"span":[1342,2,10]},{"path":[4,71,2,37,5],"span":[1342,11,15]},{"path":[4,71,2,37,1],"span":[1342,16,27]},{"path":[4,71,2,37,3],"span":[1342,30,32]},{"path":[4,71,2,38],"span":[1343,2,36]},{"path":[4,71,2,38,4],"span":[1343,2,10]},{"path":[4,71,2,38,5],"span":[1343,11,15]},{"path":[4,71,2,38,1],"span":[1343,16,30]},{"path":[4,71,2,38,3],"span":[1343,33,35]},{"path":[4,71,2,39],"span":[1344,2,38]},{"path":[4,71,2,39,4],"span":[1344,2,10]},{"path":[4,71,2,39,5],"span":[1344,11,15]},{"path":[4,71,2,39,1],"span":[1344,16,32]},{"path":[4,71,2,39,3],"span":[1344,35,37]},{"path":[4,71,2,40],"span":[1345,2,34]},{"path":[4,71,2,40,4],"span":[1345,2,10]},{"path":[4,71,2,40,5],"span":[1345,11,15]},{"path":[4,71,2,40,1],"span":[1345,16,28]},{"path":[4,71,2,40,3],"span":[1345,31,33]},{"path":[4,71,2,41],"span":[1346,2,33]},{"path":[4,71,2,41,4],"span":[1346,2,10]},{"path":[4,71,2,41,5],"span":[1346,11,15]},{"path":[4,71,2,41,1],"span":[1346,16,27]},{"path":[4,71,2,41,3],"span":[1346,30,32]},{"path":[4,71,2,42],"span":[1347,2,38]},{"path":[4,71,2,42,4],"span":[1347,2,10]},{"path":[4,71,2,42,5],"span":[1347,11,15]},{"path":[4,71,2,42,1],"span":[1347,16,32]},{"path":[4,71,2,42,3],"span":[1347,35,37]},{"path":[4,71,2,43],"span":[1348,2,36]},{"path":[4,71,2,43,4],"span":[1348,2,10]},{"path":[4,71,2,43,5],"span":[1348,11,15]},{"path":[4,71,2,43,1],"span":[1348,16,30]},{"path":[4,71,2,43,3],"span":[1348,33,35]},{"path":[4,71,2,44],"span":[1350,2,59]},{"path":[4,71,2,44,4],"span":[1350,2,10]},{"path":[4,71,2,44,6],"span":[1350,11,36]},{"path":[4,71,2,44,1],"span":[1350,37,53]},{"path":[4,71,2,44,3],"span":[1350,56,58]},{"path":[4,71,2,45],"span":[1352,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,71,2,45,4],"span":[1352,2,10]},{"path":[4,71,2,45,5],"span":[1352,11,16]},{"path":[4,71,2,45,1],"span":[1352,17,28]},{"path":[4,71,2,45,3],"span":[1352,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
1
+ {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"uniqueKey","proto3Optional":true},{"name":"scan_error","number":33,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScanError","jsonName":"scanError"},{"name":"last_synced_source","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSource","proto3Optional":true},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"},{"name":"relation","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Relation","jsonName":"relation"},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":2,"jsonName":"internetIp","proto3Optional":true},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":3,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":4,"jsonName":"os","proto3Optional":true},{"name":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":5,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":6,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":7,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":37,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":8,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":43,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"chassis","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":9,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":10,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":11,"jsonName":"motherboard","proto3Optional":true},{"name":"bios","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Bios","oneofIndex":12,"jsonName":"bios","proto3Optional":true},{"name":"computer_battery","number":45,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBattery","jsonName":"computerBattery"},{"name":"optical_drive","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":38,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"network_volume","number":40,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"graphics_card","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"auto_run_command","number":34,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":13,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":36,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":41,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":44,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"last_user","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":14,"jsonName":"lastUser","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":15,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":16,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_unique_key"},{"name":"_last_synced_source"},{"name":"_internet_ip"},{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_os_recovery"},{"name":"_chassis"},{"name":"_memory"},{"name":"_motherboard"},{"name":"_bios"},{"name":"_boot_config"},{"name":"_last_user"},{"name":"_ot_module"},{"name":"_cloud"}]},{"name":"Tag","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"value","proto3Optional":true}],"oneofDecl":[{"name":"_value"}]},{"name":"Relation","field":[{"name":"from","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":0,"jsonName":"from","proto3Optional":true},{"name":"to","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"to","proto3Optional":true},{"name":"start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"end","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"tag","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"}],"oneofDecl":[{"name":"_from"},{"name":"_to"},{"name":"_end"}]},{"name":"CloudEntity","field":[{"name":"body","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"}]},{"name":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"rack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtRack","oneofIndex":1,"jsonName":"rack","proto3Optional":true},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"is_network_node","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isNetworkNode"},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"partNumber","proto3Optional":true},{"name":"ext_info","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModuleExtInfo","jsonName":"extInfo"},{"name":"route_path","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"routePath","proto3Optional":true}],"oneofDecl":[{"name":"_component_type"},{"name":"_rack"},{"name":"_part_number"},{"name":"_route_path"}]},{"name":"OtRack","field":[{"name":"number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"type","proto3Optional":true},{"name":"size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"size"},{"name":"slot_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"slotNumber","proto3Optional":true},{"name":"slot_width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"slotWidth","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_slot_number"},{"name":"_slot_width"}]},{"name":"OtModuleExtInfo","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"ls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"lsId"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true},{"name":"sub_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"subType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"},{"name":"_sub_type"}]},{"name":"ScanError","field":[{"name":"section","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"section"},{"name":"error","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"error"},{"name":"source","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"source","proto3Optional":true},{"name":"timestamp","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"timestamp","proto3Optional":true},{"name":"duration","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"duration","proto3Optional":true}],"oneofDecl":[{"name":"_source"},{"name":"_timestamp"},{"name":"_duration"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true},{"name":"fqdn","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fqdn","proto3Optional":true}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"},{"name":"_fqdn"}]},{"name":"LastUser","field":[{"name":"user_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userName"},{"name":"user_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userType","proto3Optional":true},{"name":"upn","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"upn","proto3Optional":true},{"name":"sid","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"sid","proto3Optional":true}],"oneofDecl":[{"name":"_user_type"},{"name":"_upn"},{"name":"_sid"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":13,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":15,"jsonName":"catalogFamily","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_spec"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"}]},{"name":"SpecHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"system_sku","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"systemSku","proto3Optional":true},{"name":"uptime","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"uptime","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"}]},{"name":"OperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"},{"name":"mac","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo","oneofIndex":0,"jsonName":"mac"},{"name":"linux","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo","oneofIndex":0,"jsonName":"linux"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"MacOperatingSystemInfo","field":[{"name":"kernel_caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelCaption","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"}]},{"name":"LinuxOperatingSystemInfo","field":[{"name":"kernel_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"kernelRelease","proto3Optional":true},{"name":"kernel_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"kernelVersion","proto3Optional":true},{"name":"distribution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"distribution","proto3Optional":true},{"name":"os_release","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"osRelease","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_kernel_version"},{"name":"_distribution"},{"name":"_os_release"}]},{"name":"WindowsOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"OperatingSystemFeature","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"caption"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"Chassis","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"type"},{"name":"lock_present","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"lockPresent","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"security_status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"securityStatus","proto3Optional":true},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"asset_tag","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"assetTag","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"version","proto3Optional":true},{"name":"bootup_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"bootupState","proto3Optional":true}],"oneofDecl":[{"name":"_lock_present"},{"name":"_manufacturer"},{"name":"_security_status"},{"name":"_serial_number"},{"name":"_asset_tag"},{"name":"_version"},{"name":"_bootup_state"}]},{"name":"HardDrive","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"compressed","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"drive_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"driveType","proto3Optional":true},{"name":"file_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileSystem","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"size","proto3Optional":true},{"name":"volume_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"volumeName","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"serialNumber","proto3Optional":true},{"name":"mounted_on","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"mountedOn","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_compressed"},{"name":"_description"},{"name":"_device_id"},{"name":"_drive_type"},{"name":"_file_system"},{"name":"_free_space"},{"name":"_size"},{"name":"_volume_name"},{"name":"_serial_number"},{"name":"_mounted_on"}]},{"name":"DriveVolume","field":[{"name":"device_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"deviceId","proto3Optional":true},{"name":"path","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"label","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"label","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"capacity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"capacity","proto3Optional":true},{"name":"block_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"blockSize","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"drive_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"driveType","proto3Optional":true},{"name":"protection_status","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"protectionStatus","proto3Optional":true},{"name":"error_description","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"errorDescription","proto3Optional":true},{"name":"error_methodology","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"errorMethodology","proto3Optional":true},{"name":"file_system","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"fileSystem","proto3Optional":true},{"name":"auto_mount","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"autoMount","proto3Optional":true},{"name":"compressed","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"compressed","proto3Optional":true},{"name":"dirty_bit_set","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"dirtyBitSet","proto3Optional":true},{"name":"error_cleared","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"errorCleared","proto3Optional":true},{"name":"indexing_enabled","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"indexingEnabled","proto3Optional":true},{"name":"page_file_present","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"pageFilePresent","proto3Optional":true},{"name":"supports_disk_quotas","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"supportsDiskQuotas","proto3Optional":true},{"name":"supports_file_based_compression","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"supportsFileBasedCompression","proto3Optional":true},{"name":"mounted","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"mounted","proto3Optional":true},{"name":"mount_point","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"mountPoint","proto3Optional":true}],"oneofDecl":[{"name":"_device_id"},{"name":"_path"},{"name":"_label"},{"name":"_name"},{"name":"_capacity"},{"name":"_block_size"},{"name":"_free_space"},{"name":"_drive_type"},{"name":"_protection_status"},{"name":"_error_description"},{"name":"_error_methodology"},{"name":"_file_system"},{"name":"_auto_mount"},{"name":"_compressed"},{"name":"_dirty_bit_set"},{"name":"_error_cleared"},{"name":"_indexing_enabled"},{"name":"_page_file_present"},{"name":"_supports_disk_quotas"},{"name":"_supports_file_based_compression"},{"name":"_mounted"},{"name":"_mount_point"}]},{"name":"NetworkVolume","field":[{"name":"win_mapped_drive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMappedDrive","oneofIndex":0,"jsonName":"winMappedDrive"},{"name":"mac_volume","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacNetworkVolume","oneofIndex":0,"jsonName":"macVolume"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"}]},{"name":"WindowsMappedDrive","field":[{"name":"drive_letter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"driveLetter"},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userName","proto3Optional":true},{"name":"user_domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userDomain","proto3Optional":true},{"name":"remote_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"remotePath","proto3Optional":true}],"oneofDecl":[{"name":"_user_name"},{"name":"_user_domain"},{"name":"_remote_path"}]},{"name":"MacNetworkVolume","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"auto_mounted","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"autoMounted","proto3Optional":true},{"name":"fsmt_non_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"fsmtNonName","proto3Optional":true},{"name":"fs_type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"fsTypeName","proto3Optional":true},{"name":"mnt_from_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"mntFromName","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_auto_mounted"},{"name":"_fsmt_non_name"},{"name":"_fs_type_name"},{"name":"_mnt_from_name"}]},{"name":"Keyboard","field":[{"name":"config_manager_error_code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"layout","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"layout","proto3Optional":true},{"name":"number_of_function_keys","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"numberOfFunctionKeys","proto3Optional":true}],"oneofDecl":[{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_description"},{"name":"_device_id"},{"name":"_layout"},{"name":"_number_of_function_keys"}]},{"name":"PointingDevice","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"device_interface","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"deviceInterface","proto3Optional":true},{"name":"double_speed_threshold","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"doubleSpeedThreshold","proto3Optional":true},{"name":"handedness","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"handedness","proto3Optional":true},{"name":"inf_file_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"infFileName","proto3Optional":true},{"name":"inf_section","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"infSection","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"number_of_buttons","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"numberOfButtons","proto3Optional":true},{"name":"pointing_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":9,"jsonName":"pointingType","proto3Optional":true},{"name":"quad_speed_threshold","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"quadSpeedThreshold","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_device_interface"},{"name":"_double_speed_threshold"},{"name":"_handedness"},{"name":"_inf_file_name"},{"name":"_inf_section"},{"name":"_manufacturer"},{"name":"_number_of_buttons"},{"name":"_pointing_type"},{"name":"_quad_speed_threshold"}]},{"name":"AutoRunCommand","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"command","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"command","proto3Optional":true},{"name":"location","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"user","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"user","proto3Optional":true},{"name":"user_sid","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userSid","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_command"},{"name":"_location"},{"name":"_name"},{"name":"_user"},{"name":"_user_sid"}]},{"name":"BootConfig","field":[{"name":"boot_directory","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"bootDirectory","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"configuration_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"configurationPath","proto3Optional":true},{"name":"scratch_directory","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"scratchDirectory","proto3Optional":true},{"name":"temp_directory","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tempDirectory","proto3Optional":true},{"name":"boot_volume","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootMode","proto3Optional":true}],"oneofDecl":[{"name":"_boot_directory"},{"name":"_caption"},{"name":"_name"},{"name":"_configuration_path"},{"name":"_scratch_directory"},{"name":"_temp_directory"},{"name":"_boot_volume"},{"name":"_boot_mode"}]},{"name":"SharedResource","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"path","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_path"},{"name":"_type"}]},{"name":"RunningProcess","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"threads","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"threads","proto3Optional":true},{"name":"priority","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"priority","proto3Optional":true},{"name":"handle","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"handle","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_path"},{"name":"_threads"},{"name":"_priority"},{"name":"_handle"}]},{"name":"OperatingSystemService","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"pathname","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"pathname","proto3Optional":true},{"name":"start_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"startName","proto3Optional":true},{"name":"state","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"state","proto3Optional":true},{"name":"started","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"started","proto3Optional":true},{"name":"accept_pause","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"desktopInteract","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_pathname"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_started"},{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"}]},{"name":"OperatingSystemRecovery","field":[{"name":"win","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOsRecovery","oneofIndex":0,"jsonName":"win"}],"oneofDecl":[{"name":"os"}]},{"name":"WindowsOsRecovery","field":[{"name":"auto_reboot","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"autoReboot","proto3Optional":true},{"name":"debug_file_path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"debugFilePath","proto3Optional":true},{"name":"kernel_dump_only","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"kernelDumpOnly","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"overwrite_existing_debug_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"overwriteExistingDebugFile","proto3Optional":true},{"name":"send_admin_alert","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"sendAdminAlert","proto3Optional":true},{"name":"write_debug_info","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"writeDebugInfo","proto3Optional":true},{"name":"write_to_system_log","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"writeToSystemLog","proto3Optional":true},{"name":"debug_info_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"debugInfoType","proto3Optional":true},{"name":"mini_dump_directory","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"miniDumpDirectory","proto3Optional":true}],"oneofDecl":[{"name":"_auto_reboot"},{"name":"_debug_file_path"},{"name":"_kernel_dump_only"},{"name":"_name"},{"name":"_overwrite_existing_debug_file"},{"name":"_send_admin_alert"},{"name":"_write_debug_info"},{"name":"_write_to_system_log"},{"name":"_debug_info_type"},{"name":"_mini_dump_directory"}]},{"name":"Driver","field":[{"name":"win_sys","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSystemDriver","oneofIndex":0,"jsonName":"winSys"},{"name":"win_pnp","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPnpSignedDriver","oneofIndex":0,"jsonName":"winPnp"},{"name":"win_printer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPrinterDriver","oneofIndex":0,"jsonName":"winPrinter"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"description","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"},{"name":"_description"}]},{"name":"WindowsSystemDriver","field":[{"name":"accept_pause","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"desktopInteract","proto3Optional":true},{"name":"error_control","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"errorControl","proto3Optional":true},{"name":"exit_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"exitCode","proto3Optional":true},{"name":"path_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pathName","proto3Optional":true},{"name":"service_specific_exit_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"serviceSpecificExitCode","proto3Optional":true},{"name":"service_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"serviceType","proto3Optional":true},{"name":"started","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"started","proto3Optional":true},{"name":"start_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"startName","proto3Optional":true},{"name":"state","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"state","proto3Optional":true},{"name":"status","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"status","proto3Optional":true},{"name":"tag_id","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"tagId","proto3Optional":true},{"name":"name","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"name","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"description","proto3Optional":true},{"name":"caption","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"caption","proto3Optional":true},{"name":"display_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"displayName","proto3Optional":true}],"oneofDecl":[{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"},{"name":"_error_control"},{"name":"_exit_code"},{"name":"_path_name"},{"name":"_service_specific_exit_code"},{"name":"_service_type"},{"name":"_started"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_status"},{"name":"_tag_id"},{"name":"_name"},{"name":"_description"},{"name":"_caption"},{"name":"_display_name"}]},{"name":"WindowsPnpSignedDriver","field":[{"name":"compat_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"compatId","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"dev_loader","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"devLoader","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"friendly_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"friendlyName","proto3Optional":true},{"name":"driver_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"driverDate"},{"name":"driver_version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"hardware_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"infName","proto3Optional":true},{"name":"is_signed","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isSigned","proto3Optional":true},{"name":"location","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"location","proto3Optional":true},{"name":"pdo","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pdo","proto3Optional":true},{"name":"manufacturer","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"manufacturer","proto3Optional":true},{"name":"device_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"deviceName","proto3Optional":true},{"name":"device_class","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"deviceClass","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"description","proto3Optional":true},{"name":"signer","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"signer","proto3Optional":true},{"name":"driver_provider_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"driverProviderName","proto3Optional":true}],"oneofDecl":[{"name":"_compat_id"},{"name":"_device_id"},{"name":"_dev_loader"},{"name":"_driver_name"},{"name":"_friendly_name"},{"name":"_driver_version"},{"name":"_hardware_id"},{"name":"_inf_name"},{"name":"_is_signed"},{"name":"_location"},{"name":"_pdo"},{"name":"_manufacturer"},{"name":"_device_name"},{"name":"_device_class"},{"name":"_description"},{"name":"_signer"},{"name":"_driver_provider_name"}]},{"name":"WindowsPrinterDriver","field":[{"name":"config_file","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"configFile","proto3Optional":true},{"name":"data_file","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"dataFile","proto3Optional":true},{"name":"default_data_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"defaultDataType","proto3Optional":true},{"name":"driver_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverPath","proto3Optional":true},{"name":"file_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"filePath","proto3Optional":true},{"name":"help_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"helpFile","proto3Optional":true},{"name":"monitor_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"monitorName","proto3Optional":true},{"name":"oem_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"oemUrl","proto3Optional":true},{"name":"version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"version","proto3Optional":true},{"name":"driver_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"driverVersion","proto3Optional":true},{"name":"driver_date","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverDate","proto3Optional":true},{"name":"hardware_id","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_path","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infPath","proto3Optional":true},{"name":"printer_environment","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"printerEnvironment","proto3Optional":true},{"name":"print_processor","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"printProcessor","proto3Optional":true},{"name":"name","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"name","proto3Optional":true},{"name":"provider","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"provider","proto3Optional":true},{"name":"supported_platform","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportedPlatform","proto3Optional":true},{"name":"manufacturer","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_config_file"},{"name":"_data_file"},{"name":"_default_data_type"},{"name":"_driver_path"},{"name":"_file_path"},{"name":"_help_file"},{"name":"_monitor_name"},{"name":"_oem_url"},{"name":"_version"},{"name":"_driver_version"},{"name":"_driver_date"},{"name":"_hardware_id"},{"name":"_inf_path"},{"name":"_printer_environment"},{"name":"_print_processor"},{"name":"_name"},{"name":"_provider"},{"name":"_supported_platform"},{"name":"_manufacturer"}]},{"name":"SoundCard","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"type","proto3Optional":true},{"name":"subsystem_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"subsystemName","proto3Optional":true},{"name":"subsystem_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"parent","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"parent","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_type"},{"name":"_subsystem_name"},{"name":"_subsystem_manufacturer"},{"name":"_parent"}]},{"name":"GraphicsCard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"color_planes_count","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"colorPlanesCount","proto3Optional":true},{"name":"current_bits_per_pixel","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"currentBitsPerPixel","proto3Optional":true},{"name":"current_horizontal_resolution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"currentHorizontalResolution","proto3Optional":true},{"name":"current_number_of_colors","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"currentNumberOfColors","proto3Optional":true},{"name":"current_refresh_rate","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"currentRefreshRate","proto3Optional":true},{"name":"current_scan_mode","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"currentScanMode","proto3Optional":true},{"name":"current_vertical_resolution","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentVerticalResolution","proto3Optional":true},{"name":"device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"deviceId","proto3Optional":true},{"name":"device_specific_pens","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"driver_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverVersion","proto3Optional":true},{"name":"inf_filename","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"infFilename","proto3Optional":true},{"name":"inf_section","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infSection","proto3Optional":true},{"name":"installed_display_drivers","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"installedDisplayDrivers","proto3Optional":true},{"name":"is_monochrome","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"isMonochrome","proto3Optional":true},{"name":"manufacturer","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_refresh_rate","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"maxRefreshRate","proto3Optional":true},{"name":"memory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"memory","proto3Optional":true},{"name":"memory_type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":18,"jsonName":"memoryType","proto3Optional":true},{"name":"min_refresh_rate","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"minRefreshRate","proto3Optional":true},{"name":"pci_type","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"pciType","proto3Optional":true},{"name":"pnp_device_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"state","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"state","proto3Optional":true},{"name":"subsystem_manufacturer","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"subsystem_name","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"subsystemName","proto3Optional":true},{"name":"video_architecture","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"videoArchitecture","proto3Optional":true},{"name":"video_mode","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"videoMode","proto3Optional":true},{"name":"video_processor","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"videoProcessor","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_color_planes_count"},{"name":"_current_bits_per_pixel"},{"name":"_current_horizontal_resolution"},{"name":"_current_number_of_colors"},{"name":"_current_refresh_rate"},{"name":"_current_scan_mode"},{"name":"_current_vertical_resolution"},{"name":"_device_id"},{"name":"_device_specific_pens"},{"name":"_driver_version"},{"name":"_inf_filename"},{"name":"_inf_section"},{"name":"_installed_display_drivers"},{"name":"_is_monochrome"},{"name":"_manufacturer"},{"name":"_max_refresh_rate"},{"name":"_memory"},{"name":"_memory_type"},{"name":"_min_refresh_rate"},{"name":"_pci_type"},{"name":"_pnp_device_id"},{"name":"_state"},{"name":"_subsystem_manufacturer"},{"name":"_subsystem_name"},{"name":"_video_architecture"},{"name":"_video_mode"},{"name":"_video_processor"}]},{"name":"Bios","field":[{"name":"win","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsBios","oneofIndex":0,"jsonName":"win"},{"name":"linux","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxBios","oneofIndex":0,"jsonName":"linux"},{"name":"manufacturer","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"version","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"version","proto3Optional":true},{"name":"release_date","number":102,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":3,"jsonName":"releaseDate","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_manufacturer"},{"name":"_version"},{"name":"_release_date"}]},{"name":"WindowsBios","field":[{"name":"bios_characteristics","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"biosCharacteristics"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"current_language","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"currentLanguage","proto3Optional":true},{"name":"installable_languages","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"installableLanguages","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"name","proto3Optional":true},{"name":"primary_bios","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"primaryBios","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"serialNumber","proto3Optional":true},{"name":"smbios_bios_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"smbiosBiosVersion","proto3Optional":true},{"name":"smbios_major_version","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"smbiosMajorVersion","proto3Optional":true},{"name":"smbios_minor_version","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"smbiosMinorVersion","proto3Optional":true},{"name":"smbios_present","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"smbiosPresent","proto3Optional":true},{"name":"software_element_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"softwareElementId","proto3Optional":true},{"name":"software_element_state","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":13,"jsonName":"softwareElementState","proto3Optional":true},{"name":"status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"status","proto3Optional":true},{"name":"target_operating_system","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":15,"jsonName":"targetOperatingSystem","proto3Optional":true},{"name":"version","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"version","proto3Optional":true},{"name":"bios_version","number":20,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"biosVersion"}],"oneofDecl":[{"name":"_caption"},{"name":"_current_language"},{"name":"_installable_languages"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_primary_bios"},{"name":"_release_date"},{"name":"_serial_number"},{"name":"_smbios_bios_version"},{"name":"_smbios_major_version"},{"name":"_smbios_minor_version"},{"name":"_smbios_present"},{"name":"_software_element_id"},{"name":"_software_element_state"},{"name":"_status"},{"name":"_target_operating_system"},{"name":"_version"}]},{"name":"LinuxBios","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"address","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"address","proto3Optional":true},{"name":"vendor","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"vendor","proto3Optional":true},{"name":"runtime_size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"runtimeSize","proto3Optional":true},{"name":"rom_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"romSize","proto3Optional":true},{"name":"release_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_address"},{"name":"_vendor"},{"name":"_runtime_size"},{"name":"_rom_size"},{"name":"_release_date"}]},{"name":"ComputerBattery","field":[{"name":"win_battery","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsComputerBattery","oneofIndex":0,"jsonName":"winBattery"},{"name":"win_portable","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPortableBattery","oneofIndex":0,"jsonName":"winPortable"},{"name":"mac_battery","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacComputerBattery","oneofIndex":0,"jsonName":"macBattery"}],"oneofDecl":[{"name":"spec"}]},{"name":"WindowsComputerBattery","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"battery_status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"batteryStatus","proto3Optional":true},{"name":"chemistry","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"designCapacity","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"name","proto3Optional":true},{"name":"power_management_capabilities","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"powerManagementCapabilities"},{"name":"power_management_supported","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"powerManagementSupported","proto3Optional":true},{"name":"smart_battery_version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"smartBatteryVersion","proto3Optional":true},{"name":"status","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"status","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_battery_status"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_device_id"},{"name":"_name"},{"name":"_power_management_supported"},{"name":"_smart_battery_version"},{"name":"_status"}]},{"name":"WindowsPortableBattery","field":[{"name":"capacity_multiplier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"capacityMultiplier","proto3Optional":true},{"name":"chemistry","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"designCapacity","proto3Optional":true},{"name":"design_voltage","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"designVoltage","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"location","proto3Optional":true},{"name":"manufacture_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufactureDate","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_battery_error","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxBatteryError","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"smart_battery_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"smartBatteryVersion","proto3Optional":true}],"oneofDecl":[{"name":"_capacity_multiplier"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_design_voltage"},{"name":"_device_id"},{"name":"_location"},{"name":"_manufacture_date"},{"name":"_manufacturer"},{"name":"_max_battery_error"},{"name":"_name"},{"name":"_smart_battery_version"}]},{"name":"MacComputerBattery","field":[{"name":"disk_sleep_timer","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"diskSleepTimer","proto3Optional":true},{"name":"display_sleep_timer","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"displaySleepTimer","proto3Optional":true},{"name":"hibernate_mode","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"hibernateMode","proto3Optional":true},{"name":"prioritize_network_reachability_over_sleep","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"prioritizeNetworkReachabilityOverSleep","proto3Optional":true},{"name":"sleep_on_power_button","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"sleepOnPowerButton","proto3Optional":true},{"name":"system_sleep_timer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"systemSleepTimer","proto3Optional":true},{"name":"wake_on_lan","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"wakeOnLan","proto3Optional":true},{"name":"current_power_source","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentPowerSource","proto3Optional":true},{"name":"high_power_mode","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"highPowerMode","proto3Optional":true},{"name":"low_power_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"lowPowerMode","proto3Optional":true},{"name":"reduce_brightness","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":10,"jsonName":"reduceBrightness","proto3Optional":true},{"name":"is_at_warn_level","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"isAtWarnLevel","proto3Optional":true},{"name":"is_fully_charged","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"isFullyCharged","proto3Optional":true},{"name":"is_charging","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"isCharging","proto3Optional":true},{"name":"state_of_charge","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"stateOfCharge","proto3Optional":true},{"name":"cycle_count","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"cycleCount","proto3Optional":true},{"name":"health_status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"healthStatus","proto3Optional":true},{"name":"health_status_maximum_capacity","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"healthStatusMaximumCapacity","proto3Optional":true},{"name":"pcb_lot_code","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pcbLotCode","proto3Optional":true},{"name":"pack_lot_code","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"packLotCode","proto3Optional":true},{"name":"cell_revision","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"cellRevision","proto3Optional":true},{"name":"device_name","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"deviceName","proto3Optional":true},{"name":"firmware_version","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"hardware_revision","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"hardwareRevision","proto3Optional":true},{"name":"serial_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"serialNumber","proto3Optional":true},{"name":"battery_charger_connected","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"batteryChargerConnected","proto3Optional":true},{"name":"battery_is_charging","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":26,"jsonName":"batteryIsCharging","proto3Optional":true}],"oneofDecl":[{"name":"_disk_sleep_timer"},{"name":"_display_sleep_timer"},{"name":"_hibernate_mode"},{"name":"_prioritize_network_reachability_over_sleep"},{"name":"_sleep_on_power_button"},{"name":"_system_sleep_timer"},{"name":"_wake_on_lan"},{"name":"_current_power_source"},{"name":"_high_power_mode"},{"name":"_low_power_mode"},{"name":"_reduce_brightness"},{"name":"_is_at_warn_level"},{"name":"_is_fully_charged"},{"name":"_is_charging"},{"name":"_state_of_charge"},{"name":"_cycle_count"},{"name":"_health_status"},{"name":"_health_status_maximum_capacity"},{"name":"_pcb_lot_code"},{"name":"_pack_lot_code"},{"name":"_cell_revision"},{"name":"_device_name"},{"name":"_firmware_version"},{"name":"_hardware_revision"},{"name":"_serial_number"},{"name":"_battery_charger_connected"},{"name":"_battery_is_charging"}]},{"name":"OpticalDrive","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"status","proto3Optional":true},{"name":"bus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bus","proto3Optional":true},{"name":"capabilities","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"cache_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"cacheSize","proto3Optional":true},{"name":"burn_support","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"burnSupport","proto3Optional":true},{"name":"cd_write","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"cdWrite","proto3Optional":true},{"name":"dvd_write","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dvdWrite","proto3Optional":true},{"name":"read_dvd","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"readDvd","proto3Optional":true},{"name":"drive_path","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"drivePath","proto3Optional":true},{"name":"firmware_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"connection","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"connection","proto3Optional":true},{"name":"is_underrun_protection_enabled","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"isUnderrunProtectionEnabled","proto3Optional":true},{"name":"manufacturer","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"manufacturer","proto3Optional":true},{"name":"mount_point","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"mountPoint","proto3Optional":true},{"name":"write_strategies","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"writeStrategies","proto3Optional":true},{"name":"scsi_bus","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"scsiBus","proto3Optional":true},{"name":"scsi_logical_unit","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"scsiLogicalUnit","proto3Optional":true},{"name":"scsi_port","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"scsiPort","proto3Optional":true},{"name":"scsi_target_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"scsiTargetId","proto3Optional":true},{"name":"media_burn_information","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"mediaBurnInformation","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_status"},{"name":"_bus"},{"name":"_cache_size"},{"name":"_burn_support"},{"name":"_cd_write"},{"name":"_dvd_write"},{"name":"_read_dvd"},{"name":"_drive_path"},{"name":"_firmware_version"},{"name":"_connection"},{"name":"_is_underrun_protection_enabled"},{"name":"_manufacturer"},{"name":"_mount_point"},{"name":"_write_strategies"},{"name":"_scsi_bus"},{"name":"_scsi_logical_unit"},{"name":"_scsi_port"},{"name":"_scsi_target_id"},{"name":"_media_burn_information"}]},{"name":"Motherboard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"config_options","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"configOptions"},{"name":"is_hosting_board","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isHostingBoard","proto3Optional":true},{"name":"is_powered_on","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isPoweredOn","proto3Optional":true},{"name":"location","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"serialNumber","proto3Optional":true},{"name":"tag","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tag","proto3Optional":true},{"name":"type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"type","proto3Optional":true},{"name":"version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true},{"name":"device","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MotherboardDevice","jsonName":"device"}],"oneofDecl":[{"name":"_is_hosting_board"},{"name":"_is_powered_on"},{"name":"_location"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_tag"},{"name":"_type"},{"name":"_version"}]},{"name":"MotherboardDevice","field":[{"name":"description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"enabled","proto3Optional":true},{"name":"tag","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"tag","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_description"},{"name":"_enabled"},{"name":"_tag"},{"name":"_type"}]},{"name":"Memory","field":[{"name":"installed_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"installedSize"},{"name":"physical_memory","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PhysicalMemory","jsonName":"physicalMemory"},{"name":"memory_array","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MemoryArray","jsonName":"memoryArray"}]},{"name":"PhysicalMemory","field":[{"name":"size","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"size","proto3Optional":true},{"name":"bank_locator","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bankLocator","proto3Optional":true},{"name":"configured_clock_speed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"configuredClockSpeed","proto3Optional":true},{"name":"configured_voltage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"configuredVoltage","proto3Optional":true},{"name":"data_width","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_locator","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"deviceLocator","proto3Optional":true},{"name":"form_factor","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"formFactor","proto3Optional":true},{"name":"interleave_data_depth","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"interleaveDataDepth","proto3Optional":true},{"name":"interleave_position","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"interleavePosition","proto3Optional":true},{"name":"manufacturer","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"part_number","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"partNumber","proto3Optional":true},{"name":"position_in_row","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"positionInRow","proto3Optional":true},{"name":"serial_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"serialNumber","proto3Optional":true},{"name":"set","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"set","proto3Optional":true},{"name":"sku","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"sku","proto3Optional":true},{"name":"speed","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"speed","proto3Optional":true},{"name":"state","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"state","proto3Optional":true},{"name":"total_width","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"totalWidth","proto3Optional":true},{"name":"type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":19,"jsonName":"type","proto3Optional":true},{"name":"type_detail","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":20,"jsonName":"typeDetail","proto3Optional":true}],"oneofDecl":[{"name":"_size"},{"name":"_bank_locator"},{"name":"_configured_clock_speed"},{"name":"_configured_voltage"},{"name":"_data_width"},{"name":"_device_locator"},{"name":"_form_factor"},{"name":"_interleave_data_depth"},{"name":"_interleave_position"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_part_number"},{"name":"_position_in_row"},{"name":"_serial_number"},{"name":"_set"},{"name":"_sku"},{"name":"_speed"},{"name":"_state"},{"name":"_total_width"},{"name":"_type"},{"name":"_type_detail"}]},{"name":"MemoryArray","field":[{"name":"max_capacity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"maxCapacity","proto3Optional":true},{"name":"location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"location","proto3Optional":true},{"name":"memory_devices","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"memoryDevices","proto3Optional":true},{"name":"memory_error_correction","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"memoryErrorCorrection","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"tag","proto3Optional":true},{"name":"use","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"use","proto3Optional":true}],"oneofDecl":[{"name":"_max_capacity"},{"name":"_location"},{"name":"_memory_devices"},{"name":"_memory_error_correction"},{"name":"_tag"},{"name":"_use"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"model_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"modelName"},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":4,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_monitor","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","oneofIndex":5,"jsonName":"catalogMonitor","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"},{"name":"_catalog_brand"},{"name":"_catalog_monitor"}]},{"name":"WindowsMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"AntivirusSoftware","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"guid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"guid","proto3Optional":true},{"name":"enabled","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"enabled","proto3Optional":true},{"name":"up_to_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"upToDate","proto3Optional":true},{"name":"software","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":4,"jsonName":"software","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_guid"},{"name":"_enabled"},{"name":"_up_to_date"},{"name":"_software"}]},{"name":"IpInfo","field":[{"name":"address","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"address"},{"name":"hostname","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"hostname","proto3Optional":true},{"name":"timezone","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"timezone","proto3Optional":true},{"name":"continent_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"continentCode","proto3Optional":true},{"name":"country_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"countryCode","proto3Optional":true},{"name":"region_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"regionCode","proto3Optional":true},{"name":"country_city","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"countryCity","proto3Optional":true},{"name":"isp","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"isp","proto3Optional":true},{"name":"organization","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"organization","proto3Optional":true}],"oneofDecl":[{"name":"_hostname"},{"name":"_timezone"},{"name":"_continent_code"},{"name":"_country_code"},{"name":"_region_code"},{"name":"_country_city"},{"name":"_isp"},{"name":"_organization"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"nreHash","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":19,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_software","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":20,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"catalog_parent","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":21,"jsonName":"catalogParent","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_raw_hash"},{"name":"_nre_hash"},{"name":"_catalog_brand"},{"name":"_catalog_software"},{"name":"_catalog_parent"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_tiktok_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true},{"name":"CatalogLookup","inputType":".com.lansweeper.dp.outbound.v1.CatalogLookupRequest","outputType":".com.lansweeper.dp.outbound.v1.CatalogLookupResponse","options":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,1496,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,33,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[38,0,41,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[38,8,24]},{"path":[4,0,2,0],"span":[39,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[39,2,12]},{"path":[4,0,2,0,1],"span":[39,13,24]},{"path":[4,0,2,0,3],"span":[39,27,28]},{"path":[4,1],"span":[43,0,49,1]},{"path":[4,1,1],"span":[43,8,25]},{"path":[4,1,2,0],"span":[44,2,19]},{"path":[4,1,2,0,5],"span":[44,2,6]},{"path":[4,1,2,0,1],"span":[44,7,14]},{"path":[4,1,2,0,3],"span":[44,17,18]},{"path":[4,1,2,1],"span":[45,2,40]},{"path":[4,1,2,1,4],"span":[45,2,10]},{"path":[4,1,2,1,5],"span":[45,11,17]},{"path":[4,1,2,1,1],"span":[45,18,35]},{"path":[4,1,2,1,3],"span":[45,38,39]},{"path":[4,1,2,2],"span":[47,2,29]},{"path":[4,1,2,2,4],"span":[47,2,10]},{"path":[4,1,2,2,6],"span":[47,11,17]},{"path":[4,1,2,2,1],"span":[47,18,24]},{"path":[4,1,2,2,3],"span":[47,27,28]},{"path":[4,1,2,3],"span":[48,2,30]},{"path":[4,1,2,3,4],"span":[48,2,10]},{"path":[4,1,2,3,6],"span":[48,11,17]},{"path":[4,1,2,3,1],"span":[48,18,25]},{"path":[4,1,2,3,3],"span":[48,28,29]},{"path":[4,2],"span":[51,0,53,1]},{"path":[4,2,1],"span":[51,8,25]},{"path":[4,2,2,0],"span":[52,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[52,2,12]},{"path":[4,2,2,0,1],"span":[52,13,19]},{"path":[4,2,2,0,3],"span":[52,22,23]},{"path":[4,3],"span":[55,0,58,1]},{"path":[4,3,1],"span":[55,8,26]},{"path":[4,3,2,0],"span":[56,2,20]},{"path":[4,3,2,0,6],"span":[56,2,8]},{"path":[4,3,2,0,1],"span":[56,9,15]},{"path":[4,3,2,0,3],"span":[56,18,19]},{"path":[4,3,2,1],"span":[57,2,30]},{"path":[4,3,2,1,4],"span":[57,2,10]},{"path":[4,3,2,1,6],"span":[57,11,17]},{"path":[4,3,2,1,1],"span":[57,18,25]},{"path":[4,3,2,1,3],"span":[57,28,29]},{"path":[4,4],"span":[60,0,68,1]},{"path":[4,4,1],"span":[60,8,28]},{"path":[4,4,2,0],"span":[61,2,30]},{"path":[4,4,2,0,4],"span":[61,2,10]},{"path":[4,4,2,0,5],"span":[61,11,16]},{"path":[4,4,2,0,1],"span":[61,17,25]},{"path":[4,4,2,0,3],"span":[61,28,29]},{"path":[4,4,2,1],"span":[62,2,30]},{"path":[4,4,2,1,4],"span":[62,2,10]},{"path":[4,4,2,1,5],"span":[62,11,16]},{"path":[4,4,2,1,1],"span":[62,17,25]},{"path":[4,4,2,1,3],"span":[62,28,29]},{"path":[4,4,2,2],"span":[63,2,27]},{"path":[4,4,2,2,4],"span":[63,2,10]},{"path":[4,4,2,2,5],"span":[63,11,16]},{"path":[4,4,2,2,1],"span":[63,17,22]},{"path":[4,4,2,2,3],"span":[63,25,26]},{"path":[4,4,2,3],"span":[64,2,27]},{"path":[4,4,2,3,4],"span":[64,2,10]},{"path":[4,4,2,3,5],"span":[64,11,16]},{"path":[4,4,2,3,1],"span":[64,17,22]},{"path":[4,4,2,3,3],"span":[64,25,26]},{"path":[4,4,2,4],"span":[65,2,32]},{"path":[4,4,2,4,4],"span":[65,2,10]},{"path":[4,4,2,4,5],"span":[65,11,16]},{"path":[4,4,2,4,1],"span":[65,17,27]},{"path":[4,4,2,4,3],"span":[65,30,31]},{"path":[4,4,2,5],"span":[67,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[67,2,10]},{"path":[4,4,2,5,5],"span":[67,11,15]},{"path":[4,4,2,5,1],"span":[67,16,30]},{"path":[4,4,2,5,3],"span":[67,33,35]},{"path":[4,5],"span":[70,0,76,1]},{"path":[4,5,1],"span":[70,8,29]},{"path":[4,5,2,0],"span":[71,2,34]},{"path":[4,5,2,0,4],"span":[71,2,10]},{"path":[4,5,2,0,6],"span":[71,11,23]},{"path":[4,5,2,0,1],"span":[71,24,29]},{"path":[4,5,2,0,3],"span":[71,32,33]},{"path":[4,5,2,1],"span":[72,2,34]},{"path":[4,5,2,1,4],"span":[72,2,10]},{"path":[4,5,2,1,6],"span":[72,11,23]},{"path":[4,5,2,1,1],"span":[72,24,29]},{"path":[4,5,2,1,3],"span":[72,32,33]},{"path":[4,5,2,2],"span":[73,2,28]},{"path":[4,5,2,2,4],"span":[73,2,10]},{"path":[4,5,2,2,6],"span":[73,11,20]},{"path":[4,5,2,2,1],"span":[73,21,23]},{"path":[4,5,2,2,3],"span":[73,26,27]},{"path":[4,5,2,3],"span":[74,2,34]},{"path":[4,5,2,3,4],"span":[74,2,10]},{"path":[4,5,2,3,6],"span":[74,11,26]},{"path":[4,5,2,3,1],"span":[74,27,29]},{"path":[4,5,2,3,3],"span":[74,32,33]},{"path":[4,5,2,4],"span":[75,2,38]},{"path":[4,5,2,4,4],"span":[75,2,10]},{"path":[4,5,2,4,6],"span":[75,11,25]},{"path":[4,5,2,4,1],"span":[75,26,33]},{"path":[4,5,2,4,3],"span":[75,36,37]},{"path":[4,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[99,0,177,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[99,8,13]},{"path":[4,8,2,0],"span":[101,2,20]},{"path":[4,8,2,0,6],"span":[101,2,12]},{"path":[4,8,2,0,1],"span":[101,13,15]},{"path":[4,8,2,0,3],"span":[101,18,19]},{"path":[4,8,2,1],"span":[103,2,44]},{"path":[4,8,2,1,6],"span":[103,2,27]},{"path":[4,8,2,1,1],"span":[103,28,39]},{"path":[4,8,2,1,3],"span":[103,42,43]},{"path":[4,8,2,2],"span":[104,2,43]},{"path":[4,8,2,2,6],"span":[104,2,27]},{"path":[4,8,2,2,1],"span":[104,28,38]},{"path":[4,8,2,2,3],"span":[104,41,42]},{"path":[4,8,2,3],"span":[105,2,45]},{"path":[4,8,2,3,6],"span":[105,2,27]},{"path":[4,8,2,3,1],"span":[105,28,40]},{"path":[4,8,2,3,3],"span":[105,43,44]},{"path":[4,8,2,4],"span":[106,2,46]},{"path":[4,8,2,4,6],"span":[106,2,27]},{"path":[4,8,2,4,1],"span":[106,28,41]},{"path":[4,8,2,4,3],"span":[106,44,45]},{"path":[4,8,2,5],"span":[115,2,34],"leadingComments":"\n This is unique and source of UUID asset_id. Kept also in verbose key format for debug/future use.\n The key is not globally unique across sites, but it's made up with strongest attributes of the asset.\n Like e.g.: brand/model/serial of a Windows PC.\n Like e.g.: MAC address of CDR devices (if present).\n"},{"path":[4,8,2,5,4],"span":[115,2,10]},{"path":[4,8,2,5,5],"span":[115,11,17]},{"path":[4,8,2,5,1],"span":[115,18,28]},{"path":[4,8,2,5,3],"span":[115,31,33]},{"path":[4,8,2,6],"span":[117,2,37]},{"path":[4,8,2,6,4],"span":[117,2,10]},{"path":[4,8,2,6,6],"span":[117,11,20]},{"path":[4,8,2,6,1],"span":[117,21,31]},{"path":[4,8,2,6,3],"span":[117,34,36]},{"path":[4,8,2,7],"span":[119,2,42],"trailingComments":" last synced source name and version\n"},{"path":[4,8,2,7,4],"span":[119,2,10]},{"path":[4,8,2,7,5],"span":[119,11,17]},{"path":[4,8,2,7,1],"span":[119,18,36]},{"path":[4,8,2,7,3],"span":[119,39,41]},{"path":[4,8,2,8],"span":[121,2,24]},{"path":[4,8,2,8,4],"span":[121,2,10]},{"path":[4,8,2,8,6],"span":[121,11,14]},{"path":[4,8,2,8,1],"span":[121,15,18]},{"path":[4,8,2,8,3],"span":[121,21,23]},{"path":[4,8,2,9],"span":[122,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,9,4],"span":[122,2,10]},{"path":[4,8,2,9,6],"span":[122,11,19]},{"path":[4,8,2,9,1],"span":[122,20,28]},{"path":[4,8,2,9,3],"span":[122,31,33]},{"path":[4,8,2,10],"span":[124,2,22]},{"path":[4,8,2,10,6],"span":[124,2,12]},{"path":[4,8,2,10,1],"span":[124,13,17]},{"path":[4,8,2,10,3],"span":[124,20,21]},{"path":[4,8,2,11],"span":[126,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,11,4],"span":[126,2,10]},{"path":[4,8,2,11,6],"span":[126,11,17]},{"path":[4,8,2,11,1],"span":[126,18,29]},{"path":[4,8,2,11,3],"span":[126,32,34]},{"path":[4,8,2,12],"span":[128,2,31]},{"path":[4,8,2,12,4],"span":[128,2,10]},{"path":[4,8,2,12,6],"span":[128,11,23]},{"path":[4,8,2,12,1],"span":[128,24,26]},{"path":[4,8,2,12,3],"span":[128,29,30]},{"path":[4,8,2,13],"span":[129,2,34]},{"path":[4,8,2,13,4],"span":[129,2,10]},{"path":[4,8,2,13,6],"span":[129,11,26]},{"path":[4,8,2,13,1],"span":[129,27,29]},{"path":[4,8,2,13,3],"span":[129,32,33]},{"path":[4,8,2,14],"span":[131,2,52]},{"path":[4,8,2,14,4],"span":[131,2,10]},{"path":[4,8,2,14,6],"span":[131,11,28]},{"path":[4,8,2,14,1],"span":[131,29,47]},{"path":[4,8,2,14,3],"span":[131,50,51]},{"path":[4,8,2,15],"span":[132,2,44]},{"path":[4,8,2,15,4],"span":[132,2,10]},{"path":[4,8,2,15,6],"span":[132,11,28]},{"path":[4,8,2,15,1],"span":[132,29,38]},{"path":[4,8,2,15,3],"span":[132,41,43]},{"path":[4,8,2,16],"span":[134,2,51]},{"path":[4,8,2,16,4],"span":[134,2,10]},{"path":[4,8,2,16,6],"span":[134,11,27]},{"path":[4,8,2,16,1],"span":[134,28,45]},{"path":[4,8,2,16,3],"span":[134,48,50]},{"path":[4,8,2,17],"span":[136,2,53]},{"path":[4,8,2,17,4],"span":[136,2,10]},{"path":[4,8,2,17,6],"span":[136,11,28]},{"path":[4,8,2,17,1],"span":[136,29,47]},{"path":[4,8,2,17,3],"span":[136,50,52]},{"path":[4,8,2,18],"span":[138,2,46]},{"path":[4,8,2,18,4],"span":[138,2,10]},{"path":[4,8,2,18,6],"span":[138,11,31]},{"path":[4,8,2,18,1],"span":[138,32,40]},{"path":[4,8,2,18,3],"span":[138,43,45]},{"path":[4,8,2,19],"span":[139,2,50]},{"path":[4,8,2,19,4],"span":[139,2,10]},{"path":[4,8,2,19,6],"span":[139,11,33]},{"path":[4,8,2,19,1],"span":[139,34,44]},{"path":[4,8,2,19,3],"span":[139,47,49]},{"path":[4,8,2,20],"span":[140,2,52]},{"path":[4,8,2,20,4],"span":[140,2,10]},{"path":[4,8,2,20,6],"span":[140,11,34]},{"path":[4,8,2,20,1],"span":[140,35,46]},{"path":[4,8,2,20,3],"span":[140,49,51]},{"path":[4,8,2,21],"span":[141,2,50]},{"path":[4,8,2,21,4],"span":[141,2,10]},{"path":[4,8,2,21,6],"span":[141,11,33]},{"path":[4,8,2,21,1],"span":[141,34,44]},{"path":[4,8,2,21,3],"span":[141,47,49]},{"path":[4,8,2,22],"span":[143,2,36]},{"path":[4,8,2,22,4],"span":[143,2,10]},{"path":[4,8,2,22,6],"span":[143,11,20]},{"path":[4,8,2,22,1],"span":[143,21,30]},{"path":[4,8,2,22,3],"span":[143,33,35]},{"path":[4,8,2,23],"span":[144,2,32]},{"path":[4,8,2,23,4],"span":[144,2,10]},{"path":[4,8,2,23,6],"span":[144,11,18]},{"path":[4,8,2,23,1],"span":[144,19,26]},{"path":[4,8,2,23,3],"span":[144,29,31]},{"path":[4,8,2,24],"span":[145,2,30]},{"path":[4,8,2,24,4],"span":[145,2,10]},{"path":[4,8,2,24,6],"span":[145,11,17]},{"path":[4,8,2,24,1],"span":[145,18,24]},{"path":[4,8,2,24,3],"span":[145,27,29]},{"path":[4,8,2,25],"span":[146,2,40]},{"path":[4,8,2,25,4],"span":[146,2,10]},{"path":[4,8,2,25,6],"span":[146,11,22]},{"path":[4,8,2,25,1],"span":[146,23,34]},{"path":[4,8,2,25,3],"span":[146,37,39]},{"path":[4,8,2,26],"span":[147,2,26]},{"path":[4,8,2,26,4],"span":[147,2,10]},{"path":[4,8,2,26,6],"span":[147,11,15]},{"path":[4,8,2,26,1],"span":[147,16,20]},{"path":[4,8,2,26,3],"span":[147,23,25]},{"path":[4,8,2,27],"span":[148,2,49]},{"path":[4,8,2,27,4],"span":[148,2,10]},{"path":[4,8,2,27,6],"span":[148,11,26]},{"path":[4,8,2,27,1],"span":[148,27,43]},{"path":[4,8,2,27,3],"span":[148,46,48]},{"path":[4,8,2,28],"span":[149,2,43]},{"path":[4,8,2,28,4],"span":[149,2,10]},{"path":[4,8,2,28,6],"span":[149,11,23]},{"path":[4,8,2,28,1],"span":[149,24,37]},{"path":[4,8,2,28,3],"span":[149,40,42]},{"path":[4,8,2,29],"span":[150,2,37]},{"path":[4,8,2,29,4],"span":[150,2,10]},{"path":[4,8,2,29,6],"span":[150,11,20]},{"path":[4,8,2,29,1],"span":[150,21,31]},{"path":[4,8,2,29,3],"span":[150,34,36]},{"path":[4,8,2,30],"span":[151,2,41]},{"path":[4,8,2,30,4],"span":[151,2,10]},{"path":[4,8,2,30,6],"span":[151,11,22]},{"path":[4,8,2,30,1],"span":[151,23,35]},{"path":[4,8,2,30,3],"span":[151,38,40]},{"path":[4,8,2,31],"span":[152,2,45]},{"path":[4,8,2,31,4],"span":[152,2,10]},{"path":[4,8,2,31,6],"span":[152,11,24]},{"path":[4,8,2,31,1],"span":[152,25,39]},{"path":[4,8,2,31,3],"span":[152,42,44]},{"path":[4,8,2,32],"span":[153,2,43]},{"path":[4,8,2,32,4],"span":[153,2,10]},{"path":[4,8,2,32,6],"span":[153,11,23]},{"path":[4,8,2,32,1],"span":[153,24,37]},{"path":[4,8,2,32,3],"span":[153,40,42]},{"path":[4,8,2,33],"span":[154,2,37]},{"path":[4,8,2,33,4],"span":[154,2,10]},{"path":[4,8,2,33,6],"span":[154,11,20]},{"path":[4,8,2,33,1],"span":[154,21,31]},{"path":[4,8,2,33,3],"span":[154,34,36]},{"path":[4,8,2,34],"span":[155,2,34]},{"path":[4,8,2,34,4],"span":[155,2,10]},{"path":[4,8,2,34,6],"span":[155,11,19]},{"path":[4,8,2,34,1],"span":[155,20,28]},{"path":[4,8,2,34,3],"span":[155,31,33]},{"path":[4,8,2,35],"span":[156,2,47]},{"path":[4,8,2,35,4],"span":[156,2,10]},{"path":[4,8,2,35,6],"span":[156,11,25]},{"path":[4,8,2,35,1],"span":[156,26,41]},{"path":[4,8,2,35,3],"span":[156,44,46]},{"path":[4,8,2,36],"span":[158,2,48]},{"path":[4,8,2,36,4],"span":[158,2,10]},{"path":[4,8,2,36,6],"span":[158,11,25]},{"path":[4,8,2,36,1],"span":[158,26,42]},{"path":[4,8,2,36,3],"span":[158,45,47]},{"path":[4,8,2,37],"span":[159,2,39]},{"path":[4,8,2,37,4],"span":[159,2,10]},{"path":[4,8,2,37,6],"span":[159,11,21]},{"path":[4,8,2,37,1],"span":[159,22,33]},{"path":[4,8,2,37,3],"span":[159,36,38]},{"path":[4,8,2,38],"span":[160,2,30]},{"path":[4,8,2,38,4],"span":[160,2,10]},{"path":[4,8,2,38,6],"span":[160,11,17]},{"path":[4,8,2,38,1],"span":[160,18,24]},{"path":[4,8,2,38,3],"span":[160,27,29]},{"path":[4,8,2,39],"span":[161,2,47]},{"path":[4,8,2,39,4],"span":[161,2,10]},{"path":[4,8,2,39,6],"span":[161,11,25]},{"path":[4,8,2,39,1],"span":[161,26,41]},{"path":[4,8,2,39,3],"span":[161,44,46]},{"path":[4,8,2,40],"span":[162,2,47]},{"path":[4,8,2,40,4],"span":[162,2,10]},{"path":[4,8,2,40,6],"span":[162,11,25]},{"path":[4,8,2,40,1],"span":[162,26,41]},{"path":[4,8,2,40,3],"span":[162,44,46]},{"path":[4,8,2,41],"span":[164,2,35]},{"path":[4,8,2,41,4],"span":[164,2,10]},{"path":[4,8,2,41,6],"span":[164,11,19]},{"path":[4,8,2,41,1],"span":[164,20,29]},{"path":[4,8,2,41,3],"span":[164,32,34]},{"path":[4,8,2,42],"span":[166,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,42,4],"span":[166,2,10]},{"path":[4,8,2,42,6],"span":[166,11,19]},{"path":[4,8,2,42,1],"span":[166,20,29]},{"path":[4,8,2,42,3],"span":[166,32,34]},{"path":[4,8,2,43],"span":[168,2,34]},{"path":[4,8,2,43,4],"span":[168,2,10]},{"path":[4,8,2,43,6],"span":[168,11,22]},{"path":[4,8,2,43,1],"span":[168,23,28]},{"path":[4,8,2,43,3],"span":[168,31,33]},{"path":[4,9],"span":[195,0,198,1],"leadingComments":"\n A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.\n It is used to associate metadata or additional information with an entity or data element.\n The key represents the identifier or name of the tag, while the value contains the associated data or information.\n The key serves as a unique label or reference that can be used to retrieve or manipulate the value associated with it.\n In this context, the key can be thought of as a variable name or a dictionary key, and the value can be any data type or object.\n\n Among other things we also use this to mark the Source.\n * E.g.: Source: LS/IT/CDR\n * E.g.: Source: LS/IT/Scan-WMI\n * E.g.: Source: LS/IT/Scan-MAC\n * E.g.: Source: LS/IT/Scan-Linux\n * E.g.: Source: LS/IT/OT (OT like this?)\n * E.g.: Source: LS/CDK (cloud discovery?)\n * E.g.: Source: LS/DataCore (reconciliation)\n"},{"path":[4,9,1],"span":[195,8,11]},{"path":[4,9,2,0],"span":[196,2,17]},{"path":[4,9,2,0,5],"span":[196,2,8]},{"path":[4,9,2,0,1],"span":[196,9,12]},{"path":[4,9,2,0,3],"span":[196,15,16]},{"path":[4,9,2,1],"span":[197,2,28]},{"path":[4,9,2,1,4],"span":[197,2,10]},{"path":[4,9,2,1,5],"span":[197,11,17]},{"path":[4,9,2,1,1],"span":[197,18,23]},{"path":[4,9,2,1,3],"span":[197,26,27]},{"path":[4,10],"span":[205,0,212,1],"leadingComments":"\n A relation between two entities refers to the connection, association, or interaction that exists between them.\n It signifies the way in which these entities are related or linked to each other based on certain characteristics,\n attributes, behaviors, dependencies, or roles they share.\n"},{"path":[4,10,1],"span":[205,8,16]},{"path":[4,10,2,0],"span":[206,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[206,2,10]},{"path":[4,10,2,0,6],"span":[206,11,21]},{"path":[4,10,2,0,1],"span":[206,22,26]},{"path":[4,10,2,0,3],"span":[206,29,30]},{"path":[4,10,2,1],"span":[207,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[207,2,10]},{"path":[4,10,2,1,6],"span":[207,11,21]},{"path":[4,10,2,1,1],"span":[207,22,24]},{"path":[4,10,2,1,3],"span":[207,27,28]},{"path":[4,10,2,2],"span":[208,2,38]},{"path":[4,10,2,2,6],"span":[208,2,27]},{"path":[4,10,2,2,1],"span":[208,28,33]},{"path":[4,10,2,2,3],"span":[208,36,37]},{"path":[4,10,2,3],"span":[209,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,10,2,3,4],"span":[209,2,10]},{"path":[4,10,2,3,6],"span":[209,11,36]},{"path":[4,10,2,3,1],"span":[209,37,40]},{"path":[4,10,2,3,3],"span":[209,43,44]},{"path":[4,10,2,4],"span":[210,2,18]},{"path":[4,10,2,4,5],"span":[210,2,8]},{"path":[4,10,2,4,1],"span":[210,9,13]},{"path":[4,10,2,4,3],"span":[210,16,17]},{"path":[4,10,2,5],"span":[211,2,23]},{"path":[4,10,2,5,4],"span":[211,2,10]},{"path":[4,10,2,5,6],"span":[211,11,14]},{"path":[4,10,2,5,1],"span":[211,15,18]},{"path":[4,10,2,5,3],"span":[211,21,22]},{"path":[4,11],"span":[222,0,224,1],"leadingComments":"\n Cloud entity coming from CDK scanner.\n This could be extended later on to become more than a carrier of opaque info.\n I.e. the any object contains objects as defined in discovery_cloud.proto\n Only objects needing to be mapped into common/core asset fields are handled\n the rest is fast-forwarded ahead to the chain to allow us to avoid useless\n early heavy mapping and post-pone it only where/when it's needed.\n"},{"path":[4,11,1],"span":[222,8,19]},{"path":[4,11,2,0],"span":[223,2,31]},{"path":[4,11,2,0,6],"span":[223,2,21]},{"path":[4,11,2,0,1],"span":[223,22,26]},{"path":[4,11,2,0,3],"span":[223,29,30]},{"path":[4,12],"span":[234,0,246,1],"leadingComments":"\n OT module/card specific info.\n Information about belonging rack and:\n - if it's main module, reference to all sub-modules\n - if it's sub-module, reference to parent main\n HW info: in HW standard section.\n OS info: in OS standard section.\n"},{"path":[4,12,1],"span":[234,8,16]},{"path":[4,12,2,0],"span":[235,2,37]},{"path":[4,12,2,0,4],"span":[235,2,10]},{"path":[4,12,2,0,5],"span":[235,11,17]},{"path":[4,12,2,0,1],"span":[235,18,32]},{"path":[4,12,2,0,3],"span":[235,35,36]},{"path":[4,12,2,1],"span":[236,2,27]},{"path":[4,12,2,1,4],"span":[236,2,10]},{"path":[4,12,2,1,6],"span":[236,11,17]},{"path":[4,12,2,1,1],"span":[236,18,22]},{"path":[4,12,2,1,3],"span":[236,25,26]},{"path":[4,12,2,2],"span":[238,2,26]},{"path":[4,12,2,2,5],"span":[238,2,6]},{"path":[4,12,2,2,1],"span":[238,7,21]},{"path":[4,12,2,2,3],"span":[238,24,25]},{"path":[4,12,2,3],"span":[239,2,27]},{"path":[4,12,2,3,5],"span":[239,2,6]},{"path":[4,12,2,3,1],"span":[239,7,22]},{"path":[4,12,2,3,3],"span":[239,25,26]},{"path":[4,12,2,4],"span":[241,2,34]},{"path":[4,12,2,4,4],"span":[241,2,10]},{"path":[4,12,2,4,5],"span":[241,11,17]},{"path":[4,12,2,4,1],"span":[241,18,29]},{"path":[4,12,2,4,3],"span":[241,32,33]},{"path":[4,12,2,5],"span":[242,2,40]},{"path":[4,12,2,5,4],"span":[242,2,10]},{"path":[4,12,2,5,6],"span":[242,11,26]},{"path":[4,12,2,5,1],"span":[242,27,35]},{"path":[4,12,2,5,3],"span":[242,38,39]},{"path":[4,12,2,6],"span":[244,2,33]},{"path":[4,12,2,6,4],"span":[244,2,10]},{"path":[4,12,2,6,5],"span":[244,11,17]},{"path":[4,12,2,6,1],"span":[244,18,28]},{"path":[4,12,2,6,3],"span":[244,31,32]},{"path":[4,13],"span":[249,0,256,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,13,1],"span":[249,8,14]},{"path":[4,13,2,0],"span":[250,2,19]},{"path":[4,13,2,0,5],"span":[250,2,7]},{"path":[4,13,2,0,1],"span":[250,8,14]},{"path":[4,13,2,0,3],"span":[250,17,18]},{"path":[4,13,2,1],"span":[251,2,27]},{"path":[4,13,2,1,4],"span":[251,2,10]},{"path":[4,13,2,1,5],"span":[251,11,17]},{"path":[4,13,2,1,1],"span":[251,18,22]},{"path":[4,13,2,1,3],"span":[251,25,26]},{"path":[4,13,2,2],"span":[252,2,27]},{"path":[4,13,2,2,4],"span":[252,2,10]},{"path":[4,13,2,2,5],"span":[252,11,17]},{"path":[4,13,2,2,1],"span":[252,18,22]},{"path":[4,13,2,2,3],"span":[252,25,26]},{"path":[4,13,2,3],"span":[253,2,17]},{"path":[4,13,2,3,5],"span":[253,2,7]},{"path":[4,13,2,3,1],"span":[253,8,12]},{"path":[4,13,2,3,3],"span":[253,15,16]},{"path":[4,13,2,4],"span":[254,2,33],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,13,2,4,4],"span":[254,2,10]},{"path":[4,13,2,4,5],"span":[254,11,16]},{"path":[4,13,2,4,1],"span":[254,17,28]},{"path":[4,13,2,4,3],"span":[254,31,32]},{"path":[4,13,2,5],"span":[255,2,32],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,13,2,5,4],"span":[255,2,10]},{"path":[4,13,2,5,5],"span":[255,11,16]},{"path":[4,13,2,5,1],"span":[255,17,27]},{"path":[4,13,2,5,3],"span":[255,30,31]},{"path":[4,14],"span":[258,0,261,1]},{"path":[4,14,1],"span":[258,8,23]},{"path":[4,14,2,0],"span":[259,2,17]},{"path":[4,14,2,0,5],"span":[259,2,8]},{"path":[4,14,2,0,1],"span":[259,9,12]},{"path":[4,14,2,0,3],"span":[259,15,16]},{"path":[4,14,2,1],"span":[260,2,19]},{"path":[4,14,2,1,5],"span":[260,2,8]},{"path":[4,14,2,1,1],"span":[260,9,14]},{"path":[4,14,2,1,3],"span":[260,17,18]},{"path":[4,15],"span":[267,0,276,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,15,1],"span":[267,8,17]},{"path":[4,15,2,0],"span":[269,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,15,2,0,5],"span":[269,2,8]},{"path":[4,15,2,0,1],"span":[269,9,16]},{"path":[4,15,2,0,3],"span":[269,19,20]},{"path":[4,15,2,1],"span":[271,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,15,2,1,5],"span":[271,2,7]},{"path":[4,15,2,1,1],"span":[271,8,13]},{"path":[4,15,2,1,3],"span":[271,16,17]},{"path":[4,15,2,2],"span":[273,2,32],"leadingComments":" Fing Type\n"},{"path":[4,15,2,2,4],"span":[273,2,10]},{"path":[4,15,2,2,5],"span":[273,11,17]},{"path":[4,15,2,2,1],"span":[273,18,27]},{"path":[4,15,2,2,3],"span":[273,30,31]},{"path":[4,15,2,3],"span":[275,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,15,2,3,4],"span":[275,2,10]},{"path":[4,15,2,3,5],"span":[275,11,17]},{"path":[4,15,2,3,1],"span":[275,18,26]},{"path":[4,15,2,3,3],"span":[275,29,30]},{"path":[4,16],"span":[281,0,287,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,16,1],"span":[281,8,17]},{"path":[4,16,2,0],"span":[282,2,21],"trailingComments":" name of section\n"},{"path":[4,16,2,0,5],"span":[282,2,8]},{"path":[4,16,2,0,1],"span":[282,9,16]},{"path":[4,16,2,0,3],"span":[282,19,20]},{"path":[4,16,2,1],"span":[283,2,19],"trailingComments":" error descr\n"},{"path":[4,16,2,1,5],"span":[283,2,8]},{"path":[4,16,2,1,1],"span":[283,9,14]},{"path":[4,16,2,1,3],"span":[283,17,18]},{"path":[4,16,2,2],"span":[284,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,16,2,2,4],"span":[284,2,10]},{"path":[4,16,2,2,5],"span":[284,11,17]},{"path":[4,16,2,2,1],"span":[284,18,24]},{"path":[4,16,2,2,3],"span":[284,27,28]},{"path":[4,16,2,3],"span":[285,2,51]},{"path":[4,16,2,3,4],"span":[285,2,10]},{"path":[4,16,2,3,6],"span":[285,11,36]},{"path":[4,16,2,3,1],"span":[285,37,46]},{"path":[4,16,2,3,3],"span":[285,49,50]},{"path":[4,16,2,4],"span":[286,2,30]},{"path":[4,16,2,4,4],"span":[286,2,10]},{"path":[4,16,2,4,5],"span":[286,11,16]},{"path":[4,16,2,4,1],"span":[286,17,25]},{"path":[4,16,2,4,3],"span":[286,28,29]},{"path":[4,17],"span":[292,0,302,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,17,1],"span":[292,8,18]},{"path":[4,17,2,0],"span":[293,2,21]},{"path":[4,17,2,0,6],"span":[293,2,11]},{"path":[4,17,2,0,1],"span":[293,12,16]},{"path":[4,17,2,0,3],"span":[293,19,20]},{"path":[4,17,2,1],"span":[294,2,18]},{"path":[4,17,2,1,5],"span":[294,2,8]},{"path":[4,17,2,1,1],"span":[294,9,13]},{"path":[4,17,2,1,3],"span":[294,16,17]},{"path":[4,17,2,2],"span":[295,2,29]},{"path":[4,17,2,2,4],"span":[295,2,10]},{"path":[4,17,2,2,5],"span":[295,11,17]},{"path":[4,17,2,2,1],"span":[295,18,24]},{"path":[4,17,2,2,3],"span":[295,27,28]},{"path":[4,17,2,3],"span":[296,2,33]},{"path":[4,17,2,3,4],"span":[296,2,10]},{"path":[4,17,2,3,5],"span":[296,11,17]},{"path":[4,17,2,3,1],"span":[296,18,28]},{"path":[4,17,2,3,3],"span":[296,31,32]},{"path":[4,17,2,4],"span":[297,2,29]},{"path":[4,17,2,4,4],"span":[297,2,10]},{"path":[4,17,2,4,5],"span":[297,11,17]},{"path":[4,17,2,4,1],"span":[297,18,24]},{"path":[4,17,2,4,3],"span":[297,27,28]},{"path":[4,17,2,5],"span":[298,2,26]},{"path":[4,17,2,5,4],"span":[298,2,10]},{"path":[4,17,2,5,5],"span":[298,11,17]},{"path":[4,17,2,5,1],"span":[298,18,21]},{"path":[4,17,2,5,3],"span":[298,24,25]},{"path":[4,17,2,6],"span":[299,2,33]},{"path":[4,17,2,6,4],"span":[299,2,10]},{"path":[4,17,2,6,5],"span":[299,11,17]},{"path":[4,17,2,6,1],"span":[299,18,28]},{"path":[4,17,2,6,3],"span":[299,31,32]},{"path":[4,17,2,7],"span":[300,2,32]},{"path":[4,17,2,7,4],"span":[300,2,10]},{"path":[4,17,2,7,5],"span":[300,11,17]},{"path":[4,17,2,7,1],"span":[300,18,27]},{"path":[4,17,2,7,3],"span":[300,30,31]},{"path":[4,17,2,8],"span":[301,2,27]},{"path":[4,17,2,8,4],"span":[301,2,10]},{"path":[4,17,2,8,5],"span":[301,11,17]},{"path":[4,17,2,8,1],"span":[301,18,22]},{"path":[4,17,2,8,3],"span":[301,25,26]},{"path":[4,18],"span":[304,0,309,1]},{"path":[4,18,1],"span":[304,8,16]},{"path":[4,18,2,0],"span":[305,4,25]},{"path":[4,18,2,0,5],"span":[305,4,10]},{"path":[4,18,2,0,1],"span":[305,11,20]},{"path":[4,18,2,0,3],"span":[305,23,24]},{"path":[4,18,2,1],"span":[306,4,34]},{"path":[4,18,2,1,4],"span":[306,4,12]},{"path":[4,18,2,1,5],"span":[306,13,19]},{"path":[4,18,2,1,1],"span":[306,20,29]},{"path":[4,18,2,1,3],"span":[306,32,33]},{"path":[4,18,2,2],"span":[307,4,28]},{"path":[4,18,2,2,4],"span":[307,4,12]},{"path":[4,18,2,2,5],"span":[307,13,19]},{"path":[4,18,2,2,1],"span":[307,20,23]},{"path":[4,18,2,2,3],"span":[307,26,27]},{"path":[4,18,2,3],"span":[308,4,28]},{"path":[4,18,2,3,4],"span":[308,4,12]},{"path":[4,18,2,3,5],"span":[308,13,19]},{"path":[4,18,2,3,1],"span":[308,20,23]},{"path":[4,18,2,3,3],"span":[308,26,27]},{"path":[4,19],"span":[311,0,341,1]},{"path":[4,19,1],"span":[311,8,20]},{"path":[4,19,2,0],"span":[312,2,29]},{"path":[4,19,2,0,4],"span":[312,2,10]},{"path":[4,19,2,0,5],"span":[312,11,16]},{"path":[4,19,2,0,1],"span":[312,17,24]},{"path":[4,19,2,0,3],"span":[312,27,28]},{"path":[4,19,2,1],"span":[315,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,19,2,1,4],"span":[315,2,10]},{"path":[4,19,2,1,5],"span":[315,11,16]},{"path":[4,19,2,1,1],"span":[315,17,24]},{"path":[4,19,2,1,3],"span":[315,27,28]},{"path":[4,19,2,2],"span":[318,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,19,2,2,4],"span":[318,2,10]},{"path":[4,19,2,2,5],"span":[318,11,16]},{"path":[4,19,2,2,1],"span":[318,17,25]},{"path":[4,19,2,2,3],"span":[318,28,29]},{"path":[4,19,2,3],"span":[321,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,19,2,3,4],"span":[321,2,10]},{"path":[4,19,2,3,5],"span":[321,11,16]},{"path":[4,19,2,3,1],"span":[321,17,26]},{"path":[4,19,2,3,3],"span":[321,29,30]},{"path":[4,19,2,4],"span":[323,2,30]},{"path":[4,19,2,4,4],"span":[323,2,10]},{"path":[4,19,2,4,5],"span":[323,11,15]},{"path":[4,19,2,4,1],"span":[323,16,25]},{"path":[4,19,2,4,3],"span":[323,28,29]},{"path":[4,19,2,5],"span":[324,2,29]},{"path":[4,19,2,5,4],"span":[324,2,10]},{"path":[4,19,2,5,5],"span":[324,11,17]},{"path":[4,19,2,5,1],"span":[324,18,24]},{"path":[4,19,2,5,3],"span":[324,27,28]},{"path":[4,19,2,6],"span":[325,2,33]},{"path":[4,19,2,6,4],"span":[325,2,10]},{"path":[4,19,2,6,5],"span":[325,11,17]},{"path":[4,19,2,6,1],"span":[325,18,27]},{"path":[4,19,2,6,3],"span":[325,30,32]},{"path":[4,19,2,7],"span":[326,2,33]},{"path":[4,19,2,7,4],"span":[326,2,10]},{"path":[4,19,2,7,5],"span":[326,11,17]},{"path":[4,19,2,7,1],"span":[326,18,27]},{"path":[4,19,2,7,3],"span":[326,30,32]},{"path":[4,19,2,8],"span":[327,2,34]},{"path":[4,19,2,8,4],"span":[327,2,10]},{"path":[4,19,2,8,5],"span":[327,11,17]},{"path":[4,19,2,8,1],"span":[327,18,28]},{"path":[4,19,2,8,3],"span":[327,31,33]},{"path":[4,19,2,9],"span":[328,2,35]},{"path":[4,19,2,9,4],"span":[328,2,10]},{"path":[4,19,2,9,5],"span":[328,11,17]},{"path":[4,19,2,9,1],"span":[328,18,29]},{"path":[4,19,2,9,3],"span":[328,32,34]},{"path":[4,19,2,10],"span":[330,2,27]},{"path":[4,19,2,10,4],"span":[330,2,10]},{"path":[4,19,2,10,5],"span":[330,11,17]},{"path":[4,19,2,10,1],"span":[330,18,21]},{"path":[4,19,2,10,3],"span":[330,24,26]},{"path":[4,19,2,11],"span":[331,2,27]},{"path":[4,19,2,11,4],"span":[331,2,10]},{"path":[4,19,2,11,5],"span":[331,11,16]},{"path":[4,19,2,11,1],"span":[331,17,21]},{"path":[4,19,2,11,3],"span":[331,24,26]},{"path":[4,19,2,12],"span":[333,2,38]},{"path":[4,19,2,12,4],"span":[333,2,10]},{"path":[4,19,2,12,6],"span":[333,11,27]},{"path":[4,19,2,12,1],"span":[333,28,32]},{"path":[4,19,2,12,3],"span":[333,35,37]},{"path":[4,19,2,13],"span":[336,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,19,2,13,4],"span":[336,2,10]},{"path":[4,19,2,13,6],"span":[336,11,23]},{"path":[4,19,2,13,1],"span":[336,24,37]},{"path":[4,19,2,13,3],"span":[336,40,42]},{"path":[4,19,2,14],"span":[338,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,19,2,14,4],"span":[338,2,10]},{"path":[4,19,2,14,6],"span":[338,11,23]},{"path":[4,19,2,14,1],"span":[338,24,37]},{"path":[4,19,2,14,3],"span":[338,40,42]},{"path":[4,19,2,15],"span":[340,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,19,2,15,4],"span":[340,2,10]},{"path":[4,19,2,15,6],"span":[340,11,23]},{"path":[4,19,2,15,1],"span":[340,24,38]},{"path":[4,19,2,15,3],"span":[340,41,43]},{"path":[4,20],"span":[343,0,350,1]},{"path":[4,20,1],"span":[343,8,24]},{"path":[4,20,2,0],"span":[344,2,35]},{"path":[4,20,2,0,4],"span":[344,2,10]},{"path":[4,20,2,0,5],"span":[344,11,17]},{"path":[4,20,2,0,1],"span":[344,18,30]},{"path":[4,20,2,0,3],"span":[344,33,34]},{"path":[4,20,2,1],"span":[345,2,28]},{"path":[4,20,2,1,4],"span":[345,2,10]},{"path":[4,20,2,1,5],"span":[345,11,17]},{"path":[4,20,2,1,1],"span":[345,18,23]},{"path":[4,20,2,1,3],"span":[345,26,27]},{"path":[4,20,2,2],"span":[346,2,35]},{"path":[4,20,2,2,4],"span":[346,2,10]},{"path":[4,20,2,2,5],"span":[346,11,17]},{"path":[4,20,2,2,1],"span":[346,18,30]},{"path":[4,20,2,2,3],"span":[346,33,34]},{"path":[4,20,2,3],"span":[347,2,36]},{"path":[4,20,2,3,4],"span":[347,2,10]},{"path":[4,20,2,3,5],"span":[347,11,17]},{"path":[4,20,2,3,1],"span":[347,18,31]},{"path":[4,20,2,3,3],"span":[347,34,35]},{"path":[4,20,2,4],"span":[348,2,33]},{"path":[4,20,2,4,4],"span":[348,2,10]},{"path":[4,20,2,4,5],"span":[348,11,17]},{"path":[4,20,2,4,1],"span":[348,18,28]},{"path":[4,20,2,4,3],"span":[348,31,32]},{"path":[4,20,2,5],"span":[349,2,29]},{"path":[4,20,2,5,4],"span":[349,2,10]},{"path":[4,20,2,5,5],"span":[349,11,16]},{"path":[4,20,2,5,1],"span":[349,18,24]},{"path":[4,20,2,5,3],"span":[349,27,28]},{"path":[4,21],"span":[354,0,377,1]},{"path":[4,21,1],"span":[354,8,23]},{"path":[4,21,2,0],"span":[356,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,21,2,0,4],"span":[356,2,10]},{"path":[4,21,2,0,5],"span":[356,11,16]},{"path":[4,21,2,0,1],"span":[356,17,19]},{"path":[4,21,2,0,3],"span":[356,22,23]},{"path":[4,21,2,1],"span":[359,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,21,2,1,4],"span":[359,2,10]},{"path":[4,21,2,1,5],"span":[359,11,16]},{"path":[4,21,2,1,1],"span":[359,17,24]},{"path":[4,21,2,1,3],"span":[359,27,29]},{"path":[4,21,2,2],"span":[361,2,27]},{"path":[4,21,2,2,4],"span":[361,2,10]},{"path":[4,21,2,2,5],"span":[361,11,17]},{"path":[4,21,2,2,1],"span":[361,18,22]},{"path":[4,21,2,2,3],"span":[361,25,26]},{"path":[4,21,2,3],"span":[362,2,30]},{"path":[4,21,2,3,4],"span":[362,2,10]},{"path":[4,21,2,3,5],"span":[362,11,17]},{"path":[4,21,2,3,1],"span":[362,18,25]},{"path":[4,21,2,3,3],"span":[362,28,29]},{"path":[4,21,2,4],"span":[363,2,28]},{"path":[4,21,2,4,4],"span":[363,2,10]},{"path":[4,21,2,4,5],"span":[363,11,17]},{"path":[4,21,2,4,1],"span":[363,18,23]},{"path":[4,21,2,4,3],"span":[363,26,27]},{"path":[4,21,2,5],"span":[365,2,33]},{"path":[4,21,2,5,4],"span":[365,2,10]},{"path":[4,21,2,5,5],"span":[365,11,17]},{"path":[4,21,2,5,1],"span":[365,18,28]},{"path":[4,21,2,5,3],"span":[365,31,32]},{"path":[4,21,2,6],"span":[367,2,26]},{"path":[4,21,2,6,4],"span":[367,2,10]},{"path":[4,21,2,6,5],"span":[367,11,17]},{"path":[4,21,2,6,1],"span":[367,18,21]},{"path":[4,21,2,6,3],"span":[367,24,25]},{"path":[4,21,2,7],"span":[368,2,29]},{"path":[4,21,2,7,4],"span":[368,2,10]},{"path":[4,21,2,7,5],"span":[368,11,17]},{"path":[4,21,2,7,1],"span":[368,18,24]},{"path":[4,21,2,7,3],"span":[368,27,28]},{"path":[4,21,2,8],"span":[370,2,26]},{"path":[4,21,2,8,4],"span":[370,2,10]},{"path":[4,21,2,8,5],"span":[370,11,16]},{"path":[4,21,2,8,1],"span":[370,17,21]},{"path":[4,21,2,8,3],"span":[370,24,25]},{"path":[4,21,8,0],"span":[372,2,376,3]},{"path":[4,21,8,0,1],"span":[372,8,12]},{"path":[4,21,2,9],"span":[373,4,44]},{"path":[4,21,2,9,6],"span":[373,4,30]},{"path":[4,21,2,9,1],"span":[373,31,38]},{"path":[4,21,2,9,3],"span":[373,41,43]},{"path":[4,21,2,10],"span":[374,4,36]},{"path":[4,21,2,10,6],"span":[374,4,26]},{"path":[4,21,2,10,1],"span":[374,27,30]},{"path":[4,21,2,10,3],"span":[374,33,35]},{"path":[4,21,2,11],"span":[375,4,40]},{"path":[4,21,2,11,6],"span":[375,4,28]},{"path":[4,21,2,11,1],"span":[375,29,34]},{"path":[4,21,2,11,3],"span":[375,37,39]},{"path":[4,22],"span":[379,0,381,1]},{"path":[4,22,1],"span":[379,8,30]},{"path":[4,22,2,0],"span":[380,2,37]},{"path":[4,22,2,0,4],"span":[380,2,10]},{"path":[4,22,2,0,5],"span":[380,11,17]},{"path":[4,22,2,0,1],"span":[380,18,32]},{"path":[4,22,2,0,3],"span":[380,35,36]},{"path":[4,23],"span":[383,0,389,1]},{"path":[4,23,1],"span":[383,8,32]},{"path":[4,23,2,0],"span":[384,2,34]},{"path":[4,23,2,0,4],"span":[384,2,10]},{"path":[4,23,2,0,5],"span":[384,11,17]},{"path":[4,23,2,0,1],"span":[384,18,29]},{"path":[4,23,2,0,3],"span":[384,32,33]},{"path":[4,23,2,1],"span":[385,2,37]},{"path":[4,23,2,1,4],"span":[385,2,10]},{"path":[4,23,2,1,5],"span":[385,11,17]},{"path":[4,23,2,1,1],"span":[385,18,32]},{"path":[4,23,2,1,3],"span":[385,35,36]},{"path":[4,23,2,2],"span":[386,2,37]},{"path":[4,23,2,2,4],"span":[386,2,10]},{"path":[4,23,2,2,5],"span":[386,11,17]},{"path":[4,23,2,2,1],"span":[386,18,32]},{"path":[4,23,2,2,3],"span":[386,35,36]},{"path":[4,23,2,3],"span":[387,2,35]},{"path":[4,23,2,3,4],"span":[387,2,10]},{"path":[4,23,2,3,5],"span":[387,11,17]},{"path":[4,23,2,3,1],"span":[387,18,30]},{"path":[4,23,2,3,3],"span":[387,33,34]},{"path":[4,23,2,4],"span":[388,2,33]},{"path":[4,23,2,4,4],"span":[388,2,10]},{"path":[4,23,2,4,5],"span":[388,11,17]},{"path":[4,23,2,4,1],"span":[388,18,28]},{"path":[4,23,2,4,3],"span":[388,31,32]},{"path":[4,24],"span":[391,0,444,1]},{"path":[4,24,1],"span":[391,8,34]},{"path":[4,24,2,0],"span":[392,2,30]},{"path":[4,24,2,0,4],"span":[392,2,10]},{"path":[4,24,2,0,5],"span":[392,11,17]},{"path":[4,24,2,0,1],"span":[392,18,25]},{"path":[4,24,2,0,3],"span":[392,28,29]},{"path":[4,24,2,1],"span":[393,2,34]},{"path":[4,24,2,1,4],"span":[393,2,10]},{"path":[4,24,2,1,5],"span":[393,11,16]},{"path":[4,24,2,1,1],"span":[393,17,29]},{"path":[4,24,2,1,3],"span":[393,32,33]},{"path":[4,24,2,2],"span":[394,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,24,2,2,4],"span":[394,2,10]},{"path":[4,24,2,2,5],"span":[394,11,17]},{"path":[4,24,2,2,1],"span":[394,18,23]},{"path":[4,24,2,2,3],"span":[394,26,27]},{"path":[4,24,2,3],"span":[395,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,24,2,3,4],"span":[395,2,10]},{"path":[4,24,2,3,5],"span":[395,11,17]},{"path":[4,24,2,3,1],"span":[395,18,30]},{"path":[4,24,2,3,3],"span":[395,33,34]},{"path":[4,24,2,4],"span":[396,2,41]},{"path":[4,24,2,4,4],"span":[396,2,10]},{"path":[4,24,2,4,5],"span":[396,11,15]},{"path":[4,24,2,4,1],"span":[396,16,36]},{"path":[4,24,2,4,3],"span":[396,39,40]},{"path":[4,24,2,5],"span":[397,2,35]},{"path":[4,24,2,5,4],"span":[397,2,10]},{"path":[4,24,2,5,5],"span":[397,11,15]},{"path":[4,24,2,5,1],"span":[397,16,30]},{"path":[4,24,2,5,3],"span":[397,33,34]},{"path":[4,24,2,6],"span":[398,2,39]},{"path":[4,24,2,6,4],"span":[398,2,10]},{"path":[4,24,2,6,5],"span":[398,11,15]},{"path":[4,24,2,6,1],"span":[398,16,34]},{"path":[4,24,2,6,3],"span":[398,37,38]},{"path":[4,24,2,7],"span":[400,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,24,2,7,4],"span":[400,2,10]},{"path":[4,24,2,7,5],"span":[400,11,17]},{"path":[4,24,2,7,1],"span":[400,18,25]},{"path":[4,24,2,7,3],"span":[400,28,30]},{"path":[4,24,2,8],"span":[402,2,35]},{"path":[4,24,2,8,4],"span":[402,2,10]},{"path":[4,24,2,8,5],"span":[402,11,17]},{"path":[4,24,2,8,1],"span":[402,18,29]},{"path":[4,24,2,8,3],"span":[402,32,34]},{"path":[4,24,2,9],"span":[403,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,24,2,9,4],"span":[403,2,10]},{"path":[4,24,2,9,5],"span":[403,11,17]},{"path":[4,24,2,9,1],"span":[403,18,30]},{"path":[4,24,2,9,3],"span":[403,33,35]},{"path":[4,24,2,10],"span":[404,2,34]},{"path":[4,24,2,10,4],"span":[404,2,10]},{"path":[4,24,2,10,5],"span":[404,11,17]},{"path":[4,24,2,10,1],"span":[404,18,28]},{"path":[4,24,2,10,3],"span":[404,31,33]},{"path":[4,24,2,11],"span":[405,2,31]},{"path":[4,24,2,11,4],"span":[405,2,10]},{"path":[4,24,2,11,5],"span":[405,11,17]},{"path":[4,24,2,11,1],"span":[405,18,25]},{"path":[4,24,2,11,3],"span":[405,28,30]},{"path":[4,24,2,12],"span":[406,2,32]},{"path":[4,24,2,12,4],"span":[406,2,10]},{"path":[4,24,2,12,5],"span":[406,11,17]},{"path":[4,24,2,12,1],"span":[406,18,26]},{"path":[4,24,2,12,3],"span":[406,29,31]},{"path":[4,24,2,13],"span":[407,2,36]},{"path":[4,24,2,13,4],"span":[407,2,10]},{"path":[4,24,2,13,5],"span":[407,11,17]},{"path":[4,24,2,13,1],"span":[407,18,30]},{"path":[4,24,2,13,3],"span":[407,33,35]},{"path":[4,24,2,14],"span":[408,2,35]},{"path":[4,24,2,14,4],"span":[408,2,10]},{"path":[4,24,2,14,5],"span":[408,11,17]},{"path":[4,24,2,14,1],"span":[408,18,29]},{"path":[4,24,2,14,3],"span":[408,32,34]},{"path":[4,24,2,15],"span":[409,2,39]},{"path":[4,24,2,15,4],"span":[409,2,10]},{"path":[4,24,2,15,5],"span":[409,11,16]},{"path":[4,24,2,15,1],"span":[409,17,33]},{"path":[4,24,2,15,3],"span":[409,36,38]},{"path":[4,24,2,16],"span":[410,2,27]},{"path":[4,24,2,16,4],"span":[410,2,10]},{"path":[4,24,2,16,5],"span":[410,11,15]},{"path":[4,24,2,16,1],"span":[410,16,21]},{"path":[4,24,2,16,3],"span":[410,24,26]},{"path":[4,24,2,17],"span":[411,2,35]},{"path":[4,24,2,17,4],"span":[411,2,10]},{"path":[4,24,2,17,5],"span":[411,11,17]},{"path":[4,24,2,17,1],"span":[411,18,29]},{"path":[4,24,2,17,3],"span":[411,32,34]},{"path":[4,24,2,18],"span":[412,2,52]},{"path":[4,24,2,18,4],"span":[412,2,10]},{"path":[4,24,2,18,5],"span":[412,11,17]},{"path":[4,24,2,18,1],"span":[412,18,46]},{"path":[4,24,2,18,3],"span":[412,49,51]},{"path":[4,24,2,19],"span":[413,2,55]},{"path":[4,24,2,19,4],"span":[413,2,10]},{"path":[4,24,2,19,6],"span":[413,11,36]},{"path":[4,24,2,19,1],"span":[413,37,49]},{"path":[4,24,2,19,3],"span":[413,52,54]},{"path":[4,24,2,20],"span":[414,2,47]},{"path":[4,24,2,20,4],"span":[414,2,10]},{"path":[4,24,2,20,5],"span":[414,11,17]},{"path":[4,24,2,20,1],"span":[414,18,41]},{"path":[4,24,2,20,3],"span":[414,44,46]},{"path":[4,24,2,21],"span":[415,2,48]},{"path":[4,24,2,21,4],"span":[415,2,10]},{"path":[4,24,2,21,5],"span":[415,11,17]},{"path":[4,24,2,21,1],"span":[415,18,42]},{"path":[4,24,2,21,3],"span":[415,45,47]},{"path":[4,24,2,22],"span":[416,2,36]},{"path":[4,24,2,22,4],"span":[416,2,10]},{"path":[4,24,2,22,5],"span":[416,11,17]},{"path":[4,24,2,22,1],"span":[416,18,30]},{"path":[4,24,2,22,3],"span":[416,33,35]},{"path":[4,24,2,23],"span":[417,2,40]},{"path":[4,24,2,23,4],"span":[417,2,10]},{"path":[4,24,2,23,6],"span":[417,11,22]},{"path":[4,24,2,23,1],"span":[417,23,34]},{"path":[4,24,2,23,3],"span":[417,37,39]},{"path":[4,24,2,24],"span":[418,2,45]},{"path":[4,24,2,24,4],"span":[418,2,10]},{"path":[4,24,2,24,6],"span":[418,11,22]},{"path":[4,24,2,24,1],"span":[418,23,39]},{"path":[4,24,2,24,3],"span":[418,42,44]},{"path":[4,24,2,25],"span":[419,2,36]},{"path":[4,24,2,25,4],"span":[419,2,10]},{"path":[4,24,2,25,6],"span":[419,11,22]},{"path":[4,24,2,25,1],"span":[419,23,30]},{"path":[4,24,2,25,3],"span":[419,33,35]},{"path":[4,24,2,26],"span":[420,2,39]},{"path":[4,24,2,26,4],"span":[420,2,10]},{"path":[4,24,2,26,5],"span":[420,11,17]},{"path":[4,24,2,26,1],"span":[420,18,33]},{"path":[4,24,2,26,3],"span":[420,36,38]},{"path":[4,24,2,27],"span":[421,2,43]},{"path":[4,24,2,27,4],"span":[421,2,10]},{"path":[4,24,2,27,5],"span":[421,11,17]},{"path":[4,24,2,27,1],"span":[421,18,37]},{"path":[4,24,2,27,3],"span":[421,40,42]},{"path":[4,24,2,28],"span":[422,2,39]},{"path":[4,24,2,28,4],"span":[422,2,10]},{"path":[4,24,2,28,5],"span":[422,11,17]},{"path":[4,24,2,28,1],"span":[422,18,33]},{"path":[4,24,2,28,3],"span":[422,36,38]},{"path":[4,24,2,29],"span":[423,2,37]},{"path":[4,24,2,29,4],"span":[423,2,10]},{"path":[4,24,2,29,5],"span":[423,11,17]},{"path":[4,24,2,29,1],"span":[423,18,31]},{"path":[4,24,2,29,3],"span":[423,34,36]},{"path":[4,24,2,30],"span":[424,2,50]},{"path":[4,24,2,30,4],"span":[424,2,10]},{"path":[4,24,2,30,5],"span":[424,11,17]},{"path":[4,24,2,30,1],"span":[424,18,44]},{"path":[4,24,2,30,3],"span":[424,47,49]},{"path":[4,24,2,31],"span":[425,2,50]},{"path":[4,24,2,31,4],"span":[425,2,10]},{"path":[4,24,2,31,5],"span":[425,11,17]},{"path":[4,24,2,31,1],"span":[425,18,44]},{"path":[4,24,2,31,3],"span":[425,47,49]},{"path":[4,24,2,32],"span":[426,2,51]},{"path":[4,24,2,32,4],"span":[426,2,10]},{"path":[4,24,2,32,5],"span":[426,11,17]},{"path":[4,24,2,32,1],"span":[426,18,45]},{"path":[4,24,2,32,3],"span":[426,48,50]},{"path":[4,24,2,33],"span":[427,2,30]},{"path":[4,24,2,33,4],"span":[427,2,10]},{"path":[4,24,2,33,5],"span":[427,11,17]},{"path":[4,24,2,33,1],"span":[427,18,24]},{"path":[4,24,2,33,3],"span":[427,27,29]},{"path":[4,24,2,34],"span":[428,2,37]},{"path":[4,24,2,34,4],"span":[428,2,10]},{"path":[4,24,2,34,5],"span":[428,11,17]},{"path":[4,24,2,34,1],"span":[428,18,31]},{"path":[4,24,2,34,3],"span":[428,34,36]},{"path":[4,24,2,35],"span":[429,2,40]},{"path":[4,24,2,35,4],"span":[429,2,10]},{"path":[4,24,2,35,5],"span":[429,11,17]},{"path":[4,24,2,35,1],"span":[429,18,34]},{"path":[4,24,2,35,3],"span":[429,37,39]},{"path":[4,24,2,36],"span":[430,2,49]},{"path":[4,24,2,36,4],"span":[430,2,10]},{"path":[4,24,2,36,5],"span":[430,11,17]},{"path":[4,24,2,36,1],"span":[430,18,43]},{"path":[4,24,2,36,3],"span":[430,46,48]},{"path":[4,24,2,37],"span":[431,2,49]},{"path":[4,24,2,37,4],"span":[431,2,10]},{"path":[4,24,2,37,5],"span":[431,11,17]},{"path":[4,24,2,37,1],"span":[431,18,43]},{"path":[4,24,2,37,3],"span":[431,46,48]},{"path":[4,24,2,38],"span":[432,2,41]},{"path":[4,24,2,38,4],"span":[432,2,10]},{"path":[4,24,2,38,5],"span":[432,11,17]},{"path":[4,24,2,38,1],"span":[432,18,35]},{"path":[4,24,2,38,3],"span":[432,38,40]},{"path":[4,24,2,39],"span":[433,2,45]},{"path":[4,24,2,39,4],"span":[433,2,10]},{"path":[4,24,2,39,5],"span":[433,11,17]},{"path":[4,24,2,39,1],"span":[433,18,39]},{"path":[4,24,2,39,3],"span":[433,42,44]},{"path":[4,24,2,40],"span":[434,2,42]},{"path":[4,24,2,40,4],"span":[434,2,10]},{"path":[4,24,2,40,5],"span":[434,11,17]},{"path":[4,24,2,40,1],"span":[434,18,36]},{"path":[4,24,2,40,3],"span":[434,39,41]},{"path":[4,24,2,41],"span":[435,2,46]},{"path":[4,24,2,41,4],"span":[435,2,10]},{"path":[4,24,2,41,5],"span":[435,11,17]},{"path":[4,24,2,41,1],"span":[435,18,40]},{"path":[4,24,2,41,3],"span":[435,43,45]},{"path":[4,24,2,42],"span":[436,2,41]},{"path":[4,24,2,42,4],"span":[436,2,10]},{"path":[4,24,2,42,6],"span":[436,11,22]},{"path":[4,24,2,42,1],"span":[436,23,35]},{"path":[4,24,2,42,3],"span":[436,38,40]},{"path":[4,24,2,43],"span":[437,2,34]},{"path":[4,24,2,43,4],"span":[437,2,10]},{"path":[4,24,2,43,5],"span":[437,11,17]},{"path":[4,24,2,43,1],"span":[437,18,28]},{"path":[4,24,2,43,3],"span":[437,31,33]},{"path":[4,24,2,44],"span":[438,2,36]},{"path":[4,24,2,44,4],"span":[438,2,10]},{"path":[4,24,2,44,5],"span":[438,11,17]},{"path":[4,24,2,44,1],"span":[438,18,30]},{"path":[4,24,2,44,3],"span":[438,33,35]},{"path":[4,24,2,45],"span":[439,2,40]},{"path":[4,24,2,45,4],"span":[439,2,10]},{"path":[4,24,2,45,5],"span":[439,11,17]},{"path":[4,24,2,45,1],"span":[439,18,34]},{"path":[4,24,2,45,3],"span":[439,37,39]},{"path":[4,24,2,46],"span":[440,2,66]},{"path":[4,24,2,46,4],"span":[440,2,10]},{"path":[4,24,2,46,5],"span":[440,11,15]},{"path":[4,24,2,46,1],"span":[440,16,60]},{"path":[4,24,2,46,3],"span":[440,63,65]},{"path":[4,24,2,47],"span":[441,2,60]},{"path":[4,24,2,47,4],"span":[441,2,10]},{"path":[4,24,2,47,5],"span":[441,11,15]},{"path":[4,24,2,47,1],"span":[441,16,54]},{"path":[4,24,2,47,3],"span":[441,57,59]},{"path":[4,24,2,48],"span":[442,2,55]},{"path":[4,24,2,48,4],"span":[442,2,10]},{"path":[4,24,2,48,5],"span":[442,11,15]},{"path":[4,24,2,48,1],"span":[442,16,49]},{"path":[4,24,2,48,3],"span":[442,52,54]},{"path":[4,24,2,49],"span":[443,2,64]},{"path":[4,24,2,49,4],"span":[443,2,10]},{"path":[4,24,2,49,5],"span":[443,11,17]},{"path":[4,24,2,49,1],"span":[443,18,58]},{"path":[4,24,2,49,3],"span":[443,61,63]},{"path":[4,25],"span":[448,0,451,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,25,1],"span":[448,8,30]},{"path":[4,25,2,0],"span":[449,2,18]},{"path":[4,25,2,0,5],"span":[449,2,8]},{"path":[4,25,2,0,1],"span":[449,9,13]},{"path":[4,25,2,0,3],"span":[449,16,17]},{"path":[4,25,2,1],"span":[450,2,21]},{"path":[4,25,2,1,5],"span":[450,2,8]},{"path":[4,25,2,1,1],"span":[450,9,16]},{"path":[4,25,2,1,3],"span":[450,19,20]},{"path":[4,26],"span":[454,0,470,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,26,1],"span":[454,8,28]},{"path":[4,26,2,0],"span":[456,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,26,2,0,5],"span":[456,2,8]},{"path":[4,26,2,0,1],"span":[456,9,11]},{"path":[4,26,2,0,3],"span":[456,14,15]},{"path":[4,26,2,1],"span":[459,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,26,2,1,4],"span":[459,2,10]},{"path":[4,26,2,1,5],"span":[459,11,17]},{"path":[4,26,2,1,1],"span":[459,18,22]},{"path":[4,26,2,1,3],"span":[459,25,26]},{"path":[4,26,2,2],"span":[461,2,54]},{"path":[4,26,2,2,4],"span":[461,2,10]},{"path":[4,26,2,2,6],"span":[461,11,36]},{"path":[4,26,2,2,1],"span":[461,37,49]},{"path":[4,26,2,2,3],"span":[461,52,53]},{"path":[4,26,2,3],"span":[464,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,26,2,3,4],"span":[464,2,10]},{"path":[4,26,2,3,5],"span":[464,11,17]},{"path":[4,26,2,3,1],"span":[464,18,28]},{"path":[4,26,2,3,3],"span":[464,31,32]},{"path":[4,26,2,4],"span":[466,2,31]},{"path":[4,26,2,4,4],"span":[466,2,10]},{"path":[4,26,2,4,5],"span":[466,11,17]},{"path":[4,26,2,4,1],"span":[466,18,26]},{"path":[4,26,2,4,3],"span":[466,29,30]},{"path":[4,26,2,5],"span":[468,2,43]},{"path":[4,26,2,5,4],"span":[468,2,10]},{"path":[4,26,2,5,5],"span":[468,11,17]},{"path":[4,26,2,5,1],"span":[468,18,38]},{"path":[4,26,2,5,3],"span":[468,41,42]},{"path":[4,27],"span":[473,0,476,1],"leadingComments":" Network Interface cards "},{"path":[4,27,1],"span":[473,8,25]},{"path":[4,27,2,0],"span":[474,2,42]},{"path":[4,27,2,0,6],"span":[474,2,27]},{"path":[4,27,2,0,1],"span":[474,28,37]},{"path":[4,27,2,0,3],"span":[474,40,41]},{"path":[4,27,2,1],"span":[475,2,42]},{"path":[4,27,2,1,4],"span":[475,2,10]},{"path":[4,27,2,1,6],"span":[475,11,27]},{"path":[4,27,2,1,1],"span":[475,28,37]},{"path":[4,27,2,1,3],"span":[475,40,41]},{"path":[4,28],"span":[478,0,501,1]},{"path":[4,28,1],"span":[478,8,24]},{"path":[4,28,2,0],"span":[479,2,18]},{"path":[4,28,2,0,5],"span":[479,2,8]},{"path":[4,28,2,0,1],"span":[479,9,13]},{"path":[4,28,2,0,3],"span":[479,16,17]},{"path":[4,28,2,1],"span":[480,2,18]},{"path":[4,28,2,1,5],"span":[480,2,8]},{"path":[4,28,2,1,1],"span":[480,9,13]},{"path":[4,28,2,1,3],"span":[480,16,17]},{"path":[4,28,2,2],"span":[481,2,22]},{"path":[4,28,2,2,5],"span":[481,2,8]},{"path":[4,28,2,2,1],"span":[481,9,17]},{"path":[4,28,2,2,3],"span":[481,20,21]},{"path":[4,28,2,3],"span":[483,2,25]},{"path":[4,28,2,3,4],"span":[483,2,10]},{"path":[4,28,2,3,5],"span":[483,11,17]},{"path":[4,28,2,3,1],"span":[483,18,20]},{"path":[4,28,2,3,3],"span":[483,23,24]},{"path":[4,28,2,4],"span":[485,2,26]},{"path":[4,28,2,4,4],"span":[485,2,10]},{"path":[4,28,2,4,5],"span":[485,11,17]},{"path":[4,28,2,4,1],"span":[485,18,21]},{"path":[4,28,2,4,3],"span":[485,24,25]},{"path":[4,28,2,5],"span":[487,2,33]},{"path":[4,28,2,5,4],"span":[487,2,10]},{"path":[4,28,2,5,5],"span":[487,11,15]},{"path":[4,28,2,5,1],"span":[487,16,28]},{"path":[4,28,2,5,3],"span":[487,31,32]},{"path":[4,28,2,6],"span":[488,2,37]},{"path":[4,28,2,6,4],"span":[488,2,10]},{"path":[4,28,2,6,5],"span":[488,11,17]},{"path":[4,28,2,6,1],"span":[488,18,32]},{"path":[4,28,2,6,3],"span":[488,35,36]},{"path":[4,28,2,7],"span":[490,2,31]},{"path":[4,28,2,7,4],"span":[490,2,10]},{"path":[4,28,2,7,6],"span":[490,11,23]},{"path":[4,28,2,7,1],"span":[490,24,26]},{"path":[4,28,2,7,3],"span":[490,29,30]},{"path":[4,28,2,8],"span":[492,2,33]},{"path":[4,28,2,8,4],"span":[492,2,10]},{"path":[4,28,2,8,5],"span":[492,11,17]},{"path":[4,28,2,8,1],"span":[492,18,28]},{"path":[4,28,2,8,3],"span":[492,31,32]},{"path":[4,28,2,9],"span":[493,2,35]},{"path":[4,28,2,9,4],"span":[493,2,10]},{"path":[4,28,2,9,5],"span":[493,11,17]},{"path":[4,28,2,9,1],"span":[493,18,29]},{"path":[4,28,2,9,3],"span":[493,32,34]},{"path":[4,28,2,10],"span":[495,2,34]},{"path":[4,28,2,10,4],"span":[495,2,10]},{"path":[4,28,2,10,5],"span":[495,11,17]},{"path":[4,28,2,10,1],"span":[495,18,28]},{"path":[4,28,2,10,3],"span":[495,31,33]},{"path":[4,28,2,11],"span":[496,2,37]},{"path":[4,28,2,11,4],"span":[496,2,10]},{"path":[4,28,2,11,5],"span":[496,11,17]},{"path":[4,28,2,11,1],"span":[496,18,31]},{"path":[4,28,2,11,3],"span":[496,34,36]},{"path":[4,28,2,12],"span":[497,2,54]},{"path":[4,28,2,12,4],"span":[497,2,10]},{"path":[4,28,2,12,5],"span":[497,11,17]},{"path":[4,28,2,12,1],"span":[497,18,48]},{"path":[4,28,2,12,3],"span":[497,51,53]},{"path":[4,28,2,13],"span":[499,2,36]},{"path":[4,28,2,13,4],"span":[499,2,10]},{"path":[4,28,2,13,5],"span":[499,11,17]},{"path":[4,28,2,13,1],"span":[499,18,30]},{"path":[4,28,2,13,3],"span":[499,33,35]},{"path":[4,28,2,14],"span":[500,2,37]},{"path":[4,28,2,14,4],"span":[500,2,10]},{"path":[4,28,2,14,5],"span":[500,11,17]},{"path":[4,28,2,14,1],"span":[500,18,31]},{"path":[4,28,2,14,3],"span":[500,34,36]},{"path":[4,29],"span":[504,0,507,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,29,1],"span":[504,8,20]},{"path":[4,29,2,0],"span":[505,2,16]},{"path":[4,29,2,0,5],"span":[505,2,8]},{"path":[4,29,2,0,1],"span":[505,9,11]},{"path":[4,29,2,0,3],"span":[505,14,15]},{"path":[4,29,2,1],"span":[506,2,20]},{"path":[4,29,2,1,5],"span":[506,2,8]},{"path":[4,29,2,1,1],"span":[506,9,15]},{"path":[4,29,2,1,3],"span":[506,18,19]},{"path":[4,30],"span":[510,0,551,1],"leadingComments":" Processor *"},{"path":[4,30,1],"span":[510,8,17]},{"path":[4,30,2,0],"span":[511,2,21]},{"path":[4,30,2,0,5],"span":[511,2,8]},{"path":[4,30,2,0,1],"span":[511,10,14]},{"path":[4,30,2,0,3],"span":[511,17,18]},{"path":[4,30,2,1],"span":[512,2,36],"trailingComments":" Linux-only\n"},{"path":[4,30,2,1,4],"span":[512,2,10]},{"path":[4,30,2,1,5],"span":[512,11,17]},{"path":[4,30,2,1,1],"span":[512,18,31]},{"path":[4,30,2,1,3],"span":[512,34,35]},{"path":[4,30,2,2],"span":[513,2,35],"trailingComments":" Windows-only\n"},{"path":[4,30,2,2,4],"span":[513,2,10]},{"path":[4,30,2,2,5],"span":[513,11,16]},{"path":[4,30,2,2,1],"span":[513,17,30]},{"path":[4,30,2,2,3],"span":[513,33,34]},{"path":[4,30,2,3],"span":[514,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,30,2,3,4],"span":[514,2,10]},{"path":[4,30,2,3,6],"span":[514,11,22]},{"path":[4,30,2,3,1],"span":[514,23,35]},{"path":[4,30,2,3,3],"span":[514,38,39]},{"path":[4,30,2,4],"span":[515,2,34],"trailingComments":" Windows-only\n"},{"path":[4,30,2,4,4],"span":[515,2,10]},{"path":[4,30,2,4,5],"span":[515,11,16]},{"path":[4,30,2,4,1],"span":[515,17,29]},{"path":[4,30,2,4,3],"span":[515,32,33]},{"path":[4,30,2,5],"span":[516,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,30,2,5,4],"span":[516,2,10]},{"path":[4,30,2,5,5],"span":[516,11,17]},{"path":[4,30,2,5,1],"span":[516,18,27]},{"path":[4,30,2,5,3],"span":[516,30,31]},{"path":[4,30,2,6],"span":[517,2,33],"trailingComments":" Linux-only\n"},{"path":[4,30,2,6,4],"span":[517,2,10]},{"path":[4,30,2,6,5],"span":[517,11,17]},{"path":[4,30,2,6,1],"span":[517,18,28]},{"path":[4,30,2,6,3],"span":[517,31,32]},{"path":[4,30,2,7],"span":[518,2,30],"trailingComments":" Windows-only\n"},{"path":[4,30,2,7,4],"span":[518,2,10]},{"path":[4,30,2,7,5],"span":[518,11,17]},{"path":[4,30,2,7,1],"span":[518,18,25]},{"path":[4,30,2,7,3],"span":[518,28,29]},{"path":[4,30,2,8],"span":[519,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,30,2,8,4],"span":[519,2,10]},{"path":[4,30,2,8,5],"span":[519,11,16]},{"path":[4,30,2,8,1],"span":[519,17,36]},{"path":[4,30,2,8,3],"span":[519,39,40]},{"path":[4,30,2,9],"span":[520,2,33],"trailingComments":" Windows-only\n"},{"path":[4,30,2,9,4],"span":[520,2,10]},{"path":[4,30,2,9,5],"span":[520,11,16]},{"path":[4,30,2,9,1],"span":[520,17,27]},{"path":[4,30,2,9,3],"span":[520,30,32]},{"path":[4,30,2,10],"span":[521,2,33],"trailingComments":" Windows-only\n"},{"path":[4,30,2,10,4],"span":[521,2,10]},{"path":[4,30,2,10,5],"span":[521,11,17]},{"path":[4,30,2,10,1],"span":[521,18,27]},{"path":[4,30,2,10,3],"span":[521,30,32]},{"path":[4,30,2,11],"span":[522,2,41],"trailingComments":" Windows-only\n"},{"path":[4,30,2,11,4],"span":[522,2,10]},{"path":[4,30,2,11,5],"span":[522,11,16]},{"path":[4,30,2,11,1],"span":[522,17,35]},{"path":[4,30,2,11,3],"span":[522,38,40]},{"path":[4,30,2,12],"span":[523,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,30,2,12,4],"span":[523,2,10]},{"path":[4,30,2,12,6],"span":[523,11,22]},{"path":[4,30,2,12,1],"span":[523,23,29]},{"path":[4,30,2,12,3],"span":[523,32,34]},{"path":[4,30,2,13],"span":[524,2,41],"trailingComments":" Linux-only\n"},{"path":[4,30,2,13,4],"span":[524,2,10]},{"path":[4,30,2,13,5],"span":[524,11,17]},{"path":[4,30,2,13,1],"span":[524,18,35]},{"path":[4,30,2,13,3],"span":[524,38,40]},{"path":[4,30,2,14],"span":[525,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,30,2,14,4],"span":[525,2,10]},{"path":[4,30,2,14,5],"span":[525,11,16]},{"path":[4,30,2,14,1],"span":[525,17,34]},{"path":[4,30,2,14,3],"span":[525,37,39]},{"path":[4,30,2,15],"span":[526,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,30,2,15,4],"span":[526,2,10]},{"path":[4,30,2,15,5],"span":[526,11,16]},{"path":[4,30,2,15,1],"span":[526,17,34]},{"path":[4,30,2,15,3],"span":[526,37,39]},{"path":[4,30,2,16],"span":[527,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,30,2,16,4],"span":[527,2,10]},{"path":[4,30,2,16,5],"span":[527,11,16]},{"path":[4,30,2,16,1],"span":[527,17,33]},{"path":[4,30,2,16,3],"span":[527,36,38]},{"path":[4,30,2,17],"span":[528,2,41],"trailingComments":" Windows-only\n"},{"path":[4,30,2,17,4],"span":[528,2,10]},{"path":[4,30,2,17,5],"span":[528,11,16]},{"path":[4,30,2,17,1],"span":[528,17,35]},{"path":[4,30,2,17,3],"span":[528,38,40]},{"path":[4,30,2,18],"span":[529,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,30,2,18,4],"span":[529,2,10]},{"path":[4,30,2,18,5],"span":[529,11,16]},{"path":[4,30,2,18,1],"span":[529,17,33]},{"path":[4,30,2,18,3],"span":[529,36,38]},{"path":[4,30,2,19],"span":[530,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,30,2,19,4],"span":[530,2,10]},{"path":[4,30,2,19,5],"span":[530,11,16]},{"path":[4,30,2,19,1],"span":[530,17,22]},{"path":[4,30,2,19,3],"span":[530,25,27]},{"path":[4,30,2,20],"span":[531,2,44]},{"path":[4,30,2,20,4],"span":[531,2,10]},{"path":[4,30,2,20,5],"span":[531,11,16]},{"path":[4,30,2,20,1],"span":[531,17,36]},{"path":[4,30,2,20,3],"span":[531,39,41]},{"path":[4,30,2,21],"span":[532,2,38]},{"path":[4,30,2,21,4],"span":[532,2,10]},{"path":[4,30,2,21,5],"span":[532,11,17]},{"path":[4,30,2,21,1],"span":[532,18,30]},{"path":[4,30,2,21,3],"span":[532,33,35]},{"path":[4,30,2,22],"span":[533,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,30,2,22,4],"span":[533,2,10]},{"path":[4,30,2,22,5],"span":[533,11,16]},{"path":[4,30,2,22,1],"span":[533,17,36]},{"path":[4,30,2,22,3],"span":[533,39,41]},{"path":[4,30,2,23],"span":[534,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,30,2,23,4],"span":[534,2,10]},{"path":[4,30,2,23,5],"span":[534,11,16]},{"path":[4,30,2,23,1],"span":[534,17,36]},{"path":[4,30,2,23,3],"span":[534,39,41]},{"path":[4,30,2,24],"span":[535,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,30,2,24,4],"span":[535,2,10]},{"path":[4,30,2,24,5],"span":[535,11,16]},{"path":[4,30,2,24,1],"span":[535,17,29]},{"path":[4,30,2,24,3],"span":[535,32,34]},{"path":[4,30,2,25],"span":[536,2,32],"trailingComments":" Linux-only\n"},{"path":[4,30,2,25,4],"span":[536,2,10]},{"path":[4,30,2,25,5],"span":[536,11,17]},{"path":[4,30,2,25,1],"span":[536,18,26]},{"path":[4,30,2,25,3],"span":[536,29,31]},{"path":[4,30,2,26],"span":[537,2,45]},{"path":[4,30,2,26,4],"span":[537,2,10]},{"path":[4,30,2,26,5],"span":[537,11,16]},{"path":[4,30,2,26,1],"span":[537,17,37]},{"path":[4,30,2,26,3],"span":[537,40,42]},{"path":[4,30,2,27],"span":[538,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,30,2,27,4],"span":[538,2,10]},{"path":[4,30,2,27,5],"span":[538,11,17]},{"path":[4,30,2,27,1],"span":[538,18,30]},{"path":[4,30,2,27,3],"span":[538,33,35]},{"path":[4,30,2,28],"span":[539,2,43],"trailingComments":" Windows-only\n"},{"path":[4,30,2,28,4],"span":[539,2,10]},{"path":[4,30,2,28,6],"span":[539,11,22]},{"path":[4,30,2,28,1],"span":[539,23,37]},{"path":[4,30,2,28,3],"span":[539,40,42]},{"path":[4,30,2,29],"span":[540,2,31],"trailingComments":" Windows-only\n"},{"path":[4,30,2,29,4],"span":[540,2,10]},{"path":[4,30,2,29,5],"span":[540,11,16]},{"path":[4,30,2,29,1],"span":[540,17,25]},{"path":[4,30,2,29,3],"span":[540,28,30]},{"path":[4,30,2,30],"span":[541,2,42],"trailingComments":" Windows-only\n"},{"path":[4,30,2,30,4],"span":[541,2,10]},{"path":[4,30,2,30,5],"span":[541,11,17]},{"path":[4,30,2,30,1],"span":[541,18,36]},{"path":[4,30,2,30,3],"span":[541,39,41]},{"path":[4,30,2,31],"span":[542,2,31],"trailingComments":" Linux-only\n"},{"path":[4,30,2,31,4],"span":[542,2,10]},{"path":[4,30,2,31,5],"span":[542,11,16]},{"path":[4,30,2,31,1],"span":[542,18,25]},{"path":[4,30,2,31,3],"span":[542,28,30]},{"path":[4,30,2,32],"span":[543,2,35],"trailingComments":" Windows-only\n"},{"path":[4,30,2,32,4],"span":[543,2,10]},{"path":[4,30,2,32,6],"span":[543,11,22]},{"path":[4,30,2,32,1],"span":[543,23,29]},{"path":[4,30,2,32,3],"span":[543,32,34]},{"path":[4,30,2,33],"span":[544,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,30,2,33,4],"span":[544,2,10]},{"path":[4,30,2,33,5],"span":[544,11,16]},{"path":[4,30,2,33,1],"span":[544,17,25]},{"path":[4,30,2,33,3],"span":[544,28,30]},{"path":[4,30,2,34],"span":[545,2,54],"trailingComments":" Linux-only\n"},{"path":[4,30,2,34,4],"span":[545,2,10]},{"path":[4,30,2,34,5],"span":[545,11,16]},{"path":[4,30,2,34,1],"span":[545,17,48]},{"path":[4,30,2,34,3],"span":[545,51,53]},{"path":[4,30,2,35],"span":[546,2,33],"trailingComments":" Windows-only\n"},{"path":[4,30,2,35,4],"span":[546,2,10]},{"path":[4,30,2,35,5],"span":[546,11,17]},{"path":[4,30,2,35,1],"span":[546,18,27]},{"path":[4,30,2,35,3],"span":[546,30,32]},{"path":[4,30,2,36],"span":[547,2,43],"trailingComments":" Windows-only\n"},{"path":[4,30,2,36,4],"span":[547,2,10]},{"path":[4,30,2,36,6],"span":[547,11,22]},{"path":[4,30,2,36,1],"span":[547,23,37]},{"path":[4,30,2,36,3],"span":[547,40,42]},{"path":[4,30,2,37],"span":[548,2,31],"trailingComments":" Windows-only\n"},{"path":[4,30,2,37,4],"span":[548,2,10]},{"path":[4,30,2,37,5],"span":[548,11,17]},{"path":[4,30,2,37,1],"span":[548,18,25]},{"path":[4,30,2,37,3],"span":[548,28,30]},{"path":[4,30,2,38],"span":[549,2,38],"trailingComments":" Linux-only\n"},{"path":[4,30,2,38,4],"span":[549,2,10]},{"path":[4,30,2,38,5],"span":[549,11,17]},{"path":[4,30,2,38,1],"span":[549,18,32]},{"path":[4,30,2,38,3],"span":[549,35,37]},{"path":[4,30,2,39],"span":[550,2,49],"trailingComments":" Windows-only\n"},{"path":[4,30,2,39,4],"span":[550,2,10]},{"path":[4,30,2,39,6],"span":[550,11,22]},{"path":[4,30,2,39,1],"span":[550,23,43]},{"path":[4,30,2,39,3],"span":[550,46,48]},{"path":[4,31],"span":[554,0,564,1],"leadingComments":" Chassis *"},{"path":[4,31,1],"span":[554,8,15]},{"path":[4,31,2,0],"span":[556,2,25]},{"path":[4,31,2,0,6],"span":[556,2,13]},{"path":[4,31,2,0,1],"span":[556,16,20]},{"path":[4,31,2,0,3],"span":[556,23,24]},{"path":[4,31,2,1],"span":[557,2,33]},{"path":[4,31,2,1,4],"span":[557,2,10]},{"path":[4,31,2,1,5],"span":[557,11,15]},{"path":[4,31,2,1,1],"span":[557,16,28]},{"path":[4,31,2,1,3],"span":[557,31,32]},{"path":[4,31,2,2],"span":[558,2,41]},{"path":[4,31,2,2,4],"span":[558,2,10]},{"path":[4,31,2,2,5],"span":[558,11,17]},{"path":[4,31,2,2,1],"span":[558,24,36]},{"path":[4,31,2,2,3],"span":[558,39,40]},{"path":[4,31,2,3],"span":[559,2,43]},{"path":[4,31,2,3,4],"span":[559,2,10]},{"path":[4,31,2,3,6],"span":[559,11,22]},{"path":[4,31,2,3,1],"span":[559,23,38]},{"path":[4,31,2,3,3],"span":[559,41,42]},{"path":[4,31,2,4],"span":[560,2,42]},{"path":[4,31,2,4,4],"span":[560,2,10]},{"path":[4,31,2,4,5],"span":[560,11,17]},{"path":[4,31,2,4,1],"span":[560,24,37]},{"path":[4,31,2,4,3],"span":[560,40,41]},{"path":[4,31,2,5],"span":[561,2,38]},{"path":[4,31,2,5,4],"span":[561,2,10]},{"path":[4,31,2,5,5],"span":[561,11,17]},{"path":[4,31,2,5,1],"span":[561,24,33]},{"path":[4,31,2,5,3],"span":[561,36,37]},{"path":[4,31,2,6],"span":[562,2,36]},{"path":[4,31,2,6,4],"span":[562,2,10]},{"path":[4,31,2,6,5],"span":[562,11,17]},{"path":[4,31,2,6,1],"span":[562,24,31]},{"path":[4,31,2,6,3],"span":[562,34,35]},{"path":[4,31,2,7],"span":[563,2,40]},{"path":[4,31,2,7,4],"span":[563,2,10]},{"path":[4,31,2,7,6],"span":[563,11,22]},{"path":[4,31,2,7,1],"span":[563,23,35]},{"path":[4,31,2,7,3],"span":[563,38,39]},{"path":[4,32],"span":[569,0,581,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,32,1],"span":[569,8,17]},{"path":[4,32,2,0],"span":[570,2,30]},{"path":[4,32,2,0,4],"span":[570,2,10]},{"path":[4,32,2,0,5],"span":[570,11,17]},{"path":[4,32,2,0,1],"span":[570,18,25]},{"path":[4,32,2,0,3],"span":[570,28,29]},{"path":[4,32,2,1],"span":[571,2,31]},{"path":[4,32,2,1,4],"span":[571,2,10]},{"path":[4,32,2,1,5],"span":[571,11,15]},{"path":[4,32,2,1,1],"span":[571,16,26]},{"path":[4,32,2,1,3],"span":[571,29,30]},{"path":[4,32,2,2],"span":[572,2,34]},{"path":[4,32,2,2,4],"span":[572,2,10]},{"path":[4,32,2,2,5],"span":[572,11,17]},{"path":[4,32,2,2,1],"span":[572,18,29]},{"path":[4,32,2,2,3],"span":[572,32,33]},{"path":[4,32,2,3],"span":[573,2,32]},{"path":[4,32,2,3,4],"span":[573,2,10]},{"path":[4,32,2,3,5],"span":[573,11,17]},{"path":[4,32,2,3,1],"span":[573,18,27]},{"path":[4,32,2,3,3],"span":[573,30,31]},{"path":[4,32,2,4],"span":[574,2,38]},{"path":[4,32,2,4,4],"span":[574,2,10]},{"path":[4,32,2,4,6],"span":[574,11,22]},{"path":[4,32,2,4,1],"span":[574,23,33]},{"path":[4,32,2,4,3],"span":[574,36,37]},{"path":[4,32,2,5],"span":[575,2,34]},{"path":[4,32,2,5,4],"span":[575,2,10]},{"path":[4,32,2,5,5],"span":[575,11,17]},{"path":[4,32,2,5,1],"span":[575,18,29]},{"path":[4,32,2,5,3],"span":[575,32,33]},{"path":[4,32,2,6],"span":[576,2,32]},{"path":[4,32,2,6,4],"span":[576,2,10]},{"path":[4,32,2,6,5],"span":[576,11,16]},{"path":[4,32,2,6,1],"span":[576,17,27]},{"path":[4,32,2,6,3],"span":[576,30,31]},{"path":[4,32,2,7],"span":[577,2,26]},{"path":[4,32,2,7,4],"span":[577,2,10]},{"path":[4,32,2,7,5],"span":[577,11,16]},{"path":[4,32,2,7,1],"span":[577,17,21]},{"path":[4,32,2,7,3],"span":[577,24,25]},{"path":[4,32,2,8],"span":[578,2,34]},{"path":[4,32,2,8,4],"span":[578,2,10]},{"path":[4,32,2,8,5],"span":[578,11,17]},{"path":[4,32,2,8,1],"span":[578,18,29]},{"path":[4,32,2,8,3],"span":[578,32,33]},{"path":[4,32,2,9],"span":[579,2,37]},{"path":[4,32,2,9,4],"span":[579,2,10]},{"path":[4,32,2,9,5],"span":[579,11,17]},{"path":[4,32,2,9,1],"span":[579,18,31]},{"path":[4,32,2,9,3],"span":[579,34,36]},{"path":[4,32,2,10],"span":[580,2,34]},{"path":[4,32,2,10,4],"span":[580,2,10]},{"path":[4,32,2,10,5],"span":[580,11,17]},{"path":[4,32,2,10,1],"span":[580,18,28]},{"path":[4,32,2,10,3],"span":[580,31,33]},{"path":[4,33],"span":[586,0,616,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,33,1],"span":[586,8,19]},{"path":[4,33,2,0],"span":[587,2,32]},{"path":[4,33,2,0,4],"span":[587,2,10]},{"path":[4,33,2,0,5],"span":[587,11,17]},{"path":[4,33,2,0,1],"span":[587,18,27]},{"path":[4,33,2,0,3],"span":[587,30,31]},{"path":[4,33,2,1],"span":[588,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,33,2,1,4],"span":[588,2,10]},{"path":[4,33,2,1,5],"span":[588,11,17]},{"path":[4,33,2,1,1],"span":[588,18,22]},{"path":[4,33,2,1,3],"span":[588,25,26]},{"path":[4,33,2,2],"span":[589,2,28],"trailingComments":" win and linux\n"},{"path":[4,33,2,2,4],"span":[589,2,10]},{"path":[4,33,2,2,5],"span":[589,11,17]},{"path":[4,33,2,2,1],"span":[589,18,23]},{"path":[4,33,2,2,3],"span":[589,26,27]},{"path":[4,33,2,3],"span":[590,2,27]},{"path":[4,33,2,3,4],"span":[590,2,10]},{"path":[4,33,2,3,5],"span":[590,11,17]},{"path":[4,33,2,3,1],"span":[590,18,22]},{"path":[4,33,2,3,3],"span":[590,25,26]},{"path":[4,33,2,4],"span":[592,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,33,2,4,4],"span":[592,2,10]},{"path":[4,33,2,4,5],"span":[592,11,16]},{"path":[4,33,2,4,1],"span":[592,17,25]},{"path":[4,33,2,4,3],"span":[592,28,29]},{"path":[4,33,2,5],"span":[593,2,32]},{"path":[4,33,2,5,4],"span":[593,2,10]},{"path":[4,33,2,5,5],"span":[593,11,16]},{"path":[4,33,2,5,1],"span":[593,17,27]},{"path":[4,33,2,5,3],"span":[593,30,31]},{"path":[4,33,2,6],"span":[594,2,32]},{"path":[4,33,2,6,4],"span":[594,2,10]},{"path":[4,33,2,6,5],"span":[594,11,16]},{"path":[4,33,2,6,1],"span":[594,17,27]},{"path":[4,33,2,6,3],"span":[594,30,31]},{"path":[4,33,2,7],"span":[596,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,33,2,7,4],"span":[596,2,10]},{"path":[4,33,2,7,6],"span":[596,11,22]},{"path":[4,33,2,7,1],"span":[596,23,33]},{"path":[4,33,2,7,3],"span":[596,36,37]},{"path":[4,33,2,8],"span":[597,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,33,2,8,4],"span":[597,2,10]},{"path":[4,33,2,8,6],"span":[597,11,22]},{"path":[4,33,2,8,1],"span":[597,23,40]},{"path":[4,33,2,8,3],"span":[597,43,44]},{"path":[4,33,2,9],"span":[599,2,41]},{"path":[4,33,2,9,4],"span":[599,2,10]},{"path":[4,33,2,9,5],"span":[599,11,17]},{"path":[4,33,2,9,1],"span":[599,18,35]},{"path":[4,33,2,9,3],"span":[599,38,40]},{"path":[4,33,2,10],"span":[600,2,41]},{"path":[4,33,2,10,4],"span":[600,2,10]},{"path":[4,33,2,10,5],"span":[600,11,17]},{"path":[4,33,2,10,1],"span":[600,18,35]},{"path":[4,33,2,10,3],"span":[600,38,40]},{"path":[4,33,2,11],"span":[601,2,35]},{"path":[4,33,2,11,4],"span":[601,2,10]},{"path":[4,33,2,11,5],"span":[601,11,17]},{"path":[4,33,2,11,1],"span":[601,18,29]},{"path":[4,33,2,11,3],"span":[601,32,34]},{"path":[4,33,2,12],"span":[603,2,32]},{"path":[4,33,2,12,4],"span":[603,2,10]},{"path":[4,33,2,12,5],"span":[603,11,15]},{"path":[4,33,2,12,1],"span":[603,16,26]},{"path":[4,33,2,12,3],"span":[603,29,31]},{"path":[4,33,2,13],"span":[604,2,32]},{"path":[4,33,2,13,4],"span":[604,2,10]},{"path":[4,33,2,13,5],"span":[604,11,15]},{"path":[4,33,2,13,1],"span":[604,16,26]},{"path":[4,33,2,13,3],"span":[604,29,31]},{"path":[4,33,2,14],"span":[605,2,35]},{"path":[4,33,2,14,4],"span":[605,2,10]},{"path":[4,33,2,14,5],"span":[605,11,15]},{"path":[4,33,2,14,1],"span":[605,16,29]},{"path":[4,33,2,14,3],"span":[605,32,34]},{"path":[4,33,2,15],"span":[606,2,35]},{"path":[4,33,2,15,4],"span":[606,2,10]},{"path":[4,33,2,15,5],"span":[606,11,15]},{"path":[4,33,2,15,1],"span":[606,16,29]},{"path":[4,33,2,15,3],"span":[606,32,34]},{"path":[4,33,2,16],"span":[607,2,38]},{"path":[4,33,2,16,4],"span":[607,2,10]},{"path":[4,33,2,16,5],"span":[607,11,15]},{"path":[4,33,2,16,1],"span":[607,16,32]},{"path":[4,33,2,16,3],"span":[607,35,37]},{"path":[4,33,2,17],"span":[608,2,39]},{"path":[4,33,2,17,4],"span":[608,2,10]},{"path":[4,33,2,17,5],"span":[608,11,15]},{"path":[4,33,2,17,1],"span":[608,16,33]},{"path":[4,33,2,17,3],"span":[608,36,38]},{"path":[4,33,2,18],"span":[609,2,42]},{"path":[4,33,2,18,4],"span":[609,2,10]},{"path":[4,33,2,18,5],"span":[609,11,15]},{"path":[4,33,2,18,1],"span":[609,16,36]},{"path":[4,33,2,18,3],"span":[609,39,41]},{"path":[4,33,2,19],"span":[610,2,53]},{"path":[4,33,2,19,4],"span":[610,2,10]},{"path":[4,33,2,19,5],"span":[610,11,15]},{"path":[4,33,2,19,1],"span":[610,16,47]},{"path":[4,33,2,19,3],"span":[610,50,52]},{"path":[4,33,2,20],"span":[613,2,31],"leadingComments":" unix\n"},{"path":[4,33,2,20,4],"span":[613,2,10]},{"path":[4,33,2,20,5],"span":[613,11,17]},{"path":[4,33,2,20,1],"span":[613,18,25]},{"path":[4,33,2,20,3],"span":[613,28,30]},{"path":[4,33,2,21],"span":[614,2,35]},{"path":[4,33,2,21,4],"span":[614,2,10]},{"path":[4,33,2,21,5],"span":[614,11,17]},{"path":[4,33,2,21,1],"span":[614,18,29]},{"path":[4,33,2,21,3],"span":[614,32,34]},{"path":[4,34],"span":[621,0,628,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,34,1],"span":[621,8,21]},{"path":[4,34,8,0],"span":[622,2,625,5]},{"path":[4,34,8,0,1],"span":[622,8,14]},{"path":[4,34,2,0],"span":[623,4,44]},{"path":[4,34,2,0,6],"span":[623,4,22]},{"path":[4,34,2,0,1],"span":[623,23,39]},{"path":[4,34,2,0,3],"span":[623,42,43]},{"path":[4,34,2,1],"span":[624,4,36]},{"path":[4,34,2,1,6],"span":[624,4,20]},{"path":[4,34,2,1,1],"span":[624,21,31]},{"path":[4,34,2,1,3],"span":[624,34,35]},{"path":[4,34,2,2],"span":[627,2,29]},{"path":[4,34,2,2,4],"span":[627,2,10]},{"path":[4,34,2,2,5],"span":[627,11,17]},{"path":[4,34,2,2,1],"span":[627,18,22]},{"path":[4,34,2,2,3],"span":[627,25,28]},{"path":[4,35],"span":[631,0,636,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,35,1],"span":[631,8,26]},{"path":[4,35,2,0],"span":[632,2,26]},{"path":[4,35,2,0,5],"span":[632,2,8]},{"path":[4,35,2,0,1],"span":[632,9,21]},{"path":[4,35,2,0,3],"span":[632,24,25]},{"path":[4,35,2,1],"span":[633,2,32]},{"path":[4,35,2,1,4],"span":[633,2,10]},{"path":[4,35,2,1,5],"span":[633,11,17]},{"path":[4,35,2,1,1],"span":[633,18,27]},{"path":[4,35,2,1,3],"span":[633,30,31]},{"path":[4,35,2,2],"span":[634,2,34]},{"path":[4,35,2,2,4],"span":[634,2,10]},{"path":[4,35,2,2,5],"span":[634,11,17]},{"path":[4,35,2,2,1],"span":[634,18,29]},{"path":[4,35,2,2,3],"span":[634,32,33]},{"path":[4,35,2,3],"span":[635,2,34]},{"path":[4,35,2,3,4],"span":[635,2,10]},{"path":[4,35,2,3,5],"span":[635,11,17]},{"path":[4,35,2,3,1],"span":[635,18,29]},{"path":[4,35,2,3,3],"span":[635,32,33]},{"path":[4,36],"span":[639,0,645,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,36,1],"span":[639,8,24]},{"path":[4,36,2,0],"span":[640,2,27]},{"path":[4,36,2,0,4],"span":[640,2,10]},{"path":[4,36,2,0,5],"span":[640,11,17]},{"path":[4,36,2,0,1],"span":[640,18,22]},{"path":[4,36,2,0,3],"span":[640,25,26]},{"path":[4,36,2,1],"span":[641,2,35]},{"path":[4,36,2,1,4],"span":[641,2,10]},{"path":[4,36,2,1,5],"span":[641,11,17]},{"path":[4,36,2,1,1],"span":[641,18,30]},{"path":[4,36,2,1,3],"span":[641,33,34]},{"path":[4,36,2,2],"span":[642,2,36]},{"path":[4,36,2,2,4],"span":[642,2,10]},{"path":[4,36,2,2,5],"span":[642,11,17]},{"path":[4,36,2,2,1],"span":[642,18,31]},{"path":[4,36,2,2,3],"span":[642,34,35]},{"path":[4,36,2,3],"span":[643,2,35]},{"path":[4,36,2,3,4],"span":[643,2,10]},{"path":[4,36,2,3,5],"span":[643,11,17]},{"path":[4,36,2,3,1],"span":[643,18,30]},{"path":[4,36,2,3,3],"span":[643,33,34]},{"path":[4,36,2,4],"span":[644,2,36]},{"path":[4,36,2,4,4],"span":[644,2,10]},{"path":[4,36,2,4,5],"span":[644,11,17]},{"path":[4,36,2,4,1],"span":[644,18,31]},{"path":[4,36,2,4,3],"span":[644,34,35]},{"path":[4,37],"span":[650,0,657,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,37,1],"span":[650,8,16]},{"path":[4,37,2,0],"span":[651,2,53]},{"path":[4,37,2,0,4],"span":[651,2,10]},{"path":[4,37,2,0,6],"span":[651,11,22]},{"path":[4,37,2,0,1],"span":[651,23,48]},{"path":[4,37,2,0,3],"span":[651,51,52]},{"path":[4,37,2,1],"span":[652,2,47]},{"path":[4,37,2,1,4],"span":[652,2,10]},{"path":[4,37,2,1,5],"span":[652,11,15]},{"path":[4,37,2,1,1],"span":[652,16,42]},{"path":[4,37,2,1,3],"span":[652,45,46]},{"path":[4,37,2,2],"span":[653,2,34]},{"path":[4,37,2,2,4],"span":[653,2,10]},{"path":[4,37,2,2,5],"span":[653,11,17]},{"path":[4,37,2,2,1],"span":[653,18,29]},{"path":[4,37,2,2,3],"span":[653,32,33]},{"path":[4,37,2,3],"span":[654,2,32]},{"path":[4,37,2,3,4],"span":[654,2,10]},{"path":[4,37,2,3,5],"span":[654,11,17]},{"path":[4,37,2,3,1],"span":[654,18,27]},{"path":[4,37,2,3,3],"span":[654,30,31]},{"path":[4,37,2,4],"span":[655,2,29]},{"path":[4,37,2,4,4],"span":[655,2,10]},{"path":[4,37,2,4,5],"span":[655,11,17]},{"path":[4,37,2,4,1],"span":[655,18,24]},{"path":[4,37,2,4,3],"span":[655,27,28]},{"path":[4,37,2,5],"span":[656,2,45]},{"path":[4,37,2,5,4],"span":[656,2,10]},{"path":[4,37,2,5,5],"span":[656,11,16]},{"path":[4,37,2,5,1],"span":[656,17,40]},{"path":[4,37,2,5,3],"span":[656,43,44]},{"path":[4,38],"span":[662,0,674,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,38,1],"span":[662,8,22]},{"path":[4,38,2,0],"span":[663,2,30]},{"path":[4,38,2,0,4],"span":[663,2,10]},{"path":[4,38,2,0,5],"span":[663,11,17]},{"path":[4,38,2,0,1],"span":[663,18,25]},{"path":[4,38,2,0,3],"span":[663,28,29]},{"path":[4,38,2,1],"span":[664,2,32]},{"path":[4,38,2,1,4],"span":[664,2,10]},{"path":[4,38,2,1,5],"span":[664,11,17]},{"path":[4,38,2,1,1],"span":[664,18,27]},{"path":[4,38,2,1,3],"span":[664,30,31]},{"path":[4,38,2,2],"span":[665,2,44]},{"path":[4,38,2,2,4],"span":[665,2,10]},{"path":[4,38,2,2,6],"span":[665,11,22]},{"path":[4,38,2,2,1],"span":[665,23,39]},{"path":[4,38,2,2,3],"span":[665,42,43]},{"path":[4,38,2,3],"span":[666,2,45]},{"path":[4,38,2,3,4],"span":[666,2,10]},{"path":[4,38,2,3,5],"span":[666,11,16]},{"path":[4,38,2,3,1],"span":[666,18,40]},{"path":[4,38,2,3,3],"span":[666,43,44]},{"path":[4,38,2,4],"span":[667,2,38]},{"path":[4,38,2,4,4],"span":[667,2,10]},{"path":[4,38,2,4,6],"span":[667,11,22]},{"path":[4,38,2,4,1],"span":[667,23,33]},{"path":[4,38,2,4,3],"span":[667,36,37]},{"path":[4,38,2,5],"span":[668,2,36]},{"path":[4,38,2,5,4],"span":[668,2,10]},{"path":[4,38,2,5,5],"span":[668,11,17]},{"path":[4,38,2,5,1],"span":[668,18,31]},{"path":[4,38,2,5,3],"span":[668,34,35]},{"path":[4,38,2,6],"span":[669,2,34]},{"path":[4,38,2,6,4],"span":[669,2,10]},{"path":[4,38,2,6,5],"span":[669,11,17]},{"path":[4,38,2,6,1],"span":[669,18,29]},{"path":[4,38,2,6,3],"span":[669,32,33]},{"path":[4,38,2,7],"span":[670,2,35]},{"path":[4,38,2,7,4],"span":[670,2,10]},{"path":[4,38,2,7,5],"span":[670,11,17]},{"path":[4,38,2,7,1],"span":[670,18,30]},{"path":[4,38,2,7,3],"span":[670,33,34]},{"path":[4,38,2,8],"span":[671,2,40]},{"path":[4,38,2,8,4],"span":[671,2,10]},{"path":[4,38,2,8,5],"span":[671,11,16]},{"path":[4,38,2,8,1],"span":[671,18,35]},{"path":[4,38,2,8,3],"span":[671,38,39]},{"path":[4,38,2,9],"span":[672,2,42]},{"path":[4,38,2,9,4],"span":[672,2,10]},{"path":[4,38,2,9,6],"span":[672,11,22]},{"path":[4,38,2,9,1],"span":[672,23,36]},{"path":[4,38,2,9,3],"span":[672,39,41]},{"path":[4,38,2,10],"span":[673,2,44]},{"path":[4,38,2,10,4],"span":[673,2,10]},{"path":[4,38,2,10,5],"span":[673,11,16]},{"path":[4,38,2,10,1],"span":[673,18,38]},{"path":[4,38,2,10,3],"span":[673,41,43]},{"path":[4,39],"span":[679,0,686,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,39,1],"span":[679,8,22]},{"path":[4,39,2,0],"span":[680,2,30]},{"path":[4,39,2,0,4],"span":[680,2,10]},{"path":[4,39,2,0,5],"span":[680,11,17]},{"path":[4,39,2,0,1],"span":[680,18,25]},{"path":[4,39,2,0,3],"span":[680,28,29]},{"path":[4,39,2,1],"span":[681,2,30]},{"path":[4,39,2,1,4],"span":[681,2,10]},{"path":[4,39,2,1,5],"span":[681,11,17]},{"path":[4,39,2,1,1],"span":[681,18,25]},{"path":[4,39,2,1,3],"span":[681,28,29]},{"path":[4,39,2,2],"span":[682,2,31]},{"path":[4,39,2,2,4],"span":[682,2,10]},{"path":[4,39,2,2,5],"span":[682,11,17]},{"path":[4,39,2,2,1],"span":[682,18,26]},{"path":[4,39,2,2,3],"span":[682,29,30]},{"path":[4,39,2,3],"span":[683,2,27]},{"path":[4,39,2,3,4],"span":[683,2,10]},{"path":[4,39,2,3,5],"span":[683,11,17]},{"path":[4,39,2,3,1],"span":[683,18,22]},{"path":[4,39,2,3,3],"span":[683,25,26]},{"path":[4,39,2,4],"span":[684,2,27]},{"path":[4,39,2,4,4],"span":[684,2,10]},{"path":[4,39,2,4,5],"span":[684,11,17]},{"path":[4,39,2,4,1],"span":[684,18,22]},{"path":[4,39,2,4,3],"span":[684,25,26]},{"path":[4,39,2,5],"span":[685,2,31]},{"path":[4,39,2,5,4],"span":[685,2,10]},{"path":[4,39,2,5,5],"span":[685,11,17]},{"path":[4,39,2,5,1],"span":[685,18,26]},{"path":[4,39,2,5,3],"span":[685,29,30]},{"path":[4,40],"span":[691,0,702,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,40,1],"span":[691,8,18]},{"path":[4,40,2,0],"span":[692,2,37]},{"path":[4,40,2,0,4],"span":[692,2,10]},{"path":[4,40,2,0,5],"span":[692,11,17]},{"path":[4,40,2,0,1],"span":[692,18,32]},{"path":[4,40,2,0,3],"span":[692,35,36]},{"path":[4,40,2,1],"span":[693,2,30]},{"path":[4,40,2,1,4],"span":[693,2,10]},{"path":[4,40,2,1,5],"span":[693,11,17]},{"path":[4,40,2,1,1],"span":[693,18,25]},{"path":[4,40,2,1,3],"span":[693,28,29]},{"path":[4,40,2,2],"span":[694,2,27]},{"path":[4,40,2,2,4],"span":[694,2,10]},{"path":[4,40,2,2,5],"span":[694,11,17]},{"path":[4,40,2,2,1],"span":[694,18,22]},{"path":[4,40,2,2,3],"span":[694,25,26]},{"path":[4,40,2,3],"span":[695,2,41]},{"path":[4,40,2,3,4],"span":[695,2,10]},{"path":[4,40,2,3,5],"span":[695,11,17]},{"path":[4,40,2,3,1],"span":[695,18,36]},{"path":[4,40,2,3,3],"span":[695,39,40]},{"path":[4,40,2,4],"span":[696,2,40]},{"path":[4,40,2,4,4],"span":[696,2,10]},{"path":[4,40,2,4,5],"span":[696,11,17]},{"path":[4,40,2,4,1],"span":[696,18,35]},{"path":[4,40,2,4,3],"span":[696,38,39]},{"path":[4,40,2,5],"span":[697,2,37]},{"path":[4,40,2,5,4],"span":[697,2,10]},{"path":[4,40,2,5,5],"span":[697,11,17]},{"path":[4,40,2,5,1],"span":[697,18,32]},{"path":[4,40,2,5,3],"span":[697,35,36]},{"path":[4,40,2,6],"span":[700,2,34],"leadingComments":" from mac\n"},{"path":[4,40,2,6,4],"span":[700,2,10]},{"path":[4,40,2,6,5],"span":[700,11,17]},{"path":[4,40,2,6,1],"span":[700,18,29]},{"path":[4,40,2,6,3],"span":[700,32,33]},{"path":[4,40,2,7],"span":[701,2,32]},{"path":[4,40,2,7,4],"span":[701,2,10]},{"path":[4,40,2,7,5],"span":[701,11,17]},{"path":[4,40,2,7,1],"span":[701,18,27]},{"path":[4,40,2,7,3],"span":[701,30,31]},{"path":[4,41],"span":[707,0,712,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,41,1],"span":[707,8,22]},{"path":[4,41,2,0],"span":[708,2,30]},{"path":[4,41,2,0,4],"span":[708,2,10]},{"path":[4,41,2,0,5],"span":[708,11,17]},{"path":[4,41,2,0,1],"span":[708,18,25]},{"path":[4,41,2,0,3],"span":[708,28,29]},{"path":[4,41,2,1],"span":[709,2,28]},{"path":[4,41,2,1,4],"span":[709,2,10]},{"path":[4,41,2,1,5],"span":[709,11,17]},{"path":[4,41,2,1,1],"span":[709,18,22]},{"path":[4,41,2,1,3],"span":[709,26,27]},{"path":[4,41,2,2],"span":[710,2,27]},{"path":[4,41,2,2,4],"span":[710,2,10]},{"path":[4,41,2,2,5],"span":[710,11,17]},{"path":[4,41,2,2,1],"span":[710,18,22]},{"path":[4,41,2,2,3],"span":[710,25,26]},{"path":[4,41,2,3],"span":[711,2,32]},{"path":[4,41,2,3,4],"span":[711,2,10]},{"path":[4,41,2,3,6],"span":[711,11,22]},{"path":[4,41,2,3,1],"span":[711,23,27]},{"path":[4,41,2,3,3],"span":[711,30,31]},{"path":[4,42],"span":[717,0,723,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,42,1],"span":[717,8,22]},{"path":[4,42,2,0],"span":[718,2,27],"trailingComments":" caption\n"},{"path":[4,42,2,0,4],"span":[718,2,10]},{"path":[4,42,2,0,5],"span":[718,11,17]},{"path":[4,42,2,0,1],"span":[718,18,22]},{"path":[4,42,2,0,3],"span":[718,25,26]},{"path":[4,42,2,1],"span":[719,2,27],"trailingComments":" executable_path\n"},{"path":[4,42,2,1,4],"span":[719,2,10]},{"path":[4,42,2,1,5],"span":[719,11,17]},{"path":[4,42,2,1,1],"span":[719,18,22]},{"path":[4,42,2,1,3],"span":[719,25,26]},{"path":[4,42,2,2],"span":[720,2,29]},{"path":[4,42,2,2,4],"span":[720,2,10]},{"path":[4,42,2,2,5],"span":[720,11,16]},{"path":[4,42,2,2,1],"span":[720,17,24]},{"path":[4,42,2,2,3],"span":[720,27,28]},{"path":[4,42,2,3],"span":[721,2,30],"trailingComments":" windows: 0 = LOWEST , 31 = HIGHEST, as per table: https://learn.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities\n"},{"path":[4,42,2,3,4],"span":[721,2,10]},{"path":[4,42,2,3,5],"span":[721,11,16]},{"path":[4,42,2,3,1],"span":[721,17,25]},{"path":[4,42,2,3,3],"span":[721,28,29]},{"path":[4,42,2,4],"span":[722,2,29]},{"path":[4,42,2,4,4],"span":[722,2,10]},{"path":[4,42,2,4,5],"span":[722,11,17]},{"path":[4,42,2,4,1],"span":[722,18,24]},{"path":[4,42,2,4,3],"span":[722,27,28]},{"path":[4,43],"span":[728,0,739,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,43,1],"span":[728,8,30]},{"path":[4,43,2,0],"span":[729,2,27]},{"path":[4,43,2,0,4],"span":[729,2,10]},{"path":[4,43,2,0,5],"span":[729,11,17]},{"path":[4,43,2,0,1],"span":[729,18,22]},{"path":[4,43,2,0,3],"span":[729,25,26]},{"path":[4,43,2,1],"span":[730,2,30]},{"path":[4,43,2,1,4],"span":[730,2,10]},{"path":[4,43,2,1,5],"span":[730,11,17]},{"path":[4,43,2,1,1],"span":[730,18,25]},{"path":[4,43,2,1,3],"span":[730,28,29]},{"path":[4,43,2,2],"span":[731,2,31]},{"path":[4,43,2,2,4],"span":[731,2,10]},{"path":[4,43,2,2,5],"span":[731,11,17]},{"path":[4,43,2,2,1],"span":[731,18,26]},{"path":[4,43,2,2,3],"span":[731,29,30]},{"path":[4,43,2,3],"span":[732,2,33]},{"path":[4,43,2,3,4],"span":[732,2,10]},{"path":[4,43,2,3,5],"span":[732,11,17]},{"path":[4,43,2,3,1],"span":[732,18,28]},{"path":[4,43,2,3,3],"span":[732,31,32]},{"path":[4,43,2,4],"span":[733,2,33]},{"path":[4,43,2,4,4],"span":[733,2,10]},{"path":[4,43,2,4,5],"span":[733,11,17]},{"path":[4,43,2,4,1],"span":[733,18,28]},{"path":[4,43,2,4,3],"span":[733,31,32]},{"path":[4,43,2,5],"span":[734,2,28]},{"path":[4,43,2,5,4],"span":[734,2,10]},{"path":[4,43,2,5,5],"span":[734,11,17]},{"path":[4,43,2,5,1],"span":[734,18,23]},{"path":[4,43,2,5,3],"span":[734,26,27]},{"path":[4,43,2,6],"span":[735,2,28]},{"path":[4,43,2,6,4],"span":[735,2,10]},{"path":[4,43,2,6,5],"span":[735,11,15]},{"path":[4,43,2,6,1],"span":[735,16,23]},{"path":[4,43,2,6,3],"span":[735,26,27]},{"path":[4,43,2,7],"span":[736,2,33]},{"path":[4,43,2,7,4],"span":[736,2,10]},{"path":[4,43,2,7,5],"span":[736,11,15]},{"path":[4,43,2,7,1],"span":[736,16,28]},{"path":[4,43,2,7,3],"span":[736,31,32]},{"path":[4,43,2,8],"span":[737,2,32]},{"path":[4,43,2,8,4],"span":[737,2,10]},{"path":[4,43,2,8,5],"span":[737,11,15]},{"path":[4,43,2,8,1],"span":[737,16,27]},{"path":[4,43,2,8,3],"span":[737,30,31]},{"path":[4,43,2,9],"span":[738,2,38]},{"path":[4,43,2,9,4],"span":[738,2,10]},{"path":[4,43,2,9,5],"span":[738,11,15]},{"path":[4,43,2,9,1],"span":[738,16,32]},{"path":[4,43,2,9,3],"span":[738,35,37]},{"path":[4,44],"span":[744,0,748,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,44,1],"span":[744,8,31]},{"path":[4,44,8,0],"span":[745,2,747,3]},{"path":[4,44,8,0,1],"span":[745,8,10]},{"path":[4,44,2,0],"span":[746,6,32]},{"path":[4,44,2,0,6],"span":[746,6,23]},{"path":[4,44,2,0,1],"span":[746,24,27]},{"path":[4,44,2,0,3],"span":[746,30,31]},{"path":[4,45],"span":[753,0,764,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,45,1],"span":[753,8,25]},{"path":[4,45,2,0],"span":[754,2,32]},{"path":[4,45,2,0,4],"span":[754,2,10]},{"path":[4,45,2,0,5],"span":[754,11,15]},{"path":[4,45,2,0,1],"span":[754,16,27]},{"path":[4,45,2,0,3],"span":[754,30,31]},{"path":[4,45,2,1],"span":[755,2,38]},{"path":[4,45,2,1,4],"span":[755,2,10]},{"path":[4,45,2,1,5],"span":[755,11,17]},{"path":[4,45,2,1,1],"span":[755,18,33]},{"path":[4,45,2,1,3],"span":[755,36,37]},{"path":[4,45,2,2],"span":[756,2,37]},{"path":[4,45,2,2,4],"span":[756,2,10]},{"path":[4,45,2,2,5],"span":[756,11,15]},{"path":[4,45,2,2,1],"span":[756,16,32]},{"path":[4,45,2,2,3],"span":[756,35,36]},{"path":[4,45,2,3],"span":[757,2,27]},{"path":[4,45,2,3,4],"span":[757,2,10]},{"path":[4,45,2,3,5],"span":[757,11,17]},{"path":[4,45,2,3,1],"span":[757,18,22]},{"path":[4,45,2,3,3],"span":[757,25,26]},{"path":[4,45,2,4],"span":[758,2,50]},{"path":[4,45,2,4,4],"span":[758,2,10]},{"path":[4,45,2,4,5],"span":[758,11,15]},{"path":[4,45,2,4,1],"span":[758,16,45]},{"path":[4,45,2,4,3],"span":[758,48,49]},{"path":[4,45,2,5],"span":[759,2,37]},{"path":[4,45,2,5,4],"span":[759,2,10]},{"path":[4,45,2,5,5],"span":[759,11,15]},{"path":[4,45,2,5,1],"span":[759,16,32]},{"path":[4,45,2,5,3],"span":[759,35,36]},{"path":[4,45,2,6],"span":[760,2,37]},{"path":[4,45,2,6,4],"span":[760,2,10]},{"path":[4,45,2,6,5],"span":[760,11,15]},{"path":[4,45,2,6,1],"span":[760,16,32]},{"path":[4,45,2,6,3],"span":[760,35,36]},{"path":[4,45,2,7],"span":[761,2,40]},{"path":[4,45,2,7,4],"span":[761,2,10]},{"path":[4,45,2,7,5],"span":[761,11,15]},{"path":[4,45,2,7,1],"span":[761,16,35]},{"path":[4,45,2,7,3],"span":[761,38,39]},{"path":[4,45,2,8],"span":[762,2,44]},{"path":[4,45,2,8,4],"span":[762,2,10]},{"path":[4,45,2,8,6],"span":[762,11,22]},{"path":[4,45,2,8,1],"span":[762,23,38]},{"path":[4,45,2,8,3],"span":[762,41,43]},{"path":[4,45,2,9],"span":[763,2,43]},{"path":[4,45,2,9,4],"span":[763,2,10]},{"path":[4,45,2,9,5],"span":[763,11,17]},{"path":[4,45,2,9,1],"span":[763,18,37]},{"path":[4,45,2,9,3],"span":[763,40,42]},{"path":[4,46],"span":[770,0,779,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,46,1],"span":[770,8,14]},{"path":[4,46,8,0],"span":[771,2,775,3]},{"path":[4,46,8,0,1],"span":[771,8,14]},{"path":[4,46,2,0],"span":[772,4,36]},{"path":[4,46,2,0,6],"span":[772,4,23]},{"path":[4,46,2,0,1],"span":[772,24,31]},{"path":[4,46,2,0,3],"span":[772,34,35]},{"path":[4,46,2,1],"span":[773,4,39]},{"path":[4,46,2,1,6],"span":[773,4,26]},{"path":[4,46,2,1,1],"span":[773,27,34]},{"path":[4,46,2,1,3],"span":[773,37,38]},{"path":[4,46,2,2],"span":[774,4,41]},{"path":[4,46,2,2,6],"span":[774,4,24]},{"path":[4,46,2,2,1],"span":[774,25,36]},{"path":[4,46,2,2,3],"span":[774,39,40]},{"path":[4,46,2,3],"span":[777,2,29]},{"path":[4,46,2,3,4],"span":[777,2,10]},{"path":[4,46,2,3,5],"span":[777,11,17]},{"path":[4,46,2,3,1],"span":[777,18,22]},{"path":[4,46,2,3,3],"span":[777,25,28]},{"path":[4,46,2,4],"span":[778,2,36]},{"path":[4,46,2,4,4],"span":[778,2,10]},{"path":[4,46,2,4,5],"span":[778,11,17]},{"path":[4,46,2,4,1],"span":[778,18,29]},{"path":[4,46,2,4,3],"span":[778,32,35]},{"path":[4,47],"span":[784,0,803,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,47,1],"span":[784,8,27]},{"path":[4,47,2,0],"span":[785,2,34]},{"path":[4,47,2,0,4],"span":[785,2,10]},{"path":[4,47,2,0,5],"span":[785,11,15]},{"path":[4,47,2,0,1],"span":[785,17,29]},{"path":[4,47,2,0,3],"span":[785,32,33]},{"path":[4,47,2,1],"span":[786,2,33]},{"path":[4,47,2,1,4],"span":[786,2,10]},{"path":[4,47,2,1,5],"span":[786,11,15]},{"path":[4,47,2,1,1],"span":[786,17,28]},{"path":[4,47,2,1,3],"span":[786,31,32]},{"path":[4,47,2,2],"span":[787,2,38]},{"path":[4,47,2,2,4],"span":[787,2,10]},{"path":[4,47,2,2,5],"span":[787,11,15]},{"path":[4,47,2,2,1],"span":[787,17,33]},{"path":[4,47,2,2,3],"span":[787,36,37]},{"path":[4,47,2,3],"span":[788,2,36]},{"path":[4,47,2,3,4],"span":[788,2,10]},{"path":[4,47,2,3,5],"span":[788,11,17]},{"path":[4,47,2,3,1],"span":[788,18,31]},{"path":[4,47,2,3,3],"span":[788,34,35]},{"path":[4,47,2,4],"span":[789,2,32]},{"path":[4,47,2,4,4],"span":[789,2,10]},{"path":[4,47,2,4,5],"span":[789,11,16]},{"path":[4,47,2,4,1],"span":[789,18,27]},{"path":[4,47,2,4,3],"span":[789,30,31]},{"path":[4,47,2,5],"span":[790,2,32]},{"path":[4,47,2,5,4],"span":[790,2,10]},{"path":[4,47,2,5,5],"span":[790,11,17]},{"path":[4,47,2,5,1],"span":[790,18,27]},{"path":[4,47,2,5,3],"span":[790,30,31]},{"path":[4,47,2,6],"span":[791,2,49]},{"path":[4,47,2,6,4],"span":[791,2,10]},{"path":[4,47,2,6,5],"span":[791,11,16]},{"path":[4,47,2,6,1],"span":[791,18,44]},{"path":[4,47,2,6,3],"span":[791,47,48]},{"path":[4,47,2,7],"span":[792,2,34]},{"path":[4,47,2,7,4],"span":[792,2,10]},{"path":[4,47,2,7,5],"span":[792,11,17]},{"path":[4,47,2,7,1],"span":[792,18,30]},{"path":[4,47,2,7,3],"span":[792,32,33]},{"path":[4,47,2,8],"span":[793,2,29]},{"path":[4,47,2,8,4],"span":[793,2,10]},{"path":[4,47,2,8,5],"span":[793,11,15]},{"path":[4,47,2,8,1],"span":[793,17,24]},{"path":[4,47,2,8,3],"span":[793,27,28]},{"path":[4,47,2,9],"span":[794,2,34]},{"path":[4,47,2,9,4],"span":[794,2,10]},{"path":[4,47,2,9,5],"span":[794,11,17]},{"path":[4,47,2,9,1],"span":[794,18,28]},{"path":[4,47,2,9,3],"span":[794,31,33]},{"path":[4,47,2,10],"span":[795,2,34]},{"path":[4,47,2,10,4],"span":[795,2,10]},{"path":[4,47,2,10,5],"span":[795,11,17]},{"path":[4,47,2,10,1],"span":[795,18,28]},{"path":[4,47,2,10,3],"span":[795,31,33]},{"path":[4,47,2,11],"span":[796,2,29]},{"path":[4,47,2,11,4],"span":[796,2,10]},{"path":[4,47,2,11,5],"span":[796,11,17]},{"path":[4,47,2,11,1],"span":[796,18,23]},{"path":[4,47,2,11,3],"span":[796,26,28]},{"path":[4,47,2,12],"span":[797,2,30]},{"path":[4,47,2,12,4],"span":[797,2,10]},{"path":[4,47,2,12,5],"span":[797,11,17]},{"path":[4,47,2,12,1],"span":[797,18,24]},{"path":[4,47,2,12,3],"span":[797,27,29]},{"path":[4,47,2,13],"span":[798,2,30]},{"path":[4,47,2,13,4],"span":[798,2,10]},{"path":[4,47,2,13,5],"span":[798,11,16]},{"path":[4,47,2,13,1],"span":[798,18,24]},{"path":[4,47,2,13,3],"span":[798,27,29]},{"path":[4,47,2,14],"span":[799,2,28]},{"path":[4,47,2,14,4],"span":[799,2,10]},{"path":[4,47,2,14,5],"span":[799,11,17]},{"path":[4,47,2,14,1],"span":[799,18,22]},{"path":[4,47,2,14,3],"span":[799,25,27]},{"path":[4,47,2,15],"span":[800,2,35]},{"path":[4,47,2,15,4],"span":[800,2,10]},{"path":[4,47,2,15,5],"span":[800,11,17]},{"path":[4,47,2,15,1],"span":[800,18,29]},{"path":[4,47,2,15,3],"span":[800,32,34]},{"path":[4,47,2,16],"span":[801,2,31]},{"path":[4,47,2,16,4],"span":[801,2,10]},{"path":[4,47,2,16,5],"span":[801,11,17]},{"path":[4,47,2,16,1],"span":[801,18,25]},{"path":[4,47,2,16,3],"span":[801,28,30]},{"path":[4,47,2,17],"span":[802,2,36]},{"path":[4,47,2,17,4],"span":[802,2,10]},{"path":[4,47,2,17,5],"span":[802,11,17]},{"path":[4,47,2,17,1],"span":[802,18,30]},{"path":[4,47,2,17,3],"span":[802,33,35]},{"path":[4,48],"span":[808,0,827,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,48,1],"span":[808,8,30]},{"path":[4,48,2,0],"span":[809,2,32]},{"path":[4,48,2,0,4],"span":[809,2,10]},{"path":[4,48,2,0,5],"span":[809,11,17]},{"path":[4,48,2,0,1],"span":[809,18,27]},{"path":[4,48,2,0,3],"span":[809,30,31]},{"path":[4,48,2,1],"span":[810,2,32]},{"path":[4,48,2,1,4],"span":[810,2,10]},{"path":[4,48,2,1,5],"span":[810,11,17]},{"path":[4,48,2,1,1],"span":[810,18,27]},{"path":[4,48,2,1,3],"span":[810,30,31]},{"path":[4,48,2,2],"span":[811,2,33]},{"path":[4,48,2,2,4],"span":[811,2,10]},{"path":[4,48,2,2,5],"span":[811,11,17]},{"path":[4,48,2,2,1],"span":[811,18,28]},{"path":[4,48,2,2,3],"span":[811,31,32]},{"path":[4,48,2,3],"span":[812,2,34]},{"path":[4,48,2,3,4],"span":[812,2,10]},{"path":[4,48,2,3,5],"span":[812,11,17]},{"path":[4,48,2,3,1],"span":[812,18,29]},{"path":[4,48,2,3,3],"span":[812,32,33]},{"path":[4,48,2,4],"span":[813,2,36]},{"path":[4,48,2,4,4],"span":[813,2,10]},{"path":[4,48,2,4,5],"span":[813,11,17]},{"path":[4,48,2,4,1],"span":[813,18,31]},{"path":[4,48,2,4,3],"span":[813,34,35]},{"path":[4,48,2,5],"span":[814,2,44]},{"path":[4,48,2,5,6],"span":[814,2,27]},{"path":[4,48,2,5,1],"span":[814,28,39]},{"path":[4,48,2,5,3],"span":[814,42,43]},{"path":[4,48,2,6],"span":[815,2,37]},{"path":[4,48,2,6,4],"span":[815,2,10]},{"path":[4,48,2,6,5],"span":[815,11,17]},{"path":[4,48,2,6,1],"span":[815,18,32]},{"path":[4,48,2,6,3],"span":[815,35,36]},{"path":[4,48,2,7],"span":[816,2,34]},{"path":[4,48,2,7,4],"span":[816,2,10]},{"path":[4,48,2,7,5],"span":[816,11,17]},{"path":[4,48,2,7,1],"span":[816,18,29]},{"path":[4,48,2,7,3],"span":[816,32,33]},{"path":[4,48,2,8],"span":[817,2,31]},{"path":[4,48,2,8,4],"span":[817,2,10]},{"path":[4,48,2,8,5],"span":[817,11,17]},{"path":[4,48,2,8,1],"span":[817,18,26]},{"path":[4,48,2,8,3],"span":[817,29,30]},{"path":[4,48,2,9],"span":[818,2,32]},{"path":[4,48,2,9,4],"span":[818,2,10]},{"path":[4,48,2,9,5],"span":[818,11,15]},{"path":[4,48,2,9,1],"span":[818,17,26]},{"path":[4,48,2,9,3],"span":[818,29,31]},{"path":[4,48,2,10],"span":[819,2,32]},{"path":[4,48,2,10,4],"span":[819,2,10]},{"path":[4,48,2,10,5],"span":[819,11,17]},{"path":[4,48,2,10,1],"span":[819,18,26]},{"path":[4,48,2,10,3],"span":[819,29,31]},{"path":[4,48,2,11],"span":[820,2,27]},{"path":[4,48,2,11,4],"span":[820,2,10]},{"path":[4,48,2,11,5],"span":[820,11,17]},{"path":[4,48,2,11,1],"span":[820,18,21]},{"path":[4,48,2,11,3],"span":[820,24,26]},{"path":[4,48,2,12],"span":[821,2,36]},{"path":[4,48,2,12,4],"span":[821,2,10]},{"path":[4,48,2,12,5],"span":[821,11,17]},{"path":[4,48,2,12,1],"span":[821,18,30]},{"path":[4,48,2,12,3],"span":[821,33,35]},{"path":[4,48,2,13],"span":[822,2,35]},{"path":[4,48,2,13,4],"span":[822,2,10]},{"path":[4,48,2,13,5],"span":[822,11,17]},{"path":[4,48,2,13,1],"span":[822,18,29]},{"path":[4,48,2,13,3],"span":[822,32,34]},{"path":[4,48,2,14],"span":[823,2,36]},{"path":[4,48,2,14,4],"span":[823,2,10]},{"path":[4,48,2,14,5],"span":[823,11,17]},{"path":[4,48,2,14,1],"span":[823,18,30]},{"path":[4,48,2,14,3],"span":[823,33,35]},{"path":[4,48,2,15],"span":[824,2,35]},{"path":[4,48,2,15,4],"span":[824,2,10]},{"path":[4,48,2,15,5],"span":[824,11,17]},{"path":[4,48,2,15,1],"span":[824,18,29]},{"path":[4,48,2,15,3],"span":[824,32,34]},{"path":[4,48,2,16],"span":[825,2,30]},{"path":[4,48,2,16,4],"span":[825,2,10]},{"path":[4,48,2,16,5],"span":[825,11,17]},{"path":[4,48,2,16,1],"span":[825,18,24]},{"path":[4,48,2,16,3],"span":[825,27,29]},{"path":[4,48,2,17],"span":[826,2,44]},{"path":[4,48,2,17,4],"span":[826,2,10]},{"path":[4,48,2,17,5],"span":[826,11,17]},{"path":[4,48,2,17,1],"span":[826,18,38]},{"path":[4,48,2,17,3],"span":[826,41,43]},{"path":[4,49],"span":[832,0,852,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,49,1],"span":[832,8,28]},{"path":[4,49,2,0],"span":[833,2,34]},{"path":[4,49,2,0,4],"span":[833,2,10]},{"path":[4,49,2,0,5],"span":[833,11,17]},{"path":[4,49,2,0,1],"span":[833,18,29]},{"path":[4,49,2,0,3],"span":[833,32,33]},{"path":[4,49,2,1],"span":[834,2,32]},{"path":[4,49,2,1,4],"span":[834,2,10]},{"path":[4,49,2,1,5],"span":[834,11,17]},{"path":[4,49,2,1,1],"span":[834,18,27]},{"path":[4,49,2,1,3],"span":[834,30,31]},{"path":[4,49,2,2],"span":[835,2,40]},{"path":[4,49,2,2,4],"span":[835,2,10]},{"path":[4,49,2,2,5],"span":[835,11,17]},{"path":[4,49,2,2,1],"span":[835,18,35]},{"path":[4,49,2,2,3],"span":[835,38,39]},{"path":[4,49,2,3],"span":[836,2,34]},{"path":[4,49,2,3,4],"span":[836,2,10]},{"path":[4,49,2,3,5],"span":[836,11,17]},{"path":[4,49,2,3,1],"span":[836,18,29]},{"path":[4,49,2,3,3],"span":[836,32,33]},{"path":[4,49,2,4],"span":[837,2,32]},{"path":[4,49,2,4,4],"span":[837,2,10]},{"path":[4,49,2,4,5],"span":[837,11,17]},{"path":[4,49,2,4,1],"span":[837,18,27]},{"path":[4,49,2,4,3],"span":[837,30,31]},{"path":[4,49,2,5],"span":[838,2,32]},{"path":[4,49,2,5,4],"span":[838,2,10]},{"path":[4,49,2,5,5],"span":[838,11,17]},{"path":[4,49,2,5,1],"span":[838,18,27]},{"path":[4,49,2,5,3],"span":[838,30,31]},{"path":[4,49,2,6],"span":[839,2,35]},{"path":[4,49,2,6,4],"span":[839,2,10]},{"path":[4,49,2,6,5],"span":[839,11,17]},{"path":[4,49,2,6,1],"span":[839,18,30]},{"path":[4,49,2,6,3],"span":[839,33,34]},{"path":[4,49,2,7],"span":[840,2,30]},{"path":[4,49,2,7,4],"span":[840,2,10]},{"path":[4,49,2,7,5],"span":[840,11,17]},{"path":[4,49,2,7,1],"span":[840,18,25]},{"path":[4,49,2,7,3],"span":[840,28,29]},{"path":[4,49,2,8],"span":[841,2,30]},{"path":[4,49,2,8,4],"span":[841,2,10]},{"path":[4,49,2,8,5],"span":[841,11,16]},{"path":[4,49,2,8,1],"span":[841,18,25]},{"path":[4,49,2,8,3],"span":[841,28,29]},{"path":[4,49,2,9],"span":[842,2,38]},{"path":[4,49,2,9,4],"span":[842,2,10]},{"path":[4,49,2,9,5],"span":[842,11,17]},{"path":[4,49,2,9,1],"span":[842,18,32]},{"path":[4,49,2,9,3],"span":[842,35,37]},{"path":[4,49,2,10],"span":[843,2,35]},{"path":[4,49,2,10,4],"span":[843,2,10]},{"path":[4,49,2,10,5],"span":[843,11,17]},{"path":[4,49,2,10,1],"span":[843,18,29]},{"path":[4,49,2,10,3],"span":[843,32,34]},{"path":[4,49,2,11],"span":[844,2,35]},{"path":[4,49,2,11,4],"span":[844,2,10]},{"path":[4,49,2,11,5],"span":[844,11,17]},{"path":[4,49,2,11,1],"span":[844,18,29]},{"path":[4,49,2,11,3],"span":[844,32,34]},{"path":[4,49,2,12],"span":[845,2,32]},{"path":[4,49,2,12,4],"span":[845,2,10]},{"path":[4,49,2,12,5],"span":[845,11,17]},{"path":[4,49,2,12,1],"span":[845,18,26]},{"path":[4,49,2,12,3],"span":[845,29,31]},{"path":[4,49,2,13],"span":[846,2,43]},{"path":[4,49,2,13,4],"span":[846,2,10]},{"path":[4,49,2,13,5],"span":[846,11,17]},{"path":[4,49,2,13,1],"span":[846,18,37]},{"path":[4,49,2,13,3],"span":[846,40,42]},{"path":[4,49,2,14],"span":[847,2,39]},{"path":[4,49,2,14,4],"span":[847,2,10]},{"path":[4,49,2,14,5],"span":[847,11,17]},{"path":[4,49,2,14,1],"span":[847,18,33]},{"path":[4,49,2,14,3],"span":[847,36,38]},{"path":[4,49,2,15],"span":[848,2,28]},{"path":[4,49,2,15,4],"span":[848,2,10]},{"path":[4,49,2,15,5],"span":[848,11,17]},{"path":[4,49,2,15,1],"span":[848,18,22]},{"path":[4,49,2,15,3],"span":[848,25,27]},{"path":[4,49,2,16],"span":[849,2,32]},{"path":[4,49,2,16,4],"span":[849,2,10]},{"path":[4,49,2,16,5],"span":[849,11,17]},{"path":[4,49,2,16,1],"span":[849,18,26]},{"path":[4,49,2,16,3],"span":[849,29,31]},{"path":[4,49,2,17],"span":[850,2,42]},{"path":[4,49,2,17,4],"span":[850,2,10]},{"path":[4,49,2,17,5],"span":[850,11,17]},{"path":[4,49,2,17,1],"span":[850,18,36]},{"path":[4,49,2,17,3],"span":[850,39,41]},{"path":[4,49,2,18],"span":[851,2,36]},{"path":[4,49,2,18,4],"span":[851,2,10]},{"path":[4,49,2,18,5],"span":[851,11,17]},{"path":[4,49,2,18,1],"span":[851,18,30]},{"path":[4,49,2,18,3],"span":[851,33,35]},{"path":[4,50],"span":[857,0,866,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,50,1],"span":[857,8,17]},{"path":[4,50,2,0],"span":[858,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,50,2,0,4],"span":[858,2,10]},{"path":[4,50,2,0,5],"span":[858,11,17]},{"path":[4,50,2,0,1],"span":[858,18,25]},{"path":[4,50,2,0,3],"span":[858,28,29]},{"path":[4,50,2,1],"span":[859,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,50,2,1,4],"span":[859,2,10]},{"path":[4,50,2,1,5],"span":[859,11,17]},{"path":[4,50,2,1,1],"span":[859,18,27]},{"path":[4,50,2,1,3],"span":[859,30,31]},{"path":[4,50,2,2],"span":[860,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,50,2,2,4],"span":[860,2,10]},{"path":[4,50,2,2,5],"span":[860,11,17]},{"path":[4,50,2,2,1],"span":[860,18,30]},{"path":[4,50,2,2,3],"span":[860,33,34]},{"path":[4,50,2,3],"span":[862,2,27],"trailingComments":" Linux\n"},{"path":[4,50,2,3,4],"span":[862,2,10]},{"path":[4,50,2,3,5],"span":[862,11,17]},{"path":[4,50,2,3,1],"span":[862,18,22]},{"path":[4,50,2,3,3],"span":[862,25,26]},{"path":[4,50,2,4],"span":[863,2,37],"trailingComments":" Linux\n"},{"path":[4,50,2,4,4],"span":[863,2,10]},{"path":[4,50,2,4,5],"span":[863,11,17]},{"path":[4,50,2,4,1],"span":[863,18,32]},{"path":[4,50,2,4,3],"span":[863,35,36]},{"path":[4,50,2,5],"span":[864,2,45],"trailingComments":" Linux\n"},{"path":[4,50,2,5,4],"span":[864,2,10]},{"path":[4,50,2,5,5],"span":[864,11,17]},{"path":[4,50,2,5,1],"span":[864,18,40]},{"path":[4,50,2,5,3],"span":[864,43,44]},{"path":[4,50,2,6],"span":[865,2,29],"trailingComments":" Linux\n"},{"path":[4,50,2,6,4],"span":[865,2,10]},{"path":[4,50,2,6,5],"span":[865,11,17]},{"path":[4,50,2,6,1],"span":[865,18,24]},{"path":[4,50,2,6,3],"span":[865,27,28]},{"path":[4,51],"span":[871,0,900,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,51,1],"span":[871,8,20]},{"path":[4,51,2,0],"span":[872,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,51,2,0,4],"span":[872,2,10]},{"path":[4,51,2,0,5],"span":[872,16,22]},{"path":[4,51,2,0,1],"span":[872,24,28]},{"path":[4,51,2,0,3],"span":[872,31,32]},{"path":[4,51,2,1],"span":[873,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,1,4],"span":[873,2,10]},{"path":[4,51,2,1,5],"span":[873,16,21]},{"path":[4,51,2,1,1],"span":[873,24,42]},{"path":[4,51,2,1,3],"span":[873,45,46]},{"path":[4,51,2,2],"span":[874,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,2,4],"span":[874,2,10]},{"path":[4,51,2,2,5],"span":[874,16,21]},{"path":[4,51,2,2,1],"span":[874,24,46]},{"path":[4,51,2,2,3],"span":[874,49,50]},{"path":[4,51,2,3],"span":[875,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,3,4],"span":[875,2,10]},{"path":[4,51,2,3,5],"span":[875,16,21]},{"path":[4,51,2,3,1],"span":[875,24,53]},{"path":[4,51,2,3,3],"span":[875,56,57]},{"path":[4,51,2,4],"span":[876,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,4,4],"span":[876,2,10]},{"path":[4,51,2,4,5],"span":[876,16,21]},{"path":[4,51,2,4,1],"span":[876,24,48]},{"path":[4,51,2,4,3],"span":[876,51,52]},{"path":[4,51,2,5],"span":[877,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,5,4],"span":[877,2,10]},{"path":[4,51,2,5,5],"span":[877,16,21]},{"path":[4,51,2,5,1],"span":[877,24,44]},{"path":[4,51,2,5,3],"span":[877,47,48]},{"path":[4,51,2,6],"span":[878,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,6,4],"span":[878,2,10]},{"path":[4,51,2,6,6],"span":[878,16,27]},{"path":[4,51,2,6,1],"span":[878,32,49]},{"path":[4,51,2,6,3],"span":[878,52,53]},{"path":[4,51,2,7],"span":[879,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,7,4],"span":[879,2,10]},{"path":[4,51,2,7,5],"span":[879,16,21]},{"path":[4,51,2,7,1],"span":[879,24,51]},{"path":[4,51,2,7,3],"span":[879,54,55]},{"path":[4,51,2,8],"span":[880,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,51,2,8,4],"span":[880,2,10]},{"path":[4,51,2,8,5],"span":[880,16,22]},{"path":[4,51,2,8,1],"span":[880,24,33]},{"path":[4,51,2,8,3],"span":[880,36,37]},{"path":[4,51,2,9],"span":[881,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,9,4],"span":[881,2,10]},{"path":[4,51,2,9,5],"span":[881,16,21]},{"path":[4,51,2,9,1],"span":[881,24,44]},{"path":[4,51,2,9,3],"span":[881,47,49]},{"path":[4,51,2,10],"span":[882,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,10,4],"span":[882,2,10]},{"path":[4,51,2,10,5],"span":[882,16,22]},{"path":[4,51,2,10,1],"span":[882,24,38]},{"path":[4,51,2,10,3],"span":[882,41,43]},{"path":[4,51,2,11],"span":[883,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,11,4],"span":[883,2,10]},{"path":[4,51,2,11,5],"span":[883,16,22]},{"path":[4,51,2,11,1],"span":[883,24,36]},{"path":[4,51,2,11,3],"span":[883,39,41]},{"path":[4,51,2,12],"span":[884,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,12,4],"span":[884,2,10]},{"path":[4,51,2,12,5],"span":[884,16,22]},{"path":[4,51,2,12,1],"span":[884,24,35]},{"path":[4,51,2,12,3],"span":[884,38,40]},{"path":[4,51,2,13],"span":[885,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,13,4],"span":[885,2,10]},{"path":[4,51,2,13,5],"span":[885,16,22]},{"path":[4,51,2,13,1],"span":[885,24,49]},{"path":[4,51,2,13,3],"span":[885,52,54]},{"path":[4,51,2,14],"span":[886,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,14,4],"span":[886,2,10]},{"path":[4,51,2,14,5],"span":[886,16,20]},{"path":[4,51,2,14,1],"span":[886,24,37]},{"path":[4,51,2,14,3],"span":[886,40,42]},{"path":[4,51,2,15],"span":[887,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,51,2,15,4],"span":[887,2,10]},{"path":[4,51,2,15,5],"span":[887,16,22]},{"path":[4,51,2,15,1],"span":[887,24,36]},{"path":[4,51,2,15,3],"span":[887,39,41]},{"path":[4,51,2,16],"span":[888,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,16,4],"span":[888,2,10]},{"path":[4,51,2,16,5],"span":[888,16,21]},{"path":[4,51,2,16,1],"span":[888,24,40]},{"path":[4,51,2,16,3],"span":[888,43,45]},{"path":[4,51,2,17],"span":[889,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,17,4],"span":[889,2,10]},{"path":[4,51,2,17,5],"span":[889,16,21]},{"path":[4,51,2,17,1],"span":[889,24,30]},{"path":[4,51,2,17,3],"span":[889,33,35]},{"path":[4,51,2,18],"span":[890,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,18,4],"span":[890,2,10]},{"path":[4,51,2,18,6],"span":[890,16,27]},{"path":[4,51,2,18,1],"span":[890,32,43]},{"path":[4,51,2,18,3],"span":[890,46,48]},{"path":[4,51,2,19],"span":[891,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,19,4],"span":[891,2,10]},{"path":[4,51,2,19,5],"span":[891,16,21]},{"path":[4,51,2,19,1],"span":[891,24,40]},{"path":[4,51,2,19,3],"span":[891,43,45]},{"path":[4,51,2,20],"span":[892,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,51,2,20,4],"span":[892,2,10]},{"path":[4,51,2,20,5],"span":[892,16,22]},{"path":[4,51,2,20,1],"span":[892,24,32]},{"path":[4,51,2,20,3],"span":[892,35,37]},{"path":[4,51,2,21],"span":[893,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,21,4],"span":[893,2,10]},{"path":[4,51,2,21,5],"span":[893,16,22]},{"path":[4,51,2,21,1],"span":[893,24,37]},{"path":[4,51,2,21,3],"span":[893,40,42]},{"path":[4,51,2,22],"span":[894,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,22,4],"span":[894,2,10]},{"path":[4,51,2,22,6],"span":[894,16,27]},{"path":[4,51,2,22,1],"span":[894,32,37]},{"path":[4,51,2,22,3],"span":[894,40,42]},{"path":[4,51,2,23],"span":[895,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,51,2,23,4],"span":[895,2,10]},{"path":[4,51,2,23,5],"span":[895,16,22]},{"path":[4,51,2,23,1],"span":[895,24,46]},{"path":[4,51,2,23,3],"span":[895,49,51]},{"path":[4,51,2,24],"span":[896,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,51,2,24,4],"span":[896,2,10]},{"path":[4,51,2,24,5],"span":[896,16,22]},{"path":[4,51,2,24,1],"span":[896,24,38]},{"path":[4,51,2,24,3],"span":[896,41,43]},{"path":[4,51,2,25],"span":[897,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,25,4],"span":[897,2,10]},{"path":[4,51,2,25,6],"span":[897,16,27]},{"path":[4,51,2,25,1],"span":[897,32,50]},{"path":[4,51,2,25,3],"span":[897,53,55]},{"path":[4,51,2,26],"span":[898,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,26,4],"span":[898,2,10]},{"path":[4,51,2,26,5],"span":[898,16,22]},{"path":[4,51,2,26,1],"span":[898,24,34]},{"path":[4,51,2,26,3],"span":[898,37,39]},{"path":[4,51,2,27],"span":[899,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,51,2,27,4],"span":[899,2,10]},{"path":[4,51,2,27,5],"span":[899,16,22]},{"path":[4,51,2,27,1],"span":[899,24,39]},{"path":[4,51,2,27,3],"span":[899,42,44]},{"path":[4,52],"span":[905,0,915,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,52,1],"span":[905,8,12]},{"path":[4,52,8,0],"span":[906,2,909,3]},{"path":[4,52,8,0,1],"span":[906,8,12]},{"path":[4,52,2,0],"span":[907,4,24]},{"path":[4,52,2,0,6],"span":[907,4,15]},{"path":[4,52,2,0,1],"span":[907,16,19]},{"path":[4,52,2,0,3],"span":[907,22,23]},{"path":[4,52,2,1],"span":[908,4,24]},{"path":[4,52,2,1,6],"span":[908,4,13]},{"path":[4,52,2,1,1],"span":[908,14,19]},{"path":[4,52,2,1,3],"span":[908,22,23]},{"path":[4,52,2,2],"span":[912,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,52,2,2,4],"span":[912,2,10]},{"path":[4,52,2,2,5],"span":[912,11,17]},{"path":[4,52,2,2,1],"span":[912,18,30]},{"path":[4,52,2,2,3],"span":[912,33,36]},{"path":[4,52,2,3],"span":[913,2,32]},{"path":[4,52,2,3,4],"span":[913,2,10]},{"path":[4,52,2,3,5],"span":[913,11,17]},{"path":[4,52,2,3,1],"span":[913,18,25]},{"path":[4,52,2,3,3],"span":[913,28,31]},{"path":[4,52,2,4],"span":[914,2,56]},{"path":[4,52,2,4,4],"span":[914,2,10]},{"path":[4,52,2,4,6],"span":[914,11,36]},{"path":[4,52,2,4,1],"span":[914,37,49]},{"path":[4,52,2,4,3],"span":[914,52,55]},{"path":[4,53],"span":[921,0,941,1],"leadingComments":"\n Windows Bios from Windows.Bios\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-bios\n"},{"path":[4,53,1],"span":[921,8,19]},{"path":[4,53,2,0],"span":[922,2,48]},{"path":[4,53,2,0,4],"span":[922,2,10]},{"path":[4,53,2,0,6],"span":[922,11,22]},{"path":[4,53,2,0,1],"span":[922,23,43]},{"path":[4,53,2,0,3],"span":[922,46,47]},{"path":[4,53,2,1],"span":[923,2,30]},{"path":[4,53,2,1,4],"span":[923,2,10]},{"path":[4,53,2,1,5],"span":[923,11,17]},{"path":[4,53,2,1,1],"span":[923,18,25]},{"path":[4,53,2,1,3],"span":[923,28,29]},{"path":[4,53,2,2],"span":[924,2,39]},{"path":[4,53,2,2,4],"span":[924,2,10]},{"path":[4,53,2,2,5],"span":[924,11,17]},{"path":[4,53,2,2,1],"span":[924,18,34]},{"path":[4,53,2,2,3],"span":[924,37,38]},{"path":[4,53,2,3],"span":[925,2,43]},{"path":[4,53,2,3,4],"span":[925,2,10]},{"path":[4,53,2,3,5],"span":[925,11,16]},{"path":[4,53,2,3,1],"span":[925,17,38]},{"path":[4,53,2,3,3],"span":[925,41,42]},{"path":[4,53,2,4],"span":[926,2,35]},{"path":[4,53,2,4,4],"span":[926,2,10]},{"path":[4,53,2,4,5],"span":[926,11,17]},{"path":[4,53,2,4,1],"span":[926,18,30]},{"path":[4,53,2,4,3],"span":[926,33,34]},{"path":[4,53,2,5],"span":[927,2,27]},{"path":[4,53,2,5,4],"span":[927,2,10]},{"path":[4,53,2,5,5],"span":[927,11,17]},{"path":[4,53,2,5,1],"span":[927,18,22]},{"path":[4,53,2,5,3],"span":[927,25,26]},{"path":[4,53,2,6],"span":[928,2,33]},{"path":[4,53,2,6,4],"span":[928,2,10]},{"path":[4,53,2,6,5],"span":[928,11,15]},{"path":[4,53,2,6,1],"span":[928,16,28]},{"path":[4,53,2,6,3],"span":[928,31,32]},{"path":[4,53,2,7],"span":[929,2,54]},{"path":[4,53,2,7,4],"span":[929,2,10]},{"path":[4,53,2,7,6],"span":[929,11,36]},{"path":[4,53,2,7,1],"span":[929,37,49]},{"path":[4,53,2,7,3],"span":[929,52,53]},{"path":[4,53,2,8],"span":[930,2,37]},{"path":[4,53,2,8,4],"span":[930,2,10]},{"path":[4,53,2,8,5],"span":[930,11,17]},{"path":[4,53,2,8,1],"span":[930,18,31]},{"path":[4,53,2,8,3],"span":[930,34,36]},{"path":[4,53,2,9],"span":[931,2,43]},{"path":[4,53,2,9,4],"span":[931,2,10]},{"path":[4,53,2,9,5],"span":[931,11,17]},{"path":[4,53,2,9,1],"span":[931,18,37]},{"path":[4,53,2,9,3],"span":[931,40,42]},{"path":[4,53,2,10],"span":[932,2,43]},{"path":[4,53,2,10,4],"span":[932,2,10]},{"path":[4,53,2,10,5],"span":[932,11,16]},{"path":[4,53,2,10,1],"span":[932,17,37]},{"path":[4,53,2,10,3],"span":[932,40,42]},{"path":[4,53,2,11],"span":[933,2,43]},{"path":[4,53,2,11,4],"span":[933,2,10]},{"path":[4,53,2,11,5],"span":[933,11,16]},{"path":[4,53,2,11,1],"span":[933,17,37]},{"path":[4,53,2,11,3],"span":[933,40,42]},{"path":[4,53,2,12],"span":[934,2,36]},{"path":[4,53,2,12,4],"span":[934,2,10]},{"path":[4,53,2,12,5],"span":[934,11,15]},{"path":[4,53,2,12,1],"span":[934,16,30]},{"path":[4,53,2,12,3],"span":[934,33,35]},{"path":[4,53,2,13],"span":[935,2,43]},{"path":[4,53,2,13,4],"span":[935,2,10]},{"path":[4,53,2,13,5],"span":[935,11,17]},{"path":[4,53,2,13,1],"span":[935,18,37]},{"path":[4,53,2,13,3],"span":[935,40,42]},{"path":[4,53,2,14],"span":[936,2,51]},{"path":[4,53,2,14,4],"span":[936,2,10]},{"path":[4,53,2,14,6],"span":[936,11,22]},{"path":[4,53,2,14,1],"span":[936,23,45]},{"path":[4,53,2,14,3],"span":[936,48,50]},{"path":[4,53,2,15],"span":[937,2,30]},{"path":[4,53,2,15,4],"span":[937,2,10]},{"path":[4,53,2,15,5],"span":[937,11,17]},{"path":[4,53,2,15,1],"span":[937,18,24]},{"path":[4,53,2,15,3],"span":[937,27,29]},{"path":[4,53,2,16],"span":[938,2,52]},{"path":[4,53,2,16,4],"span":[938,2,10]},{"path":[4,53,2,16,6],"span":[938,11,22]},{"path":[4,53,2,16,1],"span":[938,23,46]},{"path":[4,53,2,16,3],"span":[938,49,51]},{"path":[4,53,2,17],"span":[939,2,31]},{"path":[4,53,2,17,4],"span":[939,2,10]},{"path":[4,53,2,17,5],"span":[939,11,17]},{"path":[4,53,2,17,1],"span":[939,18,25]},{"path":[4,53,2,17,3],"span":[939,28,30]},{"path":[4,53,2,18],"span":[940,2,36]},{"path":[4,53,2,18,4],"span":[940,2,10]},{"path":[4,53,2,18,5],"span":[940,11,17]},{"path":[4,53,2,18,1],"span":[940,18,30]},{"path":[4,53,2,18,3],"span":[940,33,35]},{"path":[4,54],"span":[946,0,953,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,54,1],"span":[946,8,17]},{"path":[4,54,2,0],"span":[947,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,54,2,0,4],"span":[947,2,10]},{"path":[4,54,2,0,5],"span":[947,11,17]},{"path":[4,54,2,0,1],"span":[947,18,25]},{"path":[4,54,2,0,3],"span":[947,28,29]},{"path":[4,54,2,1],"span":[948,2,30]},{"path":[4,54,2,1,4],"span":[948,2,10]},{"path":[4,54,2,1,5],"span":[948,11,17]},{"path":[4,54,2,1,1],"span":[948,18,25]},{"path":[4,54,2,1,3],"span":[948,28,29]},{"path":[4,54,2,2],"span":[949,2,29]},{"path":[4,54,2,2,4],"span":[949,2,10]},{"path":[4,54,2,2,5],"span":[949,11,17]},{"path":[4,54,2,2,1],"span":[949,18,24]},{"path":[4,54,2,2,3],"span":[949,27,28]},{"path":[4,54,2,3],"span":[950,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,54,2,3,4],"span":[950,2,10]},{"path":[4,54,2,3,5],"span":[950,11,16]},{"path":[4,54,2,3,1],"span":[950,17,29]},{"path":[4,54,2,3,3],"span":[950,32,33]},{"path":[4,54,2,4],"span":[951,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,54,2,4,4],"span":[951,2,10]},{"path":[4,54,2,4,5],"span":[951,11,16]},{"path":[4,54,2,4,1],"span":[951,17,25]},{"path":[4,54,2,4,3],"span":[951,28,29]},{"path":[4,54,2,5],"span":[952,2,54]},{"path":[4,54,2,5,4],"span":[952,2,10]},{"path":[4,54,2,5,6],"span":[952,11,36]},{"path":[4,54,2,5,1],"span":[952,37,49]},{"path":[4,54,2,5,3],"span":[952,52,53]},{"path":[4,55],"span":[958,0,964,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,55,1],"span":[958,8,23]},{"path":[4,55,8,0],"span":[959,2,963,3]},{"path":[4,55,8,0,1],"span":[959,8,12]},{"path":[4,55,2,0],"span":[960,4,43]},{"path":[4,55,2,0,6],"span":[960,4,26]},{"path":[4,55,2,0,1],"span":[960,27,38]},{"path":[4,55,2,0,3],"span":[960,41,42]},{"path":[4,55,2,1],"span":[961,4,44]},{"path":[4,55,2,1,6],"span":[961,4,26]},{"path":[4,55,2,1,1],"span":[961,27,39]},{"path":[4,55,2,1,3],"span":[961,42,43]},{"path":[4,55,2,2],"span":[962,4,39]},{"path":[4,55,2,2,6],"span":[962,4,22]},{"path":[4,55,2,2,1],"span":[962,23,34]},{"path":[4,55,2,2,3],"span":[962,37,38]},{"path":[4,56],"span":[970,0,981,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery.\n WMI MappedValue to be taken from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-battery\n"},{"path":[4,56,1],"span":[970,8,30]},{"path":[4,56,2,0],"span":[971,2,40]},{"path":[4,56,2,0,4],"span":[971,2,10]},{"path":[4,56,2,0,6],"span":[971,11,22]},{"path":[4,56,2,0,1],"span":[971,23,35]},{"path":[4,56,2,0,3],"span":[971,38,39]},{"path":[4,56,2,1],"span":[972,2,42]},{"path":[4,56,2,1,4],"span":[972,2,10]},{"path":[4,56,2,1,6],"span":[972,11,22]},{"path":[4,56,2,1,1],"span":[972,23,37]},{"path":[4,56,2,1,3],"span":[972,40,41]},{"path":[4,56,2,2],"span":[973,2,37]},{"path":[4,56,2,2,4],"span":[973,2,10]},{"path":[4,56,2,2,6],"span":[973,11,22]},{"path":[4,56,2,2,1],"span":[973,23,32]},{"path":[4,56,2,2,3],"span":[973,35,36]},{"path":[4,56,2,3],"span":[974,2,43]},{"path":[4,56,2,3,4],"span":[974,2,10]},{"path":[4,56,2,3,6],"span":[974,11,22]},{"path":[4,56,2,3,1],"span":[974,23,38]},{"path":[4,56,2,3,3],"span":[974,41,42]},{"path":[4,56,2,4],"span":[975,2,32]},{"path":[4,56,2,4,4],"span":[975,2,10]},{"path":[4,56,2,4,5],"span":[975,11,17]},{"path":[4,56,2,4,1],"span":[975,18,27]},{"path":[4,56,2,4,3],"span":[975,30,31]},{"path":[4,56,2,5],"span":[976,2,27]},{"path":[4,56,2,5,4],"span":[976,2,10]},{"path":[4,56,2,5,5],"span":[976,11,17]},{"path":[4,56,2,5,1],"span":[976,18,22]},{"path":[4,56,2,5,3],"span":[976,25,26]},{"path":[4,56,2,6],"span":[977,2,57]},{"path":[4,56,2,6,4],"span":[977,2,10]},{"path":[4,56,2,6,6],"span":[977,11,22]},{"path":[4,56,2,6,1],"span":[977,23,52]},{"path":[4,56,2,6,3],"span":[977,55,56]},{"path":[4,56,2,7],"span":[978,2,47]},{"path":[4,56,2,7,4],"span":[978,2,10]},{"path":[4,56,2,7,5],"span":[978,11,15]},{"path":[4,56,2,7,1],"span":[978,16,42]},{"path":[4,56,2,7,3],"span":[978,45,46]},{"path":[4,56,2,8],"span":[979,2,44]},{"path":[4,56,2,8,4],"span":[979,2,10]},{"path":[4,56,2,8,5],"span":[979,11,17]},{"path":[4,56,2,8,1],"span":[979,18,39]},{"path":[4,56,2,8,3],"span":[979,42,43]},{"path":[4,56,2,9],"span":[980,2,30]},{"path":[4,56,2,9,4],"span":[980,2,10]},{"path":[4,56,2,9,5],"span":[980,11,17]},{"path":[4,56,2,9,1],"span":[980,18,24]},{"path":[4,56,2,9,3],"span":[980,27,29]},{"path":[4,57],"span":[987,0,999,1],"leadingComments":"\n Windows PortableBattery: WindowsPortableBattery.\n WMI MappedValue to be taken from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portablebattery\n"},{"path":[4,57,1],"span":[987,8,30]},{"path":[4,57,2,0],"span":[988,2,41]},{"path":[4,57,2,0,4],"span":[988,2,10]},{"path":[4,57,2,0,5],"span":[988,11,16]},{"path":[4,57,2,0,1],"span":[988,17,36]},{"path":[4,57,2,0,3],"span":[988,39,40]},{"path":[4,57,2,1],"span":[989,2,37]},{"path":[4,57,2,1,4],"span":[989,2,10]},{"path":[4,57,2,1,6],"span":[989,11,22]},{"path":[4,57,2,1,1],"span":[989,23,32]},{"path":[4,57,2,1,3],"span":[989,35,36]},{"path":[4,57,2,2],"span":[990,2,37]},{"path":[4,57,2,2,4],"span":[990,2,10]},{"path":[4,57,2,2,5],"span":[990,11,16]},{"path":[4,57,2,2,1],"span":[990,17,32]},{"path":[4,57,2,2,3],"span":[990,35,36]},{"path":[4,57,2,3],"span":[991,2,36]},{"path":[4,57,2,3,4],"span":[991,2,10]},{"path":[4,57,2,3,5],"span":[991,11,16]},{"path":[4,57,2,3,1],"span":[991,17,31]},{"path":[4,57,2,3,3],"span":[991,34,35]},{"path":[4,57,2,4],"span":[992,2,32]},{"path":[4,57,2,4,4],"span":[992,2,10]},{"path":[4,57,2,4,5],"span":[992,11,17]},{"path":[4,57,2,4,1],"span":[992,18,27]},{"path":[4,57,2,4,3],"span":[992,30,31]},{"path":[4,57,2,5],"span":[993,2,31]},{"path":[4,57,2,5,4],"span":[993,2,10]},{"path":[4,57,2,5,5],"span":[993,11,17]},{"path":[4,57,2,5,1],"span":[993,18,26]},{"path":[4,57,2,5,3],"span":[993,29,30]},{"path":[4,57,2,6],"span":[994,2,39]},{"path":[4,57,2,6,4],"span":[994,2,10]},{"path":[4,57,2,6,5],"span":[994,11,17]},{"path":[4,57,2,6,1],"span":[994,18,34]},{"path":[4,57,2,6,3],"span":[994,37,38]},{"path":[4,57,2,7],"span":[995,2,35]},{"path":[4,57,2,7,4],"span":[995,2,10]},{"path":[4,57,2,7,5],"span":[995,11,17]},{"path":[4,57,2,7,1],"span":[995,18,30]},{"path":[4,57,2,7,3],"span":[995,33,34]},{"path":[4,57,2,8],"span":[996,2,39]},{"path":[4,57,2,8,4],"span":[996,2,10]},{"path":[4,57,2,8,5],"span":[996,11,16]},{"path":[4,57,2,8,1],"span":[996,17,34]},{"path":[4,57,2,8,3],"span":[996,37,38]},{"path":[4,57,2,9],"span":[997,2,28]},{"path":[4,57,2,9,4],"span":[997,2,10]},{"path":[4,57,2,9,5],"span":[997,11,17]},{"path":[4,57,2,9,1],"span":[997,18,22]},{"path":[4,57,2,9,3],"span":[997,25,27]},{"path":[4,57,2,10],"span":[998,2,45]},{"path":[4,57,2,10,4],"span":[998,2,10]},{"path":[4,57,2,10,5],"span":[998,11,17]},{"path":[4,57,2,10,1],"span":[998,18,39]},{"path":[4,57,2,10,3],"span":[998,42,44]},{"path":[4,58],"span":[1004,0,1040,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,58,1],"span":[1004,8,26]},{"path":[4,58,2,0],"span":[1006,2,38],"leadingComments":" from battery power\n"},{"path":[4,58,2,0,4],"span":[1006,2,10]},{"path":[4,58,2,0,5],"span":[1006,11,16]},{"path":[4,58,2,0,1],"span":[1006,17,33]},{"path":[4,58,2,0,3],"span":[1006,36,37]},{"path":[4,58,2,1],"span":[1007,2,41]},{"path":[4,58,2,1,4],"span":[1007,2,10]},{"path":[4,58,2,1,5],"span":[1007,11,16]},{"path":[4,58,2,1,1],"span":[1007,17,36]},{"path":[4,58,2,1,3],"span":[1007,39,40]},{"path":[4,58,2,2],"span":[1008,2,36]},{"path":[4,58,2,2,4],"span":[1008,2,10]},{"path":[4,58,2,2,5],"span":[1008,11,16]},{"path":[4,58,2,2,1],"span":[1008,17,31]},{"path":[4,58,2,2,3],"span":[1008,34,35]},{"path":[4,58,2,3],"span":[1009,2,64]},{"path":[4,58,2,3,4],"span":[1009,2,10]},{"path":[4,58,2,3,5],"span":[1009,11,16]},{"path":[4,58,2,3,1],"span":[1009,17,59]},{"path":[4,58,2,3,3],"span":[1009,62,63]},{"path":[4,58,2,4],"span":[1010,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,58,2,4,4],"span":[1010,2,10]},{"path":[4,58,2,4,5],"span":[1010,11,15]},{"path":[4,58,2,4,1],"span":[1010,16,37]},{"path":[4,58,2,4,3],"span":[1010,40,41]},{"path":[4,58,2,5],"span":[1011,2,40]},{"path":[4,58,2,5,4],"span":[1011,2,10]},{"path":[4,58,2,5,5],"span":[1011,11,16]},{"path":[4,58,2,5,1],"span":[1011,17,35]},{"path":[4,58,2,5,3],"span":[1011,38,39]},{"path":[4,58,2,6],"span":[1012,2,32]},{"path":[4,58,2,6,4],"span":[1012,2,10]},{"path":[4,58,2,6,5],"span":[1012,11,15]},{"path":[4,58,2,6,1],"span":[1012,16,27]},{"path":[4,58,2,6,3],"span":[1012,30,31]},{"path":[4,58,2,7],"span":[1013,2,42]},{"path":[4,58,2,7,4],"span":[1013,2,10]},{"path":[4,58,2,7,5],"span":[1013,11,16]},{"path":[4,58,2,7,1],"span":[1013,17,37]},{"path":[4,58,2,7,3],"span":[1013,40,41]},{"path":[4,58,2,8],"span":[1014,2,37]},{"path":[4,58,2,8,4],"span":[1014,2,10]},{"path":[4,58,2,8,5],"span":[1014,11,16]},{"path":[4,58,2,8,1],"span":[1014,17,32]},{"path":[4,58,2,8,3],"span":[1014,35,36]},{"path":[4,58,2,9],"span":[1015,2,37]},{"path":[4,58,2,9,4],"span":[1015,2,10]},{"path":[4,58,2,9,5],"span":[1015,11,16]},{"path":[4,58,2,9,1],"span":[1015,17,31]},{"path":[4,58,2,9,3],"span":[1015,34,36]},{"path":[4,58,2,10],"span":[1016,2,39]},{"path":[4,58,2,10,4],"span":[1016,2,10]},{"path":[4,58,2,10,5],"span":[1016,11,15]},{"path":[4,58,2,10,1],"span":[1016,16,33]},{"path":[4,58,2,10,3],"span":[1016,36,38]},{"path":[4,58,2,11],"span":[1019,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,58,2,11,4],"span":[1019,2,10]},{"path":[4,58,2,11,5],"span":[1019,11,15]},{"path":[4,58,2,11,1],"span":[1019,16,32]},{"path":[4,58,2,11,3],"span":[1019,35,37]},{"path":[4,58,2,12],"span":[1020,2,38]},{"path":[4,58,2,12,4],"span":[1020,2,10]},{"path":[4,58,2,12,5],"span":[1020,11,15]},{"path":[4,58,2,12,1],"span":[1020,16,32]},{"path":[4,58,2,12,3],"span":[1020,35,37]},{"path":[4,58,2,13],"span":[1021,2,33]},{"path":[4,58,2,13,4],"span":[1021,2,10]},{"path":[4,58,2,13,5],"span":[1021,11,15]},{"path":[4,58,2,13,1],"span":[1021,16,27]},{"path":[4,58,2,13,3],"span":[1021,30,32]},{"path":[4,58,2,14],"span":[1022,2,39]},{"path":[4,58,2,14,4],"span":[1022,2,10]},{"path":[4,58,2,14,5],"span":[1022,11,16]},{"path":[4,58,2,14,1],"span":[1022,18,33]},{"path":[4,58,2,14,3],"span":[1022,36,38]},{"path":[4,58,2,15],"span":[1025,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,58,2,15,4],"span":[1025,2,10]},{"path":[4,58,2,15,5],"span":[1025,11,16]},{"path":[4,58,2,15,1],"span":[1025,17,28]},{"path":[4,58,2,15,3],"span":[1025,31,33]},{"path":[4,58,2,16],"span":[1026,2,37]},{"path":[4,58,2,16,4],"span":[1026,2,10]},{"path":[4,58,2,16,5],"span":[1026,11,17]},{"path":[4,58,2,16,1],"span":[1026,18,31]},{"path":[4,58,2,16,3],"span":[1026,34,36]},{"path":[4,58,2,17],"span":[1027,2,54]},{"path":[4,58,2,17,4],"span":[1027,2,10]},{"path":[4,58,2,17,5],"span":[1027,11,17]},{"path":[4,58,2,17,1],"span":[1027,18,48]},{"path":[4,58,2,17,3],"span":[1027,51,53]},{"path":[4,58,2,18],"span":[1030,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,58,2,18,4],"span":[1030,2,10]},{"path":[4,58,2,18,5],"span":[1030,11,17]},{"path":[4,58,2,18,1],"span":[1030,18,30]},{"path":[4,58,2,18,3],"span":[1030,33,35]},{"path":[4,58,2,19],"span":[1031,2,37]},{"path":[4,58,2,19,4],"span":[1031,2,10]},{"path":[4,58,2,19,5],"span":[1031,11,17]},{"path":[4,58,2,19,1],"span":[1031,18,31]},{"path":[4,58,2,19,3],"span":[1031,34,36]},{"path":[4,58,2,20],"span":[1032,2,37]},{"path":[4,58,2,20,4],"span":[1032,2,10]},{"path":[4,58,2,20,5],"span":[1032,11,17]},{"path":[4,58,2,20,1],"span":[1032,18,31]},{"path":[4,58,2,20,3],"span":[1032,34,36]},{"path":[4,58,2,21],"span":[1033,2,35]},{"path":[4,58,2,21,4],"span":[1033,2,10]},{"path":[4,58,2,21,5],"span":[1033,11,17]},{"path":[4,58,2,21,1],"span":[1033,18,29]},{"path":[4,58,2,21,3],"span":[1033,32,34]},{"path":[4,58,2,22],"span":[1034,2,40]},{"path":[4,58,2,22,4],"span":[1034,2,10]},{"path":[4,58,2,22,5],"span":[1034,11,17]},{"path":[4,58,2,22,1],"span":[1034,18,34]},{"path":[4,58,2,22,3],"span":[1034,37,39]},{"path":[4,58,2,23],"span":[1035,2,41]},{"path":[4,58,2,23,4],"span":[1035,2,10]},{"path":[4,58,2,23,5],"span":[1035,11,17]},{"path":[4,58,2,23,1],"span":[1035,18,35]},{"path":[4,58,2,23,3],"span":[1035,38,40]},{"path":[4,58,2,24],"span":[1036,2,37]},{"path":[4,58,2,24,4],"span":[1036,2,10]},{"path":[4,58,2,24,5],"span":[1036,11,17]},{"path":[4,58,2,24,1],"span":[1036,18,31]},{"path":[4,58,2,24,3],"span":[1036,34,36]},{"path":[4,58,2,25],"span":[1038,2,47]},{"path":[4,58,2,25,4],"span":[1038,2,10]},{"path":[4,58,2,25,5],"span":[1038,11,15]},{"path":[4,58,2,25,1],"span":[1038,16,41]},{"path":[4,58,2,25,3],"span":[1038,44,46]},{"path":[4,58,2,26],"span":[1039,2,41]},{"path":[4,58,2,26,4],"span":[1039,2,10]},{"path":[4,58,2,26,5],"span":[1039,11,15]},{"path":[4,58,2,26,1],"span":[1039,16,35]},{"path":[4,58,2,26,3],"span":[1039,38,40]},{"path":[4,59],"span":[1045,0,1067,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,59,1],"span":[1045,8,20]},{"path":[4,59,2,0],"span":[1046,2,36],"trailingComments":" Windows: \"HL-DT-ST DVD+-RW GHB0N\", Linux: \"VMware SATA CD00\", Mac: \"NECVMWar VMware SATA CD01\"\tWindows, Linux, Mac\n"},{"path":[4,59,2,0,4],"span":[1046,2,10]},{"path":[4,59,2,0,5],"span":[1046,16,22]},{"path":[4,59,2,0,1],"span":[1046,24,28]},{"path":[4,59,2,0,3],"span":[1046,34,35]},{"path":[4,59,2,1],"span":[1047,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,59,2,1,4],"span":[1047,2,10]},{"path":[4,59,2,1,5],"span":[1047,16,22]},{"path":[4,59,2,1,1],"span":[1047,24,30]},{"path":[4,59,2,1,3],"span":[1047,34,35]},{"path":[4,59,2,2],"span":[1048,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,59,2,2,4],"span":[1048,2,10]},{"path":[4,59,2,2,5],"span":[1048,16,22]},{"path":[4,59,2,2,1],"span":[1048,24,27]},{"path":[4,59,2,2,3],"span":[1048,34,35]},{"path":[4,59,2,3],"span":[1049,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,59,2,3,4],"span":[1049,2,10]},{"path":[4,59,2,3,6],"span":[1049,16,27]},{"path":[4,59,2,3,1],"span":[1049,32,44]},{"path":[4,59,2,3,3],"span":[1049,50,51]},{"path":[4,59,2,4],"span":[1050,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,59,2,4,4],"span":[1050,2,10]},{"path":[4,59,2,4,5],"span":[1050,16,22]},{"path":[4,59,2,4,1],"span":[1050,24,34]},{"path":[4,59,2,4,3],"span":[1050,42,43]},{"path":[4,59,2,5],"span":[1051,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,59,2,5,4],"span":[1051,2,10]},{"path":[4,59,2,5,5],"span":[1051,16,22]},{"path":[4,59,2,5,1],"span":[1051,24,36]},{"path":[4,59,2,5,3],"span":[1051,42,43]},{"path":[4,59,2,6],"span":[1052,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,59,2,6,4],"span":[1052,2,10]},{"path":[4,59,2,6,5],"span":[1052,16,22]},{"path":[4,59,2,6,1],"span":[1052,24,32]},{"path":[4,59,2,6,3],"span":[1052,42,43]},{"path":[4,59,2,7],"span":[1053,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,59,2,7,4],"span":[1053,2,10]},{"path":[4,59,2,7,5],"span":[1053,16,22]},{"path":[4,59,2,7,1],"span":[1053,24,33]},{"path":[4,59,2,7,3],"span":[1053,42,43]},{"path":[4,59,2,8],"span":[1054,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,59,2,8,4],"span":[1054,2,10]},{"path":[4,59,2,8,5],"span":[1054,16,22]},{"path":[4,59,2,8,1],"span":[1054,24,32]},{"path":[4,59,2,8,3],"span":[1054,42,43]},{"path":[4,59,2,9],"span":[1055,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,59,2,9,4],"span":[1055,2,10]},{"path":[4,59,2,9,5],"span":[1055,16,22]},{"path":[4,59,2,9,1],"span":[1055,24,34]},{"path":[4,59,2,9,3],"span":[1055,42,44]},{"path":[4,59,2,10],"span":[1056,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,59,2,10,4],"span":[1056,2,10]},{"path":[4,59,2,10,5],"span":[1056,16,22]},{"path":[4,59,2,10,1],"span":[1056,24,40]},{"path":[4,59,2,10,3],"span":[1056,50,52]},{"path":[4,59,2,11],"span":[1057,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,59,2,11,4],"span":[1057,2,10]},{"path":[4,59,2,11,5],"span":[1057,16,22]},{"path":[4,59,2,11,1],"span":[1057,24,34]},{"path":[4,59,2,11,3],"span":[1057,42,44]},{"path":[4,59,2,12],"span":[1058,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,59,2,12,4],"span":[1058,2,10]},{"path":[4,59,2,12,5],"span":[1058,16,22]},{"path":[4,59,2,12,1],"span":[1058,24,54]},{"path":[4,59,2,12,3],"span":[1058,58,60]},{"path":[4,59,2,13],"span":[1059,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,59,2,13,4],"span":[1059,2,10]},{"path":[4,59,2,13,5],"span":[1059,16,22]},{"path":[4,59,2,13,1],"span":[1059,24,36]},{"path":[4,59,2,13,3],"span":[1059,42,44]},{"path":[4,59,2,14],"span":[1060,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,59,2,14,4],"span":[1060,2,10]},{"path":[4,59,2,14,5],"span":[1060,16,22]},{"path":[4,59,2,14,1],"span":[1060,24,35]},{"path":[4,59,2,14,3],"span":[1060,42,44]},{"path":[4,59,2,15],"span":[1061,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,59,2,15,4],"span":[1061,2,10]},{"path":[4,59,2,15,5],"span":[1061,16,22]},{"path":[4,59,2,15,1],"span":[1061,24,40]},{"path":[4,59,2,15,3],"span":[1061,50,52]},{"path":[4,59,2,16],"span":[1062,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,59,2,16,4],"span":[1062,2,10]},{"path":[4,59,2,16,5],"span":[1062,16,21]},{"path":[4,59,2,16,1],"span":[1062,24,32]},{"path":[4,59,2,16,3],"span":[1062,42,44]},{"path":[4,59,2,17],"span":[1063,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,59,2,17,4],"span":[1063,2,10]},{"path":[4,59,2,17,5],"span":[1063,16,21]},{"path":[4,59,2,17,1],"span":[1063,24,41]},{"path":[4,59,2,17,3],"span":[1063,50,52]},{"path":[4,59,2,18],"span":[1064,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,59,2,18,4],"span":[1064,2,10]},{"path":[4,59,2,18,5],"span":[1064,16,21]},{"path":[4,59,2,18,1],"span":[1064,24,33]},{"path":[4,59,2,18,3],"span":[1064,42,44]},{"path":[4,59,2,19],"span":[1065,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,59,2,19,4],"span":[1065,2,10]},{"path":[4,59,2,19,5],"span":[1065,16,21]},{"path":[4,59,2,19,1],"span":[1065,24,38]},{"path":[4,59,2,19,3],"span":[1065,42,44]},{"path":[4,59,2,20],"span":[1066,2,52],"trailingComments":" \tMac\n"},{"path":[4,59,2,20,4],"span":[1066,2,10]},{"path":[4,59,2,20,5],"span":[1066,16,22]},{"path":[4,59,2,20,1],"span":[1066,24,46]},{"path":[4,59,2,20,3],"span":[1066,49,51]},{"path":[4,60],"span":[1072,0,1085,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,60,1],"span":[1072,8,19]},{"path":[4,60,2,0],"span":[1073,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,60,2,0,5],"span":[1073,2,8]},{"path":[4,60,2,0,1],"span":[1073,9,13]},{"path":[4,60,2,0,3],"span":[1073,16,17]},{"path":[4,60,2,1],"span":[1074,2,43],"trailingComments":" Windows\n"},{"path":[4,60,2,1,4],"span":[1074,2,10]},{"path":[4,60,2,1,5],"span":[1074,11,17]},{"path":[4,60,2,1,1],"span":[1074,24,38]},{"path":[4,60,2,1,3],"span":[1074,41,42]},{"path":[4,60,2,2],"span":[1075,2,37],"trailingComments":" Windows\n"},{"path":[4,60,2,2,4],"span":[1075,2,10]},{"path":[4,60,2,2,5],"span":[1075,11,15]},{"path":[4,60,2,2,1],"span":[1075,16,32]},{"path":[4,60,2,2,3],"span":[1075,35,36]},{"path":[4,60,2,3],"span":[1076,2,34],"trailingComments":" Windows\n"},{"path":[4,60,2,3,4],"span":[1076,2,10]},{"path":[4,60,2,3,5],"span":[1076,11,15]},{"path":[4,60,2,3,1],"span":[1076,16,29]},{"path":[4,60,2,3,3],"span":[1076,32,33]},{"path":[4,60,2,4],"span":[1077,2,37],"trailingComments":" Linux\n"},{"path":[4,60,2,4,4],"span":[1077,2,10]},{"path":[4,60,2,4,5],"span":[1077,11,17]},{"path":[4,60,2,4,1],"span":[1077,24,32]},{"path":[4,60,2,4,3],"span":[1077,35,36]},{"path":[4,60,2,5],"span":[1078,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,60,2,5,4],"span":[1078,2,10]},{"path":[4,60,2,5,5],"span":[1078,11,17]},{"path":[4,60,2,5,1],"span":[1078,24,36]},{"path":[4,60,2,5,3],"span":[1078,39,40]},{"path":[4,60,2,6],"span":[1079,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,60,2,6,4],"span":[1079,2,10]},{"path":[4,60,2,6,5],"span":[1079,11,17]},{"path":[4,60,2,6,1],"span":[1079,24,37]},{"path":[4,60,2,6,3],"span":[1079,40,41]},{"path":[4,60,2,7],"span":[1080,2,32],"trailingComments":" Windows\n"},{"path":[4,60,2,7,4],"span":[1080,2,10]},{"path":[4,60,2,7,5],"span":[1080,11,17]},{"path":[4,60,2,7,1],"span":[1080,24,27]},{"path":[4,60,2,7,3],"span":[1080,30,31]},{"path":[4,60,2,8],"span":[1081,2,33],"trailingComments":" Linux\n"},{"path":[4,60,2,8,4],"span":[1081,2,10]},{"path":[4,60,2,8,5],"span":[1081,11,17]},{"path":[4,60,2,8,1],"span":[1081,24,28]},{"path":[4,60,2,8,3],"span":[1081,31,32]},{"path":[4,60,2,9],"span":[1082,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,60,2,9,4],"span":[1082,2,10]},{"path":[4,60,2,9,5],"span":[1082,11,17]},{"path":[4,60,2,9,1],"span":[1082,24,31]},{"path":[4,60,2,9,3],"span":[1082,34,36]},{"path":[4,60,2,10],"span":[1084,2,41]},{"path":[4,60,2,10,4],"span":[1084,2,10]},{"path":[4,60,2,10,6],"span":[1084,11,28]},{"path":[4,60,2,10,1],"span":[1084,29,35]},{"path":[4,60,2,10,3],"span":[1084,38,40]},{"path":[4,61],"span":[1090,0,1095,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,61,1],"span":[1090,8,25]},{"path":[4,61,2,0],"span":[1091,2,40]},{"path":[4,61,2,0,4],"span":[1091,2,10]},{"path":[4,61,2,0,5],"span":[1091,11,17]},{"path":[4,61,2,0,1],"span":[1091,24,35]},{"path":[4,61,2,0,3],"span":[1091,38,39]},{"path":[4,61,2,1],"span":[1092,2,28]},{"path":[4,61,2,1,4],"span":[1092,2,10]},{"path":[4,61,2,1,5],"span":[1092,11,15]},{"path":[4,61,2,1,1],"span":[1092,16,23]},{"path":[4,61,2,1,3],"span":[1092,26,27]},{"path":[4,61,2,2],"span":[1093,2,32]},{"path":[4,61,2,2,4],"span":[1093,2,10]},{"path":[4,61,2,2,5],"span":[1093,11,17]},{"path":[4,61,2,2,1],"span":[1093,24,27]},{"path":[4,61,2,2,3],"span":[1093,30,31]},{"path":[4,61,2,3],"span":[1094,2,32]},{"path":[4,61,2,3,4],"span":[1094,2,10]},{"path":[4,61,2,3,6],"span":[1094,11,22]},{"path":[4,61,2,3,1],"span":[1094,23,27]},{"path":[4,61,2,3,3],"span":[1094,30,31]},{"path":[4,62],"span":[1100,0,1104,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,62,1],"span":[1100,8,14]},{"path":[4,62,2,0],"span":[1101,4,29]},{"path":[4,62,2,0,5],"span":[1101,4,9]},{"path":[4,62,2,0,1],"span":[1101,10,24]},{"path":[4,62,2,0,3],"span":[1101,27,28]},{"path":[4,62,2,1],"span":[1102,4,48]},{"path":[4,62,2,1,4],"span":[1102,4,12]},{"path":[4,62,2,1,6],"span":[1102,13,27]},{"path":[4,62,2,1,1],"span":[1102,28,43]},{"path":[4,62,2,1,3],"span":[1102,46,47]},{"path":[4,62,2,2],"span":[1103,4,42]},{"path":[4,62,2,2,4],"span":[1103,4,12]},{"path":[4,62,2,2,6],"span":[1103,13,24]},{"path":[4,62,2,2,1],"span":[1103,25,37]},{"path":[4,62,2,2,3],"span":[1103,40,41]},{"path":[4,63],"span":[1107,0,1130,1],"leadingComments":" MemoryEntry *"},{"path":[4,63,1],"span":[1107,8,22]},{"path":[4,63,2,0],"span":[1109,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,63,2,0,4],"span":[1109,4,12]},{"path":[4,63,2,0,5],"span":[1109,14,19]},{"path":[4,63,2,0,1],"span":[1109,20,24]},{"path":[4,63,2,0,3],"span":[1109,27,29]},{"path":[4,63,2,1],"span":[1110,4,40],"trailingComments":"\tLinux\n"},{"path":[4,63,2,1,4],"span":[1110,4,12]},{"path":[4,63,2,1,5],"span":[1110,13,19]},{"path":[4,63,2,1,1],"span":[1110,24,36]},{"path":[4,63,2,1,3],"span":[1110,38,39]},{"path":[4,63,2,2],"span":[1111,4,51],"trailingComments":"\tWindows\n"},{"path":[4,63,2,2,4],"span":[1111,4,12]},{"path":[4,63,2,2,5],"span":[1111,13,18]},{"path":[4,63,2,2,1],"span":[1111,24,46]},{"path":[4,63,2,2,3],"span":[1111,49,50]},{"path":[4,63,2,3],"span":[1112,4,46],"trailingComments":"\tWindows\n"},{"path":[4,63,2,3,4],"span":[1112,4,12]},{"path":[4,63,2,3,5],"span":[1112,13,18]},{"path":[4,63,2,3,1],"span":[1112,24,42]},{"path":[4,63,2,3,3],"span":[1112,44,45]},{"path":[4,63,2,4],"span":[1113,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,63,2,4,4],"span":[1113,4,12]},{"path":[4,63,2,4,5],"span":[1113,13,18]},{"path":[4,63,2,4,1],"span":[1113,24,34]},{"path":[4,63,2,4,3],"span":[1113,36,37]},{"path":[4,63,2,5],"span":[1114,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,63,2,5,4],"span":[1114,4,12]},{"path":[4,63,2,5,5],"span":[1114,13,19]},{"path":[4,63,2,5,1],"span":[1114,24,38]},{"path":[4,63,2,5,3],"span":[1114,40,41]},{"path":[4,63,2,6],"span":[1115,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,63,2,6,4],"span":[1115,4,12]},{"path":[4,63,2,6,6],"span":[1115,13,24]},{"path":[4,63,2,6,1],"span":[1115,32,43]},{"path":[4,63,2,6,3],"span":[1115,45,46]},{"path":[4,63,2,7],"span":[1116,4,49],"trailingComments":"\tWindows\n"},{"path":[4,63,2,7,4],"span":[1116,4,12]},{"path":[4,63,2,7,5],"span":[1116,13,18]},{"path":[4,63,2,7,1],"span":[1116,24,45]},{"path":[4,63,2,7,3],"span":[1116,47,48]},{"path":[4,63,2,8],"span":[1117,4,55],"trailingComments":"\tWindows\n"},{"path":[4,63,2,8,4],"span":[1117,4,12]},{"path":[4,63,2,8,6],"span":[1117,13,24]},{"path":[4,63,2,8,1],"span":[1117,32,51]},{"path":[4,63,2,8,3],"span":[1117,53,54]},{"path":[4,63,2,9],"span":[1118,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,63,2,9,4],"span":[1118,4,12]},{"path":[4,63,2,9,5],"span":[1118,13,19]},{"path":[4,63,2,9,1],"span":[1118,24,36]},{"path":[4,63,2,9,3],"span":[1118,38,39]},{"path":[4,63,2,10],"span":[1119,4,33],"trailingComments":"\tMac\n"},{"path":[4,63,2,10,4],"span":[1119,4,12]},{"path":[4,63,2,10,5],"span":[1119,13,19]},{"path":[4,63,2,10,1],"span":[1119,24,28]},{"path":[4,63,2,10,3],"span":[1119,30,32]},{"path":[4,63,2,11],"span":[1120,4,40],"trailingComments":"\tWindows\n"},{"path":[4,63,2,11,4],"span":[1120,4,12]},{"path":[4,63,2,11,5],"span":[1120,13,19]},{"path":[4,63,2,11,1],"span":[1120,24,35]},{"path":[4,63,2,11,3],"span":[1120,37,39]},{"path":[4,63,2,12],"span":[1121,4,44],"trailingComments":"\tWindows\n"},{"path":[4,63,2,12,4],"span":[1121,4,12]},{"path":[4,63,2,12,5],"span":[1121,13,18]},{"path":[4,63,2,12,1],"span":[1121,24,39]},{"path":[4,63,2,12,3],"span":[1121,41,43]},{"path":[4,63,2,13],"span":[1122,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,63,2,13,4],"span":[1122,4,12]},{"path":[4,63,2,13,5],"span":[1122,13,19]},{"path":[4,63,2,13,1],"span":[1122,24,37]},{"path":[4,63,2,13,3],"span":[1122,39,41]},{"path":[4,63,2,14],"span":[1123,4,32],"trailingComments":"\tLinux\n"},{"path":[4,63,2,14,4],"span":[1123,4,12]},{"path":[4,63,2,14,5],"span":[1123,13,19]},{"path":[4,63,2,14,1],"span":[1123,24,27]},{"path":[4,63,2,14,3],"span":[1123,29,31]},{"path":[4,63,2,15],"span":[1124,4,32],"trailingComments":"\tWindows\n"},{"path":[4,63,2,15,4],"span":[1124,4,12]},{"path":[4,63,2,15,5],"span":[1124,13,19]},{"path":[4,63,2,15,1],"span":[1124,24,27]},{"path":[4,63,2,15,3],"span":[1124,29,31]},{"path":[4,63,2,16],"span":[1125,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,63,2,16,4],"span":[1125,4,12]},{"path":[4,63,2,16,5],"span":[1125,13,18]},{"path":[4,63,2,16,1],"span":[1125,24,29]},{"path":[4,63,2,16,3],"span":[1125,31,33]},{"path":[4,63,2,17],"span":[1126,4,34],"trailingComments":"\tMac\n"},{"path":[4,63,2,17,4],"span":[1126,4,12]},{"path":[4,63,2,17,5],"span":[1126,13,19]},{"path":[4,63,2,17,1],"span":[1126,24,29]},{"path":[4,63,2,17,3],"span":[1126,31,33]},{"path":[4,63,2,18],"span":[1127,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,63,2,18,4],"span":[1127,4,12]},{"path":[4,63,2,18,5],"span":[1127,13,18]},{"path":[4,63,2,18,1],"span":[1127,24,35]},{"path":[4,63,2,18,3],"span":[1127,37,39]},{"path":[4,63,2,19],"span":[1128,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,63,2,19,4],"span":[1128,4,12]},{"path":[4,63,2,19,6],"span":[1128,13,24]},{"path":[4,63,2,19,1],"span":[1128,32,36]},{"path":[4,63,2,19,3],"span":[1128,38,40]},{"path":[4,63,2,20],"span":[1129,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,63,2,20,4],"span":[1129,4,12]},{"path":[4,63,2,20,6],"span":[1129,13,24]},{"path":[4,63,2,20,1],"span":[1129,32,43]},{"path":[4,63,2,20,3],"span":[1129,45,47]},{"path":[4,64],"span":[1134,0,1141,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,64,1],"span":[1134,8,19]},{"path":[4,64,2,0],"span":[1135,2,40],"trailingComments":"\tWindows\n"},{"path":[4,64,2,0,4],"span":[1135,2,10]},{"path":[4,64,2,0,5],"span":[1135,11,16]},{"path":[4,64,2,0,1],"span":[1135,24,36]},{"path":[4,64,2,0,3],"span":[1135,38,39]},{"path":[4,64,2,1],"span":[1136,2,36],"trailingComments":"\tWindows\n"},{"path":[4,64,2,1,4],"span":[1136,2,10]},{"path":[4,64,2,1,6],"span":[1136,11,22]},{"path":[4,64,2,1,1],"span":[1136,24,32]},{"path":[4,64,2,1,3],"span":[1136,34,35]},{"path":[4,64,2,2],"span":[1137,2,42],"trailingComments":"\tWindows\n"},{"path":[4,64,2,2,4],"span":[1137,2,10]},{"path":[4,64,2,2,5],"span":[1137,11,16]},{"path":[4,64,2,2,1],"span":[1137,24,38]},{"path":[4,64,2,2,3],"span":[1137,40,41]},{"path":[4,64,2,3],"span":[1138,2,51],"trailingComments":"\tWindows\n"},{"path":[4,64,2,3,4],"span":[1138,2,10]},{"path":[4,64,2,3,6],"span":[1138,11,22]},{"path":[4,64,2,3,1],"span":[1138,24,47]},{"path":[4,64,2,3,3],"span":[1138,49,50]},{"path":[4,64,2,4],"span":[1139,2,31],"trailingComments":"\tWindows\n"},{"path":[4,64,2,4,4],"span":[1139,2,10]},{"path":[4,64,2,4,5],"span":[1139,11,17]},{"path":[4,64,2,4,1],"span":[1139,24,27]},{"path":[4,64,2,4,3],"span":[1139,29,30]},{"path":[4,64,2,5],"span":[1140,2,31],"trailingComments":"\tWindows\n"},{"path":[4,64,2,5,4],"span":[1140,2,10]},{"path":[4,64,2,5,6],"span":[1140,11,22]},{"path":[4,64,2,5,1],"span":[1140,24,27]},{"path":[4,64,2,5,3],"span":[1140,29,30]},{"path":[4,65],"span":[1147,0,1150,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,65,1],"span":[1147,8,19]},{"path":[4,65,2,0],"span":[1148,2,18]},{"path":[4,65,2,0,5],"span":[1148,2,7]},{"path":[4,65,2,0,1],"span":[1148,8,13]},{"path":[4,65,2,0,3],"span":[1148,16,17]},{"path":[4,65,2,1],"span":[1149,2,27]},{"path":[4,65,2,1,4],"span":[1149,2,10]},{"path":[4,65,2,1,5],"span":[1149,11,17]},{"path":[4,65,2,1,1],"span":[1149,18,22]},{"path":[4,65,2,1,3],"span":[1149,25,26]},{"path":[4,66],"span":[1153,0,1156,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,66,1],"span":[1153,8,24]},{"path":[4,66,2,0],"span":[1154,2,42]},{"path":[4,66,2,0,6],"span":[1154,2,27]},{"path":[4,66,2,0,1],"span":[1154,28,37]},{"path":[4,66,2,0,3],"span":[1154,40,41]},{"path":[4,66,2,1],"span":[1155,2,31]},{"path":[4,66,2,1,4],"span":[1155,2,10]},{"path":[4,66,2,1,6],"span":[1155,11,18]},{"path":[4,66,2,1,1],"span":[1155,19,26]},{"path":[4,66,2,1,3],"span":[1155,29,30]},{"path":[4,67],"span":[1160,0,1181,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,67,1],"span":[1160,8,15]},{"path":[4,67,2,0],"span":[1162,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,67,2,0,4],"span":[1162,2,10]},{"path":[4,67,2,0,5],"span":[1162,11,16]},{"path":[4,67,2,0,1],"span":[1162,17,19]},{"path":[4,67,2,0,3],"span":[1162,22,23]},{"path":[4,67,2,1],"span":[1165,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,67,2,1,4],"span":[1165,2,10]},{"path":[4,67,2,1,5],"span":[1165,11,16]},{"path":[4,67,2,1,1],"span":[1165,17,24]},{"path":[4,67,2,1,3],"span":[1165,27,28]},{"path":[4,67,2,2],"span":[1167,2,23]},{"path":[4,67,2,2,5],"span":[1167,2,8]},{"path":[4,67,2,2,1],"span":[1167,9,18]},{"path":[4,67,2,2,3],"span":[1167,21,22]},{"path":[4,67,2,3],"span":[1168,2,24]},{"path":[4,67,2,3,5],"span":[1168,2,8]},{"path":[4,67,2,3,1],"span":[1168,9,19]},{"path":[4,67,2,3,3],"span":[1168,22,23]},{"path":[4,67,2,4],"span":[1170,2,36]},{"path":[4,67,2,4,4],"span":[1170,2,10]},{"path":[4,67,2,4,5],"span":[1170,11,17]},{"path":[4,67,2,4,1],"span":[1170,18,31]},{"path":[4,67,2,4,3],"span":[1170,34,35]},{"path":[4,67,2,5],"span":[1171,2,50]},{"path":[4,67,2,5,6],"span":[1171,2,27]},{"path":[4,67,2,5,1],"span":[1171,28,45]},{"path":[4,67,2,5,3],"span":[1171,48,49]},{"path":[4,67,8,0],"span":[1173,2,1175,3]},{"path":[4,67,8,0,1],"span":[1173,8,12]},{"path":[4,67,2,6],"span":[1174,4,36]},{"path":[4,67,2,6,6],"span":[1174,4,22]},{"path":[4,67,2,6,1],"span":[1174,23,30]},{"path":[4,67,2,6,3],"span":[1174,33,35]},{"path":[4,67,2,7],"span":[1178,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,67,2,7,4],"span":[1178,2,10]},{"path":[4,67,2,7,6],"span":[1178,11,23]},{"path":[4,67,2,7,1],"span":[1178,24,37]},{"path":[4,67,2,7,3],"span":[1178,40,42]},{"path":[4,67,2,8],"span":[1180,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,67,2,8,4],"span":[1180,2,10]},{"path":[4,67,2,8,6],"span":[1180,11,25]},{"path":[4,67,2,8,1],"span":[1180,26,41]},{"path":[4,67,2,8,3],"span":[1180,44,46]},{"path":[4,68],"span":[1183,0,1192,1]},{"path":[4,68,1],"span":[1183,8,26]},{"path":[4,68,2,0],"span":[1184,2,19]},{"path":[4,68,2,0,5],"span":[1184,2,8]},{"path":[4,68,2,0,1],"span":[1184,9,14]},{"path":[4,68,2,0,3],"span":[1184,17,18]},{"path":[4,68,2,1],"span":[1185,2,36]},{"path":[4,68,2,1,4],"span":[1185,2,10]},{"path":[4,68,2,1,5],"span":[1185,11,17]},{"path":[4,68,2,1,1],"span":[1185,18,31]},{"path":[4,68,2,1,3],"span":[1185,34,35]},{"path":[4,68,2,2],"span":[1186,2,36]},{"path":[4,68,2,2,4],"span":[1186,2,10]},{"path":[4,68,2,2,5],"span":[1186,11,17]},{"path":[4,68,2,2,1],"span":[1186,18,31]},{"path":[4,68,2,2,3],"span":[1186,34,35]},{"path":[4,68,2,3],"span":[1187,2,33]},{"path":[4,68,2,3,4],"span":[1187,2,10]},{"path":[4,68,2,3,5],"span":[1187,11,17]},{"path":[4,68,2,3,1],"span":[1187,18,28]},{"path":[4,68,2,3,3],"span":[1187,31,32]},{"path":[4,68,2,4],"span":[1188,2,40]},{"path":[4,68,2,4,4],"span":[1188,2,10]},{"path":[4,68,2,4,5],"span":[1188,11,17]},{"path":[4,68,2,4,1],"span":[1188,18,35]},{"path":[4,68,2,4,3],"span":[1188,38,39]},{"path":[4,68,2,5],"span":[1189,2,39]},{"path":[4,68,2,5,4],"span":[1189,2,10]},{"path":[4,68,2,5,5],"span":[1189,11,17]},{"path":[4,68,2,5,1],"span":[1189,18,34]},{"path":[4,68,2,5,3],"span":[1189,37,38]},{"path":[4,68,2,6],"span":[1190,2,59]},{"path":[4,68,2,6,4],"span":[1190,2,10]},{"path":[4,68,2,6,6],"span":[1190,11,36]},{"path":[4,68,2,6,1],"span":[1190,37,54]},{"path":[4,68,2,6,3],"span":[1190,57,58]},{"path":[4,68,2,7],"span":[1191,2,32]},{"path":[4,68,2,7,4],"span":[1191,2,10]},{"path":[4,68,2,7,5],"span":[1191,11,17]},{"path":[4,68,2,7,1],"span":[1191,18,27]},{"path":[4,68,2,7,3],"span":[1191,30,31]},{"path":[4,69],"span":[1197,0,1203,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,69,1],"span":[1197,8,25]},{"path":[4,69,2,0],"span":[1198,2,27]},{"path":[4,69,2,0,4],"span":[1198,2,10]},{"path":[4,69,2,0,5],"span":[1198,11,17]},{"path":[4,69,2,0,1],"span":[1198,18,22]},{"path":[4,69,2,0,3],"span":[1198,25,26]},{"path":[4,69,2,1],"span":[1199,2,27]},{"path":[4,69,2,1,4],"span":[1199,2,10]},{"path":[4,69,2,1,5],"span":[1199,11,17]},{"path":[4,69,2,1,1],"span":[1199,18,22]},{"path":[4,69,2,1,3],"span":[1199,25,26]},{"path":[4,69,2,2],"span":[1200,2,28]},{"path":[4,69,2,2,4],"span":[1200,2,10]},{"path":[4,69,2,2,5],"span":[1200,11,15]},{"path":[4,69,2,2,1],"span":[1200,16,23]},{"path":[4,69,2,2,3],"span":[1200,26,27]},{"path":[4,69,2,3],"span":[1201,2,31]},{"path":[4,69,2,3,4],"span":[1201,2,10]},{"path":[4,69,2,3,5],"span":[1201,11,15]},{"path":[4,69,2,3,1],"span":[1201,16,26]},{"path":[4,69,2,3,3],"span":[1201,29,30]},{"path":[4,69,2,4],"span":[1202,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,69,2,4,4],"span":[1202,2,10]},{"path":[4,69,2,4,6],"span":[1202,11,19]},{"path":[4,69,2,4,1],"span":[1202,20,28]},{"path":[4,69,2,4,3],"span":[1202,31,32]},{"path":[4,70],"span":[1208,0,1218,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,70,1],"span":[1208,8,14]},{"path":[4,70,2,0],"span":[1209,2,21]},{"path":[4,70,2,0,5],"span":[1209,2,8]},{"path":[4,70,2,0,1],"span":[1209,9,16]},{"path":[4,70,2,0,3],"span":[1209,19,20]},{"path":[4,70,2,1],"span":[1210,2,31]},{"path":[4,70,2,1,4],"span":[1210,2,10]},{"path":[4,70,2,1,5],"span":[1210,11,17]},{"path":[4,70,2,1,1],"span":[1210,18,26]},{"path":[4,70,2,1,3],"span":[1210,29,30]},{"path":[4,70,2,2],"span":[1211,2,31]},{"path":[4,70,2,2,4],"span":[1211,2,10]},{"path":[4,70,2,2,5],"span":[1211,11,17]},{"path":[4,70,2,2,1],"span":[1211,18,26]},{"path":[4,70,2,2,3],"span":[1211,29,30]},{"path":[4,70,2,3],"span":[1212,2,37]},{"path":[4,70,2,3,4],"span":[1212,2,10]},{"path":[4,70,2,3,5],"span":[1212,11,17]},{"path":[4,70,2,3,1],"span":[1212,18,32]},{"path":[4,70,2,3,3],"span":[1212,35,36]},{"path":[4,70,2,4],"span":[1213,2,35]},{"path":[4,70,2,4,4],"span":[1213,2,10]},{"path":[4,70,2,4,5],"span":[1213,11,17]},{"path":[4,70,2,4,1],"span":[1213,18,30]},{"path":[4,70,2,4,3],"span":[1213,33,34]},{"path":[4,70,2,5],"span":[1214,2,34]},{"path":[4,70,2,5,4],"span":[1214,2,10]},{"path":[4,70,2,5,5],"span":[1214,11,17]},{"path":[4,70,2,5,1],"span":[1214,18,29]},{"path":[4,70,2,5,3],"span":[1214,32,33]},{"path":[4,70,2,6],"span":[1215,2,35]},{"path":[4,70,2,6,4],"span":[1215,2,10]},{"path":[4,70,2,6,5],"span":[1215,11,17]},{"path":[4,70,2,6,1],"span":[1215,18,30]},{"path":[4,70,2,6,3],"span":[1215,33,34]},{"path":[4,70,2,7],"span":[1216,2,26]},{"path":[4,70,2,7,4],"span":[1216,2,10]},{"path":[4,70,2,7,5],"span":[1216,11,17]},{"path":[4,70,2,7,1],"span":[1216,18,21]},{"path":[4,70,2,7,3],"span":[1216,24,25]},{"path":[4,70,2,8],"span":[1217,2,35]},{"path":[4,70,2,8,4],"span":[1217,2,10]},{"path":[4,70,2,8,5],"span":[1217,11,17]},{"path":[4,70,2,8,1],"span":[1217,18,30]},{"path":[4,70,2,8,3],"span":[1217,33,34]},{"path":[4,71],"span":[1227,0,1230,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,71,1],"span":[1227,8,25]},{"path":[4,71,2,0],"span":[1228,2,42]},{"path":[4,71,2,0,6],"span":[1228,2,27]},{"path":[4,71,2,0,1],"span":[1228,28,37]},{"path":[4,71,2,0,3],"span":[1228,40,41]},{"path":[4,71,2,1],"span":[1229,2,33]},{"path":[4,71,2,1,4],"span":[1229,2,10]},{"path":[4,71,2,1,6],"span":[1229,11,19]},{"path":[4,71,2,1,1],"span":[1229,20,28]},{"path":[4,71,2,1,3],"span":[1229,31,32]},{"path":[4,72],"span":[1239,0,1277,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,72,1],"span":[1239,8,16]},{"path":[4,72,2,0],"span":[1241,2,26]},{"path":[4,72,2,0,4],"span":[1241,2,10]},{"path":[4,72,2,0,5],"span":[1241,11,16]},{"path":[4,72,2,0,1],"span":[1241,17,21]},{"path":[4,72,2,0,3],"span":[1241,24,25]},{"path":[4,72,2,1],"span":[1242,2,29]},{"path":[4,72,2,1,4],"span":[1242,2,10]},{"path":[4,72,2,1,5],"span":[1242,11,16]},{"path":[4,72,2,1,1],"span":[1242,17,24]},{"path":[4,72,2,1,3],"span":[1242,27,28]},{"path":[4,72,2,2],"span":[1243,2,28]},{"path":[4,72,2,2,4],"span":[1243,2,10]},{"path":[4,72,2,2,5],"span":[1243,11,16]},{"path":[4,72,2,2,1],"span":[1243,17,23]},{"path":[4,72,2,2,3],"span":[1243,26,27]},{"path":[4,72,2,3],"span":[1246,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,72,2,3,4],"span":[1246,2,10]},{"path":[4,72,2,3,5],"span":[1246,11,16]},{"path":[4,72,2,3,1],"span":[1246,17,24]},{"path":[4,72,2,3,3],"span":[1246,27,28]},{"path":[4,72,2,4],"span":[1249,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,72,2,4,4],"span":[1249,2,10]},{"path":[4,72,2,4,5],"span":[1249,11,16]},{"path":[4,72,2,4,1],"span":[1249,17,22]},{"path":[4,72,2,4,3],"span":[1249,25,26]},{"path":[4,72,2,5],"span":[1252,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,72,2,5,4],"span":[1252,2,10]},{"path":[4,72,2,5,5],"span":[1252,11,16]},{"path":[4,72,2,5,1],"span":[1252,17,26]},{"path":[4,72,2,5,3],"span":[1252,29,30]},{"path":[4,72,2,6],"span":[1254,2,32]},{"path":[4,72,2,6,4],"span":[1254,2,10]},{"path":[4,72,2,6,5],"span":[1254,11,17]},{"path":[4,72,2,6,1],"span":[1254,18,27]},{"path":[4,72,2,6,3],"span":[1254,30,31]},{"path":[4,72,2,7],"span":[1255,2,31]},{"path":[4,72,2,7,4],"span":[1255,2,10]},{"path":[4,72,2,7,5],"span":[1255,11,17]},{"path":[4,72,2,7,1],"span":[1255,18,26]},{"path":[4,72,2,7,3],"span":[1255,29,30]},{"path":[4,72,2,8],"span":[1256,2,32]},{"path":[4,72,2,8,4],"span":[1256,2,10]},{"path":[4,72,2,8,5],"span":[1256,11,17]},{"path":[4,72,2,8,1],"span":[1256,18,27]},{"path":[4,72,2,8,3],"span":[1256,30,31]},{"path":[4,72,2,9],"span":[1257,2,28]},{"path":[4,72,2,9,4],"span":[1257,2,10]},{"path":[4,72,2,9,5],"span":[1257,11,17]},{"path":[4,72,2,9,1],"span":[1257,18,22]},{"path":[4,72,2,9,3],"span":[1257,25,27]},{"path":[4,72,2,10],"span":[1258,2,31]},{"path":[4,72,2,10,4],"span":[1258,2,10]},{"path":[4,72,2,10,5],"span":[1258,11,17]},{"path":[4,72,2,10,1],"span":[1258,18,25]},{"path":[4,72,2,10,3],"span":[1258,28,30]},{"path":[4,72,2,11],"span":[1259,2,34]},{"path":[4,72,2,11,4],"span":[1259,2,10]},{"path":[4,72,2,11,5],"span":[1259,11,17]},{"path":[4,72,2,11,1],"span":[1259,18,28]},{"path":[4,72,2,11,3],"span":[1259,31,33]},{"path":[4,72,2,12],"span":[1260,2,31]},{"path":[4,72,2,12,4],"span":[1260,2,10]},{"path":[4,72,2,12,5],"span":[1260,11,17]},{"path":[4,72,2,12,1],"span":[1260,18,25]},{"path":[4,72,2,12,3],"span":[1260,28,30]},{"path":[4,72,2,13],"span":[1261,2,29]},{"path":[4,72,2,13,4],"span":[1261,2,10]},{"path":[4,72,2,13,5],"span":[1261,11,17]},{"path":[4,72,2,13,1],"span":[1261,18,23]},{"path":[4,72,2,13,3],"span":[1261,26,28]},{"path":[4,72,2,14],"span":[1262,2,28]},{"path":[4,72,2,14,4],"span":[1262,2,10]},{"path":[4,72,2,14,5],"span":[1262,11,17]},{"path":[4,72,2,14,1],"span":[1262,18,22]},{"path":[4,72,2,14,3],"span":[1262,25,27]},{"path":[4,72,2,15],"span":[1263,2,28]},{"path":[4,72,2,15,4],"span":[1263,2,10]},{"path":[4,72,2,15,5],"span":[1263,11,17]},{"path":[4,72,2,15,1],"span":[1263,18,22]},{"path":[4,72,2,15,3],"span":[1263,25,27]},{"path":[4,72,2,16],"span":[1265,2,27]},{"path":[4,72,2,16,4],"span":[1265,2,10]},{"path":[4,72,2,16,5],"span":[1265,11,17]},{"path":[4,72,2,16,1],"span":[1265,18,21]},{"path":[4,72,2,16,3],"span":[1265,24,26]},{"path":[4,72,2,17],"span":[1267,2,23]},{"path":[4,72,2,17,6],"span":[1267,2,13]},{"path":[4,72,2,17,1],"span":[1267,14,17]},{"path":[4,72,2,17,3],"span":[1267,20,22]},{"path":[4,72,2,18],"span":[1268,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,72,2,18,4],"span":[1268,2,10]},{"path":[4,72,2,18,5],"span":[1268,11,17]},{"path":[4,72,2,18,1],"span":[1268,18,26]},{"path":[4,72,2,18,3],"span":[1268,29,31]},{"path":[4,72,2,19],"span":[1269,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,72,2,19,4],"span":[1269,2,10]},{"path":[4,72,2,19,5],"span":[1269,11,17]},{"path":[4,72,2,19,1],"span":[1269,18,26]},{"path":[4,72,2,19,3],"span":[1269,29,31]},{"path":[4,72,2,20],"span":[1272,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,72,2,20,4],"span":[1272,2,10]},{"path":[4,72,2,20,6],"span":[1272,11,23]},{"path":[4,72,2,20,1],"span":[1272,24,37]},{"path":[4,72,2,20,3],"span":[1272,40,42]},{"path":[4,72,2,21],"span":[1274,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,72,2,21,4],"span":[1274,2,10]},{"path":[4,72,2,21,6],"span":[1274,11,26]},{"path":[4,72,2,21,1],"span":[1274,27,43]},{"path":[4,72,2,21,3],"span":[1274,46,48]},{"path":[4,72,2,22],"span":[1276,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,72,2,22,4],"span":[1276,2,10]},{"path":[4,72,2,22,6],"span":[1276,11,26]},{"path":[4,72,2,22,1],"span":[1276,27,41]},{"path":[4,72,2,22,3],"span":[1276,44,46]},{"path":[4,73],"span":[1282,0,1296,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,73,1],"span":[1282,8,19]},{"path":[4,73,2,0],"span":[1283,2,18]},{"path":[4,73,2,0,5],"span":[1283,2,8]},{"path":[4,73,2,0,1],"span":[1283,9,13]},{"path":[4,73,2,0,3],"span":[1283,16,17]},{"path":[4,73,2,1],"span":[1285,2,29]},{"path":[4,73,2,1,4],"span":[1285,2,10]},{"path":[4,73,2,1,5],"span":[1285,11,17]},{"path":[4,73,2,1,1],"span":[1285,18,24]},{"path":[4,73,2,1,3],"span":[1285,27,28]},{"path":[4,73,2,2],"span":[1286,2,30]},{"path":[4,73,2,2,4],"span":[1286,2,10]},{"path":[4,73,2,2,5],"span":[1286,11,17]},{"path":[4,73,2,2,1],"span":[1286,18,25]},{"path":[4,73,2,2,3],"span":[1286,28,29]},{"path":[4,73,2,3],"span":[1287,2,27]},{"path":[4,73,2,3,4],"span":[1287,2,10]},{"path":[4,73,2,3,5],"span":[1287,11,17]},{"path":[4,73,2,3,1],"span":[1287,18,22]},{"path":[4,73,2,3,3],"span":[1287,25,26]},{"path":[4,73,2,4],"span":[1288,2,31]},{"path":[4,73,2,4,4],"span":[1288,2,10]},{"path":[4,73,2,4,5],"span":[1288,11,17]},{"path":[4,73,2,4,1],"span":[1288,18,26]},{"path":[4,73,2,4,3],"span":[1288,29,30]},{"path":[4,73,2,5],"span":[1289,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,73,2,5,4],"span":[1289,2,10]},{"path":[4,73,2,5,5],"span":[1289,11,17]},{"path":[4,73,2,5,1],"span":[1289,18,22]},{"path":[4,73,2,5,3],"span":[1289,25,26]},{"path":[4,73,2,6],"span":[1290,2,54]},{"path":[4,73,2,6,4],"span":[1290,2,10]},{"path":[4,73,2,6,6],"span":[1290,11,36]},{"path":[4,73,2,6,1],"span":[1290,37,49]},{"path":[4,73,2,6,3],"span":[1290,52,53]},{"path":[4,73,2,7],"span":[1291,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,73,2,7,4],"span":[1291,2,10]},{"path":[4,73,2,7,5],"span":[1291,11,17]},{"path":[4,73,2,7,1],"span":[1291,18,29]},{"path":[4,73,2,7,3],"span":[1291,32,33]},{"path":[4,73,2,8],"span":[1293,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,73,2,8,4],"span":[1293,2,10]},{"path":[4,73,2,8,5],"span":[1293,11,17]},{"path":[4,73,2,8,1],"span":[1293,18,23]},{"path":[4,73,2,8,3],"span":[1293,26,27]},{"path":[4,73,2,9],"span":[1295,2,37]},{"path":[4,73,2,9,4],"span":[1295,2,10]},{"path":[4,73,2,9,5],"span":[1295,11,15]},{"path":[4,73,2,9,1],"span":[1295,16,31]},{"path":[4,73,2,9,3],"span":[1295,34,36]},{"path":[4,74],"span":[1300,0,1334,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,74,1],"span":[1300,8,20]},{"path":[4,74,2,0],"span":[1301,2,16]},{"path":[4,74,2,0,5],"span":[1301,2,7]},{"path":[4,74,2,0,1],"span":[1301,9,11]},{"path":[4,74,2,0,3],"span":[1301,14,15]},{"path":[4,74,2,1],"span":[1302,2,23]},{"path":[4,74,2,1,5],"span":[1302,2,8]},{"path":[4,74,2,1,1],"span":[1302,9,18]},{"path":[4,74,2,1,3],"span":[1302,21,22]},{"path":[4,74,2,2],"span":[1304,2,32]},{"path":[4,74,2,2,4],"span":[1304,2,10]},{"path":[4,74,2,2,5],"span":[1304,11,16]},{"path":[4,74,2,2,1],"span":[1304,17,26]},{"path":[4,74,2,2,3],"span":[1304,29,31]},{"path":[4,74,2,3],"span":[1305,2,58]},{"path":[4,74,2,3,4],"span":[1305,2,10]},{"path":[4,74,2,3,6],"span":[1305,11,36]},{"path":[4,74,2,3,1],"span":[1305,37,53]},{"path":[4,74,2,3,3],"span":[1305,56,57]},{"path":[4,74,2,4],"span":[1307,2,35]},{"path":[4,74,2,4,4],"span":[1307,2,10]},{"path":[4,74,2,4,5],"span":[1307,11,17]},{"path":[4,74,2,4,1],"span":[1307,18,30]},{"path":[4,74,2,4,3],"span":[1307,33,34]},{"path":[4,74,2,5],"span":[1308,2,37]},{"path":[4,74,2,5,4],"span":[1308,2,10]},{"path":[4,74,2,5,5],"span":[1308,11,17]},{"path":[4,74,2,5,1],"span":[1308,18,32]},{"path":[4,74,2,5,3],"span":[1308,35,36]},{"path":[4,74,2,6],"span":[1309,2,39]},{"path":[4,74,2,6,4],"span":[1309,2,10]},{"path":[4,74,2,6,5],"span":[1309,11,17]},{"path":[4,74,2,6,1],"span":[1309,18,34]},{"path":[4,74,2,6,3],"span":[1309,37,38]},{"path":[4,74,2,7],"span":[1310,2,35]},{"path":[4,74,2,7,4],"span":[1310,2,10]},{"path":[4,74,2,7,5],"span":[1310,11,17]},{"path":[4,74,2,7,1],"span":[1310,18,30]},{"path":[4,74,2,7,3],"span":[1310,33,34]},{"path":[4,74,2,8],"span":[1311,2,43]},{"path":[4,74,2,8,4],"span":[1311,2,10]},{"path":[4,74,2,8,5],"span":[1311,11,17]},{"path":[4,74,2,8,1],"span":[1311,18,37]},{"path":[4,74,2,8,3],"span":[1311,40,42]},{"path":[4,74,2,9],"span":[1312,2,35]},{"path":[4,74,2,9,4],"span":[1312,2,10]},{"path":[4,74,2,9,5],"span":[1312,11,17]},{"path":[4,74,2,9,1],"span":[1312,18,29]},{"path":[4,74,2,9,3],"span":[1312,32,34]},{"path":[4,74,2,10],"span":[1313,2,35]},{"path":[4,74,2,10,4],"span":[1313,2,10]},{"path":[4,74,2,10,5],"span":[1313,11,17]},{"path":[4,74,2,10,1],"span":[1313,18,29]},{"path":[4,74,2,10,3],"span":[1313,32,34]},{"path":[4,74,2,11],"span":[1314,2,37]},{"path":[4,74,2,11,4],"span":[1314,2,10]},{"path":[4,74,2,11,5],"span":[1314,11,17]},{"path":[4,74,2,11,1],"span":[1314,18,31]},{"path":[4,74,2,11,3],"span":[1314,34,36]},{"path":[4,74,2,12],"span":[1315,2,40]},{"path":[4,74,2,12,4],"span":[1315,2,10]},{"path":[4,74,2,12,5],"span":[1315,11,17]},{"path":[4,74,2,12,1],"span":[1315,18,34]},{"path":[4,74,2,12,3],"span":[1315,37,39]},{"path":[4,74,2,13],"span":[1316,2,39]},{"path":[4,74,2,13,4],"span":[1316,2,10]},{"path":[4,74,2,13,5],"span":[1316,11,17]},{"path":[4,74,2,13,1],"span":[1316,18,33]},{"path":[4,74,2,13,3],"span":[1316,36,38]},{"path":[4,74,2,14],"span":[1317,2,36]},{"path":[4,74,2,14,4],"span":[1317,2,10]},{"path":[4,74,2,14,5],"span":[1317,11,17]},{"path":[4,74,2,14,1],"span":[1317,18,30]},{"path":[4,74,2,14,3],"span":[1317,33,35]},{"path":[4,74,2,15],"span":[1318,2,43]},{"path":[4,74,2,15,4],"span":[1318,2,10]},{"path":[4,74,2,15,5],"span":[1318,11,17]},{"path":[4,74,2,15,1],"span":[1318,18,37]},{"path":[4,74,2,15,3],"span":[1318,40,42]},{"path":[4,74,2,16],"span":[1319,2,37]},{"path":[4,74,2,16,4],"span":[1319,2,10]},{"path":[4,74,2,16,5],"span":[1319,11,17]},{"path":[4,74,2,16,1],"span":[1319,18,31]},{"path":[4,74,2,16,3],"span":[1319,34,36]},{"path":[4,74,2,17],"span":[1320,2,40]},{"path":[4,74,2,17,4],"span":[1320,2,10]},{"path":[4,74,2,17,5],"span":[1320,11,17]},{"path":[4,74,2,17,1],"span":[1320,18,34]},{"path":[4,74,2,17,3],"span":[1320,37,39]},{"path":[4,74,2,18],"span":[1321,2,41]},{"path":[4,74,2,18,4],"span":[1321,2,10]},{"path":[4,74,2,18,5],"span":[1321,11,17]},{"path":[4,74,2,18,1],"span":[1321,18,35]},{"path":[4,74,2,18,3],"span":[1321,38,40]},{"path":[4,74,2,19],"span":[1322,2,39]},{"path":[4,74,2,19,4],"span":[1322,2,10]},{"path":[4,74,2,19,5],"span":[1322,11,17]},{"path":[4,74,2,19,1],"span":[1322,18,33]},{"path":[4,74,2,19,3],"span":[1322,36,38]},{"path":[4,74,2,20],"span":[1323,2,41]},{"path":[4,74,2,20,4],"span":[1323,2,10]},{"path":[4,74,2,20,5],"span":[1323,11,17]},{"path":[4,74,2,20,1],"span":[1323,18,35]},{"path":[4,74,2,20,3],"span":[1323,38,40]},{"path":[4,74,2,21],"span":[1324,2,38]},{"path":[4,74,2,21,4],"span":[1324,2,10]},{"path":[4,74,2,21,5],"span":[1324,11,17]},{"path":[4,74,2,21,1],"span":[1324,18,32]},{"path":[4,74,2,21,3],"span":[1324,35,37]},{"path":[4,74,2,22],"span":[1326,2,36]},{"path":[4,74,2,22,4],"span":[1326,2,10]},{"path":[4,74,2,22,5],"span":[1326,11,15]},{"path":[4,74,2,22,1],"span":[1326,16,30]},{"path":[4,74,2,22,3],"span":[1326,33,35]},{"path":[4,74,2,23],"span":[1327,2,36]},{"path":[4,74,2,23,4],"span":[1327,2,10]},{"path":[4,74,2,23,5],"span":[1327,11,15]},{"path":[4,74,2,23,1],"span":[1327,16,30]},{"path":[4,74,2,23,3],"span":[1327,33,35]},{"path":[4,74,2,24],"span":[1328,2,36]},{"path":[4,74,2,24,4],"span":[1328,2,10]},{"path":[4,74,2,24,5],"span":[1328,11,15]},{"path":[4,74,2,24,1],"span":[1328,16,30]},{"path":[4,74,2,24,3],"span":[1328,33,35]},{"path":[4,74,2,25],"span":[1329,2,38]},{"path":[4,74,2,25,4],"span":[1329,2,10]},{"path":[4,74,2,25,5],"span":[1329,11,15]},{"path":[4,74,2,25,1],"span":[1329,16,32]},{"path":[4,74,2,25,3],"span":[1329,35,37]},{"path":[4,74,2,26],"span":[1330,2,38]},{"path":[4,74,2,26,4],"span":[1330,2,10]},{"path":[4,74,2,26,5],"span":[1330,11,15]},{"path":[4,74,2,26,1],"span":[1330,16,32]},{"path":[4,74,2,26,3],"span":[1330,35,37]},{"path":[4,74,2,27],"span":[1331,2,38]},{"path":[4,74,2,27,4],"span":[1331,2,10]},{"path":[4,74,2,27,5],"span":[1331,11,15]},{"path":[4,74,2,27,1],"span":[1331,16,32]},{"path":[4,74,2,27,3],"span":[1331,35,37]},{"path":[4,74,2,28],"span":[1333,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,74,2,28,4],"span":[1333,2,10]},{"path":[4,74,2,28,5],"span":[1333,11,16]},{"path":[4,74,2,28,1],"span":[1333,17,28]},{"path":[4,74,2,28,3],"span":[1333,31,33]},{"path":[4,75],"span":[1336,0,1371,1]},{"path":[4,75,1],"span":[1336,8,20]},{"path":[4,75,2,0],"span":[1337,2,15]},{"path":[4,75,2,0,5],"span":[1337,2,7]},{"path":[4,75,2,0,1],"span":[1337,8,10]},{"path":[4,75,2,0,3],"span":[1337,13,14]},{"path":[4,75,2,1],"span":[1339,2,20]},{"path":[4,75,2,1,5],"span":[1339,2,7]},{"path":[4,75,2,1,1],"span":[1339,8,15]},{"path":[4,75,2,1,3],"span":[1339,18,19]},{"path":[4,75,2,2],"span":[1340,2,26]},{"path":[4,75,2,2,5],"span":[1340,2,8]},{"path":[4,75,2,2,1],"span":[1340,9,21]},{"path":[4,75,2,2,3],"span":[1340,24,25]},{"path":[4,75,2,3],"span":[1342,2,36]},{"path":[4,75,2,3,4],"span":[1342,2,10]},{"path":[4,75,2,3,5],"span":[1342,11,16]},{"path":[4,75,2,3,1],"span":[1342,17,31]},{"path":[4,75,2,3,3],"span":[1342,34,35]},{"path":[4,75,2,4],"span":[1343,2,40]},{"path":[4,75,2,4,4],"span":[1343,2,10]},{"path":[4,75,2,4,5],"span":[1343,11,17]},{"path":[4,75,2,4,1],"span":[1343,18,35]},{"path":[4,75,2,4,3],"span":[1343,38,39]},{"path":[4,75,2,5],"span":[1345,2,32]},{"path":[4,75,2,5,4],"span":[1345,2,10]},{"path":[4,75,2,5,5],"span":[1345,11,16]},{"path":[4,75,2,5,1],"span":[1345,17,26]},{"path":[4,75,2,5,3],"span":[1345,29,31]},{"path":[4,75,2,6],"span":[1346,2,31]},{"path":[4,75,2,6,4],"span":[1346,2,10]},{"path":[4,75,2,6,5],"span":[1346,11,15]},{"path":[4,75,2,6,1],"span":[1346,16,25]},{"path":[4,75,2,6,3],"span":[1346,28,30]},{"path":[4,75,2,7],"span":[1347,2,34]},{"path":[4,75,2,7,4],"span":[1347,2,10]},{"path":[4,75,2,7,5],"span":[1347,11,17]},{"path":[4,75,2,7,1],"span":[1347,18,28]},{"path":[4,75,2,7,3],"span":[1347,31,33]},{"path":[4,75,2,8],"span":[1348,2,31]},{"path":[4,75,2,8,4],"span":[1348,2,10]},{"path":[4,75,2,8,5],"span":[1348,11,17]},{"path":[4,75,2,8,1],"span":[1348,18,25]},{"path":[4,75,2,8,3],"span":[1348,28,30]},{"path":[4,75,2,9],"span":[1349,2,55]},{"path":[4,75,2,9,4],"span":[1349,2,10]},{"path":[4,75,2,9,6],"span":[1349,11,36]},{"path":[4,75,2,9,1],"span":[1349,37,49]},{"path":[4,75,2,9,3],"span":[1349,52,54]},{"path":[4,75,2,10],"span":[1350,2,52]},{"path":[4,75,2,10,4],"span":[1350,2,10]},{"path":[4,75,2,10,6],"span":[1350,11,36]},{"path":[4,75,2,10,1],"span":[1350,37,46]},{"path":[4,75,2,10,3],"span":[1350,49,51]},{"path":[4,75,2,11],"span":[1351,2,51]},{"path":[4,75,2,11,4],"span":[1351,2,10]},{"path":[4,75,2,11,6],"span":[1351,11,36]},{"path":[4,75,2,11,1],"span":[1351,37,45]},{"path":[4,75,2,11,3],"span":[1351,48,50]},{"path":[4,75,2,12],"span":[1352,2,43]},{"path":[4,75,2,12,4],"span":[1352,2,10]},{"path":[4,75,2,12,5],"span":[1352,11,17]},{"path":[4,75,2,12,1],"span":[1352,18,37]},{"path":[4,75,2,12,3],"span":[1352,40,42]},{"path":[4,75,2,13],"span":[1354,2,35]},{"path":[4,75,2,13,4],"span":[1354,2,10]},{"path":[4,75,2,13,5],"span":[1354,11,17]},{"path":[4,75,2,13,1],"span":[1354,18,29]},{"path":[4,75,2,13,3],"span":[1354,32,34]},{"path":[4,75,2,14],"span":[1355,2,37]},{"path":[4,75,2,14,4],"span":[1355,2,10]},{"path":[4,75,2,14,5],"span":[1355,11,17]},{"path":[4,75,2,14,1],"span":[1355,18,31]},{"path":[4,75,2,14,3],"span":[1355,34,36]},{"path":[4,75,2,15],"span":[1357,2,39]},{"path":[4,75,2,15,4],"span":[1357,2,10]},{"path":[4,75,2,15,5],"span":[1357,11,17]},{"path":[4,75,2,15,1],"span":[1357,18,33]},{"path":[4,75,2,15,3],"span":[1357,36,38]},{"path":[4,75,2,16],"span":[1358,2,43]},{"path":[4,75,2,16,4],"span":[1358,2,10]},{"path":[4,75,2,16,5],"span":[1358,11,17]},{"path":[4,75,2,16,1],"span":[1358,18,37]},{"path":[4,75,2,16,3],"span":[1358,40,42]},{"path":[4,75,2,17],"span":[1359,2,38]},{"path":[4,75,2,17,4],"span":[1359,2,10]},{"path":[4,75,2,17,5],"span":[1359,11,17]},{"path":[4,75,2,17,1],"span":[1359,18,32]},{"path":[4,75,2,17,3],"span":[1359,35,37]},{"path":[4,75,2,18],"span":[1360,2,38]},{"path":[4,75,2,18,4],"span":[1360,2,10]},{"path":[4,75,2,18,5],"span":[1360,11,17]},{"path":[4,75,2,18,1],"span":[1360,18,32]},{"path":[4,75,2,18,3],"span":[1360,35,37]},{"path":[4,75,2,19],"span":[1361,2,41]},{"path":[4,75,2,19,4],"span":[1361,2,10]},{"path":[4,75,2,19,5],"span":[1361,11,15]},{"path":[4,75,2,19,1],"span":[1361,18,35]},{"path":[4,75,2,19,3],"span":[1361,38,40]},{"path":[4,75,2,20],"span":[1362,2,42]},{"path":[4,75,2,20,4],"span":[1362,2,10]},{"path":[4,75,2,20,5],"span":[1362,11,17]},{"path":[4,75,2,20,1],"span":[1362,18,36]},{"path":[4,75,2,20,3],"span":[1362,39,41]},{"path":[4,75,2,21],"span":[1364,2,32]},{"path":[4,75,2,21,4],"span":[1364,2,10]},{"path":[4,75,2,21,5],"span":[1364,11,17]},{"path":[4,75,2,21,1],"span":[1364,18,26]},{"path":[4,75,2,21,3],"span":[1364,29,31]},{"path":[4,75,2,22],"span":[1366,2,33]},{"path":[4,75,2,22,4],"span":[1366,2,10]},{"path":[4,75,2,22,5],"span":[1366,11,16]},{"path":[4,75,2,22,1],"span":[1366,17,27]},{"path":[4,75,2,22,3],"span":[1366,30,32]},{"path":[4,75,2,23],"span":[1368,2,59]},{"path":[4,75,2,23,4],"span":[1368,2,10]},{"path":[4,75,2,23,6],"span":[1368,11,36]},{"path":[4,75,2,23,1],"span":[1368,37,53]},{"path":[4,75,2,23,3],"span":[1368,56,58]},{"path":[4,75,2,24],"span":[1370,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,75,2,24,4],"span":[1370,2,10]},{"path":[4,75,2,24,5],"span":[1370,11,16]},{"path":[4,75,2,24,1],"span":[1370,17,28]},{"path":[4,75,2,24,3],"span":[1370,31,33]},{"path":[4,76],"span":[1373,0,1406,1]},{"path":[4,76,1],"span":[1373,8,17]},{"path":[4,76,2,0],"span":[1374,2,15]},{"path":[4,76,2,0,5],"span":[1374,2,7]},{"path":[4,76,2,0,1],"span":[1374,8,10]},{"path":[4,76,2,0,3],"span":[1374,13,14]},{"path":[4,76,2,1],"span":[1376,2,21]},{"path":[4,76,2,1,5],"span":[1376,2,8]},{"path":[4,76,2,1,1],"span":[1376,9,16]},{"path":[4,76,2,1,3],"span":[1376,19,20]},{"path":[4,76,2,2],"span":[1378,2,33]},{"path":[4,76,2,2,4],"span":[1378,2,10]},{"path":[4,76,2,2,5],"span":[1378,11,17]},{"path":[4,76,2,2,1],"span":[1378,18,28]},{"path":[4,76,2,2,3],"span":[1378,31,32]},{"path":[4,76,2,3],"span":[1379,2,32]},{"path":[4,76,2,3,4],"span":[1379,2,10]},{"path":[4,76,2,3,5],"span":[1379,11,17]},{"path":[4,76,2,3,1],"span":[1379,18,26]},{"path":[4,76,2,3,3],"span":[1379,29,31]},{"path":[4,76,2,4],"span":[1380,2,38]},{"path":[4,76,2,4,4],"span":[1380,2,10]},{"path":[4,76,2,4,5],"span":[1380,11,17]},{"path":[4,76,2,4,1],"span":[1380,18,33]},{"path":[4,76,2,4,3],"span":[1380,36,37]},{"path":[4,76,2,5],"span":[1382,2,33]},{"path":[4,76,2,5,4],"span":[1382,2,10]},{"path":[4,76,2,5,5],"span":[1382,11,16]},{"path":[4,76,2,5,1],"span":[1382,17,28]},{"path":[4,76,2,5,3],"span":[1382,31,32]},{"path":[4,76,2,6],"span":[1383,2,29]},{"path":[4,76,2,6,4],"span":[1383,2,10]},{"path":[4,76,2,6,5],"span":[1383,11,16]},{"path":[4,76,2,6,1],"span":[1383,17,24]},{"path":[4,76,2,6,3],"span":[1383,27,28]},{"path":[4,76,2,7],"span":[1384,2,31]},{"path":[4,76,2,7,4],"span":[1384,2,10]},{"path":[4,76,2,7,5],"span":[1384,11,16]},{"path":[4,76,2,7,1],"span":[1384,17,26]},{"path":[4,76,2,7,3],"span":[1384,29,30]},{"path":[4,76,2,8],"span":[1386,2,54]},{"path":[4,76,2,8,4],"span":[1386,2,10]},{"path":[4,76,2,8,6],"span":[1386,11,36]},{"path":[4,76,2,8,1],"span":[1386,37,49]},{"path":[4,76,2,8,3],"span":[1386,52,53]},{"path":[4,76,2,9],"span":[1387,2,51]},{"path":[4,76,2,9,4],"span":[1387,2,10]},{"path":[4,76,2,9,6],"span":[1387,11,36]},{"path":[4,76,2,9,1],"span":[1387,37,45]},{"path":[4,76,2,9,3],"span":[1387,48,50]},{"path":[4,76,2,10],"span":[1388,2,51]},{"path":[4,76,2,10,4],"span":[1388,2,10]},{"path":[4,76,2,10,6],"span":[1388,11,36]},{"path":[4,76,2,10,1],"span":[1388,37,45]},{"path":[4,76,2,10,3],"span":[1388,48,50]},{"path":[4,76,2,11],"span":[1389,2,52]},{"path":[4,76,2,11,4],"span":[1389,2,10]},{"path":[4,76,2,11,6],"span":[1389,11,36]},{"path":[4,76,2,11,1],"span":[1389,37,46]},{"path":[4,76,2,11,3],"span":[1389,49,51]},{"path":[4,76,2,12],"span":[1390,2,43]},{"path":[4,76,2,12,4],"span":[1390,2,10]},{"path":[4,76,2,12,5],"span":[1390,11,17]},{"path":[4,76,2,12,1],"span":[1390,18,37]},{"path":[4,76,2,12,3],"span":[1390,40,42]},{"path":[4,76,2,13],"span":[1391,2,38]},{"path":[4,76,2,13,4],"span":[1391,2,10]},{"path":[4,76,2,13,5],"span":[1391,11,17]},{"path":[4,76,2,13,1],"span":[1391,18,32]},{"path":[4,76,2,13,3],"span":[1391,35,37]},{"path":[4,76,2,14],"span":[1392,2,40]},{"path":[4,76,2,14,4],"span":[1392,2,10]},{"path":[4,76,2,14,5],"span":[1392,11,17]},{"path":[4,76,2,14,1],"span":[1392,18,34]},{"path":[4,76,2,14,3],"span":[1392,37,39]},{"path":[4,76,2,15],"span":[1393,2,36]},{"path":[4,76,2,15,4],"span":[1393,2,10]},{"path":[4,76,2,15,5],"span":[1393,11,17]},{"path":[4,76,2,15,1],"span":[1393,18,30]},{"path":[4,76,2,15,3],"span":[1393,33,35]},{"path":[4,76,2,16],"span":[1394,2,43]},{"path":[4,76,2,16,4],"span":[1394,2,10]},{"path":[4,76,2,16,5],"span":[1394,11,17]},{"path":[4,76,2,16,1],"span":[1394,18,37]},{"path":[4,76,2,16,3],"span":[1394,40,42]},{"path":[4,76,2,17],"span":[1395,2,35]},{"path":[4,76,2,17,4],"span":[1395,2,10]},{"path":[4,76,2,17,5],"span":[1395,11,17]},{"path":[4,76,2,17,1],"span":[1395,18,29]},{"path":[4,76,2,17,3],"span":[1395,32,34]},{"path":[4,76,2,18],"span":[1396,2,35]},{"path":[4,76,2,18,4],"span":[1396,2,10]},{"path":[4,76,2,18,5],"span":[1396,11,17]},{"path":[4,76,2,18,1],"span":[1396,18,29]},{"path":[4,76,2,18,3],"span":[1396,32,34]},{"path":[4,76,2,19],"span":[1397,2,37]},{"path":[4,76,2,19,4],"span":[1397,2,10]},{"path":[4,76,2,19,5],"span":[1397,11,17]},{"path":[4,76,2,19,1],"span":[1397,18,31]},{"path":[4,76,2,19,3],"span":[1397,34,36]},{"path":[4,76,2,20],"span":[1398,2,40]},{"path":[4,76,2,20,4],"span":[1398,2,10]},{"path":[4,76,2,20,5],"span":[1398,11,17]},{"path":[4,76,2,20,1],"span":[1398,18,34]},{"path":[4,76,2,20,3],"span":[1398,37,39]},{"path":[4,76,2,21],"span":[1399,2,39]},{"path":[4,76,2,21,4],"span":[1399,2,10]},{"path":[4,76,2,21,5],"span":[1399,11,17]},{"path":[4,76,2,21,1],"span":[1399,18,33]},{"path":[4,76,2,21,3],"span":[1399,36,38]},{"path":[4,76,2,22],"span":[1401,2,32]},{"path":[4,76,2,22,4],"span":[1401,2,10]},{"path":[4,76,2,22,5],"span":[1401,11,17]},{"path":[4,76,2,22,1],"span":[1401,18,26]},{"path":[4,76,2,22,3],"span":[1401,29,31]},{"path":[4,76,2,23],"span":[1403,2,59]},{"path":[4,76,2,23,4],"span":[1403,2,10]},{"path":[4,76,2,23,6],"span":[1403,11,36]},{"path":[4,76,2,23,1],"span":[1403,37,53]},{"path":[4,76,2,23,3],"span":[1403,56,58]},{"path":[4,76,2,24],"span":[1405,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,76,2,24,4],"span":[1405,2,10]},{"path":[4,76,2,24,5],"span":[1405,11,16]},{"path":[4,76,2,24,1],"span":[1405,17,28]},{"path":[4,76,2,24,3],"span":[1405,31,33]},{"path":[4,77],"span":[1408,0,1438,1]},{"path":[4,77,1],"span":[1408,8,23]},{"path":[4,77,2,0],"span":[1409,2,15]},{"path":[4,77,2,0,5],"span":[1409,2,7]},{"path":[4,77,2,0,1],"span":[1409,8,10]},{"path":[4,77,2,0,3],"span":[1409,13,14]},{"path":[4,77,2,1],"span":[1410,2,21]},{"path":[4,77,2,1,5],"span":[1410,2,8]},{"path":[4,77,2,1,1],"span":[1410,9,16]},{"path":[4,77,2,1,3],"span":[1410,19,20]},{"path":[4,77,2,2],"span":[1412,2,33]},{"path":[4,77,2,2,4],"span":[1412,2,10]},{"path":[4,77,2,2,5],"span":[1412,11,17]},{"path":[4,77,2,2,1],"span":[1412,18,28]},{"path":[4,77,2,2,3],"span":[1412,31,32]},{"path":[4,77,2,3],"span":[1413,2,36]},{"path":[4,77,2,3,4],"span":[1413,2,10]},{"path":[4,77,2,3,5],"span":[1413,11,17]},{"path":[4,77,2,3,1],"span":[1413,18,31]},{"path":[4,77,2,3,3],"span":[1413,34,35]},{"path":[4,77,2,4],"span":[1414,2,33]},{"path":[4,77,2,4,4],"span":[1414,2,10]},{"path":[4,77,2,4,5],"span":[1414,11,17]},{"path":[4,77,2,4,1],"span":[1414,18,28]},{"path":[4,77,2,4,3],"span":[1414,31,32]},{"path":[4,77,2,5],"span":[1415,2,30]},{"path":[4,77,2,5,4],"span":[1415,2,10]},{"path":[4,77,2,5,5],"span":[1415,11,17]},{"path":[4,77,2,5,1],"span":[1415,18,25]},{"path":[4,77,2,5,3],"span":[1415,28,29]},{"path":[4,77,2,6],"span":[1416,2,31]},{"path":[4,77,2,6,4],"span":[1416,2,10]},{"path":[4,77,2,6,5],"span":[1416,11,17]},{"path":[4,77,2,6,1],"span":[1416,18,26]},{"path":[4,77,2,6,3],"span":[1416,29,30]},{"path":[4,77,2,7],"span":[1418,2,29]},{"path":[4,77,2,7,4],"span":[1418,2,10]},{"path":[4,77,2,7,5],"span":[1418,11,16]},{"path":[4,77,2,7,1],"span":[1418,17,24]},{"path":[4,77,2,7,3],"span":[1418,27,28]},{"path":[4,77,2,8],"span":[1419,2,31]},{"path":[4,77,2,8,4],"span":[1419,2,10]},{"path":[4,77,2,8,5],"span":[1419,11,16]},{"path":[4,77,2,8,1],"span":[1419,17,26]},{"path":[4,77,2,8,3],"span":[1419,29,30]},{"path":[4,77,2,9],"span":[1420,2,32]},{"path":[4,77,2,9,4],"span":[1420,2,10]},{"path":[4,77,2,9,5],"span":[1420,11,16]},{"path":[4,77,2,9,1],"span":[1420,17,26]},{"path":[4,77,2,9,3],"span":[1420,29,31]},{"path":[4,77,2,10],"span":[1422,2,31]},{"path":[4,77,2,10,4],"span":[1422,2,10]},{"path":[4,77,2,10,5],"span":[1422,11,17]},{"path":[4,77,2,10,1],"span":[1422,18,25]},{"path":[4,77,2,10,3],"span":[1422,28,30]},{"path":[4,77,2,11],"span":[1423,2,35]},{"path":[4,77,2,11,4],"span":[1423,2,10]},{"path":[4,77,2,11,5],"span":[1423,11,17]},{"path":[4,77,2,11,1],"span":[1423,18,29]},{"path":[4,77,2,11,3],"span":[1423,32,34]},{"path":[4,77,2,12],"span":[1425,2,55]},{"path":[4,77,2,12,4],"span":[1425,2,10]},{"path":[4,77,2,12,6],"span":[1425,11,36]},{"path":[4,77,2,12,1],"span":[1425,37,49]},{"path":[4,77,2,12,3],"span":[1425,52,54]},{"path":[4,77,2,13],"span":[1426,2,51]},{"path":[4,77,2,13,4],"span":[1426,2,10]},{"path":[4,77,2,13,6],"span":[1426,11,36]},{"path":[4,77,2,13,1],"span":[1426,37,45]},{"path":[4,77,2,13,3],"span":[1426,48,50]},{"path":[4,77,2,14],"span":[1427,2,51]},{"path":[4,77,2,14,4],"span":[1427,2,10]},{"path":[4,77,2,14,6],"span":[1427,11,36]},{"path":[4,77,2,14,1],"span":[1427,37,45]},{"path":[4,77,2,14,3],"span":[1427,48,50]},{"path":[4,77,2,15],"span":[1428,2,52]},{"path":[4,77,2,15,4],"span":[1428,2,10]},{"path":[4,77,2,15,6],"span":[1428,11,36]},{"path":[4,77,2,15,1],"span":[1428,37,46]},{"path":[4,77,2,15,3],"span":[1428,49,51]},{"path":[4,77,2,16],"span":[1429,2,43]},{"path":[4,77,2,16,4],"span":[1429,2,10]},{"path":[4,77,2,16,5],"span":[1429,11,17]},{"path":[4,77,2,16,1],"span":[1429,18,37]},{"path":[4,77,2,16,3],"span":[1429,40,42]},{"path":[4,77,2,17],"span":[1431,2,33]},{"path":[4,77,2,17,4],"span":[1431,2,10]},{"path":[4,77,2,17,5],"span":[1431,11,15]},{"path":[4,77,2,17,1],"span":[1431,16,27]},{"path":[4,77,2,17,3],"span":[1431,30,32]},{"path":[4,77,2,18],"span":[1432,2,37]},{"path":[4,77,2,18,4],"span":[1432,2,10]},{"path":[4,77,2,18,5],"span":[1432,11,15]},{"path":[4,77,2,18,1],"span":[1432,16,31]},{"path":[4,77,2,18,3],"span":[1432,34,36]},{"path":[4,77,2,19],"span":[1433,2,37]},{"path":[4,77,2,19,4],"span":[1433,2,10]},{"path":[4,77,2,19,5],"span":[1433,11,15]},{"path":[4,77,2,19,1],"span":[1433,16,31]},{"path":[4,77,2,19,3],"span":[1433,34,36]},{"path":[4,77,2,20],"span":[1435,2,59]},{"path":[4,77,2,20,4],"span":[1435,2,10]},{"path":[4,77,2,20,6],"span":[1435,11,36]},{"path":[4,77,2,20,1],"span":[1435,37,53]},{"path":[4,77,2,20,3],"span":[1435,56,58]},{"path":[4,77,2,21],"span":[1437,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,77,2,21,4],"span":[1437,2,10]},{"path":[4,77,2,21,5],"span":[1437,11,16]},{"path":[4,77,2,21,1],"span":[1437,17,28]},{"path":[4,77,2,21,3],"span":[1437,31,34]},{"path":[4,78],"span":[1440,0,1496,1]},{"path":[4,78,1],"span":[1440,8,22]},{"path":[4,78,2,0],"span":[1441,2,16]},{"path":[4,78,2,0,5],"span":[1441,2,7]},{"path":[4,78,2,0,1],"span":[1441,9,11]},{"path":[4,78,2,0,3],"span":[1441,14,15]},{"path":[4,78,2,1],"span":[1443,2,19]},{"path":[4,78,2,1,5],"span":[1443,2,8]},{"path":[4,78,2,1,1],"span":[1443,9,14]},{"path":[4,78,2,1,3],"span":[1443,17,18]},{"path":[4,78,2,2],"span":[1444,2,32]},{"path":[4,78,2,2,4],"span":[1444,2,10]},{"path":[4,78,2,2,5],"span":[1444,11,17]},{"path":[4,78,2,2,1],"span":[1444,18,27]},{"path":[4,78,2,2,3],"span":[1444,30,31]},{"path":[4,78,2,3],"span":[1445,2,29]},{"path":[4,78,2,3,4],"span":[1445,2,10]},{"path":[4,78,2,3,5],"span":[1445,11,16]},{"path":[4,78,2,3,1],"span":[1445,17,24]},{"path":[4,78,2,3,3],"span":[1445,27,28]},{"path":[4,78,2,4],"span":[1447,2,31]},{"path":[4,78,2,4,4],"span":[1447,2,10]},{"path":[4,78,2,4,5],"span":[1447,11,16]},{"path":[4,78,2,4,1],"span":[1447,17,26]},{"path":[4,78,2,4,3],"span":[1447,29,30]},{"path":[4,78,2,5],"span":[1448,2,30]},{"path":[4,78,2,5,4],"span":[1448,2,10]},{"path":[4,78,2,5,5],"span":[1448,11,15]},{"path":[4,78,2,5,1],"span":[1448,16,25]},{"path":[4,78,2,5,3],"span":[1448,28,29]},{"path":[4,78,2,6],"span":[1449,2,36]},{"path":[4,78,2,6,4],"span":[1449,2,10]},{"path":[4,78,2,6,5],"span":[1449,11,17]},{"path":[4,78,2,6,1],"span":[1449,18,31]},{"path":[4,78,2,6,3],"span":[1449,34,35]},{"path":[4,78,2,7],"span":[1450,2,35]},{"path":[4,78,2,7,4],"span":[1450,2,10]},{"path":[4,78,2,7,5],"span":[1450,11,17]},{"path":[4,78,2,7,1],"span":[1450,18,30]},{"path":[4,78,2,7,3],"span":[1450,33,34]},{"path":[4,78,2,8],"span":[1452,2,33]},{"path":[4,78,2,8,4],"span":[1452,2,10]},{"path":[4,78,2,8,5],"span":[1452,11,17]},{"path":[4,78,2,8,1],"span":[1452,18,27]},{"path":[4,78,2,8,3],"span":[1452,30,32]},{"path":[4,78,2,9],"span":[1453,2,38]},{"path":[4,78,2,9,4],"span":[1453,2,10]},{"path":[4,78,2,9,5],"span":[1453,11,17]},{"path":[4,78,2,9,1],"span":[1453,18,32]},{"path":[4,78,2,9,3],"span":[1453,35,37]},{"path":[4,78,2,10],"span":[1454,2,36]},{"path":[4,78,2,10,4],"span":[1454,2,10]},{"path":[4,78,2,10,5],"span":[1454,11,17]},{"path":[4,78,2,10,1],"span":[1454,18,30]},{"path":[4,78,2,10,3],"span":[1454,33,35]},{"path":[4,78,2,11],"span":[1455,2,40]},{"path":[4,78,2,11,4],"span":[1455,2,10]},{"path":[4,78,2,11,5],"span":[1455,11,17]},{"path":[4,78,2,11,1],"span":[1455,18,34]},{"path":[4,78,2,11,3],"span":[1455,37,39]},{"path":[4,78,2,12],"span":[1456,2,31]},{"path":[4,78,2,12,4],"span":[1456,2,10]},{"path":[4,78,2,12,5],"span":[1456,11,17]},{"path":[4,78,2,12,1],"span":[1456,18,25]},{"path":[4,78,2,12,3],"span":[1456,28,30]},{"path":[4,78,2,13],"span":[1457,2,36]},{"path":[4,78,2,13,4],"span":[1457,2,10]},{"path":[4,78,2,13,5],"span":[1457,11,17]},{"path":[4,78,2,13,1],"span":[1457,18,30]},{"path":[4,78,2,13,3],"span":[1457,33,35]},{"path":[4,78,2,14],"span":[1458,2,35]},{"path":[4,78,2,14,4],"span":[1458,2,10]},{"path":[4,78,2,14,5],"span":[1458,11,16]},{"path":[4,78,2,14,1],"span":[1458,17,29]},{"path":[4,78,2,14,3],"span":[1458,32,34]},{"path":[4,78,2,15],"span":[1459,2,29]},{"path":[4,78,2,15,4],"span":[1459,2,10]},{"path":[4,78,2,15,5],"span":[1459,11,17]},{"path":[4,78,2,15,1],"span":[1459,18,23]},{"path":[4,78,2,15,3],"span":[1459,26,28]},{"path":[4,78,2,16],"span":[1460,2,33]},{"path":[4,78,2,16,4],"span":[1460,2,10]},{"path":[4,78,2,16,5],"span":[1460,11,17]},{"path":[4,78,2,16,1],"span":[1460,18,27]},{"path":[4,78,2,16,3],"span":[1460,30,32]},{"path":[4,78,2,17],"span":[1461,2,32]},{"path":[4,78,2,17,4],"span":[1461,2,10]},{"path":[4,78,2,17,5],"span":[1461,11,17]},{"path":[4,78,2,17,1],"span":[1461,18,26]},{"path":[4,78,2,17,3],"span":[1461,29,31]},{"path":[4,78,2,18],"span":[1462,2,35]},{"path":[4,78,2,18,4],"span":[1462,2,10]},{"path":[4,78,2,18,5],"span":[1462,11,17]},{"path":[4,78,2,18,1],"span":[1462,18,29]},{"path":[4,78,2,18,3],"span":[1462,32,34]},{"path":[4,78,2,19],"span":[1464,2,36]},{"path":[4,78,2,19,4],"span":[1464,2,10]},{"path":[4,78,2,19,5],"span":[1464,11,17]},{"path":[4,78,2,19,1],"span":[1464,18,30]},{"path":[4,78,2,19,3],"span":[1464,33,35]},{"path":[4,78,2,20],"span":[1465,2,38]},{"path":[4,78,2,20,4],"span":[1465,2,10]},{"path":[4,78,2,20,5],"span":[1465,11,16]},{"path":[4,78,2,20,1],"span":[1465,17,32]},{"path":[4,78,2,20,3],"span":[1465,35,37]},{"path":[4,78,2,21],"span":[1466,2,47]},{"path":[4,78,2,21,4],"span":[1466,2,10]},{"path":[4,78,2,21,5],"span":[1466,11,16]},{"path":[4,78,2,21,1],"span":[1466,17,41]},{"path":[4,78,2,21,3],"span":[1466,44,46]},{"path":[4,78,2,22],"span":[1467,2,30]},{"path":[4,78,2,22,4],"span":[1467,2,10]},{"path":[4,78,2,22,5],"span":[1467,11,16]},{"path":[4,78,2,22,1],"span":[1467,17,24]},{"path":[4,78,2,22,3],"span":[1467,27,29]},{"path":[4,78,2,23],"span":[1468,2,29]},{"path":[4,78,2,23,4],"span":[1468,2,10]},{"path":[4,78,2,23,5],"span":[1468,11,16]},{"path":[4,78,2,23,1],"span":[1468,17,23]},{"path":[4,78,2,23,3],"span":[1468,26,28]},{"path":[4,78,2,24],"span":[1469,2,29]},{"path":[4,78,2,24,4],"span":[1469,2,10]},{"path":[4,78,2,24,5],"span":[1469,11,16]},{"path":[4,78,2,24,1],"span":[1469,17,23]},{"path":[4,78,2,24,3],"span":[1469,26,28]},{"path":[4,78,2,25],"span":[1470,2,36]},{"path":[4,78,2,25,4],"span":[1470,2,10]},{"path":[4,78,2,25,5],"span":[1470,11,17]},{"path":[4,78,2,25,1],"span":[1470,18,30]},{"path":[4,78,2,25,3],"span":[1470,33,35]},{"path":[4,78,2,26],"span":[1471,2,39]},{"path":[4,78,2,26,4],"span":[1471,2,10]},{"path":[4,78,2,26,5],"span":[1471,11,16]},{"path":[4,78,2,26,1],"span":[1471,17,33]},{"path":[4,78,2,26,3],"span":[1471,36,38]},{"path":[4,78,2,27],"span":[1472,2,44]},{"path":[4,78,2,27,4],"span":[1472,2,10]},{"path":[4,78,2,27,5],"span":[1472,11,17]},{"path":[4,78,2,27,1],"span":[1472,18,38]},{"path":[4,78,2,27,3],"span":[1472,41,43]},{"path":[4,78,2,28],"span":[1474,2,36]},{"path":[4,78,2,28,4],"span":[1474,2,10]},{"path":[4,78,2,28,5],"span":[1474,11,17]},{"path":[4,78,2,28,1],"span":[1474,18,30]},{"path":[4,78,2,28,3],"span":[1474,33,35]},{"path":[4,78,2,29],"span":[1475,2,37]},{"path":[4,78,2,29,4],"span":[1475,2,10]},{"path":[4,78,2,29,5],"span":[1475,11,16]},{"path":[4,78,2,29,1],"span":[1475,17,31]},{"path":[4,78,2,29,3],"span":[1475,34,36]},{"path":[4,78,2,30],"span":[1476,2,42]},{"path":[4,78,2,30,4],"span":[1476,2,10]},{"path":[4,78,2,30,5],"span":[1476,11,17]},{"path":[4,78,2,30,1],"span":[1476,18,36]},{"path":[4,78,2,30,3],"span":[1476,39,41]},{"path":[4,78,2,31],"span":[1477,2,38]},{"path":[4,78,2,31,4],"span":[1477,2,10]},{"path":[4,78,2,31,5],"span":[1477,11,17]},{"path":[4,78,2,31,1],"span":[1477,18,32]},{"path":[4,78,2,31,3],"span":[1477,35,37]},{"path":[4,78,2,32],"span":[1478,2,42]},{"path":[4,78,2,32,4],"span":[1478,2,10]},{"path":[4,78,2,32,5],"span":[1478,11,17]},{"path":[4,78,2,32,1],"span":[1478,18,36]},{"path":[4,78,2,32,3],"span":[1478,39,41]},{"path":[4,78,2,33],"span":[1479,2,39]},{"path":[4,78,2,33,4],"span":[1479,2,10]},{"path":[4,78,2,33,5],"span":[1479,11,17]},{"path":[4,78,2,33,1],"span":[1479,18,33]},{"path":[4,78,2,33,3],"span":[1479,36,38]},{"path":[4,78,2,34],"span":[1480,2,34]},{"path":[4,78,2,34,4],"span":[1480,2,10]},{"path":[4,78,2,34,5],"span":[1480,11,17]},{"path":[4,78,2,34,1],"span":[1480,18,28]},{"path":[4,78,2,34,3],"span":[1480,31,33]},{"path":[4,78,2,35],"span":[1481,2,34]},{"path":[4,78,2,35,4],"span":[1481,2,10]},{"path":[4,78,2,35,5],"span":[1481,11,17]},{"path":[4,78,2,35,1],"span":[1481,18,28]},{"path":[4,78,2,35,3],"span":[1481,31,33]},{"path":[4,78,2,36],"span":[1482,2,33]},{"path":[4,78,2,36,4],"span":[1482,2,10]},{"path":[4,78,2,36,5],"span":[1482,11,17]},{"path":[4,78,2,36,1],"span":[1482,18,27]},{"path":[4,78,2,36,3],"span":[1482,30,32]},{"path":[4,78,2,37],"span":[1484,2,33]},{"path":[4,78,2,37,4],"span":[1484,2,10]},{"path":[4,78,2,37,5],"span":[1484,11,15]},{"path":[4,78,2,37,1],"span":[1484,16,27]},{"path":[4,78,2,37,3],"span":[1484,30,32]},{"path":[4,78,2,38],"span":[1485,2,36]},{"path":[4,78,2,38,4],"span":[1485,2,10]},{"path":[4,78,2,38,5],"span":[1485,11,15]},{"path":[4,78,2,38,1],"span":[1485,16,30]},{"path":[4,78,2,38,3],"span":[1485,33,35]},{"path":[4,78,2,39],"span":[1486,2,38]},{"path":[4,78,2,39,4],"span":[1486,2,10]},{"path":[4,78,2,39,5],"span":[1486,11,15]},{"path":[4,78,2,39,1],"span":[1486,16,32]},{"path":[4,78,2,39,3],"span":[1486,35,37]},{"path":[4,78,2,40],"span":[1487,2,34]},{"path":[4,78,2,40,4],"span":[1487,2,10]},{"path":[4,78,2,40,5],"span":[1487,11,15]},{"path":[4,78,2,40,1],"span":[1487,16,28]},{"path":[4,78,2,40,3],"span":[1487,31,33]},{"path":[4,78,2,41],"span":[1488,2,33]},{"path":[4,78,2,41,4],"span":[1488,2,10]},{"path":[4,78,2,41,5],"span":[1488,11,15]},{"path":[4,78,2,41,1],"span":[1488,16,27]},{"path":[4,78,2,41,3],"span":[1488,30,32]},{"path":[4,78,2,42],"span":[1489,2,38]},{"path":[4,78,2,42,4],"span":[1489,2,10]},{"path":[4,78,2,42,5],"span":[1489,11,15]},{"path":[4,78,2,42,1],"span":[1489,16,32]},{"path":[4,78,2,42,3],"span":[1489,35,37]},{"path":[4,78,2,43],"span":[1490,2,36]},{"path":[4,78,2,43,4],"span":[1490,2,10]},{"path":[4,78,2,43,5],"span":[1490,11,15]},{"path":[4,78,2,43,1],"span":[1490,16,30]},{"path":[4,78,2,43,3],"span":[1490,33,35]},{"path":[4,78,2,44],"span":[1492,2,59]},{"path":[4,78,2,44,4],"span":[1492,2,10]},{"path":[4,78,2,44,6],"span":[1492,11,36]},{"path":[4,78,2,44,1],"span":[1492,37,53]},{"path":[4,78,2,44,3],"span":[1492,56,58]},{"path":[4,78,2,45],"span":[1494,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,78,2,45,4],"span":[1494,2,10]},{"path":[4,78,2,45,5],"span":[1494,11,16]},{"path":[4,78,2,45,1],"span":[1494,17,28]},{"path":[4,78,2,45,3],"span":[1494,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}