@lansweeper/data-platform-outbound-grpc 0.1.74 → 0.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +12 -0
- package/gen-proto/outbound_pb.js +97 -1
- package/generated-go/outbound.pb.go +4600 -4576
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +2 -0
package/gen-proto/image.json
CHANGED
|
@@ -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":"last_synced_source_agent","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"lastSyncedSourceAgent","proto3Optional":true},{"name":"last_synced_source_name","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSourceName","proto3Optional":true},{"name":"source_info","number":74,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SourceInfo","jsonName":"sourceInfo"},{"name":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"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":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":3,"jsonName":"internetIp","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":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":4,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":5,"jsonName":"os","proto3Optional":true},{"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":"network_protocols","number":76,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkProtocols","oneofIndex":8,"jsonName":"networkProtocols","proto3Optional":true},{"name":"port_scan","number":77,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortScan","oneofIndex":9,"jsonName":"portScan","proto3Optional":true},{"name":"computer","number":75,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Computer","oneofIndex":10,"jsonName":"computer","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":11,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":12,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_unique_key"},{"name":"_internet_ip"},{"name":"_hw"},{"name":"_os"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_network_protocols"},{"name":"_port_scan"},{"name":"_computer"},{"name":"_ot_module"},{"name":"_cloud"}],"reservedRange":[{"start":9,"end":10},{"start":26,"end":27},{"start":13,"end":14},{"start":37,"end":38},{"start":15,"end":16},{"start":18,"end":19},{"start":19,"end":20},{"start":21,"end":22},{"start":24,"end":25},{"start":25,"end":26},{"start":27,"end":28},{"start":30,"end":31},{"start":28,"end":29},{"start":29,"end":30},{"start":31,"end":32}]},{"name":"Computer","field":[{"name":"chassis","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":0,"jsonName":"chassis","proto3Optional":true},{"name":"motherboard","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":1,"jsonName":"motherboard","proto3Optional":true},{"name":"processor","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"memory","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":2,"jsonName":"memory","proto3Optional":true},{"name":"graphics_card","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"computer_bus","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBus","jsonName":"computerBus"},{"name":"computer_infrared","number":10,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerInfrared","jsonName":"computerInfrared"},{"name":"parallel_port","number":11,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ParallelPort","jsonName":"parallelPort"},{"name":"serial_port","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SerialPort","jsonName":"serialPort"},{"name":"pcmcia","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PcmciaController","jsonName":"pcmcia"},{"name":"port_connector","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortConnector","jsonName":"portConnector"},{"name":"scsi_controller","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScsiController","jsonName":"scsiController"},{"name":"computer_battery","number":16,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBattery","jsonName":"computerBattery"},{"name":"portable_battery","number":17,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortableBattery","jsonName":"portableBattery"},{"name":"optical_drive","number":18,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":19,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"tpm","number":21,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.TrustedPlatformModule","jsonName":"tpm"},{"name":"usb_controller","number":22,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbController","jsonName":"usbController"},{"name":"usb_device_info","number":23,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbDeviceInfo","jsonName":"usbDeviceInfo"},{"name":"modem","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedModem","jsonName":"modem"},{"name":"printer","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedPrinter","jsonName":"printer"},{"name":"tape_drive","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive","jsonName":"tapeDrive"},{"name":"windows_desktop","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktop","jsonName":"windowsDesktop"},{"name":"windows_display","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplay","jsonName":"windowsDisplay"},{"name":"windows_display_controller","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplayController","jsonName":"windowsDisplayController"},{"name":"windows_ide_controller","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsIdeController","jsonName":"windowsIdeController"},{"name":"windows_disk_partition","number":31,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDiskPartition","jsonName":"windowsDiskPartition"},{"name":"bios","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Bios","oneofIndex":3,"jsonName":"bios","proto3Optional":true},{"name":"os_patch","number":102,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":103,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":104,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":4,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":105,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"computer_system_product","number":106,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerSystemProduct","oneofIndex":5,"jsonName":"computerSystemProduct","proto3Optional":true},{"name":"software_inventory","number":201,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":6,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":202,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"auto_run_command","number":203,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":204,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":7,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":205,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":206,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":207,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"internet_explorer","number":208,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer","oneofIndex":8,"jsonName":"internetExplorer","proto3Optional":true},{"name":"windows_sql_server","number":209,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","oneofIndex":9,"jsonName":"windowsSqlServer","proto3Optional":true},{"name":"windows_network_client","number":210,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient","jsonName":"windowsNetworkClient"},{"name":"network_volume","number":211,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"last_user","number":301,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":10,"jsonName":"lastUser","proto3Optional":true},{"name":"user","number":302,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserAccount","jsonName":"user"},{"name":"user_group","number":303,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserGroup","jsonName":"userGroup"},{"name":"user_in_group","number":304,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserInGroup","jsonName":"userInGroup"}],"oneofDecl":[{"name":"_chassis"},{"name":"_motherboard"},{"name":"_memory"},{"name":"_bios"},{"name":"_os_recovery"},{"name":"_computer_system_product"},{"name":"_software_inventory"},{"name":"_boot_config"},{"name":"_internet_explorer"},{"name":"_windows_sql_server"},{"name":"_last_user"}]},{"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":"environment_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentId"},{"name":"cloud_provider","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"cloudProvider"},{"name":"region_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"regionId","proto3Optional":true},{"name":"environment_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentName"},{"name":"category","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"}],"oneofDecl":[{"name":"_region_id"}]},{"name":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"bus_config","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtBusConfig","oneofIndex":1,"jsonName":"busConfig","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":"scan_protocol","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"scanProtocol","proto3Optional":true},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"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":4,"jsonName":"routePath","proto3Optional":true}],"oneofDecl":[{"name":"_component_type"},{"name":"_bus_config"},{"name":"_scan_protocol"},{"name":"_part_number"},{"name":"_route_path"}]},{"name":"OtBusConfig","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":"start_index","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"startIndex"},{"name":"position","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"position","proto3Optional":true},{"name":"width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"width","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_position"},{"name":"_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":"SourceInfo","field":[{"name":"source_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceId"},{"name":"source_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceType"},{"name":"source_agent","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceAgent","proto3Optional":true},{"name":"source_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceName","proto3Optional":true},{"name":"raw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rawId"},{"name":"last_synced","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"}],"oneofDecl":[{"name":"_source_agent"},{"name":"_source_name"}]},{"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},{"name":"confidence","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"confidence"}],"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":"UserAccount","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"domain","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"domain","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"description","proto3Optional":true},{"name":"full_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"fullName","proto3Optional":true},{"name":"account_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"accountType","proto3Optional":true},{"name":"sid","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sid","proto3Optional":true},{"name":"sid_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"sidType","proto3Optional":true},{"name":"local_account","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"localAccount","proto3Optional":true},{"name":"disabled","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"disabled","proto3Optional":true},{"name":"lockout","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":10,"jsonName":"lockout","proto3Optional":true},{"name":"password_changeable","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"passwordChangeable","proto3Optional":true},{"name":"password_expires","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"passwordExpires","proto3Optional":true},{"name":"password_required","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"passwordRequired","proto3Optional":true},{"name":"status","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"status","proto3Optional":true},{"name":"user_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"userId","proto3Optional":true},{"name":"group_id","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"groupId","proto3Optional":true},{"name":"home_directory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"homeDirectory","proto3Optional":true},{"name":"login_shell","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"loginShell","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_domain"},{"name":"_caption"},{"name":"_description"},{"name":"_full_name"},{"name":"_account_type"},{"name":"_sid"},{"name":"_sid_type"},{"name":"_local_account"},{"name":"_disabled"},{"name":"_lockout"},{"name":"_password_changeable"},{"name":"_password_expires"},{"name":"_password_required"},{"name":"_status"},{"name":"_user_id"},{"name":"_group_id"},{"name":"_home_directory"},{"name":"_login_shell"}]},{"name":"UserGroup","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":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"domain","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"domain","proto3Optional":true},{"name":"sid","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"sid","proto3Optional":true},{"name":"local_account","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"localAccount","proto3Optional":true},{"name":"group_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"groupId","proto3Optional":true},{"name":"type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_description"},{"name":"_domain"},{"name":"_sid"},{"name":"_local_account"},{"name":"_group_id"},{"name":"_type"}]},{"name":"UserInGroup","field":[{"name":"group_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"groupName","proto3Optional":true},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userName","proto3Optional":true},{"name":"user_domain_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"userDomainName","proto3Optional":true},{"name":"account_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"accountType","proto3Optional":true},{"name":"is_admin_group","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isAdminGroup","proto3Optional":true}],"oneofDecl":[{"name":"_group_name"},{"name":"_user_name"},{"name":"_user_domain_name"},{"name":"_account_type"},{"name":"_is_admin_group"}]},{"name":"InternetExplorer","field":[{"name":"active_x","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX","jsonName":"activeX"},{"name":"bar","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"bar"},{"name":"browser_object","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"browserObject"},{"name":"extension","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.Extension","jsonName":"extension"}],"nestedType":[{"name":"ActiveX","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"code_base","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"codeBase","proto3Optional":true},{"name":"info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"osd","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"osd","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_code_base"},{"name":"_info"},{"name":"_osd"}]},{"name":"Extension","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"button_text","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"buttonText","proto3Optional":true},{"name":"cls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"clsId","proto3Optional":true},{"name":"default_visible","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"defaultVisible","proto3Optional":true},{"name":"exec","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"exec","proto3Optional":true},{"name":"hot_icon","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"hotIcon","proto3Optional":true},{"name":"icon","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"icon","proto3Optional":true},{"name":"menu_text","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"menuText","proto3Optional":true},{"name":"tooltip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"tooltip","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_button_text"},{"name":"_cls_id"},{"name":"_default_visible"},{"name":"_exec"},{"name":"_hot_icon"},{"name":"_icon"},{"name":"_menu_text"},{"name":"_tooltip"}]},{"name":"BrowserObject","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]},{"name":"BarInfo","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]}]},{"name":"WindowsSqlServer","field":[{"name":"is_clustered","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isClustered"},{"name":"sql_authentication_mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer.SqlAuthenticationMode","jsonName":"sqlAuthenticationMode"},{"name":"databases","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerDatabase","jsonName":"databases"},{"name":"services","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService","jsonName":"services"},{"name":"service_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"serviceName"},{"name":"display_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayVersion"},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"version"},{"name":"sp_level","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"spLevel","proto3Optional":true},{"name":"sku_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"skuName","proto3Optional":true},{"name":"language","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"language","proto3Optional":true},{"name":"is_wow64","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isWow64","proto3Optional":true},{"name":"install_path","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"installPath","proto3Optional":true},{"name":"file_version","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileVersion","proto3Optional":true},{"name":"data_path","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dataPath","proto3Optional":true},{"name":"cluster","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerCluster","oneofIndex":7,"jsonName":"cluster","proto3Optional":true},{"name":"instance_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"instanceId"},{"name":"instance_name","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"instanceName","proto3Optional":true}],"enumType":[{"name":"SqlAuthenticationMode","value":[{"name":"UNKNOWN_MODE","number":0},{"name":"WINDOWS","number":1},{"name":"MIXED","number":2}]}],"oneofDecl":[{"name":"_sp_level"},{"name":"_sku_name"},{"name":"_language"},{"name":"_is_wow64"},{"name":"_install_path"},{"name":"_file_version"},{"name":"_data_path"},{"name":"_cluster"},{"name":"_instance_name"}]},{"name":"SqlServerDatabase","field":[{"name":"data_files_size_kb","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"dataFilesSizeKb","proto3Optional":true},{"name":"log_files_size_kb","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"logFilesSizeKb","proto3Optional":true},{"name":"log_files_used_size_kb","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"logFilesUsedSizeKb","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_data_files_size_kb"},{"name":"_log_files_size_kb"},{"name":"_log_files_used_size_kb"},{"name":"_name"}]},{"name":"SqlServerService","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceState","oneofIndex":0,"jsonName":"state","proto3Optional":true},{"name":"startup_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceStartupType","oneofIndex":1,"jsonName":"startupType","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"instance_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"instanceId","proto3Optional":true}],"enumType":[{"name":"ServiceState","value":[{"name":"NO_SERVICE_STATE","number":0},{"name":"STOPPED","number":1},{"name":"START_PENDING","number":2},{"name":"STOP_PENDING","number":3},{"name":"RUNNING","number":4},{"name":"CONTINUE_PENDING","number":5},{"name":"PAUSE_PENDING","number":6},{"name":"PAUSED","number":7}]},{"name":"ServiceStartupType","value":[{"name":"NO_SERVICE_STARTUP_TYPE","number":0},{"name":"OTHER_STARTYP_TYPE","number":1},{"name":"AUTOMATIC","number":2},{"name":"MANUAL","number":3},{"name":"DISABLED","number":4}]}],"oneofDecl":[{"name":"_state"},{"name":"_startup_type"},{"name":"_name"},{"name":"_instance_id"}]},{"name":"SqlServerCluster","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"cluster_nodes","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerClusterNode","jsonName":"clusterNodes"}],"oneofDecl":[{"name":"_name"}]},{"name":"SqlServerClusterNode","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"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":"type_caption","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"typeCaption","proto3Optional":true},{"name":"type_group","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"typeGroup","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":14,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":15,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":16,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":17,"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":"_type_caption"},{"name":"_type_group"},{"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},{"name":"bus_speed","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"busSpeed","proto3Optional":true},{"name":"boot_rom_version","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootRomVersion","proto3Optional":true},{"name":"smc_version_system","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"smcVersionSystem","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"},{"name":"_bus_speed"},{"name":"_boot_rom_version"},{"name":"_smc_version_system"}]},{"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},{"name":"system_version","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"systemVersion","proto3Optional":true},{"name":"boot_volume","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"bootMode","proto3Optional":true},{"name":"computer_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"computerName","proto3Optional":true},{"name":"user_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userName","proto3Optional":true},{"name":"up_time","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"upTime","proto3Optional":true},{"name":"secure_virtual_memory","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"secureVirtualMemory","proto3Optional":true},{"name":"sixty_four_bit_kernel_and_exts","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"sixtyFourBitKernelAndExts","proto3Optional":true},{"name":"system_integrity","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"systemIntegrity","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"},{"name":"_system_version"},{"name":"_boot_volume"},{"name":"_boot_mode"},{"name":"_computer_name"},{"name":"_user_name"},{"name":"_up_time"},{"name":"_secure_virtual_memory"},{"name":"_sixty_four_bit_kernel_and_exts"},{"name":"_system_integrity"}]},{"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":"NetworkProtocols","field":[{"name":"protocol","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"protocol"}]},{"name":"PortScan","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"scanned_port","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScannedPort","jsonName":"scannedPort"}]},{"name":"ScannedPort","field":[{"name":"protocol","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"protocol"},{"name":"port_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"portNumber"},{"name":"local_address","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"localAddress","proto3Optional":true},{"name":"process_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"processName","proto3Optional":true},{"name":"banner","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"banner","proto3Optional":true},{"name":"http_server","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpServerInfo","oneofIndex":3,"jsonName":"httpServer","proto3Optional":true}],"oneofDecl":[{"name":"_local_address"},{"name":"_process_name"},{"name":"_banner"},{"name":"_http_server"}]},{"name":"HttpServerInfo","field":[{"name":"port","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"port"},{"name":"ssl","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ssl","proto3Optional":true},{"name":"server","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"server"},{"name":"wwwauth","number":4,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"wwwauth"},{"name":"cookie","number":5,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"cookie"},{"name":"title","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"title","proto3Optional":true},{"name":"favicon_md5","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"faviconMd5","proto3Optional":true},{"name":"favicon","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":3,"jsonName":"favicon","proto3Optional":true},{"name":"certificates","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate","jsonName":"certificates"}],"oneofDecl":[{"name":"_ssl"},{"name":"_title"},{"name":"_favicon_md5"},{"name":"_favicon"}]},{"name":"HttpCertificate","field":[{"name":"thumbprint","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"thumbprint","proto3Optional":true},{"name":"serial_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"x509_issuer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"x509Issuer","proto3Optional":true},{"name":"x509_subject","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"x509Subject","proto3Optional":true},{"name":"effective_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":4,"jsonName":"effectiveDate","proto3Optional":true},{"name":"expiration_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"expirationDate","proto3Optional":true},{"name":"errors","number":7,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate.SslPolicyErrors","jsonName":"errors"}],"enumType":[{"name":"SslPolicyErrors","value":[{"name":"SSL_REMOTE_CERTIFICATE_NOT_AVAILABLE","number":0},{"name":"SSL_REMOTE_CERTIFICATE_NAME_MISMATCH","number":1},{"name":"SSL_REMOTE_CERTIFICATE_CHAIN_ERRORS","number":2}]}],"oneofDecl":[{"name":"_thumbprint"},{"name":"_serial_number"},{"name":"_x509_issuer"},{"name":"_x509_subject"},{"name":"_effective_date"},{"name":"_expiration_date"}]},{"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":"ComputerBus","field":[{"name":"bus_num","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"busNum","proto3Optional":true},{"name":"bus_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"busType","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"pnp_device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"pnpDeviceId","proto3Optional":true}],"oneofDecl":[{"name":"_bus_num"},{"name":"_bus_type"},{"name":"_device_id"},{"name":"_pnp_device_id"}]},{"name":"ComputerInfrared","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":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"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":"ParallelPort","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"availability","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"availability","proto3Optional":true},{"name":"protocol_supported","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"pnp_device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"config_manager_user_config","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"os_auto_discovered","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"power_management_supported","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"powerManagementSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_availability"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_pnp_device_id"},{"name":"_config_manager_user_config"},{"name":"_os_auto_discovered"},{"name":"_power_management_supported"}]},{"name":"SerialPort","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":"binary","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"binary","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"max_baud_rate","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"maxBaudRate","proto3Optional":true},{"name":"maximum_input_buffer_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maximumInputBufferSize","proto3Optional":true},{"name":"maximum_output_buffer_size","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maximumOutputBufferSize","proto3Optional":true},{"name":"os_auto_discovered","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"pnp_device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"provider_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerType","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_binary"},{"name":"_caption"},{"name":"_device_id"},{"name":"_max_baud_rate"},{"name":"_maximum_input_buffer_size"},{"name":"_maximum_output_buffer_size"},{"name":"_os_auto_discovered"},{"name":"_pnp_device_id"},{"name":"_provider_type"}]},{"name":"PcmciaController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"protocol_supported","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"name":"PortConnector","field":[{"name":"connector_type","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"connectorType"},{"name":"external_reference_designator","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"externalReferenceDesignator","proto3Optional":true},{"name":"internal_reference_designator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"internalReferenceDesignator","proto3Optional":true},{"name":"port_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"portType","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"tag","proto3Optional":true}],"oneofDecl":[{"name":"_external_reference_designator"},{"name":"_internal_reference_designator"},{"name":"_port_type"},{"name":"_tag"}]},{"name":"ScsiController","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":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_device_id"},{"name":"_driver_name"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerSystemProduct","field":[{"name":"identifying_number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"identifyingNumber","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"uuid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"uuid","proto3Optional":true},{"name":"vendor","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_identifying_number"},{"name":"_name"},{"name":"_uuid"},{"name":"_vendor"},{"name":"_version"}]},{"name":"TrustedPlatformModule","field":[{"name":"is_initial_value_activated","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isInitialValueActivated","proto3Optional":true},{"name":"is_initial_value_enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isInitialValueEnabled","proto3Optional":true},{"name":"is_initial_value_owned","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isInitialValueOwned","proto3Optional":true},{"name":"spec_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"specVersion","proto3Optional":true},{"name":"manufacturer_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturerVersion","proto3Optional":true},{"name":"manufacturer_version_info","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturerVersionInfo","proto3Optional":true},{"name":"manufacturer_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufacturerId","proto3Optional":true},{"name":"manufacturer_version_full20","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturerVersionFull20","proto3Optional":true},{"name":"manufacturer_id_txt","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"manufacturerIdTxt","proto3Optional":true},{"name":"physical_presence_version_info","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"physicalPresenceVersionInfo","proto3Optional":true}],"oneofDecl":[{"name":"_is_initial_value_activated"},{"name":"_is_initial_value_enabled"},{"name":"_is_initial_value_owned"},{"name":"_spec_version"},{"name":"_manufacturer_version"},{"name":"_manufacturer_version_info"},{"name":"_manufacturer_id"},{"name":"_manufacturer_version_full20"},{"name":"_manufacturer_id_txt"},{"name":"_physical_presence_version_info"}]},{"name":"ComputerConnectedUsbController","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":"protocol_supported","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerConnectedUsbDeviceInfo","field":[{"name":"device_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceKey"},{"name":"device_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceValue"},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"manufacturer"}]},{"name":"ComputerConnectedModem","field":[{"name":"attached_to","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"attachedTo","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"country_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryInfo","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"device_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceType","proto3Optional":true},{"name":"max_baud_rate_to_phone","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maxBaudRateToPhone","proto3Optional":true},{"name":"max_baud_rate_to_serial_port","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maxBaudRateToSerialPort","proto3Optional":true},{"name":"modem_inf_path","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"modemInfPath","proto3Optional":true},{"name":"modem_inf_section","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modemInfSection","proto3Optional":true},{"name":"provider_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerName","proto3Optional":true},{"name":"hw_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hwVersion","proto3Optional":true},{"name":"interface_type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"interfaceType","proto3Optional":true},{"name":"model","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"model","proto3Optional":true},{"name":"modulation","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"modulation","proto3Optional":true}],"oneofDecl":[{"name":"_attached_to"},{"name":"_caption"},{"name":"_country_info"},{"name":"_device_id"},{"name":"_device_type"},{"name":"_max_baud_rate_to_phone"},{"name":"_max_baud_rate_to_serial_port"},{"name":"_modem_inf_path"},{"name":"_modem_inf_section"},{"name":"_provider_name"},{"name":"_hw_version"},{"name":"_interface_type"},{"name":"_model"},{"name":"_modulation"}]},{"name":"ComputerConnectedPrinter","field":[{"name":"capability_descriptions","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"capabilityDescriptions"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"port_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"portName","proto3Optional":true},{"name":"print_job_data_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"printJobDataType","proto3Optional":true},{"name":"print_processor","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"printProcessor","proto3Optional":true},{"name":"share_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"shareName","proto3Optional":true},{"name":"status","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"status","proto3Optional":true},{"name":"comment","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"comment","proto3Optional":true},{"name":"horizontal_resolution","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"vertical_resolution","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"verticalResolution","proto3Optional":true},{"name":"enable_bidi","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"enableBidi","proto3Optional":true},{"name":"local","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"local","proto3Optional":true},{"name":"network","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"network","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_location"},{"name":"_port_name"},{"name":"_print_job_data_type"},{"name":"_print_processor"},{"name":"_share_name"},{"name":"_status"},{"name":"_comment"},{"name":"_horizontal_resolution"},{"name":"_vertical_resolution"},{"name":"_enable_bidi"},{"name":"_local"},{"name":"_network"}]},{"name":"ComputerConnectedTapeDrive","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":"capabilities","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"compression","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"compression","proto3Optional":true},{"name":"default_block_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"defaultBlockSize","proto3Optional":true},{"name":"device_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_block_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"maxBlockSize","proto3Optional":true},{"name":"max_media_size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"maxMediaSize","proto3Optional":true},{"name":"max_partition_count","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxPartitionCount","proto3Optional":true},{"name":"media_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"mediaType","proto3Optional":true},{"name":"min_block_size","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"minBlockSize","proto3Optional":true},{"name":"needs_cleaning","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"needsCleaning","proto3Optional":true},{"name":"number_of_media_supported","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"numberOfMediaSupported","proto3Optional":true},{"name":"padding","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"padding","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_compression"},{"name":"_default_block_size"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_max_block_size"},{"name":"_max_media_size"},{"name":"_max_partition_count"},{"name":"_media_type"},{"name":"_min_block_size"},{"name":"_needs_cleaning"},{"name":"_number_of_media_supported"},{"name":"_padding"}]},{"name":"ComputerWindowsDesktop","field":[{"name":"border_width","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"borderWidth","proto3Optional":true},{"name":"cool_switch","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"coolSwitch","proto3Optional":true},{"name":"cursor_blink_rate","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"cursorBlinkRate","proto3Optional":true},{"name":"drag_full_windows","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"dragFullWindows","proto3Optional":true},{"name":"grid_granularity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"gridGranularity","proto3Optional":true},{"name":"icon_spacing","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"iconSpacing","proto3Optional":true},{"name":"icon_title_facename","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"iconTitleFacename","proto3Optional":true},{"name":"icon_title_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"iconTitleSize","proto3Optional":true},{"name":"icon_title_wrap","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"iconTitleWrap","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"pattern","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pattern","proto3Optional":true},{"name":"screensaver_active","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"screensaverActive","proto3Optional":true},{"name":"screensaver_executable","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"screensaverExecutable","proto3Optional":true},{"name":"screensaver_secure","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"screensaverSecure","proto3Optional":true},{"name":"screensavertimeout","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"screensavertimeout","proto3Optional":true},{"name":"wallpaper","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"wallpaper","proto3Optional":true},{"name":"wallpaper_stretched","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"wallpaperStretched","proto3Optional":true},{"name":"wallpaper_tiled","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"wallpaperTiled","proto3Optional":true}],"oneofDecl":[{"name":"_border_width"},{"name":"_cool_switch"},{"name":"_cursor_blink_rate"},{"name":"_drag_full_windows"},{"name":"_grid_granularity"},{"name":"_icon_spacing"},{"name":"_icon_title_facename"},{"name":"_icon_title_size"},{"name":"_icon_title_wrap"},{"name":"_name"},{"name":"_pattern"},{"name":"_screensaver_active"},{"name":"_screensaver_executable"},{"name":"_screensaver_secure"},{"name":"_screensavertimeout"},{"name":"_wallpaper"},{"name":"_wallpaper_stretched"},{"name":"_wallpaper_tiled"}]},{"name":"ComputerWindowsDisplay","field":[{"name":"bits_per_pel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceName","proto3Optional":true},{"name":"display_flags","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"displayFlags","proto3Optional":true},{"name":"display_frequency","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"displayFrequency","proto3Optional":true},{"name":"driver_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"log_pixels","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"logPixels","proto3Optional":true},{"name":"pels_height","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"pelsHeight","proto3Optional":true},{"name":"pels_width","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"pelsWidth","proto3Optional":true},{"name":"specification_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"specificationVersion","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pel"},{"name":"_caption"},{"name":"_device_name"},{"name":"_display_flags"},{"name":"_display_frequency"},{"name":"_driver_version"},{"name":"_log_pixels"},{"name":"_pels_height"},{"name":"_pels_width"},{"name":"_specification_version"}]},{"name":"ComputerWindowsDisplayController","field":[{"name":"bits_per_pixel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPixel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"color_planes","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"colorPlanes","proto3Optional":true},{"name":"device_entries_in_a_color_table","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"deviceEntriesInAColorTable","proto3Optional":true},{"name":"device_specific_pens","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"horizontal_resolution","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"name","proto3Optional":true},{"name":"refresh_rate","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"refreshRate","proto3Optional":true},{"name":"vertical_resolution","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"verticalResolution","proto3Optional":true},{"name":"video_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"videoMode","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pixel"},{"name":"_caption"},{"name":"_color_planes"},{"name":"_device_entries_in_a_color_table"},{"name":"_device_specific_pens"},{"name":"_horizontal_resolution"},{"name":"_name"},{"name":"_refresh_rate"},{"name":"_vertical_resolution"},{"name":"_video_mode"}]},{"name":"ComputerWindowsNetworkClient","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_description"},{"name":"_manufacturer"},{"name":"_name"}]},{"name":"ComputerWindowsIdeController","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":"protocol_supported","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"protocolSupported"}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"name":"ComputerWindowsDiskPartition","field":[{"name":"block_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"blockSize","proto3Optional":true},{"name":"bootable","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"bootable","proto3Optional":true},{"name":"boot_partition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"bootPartition","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"disk_index","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"diskIndex","proto3Optional":true},{"name":"index","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"index","proto3Optional":true},{"name":"number_of_blocks","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"numberOfBlocks","proto3Optional":true},{"name":"primary_partition","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"primaryPartition","proto3Optional":true},{"name":"size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"size","proto3Optional":true},{"name":"starting_offset","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"startingOffset","proto3Optional":true},{"name":"type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_block_size"},{"name":"_bootable"},{"name":"_boot_partition"},{"name":"_device_id"},{"name":"_disk_index"},{"name":"_index"},{"name":"_number_of_blocks"},{"name":"_primary_partition"},{"name":"_size"},{"name":"_starting_offset"},{"name":"_type"}]},{"name":"PortableBattery","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":"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,2173,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":[100,0,160,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[100,8,13]},{"path":[4,8,2,0],"span":[102,2,20]},{"path":[4,8,2,0,6],"span":[102,2,12]},{"path":[4,8,2,0,1],"span":[102,13,15]},{"path":[4,8,2,0,3],"span":[102,18,19]},{"path":[4,8,2,1],"span":[104,2,44]},{"path":[4,8,2,1,6],"span":[104,2,27]},{"path":[4,8,2,1,1],"span":[104,28,39]},{"path":[4,8,2,1,3],"span":[104,42,43]},{"path":[4,8,2,2],"span":[105,2,43]},{"path":[4,8,2,2,6],"span":[105,2,27]},{"path":[4,8,2,2,1],"span":[105,28,38]},{"path":[4,8,2,2,3],"span":[105,41,42]},{"path":[4,8,2,3],"span":[106,2,45]},{"path":[4,8,2,3,6],"span":[106,2,27]},{"path":[4,8,2,3,1],"span":[106,28,40]},{"path":[4,8,2,3,3],"span":[106,43,44]},{"path":[4,8,2,4],"span":[107,2,46]},{"path":[4,8,2,4,6],"span":[107,2,27]},{"path":[4,8,2,4,1],"span":[107,28,41]},{"path":[4,8,2,4,3],"span":[107,44,45]},{"path":[4,8,2,5],"span":[109,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,8,2,5,4],"span":[109,2,10]},{"path":[4,8,2,5,5],"span":[109,11,17]},{"path":[4,8,2,5,1],"span":[109,18,42]},{"path":[4,8,2,5,3],"span":[109,45,47]},{"path":[4,8,2,6],"span":[110,2,47],"trailingComments":" last synced source name\n"},{"path":[4,8,2,6,4],"span":[110,2,10]},{"path":[4,8,2,6,5],"span":[110,11,17]},{"path":[4,8,2,6,1],"span":[110,18,41]},{"path":[4,8,2,6,3],"span":[110,44,46]},{"path":[4,8,2,7],"span":[117,2,39],"leadingComments":"\n Every source that contributed sending a scan for this asset is listed here.\n The source_info is a actually a map by source type/id, keeping history of scans.\n If the asset was discovered by a single sources, it's redudant with info already in main asset msg.\n"},{"path":[4,8,2,7,4],"span":[117,2,10]},{"path":[4,8,2,7,6],"span":[117,11,21]},{"path":[4,8,2,7,1],"span":[117,22,33]},{"path":[4,8,2,7,3],"span":[117,36,38]},{"path":[4,8,2,8],"span":[125,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,8,4],"span":[125,2,10]},{"path":[4,8,2,8,5],"span":[125,11,17]},{"path":[4,8,2,8,1],"span":[125,18,28]},{"path":[4,8,2,8,3],"span":[125,31,33]},{"path":[4,8,2,9],"span":[127,2,37]},{"path":[4,8,2,9,4],"span":[127,2,10]},{"path":[4,8,2,9,6],"span":[127,11,20]},{"path":[4,8,2,9,1],"span":[127,21,31]},{"path":[4,8,2,9,3],"span":[127,34,36]},{"path":[4,8,2,10],"span":[129,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,10,4],"span":[129,2,10]},{"path":[4,8,2,10,6],"span":[129,11,17]},{"path":[4,8,2,10,1],"span":[129,18,29]},{"path":[4,8,2,10,3],"span":[129,32,34]},{"path":[4,8,2,11],"span":[131,2,24]},{"path":[4,8,2,11,4],"span":[131,2,10]},{"path":[4,8,2,11,6],"span":[131,11,14]},{"path":[4,8,2,11,1],"span":[131,15,18]},{"path":[4,8,2,11,3],"span":[131,21,23]},{"path":[4,8,2,12],"span":[132,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,12,4],"span":[132,2,10]},{"path":[4,8,2,12,6],"span":[132,11,19]},{"path":[4,8,2,12,1],"span":[132,20,28]},{"path":[4,8,2,12,3],"span":[132,31,33]},{"path":[4,8,2,13],"span":[134,2,22]},{"path":[4,8,2,13,6],"span":[134,2,12]},{"path":[4,8,2,13,1],"span":[134,13,17]},{"path":[4,8,2,13,3],"span":[134,20,21]},{"path":[4,8,2,14],"span":[136,2,31]},{"path":[4,8,2,14,4],"span":[136,2,10]},{"path":[4,8,2,14,6],"span":[136,11,23]},{"path":[4,8,2,14,1],"span":[136,24,26]},{"path":[4,8,2,14,3],"span":[136,29,30]},{"path":[4,8,2,15],"span":[137,2,34]},{"path":[4,8,2,15,4],"span":[137,2,10]},{"path":[4,8,2,15,6],"span":[137,11,26]},{"path":[4,8,2,15,1],"span":[137,27,29]},{"path":[4,8,2,15,3],"span":[137,32,33]},{"path":[4,8,2,16],"span":[139,2,51]},{"path":[4,8,2,16,4],"span":[139,2,10]},{"path":[4,8,2,16,6],"span":[139,11,27]},{"path":[4,8,2,16,1],"span":[139,28,45]},{"path":[4,8,2,16,3],"span":[139,48,50]},{"path":[4,8,2,17],"span":[140,2,53]},{"path":[4,8,2,17,4],"span":[140,2,10]},{"path":[4,8,2,17,6],"span":[140,11,28]},{"path":[4,8,2,17,1],"span":[140,29,47]},{"path":[4,8,2,17,3],"span":[140,50,52]},{"path":[4,8,2,18],"span":[141,2,51]},{"path":[4,8,2,18,4],"span":[141,2,10]},{"path":[4,8,2,18,6],"span":[141,11,27]},{"path":[4,8,2,18,1],"span":[141,28,45]},{"path":[4,8,2,18,3],"span":[141,48,50]},{"path":[4,8,2,19],"span":[142,2,35]},{"path":[4,8,2,19,4],"span":[142,2,10]},{"path":[4,8,2,19,6],"span":[142,11,19]},{"path":[4,8,2,19,1],"span":[142,20,29]},{"path":[4,8,2,19,3],"span":[142,32,34]},{"path":[4,8,9],"span":[145,2,69],"leadingComments":" list of deprecated fields, now moved to computer message\n"},{"path":[4,8,9,0],"span":[145,11,12]},{"path":[4,8,9,0,1],"span":[145,11,12]},{"path":[4,8,9,1],"span":[145,14,16]},{"path":[4,8,9,1,1],"span":[145,14,16]},{"path":[4,8,9,2],"span":[145,18,20]},{"path":[4,8,9,2,1],"span":[145,18,20]},{"path":[4,8,9,3],"span":[145,22,24]},{"path":[4,8,9,3,1],"span":[145,22,24]},{"path":[4,8,9,4],"span":[145,26,28]},{"path":[4,8,9,4,1],"span":[145,26,28]},{"path":[4,8,9,5],"span":[145,30,32]},{"path":[4,8,9,5,1],"span":[145,30,32]},{"path":[4,8,9,6],"span":[145,34,36]},{"path":[4,8,9,6,1],"span":[145,34,36]},{"path":[4,8,9,7],"span":[145,38,40]},{"path":[4,8,9,7,1],"span":[145,38,40]},{"path":[4,8,9,8],"span":[145,42,44]},{"path":[4,8,9,8,1],"span":[145,42,44]},{"path":[4,8,9,9],"span":[145,46,48]},{"path":[4,8,9,9,1],"span":[145,46,48]},{"path":[4,8,9,10],"span":[145,50,52]},{"path":[4,8,9,10,1],"span":[145,50,52]},{"path":[4,8,9,11],"span":[145,54,56]},{"path":[4,8,9,11,1],"span":[145,54,56]},{"path":[4,8,9,12],"span":[145,58,60]},{"path":[4,8,9,12,1],"span":[145,58,60]},{"path":[4,8,9,13],"span":[145,62,64]},{"path":[4,8,9,13,1],"span":[145,62,64]},{"path":[4,8,9,14],"span":[145,66,68]},{"path":[4,8,9,14,1],"span":[145,66,68]},{"path":[4,8,2,20],"span":[147,2,34]},{"path":[4,8,2,20,4],"span":[147,2,10]},{"path":[4,8,2,20,6],"span":[147,11,19]},{"path":[4,8,2,20,1],"span":[147,20,28]},{"path":[4,8,2,20,3],"span":[147,31,33]},{"path":[4,8,2,21],"span":[149,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,21,4],"span":[149,2,10]},{"path":[4,8,2,21,6],"span":[149,11,19]},{"path":[4,8,2,21,1],"span":[149,20,29]},{"path":[4,8,2,21,3],"span":[149,32,34]},{"path":[4,8,2,22],"span":[151,2,34]},{"path":[4,8,2,22,4],"span":[151,2,10]},{"path":[4,8,2,22,6],"span":[151,11,22]},{"path":[4,8,2,22,1],"span":[151,23,28]},{"path":[4,8,2,22,3],"span":[151,31,33]},{"path":[4,9],"span":[165,0,226,1],"leadingComments":"\n Computer message keeping all sections of asset.computer.\n"},{"path":[4,9,1],"span":[165,8,16]},{"path":[4,9,2,0],"span":[167,2,31],"leadingComments":" HW\n"},{"path":[4,9,2,0,4],"span":[167,2,10]},{"path":[4,9,2,0,6],"span":[167,11,18]},{"path":[4,9,2,0,1],"span":[167,19,26]},{"path":[4,9,2,0,3],"span":[167,29,30]},{"path":[4,9,2,1],"span":[168,2,39]},{"path":[4,9,2,1,4],"span":[168,2,10]},{"path":[4,9,2,1,6],"span":[168,11,22]},{"path":[4,9,2,1,1],"span":[168,23,34]},{"path":[4,9,2,1,3],"span":[168,37,38]},{"path":[4,9,2,2],"span":[169,2,35]},{"path":[4,9,2,2,4],"span":[169,2,10]},{"path":[4,9,2,2,6],"span":[169,11,20]},{"path":[4,9,2,2,1],"span":[169,21,30]},{"path":[4,9,2,2,3],"span":[169,33,34]},{"path":[4,9,2,3],"span":[170,2,29]},{"path":[4,9,2,3,4],"span":[170,2,10]},{"path":[4,9,2,3,6],"span":[170,11,17]},{"path":[4,9,2,3,1],"span":[170,18,24]},{"path":[4,9,2,3,3],"span":[170,27,28]},{"path":[4,9,2,4],"span":[171,2,42]},{"path":[4,9,2,4,4],"span":[171,2,10]},{"path":[4,9,2,4,6],"span":[171,11,23]},{"path":[4,9,2,4,1],"span":[171,24,37]},{"path":[4,9,2,4,3],"span":[171,40,41]},{"path":[4,9,2,5],"span":[172,2,36]},{"path":[4,9,2,5,4],"span":[172,2,10]},{"path":[4,9,2,5,6],"span":[172,11,20]},{"path":[4,9,2,5,1],"span":[172,21,31]},{"path":[4,9,2,5,3],"span":[172,34,35]},{"path":[4,9,2,6],"span":[173,2,33]},{"path":[4,9,2,6,4],"span":[173,2,10]},{"path":[4,9,2,6,6],"span":[173,11,19]},{"path":[4,9,2,6,1],"span":[173,20,28]},{"path":[4,9,2,6,3],"span":[173,31,32]},{"path":[4,9,2,7],"span":[174,2,46]},{"path":[4,9,2,7,4],"span":[174,2,10]},{"path":[4,9,2,7,6],"span":[174,11,25]},{"path":[4,9,2,7,1],"span":[174,26,41]},{"path":[4,9,2,7,3],"span":[174,44,45]},{"path":[4,9,2,8],"span":[175,2,40]},{"path":[4,9,2,8,4],"span":[175,2,10]},{"path":[4,9,2,8,6],"span":[175,11,22]},{"path":[4,9,2,8,1],"span":[175,23,35]},{"path":[4,9,2,8,3],"span":[175,38,39]},{"path":[4,9,2,9],"span":[176,2,51]},{"path":[4,9,2,9,4],"span":[176,2,10]},{"path":[4,9,2,9,6],"span":[176,11,27]},{"path":[4,9,2,9,1],"span":[176,28,45]},{"path":[4,9,2,9,3],"span":[176,48,50]},{"path":[4,9,2,10],"span":[177,2,43]},{"path":[4,9,2,10,4],"span":[177,2,10]},{"path":[4,9,2,10,6],"span":[177,11,23]},{"path":[4,9,2,10,1],"span":[177,24,37]},{"path":[4,9,2,10,3],"span":[177,40,42]},{"path":[4,9,2,11],"span":[178,2,39]},{"path":[4,9,2,11,4],"span":[178,2,10]},{"path":[4,9,2,11,6],"span":[178,11,21]},{"path":[4,9,2,11,1],"span":[178,22,33]},{"path":[4,9,2,11,3],"span":[178,36,38]},{"path":[4,9,2,12],"span":[179,2,40]},{"path":[4,9,2,12,4],"span":[179,2,10]},{"path":[4,9,2,12,6],"span":[179,11,27]},{"path":[4,9,2,12,1],"span":[179,28,34]},{"path":[4,9,2,12,3],"span":[179,37,39]},{"path":[4,9,2,13],"span":[180,2,45]},{"path":[4,9,2,13,4],"span":[180,2,10]},{"path":[4,9,2,13,6],"span":[180,11,24]},{"path":[4,9,2,13,1],"span":[180,25,39]},{"path":[4,9,2,13,3],"span":[180,42,44]},{"path":[4,9,2,14],"span":[181,2,47]},{"path":[4,9,2,14,4],"span":[181,2,10]},{"path":[4,9,2,14,6],"span":[181,11,25]},{"path":[4,9,2,14,1],"span":[181,26,41]},{"path":[4,9,2,14,3],"span":[181,44,46]},{"path":[4,9,2,15],"span":[182,2,49]},{"path":[4,9,2,15,4],"span":[182,2,10]},{"path":[4,9,2,15,6],"span":[182,11,26]},{"path":[4,9,2,15,1],"span":[182,27,43]},{"path":[4,9,2,15,3],"span":[182,46,48]},{"path":[4,9,2,16],"span":[183,2,49]},{"path":[4,9,2,16,4],"span":[183,2,10]},{"path":[4,9,2,16,6],"span":[183,11,26]},{"path":[4,9,2,16,1],"span":[183,27,43]},{"path":[4,9,2,16,3],"span":[183,46,48]},{"path":[4,9,2,17],"span":[184,2,43]},{"path":[4,9,2,17,4],"span":[184,2,10]},{"path":[4,9,2,17,6],"span":[184,11,23]},{"path":[4,9,2,17,1],"span":[184,24,37]},{"path":[4,9,2,17,3],"span":[184,40,42]},{"path":[4,9,2,18],"span":[185,2,37]},{"path":[4,9,2,18,4],"span":[185,2,10]},{"path":[4,9,2,18,6],"span":[185,11,20]},{"path":[4,9,2,18,1],"span":[185,21,31]},{"path":[4,9,2,18,3],"span":[185,34,36]},{"path":[4,9,2,19],"span":[186,2,41]},{"path":[4,9,2,19,4],"span":[186,2,10]},{"path":[4,9,2,19,6],"span":[186,11,22]},{"path":[4,9,2,19,1],"span":[186,23,35]},{"path":[4,9,2,19,3],"span":[186,38,40]},{"path":[4,9,2,20],"span":[187,2,42]},{"path":[4,9,2,20,4],"span":[187,2,10]},{"path":[4,9,2,20,6],"span":[187,11,32]},{"path":[4,9,2,20,1],"span":[187,33,36]},{"path":[4,9,2,20,3],"span":[187,39,41]},{"path":[4,9,2,21],"span":[188,2,62]},{"path":[4,9,2,21,4],"span":[188,2,10]},{"path":[4,9,2,21,6],"span":[188,11,41]},{"path":[4,9,2,21,1],"span":[188,42,56]},{"path":[4,9,2,21,3],"span":[188,59,61]},{"path":[4,9,2,22],"span":[189,2,63]},{"path":[4,9,2,22,4],"span":[189,2,10]},{"path":[4,9,2,22,6],"span":[189,11,41]},{"path":[4,9,2,22,1],"span":[189,42,57]},{"path":[4,9,2,22,3],"span":[189,60,62]},{"path":[4,9,2,23],"span":[190,2,45]},{"path":[4,9,2,23,4],"span":[190,2,10]},{"path":[4,9,2,23,6],"span":[190,11,33]},{"path":[4,9,2,23,1],"span":[190,34,39]},{"path":[4,9,2,23,3],"span":[190,42,44]},{"path":[4,9,2,24],"span":[191,2,49]},{"path":[4,9,2,24,4],"span":[191,2,10]},{"path":[4,9,2,24,6],"span":[191,11,35]},{"path":[4,9,2,24,1],"span":[191,36,43]},{"path":[4,9,2,24,3],"span":[191,46,48]},{"path":[4,9,2,25],"span":[192,2,54]},{"path":[4,9,2,25,4],"span":[192,2,10]},{"path":[4,9,2,25,6],"span":[192,11,37]},{"path":[4,9,2,25,1],"span":[192,38,48]},{"path":[4,9,2,25,3],"span":[192,51,53]},{"path":[4,9,2,26],"span":[193,2,55]},{"path":[4,9,2,26,4],"span":[193,2,10]},{"path":[4,9,2,26,6],"span":[193,11,33]},{"path":[4,9,2,26,1],"span":[193,34,49]},{"path":[4,9,2,26,3],"span":[193,52,54]},{"path":[4,9,2,27],"span":[194,2,55]},{"path":[4,9,2,27,4],"span":[194,2,10]},{"path":[4,9,2,27,6],"span":[194,11,33]},{"path":[4,9,2,27,1],"span":[194,34,49]},{"path":[4,9,2,27,3],"span":[194,52,54]},{"path":[4,9,2,28],"span":[195,2,76]},{"path":[4,9,2,28,4],"span":[195,2,10]},{"path":[4,9,2,28,6],"span":[195,11,43]},{"path":[4,9,2,28,1],"span":[195,44,70]},{"path":[4,9,2,28,3],"span":[195,73,75]},{"path":[4,9,2,29],"span":[196,2,68]},{"path":[4,9,2,29,4],"span":[196,2,10]},{"path":[4,9,2,29,6],"span":[196,11,39]},{"path":[4,9,2,29,1],"span":[196,40,62]},{"path":[4,9,2,29,3],"span":[196,65,67]},{"path":[4,9,2,30],"span":[197,2,68]},{"path":[4,9,2,30,4],"span":[197,2,10]},{"path":[4,9,2,30,6],"span":[197,11,39]},{"path":[4,9,2,30,1],"span":[197,40,62]},{"path":[4,9,2,30,3],"span":[197,65,67]},{"path":[4,9,2,31],"span":[200,2,27],"leadingComments":" OS\n"},{"path":[4,9,2,31,4],"span":[200,2,10]},{"path":[4,9,2,31,6],"span":[200,11,15]},{"path":[4,9,2,31,1],"span":[200,16,20]},{"path":[4,9,2,31,3],"span":[200,23,26]},{"path":[4,9,2,32],"span":[201,2,47]},{"path":[4,9,2,32,4],"span":[201,2,10]},{"path":[4,9,2,32,6],"span":[201,11,31]},{"path":[4,9,2,32,1],"span":[201,32,40]},{"path":[4,9,2,32,3],"span":[201,43,46]},{"path":[4,9,2,33],"span":[202,2,51]},{"path":[4,9,2,33,4],"span":[202,2,10]},{"path":[4,9,2,33,6],"span":[202,11,33]},{"path":[4,9,2,33,1],"span":[202,34,44]},{"path":[4,9,2,33,3],"span":[202,47,50]},{"path":[4,9,2,34],"span":[203,2,53]},{"path":[4,9,2,34,4],"span":[203,2,10]},{"path":[4,9,2,34,6],"span":[203,11,34]},{"path":[4,9,2,34,1],"span":[203,35,46]},{"path":[4,9,2,34,3],"span":[203,49,52]},{"path":[4,9,2,35],"span":[204,2,51]},{"path":[4,9,2,35,4],"span":[204,2,10]},{"path":[4,9,2,35,6],"span":[204,11,33]},{"path":[4,9,2,35,1],"span":[204,34,44]},{"path":[4,9,2,35,3],"span":[204,47,50]},{"path":[4,9,2,36],"span":[205,2,63]},{"path":[4,9,2,36,4],"span":[205,2,10]},{"path":[4,9,2,36,6],"span":[205,11,32]},{"path":[4,9,2,36,1],"span":[205,33,56]},{"path":[4,9,2,36,3],"span":[205,59,62]},{"path":[4,9,2,37],"span":[208,2,54],"leadingComments":" SW\n"},{"path":[4,9,2,37,4],"span":[208,2,10]},{"path":[4,9,2,37,6],"span":[208,11,28]},{"path":[4,9,2,37,1],"span":[208,29,47]},{"path":[4,9,2,37,3],"span":[208,50,53]},{"path":[4,9,2,38],"span":[209,2,45]},{"path":[4,9,2,38,4],"span":[209,2,10]},{"path":[4,9,2,38,6],"span":[209,11,28]},{"path":[4,9,2,38,1],"span":[209,29,38]},{"path":[4,9,2,38,3],"span":[209,41,44]},{"path":[4,9,2,39],"span":[210,2,49]},{"path":[4,9,2,39,4],"span":[210,2,10]},{"path":[4,9,2,39,6],"span":[210,11,25]},{"path":[4,9,2,39,1],"span":[210,26,42]},{"path":[4,9,2,39,3],"span":[210,45,48]},{"path":[4,9,2,40],"span":[211,2,40]},{"path":[4,9,2,40,4],"span":[211,2,10]},{"path":[4,9,2,40,6],"span":[211,11,21]},{"path":[4,9,2,40,1],"span":[211,22,33]},{"path":[4,9,2,40,3],"span":[211,36,39]},{"path":[4,9,2,41],"span":[212,2,31]},{"path":[4,9,2,41,4],"span":[212,2,10]},{"path":[4,9,2,41,6],"span":[212,11,17]},{"path":[4,9,2,41,1],"span":[212,18,24]},{"path":[4,9,2,41,3],"span":[212,27,30]},{"path":[4,9,2,42],"span":[213,2,48]},{"path":[4,9,2,42,4],"span":[213,2,10]},{"path":[4,9,2,42,6],"span":[213,11,25]},{"path":[4,9,2,42,1],"span":[213,26,41]},{"path":[4,9,2,42,3],"span":[213,44,47]},{"path":[4,9,2,43],"span":[214,2,48]},{"path":[4,9,2,43,4],"span":[214,2,10]},{"path":[4,9,2,43,6],"span":[214,11,25]},{"path":[4,9,2,43,1],"span":[214,26,41]},{"path":[4,9,2,43,3],"span":[214,44,47]},{"path":[4,9,2,44],"span":[215,2,52],"trailingComments":" specific to IE on Windows\n"},{"path":[4,9,2,44,4],"span":[215,2,10]},{"path":[4,9,2,44,6],"span":[215,11,27]},{"path":[4,9,2,44,1],"span":[215,28,45]},{"path":[4,9,2,44,3],"span":[215,48,51]},{"path":[4,9,2,45],"span":[216,2,53],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,9,2,45,4],"span":[216,2,10]},{"path":[4,9,2,45,6],"span":[216,11,27]},{"path":[4,9,2,45,1],"span":[216,28,46]},{"path":[4,9,2,45,3],"span":[216,49,52]},{"path":[4,9,2,46],"span":[217,2,69]},{"path":[4,9,2,46,4],"span":[217,2,10]},{"path":[4,9,2,46,6],"span":[217,11,39]},{"path":[4,9,2,46,1],"span":[217,40,62]},{"path":[4,9,2,46,3],"span":[217,65,68]},{"path":[4,9,2,47],"span":[218,2,46]},{"path":[4,9,2,47,4],"span":[218,2,10]},{"path":[4,9,2,47,6],"span":[218,11,24]},{"path":[4,9,2,47,1],"span":[218,25,39]},{"path":[4,9,2,47,3],"span":[218,42,45]},{"path":[4,9,2,48],"span":[222,2,36],"leadingComments":" USERS AND ACCOUNT\n","trailingComments":" i.e. computer current user\n"},{"path":[4,9,2,48,4],"span":[222,2,10]},{"path":[4,9,2,48,6],"span":[222,11,19]},{"path":[4,9,2,48,1],"span":[222,20,29]},{"path":[4,9,2,48,3],"span":[222,32,35]},{"path":[4,9,2,49],"span":[223,2,34]},{"path":[4,9,2,49,4],"span":[223,2,10]},{"path":[4,9,2,49,6],"span":[223,11,22]},{"path":[4,9,2,49,1],"span":[223,23,27]},{"path":[4,9,2,49,3],"span":[223,30,33]},{"path":[4,9,2,50],"span":[224,2,38]},{"path":[4,9,2,50,4],"span":[224,2,10]},{"path":[4,9,2,50,6],"span":[224,11,20]},{"path":[4,9,2,50,1],"span":[224,21,31]},{"path":[4,9,2,50,3],"span":[224,34,37]},{"path":[4,9,2,51],"span":[225,2,43]},{"path":[4,9,2,51,4],"span":[225,2,10]},{"path":[4,9,2,51,6],"span":[225,11,22]},{"path":[4,9,2,51,1],"span":[225,23,36]},{"path":[4,9,2,51,3],"span":[225,39,42]},{"path":[4,10],"span":[245,0,248,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,10,1],"span":[245,8,11]},{"path":[4,10,2,0],"span":[246,2,17]},{"path":[4,10,2,0,5],"span":[246,2,8]},{"path":[4,10,2,0,1],"span":[246,9,12]},{"path":[4,10,2,0,3],"span":[246,15,16]},{"path":[4,10,2,1],"span":[247,2,28]},{"path":[4,10,2,1,4],"span":[247,2,10]},{"path":[4,10,2,1,5],"span":[247,11,17]},{"path":[4,10,2,1,1],"span":[247,18,23]},{"path":[4,10,2,1,3],"span":[247,26,27]},{"path":[4,11],"span":[255,0,262,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,11,1],"span":[255,8,16]},{"path":[4,11,2,0],"span":[256,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,0,4],"span":[256,2,10]},{"path":[4,11,2,0,6],"span":[256,11,21]},{"path":[4,11,2,0,1],"span":[256,22,26]},{"path":[4,11,2,0,3],"span":[256,29,30]},{"path":[4,11,2,1],"span":[257,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,1,4],"span":[257,2,10]},{"path":[4,11,2,1,6],"span":[257,11,21]},{"path":[4,11,2,1,1],"span":[257,22,24]},{"path":[4,11,2,1,3],"span":[257,27,28]},{"path":[4,11,2,2],"span":[258,2,38]},{"path":[4,11,2,2,6],"span":[258,2,27]},{"path":[4,11,2,2,1],"span":[258,28,33]},{"path":[4,11,2,2,3],"span":[258,36,37]},{"path":[4,11,2,3],"span":[259,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,11,2,3,4],"span":[259,2,10]},{"path":[4,11,2,3,6],"span":[259,11,36]},{"path":[4,11,2,3,1],"span":[259,37,40]},{"path":[4,11,2,3,3],"span":[259,43,44]},{"path":[4,11,2,4],"span":[260,2,18]},{"path":[4,11,2,4,5],"span":[260,2,8]},{"path":[4,11,2,4,1],"span":[260,9,13]},{"path":[4,11,2,4,3],"span":[260,16,17]},{"path":[4,11,2,5],"span":[261,2,23]},{"path":[4,11,2,5,4],"span":[261,2,10]},{"path":[4,11,2,5,6],"span":[261,11,14]},{"path":[4,11,2,5,1],"span":[261,15,18]},{"path":[4,11,2,5,3],"span":[261,21,22]},{"path":[4,12],"span":[272,0,279,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,12,1],"span":[272,8,19]},{"path":[4,12,2,0],"span":[273,2,31]},{"path":[4,12,2,0,6],"span":[273,2,21]},{"path":[4,12,2,0,1],"span":[273,22,26]},{"path":[4,12,2,0,3],"span":[273,29,30]},{"path":[4,12,2,1],"span":[274,2,28]},{"path":[4,12,2,1,5],"span":[274,2,8]},{"path":[4,12,2,1,1],"span":[274,9,23]},{"path":[4,12,2,1,3],"span":[274,26,27]},{"path":[4,12,2,2],"span":[275,2,28]},{"path":[4,12,2,2,5],"span":[275,2,8]},{"path":[4,12,2,2,1],"span":[275,9,23]},{"path":[4,12,2,2,3],"span":[275,26,27]},{"path":[4,12,2,3],"span":[276,2,32]},{"path":[4,12,2,3,4],"span":[276,2,10]},{"path":[4,12,2,3,5],"span":[276,11,17]},{"path":[4,12,2,3,1],"span":[276,18,27]},{"path":[4,12,2,3,3],"span":[276,30,31]},{"path":[4,12,2,4],"span":[277,2,30]},{"path":[4,12,2,4,5],"span":[277,2,8]},{"path":[4,12,2,4,1],"span":[277,9,25]},{"path":[4,12,2,4,3],"span":[277,28,29]},{"path":[4,12,2,5],"span":[278,2,22]},{"path":[4,12,2,5,5],"span":[278,2,8]},{"path":[4,12,2,5,1],"span":[278,9,17]},{"path":[4,12,2,5,3],"span":[278,20,21]},{"path":[4,13],"span":[289,0,302,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,13,1],"span":[289,8,16]},{"path":[4,13,2,0],"span":[290,2,37]},{"path":[4,13,2,0,4],"span":[290,2,10]},{"path":[4,13,2,0,5],"span":[290,11,17]},{"path":[4,13,2,0,1],"span":[290,18,32]},{"path":[4,13,2,0,3],"span":[290,35,36]},{"path":[4,13,2,1],"span":[291,2,38]},{"path":[4,13,2,1,4],"span":[291,2,10]},{"path":[4,13,2,1,6],"span":[291,11,22]},{"path":[4,13,2,1,1],"span":[291,23,33]},{"path":[4,13,2,1,3],"span":[291,36,37]},{"path":[4,13,2,2],"span":[293,2,26]},{"path":[4,13,2,2,5],"span":[293,2,6]},{"path":[4,13,2,2,1],"span":[293,7,21]},{"path":[4,13,2,2,3],"span":[293,24,25]},{"path":[4,13,2,3],"span":[294,2,27]},{"path":[4,13,2,3,5],"span":[294,2,6]},{"path":[4,13,2,3,1],"span":[294,7,22]},{"path":[4,13,2,3,3],"span":[294,25,26]},{"path":[4,13,2,4],"span":[295,2,36]},{"path":[4,13,2,4,4],"span":[295,2,10]},{"path":[4,13,2,4,5],"span":[295,11,17]},{"path":[4,13,2,4,1],"span":[295,18,31]},{"path":[4,13,2,4,3],"span":[295,34,35]},{"path":[4,13,2,5],"span":[297,2,34]},{"path":[4,13,2,5,4],"span":[297,2,10]},{"path":[4,13,2,5,5],"span":[297,11,17]},{"path":[4,13,2,5,1],"span":[297,18,29]},{"path":[4,13,2,5,3],"span":[297,32,33]},{"path":[4,13,2,6],"span":[298,2,40]},{"path":[4,13,2,6,4],"span":[298,2,10]},{"path":[4,13,2,6,6],"span":[298,11,26]},{"path":[4,13,2,6,1],"span":[298,27,35]},{"path":[4,13,2,6,3],"span":[298,38,39]},{"path":[4,13,2,7],"span":[300,2,33]},{"path":[4,13,2,7,4],"span":[300,2,10]},{"path":[4,13,2,7,5],"span":[300,11,17]},{"path":[4,13,2,7,1],"span":[300,18,28]},{"path":[4,13,2,7,3],"span":[300,31,32]},{"path":[4,14],"span":[305,0,313,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,14,1],"span":[305,8,19]},{"path":[4,14,2,0],"span":[306,2,19]},{"path":[4,14,2,0,5],"span":[306,2,7]},{"path":[4,14,2,0,1],"span":[306,8,14]},{"path":[4,14,2,0,3],"span":[306,17,18]},{"path":[4,14,2,1],"span":[307,2,27]},{"path":[4,14,2,1,4],"span":[307,2,10]},{"path":[4,14,2,1,5],"span":[307,11,17]},{"path":[4,14,2,1,1],"span":[307,18,22]},{"path":[4,14,2,1,3],"span":[307,25,26]},{"path":[4,14,2,2],"span":[308,2,27]},{"path":[4,14,2,2,4],"span":[308,2,10]},{"path":[4,14,2,2,5],"span":[308,11,17]},{"path":[4,14,2,2,1],"span":[308,18,22]},{"path":[4,14,2,2,3],"span":[308,25,26]},{"path":[4,14,2,3],"span":[309,2,17]},{"path":[4,14,2,3,5],"span":[309,2,7]},{"path":[4,14,2,3,1],"span":[309,8,12]},{"path":[4,14,2,3,3],"span":[309,15,16]},{"path":[4,14,2,4],"span":[310,2,24]},{"path":[4,14,2,4,5],"span":[310,2,7]},{"path":[4,14,2,4,1],"span":[310,8,19]},{"path":[4,14,2,4,3],"span":[310,22,23]},{"path":[4,14,2,5],"span":[311,2,30],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,14,2,5,4],"span":[311,2,10]},{"path":[4,14,2,5,5],"span":[311,11,16]},{"path":[4,14,2,5,1],"span":[311,17,25]},{"path":[4,14,2,5,3],"span":[311,28,29]},{"path":[4,14,2,6],"span":[312,2,27],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,14,2,6,4],"span":[312,2,10]},{"path":[4,14,2,6,5],"span":[312,11,16]},{"path":[4,14,2,6,1],"span":[312,17,22]},{"path":[4,14,2,6,3],"span":[312,25,26]},{"path":[4,15],"span":[315,0,318,1]},{"path":[4,15,1],"span":[315,8,23]},{"path":[4,15,2,0],"span":[316,2,17]},{"path":[4,15,2,0,5],"span":[316,2,8]},{"path":[4,15,2,0,1],"span":[316,9,12]},{"path":[4,15,2,0,3],"span":[316,15,16]},{"path":[4,15,2,1],"span":[317,2,19]},{"path":[4,15,2,1,5],"span":[317,2,8]},{"path":[4,15,2,1,1],"span":[317,9,14]},{"path":[4,15,2,1,3],"span":[317,17,18]},{"path":[4,16],"span":[324,0,332,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,16,1],"span":[324,8,17]},{"path":[4,16,2,0],"span":[326,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,16,2,0,5],"span":[326,2,8]},{"path":[4,16,2,0,1],"span":[326,9,16]},{"path":[4,16,2,0,3],"span":[326,19,20]},{"path":[4,16,2,1],"span":[328,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,16,2,1,5],"span":[328,2,7]},{"path":[4,16,2,1,1],"span":[328,8,13]},{"path":[4,16,2,1,3],"span":[328,16,17]},{"path":[4,16,2,2],"span":[330,2,32],"leadingComments":" Fing Type\n"},{"path":[4,16,2,2,4],"span":[330,2,10]},{"path":[4,16,2,2,5],"span":[330,11,17]},{"path":[4,16,2,2,1],"span":[330,18,27]},{"path":[4,16,2,2,3],"span":[330,30,31]},{"path":[4,16,2,3],"span":[331,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,16,2,3,4],"span":[331,2,10]},{"path":[4,16,2,3,5],"span":[331,11,17]},{"path":[4,16,2,3,1],"span":[331,18,26]},{"path":[4,16,2,3,3],"span":[331,29,30]},{"path":[4,17],"span":[339,0,347,1],"leadingComments":"\n Detailed Source information for each source (aka installation in legacy terms)\n that at least once contributed to sending a scan about this asset.\n"},{"path":[4,17,1],"span":[339,8,18]},{"path":[4,17,2,0],"span":[340,2,23],"trailingComments":" source id, like installation id of IT\n"},{"path":[4,17,2,0,5],"span":[340,2,8]},{"path":[4,17,2,0,1],"span":[340,9,18]},{"path":[4,17,2,0,3],"span":[340,21,22]},{"path":[4,17,2,1],"span":[341,2,25],"trailingComments":" source type like e.g. IT\n"},{"path":[4,17,2,1,5],"span":[341,2,8]},{"path":[4,17,2,1,1],"span":[341,9,20]},{"path":[4,17,2,1,3],"span":[341,23,24]},{"path":[4,17,2,2],"span":[342,2,35],"trailingComments":" source agent name and version\n"},{"path":[4,17,2,2,4],"span":[342,2,10]},{"path":[4,17,2,2,5],"span":[342,11,17]},{"path":[4,17,2,2,1],"span":[342,18,30]},{"path":[4,17,2,2,3],"span":[342,33,34]},{"path":[4,17,2,3],"span":[343,2,34],"trailingComments":" source name\n"},{"path":[4,17,2,3,4],"span":[343,2,10]},{"path":[4,17,2,3,5],"span":[343,11,17]},{"path":[4,17,2,3,1],"span":[343,18,29]},{"path":[4,17,2,3,3],"span":[343,32,33]},{"path":[4,17,2,4],"span":[344,2,20],"trailingComments":" entity/asset raw id for source\n"},{"path":[4,17,2,4,5],"span":[344,2,8]},{"path":[4,17,2,4,1],"span":[344,9,15]},{"path":[4,17,2,4,3],"span":[344,18,19]},{"path":[4,17,2,5],"span":[345,2,44],"trailingComments":" later here we could also have a summary of errors, if needed to keep history\n"},{"path":[4,17,2,5,6],"span":[345,2,27]},{"path":[4,17,2,5,1],"span":[345,28,39]},{"path":[4,17,2,5,3],"span":[345,42,43]},{"path":[4,18],"span":[352,0,358,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,18,1],"span":[352,8,17]},{"path":[4,18,2,0],"span":[353,2,21],"trailingComments":" name of section\n"},{"path":[4,18,2,0,5],"span":[353,2,8]},{"path":[4,18,2,0,1],"span":[353,9,16]},{"path":[4,18,2,0,3],"span":[353,19,20]},{"path":[4,18,2,1],"span":[354,2,19],"trailingComments":" error descr\n"},{"path":[4,18,2,1,5],"span":[354,2,8]},{"path":[4,18,2,1,1],"span":[354,9,14]},{"path":[4,18,2,1,3],"span":[354,17,18]},{"path":[4,18,2,2],"span":[355,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,18,2,2,4],"span":[355,2,10]},{"path":[4,18,2,2,5],"span":[355,11,17]},{"path":[4,18,2,2,1],"span":[355,18,24]},{"path":[4,18,2,2,3],"span":[355,27,28]},{"path":[4,18,2,3],"span":[356,2,51]},{"path":[4,18,2,3,4],"span":[356,2,10]},{"path":[4,18,2,3,6],"span":[356,11,36]},{"path":[4,18,2,3,1],"span":[356,37,46]},{"path":[4,18,2,3,3],"span":[356,49,50]},{"path":[4,18,2,4],"span":[357,2,30]},{"path":[4,18,2,4,4],"span":[357,2,10]},{"path":[4,18,2,4,5],"span":[357,11,16]},{"path":[4,18,2,4,1],"span":[357,17,25]},{"path":[4,18,2,4,3],"span":[357,28,29]},{"path":[4,19],"span":[363,0,380,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,19,1],"span":[363,8,18]},{"path":[4,19,2,0],"span":[364,2,21]},{"path":[4,19,2,0,6],"span":[364,2,11]},{"path":[4,19,2,0,1],"span":[364,12,16]},{"path":[4,19,2,0,3],"span":[364,19,20]},{"path":[4,19,2,1],"span":[365,2,18]},{"path":[4,19,2,1,5],"span":[365,2,8]},{"path":[4,19,2,1,1],"span":[365,9,13]},{"path":[4,19,2,1,3],"span":[365,16,17]},{"path":[4,19,2,2],"span":[366,2,29]},{"path":[4,19,2,2,4],"span":[366,2,10]},{"path":[4,19,2,2,5],"span":[366,11,17]},{"path":[4,19,2,2,1],"span":[366,18,24]},{"path":[4,19,2,2,3],"span":[366,27,28]},{"path":[4,19,2,3],"span":[367,2,33]},{"path":[4,19,2,3,4],"span":[367,2,10]},{"path":[4,19,2,3,5],"span":[367,11,17]},{"path":[4,19,2,3,1],"span":[367,18,28]},{"path":[4,19,2,3,3],"span":[367,31,32]},{"path":[4,19,2,4],"span":[368,2,29]},{"path":[4,19,2,4,4],"span":[368,2,10]},{"path":[4,19,2,4,5],"span":[368,11,17]},{"path":[4,19,2,4,1],"span":[368,18,24]},{"path":[4,19,2,4,3],"span":[368,27,28]},{"path":[4,19,2,5],"span":[369,2,26]},{"path":[4,19,2,5,4],"span":[369,2,10]},{"path":[4,19,2,5,5],"span":[369,11,17]},{"path":[4,19,2,5,1],"span":[369,18,21]},{"path":[4,19,2,5,3],"span":[369,24,25]},{"path":[4,19,2,6],"span":[370,2,33]},{"path":[4,19,2,6,4],"span":[370,2,10]},{"path":[4,19,2,6,5],"span":[370,11,17]},{"path":[4,19,2,6,1],"span":[370,18,28]},{"path":[4,19,2,6,3],"span":[370,31,32]},{"path":[4,19,2,7],"span":[371,2,32]},{"path":[4,19,2,7,4],"span":[371,2,10]},{"path":[4,19,2,7,5],"span":[371,11,17]},{"path":[4,19,2,7,1],"span":[371,18,27]},{"path":[4,19,2,7,3],"span":[371,30,31]},{"path":[4,19,2,8],"span":[372,2,27]},{"path":[4,19,2,8,4],"span":[372,2,10]},{"path":[4,19,2,8,5],"span":[372,11,17]},{"path":[4,19,2,8,1],"span":[372,18,22]},{"path":[4,19,2,8,3],"span":[372,25,26]},{"path":[4,19,2,9],"span":[379,2,24],"leadingComments":"\n Asset confidence 1-100:\n - 100 is for credential-scan assets by LS internal scanners\n - <100 is for e.g. CDR or imported data from 3rd parties\n"},{"path":[4,19,2,9,5],"span":[379,2,7]},{"path":[4,19,2,9,1],"span":[379,8,18]},{"path":[4,19,2,9,3],"span":[379,21,23]},{"path":[4,20],"span":[382,0,387,1]},{"path":[4,20,1],"span":[382,8,16]},{"path":[4,20,2,0],"span":[383,4,25]},{"path":[4,20,2,0,5],"span":[383,4,10]},{"path":[4,20,2,0,1],"span":[383,11,20]},{"path":[4,20,2,0,3],"span":[383,23,24]},{"path":[4,20,2,1],"span":[384,4,34]},{"path":[4,20,2,1,4],"span":[384,4,12]},{"path":[4,20,2,1,5],"span":[384,13,19]},{"path":[4,20,2,1,1],"span":[384,20,29]},{"path":[4,20,2,1,3],"span":[384,32,33]},{"path":[4,20,2,2],"span":[385,4,28]},{"path":[4,20,2,2,4],"span":[385,4,12]},{"path":[4,20,2,2,5],"span":[385,13,19]},{"path":[4,20,2,2,1],"span":[385,20,23]},{"path":[4,20,2,2,3],"span":[385,26,27]},{"path":[4,20,2,3],"span":[386,4,28]},{"path":[4,20,2,3,4],"span":[386,4,12]},{"path":[4,20,2,3,5],"span":[386,13,19]},{"path":[4,20,2,3,1],"span":[386,20,23]},{"path":[4,20,2,3,3],"span":[386,26,27]},{"path":[4,21],"span":[392,0,419,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,21,1],"span":[392,8,19]},{"path":[4,21,2,0],"span":[393,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,21,2,0,4],"span":[393,2,10]},{"path":[4,21,2,0,5],"span":[393,11,17]},{"path":[4,21,2,0,1],"span":[393,18,22]},{"path":[4,21,2,0,3],"span":[393,25,26]},{"path":[4,21,2,1],"span":[394,2,29]},{"path":[4,21,2,1,4],"span":[394,2,10]},{"path":[4,21,2,1,5],"span":[394,11,17]},{"path":[4,21,2,1,1],"span":[394,18,24]},{"path":[4,21,2,1,3],"span":[394,27,28]},{"path":[4,21,2,2],"span":[395,2,30]},{"path":[4,21,2,2,4],"span":[395,2,10]},{"path":[4,21,2,2,5],"span":[395,11,17]},{"path":[4,21,2,2,1],"span":[395,18,25]},{"path":[4,21,2,2,3],"span":[395,28,29]},{"path":[4,21,2,3],"span":[396,2,34],"trailingComments":" unix:comment\n"},{"path":[4,21,2,3,4],"span":[396,2,10]},{"path":[4,21,2,3,5],"span":[396,11,17]},{"path":[4,21,2,3,1],"span":[396,18,29]},{"path":[4,21,2,3,3],"span":[396,32,33]},{"path":[4,21,2,4],"span":[397,2,32]},{"path":[4,21,2,4,4],"span":[397,2,10]},{"path":[4,21,2,4,5],"span":[397,11,17]},{"path":[4,21,2,4,1],"span":[397,18,27]},{"path":[4,21,2,4,3],"span":[397,30,31]},{"path":[4,21,2,5],"span":[399,2,40],"trailingComments":" unix:type\n"},{"path":[4,21,2,5,4],"span":[399,2,10]},{"path":[4,21,2,5,6],"span":[399,11,22]},{"path":[4,21,2,5,1],"span":[399,23,35]},{"path":[4,21,2,5,3],"span":[399,38,39]},{"path":[4,21,2,6],"span":[401,2,26]},{"path":[4,21,2,6,4],"span":[401,2,10]},{"path":[4,21,2,6,5],"span":[401,11,17]},{"path":[4,21,2,6,1],"span":[401,18,21]},{"path":[4,21,2,6,3],"span":[401,24,25]},{"path":[4,21,2,7],"span":[402,2,36]},{"path":[4,21,2,7,4],"span":[402,2,10]},{"path":[4,21,2,7,6],"span":[402,11,22]},{"path":[4,21,2,7,1],"span":[402,23,31]},{"path":[4,21,2,7,3],"span":[402,34,35]},{"path":[4,21,2,8],"span":[404,2,34]},{"path":[4,21,2,8,4],"span":[404,2,10]},{"path":[4,21,2,8,5],"span":[404,11,15]},{"path":[4,21,2,8,1],"span":[404,16,29]},{"path":[4,21,2,8,3],"span":[404,32,33]},{"path":[4,21,2,9],"span":[405,2,30]},{"path":[4,21,2,9,4],"span":[405,2,10]},{"path":[4,21,2,9,5],"span":[405,11,15]},{"path":[4,21,2,9,1],"span":[405,16,24]},{"path":[4,21,2,9,3],"span":[405,27,29]},{"path":[4,21,2,10],"span":[406,2,29]},{"path":[4,21,2,10,4],"span":[406,2,10]},{"path":[4,21,2,10,5],"span":[406,11,15]},{"path":[4,21,2,10,1],"span":[406,16,23]},{"path":[4,21,2,10,3],"span":[406,26,28]},{"path":[4,21,2,11],"span":[407,2,41]},{"path":[4,21,2,11,4],"span":[407,2,10]},{"path":[4,21,2,11,5],"span":[407,11,15]},{"path":[4,21,2,11,1],"span":[407,16,35]},{"path":[4,21,2,11,3],"span":[407,38,40]},{"path":[4,21,2,12],"span":[408,2,38]},{"path":[4,21,2,12,4],"span":[408,2,10]},{"path":[4,21,2,12,5],"span":[408,11,15]},{"path":[4,21,2,12,1],"span":[408,16,32]},{"path":[4,21,2,12,3],"span":[408,35,37]},{"path":[4,21,2,13],"span":[409,2,39]},{"path":[4,21,2,13,4],"span":[409,2,10]},{"path":[4,21,2,13,5],"span":[409,11,15]},{"path":[4,21,2,13,1],"span":[409,16,33]},{"path":[4,21,2,13,3],"span":[409,36,38]},{"path":[4,21,2,14],"span":[411,2,30]},{"path":[4,21,2,14,4],"span":[411,2,10]},{"path":[4,21,2,14,5],"span":[411,11,17]},{"path":[4,21,2,14,1],"span":[411,18,24]},{"path":[4,21,2,14,3],"span":[411,27,29]},{"path":[4,21,2,15],"span":[414,2,30],"leadingComments":" unix specific\n"},{"path":[4,21,2,15,4],"span":[414,2,10]},{"path":[4,21,2,15,5],"span":[414,11,16]},{"path":[4,21,2,15,1],"span":[414,17,24]},{"path":[4,21,2,15,3],"span":[414,27,29]},{"path":[4,21,2,16],"span":[415,2,31]},{"path":[4,21,2,16,4],"span":[415,2,10]},{"path":[4,21,2,16,5],"span":[415,11,16]},{"path":[4,21,2,16,1],"span":[415,17,25]},{"path":[4,21,2,16,3],"span":[415,28,30]},{"path":[4,21,2,17],"span":[417,2,38]},{"path":[4,21,2,17,4],"span":[417,2,10]},{"path":[4,21,2,17,5],"span":[417,11,17]},{"path":[4,21,2,17,1],"span":[417,18,32]},{"path":[4,21,2,17,3],"span":[417,35,37]},{"path":[4,21,2,18],"span":[418,2,35]},{"path":[4,21,2,18,4],"span":[418,2,10]},{"path":[4,21,2,18,5],"span":[418,11,17]},{"path":[4,21,2,18,1],"span":[418,18,29]},{"path":[4,21,2,18,3],"span":[418,32,34]},{"path":[4,22],"span":[425,0,437,1],"leadingComments":"\n User group, from Windows.WindowsGroup and Unix.GroupEntry.\n Note that Unix.user_names are not here but programmatically mapped to UserInGroup.\n"},{"path":[4,22,1],"span":[425,8,17]},{"path":[4,22,2,0],"span":[426,2,27]},{"path":[4,22,2,0,4],"span":[426,2,10]},{"path":[4,22,2,0,5],"span":[426,11,17]},{"path":[4,22,2,0,1],"span":[426,18,22]},{"path":[4,22,2,0,3],"span":[426,25,26]},{"path":[4,22,2,1],"span":[427,2,30]},{"path":[4,22,2,1,4],"span":[427,2,10]},{"path":[4,22,2,1,5],"span":[427,11,17]},{"path":[4,22,2,1,1],"span":[427,18,25]},{"path":[4,22,2,1,3],"span":[427,28,29]},{"path":[4,22,2,2],"span":[428,2,34]},{"path":[4,22,2,2,4],"span":[428,2,10]},{"path":[4,22,2,2,5],"span":[428,11,17]},{"path":[4,22,2,2,1],"span":[428,18,29]},{"path":[4,22,2,2,3],"span":[428,32,33]},{"path":[4,22,2,3],"span":[429,2,29]},{"path":[4,22,2,3,4],"span":[429,2,10]},{"path":[4,22,2,3,5],"span":[429,11,17]},{"path":[4,22,2,3,1],"span":[429,18,24]},{"path":[4,22,2,3,3],"span":[429,27,28]},{"path":[4,22,2,4],"span":[431,2,26]},{"path":[4,22,2,4,4],"span":[431,2,10]},{"path":[4,22,2,4,5],"span":[431,11,17]},{"path":[4,22,2,4,1],"span":[431,18,21]},{"path":[4,22,2,4,3],"span":[431,24,25]},{"path":[4,22,2,5],"span":[432,2,34]},{"path":[4,22,2,5,4],"span":[432,2,10]},{"path":[4,22,2,5,5],"span":[432,11,15]},{"path":[4,22,2,5,1],"span":[432,16,29]},{"path":[4,22,2,5,3],"span":[432,32,33]},{"path":[4,22,2,6],"span":[435,2,30],"leadingComments":" unix specific\n"},{"path":[4,22,2,6,4],"span":[435,2,10]},{"path":[4,22,2,6,5],"span":[435,11,16]},{"path":[4,22,2,6,1],"span":[435,17,25]},{"path":[4,22,2,6,3],"span":[435,28,29]},{"path":[4,22,2,7],"span":[436,2,27]},{"path":[4,22,2,7,4],"span":[436,2,10]},{"path":[4,22,2,7,5],"span":[436,11,17]},{"path":[4,22,2,7,1],"span":[436,18,22]},{"path":[4,22,2,7,3],"span":[436,25,26]},{"path":[4,23],"span":[444,0,451,1],"leadingComments":"\n Many to many relationship between users and groups and related relation properties.\n Windows: direct mapping mapped from WindowsUserInGroupInfo.\n Unix: created from parsing of Unix.GroupEntry.user_names\n"},{"path":[4,23,1],"span":[444,8,19]},{"path":[4,23,2,0],"span":[445,2,33]},{"path":[4,23,2,0,4],"span":[445,2,10]},{"path":[4,23,2,0,5],"span":[445,11,17]},{"path":[4,23,2,0,1],"span":[445,18,28]},{"path":[4,23,2,0,3],"span":[445,31,32]},{"path":[4,23,2,1],"span":[446,2,32]},{"path":[4,23,2,1,4],"span":[446,2,10]},{"path":[4,23,2,1,5],"span":[446,11,17]},{"path":[4,23,2,1,1],"span":[446,18,27]},{"path":[4,23,2,1,3],"span":[446,30,31]},{"path":[4,23,2,2],"span":[447,2,39]},{"path":[4,23,2,2,4],"span":[447,2,10]},{"path":[4,23,2,2,5],"span":[447,11,17]},{"path":[4,23,2,2,1],"span":[447,18,34]},{"path":[4,23,2,2,3],"span":[447,37,38]},{"path":[4,23,2,3],"span":[448,2,35]},{"path":[4,23,2,3,4],"span":[448,2,10]},{"path":[4,23,2,3,5],"span":[448,11,17]},{"path":[4,23,2,3,1],"span":[448,18,30]},{"path":[4,23,2,3,3],"span":[448,33,34]},{"path":[4,23,2,4],"span":[450,2,35]},{"path":[4,23,2,4,4],"span":[450,2,10]},{"path":[4,23,2,4,5],"span":[450,11,15]},{"path":[4,23,2,4,1],"span":[450,16,30]},{"path":[4,23,2,4,3],"span":[450,33,34]},{"path":[4,24],"span":[458,0,495,1],"leadingComments":"\n IE on Windows. Very specific.\n From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,\n WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.\n"},{"path":[4,24,1],"span":[458,8,24]},{"path":[4,24,3,0],"span":[460,4,465,5],"leadingComments":" from WindowsActiveX\n"},{"path":[4,24,3,0,1],"span":[460,12,19]},{"path":[4,24,3,0,2,0],"span":[461,6,34]},{"path":[4,24,3,0,2,0,4],"span":[461,6,14]},{"path":[4,24,3,0,2,0,5],"span":[461,15,21]},{"path":[4,24,3,0,2,0,1],"span":[461,22,29]},{"path":[4,24,3,0,2,0,3],"span":[461,32,33]},{"path":[4,24,3,0,2,1],"span":[462,6,36]},{"path":[4,24,3,0,2,1,4],"span":[462,6,14]},{"path":[4,24,3,0,2,1,5],"span":[462,15,21]},{"path":[4,24,3,0,2,1,1],"span":[462,22,31]},{"path":[4,24,3,0,2,1,3],"span":[462,34,35]},{"path":[4,24,3,0,2,2],"span":[463,6,31]},{"path":[4,24,3,0,2,2,4],"span":[463,6,14]},{"path":[4,24,3,0,2,2,5],"span":[463,15,21]},{"path":[4,24,3,0,2,2,1],"span":[463,22,26]},{"path":[4,24,3,0,2,2,3],"span":[463,29,30]},{"path":[4,24,3,0,2,3],"span":[464,6,30]},{"path":[4,24,3,0,2,3,4],"span":[464,6,14]},{"path":[4,24,3,0,2,3,5],"span":[464,15,21]},{"path":[4,24,3,0,2,3,1],"span":[464,22,25]},{"path":[4,24,3,0,2,3,3],"span":[464,28,29]},{"path":[4,24,3,1],"span":[468,4,478,5],"leadingComments":" InternetExplorerExtensionInfo\n"},{"path":[4,24,3,1,1],"span":[468,12,21]},{"path":[4,24,3,1,2,0],"span":[469,6,34]},{"path":[4,24,3,1,2,0,4],"span":[469,6,14]},{"path":[4,24,3,1,2,0,5],"span":[469,15,21]},{"path":[4,24,3,1,2,0,1],"span":[469,22,29]},{"path":[4,24,3,1,2,0,3],"span":[469,32,33]},{"path":[4,24,3,1,2,1],"span":[470,6,38]},{"path":[4,24,3,1,2,1,4],"span":[470,6,14]},{"path":[4,24,3,1,2,1,5],"span":[470,15,21]},{"path":[4,24,3,1,2,1,1],"span":[470,22,33]},{"path":[4,24,3,1,2,1,3],"span":[470,36,37]},{"path":[4,24,3,1,2,2],"span":[471,6,33]},{"path":[4,24,3,1,2,2,4],"span":[471,6,14]},{"path":[4,24,3,1,2,2,5],"span":[471,15,21]},{"path":[4,24,3,1,2,2,1],"span":[471,22,28]},{"path":[4,24,3,1,2,2,3],"span":[471,31,32]},{"path":[4,24,3,1,2,3],"span":[472,6,42]},{"path":[4,24,3,1,2,3,4],"span":[472,6,14]},{"path":[4,24,3,1,2,3,5],"span":[472,15,21]},{"path":[4,24,3,1,2,3,1],"span":[472,22,37]},{"path":[4,24,3,1,2,3,3],"span":[472,40,41]},{"path":[4,24,3,1,2,4],"span":[473,6,31]},{"path":[4,24,3,1,2,4,4],"span":[473,6,14]},{"path":[4,24,3,1,2,4,5],"span":[473,15,21]},{"path":[4,24,3,1,2,4,1],"span":[473,22,26]},{"path":[4,24,3,1,2,4,3],"span":[473,29,30]},{"path":[4,24,3,1,2,5],"span":[474,6,35]},{"path":[4,24,3,1,2,5,4],"span":[474,6,14]},{"path":[4,24,3,1,2,5,5],"span":[474,15,21]},{"path":[4,24,3,1,2,5,1],"span":[474,22,30]},{"path":[4,24,3,1,2,5,3],"span":[474,33,34]},{"path":[4,24,3,1,2,6],"span":[475,6,31]},{"path":[4,24,3,1,2,6,4],"span":[475,6,14]},{"path":[4,24,3,1,2,6,5],"span":[475,15,21]},{"path":[4,24,3,1,2,6,1],"span":[475,22,26]},{"path":[4,24,3,1,2,6,3],"span":[475,29,30]},{"path":[4,24,3,1,2,7],"span":[476,6,36]},{"path":[4,24,3,1,2,7,4],"span":[476,6,14]},{"path":[4,24,3,1,2,7,5],"span":[476,15,21]},{"path":[4,24,3,1,2,7,1],"span":[476,22,31]},{"path":[4,24,3,1,2,7,3],"span":[476,34,35]},{"path":[4,24,3,1,2,8],"span":[477,6,34]},{"path":[4,24,3,1,2,8,4],"span":[477,6,14]},{"path":[4,24,3,1,2,8,5],"span":[477,15,21]},{"path":[4,24,3,1,2,8,1],"span":[477,22,29]},{"path":[4,24,3,1,2,8,3],"span":[477,32,33]},{"path":[4,24,3,2],"span":[481,2,483,3],"leadingComments":" from InternetExplorerBrowserObjectInfo\n"},{"path":[4,24,3,2,1],"span":[481,10,23]},{"path":[4,24,3,2,2,0],"span":[482,4,23]},{"path":[4,24,3,2,2,0,5],"span":[482,4,10]},{"path":[4,24,3,2,2,0,1],"span":[482,11,18]},{"path":[4,24,3,2,2,0,3],"span":[482,21,22]},{"path":[4,24,3,3],"span":[486,2,488,3],"leadingComments":" from WindowsInternetExplorerBarInfo\n"},{"path":[4,24,3,3,1],"span":[486,10,17]},{"path":[4,24,3,3,2,0],"span":[487,4,23]},{"path":[4,24,3,3,2,0,5],"span":[487,4,10]},{"path":[4,24,3,3,2,0,1],"span":[487,11,18]},{"path":[4,24,3,3,2,0,3],"span":[487,21,22]},{"path":[4,24,2,0],"span":[491,2,32]},{"path":[4,24,2,0,4],"span":[491,2,10]},{"path":[4,24,2,0,6],"span":[491,11,18]},{"path":[4,24,2,0,1],"span":[491,19,27]},{"path":[4,24,2,0,3],"span":[491,30,31]},{"path":[4,24,2,1],"span":[492,2,33]},{"path":[4,24,2,1,4],"span":[492,2,10]},{"path":[4,24,2,1,6],"span":[492,11,24]},{"path":[4,24,2,1,1],"span":[492,25,28]},{"path":[4,24,2,1,3],"span":[492,31,32]},{"path":[4,24,2,2],"span":[493,2,44]},{"path":[4,24,2,2,4],"span":[493,2,10]},{"path":[4,24,2,2,6],"span":[493,11,24]},{"path":[4,24,2,2,1],"span":[493,25,39]},{"path":[4,24,2,2,3],"span":[493,42,43]},{"path":[4,24,2,3],"span":[494,2,35]},{"path":[4,24,2,3,4],"span":[494,2,10]},{"path":[4,24,2,3,6],"span":[494,11,20]},{"path":[4,24,2,3,1],"span":[494,21,30]},{"path":[4,24,2,3,3],"span":[494,33,34]},{"path":[4,25],"span":[500,0,524,1],"leadingComments":"\n SQL Server extended information on Windows Computers.\n"},{"path":[4,25,1],"span":[500,8,24]},{"path":[4,25,4,0],"span":[501,2,505,3]},{"path":[4,25,4,0,1],"span":[501,7,28]},{"path":[4,25,4,0,2,0],"span":[502,4,21]},{"path":[4,25,4,0,2,0,1],"span":[502,4,16]},{"path":[4,25,4,0,2,0,2],"span":[502,19,20]},{"path":[4,25,4,0,2,1],"span":[503,4,16]},{"path":[4,25,4,0,2,1,1],"span":[503,4,11]},{"path":[4,25,4,0,2,1,2],"span":[503,14,15]},{"path":[4,25,4,0,2,2],"span":[504,4,14]},{"path":[4,25,4,0,2,2,1],"span":[504,4,9]},{"path":[4,25,4,0,2,2,2],"span":[504,12,13]},{"path":[4,25,2,0],"span":[507,4,26]},{"path":[4,25,2,0,5],"span":[507,4,8]},{"path":[4,25,2,0,1],"span":[507,9,21]},{"path":[4,25,2,0,3],"span":[507,24,25]},{"path":[4,25,2,1],"span":[508,4,54]},{"path":[4,25,2,1,6],"span":[508,4,25]},{"path":[4,25,2,1,1],"span":[508,26,49]},{"path":[4,25,2,1,3],"span":[508,52,53]},{"path":[4,25,2,2],"span":[509,4,45]},{"path":[4,25,2,2,4],"span":[509,4,12]},{"path":[4,25,2,2,6],"span":[509,13,30]},{"path":[4,25,2,2,1],"span":[509,31,40]},{"path":[4,25,2,2,3],"span":[509,43,44]},{"path":[4,25,2,3],"span":[510,4,43]},{"path":[4,25,2,3,4],"span":[510,4,12]},{"path":[4,25,2,3,6],"span":[510,13,29]},{"path":[4,25,2,3,1],"span":[510,30,38]},{"path":[4,25,2,3,3],"span":[510,41,42]},{"path":[4,25,2,4],"span":[511,4,28]},{"path":[4,25,2,4,5],"span":[511,4,10]},{"path":[4,25,2,4,1],"span":[511,11,23]},{"path":[4,25,2,4,3],"span":[511,26,27]},{"path":[4,25,2,5],"span":[512,4,31]},{"path":[4,25,2,5,5],"span":[512,4,10]},{"path":[4,25,2,5,1],"span":[512,11,26]},{"path":[4,25,2,5,3],"span":[512,29,30]},{"path":[4,25,2,6],"span":[513,4,23]},{"path":[4,25,2,6,5],"span":[513,4,10]},{"path":[4,25,2,6,1],"span":[513,11,18]},{"path":[4,25,2,6,3],"span":[513,21,22]},{"path":[4,25,2,7],"span":[514,4,32]},{"path":[4,25,2,7,4],"span":[514,4,12]},{"path":[4,25,2,7,5],"span":[514,13,18]},{"path":[4,25,2,7,1],"span":[514,19,27]},{"path":[4,25,2,7,3],"span":[514,30,31]},{"path":[4,25,2,8],"span":[515,4,33]},{"path":[4,25,2,8,4],"span":[515,4,12]},{"path":[4,25,2,8,5],"span":[515,13,19]},{"path":[4,25,2,8,1],"span":[515,20,28]},{"path":[4,25,2,8,3],"span":[515,31,32]},{"path":[4,25,2,9],"span":[516,4,39]},{"path":[4,25,2,9,4],"span":[516,4,12]},{"path":[4,25,2,9,6],"span":[516,13,24]},{"path":[4,25,2,9,1],"span":[516,25,33]},{"path":[4,25,2,9,3],"span":[516,36,38]},{"path":[4,25,2,10],"span":[517,4,32]},{"path":[4,25,2,10,4],"span":[517,4,12]},{"path":[4,25,2,10,5],"span":[517,13,17]},{"path":[4,25,2,10,1],"span":[517,18,26]},{"path":[4,25,2,10,3],"span":[517,29,31]},{"path":[4,25,2,11],"span":[518,4,38]},{"path":[4,25,2,11,4],"span":[518,4,12]},{"path":[4,25,2,11,5],"span":[518,13,19]},{"path":[4,25,2,11,1],"span":[518,20,32]},{"path":[4,25,2,11,3],"span":[518,35,37]},{"path":[4,25,2,12],"span":[519,4,38]},{"path":[4,25,2,12,4],"span":[519,4,12]},{"path":[4,25,2,12,5],"span":[519,13,19]},{"path":[4,25,2,12,1],"span":[519,20,32]},{"path":[4,25,2,12,3],"span":[519,35,37]},{"path":[4,25,2,13],"span":[520,4,35]},{"path":[4,25,2,13,4],"span":[520,4,12]},{"path":[4,25,2,13,5],"span":[520,13,19]},{"path":[4,25,2,13,1],"span":[520,20,29]},{"path":[4,25,2,13,3],"span":[520,32,34]},{"path":[4,25,2,14],"span":[521,4,43]},{"path":[4,25,2,14,4],"span":[521,4,12]},{"path":[4,25,2,14,6],"span":[521,13,29]},{"path":[4,25,2,14,1],"span":[521,30,37]},{"path":[4,25,2,14,3],"span":[521,40,42]},{"path":[4,25,2,15],"span":[522,4,28]},{"path":[4,25,2,15,5],"span":[522,4,10]},{"path":[4,25,2,15,1],"span":[522,11,22]},{"path":[4,25,2,15,3],"span":[522,25,27]},{"path":[4,25,2,16],"span":[523,4,39]},{"path":[4,25,2,16,4],"span":[523,4,12]},{"path":[4,25,2,16,5],"span":[523,13,19]},{"path":[4,25,2,16,1],"span":[523,20,33]},{"path":[4,25,2,16,3],"span":[523,36,38]},{"path":[4,26],"span":[527,0,532,1]},{"path":[4,26,1],"span":[527,8,25]},{"path":[4,26,2,0],"span":[528,2,40]},{"path":[4,26,2,0,4],"span":[528,2,10]},{"path":[4,26,2,0,5],"span":[528,11,16]},{"path":[4,26,2,0,1],"span":[528,17,35]},{"path":[4,26,2,0,3],"span":[528,38,39]},{"path":[4,26,2,1],"span":[529,2,39]},{"path":[4,26,2,1,4],"span":[529,2,10]},{"path":[4,26,2,1,5],"span":[529,11,16]},{"path":[4,26,2,1,1],"span":[529,17,34]},{"path":[4,26,2,1,3],"span":[529,37,38]},{"path":[4,26,2,2],"span":[530,2,44]},{"path":[4,26,2,2,4],"span":[530,2,10]},{"path":[4,26,2,2,5],"span":[530,11,16]},{"path":[4,26,2,2,1],"span":[530,17,39]},{"path":[4,26,2,2,3],"span":[530,42,43]},{"path":[4,26,2,3],"span":[531,2,27]},{"path":[4,26,2,3,4],"span":[531,2,10]},{"path":[4,26,2,3,5],"span":[531,11,17]},{"path":[4,26,2,3,1],"span":[531,18,22]},{"path":[4,26,2,3,3],"span":[531,25,26]},{"path":[4,27],"span":[534,0,558,1]},{"path":[4,27,1],"span":[534,8,24]},{"path":[4,27,4,0],"span":[535,2,544,3]},{"path":[4,27,4,0,1],"span":[535,7,19]},{"path":[4,27,4,0,2,0],"span":[536,4,25]},{"path":[4,27,4,0,2,0,1],"span":[536,4,20]},{"path":[4,27,4,0,2,0,2],"span":[536,23,24]},{"path":[4,27,4,0,2,1],"span":[537,4,16]},{"path":[4,27,4,0,2,1,1],"span":[537,4,11]},{"path":[4,27,4,0,2,1,2],"span":[537,14,15]},{"path":[4,27,4,0,2,2],"span":[538,4,22]},{"path":[4,27,4,0,2,2,1],"span":[538,4,17]},{"path":[4,27,4,0,2,2,2],"span":[538,20,21]},{"path":[4,27,4,0,2,3],"span":[539,4,21]},{"path":[4,27,4,0,2,3,1],"span":[539,4,16]},{"path":[4,27,4,0,2,3,2],"span":[539,19,20]},{"path":[4,27,4,0,2,4],"span":[540,4,16]},{"path":[4,27,4,0,2,4,1],"span":[540,4,11]},{"path":[4,27,4,0,2,4,2],"span":[540,14,15]},{"path":[4,27,4,0,2,5],"span":[541,4,25]},{"path":[4,27,4,0,2,5,1],"span":[541,4,20]},{"path":[4,27,4,0,2,5,2],"span":[541,23,24]},{"path":[4,27,4,0,2,6],"span":[542,4,22]},{"path":[4,27,4,0,2,6,1],"span":[542,4,17]},{"path":[4,27,4,0,2,6,2],"span":[542,20,21]},{"path":[4,27,4,0,2,7],"span":[543,4,15]},{"path":[4,27,4,0,2,7,1],"span":[543,4,10]},{"path":[4,27,4,0,2,7,2],"span":[543,13,14]},{"path":[4,27,4,1],"span":[546,2,552,3]},{"path":[4,27,4,1,1],"span":[546,7,25]},{"path":[4,27,4,1,2,0],"span":[547,4,32]},{"path":[4,27,4,1,2,0,1],"span":[547,4,27]},{"path":[4,27,4,1,2,0,2],"span":[547,30,31]},{"path":[4,27,4,1,2,1],"span":[548,4,27]},{"path":[4,27,4,1,2,1,1],"span":[548,4,22]},{"path":[4,27,4,1,2,1,2],"span":[548,25,26]},{"path":[4,27,4,1,2,2],"span":[549,4,18]},{"path":[4,27,4,1,2,2,1],"span":[549,4,13]},{"path":[4,27,4,1,2,2,2],"span":[549,16,17]},{"path":[4,27,4,1,2,3],"span":[550,4,15]},{"path":[4,27,4,1,2,3,1],"span":[550,4,10]},{"path":[4,27,4,1,2,3,2],"span":[550,13,14]},{"path":[4,27,4,1,2,4],"span":[551,4,17]},{"path":[4,27,4,1,2,4,1],"span":[551,4,12]},{"path":[4,27,4,1,2,4,2],"span":[551,15,16]},{"path":[4,27,2,0],"span":[554,2,34]},{"path":[4,27,2,0,4],"span":[554,2,10]},{"path":[4,27,2,0,6],"span":[554,11,23]},{"path":[4,27,2,0,1],"span":[554,24,29]},{"path":[4,27,2,0,3],"span":[554,32,33]},{"path":[4,27,2,1],"span":[555,2,47]},{"path":[4,27,2,1,4],"span":[555,2,10]},{"path":[4,27,2,1,6],"span":[555,11,29]},{"path":[4,27,2,1,1],"span":[555,30,42]},{"path":[4,27,2,1,3],"span":[555,45,46]},{"path":[4,27,2,2],"span":[556,2,27]},{"path":[4,27,2,2,4],"span":[556,2,10]},{"path":[4,27,2,2,5],"span":[556,11,17]},{"path":[4,27,2,2,1],"span":[556,18,22]},{"path":[4,27,2,2,3],"span":[556,25,26]},{"path":[4,27,2,3],"span":[557,2,34]},{"path":[4,27,2,3,4],"span":[557,2,10]},{"path":[4,27,2,3,5],"span":[557,11,17]},{"path":[4,27,2,3,1],"span":[557,18,29]},{"path":[4,27,2,3,3],"span":[557,32,33]},{"path":[4,28],"span":[560,0,563,1]},{"path":[4,28,1],"span":[560,8,24]},{"path":[4,28,2,0],"span":[561,2,27]},{"path":[4,28,2,0,4],"span":[561,2,10]},{"path":[4,28,2,0,5],"span":[561,11,17]},{"path":[4,28,2,0,1],"span":[561,18,22]},{"path":[4,28,2,0,3],"span":[561,25,26]},{"path":[4,28,2,1],"span":[562,2,50]},{"path":[4,28,2,1,4],"span":[562,2,10]},{"path":[4,28,2,1,6],"span":[562,11,31]},{"path":[4,28,2,1,1],"span":[562,32,45]},{"path":[4,28,2,1,3],"span":[562,48,49]},{"path":[4,29],"span":[565,0,567,1]},{"path":[4,29,1],"span":[565,8,28]},{"path":[4,29,2,0],"span":[566,2,27]},{"path":[4,29,2,0,4],"span":[566,2,10]},{"path":[4,29,2,0,5],"span":[566,11,17]},{"path":[4,29,2,0,1],"span":[566,18,22]},{"path":[4,29,2,0,3],"span":[566,25,26]},{"path":[4,30],"span":[573,0,607,1],"leadingComments":"\n General section for any HW, normalized and with raw data.\n"},{"path":[4,30,1],"span":[573,8,20]},{"path":[4,30,2,0],"span":[574,2,29]},{"path":[4,30,2,0,4],"span":[574,2,10]},{"path":[4,30,2,0,5],"span":[574,11,16]},{"path":[4,30,2,0,1],"span":[574,17,24]},{"path":[4,30,2,0,3],"span":[574,27,28]},{"path":[4,30,2,1],"span":[577,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,30,2,1,4],"span":[577,2,10]},{"path":[4,30,2,1,5],"span":[577,11,16]},{"path":[4,30,2,1,1],"span":[577,17,24]},{"path":[4,30,2,1,3],"span":[577,27,28]},{"path":[4,30,2,2],"span":[580,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,30,2,2,4],"span":[580,2,10]},{"path":[4,30,2,2,5],"span":[580,11,16]},{"path":[4,30,2,2,1],"span":[580,17,25]},{"path":[4,30,2,2,3],"span":[580,28,29]},{"path":[4,30,2,3],"span":[583,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,30,2,3,4],"span":[583,2,10]},{"path":[4,30,2,3,5],"span":[583,11,16]},{"path":[4,30,2,3,1],"span":[583,17,26]},{"path":[4,30,2,3,3],"span":[583,29,30]},{"path":[4,30,2,4],"span":[585,2,30]},{"path":[4,30,2,4,4],"span":[585,2,10]},{"path":[4,30,2,4,5],"span":[585,11,15]},{"path":[4,30,2,4,1],"span":[585,16,25]},{"path":[4,30,2,4,3],"span":[585,28,29]},{"path":[4,30,2,5],"span":[586,2,29]},{"path":[4,30,2,5,4],"span":[586,2,10]},{"path":[4,30,2,5,5],"span":[586,11,17]},{"path":[4,30,2,5,1],"span":[586,18,24]},{"path":[4,30,2,5,3],"span":[586,27,28]},{"path":[4,30,2,6],"span":[588,2,33],"trailingComments":" e.g.: \"SMART_HOME\"\n"},{"path":[4,30,2,6,4],"span":[588,2,10]},{"path":[4,30,2,6,5],"span":[588,11,17]},{"path":[4,30,2,6,1],"span":[588,18,27]},{"path":[4,30,2,6,3],"span":[588,30,32]},{"path":[4,30,2,7],"span":[589,2,36],"trailingComments":" e.g.: \"Smart Device\"\n"},{"path":[4,30,2,7,4],"span":[589,2,10]},{"path":[4,30,2,7,5],"span":[589,11,17]},{"path":[4,30,2,7,1],"span":[589,18,30]},{"path":[4,30,2,7,3],"span":[589,33,35]},{"path":[4,30,2,8],"span":[590,2,34],"trailingComments":" e.g.: \"Smart Home\"\n"},{"path":[4,30,2,8,4],"span":[590,2,10]},{"path":[4,30,2,8,5],"span":[590,11,17]},{"path":[4,30,2,8,1],"span":[590,18,28]},{"path":[4,30,2,8,3],"span":[590,31,33]},{"path":[4,30,2,9],"span":[592,2,33]},{"path":[4,30,2,9,4],"span":[592,2,10]},{"path":[4,30,2,9,5],"span":[592,11,17]},{"path":[4,30,2,9,1],"span":[592,18,27]},{"path":[4,30,2,9,3],"span":[592,30,32]},{"path":[4,30,2,10],"span":[593,2,34]},{"path":[4,30,2,10,4],"span":[593,2,10]},{"path":[4,30,2,10,5],"span":[593,11,17]},{"path":[4,30,2,10,1],"span":[593,18,28]},{"path":[4,30,2,10,3],"span":[593,31,33]},{"path":[4,30,2,11],"span":[594,2,35]},{"path":[4,30,2,11,4],"span":[594,2,10]},{"path":[4,30,2,11,5],"span":[594,11,17]},{"path":[4,30,2,11,1],"span":[594,18,29]},{"path":[4,30,2,11,3],"span":[594,32,34]},{"path":[4,30,2,12],"span":[596,2,27]},{"path":[4,30,2,12,4],"span":[596,2,10]},{"path":[4,30,2,12,5],"span":[596,11,17]},{"path":[4,30,2,12,1],"span":[596,18,21]},{"path":[4,30,2,12,3],"span":[596,24,26]},{"path":[4,30,2,13],"span":[597,2,27]},{"path":[4,30,2,13,4],"span":[597,2,10]},{"path":[4,30,2,13,5],"span":[597,11,16]},{"path":[4,30,2,13,1],"span":[597,17,21]},{"path":[4,30,2,13,3],"span":[597,24,26]},{"path":[4,30,2,14],"span":[599,2,38]},{"path":[4,30,2,14,4],"span":[599,2,10]},{"path":[4,30,2,14,6],"span":[599,11,27]},{"path":[4,30,2,14,1],"span":[599,28,32]},{"path":[4,30,2,14,3],"span":[599,35,37]},{"path":[4,30,2,15],"span":[602,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,30,2,15,4],"span":[602,2,10]},{"path":[4,30,2,15,6],"span":[602,11,23]},{"path":[4,30,2,15,1],"span":[602,24,37]},{"path":[4,30,2,15,3],"span":[602,40,42]},{"path":[4,30,2,16],"span":[604,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,30,2,16,4],"span":[604,2,10]},{"path":[4,30,2,16,6],"span":[604,11,23]},{"path":[4,30,2,16,1],"span":[604,24,37]},{"path":[4,30,2,16,3],"span":[604,40,42]},{"path":[4,30,2,17],"span":[606,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,30,2,17,4],"span":[606,2,10]},{"path":[4,30,2,17,6],"span":[606,11,23]},{"path":[4,30,2,17,1],"span":[606,24,38]},{"path":[4,30,2,17,3],"span":[606,41,43]},{"path":[4,31],"span":[609,0,620,1]},{"path":[4,31,1],"span":[609,8,24]},{"path":[4,31,2,0],"span":[610,2,35]},{"path":[4,31,2,0,4],"span":[610,2,10]},{"path":[4,31,2,0,5],"span":[610,11,17]},{"path":[4,31,2,0,1],"span":[610,18,30]},{"path":[4,31,2,0,3],"span":[610,33,34]},{"path":[4,31,2,1],"span":[611,2,28]},{"path":[4,31,2,1,4],"span":[611,2,10]},{"path":[4,31,2,1,5],"span":[611,11,17]},{"path":[4,31,2,1,1],"span":[611,18,23]},{"path":[4,31,2,1,3],"span":[611,26,27]},{"path":[4,31,2,2],"span":[612,2,35]},{"path":[4,31,2,2,4],"span":[612,2,10]},{"path":[4,31,2,2,5],"span":[612,11,17]},{"path":[4,31,2,2,1],"span":[612,18,30]},{"path":[4,31,2,2,3],"span":[612,33,34]},{"path":[4,31,2,3],"span":[613,2,36]},{"path":[4,31,2,3,4],"span":[613,2,10]},{"path":[4,31,2,3,5],"span":[613,11,17]},{"path":[4,31,2,3,1],"span":[613,18,31]},{"path":[4,31,2,3,3],"span":[613,34,35]},{"path":[4,31,2,4],"span":[614,2,33]},{"path":[4,31,2,4,4],"span":[614,2,10]},{"path":[4,31,2,4,5],"span":[614,11,17]},{"path":[4,31,2,4,1],"span":[614,18,28]},{"path":[4,31,2,4,3],"span":[614,31,32]},{"path":[4,31,2,5],"span":[615,2,29]},{"path":[4,31,2,5,4],"span":[615,2,10]},{"path":[4,31,2,5,5],"span":[615,11,16]},{"path":[4,31,2,5,1],"span":[615,18,24]},{"path":[4,31,2,5,3],"span":[615,27,28]},{"path":[4,31,2,6],"span":[616,2,32],"trailingComments":" mac\n"},{"path":[4,31,2,6,4],"span":[616,2,10]},{"path":[4,31,2,6,5],"span":[616,11,17]},{"path":[4,31,2,6,1],"span":[616,18,27]},{"path":[4,31,2,6,3],"span":[616,30,31]},{"path":[4,31,2,7],"span":[617,2,39],"trailingComments":" mac\n"},{"path":[4,31,2,7,4],"span":[617,2,10]},{"path":[4,31,2,7,5],"span":[617,11,17]},{"path":[4,31,2,7,1],"span":[617,18,34]},{"path":[4,31,2,7,3],"span":[617,37,38]},{"path":[4,31,2,8],"span":[618,2,41],"trailingComments":" mac\n"},{"path":[4,31,2,8,4],"span":[618,2,10]},{"path":[4,31,2,8,5],"span":[618,11,17]},{"path":[4,31,2,8,1],"span":[618,18,36]},{"path":[4,31,2,8,3],"span":[618,39,40]},{"path":[4,32],"span":[624,0,647,1]},{"path":[4,32,1],"span":[624,8,23]},{"path":[4,32,2,0],"span":[626,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,32,2,0,4],"span":[626,2,10]},{"path":[4,32,2,0,5],"span":[626,11,16]},{"path":[4,32,2,0,1],"span":[626,17,19]},{"path":[4,32,2,0,3],"span":[626,22,23]},{"path":[4,32,2,1],"span":[629,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,32,2,1,4],"span":[629,2,10]},{"path":[4,32,2,1,5],"span":[629,11,16]},{"path":[4,32,2,1,1],"span":[629,17,24]},{"path":[4,32,2,1,3],"span":[629,27,29]},{"path":[4,32,2,2],"span":[631,2,27]},{"path":[4,32,2,2,4],"span":[631,2,10]},{"path":[4,32,2,2,5],"span":[631,11,17]},{"path":[4,32,2,2,1],"span":[631,18,22]},{"path":[4,32,2,2,3],"span":[631,25,26]},{"path":[4,32,2,3],"span":[632,2,30]},{"path":[4,32,2,3,4],"span":[632,2,10]},{"path":[4,32,2,3,5],"span":[632,11,17]},{"path":[4,32,2,3,1],"span":[632,18,25]},{"path":[4,32,2,3,3],"span":[632,28,29]},{"path":[4,32,2,4],"span":[633,2,28]},{"path":[4,32,2,4,4],"span":[633,2,10]},{"path":[4,32,2,4,5],"span":[633,11,17]},{"path":[4,32,2,4,1],"span":[633,18,23]},{"path":[4,32,2,4,3],"span":[633,26,27]},{"path":[4,32,2,5],"span":[635,2,33]},{"path":[4,32,2,5,4],"span":[635,2,10]},{"path":[4,32,2,5,5],"span":[635,11,17]},{"path":[4,32,2,5,1],"span":[635,18,28]},{"path":[4,32,2,5,3],"span":[635,31,32]},{"path":[4,32,2,6],"span":[637,2,26]},{"path":[4,32,2,6,4],"span":[637,2,10]},{"path":[4,32,2,6,5],"span":[637,11,17]},{"path":[4,32,2,6,1],"span":[637,18,21]},{"path":[4,32,2,6,3],"span":[637,24,25]},{"path":[4,32,2,7],"span":[638,2,29]},{"path":[4,32,2,7,4],"span":[638,2,10]},{"path":[4,32,2,7,5],"span":[638,11,17]},{"path":[4,32,2,7,1],"span":[638,18,24]},{"path":[4,32,2,7,3],"span":[638,27,28]},{"path":[4,32,2,8],"span":[640,2,26]},{"path":[4,32,2,8,4],"span":[640,2,10]},{"path":[4,32,2,8,5],"span":[640,11,16]},{"path":[4,32,2,8,1],"span":[640,17,21]},{"path":[4,32,2,8,3],"span":[640,24,25]},{"path":[4,32,8,0],"span":[642,2,646,3]},{"path":[4,32,8,0,1],"span":[642,8,12]},{"path":[4,32,2,9],"span":[643,4,44]},{"path":[4,32,2,9,6],"span":[643,4,30]},{"path":[4,32,2,9,1],"span":[643,31,38]},{"path":[4,32,2,9,3],"span":[643,41,43]},{"path":[4,32,2,10],"span":[644,4,36]},{"path":[4,32,2,10,6],"span":[644,4,26]},{"path":[4,32,2,10,1],"span":[644,27,30]},{"path":[4,32,2,10,3],"span":[644,33,35]},{"path":[4,32,2,11],"span":[645,4,40]},{"path":[4,32,2,11,6],"span":[645,4,28]},{"path":[4,32,2,11,1],"span":[645,29,34]},{"path":[4,32,2,11,3],"span":[645,37,39]},{"path":[4,33],"span":[649,0,660,1]},{"path":[4,33,1],"span":[649,8,30]},{"path":[4,33,2,0],"span":[650,2,37]},{"path":[4,33,2,0,4],"span":[650,2,10]},{"path":[4,33,2,0,5],"span":[650,11,17]},{"path":[4,33,2,0,1],"span":[650,18,32]},{"path":[4,33,2,0,3],"span":[650,35,36]},{"path":[4,33,2,1],"span":[651,2,37]},{"path":[4,33,2,1,4],"span":[651,2,10]},{"path":[4,33,2,1,5],"span":[651,11,17]},{"path":[4,33,2,1,1],"span":[651,18,32]},{"path":[4,33,2,1,3],"span":[651,35,36]},{"path":[4,33,2,2],"span":[652,2,34]},{"path":[4,33,2,2,4],"span":[652,2,10]},{"path":[4,33,2,2,5],"span":[652,11,17]},{"path":[4,33,2,2,1],"span":[652,18,29]},{"path":[4,33,2,2,3],"span":[652,32,33]},{"path":[4,33,2,3],"span":[653,2,32]},{"path":[4,33,2,3,4],"span":[653,2,10]},{"path":[4,33,2,3,5],"span":[653,11,17]},{"path":[4,33,2,3,1],"span":[653,18,27]},{"path":[4,33,2,3,3],"span":[653,30,31]},{"path":[4,33,2,4],"span":[654,2,36]},{"path":[4,33,2,4,4],"span":[654,2,10]},{"path":[4,33,2,4,5],"span":[654,11,17]},{"path":[4,33,2,4,1],"span":[654,18,31]},{"path":[4,33,2,4,3],"span":[654,34,35]},{"path":[4,33,2,5],"span":[655,2,32]},{"path":[4,33,2,5,4],"span":[655,2,10]},{"path":[4,33,2,5,5],"span":[655,11,17]},{"path":[4,33,2,5,1],"span":[655,18,27]},{"path":[4,33,2,5,3],"span":[655,30,31]},{"path":[4,33,2,6],"span":[656,2,30]},{"path":[4,33,2,6,4],"span":[656,2,10]},{"path":[4,33,2,6,5],"span":[656,11,17]},{"path":[4,33,2,6,1],"span":[656,18,25]},{"path":[4,33,2,6,3],"span":[656,28,29]},{"path":[4,33,2,7],"span":[657,2,44]},{"path":[4,33,2,7,4],"span":[657,2,10]},{"path":[4,33,2,7,5],"span":[657,11,17]},{"path":[4,33,2,7,1],"span":[657,18,39]},{"path":[4,33,2,7,3],"span":[657,42,43]},{"path":[4,33,2,8],"span":[658,2,53]},{"path":[4,33,2,8,4],"span":[658,2,10]},{"path":[4,33,2,8,5],"span":[658,11,17]},{"path":[4,33,2,8,1],"span":[658,18,48]},{"path":[4,33,2,8,3],"span":[658,51,52]},{"path":[4,33,2,9],"span":[659,2,40]},{"path":[4,33,2,9,4],"span":[659,2,10]},{"path":[4,33,2,9,5],"span":[659,11,17]},{"path":[4,33,2,9,1],"span":[659,18,34]},{"path":[4,33,2,9,3],"span":[659,37,39]},{"path":[4,34],"span":[662,0,668,1]},{"path":[4,34,1],"span":[662,8,32]},{"path":[4,34,2,0],"span":[663,2,34]},{"path":[4,34,2,0,4],"span":[663,2,10]},{"path":[4,34,2,0,5],"span":[663,11,17]},{"path":[4,34,2,0,1],"span":[663,18,29]},{"path":[4,34,2,0,3],"span":[663,32,33]},{"path":[4,34,2,1],"span":[664,2,37]},{"path":[4,34,2,1,4],"span":[664,2,10]},{"path":[4,34,2,1,5],"span":[664,11,17]},{"path":[4,34,2,1,1],"span":[664,18,32]},{"path":[4,34,2,1,3],"span":[664,35,36]},{"path":[4,34,2,2],"span":[665,2,37]},{"path":[4,34,2,2,4],"span":[665,2,10]},{"path":[4,34,2,2,5],"span":[665,11,17]},{"path":[4,34,2,2,1],"span":[665,18,32]},{"path":[4,34,2,2,3],"span":[665,35,36]},{"path":[4,34,2,3],"span":[666,2,35]},{"path":[4,34,2,3,4],"span":[666,2,10]},{"path":[4,34,2,3,5],"span":[666,11,17]},{"path":[4,34,2,3,1],"span":[666,18,30]},{"path":[4,34,2,3,3],"span":[666,33,34]},{"path":[4,34,2,4],"span":[667,2,33]},{"path":[4,34,2,4,4],"span":[667,2,10]},{"path":[4,34,2,4,5],"span":[667,11,17]},{"path":[4,34,2,4,1],"span":[667,18,28]},{"path":[4,34,2,4,3],"span":[667,31,32]},{"path":[4,35],"span":[670,0,723,1]},{"path":[4,35,1],"span":[670,8,34]},{"path":[4,35,2,0],"span":[671,2,30]},{"path":[4,35,2,0,4],"span":[671,2,10]},{"path":[4,35,2,0,5],"span":[671,11,17]},{"path":[4,35,2,0,1],"span":[671,18,25]},{"path":[4,35,2,0,3],"span":[671,28,29]},{"path":[4,35,2,1],"span":[672,2,34]},{"path":[4,35,2,1,4],"span":[672,2,10]},{"path":[4,35,2,1,5],"span":[672,11,16]},{"path":[4,35,2,1,1],"span":[672,17,29]},{"path":[4,35,2,1,3],"span":[672,32,33]},{"path":[4,35,2,2],"span":[673,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,35,2,2,4],"span":[673,2,10]},{"path":[4,35,2,2,5],"span":[673,11,17]},{"path":[4,35,2,2,1],"span":[673,18,23]},{"path":[4,35,2,2,3],"span":[673,26,27]},{"path":[4,35,2,3],"span":[674,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,35,2,3,4],"span":[674,2,10]},{"path":[4,35,2,3,5],"span":[674,11,17]},{"path":[4,35,2,3,1],"span":[674,18,30]},{"path":[4,35,2,3,3],"span":[674,33,34]},{"path":[4,35,2,4],"span":[675,2,41]},{"path":[4,35,2,4,4],"span":[675,2,10]},{"path":[4,35,2,4,5],"span":[675,11,15]},{"path":[4,35,2,4,1],"span":[675,16,36]},{"path":[4,35,2,4,3],"span":[675,39,40]},{"path":[4,35,2,5],"span":[676,2,35]},{"path":[4,35,2,5,4],"span":[676,2,10]},{"path":[4,35,2,5,5],"span":[676,11,15]},{"path":[4,35,2,5,1],"span":[676,16,30]},{"path":[4,35,2,5,3],"span":[676,33,34]},{"path":[4,35,2,6],"span":[677,2,39]},{"path":[4,35,2,6,4],"span":[677,2,10]},{"path":[4,35,2,6,5],"span":[677,11,15]},{"path":[4,35,2,6,1],"span":[677,16,34]},{"path":[4,35,2,6,3],"span":[677,37,38]},{"path":[4,35,2,7],"span":[679,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,35,2,7,4],"span":[679,2,10]},{"path":[4,35,2,7,5],"span":[679,11,17]},{"path":[4,35,2,7,1],"span":[679,18,25]},{"path":[4,35,2,7,3],"span":[679,28,30]},{"path":[4,35,2,8],"span":[681,2,35]},{"path":[4,35,2,8,4],"span":[681,2,10]},{"path":[4,35,2,8,5],"span":[681,11,17]},{"path":[4,35,2,8,1],"span":[681,18,29]},{"path":[4,35,2,8,3],"span":[681,32,34]},{"path":[4,35,2,9],"span":[682,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,35,2,9,4],"span":[682,2,10]},{"path":[4,35,2,9,5],"span":[682,11,17]},{"path":[4,35,2,9,1],"span":[682,18,30]},{"path":[4,35,2,9,3],"span":[682,33,35]},{"path":[4,35,2,10],"span":[683,2,34]},{"path":[4,35,2,10,4],"span":[683,2,10]},{"path":[4,35,2,10,5],"span":[683,11,17]},{"path":[4,35,2,10,1],"span":[683,18,28]},{"path":[4,35,2,10,3],"span":[683,31,33]},{"path":[4,35,2,11],"span":[684,2,31]},{"path":[4,35,2,11,4],"span":[684,2,10]},{"path":[4,35,2,11,5],"span":[684,11,17]},{"path":[4,35,2,11,1],"span":[684,18,25]},{"path":[4,35,2,11,3],"span":[684,28,30]},{"path":[4,35,2,12],"span":[685,2,32]},{"path":[4,35,2,12,4],"span":[685,2,10]},{"path":[4,35,2,12,5],"span":[685,11,17]},{"path":[4,35,2,12,1],"span":[685,18,26]},{"path":[4,35,2,12,3],"span":[685,29,31]},{"path":[4,35,2,13],"span":[686,2,36]},{"path":[4,35,2,13,4],"span":[686,2,10]},{"path":[4,35,2,13,5],"span":[686,11,17]},{"path":[4,35,2,13,1],"span":[686,18,30]},{"path":[4,35,2,13,3],"span":[686,33,35]},{"path":[4,35,2,14],"span":[687,2,35]},{"path":[4,35,2,14,4],"span":[687,2,10]},{"path":[4,35,2,14,5],"span":[687,11,17]},{"path":[4,35,2,14,1],"span":[687,18,29]},{"path":[4,35,2,14,3],"span":[687,32,34]},{"path":[4,35,2,15],"span":[688,2,39]},{"path":[4,35,2,15,4],"span":[688,2,10]},{"path":[4,35,2,15,5],"span":[688,11,16]},{"path":[4,35,2,15,1],"span":[688,17,33]},{"path":[4,35,2,15,3],"span":[688,36,38]},{"path":[4,35,2,16],"span":[689,2,27]},{"path":[4,35,2,16,4],"span":[689,2,10]},{"path":[4,35,2,16,5],"span":[689,11,15]},{"path":[4,35,2,16,1],"span":[689,16,21]},{"path":[4,35,2,16,3],"span":[689,24,26]},{"path":[4,35,2,17],"span":[690,2,35]},{"path":[4,35,2,17,4],"span":[690,2,10]},{"path":[4,35,2,17,5],"span":[690,11,17]},{"path":[4,35,2,17,1],"span":[690,18,29]},{"path":[4,35,2,17,3],"span":[690,32,34]},{"path":[4,35,2,18],"span":[691,2,52]},{"path":[4,35,2,18,4],"span":[691,2,10]},{"path":[4,35,2,18,5],"span":[691,11,17]},{"path":[4,35,2,18,1],"span":[691,18,46]},{"path":[4,35,2,18,3],"span":[691,49,51]},{"path":[4,35,2,19],"span":[692,2,55]},{"path":[4,35,2,19,4],"span":[692,2,10]},{"path":[4,35,2,19,6],"span":[692,11,36]},{"path":[4,35,2,19,1],"span":[692,37,49]},{"path":[4,35,2,19,3],"span":[692,52,54]},{"path":[4,35,2,20],"span":[693,2,47]},{"path":[4,35,2,20,4],"span":[693,2,10]},{"path":[4,35,2,20,5],"span":[693,11,17]},{"path":[4,35,2,20,1],"span":[693,18,41]},{"path":[4,35,2,20,3],"span":[693,44,46]},{"path":[4,35,2,21],"span":[694,2,48]},{"path":[4,35,2,21,4],"span":[694,2,10]},{"path":[4,35,2,21,5],"span":[694,11,17]},{"path":[4,35,2,21,1],"span":[694,18,42]},{"path":[4,35,2,21,3],"span":[694,45,47]},{"path":[4,35,2,22],"span":[695,2,36]},{"path":[4,35,2,22,4],"span":[695,2,10]},{"path":[4,35,2,22,5],"span":[695,11,17]},{"path":[4,35,2,22,1],"span":[695,18,30]},{"path":[4,35,2,22,3],"span":[695,33,35]},{"path":[4,35,2,23],"span":[696,2,40]},{"path":[4,35,2,23,4],"span":[696,2,10]},{"path":[4,35,2,23,6],"span":[696,11,22]},{"path":[4,35,2,23,1],"span":[696,23,34]},{"path":[4,35,2,23,3],"span":[696,37,39]},{"path":[4,35,2,24],"span":[697,2,45]},{"path":[4,35,2,24,4],"span":[697,2,10]},{"path":[4,35,2,24,6],"span":[697,11,22]},{"path":[4,35,2,24,1],"span":[697,23,39]},{"path":[4,35,2,24,3],"span":[697,42,44]},{"path":[4,35,2,25],"span":[698,2,36]},{"path":[4,35,2,25,4],"span":[698,2,10]},{"path":[4,35,2,25,6],"span":[698,11,22]},{"path":[4,35,2,25,1],"span":[698,23,30]},{"path":[4,35,2,25,3],"span":[698,33,35]},{"path":[4,35,2,26],"span":[699,2,39]},{"path":[4,35,2,26,4],"span":[699,2,10]},{"path":[4,35,2,26,5],"span":[699,11,17]},{"path":[4,35,2,26,1],"span":[699,18,33]},{"path":[4,35,2,26,3],"span":[699,36,38]},{"path":[4,35,2,27],"span":[700,2,43]},{"path":[4,35,2,27,4],"span":[700,2,10]},{"path":[4,35,2,27,5],"span":[700,11,17]},{"path":[4,35,2,27,1],"span":[700,18,37]},{"path":[4,35,2,27,3],"span":[700,40,42]},{"path":[4,35,2,28],"span":[701,2,39]},{"path":[4,35,2,28,4],"span":[701,2,10]},{"path":[4,35,2,28,5],"span":[701,11,17]},{"path":[4,35,2,28,1],"span":[701,18,33]},{"path":[4,35,2,28,3],"span":[701,36,38]},{"path":[4,35,2,29],"span":[702,2,37]},{"path":[4,35,2,29,4],"span":[702,2,10]},{"path":[4,35,2,29,5],"span":[702,11,17]},{"path":[4,35,2,29,1],"span":[702,18,31]},{"path":[4,35,2,29,3],"span":[702,34,36]},{"path":[4,35,2,30],"span":[703,2,50]},{"path":[4,35,2,30,4],"span":[703,2,10]},{"path":[4,35,2,30,5],"span":[703,11,17]},{"path":[4,35,2,30,1],"span":[703,18,44]},{"path":[4,35,2,30,3],"span":[703,47,49]},{"path":[4,35,2,31],"span":[704,2,50]},{"path":[4,35,2,31,4],"span":[704,2,10]},{"path":[4,35,2,31,5],"span":[704,11,17]},{"path":[4,35,2,31,1],"span":[704,18,44]},{"path":[4,35,2,31,3],"span":[704,47,49]},{"path":[4,35,2,32],"span":[705,2,51]},{"path":[4,35,2,32,4],"span":[705,2,10]},{"path":[4,35,2,32,5],"span":[705,11,17]},{"path":[4,35,2,32,1],"span":[705,18,45]},{"path":[4,35,2,32,3],"span":[705,48,50]},{"path":[4,35,2,33],"span":[706,2,30]},{"path":[4,35,2,33,4],"span":[706,2,10]},{"path":[4,35,2,33,5],"span":[706,11,17]},{"path":[4,35,2,33,1],"span":[706,18,24]},{"path":[4,35,2,33,3],"span":[706,27,29]},{"path":[4,35,2,34],"span":[707,2,37]},{"path":[4,35,2,34,4],"span":[707,2,10]},{"path":[4,35,2,34,5],"span":[707,11,17]},{"path":[4,35,2,34,1],"span":[707,18,31]},{"path":[4,35,2,34,3],"span":[707,34,36]},{"path":[4,35,2,35],"span":[708,2,40]},{"path":[4,35,2,35,4],"span":[708,2,10]},{"path":[4,35,2,35,5],"span":[708,11,17]},{"path":[4,35,2,35,1],"span":[708,18,34]},{"path":[4,35,2,35,3],"span":[708,37,39]},{"path":[4,35,2,36],"span":[709,2,49]},{"path":[4,35,2,36,4],"span":[709,2,10]},{"path":[4,35,2,36,5],"span":[709,11,17]},{"path":[4,35,2,36,1],"span":[709,18,43]},{"path":[4,35,2,36,3],"span":[709,46,48]},{"path":[4,35,2,37],"span":[710,2,49]},{"path":[4,35,2,37,4],"span":[710,2,10]},{"path":[4,35,2,37,5],"span":[710,11,17]},{"path":[4,35,2,37,1],"span":[710,18,43]},{"path":[4,35,2,37,3],"span":[710,46,48]},{"path":[4,35,2,38],"span":[711,2,41]},{"path":[4,35,2,38,4],"span":[711,2,10]},{"path":[4,35,2,38,5],"span":[711,11,17]},{"path":[4,35,2,38,1],"span":[711,18,35]},{"path":[4,35,2,38,3],"span":[711,38,40]},{"path":[4,35,2,39],"span":[712,2,45]},{"path":[4,35,2,39,4],"span":[712,2,10]},{"path":[4,35,2,39,5],"span":[712,11,17]},{"path":[4,35,2,39,1],"span":[712,18,39]},{"path":[4,35,2,39,3],"span":[712,42,44]},{"path":[4,35,2,40],"span":[713,2,42]},{"path":[4,35,2,40,4],"span":[713,2,10]},{"path":[4,35,2,40,5],"span":[713,11,17]},{"path":[4,35,2,40,1],"span":[713,18,36]},{"path":[4,35,2,40,3],"span":[713,39,41]},{"path":[4,35,2,41],"span":[714,2,46]},{"path":[4,35,2,41,4],"span":[714,2,10]},{"path":[4,35,2,41,5],"span":[714,11,17]},{"path":[4,35,2,41,1],"span":[714,18,40]},{"path":[4,35,2,41,3],"span":[714,43,45]},{"path":[4,35,2,42],"span":[715,2,41]},{"path":[4,35,2,42,4],"span":[715,2,10]},{"path":[4,35,2,42,6],"span":[715,11,22]},{"path":[4,35,2,42,1],"span":[715,23,35]},{"path":[4,35,2,42,3],"span":[715,38,40]},{"path":[4,35,2,43],"span":[716,2,34]},{"path":[4,35,2,43,4],"span":[716,2,10]},{"path":[4,35,2,43,5],"span":[716,11,17]},{"path":[4,35,2,43,1],"span":[716,18,28]},{"path":[4,35,2,43,3],"span":[716,31,33]},{"path":[4,35,2,44],"span":[717,2,36]},{"path":[4,35,2,44,4],"span":[717,2,10]},{"path":[4,35,2,44,5],"span":[717,11,17]},{"path":[4,35,2,44,1],"span":[717,18,30]},{"path":[4,35,2,44,3],"span":[717,33,35]},{"path":[4,35,2,45],"span":[718,2,40]},{"path":[4,35,2,45,4],"span":[718,2,10]},{"path":[4,35,2,45,5],"span":[718,11,17]},{"path":[4,35,2,45,1],"span":[718,18,34]},{"path":[4,35,2,45,3],"span":[718,37,39]},{"path":[4,35,2,46],"span":[719,2,66]},{"path":[4,35,2,46,4],"span":[719,2,10]},{"path":[4,35,2,46,5],"span":[719,11,15]},{"path":[4,35,2,46,1],"span":[719,16,60]},{"path":[4,35,2,46,3],"span":[719,63,65]},{"path":[4,35,2,47],"span":[720,2,60]},{"path":[4,35,2,47,4],"span":[720,2,10]},{"path":[4,35,2,47,5],"span":[720,11,15]},{"path":[4,35,2,47,1],"span":[720,16,54]},{"path":[4,35,2,47,3],"span":[720,57,59]},{"path":[4,35,2,48],"span":[721,2,55]},{"path":[4,35,2,48,4],"span":[721,2,10]},{"path":[4,35,2,48,5],"span":[721,11,15]},{"path":[4,35,2,48,1],"span":[721,16,49]},{"path":[4,35,2,48,3],"span":[721,52,54]},{"path":[4,35,2,49],"span":[722,2,64]},{"path":[4,35,2,49,4],"span":[722,2,10]},{"path":[4,35,2,49,5],"span":[722,11,17]},{"path":[4,35,2,49,1],"span":[722,18,58]},{"path":[4,35,2,49,3],"span":[722,61,63]},{"path":[4,36],"span":[727,0,730,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,36,1],"span":[727,8,30]},{"path":[4,36,2,0],"span":[728,2,18]},{"path":[4,36,2,0,5],"span":[728,2,8]},{"path":[4,36,2,0,1],"span":[728,9,13]},{"path":[4,36,2,0,3],"span":[728,16,17]},{"path":[4,36,2,1],"span":[729,2,21]},{"path":[4,36,2,1,5],"span":[729,2,8]},{"path":[4,36,2,1,1],"span":[729,9,16]},{"path":[4,36,2,1,3],"span":[729,19,20]},{"path":[4,37],"span":[733,0,749,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,37,1],"span":[733,8,28]},{"path":[4,37,2,0],"span":[735,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,37,2,0,5],"span":[735,2,8]},{"path":[4,37,2,0,1],"span":[735,9,11]},{"path":[4,37,2,0,3],"span":[735,14,15]},{"path":[4,37,2,1],"span":[738,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,37,2,1,4],"span":[738,2,10]},{"path":[4,37,2,1,5],"span":[738,11,17]},{"path":[4,37,2,1,1],"span":[738,18,22]},{"path":[4,37,2,1,3],"span":[738,25,26]},{"path":[4,37,2,2],"span":[740,2,54]},{"path":[4,37,2,2,4],"span":[740,2,10]},{"path":[4,37,2,2,6],"span":[740,11,36]},{"path":[4,37,2,2,1],"span":[740,37,49]},{"path":[4,37,2,2,3],"span":[740,52,53]},{"path":[4,37,2,3],"span":[743,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,37,2,3,4],"span":[743,2,10]},{"path":[4,37,2,3,5],"span":[743,11,17]},{"path":[4,37,2,3,1],"span":[743,18,28]},{"path":[4,37,2,3,3],"span":[743,31,32]},{"path":[4,37,2,4],"span":[745,2,31]},{"path":[4,37,2,4,4],"span":[745,2,10]},{"path":[4,37,2,4,5],"span":[745,11,17]},{"path":[4,37,2,4,1],"span":[745,18,26]},{"path":[4,37,2,4,3],"span":[745,29,30]},{"path":[4,37,2,5],"span":[747,2,43]},{"path":[4,37,2,5,4],"span":[747,2,10]},{"path":[4,37,2,5,5],"span":[747,11,17]},{"path":[4,37,2,5,1],"span":[747,18,38]},{"path":[4,37,2,5,3],"span":[747,41,42]},{"path":[4,38],"span":[752,0,755,1],"leadingComments":" Network Interface cards "},{"path":[4,38,1],"span":[752,8,25]},{"path":[4,38,2,0],"span":[753,2,42]},{"path":[4,38,2,0,6],"span":[753,2,27]},{"path":[4,38,2,0,1],"span":[753,28,37]},{"path":[4,38,2,0,3],"span":[753,40,41]},{"path":[4,38,2,1],"span":[754,2,42]},{"path":[4,38,2,1,4],"span":[754,2,10]},{"path":[4,38,2,1,6],"span":[754,11,27]},{"path":[4,38,2,1,1],"span":[754,28,37]},{"path":[4,38,2,1,3],"span":[754,40,41]},{"path":[4,39],"span":[757,0,780,1]},{"path":[4,39,1],"span":[757,8,24]},{"path":[4,39,2,0],"span":[758,2,18]},{"path":[4,39,2,0,5],"span":[758,2,8]},{"path":[4,39,2,0,1],"span":[758,9,13]},{"path":[4,39,2,0,3],"span":[758,16,17]},{"path":[4,39,2,1],"span":[759,2,18]},{"path":[4,39,2,1,5],"span":[759,2,8]},{"path":[4,39,2,1,1],"span":[759,9,13]},{"path":[4,39,2,1,3],"span":[759,16,17]},{"path":[4,39,2,2],"span":[760,2,22]},{"path":[4,39,2,2,5],"span":[760,2,8]},{"path":[4,39,2,2,1],"span":[760,9,17]},{"path":[4,39,2,2,3],"span":[760,20,21]},{"path":[4,39,2,3],"span":[762,2,25]},{"path":[4,39,2,3,4],"span":[762,2,10]},{"path":[4,39,2,3,5],"span":[762,11,17]},{"path":[4,39,2,3,1],"span":[762,18,20]},{"path":[4,39,2,3,3],"span":[762,23,24]},{"path":[4,39,2,4],"span":[764,2,26]},{"path":[4,39,2,4,4],"span":[764,2,10]},{"path":[4,39,2,4,5],"span":[764,11,17]},{"path":[4,39,2,4,1],"span":[764,18,21]},{"path":[4,39,2,4,3],"span":[764,24,25]},{"path":[4,39,2,5],"span":[766,2,33]},{"path":[4,39,2,5,4],"span":[766,2,10]},{"path":[4,39,2,5,5],"span":[766,11,15]},{"path":[4,39,2,5,1],"span":[766,16,28]},{"path":[4,39,2,5,3],"span":[766,31,32]},{"path":[4,39,2,6],"span":[767,2,37]},{"path":[4,39,2,6,4],"span":[767,2,10]},{"path":[4,39,2,6,5],"span":[767,11,17]},{"path":[4,39,2,6,1],"span":[767,18,32]},{"path":[4,39,2,6,3],"span":[767,35,36]},{"path":[4,39,2,7],"span":[769,2,31]},{"path":[4,39,2,7,4],"span":[769,2,10]},{"path":[4,39,2,7,6],"span":[769,11,23]},{"path":[4,39,2,7,1],"span":[769,24,26]},{"path":[4,39,2,7,3],"span":[769,29,30]},{"path":[4,39,2,8],"span":[771,2,33]},{"path":[4,39,2,8,4],"span":[771,2,10]},{"path":[4,39,2,8,5],"span":[771,11,17]},{"path":[4,39,2,8,1],"span":[771,18,28]},{"path":[4,39,2,8,3],"span":[771,31,32]},{"path":[4,39,2,9],"span":[772,2,35]},{"path":[4,39,2,9,4],"span":[772,2,10]},{"path":[4,39,2,9,5],"span":[772,11,17]},{"path":[4,39,2,9,1],"span":[772,18,29]},{"path":[4,39,2,9,3],"span":[772,32,34]},{"path":[4,39,2,10],"span":[774,2,34]},{"path":[4,39,2,10,4],"span":[774,2,10]},{"path":[4,39,2,10,5],"span":[774,11,17]},{"path":[4,39,2,10,1],"span":[774,18,28]},{"path":[4,39,2,10,3],"span":[774,31,33]},{"path":[4,39,2,11],"span":[775,2,37]},{"path":[4,39,2,11,4],"span":[775,2,10]},{"path":[4,39,2,11,5],"span":[775,11,17]},{"path":[4,39,2,11,1],"span":[775,18,31]},{"path":[4,39,2,11,3],"span":[775,34,36]},{"path":[4,39,2,12],"span":[776,2,54]},{"path":[4,39,2,12,4],"span":[776,2,10]},{"path":[4,39,2,12,5],"span":[776,11,17]},{"path":[4,39,2,12,1],"span":[776,18,48]},{"path":[4,39,2,12,3],"span":[776,51,53]},{"path":[4,39,2,13],"span":[778,2,36]},{"path":[4,39,2,13,4],"span":[778,2,10]},{"path":[4,39,2,13,5],"span":[778,11,17]},{"path":[4,39,2,13,1],"span":[778,18,30]},{"path":[4,39,2,13,3],"span":[778,33,35]},{"path":[4,39,2,14],"span":[779,2,37]},{"path":[4,39,2,14,4],"span":[779,2,10]},{"path":[4,39,2,14,5],"span":[779,11,17]},{"path":[4,39,2,14,1],"span":[779,18,31]},{"path":[4,39,2,14,3],"span":[779,34,36]},{"path":[4,40],"span":[783,0,786,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,40,1],"span":[783,8,20]},{"path":[4,40,2,0],"span":[784,2,16]},{"path":[4,40,2,0,5],"span":[784,2,8]},{"path":[4,40,2,0,1],"span":[784,9,11]},{"path":[4,40,2,0,3],"span":[784,14,15]},{"path":[4,40,2,1],"span":[785,2,20]},{"path":[4,40,2,1,5],"span":[785,2,8]},{"path":[4,40,2,1,1],"span":[785,9,15]},{"path":[4,40,2,1,3],"span":[785,18,19]},{"path":[4,41],"span":[791,0,796,1],"leadingComments":"\n Network protocols, summary and detailed info.\n"},{"path":[4,41,1],"span":[791,8,24]},{"path":[4,41,2,0],"span":[792,4,33],"trailingComments":" summary list of protocols and data points available\n"},{"path":[4,41,2,0,4],"span":[792,4,12]},{"path":[4,41,2,0,5],"span":[792,13,19]},{"path":[4,41,2,0,1],"span":[792,20,28]},{"path":[4,41,2,0,3],"span":[792,31,32]},{"path":[4,42],"span":[801,0,804,1],"leadingComments":"\n Full port scan.\n"},{"path":[4,42,1],"span":[801,8,16]},{"path":[4,42,2,0],"span":[802,2,42]},{"path":[4,42,2,0,6],"span":[802,2,27]},{"path":[4,42,2,0,1],"span":[802,28,37]},{"path":[4,42,2,0,3],"span":[802,40,41]},{"path":[4,42,2,1],"span":[803,2,40]},{"path":[4,42,2,1,4],"span":[803,2,10]},{"path":[4,42,2,1,6],"span":[803,11,22]},{"path":[4,42,2,1,1],"span":[803,23,35]},{"path":[4,42,2,1,3],"span":[803,38,39]},{"path":[4,43],"span":[806,0,815,1]},{"path":[4,43,1],"span":[806,8,19]},{"path":[4,43,2,0],"span":[807,2,22]},{"path":[4,43,2,0,5],"span":[807,2,8]},{"path":[4,43,2,0,1],"span":[807,9,17]},{"path":[4,43,2,0,3],"span":[807,20,21]},{"path":[4,43,2,1],"span":[808,2,24]},{"path":[4,43,2,1,5],"span":[808,2,7]},{"path":[4,43,2,1,1],"span":[808,8,19]},{"path":[4,43,2,1,3],"span":[808,22,23]},{"path":[4,43,2,2],"span":[809,2,36]},{"path":[4,43,2,2,4],"span":[809,2,10]},{"path":[4,43,2,2,5],"span":[809,11,17]},{"path":[4,43,2,2,1],"span":[809,18,31]},{"path":[4,43,2,2,3],"span":[809,34,35]},{"path":[4,43,2,3],"span":[810,2,35]},{"path":[4,43,2,3,4],"span":[810,2,10]},{"path":[4,43,2,3,5],"span":[810,11,17]},{"path":[4,43,2,3,1],"span":[810,18,30]},{"path":[4,43,2,3,3],"span":[810,33,34]},{"path":[4,43,2,4],"span":[812,2,29]},{"path":[4,43,2,4,4],"span":[812,2,10]},{"path":[4,43,2,4,5],"span":[812,11,17]},{"path":[4,43,2,4,1],"span":[812,18,24]},{"path":[4,43,2,4,3],"span":[812,27,28]},{"path":[4,43,2,5],"span":[813,2,42]},{"path":[4,43,2,5,4],"span":[813,2,10]},{"path":[4,43,2,5,6],"span":[813,11,25]},{"path":[4,43,2,5,1],"span":[813,26,37]},{"path":[4,43,2,5,3],"span":[813,40,41]},{"path":[4,44],"span":[817,0,830,1]},{"path":[4,44,1],"span":[817,8,22]},{"path":[4,44,2,0],"span":[818,2,17]},{"path":[4,44,2,0,5],"span":[818,2,7]},{"path":[4,44,2,0,1],"span":[818,8,12]},{"path":[4,44,2,0,3],"span":[818,15,16]},{"path":[4,44,2,1],"span":[819,2,24]},{"path":[4,44,2,1,4],"span":[819,2,10]},{"path":[4,44,2,1,5],"span":[819,11,15]},{"path":[4,44,2,1,1],"span":[819,16,19]},{"path":[4,44,2,1,3],"span":[819,22,23]},{"path":[4,44,2,2],"span":[821,2,29],"trailingComments":" http_header.server\n"},{"path":[4,44,2,2,4],"span":[821,2,10]},{"path":[4,44,2,2,5],"span":[821,11,17]},{"path":[4,44,2,2,1],"span":[821,18,24]},{"path":[4,44,2,2,3],"span":[821,27,28]},{"path":[4,44,2,3],"span":[822,2,30],"trailingComments":" http_header.wwwauth\n"},{"path":[4,44,2,3,4],"span":[822,2,10]},{"path":[4,44,2,3,5],"span":[822,11,17]},{"path":[4,44,2,3,1],"span":[822,18,25]},{"path":[4,44,2,3,3],"span":[822,28,29]},{"path":[4,44,2,4],"span":[823,2,29],"trailingComments":" http_header.cookie\n"},{"path":[4,44,2,4,4],"span":[823,2,10]},{"path":[4,44,2,4,5],"span":[823,11,17]},{"path":[4,44,2,4,1],"span":[823,18,24]},{"path":[4,44,2,4,3],"span":[823,27,28]},{"path":[4,44,2,5],"span":[825,2,28],"trailingComments":" html_title\n"},{"path":[4,44,2,5,4],"span":[825,2,10]},{"path":[4,44,2,5,5],"span":[825,11,17]},{"path":[4,44,2,5,1],"span":[825,18,23]},{"path":[4,44,2,5,3],"span":[825,26,27]},{"path":[4,44,2,6],"span":[826,2,34],"trailingComments":" favicon.md5\n"},{"path":[4,44,2,6,4],"span":[826,2,10]},{"path":[4,44,2,6,5],"span":[826,11,17]},{"path":[4,44,2,6,1],"span":[826,18,29]},{"path":[4,44,2,6,3],"span":[826,32,33]},{"path":[4,44,2,7],"span":[827,2,29],"trailingComments":" in case at some point we want to store full\n"},{"path":[4,44,2,7,4],"span":[827,2,10]},{"path":[4,44,2,7,5],"span":[827,11,16]},{"path":[4,44,2,7,1],"span":[827,17,24]},{"path":[4,44,2,7,3],"span":[827,27,28]},{"path":[4,44,2,8],"span":[829,2,44],"trailingComments":" Captured certificates\n"},{"path":[4,44,2,8,4],"span":[829,2,10]},{"path":[4,44,2,8,6],"span":[829,11,26]},{"path":[4,44,2,8,1],"span":[829,27,39]},{"path":[4,44,2,8,3],"span":[829,42,43]},{"path":[4,45],"span":[832,0,847,1]},{"path":[4,45,1],"span":[832,8,23]},{"path":[4,45,2,0],"span":[833,2,33],"trailingComments":" thumbprint\n"},{"path":[4,45,2,0,4],"span":[833,2,10]},{"path":[4,45,2,0,5],"span":[833,11,17]},{"path":[4,45,2,0,1],"span":[833,18,28]},{"path":[4,45,2,0,3],"span":[833,31,32]},{"path":[4,45,2,1],"span":[834,2,36],"trailingComments":" serial_number (as a big-endian hexadecimal string)\n"},{"path":[4,45,2,1,4],"span":[834,2,10]},{"path":[4,45,2,1,5],"span":[834,11,17]},{"path":[4,45,2,1,1],"span":[834,18,31]},{"path":[4,45,2,1,3],"span":[834,34,35]},{"path":[4,45,2,2],"span":[835,2,34],"trailingComments":" x509.issuer\n"},{"path":[4,45,2,2,4],"span":[835,2,10]},{"path":[4,45,2,2,5],"span":[835,11,17]},{"path":[4,45,2,2,1],"span":[835,18,29]},{"path":[4,45,2,2,3],"span":[835,32,33]},{"path":[4,45,2,3],"span":[836,2,35],"trailingComments":" x509.subject\n"},{"path":[4,45,2,3,4],"span":[836,2,10]},{"path":[4,45,2,3,5],"span":[836,11,17]},{"path":[4,45,2,3,1],"span":[836,18,30]},{"path":[4,45,2,3,3],"span":[836,33,34]},{"path":[4,45,2,4],"span":[837,2,56],"trailingComments":" not_before\n"},{"path":[4,45,2,4,4],"span":[837,2,10]},{"path":[4,45,2,4,6],"span":[837,11,36]},{"path":[4,45,2,4,1],"span":[837,37,51]},{"path":[4,45,2,4,3],"span":[837,54,55]},{"path":[4,45,2,5],"span":[838,2,57],"trailingComments":" not_after\n"},{"path":[4,45,2,5,4],"span":[838,2,10]},{"path":[4,45,2,5,6],"span":[838,11,36]},{"path":[4,45,2,5,1],"span":[838,37,52]},{"path":[4,45,2,5,3],"span":[838,55,56]},{"path":[4,45,4,0],"span":[840,2,844,3]},{"path":[4,45,4,0,1],"span":[840,7,22]},{"path":[4,45,4,0,2,0],"span":[841,4,45]},{"path":[4,45,4,0,2,0,1],"span":[841,4,40]},{"path":[4,45,4,0,2,0,2],"span":[841,43,44]},{"path":[4,45,4,0,2,1],"span":[842,4,45]},{"path":[4,45,4,0,2,1,1],"span":[842,4,40]},{"path":[4,45,4,0,2,1,2],"span":[842,43,44]},{"path":[4,45,4,0,2,2],"span":[843,4,44]},{"path":[4,45,4,0,2,2,1],"span":[843,4,39]},{"path":[4,45,4,0,2,2,2],"span":[843,42,43]},{"path":[4,45,2,6],"span":[846,2,38],"trailingComments":" ssl errors\n"},{"path":[4,45,2,6,4],"span":[846,2,10]},{"path":[4,45,2,6,6],"span":[846,11,26]},{"path":[4,45,2,6,1],"span":[846,27,33]},{"path":[4,45,2,6,3],"span":[846,36,37]},{"path":[4,46],"span":[851,0,892,1],"leadingComments":" Processor *"},{"path":[4,46,1],"span":[851,8,17]},{"path":[4,46,2,0],"span":[852,2,21]},{"path":[4,46,2,0,5],"span":[852,2,8]},{"path":[4,46,2,0,1],"span":[852,10,14]},{"path":[4,46,2,0,3],"span":[852,17,18]},{"path":[4,46,2,1],"span":[853,2,36],"trailingComments":" Linux-only\n"},{"path":[4,46,2,1,4],"span":[853,2,10]},{"path":[4,46,2,1,5],"span":[853,11,17]},{"path":[4,46,2,1,1],"span":[853,18,31]},{"path":[4,46,2,1,3],"span":[853,34,35]},{"path":[4,46,2,2],"span":[854,2,35],"trailingComments":" Windows-only\n"},{"path":[4,46,2,2,4],"span":[854,2,10]},{"path":[4,46,2,2,5],"span":[854,11,16]},{"path":[4,46,2,2,1],"span":[854,17,30]},{"path":[4,46,2,2,3],"span":[854,33,34]},{"path":[4,46,2,3],"span":[855,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,46,2,3,4],"span":[855,2,10]},{"path":[4,46,2,3,6],"span":[855,11,22]},{"path":[4,46,2,3,1],"span":[855,23,35]},{"path":[4,46,2,3,3],"span":[855,38,39]},{"path":[4,46,2,4],"span":[856,2,34],"trailingComments":" Windows-only\n"},{"path":[4,46,2,4,4],"span":[856,2,10]},{"path":[4,46,2,4,5],"span":[856,11,16]},{"path":[4,46,2,4,1],"span":[856,17,29]},{"path":[4,46,2,4,3],"span":[856,32,33]},{"path":[4,46,2,5],"span":[857,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,46,2,5,4],"span":[857,2,10]},{"path":[4,46,2,5,5],"span":[857,11,17]},{"path":[4,46,2,5,1],"span":[857,18,27]},{"path":[4,46,2,5,3],"span":[857,30,31]},{"path":[4,46,2,6],"span":[858,2,33],"trailingComments":" Linux-only\n"},{"path":[4,46,2,6,4],"span":[858,2,10]},{"path":[4,46,2,6,5],"span":[858,11,17]},{"path":[4,46,2,6,1],"span":[858,18,28]},{"path":[4,46,2,6,3],"span":[858,31,32]},{"path":[4,46,2,7],"span":[859,2,30],"trailingComments":" Windows-only\n"},{"path":[4,46,2,7,4],"span":[859,2,10]},{"path":[4,46,2,7,5],"span":[859,11,17]},{"path":[4,46,2,7,1],"span":[859,18,25]},{"path":[4,46,2,7,3],"span":[859,28,29]},{"path":[4,46,2,8],"span":[860,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,46,2,8,4],"span":[860,2,10]},{"path":[4,46,2,8,5],"span":[860,11,16]},{"path":[4,46,2,8,1],"span":[860,17,36]},{"path":[4,46,2,8,3],"span":[860,39,40]},{"path":[4,46,2,9],"span":[861,2,33],"trailingComments":" Windows-only\n"},{"path":[4,46,2,9,4],"span":[861,2,10]},{"path":[4,46,2,9,5],"span":[861,11,16]},{"path":[4,46,2,9,1],"span":[861,17,27]},{"path":[4,46,2,9,3],"span":[861,30,32]},{"path":[4,46,2,10],"span":[862,2,33],"trailingComments":" Windows-only\n"},{"path":[4,46,2,10,4],"span":[862,2,10]},{"path":[4,46,2,10,5],"span":[862,11,17]},{"path":[4,46,2,10,1],"span":[862,18,27]},{"path":[4,46,2,10,3],"span":[862,30,32]},{"path":[4,46,2,11],"span":[863,2,41],"trailingComments":" Windows-only\n"},{"path":[4,46,2,11,4],"span":[863,2,10]},{"path":[4,46,2,11,5],"span":[863,11,16]},{"path":[4,46,2,11,1],"span":[863,17,35]},{"path":[4,46,2,11,3],"span":[863,38,40]},{"path":[4,46,2,12],"span":[864,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,46,2,12,4],"span":[864,2,10]},{"path":[4,46,2,12,6],"span":[864,11,22]},{"path":[4,46,2,12,1],"span":[864,23,29]},{"path":[4,46,2,12,3],"span":[864,32,34]},{"path":[4,46,2,13],"span":[865,2,41],"trailingComments":" Linux-only\n"},{"path":[4,46,2,13,4],"span":[865,2,10]},{"path":[4,46,2,13,5],"span":[865,11,17]},{"path":[4,46,2,13,1],"span":[865,18,35]},{"path":[4,46,2,13,3],"span":[865,38,40]},{"path":[4,46,2,14],"span":[866,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,46,2,14,4],"span":[866,2,10]},{"path":[4,46,2,14,5],"span":[866,11,16]},{"path":[4,46,2,14,1],"span":[866,17,34]},{"path":[4,46,2,14,3],"span":[866,37,39]},{"path":[4,46,2,15],"span":[867,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,46,2,15,4],"span":[867,2,10]},{"path":[4,46,2,15,5],"span":[867,11,16]},{"path":[4,46,2,15,1],"span":[867,17,34]},{"path":[4,46,2,15,3],"span":[867,37,39]},{"path":[4,46,2,16],"span":[868,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,46,2,16,4],"span":[868,2,10]},{"path":[4,46,2,16,5],"span":[868,11,16]},{"path":[4,46,2,16,1],"span":[868,17,33]},{"path":[4,46,2,16,3],"span":[868,36,38]},{"path":[4,46,2,17],"span":[869,2,41],"trailingComments":" Windows-only\n"},{"path":[4,46,2,17,4],"span":[869,2,10]},{"path":[4,46,2,17,5],"span":[869,11,16]},{"path":[4,46,2,17,1],"span":[869,17,35]},{"path":[4,46,2,17,3],"span":[869,38,40]},{"path":[4,46,2,18],"span":[870,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,46,2,18,4],"span":[870,2,10]},{"path":[4,46,2,18,5],"span":[870,11,16]},{"path":[4,46,2,18,1],"span":[870,17,33]},{"path":[4,46,2,18,3],"span":[870,36,38]},{"path":[4,46,2,19],"span":[871,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,46,2,19,4],"span":[871,2,10]},{"path":[4,46,2,19,5],"span":[871,11,16]},{"path":[4,46,2,19,1],"span":[871,17,22]},{"path":[4,46,2,19,3],"span":[871,25,27]},{"path":[4,46,2,20],"span":[872,2,44]},{"path":[4,46,2,20,4],"span":[872,2,10]},{"path":[4,46,2,20,5],"span":[872,11,16]},{"path":[4,46,2,20,1],"span":[872,17,36]},{"path":[4,46,2,20,3],"span":[872,39,41]},{"path":[4,46,2,21],"span":[873,2,38]},{"path":[4,46,2,21,4],"span":[873,2,10]},{"path":[4,46,2,21,5],"span":[873,11,17]},{"path":[4,46,2,21,1],"span":[873,18,30]},{"path":[4,46,2,21,3],"span":[873,33,35]},{"path":[4,46,2,22],"span":[874,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,46,2,22,4],"span":[874,2,10]},{"path":[4,46,2,22,5],"span":[874,11,16]},{"path":[4,46,2,22,1],"span":[874,17,36]},{"path":[4,46,2,22,3],"span":[874,39,41]},{"path":[4,46,2,23],"span":[875,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,46,2,23,4],"span":[875,2,10]},{"path":[4,46,2,23,5],"span":[875,11,16]},{"path":[4,46,2,23,1],"span":[875,17,36]},{"path":[4,46,2,23,3],"span":[875,39,41]},{"path":[4,46,2,24],"span":[876,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,46,2,24,4],"span":[876,2,10]},{"path":[4,46,2,24,5],"span":[876,11,16]},{"path":[4,46,2,24,1],"span":[876,17,29]},{"path":[4,46,2,24,3],"span":[876,32,34]},{"path":[4,46,2,25],"span":[877,2,32],"trailingComments":" Linux-only\n"},{"path":[4,46,2,25,4],"span":[877,2,10]},{"path":[4,46,2,25,5],"span":[877,11,17]},{"path":[4,46,2,25,1],"span":[877,18,26]},{"path":[4,46,2,25,3],"span":[877,29,31]},{"path":[4,46,2,26],"span":[878,2,45]},{"path":[4,46,2,26,4],"span":[878,2,10]},{"path":[4,46,2,26,5],"span":[878,11,16]},{"path":[4,46,2,26,1],"span":[878,17,37]},{"path":[4,46,2,26,3],"span":[878,40,42]},{"path":[4,46,2,27],"span":[879,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,46,2,27,4],"span":[879,2,10]},{"path":[4,46,2,27,5],"span":[879,11,17]},{"path":[4,46,2,27,1],"span":[879,18,30]},{"path":[4,46,2,27,3],"span":[879,33,35]},{"path":[4,46,2,28],"span":[880,2,43],"trailingComments":" Windows-only\n"},{"path":[4,46,2,28,4],"span":[880,2,10]},{"path":[4,46,2,28,6],"span":[880,11,22]},{"path":[4,46,2,28,1],"span":[880,23,37]},{"path":[4,46,2,28,3],"span":[880,40,42]},{"path":[4,46,2,29],"span":[881,2,31],"trailingComments":" Windows-only\n"},{"path":[4,46,2,29,4],"span":[881,2,10]},{"path":[4,46,2,29,5],"span":[881,11,16]},{"path":[4,46,2,29,1],"span":[881,17,25]},{"path":[4,46,2,29,3],"span":[881,28,30]},{"path":[4,46,2,30],"span":[882,2,42],"trailingComments":" Windows-only\n"},{"path":[4,46,2,30,4],"span":[882,2,10]},{"path":[4,46,2,30,5],"span":[882,11,17]},{"path":[4,46,2,30,1],"span":[882,18,36]},{"path":[4,46,2,30,3],"span":[882,39,41]},{"path":[4,46,2,31],"span":[883,2,31],"trailingComments":" Linux-only\n"},{"path":[4,46,2,31,4],"span":[883,2,10]},{"path":[4,46,2,31,5],"span":[883,11,16]},{"path":[4,46,2,31,1],"span":[883,18,25]},{"path":[4,46,2,31,3],"span":[883,28,30]},{"path":[4,46,2,32],"span":[884,2,35],"trailingComments":" Windows-only\n"},{"path":[4,46,2,32,4],"span":[884,2,10]},{"path":[4,46,2,32,6],"span":[884,11,22]},{"path":[4,46,2,32,1],"span":[884,23,29]},{"path":[4,46,2,32,3],"span":[884,32,34]},{"path":[4,46,2,33],"span":[885,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,46,2,33,4],"span":[885,2,10]},{"path":[4,46,2,33,5],"span":[885,11,16]},{"path":[4,46,2,33,1],"span":[885,17,25]},{"path":[4,46,2,33,3],"span":[885,28,30]},{"path":[4,46,2,34],"span":[886,2,54],"trailingComments":" Linux-only\n"},{"path":[4,46,2,34,4],"span":[886,2,10]},{"path":[4,46,2,34,5],"span":[886,11,16]},{"path":[4,46,2,34,1],"span":[886,17,48]},{"path":[4,46,2,34,3],"span":[886,51,53]},{"path":[4,46,2,35],"span":[887,2,33],"trailingComments":" Windows-only\n"},{"path":[4,46,2,35,4],"span":[887,2,10]},{"path":[4,46,2,35,5],"span":[887,11,17]},{"path":[4,46,2,35,1],"span":[887,18,27]},{"path":[4,46,2,35,3],"span":[887,30,32]},{"path":[4,46,2,36],"span":[888,2,43],"trailingComments":" Windows-only\n"},{"path":[4,46,2,36,4],"span":[888,2,10]},{"path":[4,46,2,36,6],"span":[888,11,22]},{"path":[4,46,2,36,1],"span":[888,23,37]},{"path":[4,46,2,36,3],"span":[888,40,42]},{"path":[4,46,2,37],"span":[889,2,31],"trailingComments":" Windows-only\n"},{"path":[4,46,2,37,4],"span":[889,2,10]},{"path":[4,46,2,37,5],"span":[889,11,17]},{"path":[4,46,2,37,1],"span":[889,18,25]},{"path":[4,46,2,37,3],"span":[889,28,30]},{"path":[4,46,2,38],"span":[890,2,38],"trailingComments":" Linux-only\n"},{"path":[4,46,2,38,4],"span":[890,2,10]},{"path":[4,46,2,38,5],"span":[890,11,17]},{"path":[4,46,2,38,1],"span":[890,18,32]},{"path":[4,46,2,38,3],"span":[890,35,37]},{"path":[4,46,2,39],"span":[891,2,49],"trailingComments":" Windows-only\n"},{"path":[4,46,2,39,4],"span":[891,2,10]},{"path":[4,46,2,39,6],"span":[891,11,22]},{"path":[4,46,2,39,1],"span":[891,23,43]},{"path":[4,46,2,39,3],"span":[891,46,48]},{"path":[4,47],"span":[895,0,905,1],"leadingComments":" Chassis *"},{"path":[4,47,1],"span":[895,8,15]},{"path":[4,47,2,0],"span":[897,2,25]},{"path":[4,47,2,0,6],"span":[897,2,13]},{"path":[4,47,2,0,1],"span":[897,16,20]},{"path":[4,47,2,0,3],"span":[897,23,24]},{"path":[4,47,2,1],"span":[898,2,33]},{"path":[4,47,2,1,4],"span":[898,2,10]},{"path":[4,47,2,1,5],"span":[898,11,15]},{"path":[4,47,2,1,1],"span":[898,16,28]},{"path":[4,47,2,1,3],"span":[898,31,32]},{"path":[4,47,2,2],"span":[899,2,41]},{"path":[4,47,2,2,4],"span":[899,2,10]},{"path":[4,47,2,2,5],"span":[899,11,17]},{"path":[4,47,2,2,1],"span":[899,24,36]},{"path":[4,47,2,2,3],"span":[899,39,40]},{"path":[4,47,2,3],"span":[900,2,43]},{"path":[4,47,2,3,4],"span":[900,2,10]},{"path":[4,47,2,3,6],"span":[900,11,22]},{"path":[4,47,2,3,1],"span":[900,23,38]},{"path":[4,47,2,3,3],"span":[900,41,42]},{"path":[4,47,2,4],"span":[901,2,42]},{"path":[4,47,2,4,4],"span":[901,2,10]},{"path":[4,47,2,4,5],"span":[901,11,17]},{"path":[4,47,2,4,1],"span":[901,24,37]},{"path":[4,47,2,4,3],"span":[901,40,41]},{"path":[4,47,2,5],"span":[902,2,38]},{"path":[4,47,2,5,4],"span":[902,2,10]},{"path":[4,47,2,5,5],"span":[902,11,17]},{"path":[4,47,2,5,1],"span":[902,24,33]},{"path":[4,47,2,5,3],"span":[902,36,37]},{"path":[4,47,2,6],"span":[903,2,36]},{"path":[4,47,2,6,4],"span":[903,2,10]},{"path":[4,47,2,6,5],"span":[903,11,17]},{"path":[4,47,2,6,1],"span":[903,24,31]},{"path":[4,47,2,6,3],"span":[903,34,35]},{"path":[4,47,2,7],"span":[904,2,40]},{"path":[4,47,2,7,4],"span":[904,2,10]},{"path":[4,47,2,7,6],"span":[904,11,22]},{"path":[4,47,2,7,1],"span":[904,23,35]},{"path":[4,47,2,7,3],"span":[904,38,39]},{"path":[4,48],"span":[910,0,922,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,48,1],"span":[910,8,17]},{"path":[4,48,2,0],"span":[911,2,30]},{"path":[4,48,2,0,4],"span":[911,2,10]},{"path":[4,48,2,0,5],"span":[911,11,17]},{"path":[4,48,2,0,1],"span":[911,18,25]},{"path":[4,48,2,0,3],"span":[911,28,29]},{"path":[4,48,2,1],"span":[912,2,31]},{"path":[4,48,2,1,4],"span":[912,2,10]},{"path":[4,48,2,1,5],"span":[912,11,15]},{"path":[4,48,2,1,1],"span":[912,16,26]},{"path":[4,48,2,1,3],"span":[912,29,30]},{"path":[4,48,2,2],"span":[913,2,34]},{"path":[4,48,2,2,4],"span":[913,2,10]},{"path":[4,48,2,2,5],"span":[913,11,17]},{"path":[4,48,2,2,1],"span":[913,18,29]},{"path":[4,48,2,2,3],"span":[913,32,33]},{"path":[4,48,2,3],"span":[914,2,32]},{"path":[4,48,2,3,4],"span":[914,2,10]},{"path":[4,48,2,3,5],"span":[914,11,17]},{"path":[4,48,2,3,1],"span":[914,18,27]},{"path":[4,48,2,3,3],"span":[914,30,31]},{"path":[4,48,2,4],"span":[915,2,38]},{"path":[4,48,2,4,4],"span":[915,2,10]},{"path":[4,48,2,4,6],"span":[915,11,22]},{"path":[4,48,2,4,1],"span":[915,23,33]},{"path":[4,48,2,4,3],"span":[915,36,37]},{"path":[4,48,2,5],"span":[916,2,34]},{"path":[4,48,2,5,4],"span":[916,2,10]},{"path":[4,48,2,5,5],"span":[916,11,17]},{"path":[4,48,2,5,1],"span":[916,18,29]},{"path":[4,48,2,5,3],"span":[916,32,33]},{"path":[4,48,2,6],"span":[917,2,32]},{"path":[4,48,2,6,4],"span":[917,2,10]},{"path":[4,48,2,6,5],"span":[917,11,16]},{"path":[4,48,2,6,1],"span":[917,17,27]},{"path":[4,48,2,6,3],"span":[917,30,31]},{"path":[4,48,2,7],"span":[918,2,26]},{"path":[4,48,2,7,4],"span":[918,2,10]},{"path":[4,48,2,7,5],"span":[918,11,16]},{"path":[4,48,2,7,1],"span":[918,17,21]},{"path":[4,48,2,7,3],"span":[918,24,25]},{"path":[4,48,2,8],"span":[919,2,34]},{"path":[4,48,2,8,4],"span":[919,2,10]},{"path":[4,48,2,8,5],"span":[919,11,17]},{"path":[4,48,2,8,1],"span":[919,18,29]},{"path":[4,48,2,8,3],"span":[919,32,33]},{"path":[4,48,2,9],"span":[920,2,37]},{"path":[4,48,2,9,4],"span":[920,2,10]},{"path":[4,48,2,9,5],"span":[920,11,17]},{"path":[4,48,2,9,1],"span":[920,18,31]},{"path":[4,48,2,9,3],"span":[920,34,36]},{"path":[4,48,2,10],"span":[921,2,34]},{"path":[4,48,2,10,4],"span":[921,2,10]},{"path":[4,48,2,10,5],"span":[921,11,17]},{"path":[4,48,2,10,1],"span":[921,18,28]},{"path":[4,48,2,10,3],"span":[921,31,33]},{"path":[4,49],"span":[927,0,957,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,49,1],"span":[927,8,19]},{"path":[4,49,2,0],"span":[928,2,32]},{"path":[4,49,2,0,4],"span":[928,2,10]},{"path":[4,49,2,0,5],"span":[928,11,17]},{"path":[4,49,2,0,1],"span":[928,18,27]},{"path":[4,49,2,0,3],"span":[928,30,31]},{"path":[4,49,2,1],"span":[929,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,49,2,1,4],"span":[929,2,10]},{"path":[4,49,2,1,5],"span":[929,11,17]},{"path":[4,49,2,1,1],"span":[929,18,22]},{"path":[4,49,2,1,3],"span":[929,25,26]},{"path":[4,49,2,2],"span":[930,2,28],"trailingComments":" win and linux\n"},{"path":[4,49,2,2,4],"span":[930,2,10]},{"path":[4,49,2,2,5],"span":[930,11,17]},{"path":[4,49,2,2,1],"span":[930,18,23]},{"path":[4,49,2,2,3],"span":[930,26,27]},{"path":[4,49,2,3],"span":[931,2,27]},{"path":[4,49,2,3,4],"span":[931,2,10]},{"path":[4,49,2,3,5],"span":[931,11,17]},{"path":[4,49,2,3,1],"span":[931,18,22]},{"path":[4,49,2,3,3],"span":[931,25,26]},{"path":[4,49,2,4],"span":[933,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,49,2,4,4],"span":[933,2,10]},{"path":[4,49,2,4,5],"span":[933,11,16]},{"path":[4,49,2,4,1],"span":[933,17,25]},{"path":[4,49,2,4,3],"span":[933,28,29]},{"path":[4,49,2,5],"span":[934,2,32]},{"path":[4,49,2,5,4],"span":[934,2,10]},{"path":[4,49,2,5,5],"span":[934,11,16]},{"path":[4,49,2,5,1],"span":[934,17,27]},{"path":[4,49,2,5,3],"span":[934,30,31]},{"path":[4,49,2,6],"span":[935,2,32]},{"path":[4,49,2,6,4],"span":[935,2,10]},{"path":[4,49,2,6,5],"span":[935,11,16]},{"path":[4,49,2,6,1],"span":[935,17,27]},{"path":[4,49,2,6,3],"span":[935,30,31]},{"path":[4,49,2,7],"span":[937,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,49,2,7,4],"span":[937,2,10]},{"path":[4,49,2,7,6],"span":[937,11,22]},{"path":[4,49,2,7,1],"span":[937,23,33]},{"path":[4,49,2,7,3],"span":[937,36,37]},{"path":[4,49,2,8],"span":[938,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,49,2,8,4],"span":[938,2,10]},{"path":[4,49,2,8,6],"span":[938,11,22]},{"path":[4,49,2,8,1],"span":[938,23,40]},{"path":[4,49,2,8,3],"span":[938,43,44]},{"path":[4,49,2,9],"span":[940,2,41]},{"path":[4,49,2,9,4],"span":[940,2,10]},{"path":[4,49,2,9,5],"span":[940,11,17]},{"path":[4,49,2,9,1],"span":[940,18,35]},{"path":[4,49,2,9,3],"span":[940,38,40]},{"path":[4,49,2,10],"span":[941,2,41]},{"path":[4,49,2,10,4],"span":[941,2,10]},{"path":[4,49,2,10,5],"span":[941,11,17]},{"path":[4,49,2,10,1],"span":[941,18,35]},{"path":[4,49,2,10,3],"span":[941,38,40]},{"path":[4,49,2,11],"span":[942,2,35]},{"path":[4,49,2,11,4],"span":[942,2,10]},{"path":[4,49,2,11,5],"span":[942,11,17]},{"path":[4,49,2,11,1],"span":[942,18,29]},{"path":[4,49,2,11,3],"span":[942,32,34]},{"path":[4,49,2,12],"span":[944,2,32]},{"path":[4,49,2,12,4],"span":[944,2,10]},{"path":[4,49,2,12,5],"span":[944,11,15]},{"path":[4,49,2,12,1],"span":[944,16,26]},{"path":[4,49,2,12,3],"span":[944,29,31]},{"path":[4,49,2,13],"span":[945,2,32]},{"path":[4,49,2,13,4],"span":[945,2,10]},{"path":[4,49,2,13,5],"span":[945,11,15]},{"path":[4,49,2,13,1],"span":[945,16,26]},{"path":[4,49,2,13,3],"span":[945,29,31]},{"path":[4,49,2,14],"span":[946,2,35]},{"path":[4,49,2,14,4],"span":[946,2,10]},{"path":[4,49,2,14,5],"span":[946,11,15]},{"path":[4,49,2,14,1],"span":[946,16,29]},{"path":[4,49,2,14,3],"span":[946,32,34]},{"path":[4,49,2,15],"span":[947,2,35]},{"path":[4,49,2,15,4],"span":[947,2,10]},{"path":[4,49,2,15,5],"span":[947,11,15]},{"path":[4,49,2,15,1],"span":[947,16,29]},{"path":[4,49,2,15,3],"span":[947,32,34]},{"path":[4,49,2,16],"span":[948,2,38]},{"path":[4,49,2,16,4],"span":[948,2,10]},{"path":[4,49,2,16,5],"span":[948,11,15]},{"path":[4,49,2,16,1],"span":[948,16,32]},{"path":[4,49,2,16,3],"span":[948,35,37]},{"path":[4,49,2,17],"span":[949,2,39]},{"path":[4,49,2,17,4],"span":[949,2,10]},{"path":[4,49,2,17,5],"span":[949,11,15]},{"path":[4,49,2,17,1],"span":[949,16,33]},{"path":[4,49,2,17,3],"span":[949,36,38]},{"path":[4,49,2,18],"span":[950,2,42]},{"path":[4,49,2,18,4],"span":[950,2,10]},{"path":[4,49,2,18,5],"span":[950,11,15]},{"path":[4,49,2,18,1],"span":[950,16,36]},{"path":[4,49,2,18,3],"span":[950,39,41]},{"path":[4,49,2,19],"span":[951,2,53]},{"path":[4,49,2,19,4],"span":[951,2,10]},{"path":[4,49,2,19,5],"span":[951,11,15]},{"path":[4,49,2,19,1],"span":[951,16,47]},{"path":[4,49,2,19,3],"span":[951,50,52]},{"path":[4,49,2,20],"span":[954,2,31],"leadingComments":" unix\n"},{"path":[4,49,2,20,4],"span":[954,2,10]},{"path":[4,49,2,20,5],"span":[954,11,17]},{"path":[4,49,2,20,1],"span":[954,18,25]},{"path":[4,49,2,20,3],"span":[954,28,30]},{"path":[4,49,2,21],"span":[955,2,35]},{"path":[4,49,2,21,4],"span":[955,2,10]},{"path":[4,49,2,21,5],"span":[955,11,17]},{"path":[4,49,2,21,1],"span":[955,18,29]},{"path":[4,49,2,21,3],"span":[955,32,34]},{"path":[4,50],"span":[962,0,969,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,50,1],"span":[962,8,21]},{"path":[4,50,8,0],"span":[963,2,966,5]},{"path":[4,50,8,0,1],"span":[963,8,14]},{"path":[4,50,2,0],"span":[964,4,44]},{"path":[4,50,2,0,6],"span":[964,4,22]},{"path":[4,50,2,0,1],"span":[964,23,39]},{"path":[4,50,2,0,3],"span":[964,42,43]},{"path":[4,50,2,1],"span":[965,4,36]},{"path":[4,50,2,1,6],"span":[965,4,20]},{"path":[4,50,2,1,1],"span":[965,21,31]},{"path":[4,50,2,1,3],"span":[965,34,35]},{"path":[4,50,2,2],"span":[968,2,29]},{"path":[4,50,2,2,4],"span":[968,2,10]},{"path":[4,50,2,2,5],"span":[968,11,17]},{"path":[4,50,2,2,1],"span":[968,18,22]},{"path":[4,50,2,2,3],"span":[968,25,28]},{"path":[4,51],"span":[972,0,977,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,51,1],"span":[972,8,26]},{"path":[4,51,2,0],"span":[973,2,26]},{"path":[4,51,2,0,5],"span":[973,2,8]},{"path":[4,51,2,0,1],"span":[973,9,21]},{"path":[4,51,2,0,3],"span":[973,24,25]},{"path":[4,51,2,1],"span":[974,2,32]},{"path":[4,51,2,1,4],"span":[974,2,10]},{"path":[4,51,2,1,5],"span":[974,11,17]},{"path":[4,51,2,1,1],"span":[974,18,27]},{"path":[4,51,2,1,3],"span":[974,30,31]},{"path":[4,51,2,2],"span":[975,2,34]},{"path":[4,51,2,2,4],"span":[975,2,10]},{"path":[4,51,2,2,5],"span":[975,11,17]},{"path":[4,51,2,2,1],"span":[975,18,29]},{"path":[4,51,2,2,3],"span":[975,32,33]},{"path":[4,51,2,3],"span":[976,2,34]},{"path":[4,51,2,3,4],"span":[976,2,10]},{"path":[4,51,2,3,5],"span":[976,11,17]},{"path":[4,51,2,3,1],"span":[976,18,29]},{"path":[4,51,2,3,3],"span":[976,32,33]},{"path":[4,52],"span":[980,0,986,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,52,1],"span":[980,8,24]},{"path":[4,52,2,0],"span":[981,2,27]},{"path":[4,52,2,0,4],"span":[981,2,10]},{"path":[4,52,2,0,5],"span":[981,11,17]},{"path":[4,52,2,0,1],"span":[981,18,22]},{"path":[4,52,2,0,3],"span":[981,25,26]},{"path":[4,52,2,1],"span":[982,2,35]},{"path":[4,52,2,1,4],"span":[982,2,10]},{"path":[4,52,2,1,5],"span":[982,11,17]},{"path":[4,52,2,1,1],"span":[982,18,30]},{"path":[4,52,2,1,3],"span":[982,33,34]},{"path":[4,52,2,2],"span":[983,2,36]},{"path":[4,52,2,2,4],"span":[983,2,10]},{"path":[4,52,2,2,5],"span":[983,11,17]},{"path":[4,52,2,2,1],"span":[983,18,31]},{"path":[4,52,2,2,3],"span":[983,34,35]},{"path":[4,52,2,3],"span":[984,2,35]},{"path":[4,52,2,3,4],"span":[984,2,10]},{"path":[4,52,2,3,5],"span":[984,11,17]},{"path":[4,52,2,3,1],"span":[984,18,30]},{"path":[4,52,2,3,3],"span":[984,33,34]},{"path":[4,52,2,4],"span":[985,2,36]},{"path":[4,52,2,4,4],"span":[985,2,10]},{"path":[4,52,2,4,5],"span":[985,11,17]},{"path":[4,52,2,4,1],"span":[985,18,31]},{"path":[4,52,2,4,3],"span":[985,34,35]},{"path":[4,53],"span":[991,0,998,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,53,1],"span":[991,8,16]},{"path":[4,53,2,0],"span":[992,2,53]},{"path":[4,53,2,0,4],"span":[992,2,10]},{"path":[4,53,2,0,6],"span":[992,11,22]},{"path":[4,53,2,0,1],"span":[992,23,48]},{"path":[4,53,2,0,3],"span":[992,51,52]},{"path":[4,53,2,1],"span":[993,2,47]},{"path":[4,53,2,1,4],"span":[993,2,10]},{"path":[4,53,2,1,5],"span":[993,11,15]},{"path":[4,53,2,1,1],"span":[993,16,42]},{"path":[4,53,2,1,3],"span":[993,45,46]},{"path":[4,53,2,2],"span":[994,2,34]},{"path":[4,53,2,2,4],"span":[994,2,10]},{"path":[4,53,2,2,5],"span":[994,11,17]},{"path":[4,53,2,2,1],"span":[994,18,29]},{"path":[4,53,2,2,3],"span":[994,32,33]},{"path":[4,53,2,3],"span":[995,2,32]},{"path":[4,53,2,3,4],"span":[995,2,10]},{"path":[4,53,2,3,5],"span":[995,11,17]},{"path":[4,53,2,3,1],"span":[995,18,27]},{"path":[4,53,2,3,3],"span":[995,30,31]},{"path":[4,53,2,4],"span":[996,2,29]},{"path":[4,53,2,4,4],"span":[996,2,10]},{"path":[4,53,2,4,5],"span":[996,11,17]},{"path":[4,53,2,4,1],"span":[996,18,24]},{"path":[4,53,2,4,3],"span":[996,27,28]},{"path":[4,53,2,5],"span":[997,2,45]},{"path":[4,53,2,5,4],"span":[997,2,10]},{"path":[4,53,2,5,5],"span":[997,11,16]},{"path":[4,53,2,5,1],"span":[997,17,40]},{"path":[4,53,2,5,3],"span":[997,43,44]},{"path":[4,54],"span":[1004,0,1009,1],"leadingComments":"\n Computer Bus: from Windows.Bus\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-bus\n"},{"path":[4,54,1],"span":[1004,8,19]},{"path":[4,54,2,0],"span":[1005,2,29]},{"path":[4,54,2,0,4],"span":[1005,2,10]},{"path":[4,54,2,0,5],"span":[1005,11,16]},{"path":[4,54,2,0,1],"span":[1005,17,24]},{"path":[4,54,2,0,3],"span":[1005,27,28]},{"path":[4,54,2,1],"span":[1006,2,36]},{"path":[4,54,2,1,4],"span":[1006,2,10]},{"path":[4,54,2,1,6],"span":[1006,11,22]},{"path":[4,54,2,1,1],"span":[1006,23,31]},{"path":[4,54,2,1,3],"span":[1006,34,35]},{"path":[4,54,2,2],"span":[1007,2,32]},{"path":[4,54,2,2,4],"span":[1007,2,10]},{"path":[4,54,2,2,5],"span":[1007,11,17]},{"path":[4,54,2,2,1],"span":[1007,18,27]},{"path":[4,54,2,2,3],"span":[1007,30,31]},{"path":[4,54,2,3],"span":[1008,2,36]},{"path":[4,54,2,3,4],"span":[1008,2,10]},{"path":[4,54,2,3,5],"span":[1008,11,17]},{"path":[4,54,2,3,1],"span":[1008,18,31]},{"path":[4,54,2,3,3],"span":[1008,34,35]},{"path":[4,55],"span":[1015,0,1023,1],"leadingComments":"\n Computer Infrared: from Windows.Infrared\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-infrareddevice\n"},{"path":[4,55,1],"span":[1015,8,24]},{"path":[4,55,2,0],"span":[1016,2,40]},{"path":[4,55,2,0,4],"span":[1016,2,10]},{"path":[4,55,2,0,6],"span":[1016,11,22]},{"path":[4,55,2,0,1],"span":[1016,23,35]},{"path":[4,55,2,0,3],"span":[1016,38,39]},{"path":[4,55,2,1],"span":[1017,2,30]},{"path":[4,55,2,1,4],"span":[1017,2,10]},{"path":[4,55,2,1,5],"span":[1017,11,17]},{"path":[4,55,2,1,1],"span":[1017,18,25]},{"path":[4,55,2,1,3],"span":[1017,28,29]},{"path":[4,55,2,2],"span":[1018,2,53]},{"path":[4,55,2,2,4],"span":[1018,2,10]},{"path":[4,55,2,2,6],"span":[1018,11,22]},{"path":[4,55,2,2,1],"span":[1018,23,48]},{"path":[4,55,2,2,3],"span":[1018,51,52]},{"path":[4,55,2,3],"span":[1019,2,47]},{"path":[4,55,2,3,4],"span":[1019,2,10]},{"path":[4,55,2,3,5],"span":[1019,11,15]},{"path":[4,55,2,3,1],"span":[1019,16,42]},{"path":[4,55,2,3,3],"span":[1019,45,46]},{"path":[4,55,2,4],"span":[1020,2,32]},{"path":[4,55,2,4,4],"span":[1020,2,10]},{"path":[4,55,2,4,5],"span":[1020,11,17]},{"path":[4,55,2,4,1],"span":[1020,18,27]},{"path":[4,55,2,4,3],"span":[1020,30,31]},{"path":[4,55,2,5],"span":[1021,2,35]},{"path":[4,55,2,5,4],"span":[1021,2,10]},{"path":[4,55,2,5,5],"span":[1021,11,17]},{"path":[4,55,2,5,1],"span":[1021,18,30]},{"path":[4,55,2,5,3],"span":[1021,33,34]},{"path":[4,55,2,6],"span":[1022,2,46]},{"path":[4,55,2,6,4],"span":[1022,2,10]},{"path":[4,55,2,6,6],"span":[1022,11,22]},{"path":[4,55,2,6,1],"span":[1022,23,41]},{"path":[4,55,2,6,3],"span":[1022,44,45]},{"path":[4,56],"span":[1029,0,1041,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,56,1],"span":[1029,8,22]},{"path":[4,56,2,0],"span":[1030,2,30]},{"path":[4,56,2,0,4],"span":[1030,2,10]},{"path":[4,56,2,0,5],"span":[1030,11,17]},{"path":[4,56,2,0,1],"span":[1030,18,25]},{"path":[4,56,2,0,3],"span":[1030,28,29]},{"path":[4,56,2,1],"span":[1031,2,32]},{"path":[4,56,2,1,4],"span":[1031,2,10]},{"path":[4,56,2,1,5],"span":[1031,11,17]},{"path":[4,56,2,1,1],"span":[1031,18,27]},{"path":[4,56,2,1,3],"span":[1031,30,31]},{"path":[4,56,2,2],"span":[1032,2,44]},{"path":[4,56,2,2,4],"span":[1032,2,10]},{"path":[4,56,2,2,6],"span":[1032,11,22]},{"path":[4,56,2,2,1],"span":[1032,23,39]},{"path":[4,56,2,2,3],"span":[1032,42,43]},{"path":[4,56,2,3],"span":[1033,2,45]},{"path":[4,56,2,3,4],"span":[1033,2,10]},{"path":[4,56,2,3,5],"span":[1033,11,16]},{"path":[4,56,2,3,1],"span":[1033,18,40]},{"path":[4,56,2,3,3],"span":[1033,43,44]},{"path":[4,56,2,4],"span":[1034,2,38]},{"path":[4,56,2,4,4],"span":[1034,2,10]},{"path":[4,56,2,4,6],"span":[1034,11,22]},{"path":[4,56,2,4,1],"span":[1034,23,33]},{"path":[4,56,2,4,3],"span":[1034,36,37]},{"path":[4,56,2,5],"span":[1035,2,36]},{"path":[4,56,2,5,4],"span":[1035,2,10]},{"path":[4,56,2,5,5],"span":[1035,11,17]},{"path":[4,56,2,5,1],"span":[1035,18,31]},{"path":[4,56,2,5,3],"span":[1035,34,35]},{"path":[4,56,2,6],"span":[1036,2,34]},{"path":[4,56,2,6,4],"span":[1036,2,10]},{"path":[4,56,2,6,5],"span":[1036,11,17]},{"path":[4,56,2,6,1],"span":[1036,18,29]},{"path":[4,56,2,6,3],"span":[1036,32,33]},{"path":[4,56,2,7],"span":[1037,2,35]},{"path":[4,56,2,7,4],"span":[1037,2,10]},{"path":[4,56,2,7,5],"span":[1037,11,17]},{"path":[4,56,2,7,1],"span":[1037,18,30]},{"path":[4,56,2,7,3],"span":[1037,33,34]},{"path":[4,56,2,8],"span":[1038,2,40]},{"path":[4,56,2,8,4],"span":[1038,2,10]},{"path":[4,56,2,8,5],"span":[1038,11,16]},{"path":[4,56,2,8,1],"span":[1038,18,35]},{"path":[4,56,2,8,3],"span":[1038,38,39]},{"path":[4,56,2,9],"span":[1039,2,42]},{"path":[4,56,2,9,4],"span":[1039,2,10]},{"path":[4,56,2,9,6],"span":[1039,11,22]},{"path":[4,56,2,9,1],"span":[1039,23,36]},{"path":[4,56,2,9,3],"span":[1039,39,41]},{"path":[4,56,2,10],"span":[1040,2,44]},{"path":[4,56,2,10,4],"span":[1040,2,10]},{"path":[4,56,2,10,5],"span":[1040,11,16]},{"path":[4,56,2,10,1],"span":[1040,18,38]},{"path":[4,56,2,10,3],"span":[1040,41,43]},{"path":[4,57],"span":[1046,0,1053,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,57,1],"span":[1046,8,22]},{"path":[4,57,2,0],"span":[1047,2,30]},{"path":[4,57,2,0,4],"span":[1047,2,10]},{"path":[4,57,2,0,5],"span":[1047,11,17]},{"path":[4,57,2,0,1],"span":[1047,18,25]},{"path":[4,57,2,0,3],"span":[1047,28,29]},{"path":[4,57,2,1],"span":[1048,2,30]},{"path":[4,57,2,1,4],"span":[1048,2,10]},{"path":[4,57,2,1,5],"span":[1048,11,17]},{"path":[4,57,2,1,1],"span":[1048,18,25]},{"path":[4,57,2,1,3],"span":[1048,28,29]},{"path":[4,57,2,2],"span":[1049,2,31]},{"path":[4,57,2,2,4],"span":[1049,2,10]},{"path":[4,57,2,2,5],"span":[1049,11,17]},{"path":[4,57,2,2,1],"span":[1049,18,26]},{"path":[4,57,2,2,3],"span":[1049,29,30]},{"path":[4,57,2,3],"span":[1050,2,27]},{"path":[4,57,2,3,4],"span":[1050,2,10]},{"path":[4,57,2,3,5],"span":[1050,11,17]},{"path":[4,57,2,3,1],"span":[1050,18,22]},{"path":[4,57,2,3,3],"span":[1050,25,26]},{"path":[4,57,2,4],"span":[1051,2,27]},{"path":[4,57,2,4,4],"span":[1051,2,10]},{"path":[4,57,2,4,5],"span":[1051,11,17]},{"path":[4,57,2,4,1],"span":[1051,18,22]},{"path":[4,57,2,4,3],"span":[1051,25,26]},{"path":[4,57,2,5],"span":[1052,2,31]},{"path":[4,57,2,5,4],"span":[1052,2,10]},{"path":[4,57,2,5,5],"span":[1052,11,17]},{"path":[4,57,2,5,1],"span":[1052,18,26]},{"path":[4,57,2,5,3],"span":[1052,29,30]},{"path":[4,58],"span":[1058,0,1069,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,58,1],"span":[1058,8,18]},{"path":[4,58,2,0],"span":[1059,2,37]},{"path":[4,58,2,0,4],"span":[1059,2,10]},{"path":[4,58,2,0,5],"span":[1059,11,17]},{"path":[4,58,2,0,1],"span":[1059,18,32]},{"path":[4,58,2,0,3],"span":[1059,35,36]},{"path":[4,58,2,1],"span":[1060,2,30]},{"path":[4,58,2,1,4],"span":[1060,2,10]},{"path":[4,58,2,1,5],"span":[1060,11,17]},{"path":[4,58,2,1,1],"span":[1060,18,25]},{"path":[4,58,2,1,3],"span":[1060,28,29]},{"path":[4,58,2,2],"span":[1061,2,27]},{"path":[4,58,2,2,4],"span":[1061,2,10]},{"path":[4,58,2,2,5],"span":[1061,11,17]},{"path":[4,58,2,2,1],"span":[1061,18,22]},{"path":[4,58,2,2,3],"span":[1061,25,26]},{"path":[4,58,2,3],"span":[1062,2,41]},{"path":[4,58,2,3,4],"span":[1062,2,10]},{"path":[4,58,2,3,5],"span":[1062,11,17]},{"path":[4,58,2,3,1],"span":[1062,18,36]},{"path":[4,58,2,3,3],"span":[1062,39,40]},{"path":[4,58,2,4],"span":[1063,2,40]},{"path":[4,58,2,4,4],"span":[1063,2,10]},{"path":[4,58,2,4,5],"span":[1063,11,17]},{"path":[4,58,2,4,1],"span":[1063,18,35]},{"path":[4,58,2,4,3],"span":[1063,38,39]},{"path":[4,58,2,5],"span":[1064,2,37]},{"path":[4,58,2,5,4],"span":[1064,2,10]},{"path":[4,58,2,5,5],"span":[1064,11,17]},{"path":[4,58,2,5,1],"span":[1064,18,32]},{"path":[4,58,2,5,3],"span":[1064,35,36]},{"path":[4,58,2,6],"span":[1067,2,34],"leadingComments":" from mac\n"},{"path":[4,58,2,6,4],"span":[1067,2,10]},{"path":[4,58,2,6,5],"span":[1067,11,17]},{"path":[4,58,2,6,1],"span":[1067,18,29]},{"path":[4,58,2,6,3],"span":[1067,32,33]},{"path":[4,58,2,7],"span":[1068,2,32]},{"path":[4,58,2,7,4],"span":[1068,2,10]},{"path":[4,58,2,7,5],"span":[1068,11,17]},{"path":[4,58,2,7,1],"span":[1068,18,27]},{"path":[4,58,2,7,3],"span":[1068,30,31]},{"path":[4,59],"span":[1074,0,1079,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,59,1],"span":[1074,8,22]},{"path":[4,59,2,0],"span":[1075,2,30]},{"path":[4,59,2,0,4],"span":[1075,2,10]},{"path":[4,59,2,0,5],"span":[1075,11,17]},{"path":[4,59,2,0,1],"span":[1075,18,25]},{"path":[4,59,2,0,3],"span":[1075,28,29]},{"path":[4,59,2,1],"span":[1076,2,28]},{"path":[4,59,2,1,4],"span":[1076,2,10]},{"path":[4,59,2,1,5],"span":[1076,11,17]},{"path":[4,59,2,1,1],"span":[1076,18,22]},{"path":[4,59,2,1,3],"span":[1076,26,27]},{"path":[4,59,2,2],"span":[1077,2,27]},{"path":[4,59,2,2,4],"span":[1077,2,10]},{"path":[4,59,2,2,5],"span":[1077,11,17]},{"path":[4,59,2,2,1],"span":[1077,18,22]},{"path":[4,59,2,2,3],"span":[1077,25,26]},{"path":[4,59,2,3],"span":[1078,2,32]},{"path":[4,59,2,3,4],"span":[1078,2,10]},{"path":[4,59,2,3,6],"span":[1078,11,22]},{"path":[4,59,2,3,1],"span":[1078,23,27]},{"path":[4,59,2,3,3],"span":[1078,30,31]},{"path":[4,60],"span":[1084,0,1090,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,60,1],"span":[1084,8,22]},{"path":[4,60,2,0],"span":[1085,2,27],"trailingComments":" caption\n"},{"path":[4,60,2,0,4],"span":[1085,2,10]},{"path":[4,60,2,0,5],"span":[1085,11,17]},{"path":[4,60,2,0,1],"span":[1085,18,22]},{"path":[4,60,2,0,3],"span":[1085,25,26]},{"path":[4,60,2,1],"span":[1086,2,27],"trailingComments":" executable_path\n"},{"path":[4,60,2,1,4],"span":[1086,2,10]},{"path":[4,60,2,1,5],"span":[1086,11,17]},{"path":[4,60,2,1,1],"span":[1086,18,22]},{"path":[4,60,2,1,3],"span":[1086,25,26]},{"path":[4,60,2,2],"span":[1087,2,29]},{"path":[4,60,2,2,4],"span":[1087,2,10]},{"path":[4,60,2,2,5],"span":[1087,11,16]},{"path":[4,60,2,2,1],"span":[1087,17,24]},{"path":[4,60,2,2,3],"span":[1087,27,28]},{"path":[4,60,2,3],"span":[1088,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,60,2,3,4],"span":[1088,2,10]},{"path":[4,60,2,3,5],"span":[1088,11,16]},{"path":[4,60,2,3,1],"span":[1088,17,25]},{"path":[4,60,2,3,3],"span":[1088,28,29]},{"path":[4,60,2,4],"span":[1089,2,29]},{"path":[4,60,2,4,4],"span":[1089,2,10]},{"path":[4,60,2,4,5],"span":[1089,11,17]},{"path":[4,60,2,4,1],"span":[1089,18,24]},{"path":[4,60,2,4,3],"span":[1089,27,28]},{"path":[4,61],"span":[1095,0,1106,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,61,1],"span":[1095,8,30]},{"path":[4,61,2,0],"span":[1096,2,27]},{"path":[4,61,2,0,4],"span":[1096,2,10]},{"path":[4,61,2,0,5],"span":[1096,11,17]},{"path":[4,61,2,0,1],"span":[1096,18,22]},{"path":[4,61,2,0,3],"span":[1096,25,26]},{"path":[4,61,2,1],"span":[1097,2,30]},{"path":[4,61,2,1,4],"span":[1097,2,10]},{"path":[4,61,2,1,5],"span":[1097,11,17]},{"path":[4,61,2,1,1],"span":[1097,18,25]},{"path":[4,61,2,1,3],"span":[1097,28,29]},{"path":[4,61,2,2],"span":[1098,2,31]},{"path":[4,61,2,2,4],"span":[1098,2,10]},{"path":[4,61,2,2,5],"span":[1098,11,17]},{"path":[4,61,2,2,1],"span":[1098,18,26]},{"path":[4,61,2,2,3],"span":[1098,29,30]},{"path":[4,61,2,3],"span":[1099,2,33]},{"path":[4,61,2,3,4],"span":[1099,2,10]},{"path":[4,61,2,3,5],"span":[1099,11,17]},{"path":[4,61,2,3,1],"span":[1099,18,28]},{"path":[4,61,2,3,3],"span":[1099,31,32]},{"path":[4,61,2,4],"span":[1100,2,33]},{"path":[4,61,2,4,4],"span":[1100,2,10]},{"path":[4,61,2,4,5],"span":[1100,11,17]},{"path":[4,61,2,4,1],"span":[1100,18,28]},{"path":[4,61,2,4,3],"span":[1100,31,32]},{"path":[4,61,2,5],"span":[1101,2,28]},{"path":[4,61,2,5,4],"span":[1101,2,10]},{"path":[4,61,2,5,5],"span":[1101,11,17]},{"path":[4,61,2,5,1],"span":[1101,18,23]},{"path":[4,61,2,5,3],"span":[1101,26,27]},{"path":[4,61,2,6],"span":[1102,2,28]},{"path":[4,61,2,6,4],"span":[1102,2,10]},{"path":[4,61,2,6,5],"span":[1102,11,15]},{"path":[4,61,2,6,1],"span":[1102,16,23]},{"path":[4,61,2,6,3],"span":[1102,26,27]},{"path":[4,61,2,7],"span":[1103,2,33]},{"path":[4,61,2,7,4],"span":[1103,2,10]},{"path":[4,61,2,7,5],"span":[1103,11,15]},{"path":[4,61,2,7,1],"span":[1103,16,28]},{"path":[4,61,2,7,3],"span":[1103,31,32]},{"path":[4,61,2,8],"span":[1104,2,32]},{"path":[4,61,2,8,4],"span":[1104,2,10]},{"path":[4,61,2,8,5],"span":[1104,11,15]},{"path":[4,61,2,8,1],"span":[1104,16,27]},{"path":[4,61,2,8,3],"span":[1104,30,31]},{"path":[4,61,2,9],"span":[1105,2,38]},{"path":[4,61,2,9,4],"span":[1105,2,10]},{"path":[4,61,2,9,5],"span":[1105,11,15]},{"path":[4,61,2,9,1],"span":[1105,16,32]},{"path":[4,61,2,9,3],"span":[1105,35,37]},{"path":[4,62],"span":[1111,0,1115,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,62,1],"span":[1111,8,31]},{"path":[4,62,8,0],"span":[1112,2,1114,3]},{"path":[4,62,8,0,1],"span":[1112,8,10]},{"path":[4,62,2,0],"span":[1113,6,32]},{"path":[4,62,2,0,6],"span":[1113,6,23]},{"path":[4,62,2,0,1],"span":[1113,24,27]},{"path":[4,62,2,0,3],"span":[1113,30,31]},{"path":[4,63],"span":[1120,0,1131,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,63,1],"span":[1120,8,25]},{"path":[4,63,2,0],"span":[1121,2,32]},{"path":[4,63,2,0,4],"span":[1121,2,10]},{"path":[4,63,2,0,5],"span":[1121,11,15]},{"path":[4,63,2,0,1],"span":[1121,16,27]},{"path":[4,63,2,0,3],"span":[1121,30,31]},{"path":[4,63,2,1],"span":[1122,2,38]},{"path":[4,63,2,1,4],"span":[1122,2,10]},{"path":[4,63,2,1,5],"span":[1122,11,17]},{"path":[4,63,2,1,1],"span":[1122,18,33]},{"path":[4,63,2,1,3],"span":[1122,36,37]},{"path":[4,63,2,2],"span":[1123,2,37]},{"path":[4,63,2,2,4],"span":[1123,2,10]},{"path":[4,63,2,2,5],"span":[1123,11,15]},{"path":[4,63,2,2,1],"span":[1123,16,32]},{"path":[4,63,2,2,3],"span":[1123,35,36]},{"path":[4,63,2,3],"span":[1124,2,27]},{"path":[4,63,2,3,4],"span":[1124,2,10]},{"path":[4,63,2,3,5],"span":[1124,11,17]},{"path":[4,63,2,3,1],"span":[1124,18,22]},{"path":[4,63,2,3,3],"span":[1124,25,26]},{"path":[4,63,2,4],"span":[1125,2,50]},{"path":[4,63,2,4,4],"span":[1125,2,10]},{"path":[4,63,2,4,5],"span":[1125,11,15]},{"path":[4,63,2,4,1],"span":[1125,16,45]},{"path":[4,63,2,4,3],"span":[1125,48,49]},{"path":[4,63,2,5],"span":[1126,2,37]},{"path":[4,63,2,5,4],"span":[1126,2,10]},{"path":[4,63,2,5,5],"span":[1126,11,15]},{"path":[4,63,2,5,1],"span":[1126,16,32]},{"path":[4,63,2,5,3],"span":[1126,35,36]},{"path":[4,63,2,6],"span":[1127,2,37]},{"path":[4,63,2,6,4],"span":[1127,2,10]},{"path":[4,63,2,6,5],"span":[1127,11,15]},{"path":[4,63,2,6,1],"span":[1127,16,32]},{"path":[4,63,2,6,3],"span":[1127,35,36]},{"path":[4,63,2,7],"span":[1128,2,40]},{"path":[4,63,2,7,4],"span":[1128,2,10]},{"path":[4,63,2,7,5],"span":[1128,11,15]},{"path":[4,63,2,7,1],"span":[1128,16,35]},{"path":[4,63,2,7,3],"span":[1128,38,39]},{"path":[4,63,2,8],"span":[1129,2,44]},{"path":[4,63,2,8,4],"span":[1129,2,10]},{"path":[4,63,2,8,6],"span":[1129,11,22]},{"path":[4,63,2,8,1],"span":[1129,23,38]},{"path":[4,63,2,8,3],"span":[1129,41,43]},{"path":[4,63,2,9],"span":[1130,2,43]},{"path":[4,63,2,9,4],"span":[1130,2,10]},{"path":[4,63,2,9,5],"span":[1130,11,17]},{"path":[4,63,2,9,1],"span":[1130,18,37]},{"path":[4,63,2,9,3],"span":[1130,40,42]},{"path":[4,64],"span":[1137,0,1146,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,64,1],"span":[1137,8,14]},{"path":[4,64,8,0],"span":[1138,2,1142,3]},{"path":[4,64,8,0,1],"span":[1138,8,14]},{"path":[4,64,2,0],"span":[1139,4,36]},{"path":[4,64,2,0,6],"span":[1139,4,23]},{"path":[4,64,2,0,1],"span":[1139,24,31]},{"path":[4,64,2,0,3],"span":[1139,34,35]},{"path":[4,64,2,1],"span":[1140,4,39]},{"path":[4,64,2,1,6],"span":[1140,4,26]},{"path":[4,64,2,1,1],"span":[1140,27,34]},{"path":[4,64,2,1,3],"span":[1140,37,38]},{"path":[4,64,2,2],"span":[1141,4,41]},{"path":[4,64,2,2,6],"span":[1141,4,24]},{"path":[4,64,2,2,1],"span":[1141,25,36]},{"path":[4,64,2,2,3],"span":[1141,39,40]},{"path":[4,64,2,3],"span":[1144,2,29]},{"path":[4,64,2,3,4],"span":[1144,2,10]},{"path":[4,64,2,3,5],"span":[1144,11,17]},{"path":[4,64,2,3,1],"span":[1144,18,22]},{"path":[4,64,2,3,3],"span":[1144,25,28]},{"path":[4,64,2,4],"span":[1145,2,36]},{"path":[4,64,2,4,4],"span":[1145,2,10]},{"path":[4,64,2,4,5],"span":[1145,11,17]},{"path":[4,64,2,4,1],"span":[1145,18,29]},{"path":[4,64,2,4,3],"span":[1145,32,35]},{"path":[4,65],"span":[1151,0,1170,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,65,1],"span":[1151,8,27]},{"path":[4,65,2,0],"span":[1152,2,34]},{"path":[4,65,2,0,4],"span":[1152,2,10]},{"path":[4,65,2,0,5],"span":[1152,11,15]},{"path":[4,65,2,0,1],"span":[1152,17,29]},{"path":[4,65,2,0,3],"span":[1152,32,33]},{"path":[4,65,2,1],"span":[1153,2,33]},{"path":[4,65,2,1,4],"span":[1153,2,10]},{"path":[4,65,2,1,5],"span":[1153,11,15]},{"path":[4,65,2,1,1],"span":[1153,17,28]},{"path":[4,65,2,1,3],"span":[1153,31,32]},{"path":[4,65,2,2],"span":[1154,2,38]},{"path":[4,65,2,2,4],"span":[1154,2,10]},{"path":[4,65,2,2,5],"span":[1154,11,15]},{"path":[4,65,2,2,1],"span":[1154,17,33]},{"path":[4,65,2,2,3],"span":[1154,36,37]},{"path":[4,65,2,3],"span":[1155,2,36]},{"path":[4,65,2,3,4],"span":[1155,2,10]},{"path":[4,65,2,3,5],"span":[1155,11,17]},{"path":[4,65,2,3,1],"span":[1155,18,31]},{"path":[4,65,2,3,3],"span":[1155,34,35]},{"path":[4,65,2,4],"span":[1156,2,32]},{"path":[4,65,2,4,4],"span":[1156,2,10]},{"path":[4,65,2,4,5],"span":[1156,11,16]},{"path":[4,65,2,4,1],"span":[1156,18,27]},{"path":[4,65,2,4,3],"span":[1156,30,31]},{"path":[4,65,2,5],"span":[1157,2,32]},{"path":[4,65,2,5,4],"span":[1157,2,10]},{"path":[4,65,2,5,5],"span":[1157,11,17]},{"path":[4,65,2,5,1],"span":[1157,18,27]},{"path":[4,65,2,5,3],"span":[1157,30,31]},{"path":[4,65,2,6],"span":[1158,2,49]},{"path":[4,65,2,6,4],"span":[1158,2,10]},{"path":[4,65,2,6,5],"span":[1158,11,16]},{"path":[4,65,2,6,1],"span":[1158,18,44]},{"path":[4,65,2,6,3],"span":[1158,47,48]},{"path":[4,65,2,7],"span":[1159,2,34]},{"path":[4,65,2,7,4],"span":[1159,2,10]},{"path":[4,65,2,7,5],"span":[1159,11,17]},{"path":[4,65,2,7,1],"span":[1159,18,30]},{"path":[4,65,2,7,3],"span":[1159,32,33]},{"path":[4,65,2,8],"span":[1160,2,29]},{"path":[4,65,2,8,4],"span":[1160,2,10]},{"path":[4,65,2,8,5],"span":[1160,11,15]},{"path":[4,65,2,8,1],"span":[1160,17,24]},{"path":[4,65,2,8,3],"span":[1160,27,28]},{"path":[4,65,2,9],"span":[1161,2,34]},{"path":[4,65,2,9,4],"span":[1161,2,10]},{"path":[4,65,2,9,5],"span":[1161,11,17]},{"path":[4,65,2,9,1],"span":[1161,18,28]},{"path":[4,65,2,9,3],"span":[1161,31,33]},{"path":[4,65,2,10],"span":[1162,2,34]},{"path":[4,65,2,10,4],"span":[1162,2,10]},{"path":[4,65,2,10,5],"span":[1162,11,17]},{"path":[4,65,2,10,1],"span":[1162,18,28]},{"path":[4,65,2,10,3],"span":[1162,31,33]},{"path":[4,65,2,11],"span":[1163,2,29]},{"path":[4,65,2,11,4],"span":[1163,2,10]},{"path":[4,65,2,11,5],"span":[1163,11,17]},{"path":[4,65,2,11,1],"span":[1163,18,23]},{"path":[4,65,2,11,3],"span":[1163,26,28]},{"path":[4,65,2,12],"span":[1164,2,30]},{"path":[4,65,2,12,4],"span":[1164,2,10]},{"path":[4,65,2,12,5],"span":[1164,11,17]},{"path":[4,65,2,12,1],"span":[1164,18,24]},{"path":[4,65,2,12,3],"span":[1164,27,29]},{"path":[4,65,2,13],"span":[1165,2,30]},{"path":[4,65,2,13,4],"span":[1165,2,10]},{"path":[4,65,2,13,5],"span":[1165,11,16]},{"path":[4,65,2,13,1],"span":[1165,18,24]},{"path":[4,65,2,13,3],"span":[1165,27,29]},{"path":[4,65,2,14],"span":[1166,2,28]},{"path":[4,65,2,14,4],"span":[1166,2,10]},{"path":[4,65,2,14,5],"span":[1166,11,17]},{"path":[4,65,2,14,1],"span":[1166,18,22]},{"path":[4,65,2,14,3],"span":[1166,25,27]},{"path":[4,65,2,15],"span":[1167,2,35]},{"path":[4,65,2,15,4],"span":[1167,2,10]},{"path":[4,65,2,15,5],"span":[1167,11,17]},{"path":[4,65,2,15,1],"span":[1167,18,29]},{"path":[4,65,2,15,3],"span":[1167,32,34]},{"path":[4,65,2,16],"span":[1168,2,31]},{"path":[4,65,2,16,4],"span":[1168,2,10]},{"path":[4,65,2,16,5],"span":[1168,11,17]},{"path":[4,65,2,16,1],"span":[1168,18,25]},{"path":[4,65,2,16,3],"span":[1168,28,30]},{"path":[4,65,2,17],"span":[1169,2,36]},{"path":[4,65,2,17,4],"span":[1169,2,10]},{"path":[4,65,2,17,5],"span":[1169,11,17]},{"path":[4,65,2,17,1],"span":[1169,18,30]},{"path":[4,65,2,17,3],"span":[1169,33,35]},{"path":[4,66],"span":[1175,0,1194,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,66,1],"span":[1175,8,30]},{"path":[4,66,2,0],"span":[1176,2,32]},{"path":[4,66,2,0,4],"span":[1176,2,10]},{"path":[4,66,2,0,5],"span":[1176,11,17]},{"path":[4,66,2,0,1],"span":[1176,18,27]},{"path":[4,66,2,0,3],"span":[1176,30,31]},{"path":[4,66,2,1],"span":[1177,2,32]},{"path":[4,66,2,1,4],"span":[1177,2,10]},{"path":[4,66,2,1,5],"span":[1177,11,17]},{"path":[4,66,2,1,1],"span":[1177,18,27]},{"path":[4,66,2,1,3],"span":[1177,30,31]},{"path":[4,66,2,2],"span":[1178,2,33]},{"path":[4,66,2,2,4],"span":[1178,2,10]},{"path":[4,66,2,2,5],"span":[1178,11,17]},{"path":[4,66,2,2,1],"span":[1178,18,28]},{"path":[4,66,2,2,3],"span":[1178,31,32]},{"path":[4,66,2,3],"span":[1179,2,34]},{"path":[4,66,2,3,4],"span":[1179,2,10]},{"path":[4,66,2,3,5],"span":[1179,11,17]},{"path":[4,66,2,3,1],"span":[1179,18,29]},{"path":[4,66,2,3,3],"span":[1179,32,33]},{"path":[4,66,2,4],"span":[1180,2,36]},{"path":[4,66,2,4,4],"span":[1180,2,10]},{"path":[4,66,2,4,5],"span":[1180,11,17]},{"path":[4,66,2,4,1],"span":[1180,18,31]},{"path":[4,66,2,4,3],"span":[1180,34,35]},{"path":[4,66,2,5],"span":[1181,2,44]},{"path":[4,66,2,5,6],"span":[1181,2,27]},{"path":[4,66,2,5,1],"span":[1181,28,39]},{"path":[4,66,2,5,3],"span":[1181,42,43]},{"path":[4,66,2,6],"span":[1182,2,37]},{"path":[4,66,2,6,4],"span":[1182,2,10]},{"path":[4,66,2,6,5],"span":[1182,11,17]},{"path":[4,66,2,6,1],"span":[1182,18,32]},{"path":[4,66,2,6,3],"span":[1182,35,36]},{"path":[4,66,2,7],"span":[1183,2,34]},{"path":[4,66,2,7,4],"span":[1183,2,10]},{"path":[4,66,2,7,5],"span":[1183,11,17]},{"path":[4,66,2,7,1],"span":[1183,18,29]},{"path":[4,66,2,7,3],"span":[1183,32,33]},{"path":[4,66,2,8],"span":[1184,2,31]},{"path":[4,66,2,8,4],"span":[1184,2,10]},{"path":[4,66,2,8,5],"span":[1184,11,17]},{"path":[4,66,2,8,1],"span":[1184,18,26]},{"path":[4,66,2,8,3],"span":[1184,29,30]},{"path":[4,66,2,9],"span":[1185,2,32]},{"path":[4,66,2,9,4],"span":[1185,2,10]},{"path":[4,66,2,9,5],"span":[1185,11,15]},{"path":[4,66,2,9,1],"span":[1185,17,26]},{"path":[4,66,2,9,3],"span":[1185,29,31]},{"path":[4,66,2,10],"span":[1186,2,32]},{"path":[4,66,2,10,4],"span":[1186,2,10]},{"path":[4,66,2,10,5],"span":[1186,11,17]},{"path":[4,66,2,10,1],"span":[1186,18,26]},{"path":[4,66,2,10,3],"span":[1186,29,31]},{"path":[4,66,2,11],"span":[1187,2,27]},{"path":[4,66,2,11,4],"span":[1187,2,10]},{"path":[4,66,2,11,5],"span":[1187,11,17]},{"path":[4,66,2,11,1],"span":[1187,18,21]},{"path":[4,66,2,11,3],"span":[1187,24,26]},{"path":[4,66,2,12],"span":[1188,2,36]},{"path":[4,66,2,12,4],"span":[1188,2,10]},{"path":[4,66,2,12,5],"span":[1188,11,17]},{"path":[4,66,2,12,1],"span":[1188,18,30]},{"path":[4,66,2,12,3],"span":[1188,33,35]},{"path":[4,66,2,13],"span":[1189,2,35]},{"path":[4,66,2,13,4],"span":[1189,2,10]},{"path":[4,66,2,13,5],"span":[1189,11,17]},{"path":[4,66,2,13,1],"span":[1189,18,29]},{"path":[4,66,2,13,3],"span":[1189,32,34]},{"path":[4,66,2,14],"span":[1190,2,36]},{"path":[4,66,2,14,4],"span":[1190,2,10]},{"path":[4,66,2,14,5],"span":[1190,11,17]},{"path":[4,66,2,14,1],"span":[1190,18,30]},{"path":[4,66,2,14,3],"span":[1190,33,35]},{"path":[4,66,2,15],"span":[1191,2,35]},{"path":[4,66,2,15,4],"span":[1191,2,10]},{"path":[4,66,2,15,5],"span":[1191,11,17]},{"path":[4,66,2,15,1],"span":[1191,18,29]},{"path":[4,66,2,15,3],"span":[1191,32,34]},{"path":[4,66,2,16],"span":[1192,2,30]},{"path":[4,66,2,16,4],"span":[1192,2,10]},{"path":[4,66,2,16,5],"span":[1192,11,17]},{"path":[4,66,2,16,1],"span":[1192,18,24]},{"path":[4,66,2,16,3],"span":[1192,27,29]},{"path":[4,66,2,17],"span":[1193,2,44]},{"path":[4,66,2,17,4],"span":[1193,2,10]},{"path":[4,66,2,17,5],"span":[1193,11,17]},{"path":[4,66,2,17,1],"span":[1193,18,38]},{"path":[4,66,2,17,3],"span":[1193,41,43]},{"path":[4,67],"span":[1199,0,1219,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,67,1],"span":[1199,8,28]},{"path":[4,67,2,0],"span":[1200,2,34]},{"path":[4,67,2,0,4],"span":[1200,2,10]},{"path":[4,67,2,0,5],"span":[1200,11,17]},{"path":[4,67,2,0,1],"span":[1200,18,29]},{"path":[4,67,2,0,3],"span":[1200,32,33]},{"path":[4,67,2,1],"span":[1201,2,32]},{"path":[4,67,2,1,4],"span":[1201,2,10]},{"path":[4,67,2,1,5],"span":[1201,11,17]},{"path":[4,67,2,1,1],"span":[1201,18,27]},{"path":[4,67,2,1,3],"span":[1201,30,31]},{"path":[4,67,2,2],"span":[1202,2,40]},{"path":[4,67,2,2,4],"span":[1202,2,10]},{"path":[4,67,2,2,5],"span":[1202,11,17]},{"path":[4,67,2,2,1],"span":[1202,18,35]},{"path":[4,67,2,2,3],"span":[1202,38,39]},{"path":[4,67,2,3],"span":[1203,2,34]},{"path":[4,67,2,3,4],"span":[1203,2,10]},{"path":[4,67,2,3,5],"span":[1203,11,17]},{"path":[4,67,2,3,1],"span":[1203,18,29]},{"path":[4,67,2,3,3],"span":[1203,32,33]},{"path":[4,67,2,4],"span":[1204,2,32]},{"path":[4,67,2,4,4],"span":[1204,2,10]},{"path":[4,67,2,4,5],"span":[1204,11,17]},{"path":[4,67,2,4,1],"span":[1204,18,27]},{"path":[4,67,2,4,3],"span":[1204,30,31]},{"path":[4,67,2,5],"span":[1205,2,32]},{"path":[4,67,2,5,4],"span":[1205,2,10]},{"path":[4,67,2,5,5],"span":[1205,11,17]},{"path":[4,67,2,5,1],"span":[1205,18,27]},{"path":[4,67,2,5,3],"span":[1205,30,31]},{"path":[4,67,2,6],"span":[1206,2,35]},{"path":[4,67,2,6,4],"span":[1206,2,10]},{"path":[4,67,2,6,5],"span":[1206,11,17]},{"path":[4,67,2,6,1],"span":[1206,18,30]},{"path":[4,67,2,6,3],"span":[1206,33,34]},{"path":[4,67,2,7],"span":[1207,2,30]},{"path":[4,67,2,7,4],"span":[1207,2,10]},{"path":[4,67,2,7,5],"span":[1207,11,17]},{"path":[4,67,2,7,1],"span":[1207,18,25]},{"path":[4,67,2,7,3],"span":[1207,28,29]},{"path":[4,67,2,8],"span":[1208,2,30]},{"path":[4,67,2,8,4],"span":[1208,2,10]},{"path":[4,67,2,8,5],"span":[1208,11,16]},{"path":[4,67,2,8,1],"span":[1208,18,25]},{"path":[4,67,2,8,3],"span":[1208,28,29]},{"path":[4,67,2,9],"span":[1209,2,38]},{"path":[4,67,2,9,4],"span":[1209,2,10]},{"path":[4,67,2,9,5],"span":[1209,11,17]},{"path":[4,67,2,9,1],"span":[1209,18,32]},{"path":[4,67,2,9,3],"span":[1209,35,37]},{"path":[4,67,2,10],"span":[1210,2,35]},{"path":[4,67,2,10,4],"span":[1210,2,10]},{"path":[4,67,2,10,5],"span":[1210,11,17]},{"path":[4,67,2,10,1],"span":[1210,18,29]},{"path":[4,67,2,10,3],"span":[1210,32,34]},{"path":[4,67,2,11],"span":[1211,2,35]},{"path":[4,67,2,11,4],"span":[1211,2,10]},{"path":[4,67,2,11,5],"span":[1211,11,17]},{"path":[4,67,2,11,1],"span":[1211,18,29]},{"path":[4,67,2,11,3],"span":[1211,32,34]},{"path":[4,67,2,12],"span":[1212,2,32]},{"path":[4,67,2,12,4],"span":[1212,2,10]},{"path":[4,67,2,12,5],"span":[1212,11,17]},{"path":[4,67,2,12,1],"span":[1212,18,26]},{"path":[4,67,2,12,3],"span":[1212,29,31]},{"path":[4,67,2,13],"span":[1213,2,43]},{"path":[4,67,2,13,4],"span":[1213,2,10]},{"path":[4,67,2,13,5],"span":[1213,11,17]},{"path":[4,67,2,13,1],"span":[1213,18,37]},{"path":[4,67,2,13,3],"span":[1213,40,42]},{"path":[4,67,2,14],"span":[1214,2,39]},{"path":[4,67,2,14,4],"span":[1214,2,10]},{"path":[4,67,2,14,5],"span":[1214,11,17]},{"path":[4,67,2,14,1],"span":[1214,18,33]},{"path":[4,67,2,14,3],"span":[1214,36,38]},{"path":[4,67,2,15],"span":[1215,2,28]},{"path":[4,67,2,15,4],"span":[1215,2,10]},{"path":[4,67,2,15,5],"span":[1215,11,17]},{"path":[4,67,2,15,1],"span":[1215,18,22]},{"path":[4,67,2,15,3],"span":[1215,25,27]},{"path":[4,67,2,16],"span":[1216,2,32]},{"path":[4,67,2,16,4],"span":[1216,2,10]},{"path":[4,67,2,16,5],"span":[1216,11,17]},{"path":[4,67,2,16,1],"span":[1216,18,26]},{"path":[4,67,2,16,3],"span":[1216,29,31]},{"path":[4,67,2,17],"span":[1217,2,42]},{"path":[4,67,2,17,4],"span":[1217,2,10]},{"path":[4,67,2,17,5],"span":[1217,11,17]},{"path":[4,67,2,17,1],"span":[1217,18,36]},{"path":[4,67,2,17,3],"span":[1217,39,41]},{"path":[4,67,2,18],"span":[1218,2,36]},{"path":[4,67,2,18,4],"span":[1218,2,10]},{"path":[4,67,2,18,5],"span":[1218,11,17]},{"path":[4,67,2,18,1],"span":[1218,18,30]},{"path":[4,67,2,18,3],"span":[1218,33,35]},{"path":[4,68],"span":[1224,0,1233,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,68,1],"span":[1224,8,17]},{"path":[4,68,2,0],"span":[1225,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,68,2,0,4],"span":[1225,2,10]},{"path":[4,68,2,0,5],"span":[1225,11,17]},{"path":[4,68,2,0,1],"span":[1225,18,25]},{"path":[4,68,2,0,3],"span":[1225,28,29]},{"path":[4,68,2,1],"span":[1226,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,68,2,1,4],"span":[1226,2,10]},{"path":[4,68,2,1,5],"span":[1226,11,17]},{"path":[4,68,2,1,1],"span":[1226,18,27]},{"path":[4,68,2,1,3],"span":[1226,30,31]},{"path":[4,68,2,2],"span":[1227,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,68,2,2,4],"span":[1227,2,10]},{"path":[4,68,2,2,5],"span":[1227,11,17]},{"path":[4,68,2,2,1],"span":[1227,18,30]},{"path":[4,68,2,2,3],"span":[1227,33,34]},{"path":[4,68,2,3],"span":[1229,2,27],"trailingComments":" Linux\n"},{"path":[4,68,2,3,4],"span":[1229,2,10]},{"path":[4,68,2,3,5],"span":[1229,11,17]},{"path":[4,68,2,3,1],"span":[1229,18,22]},{"path":[4,68,2,3,3],"span":[1229,25,26]},{"path":[4,68,2,4],"span":[1230,2,37],"trailingComments":" Linux\n"},{"path":[4,68,2,4,4],"span":[1230,2,10]},{"path":[4,68,2,4,5],"span":[1230,11,17]},{"path":[4,68,2,4,1],"span":[1230,18,32]},{"path":[4,68,2,4,3],"span":[1230,35,36]},{"path":[4,68,2,5],"span":[1231,2,45],"trailingComments":" Linux\n"},{"path":[4,68,2,5,4],"span":[1231,2,10]},{"path":[4,68,2,5,5],"span":[1231,11,17]},{"path":[4,68,2,5,1],"span":[1231,18,40]},{"path":[4,68,2,5,3],"span":[1231,43,44]},{"path":[4,68,2,6],"span":[1232,2,29],"trailingComments":" Linux\n"},{"path":[4,68,2,6,4],"span":[1232,2,10]},{"path":[4,68,2,6,5],"span":[1232,11,17]},{"path":[4,68,2,6,1],"span":[1232,18,24]},{"path":[4,68,2,6,3],"span":[1232,27,28]},{"path":[4,69],"span":[1238,0,1267,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,69,1],"span":[1238,8,20]},{"path":[4,69,2,0],"span":[1239,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,69,2,0,4],"span":[1239,2,10]},{"path":[4,69,2,0,5],"span":[1239,16,22]},{"path":[4,69,2,0,1],"span":[1239,24,28]},{"path":[4,69,2,0,3],"span":[1239,31,32]},{"path":[4,69,2,1],"span":[1240,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,1,4],"span":[1240,2,10]},{"path":[4,69,2,1,5],"span":[1240,16,21]},{"path":[4,69,2,1,1],"span":[1240,24,42]},{"path":[4,69,2,1,3],"span":[1240,45,46]},{"path":[4,69,2,2],"span":[1241,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,2,4],"span":[1241,2,10]},{"path":[4,69,2,2,5],"span":[1241,16,21]},{"path":[4,69,2,2,1],"span":[1241,24,46]},{"path":[4,69,2,2,3],"span":[1241,49,50]},{"path":[4,69,2,3],"span":[1242,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,3,4],"span":[1242,2,10]},{"path":[4,69,2,3,5],"span":[1242,16,21]},{"path":[4,69,2,3,1],"span":[1242,24,53]},{"path":[4,69,2,3,3],"span":[1242,56,57]},{"path":[4,69,2,4],"span":[1243,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,4,4],"span":[1243,2,10]},{"path":[4,69,2,4,5],"span":[1243,16,21]},{"path":[4,69,2,4,1],"span":[1243,24,48]},{"path":[4,69,2,4,3],"span":[1243,51,52]},{"path":[4,69,2,5],"span":[1244,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,5,4],"span":[1244,2,10]},{"path":[4,69,2,5,5],"span":[1244,16,21]},{"path":[4,69,2,5,1],"span":[1244,24,44]},{"path":[4,69,2,5,3],"span":[1244,47,48]},{"path":[4,69,2,6],"span":[1245,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,6,4],"span":[1245,2,10]},{"path":[4,69,2,6,6],"span":[1245,16,27]},{"path":[4,69,2,6,1],"span":[1245,32,49]},{"path":[4,69,2,6,3],"span":[1245,52,53]},{"path":[4,69,2,7],"span":[1246,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,7,4],"span":[1246,2,10]},{"path":[4,69,2,7,5],"span":[1246,16,21]},{"path":[4,69,2,7,1],"span":[1246,24,51]},{"path":[4,69,2,7,3],"span":[1246,54,55]},{"path":[4,69,2,8],"span":[1247,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,69,2,8,4],"span":[1247,2,10]},{"path":[4,69,2,8,5],"span":[1247,16,22]},{"path":[4,69,2,8,1],"span":[1247,24,33]},{"path":[4,69,2,8,3],"span":[1247,36,37]},{"path":[4,69,2,9],"span":[1248,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,9,4],"span":[1248,2,10]},{"path":[4,69,2,9,5],"span":[1248,16,21]},{"path":[4,69,2,9,1],"span":[1248,24,44]},{"path":[4,69,2,9,3],"span":[1248,47,49]},{"path":[4,69,2,10],"span":[1249,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,10,4],"span":[1249,2,10]},{"path":[4,69,2,10,5],"span":[1249,16,22]},{"path":[4,69,2,10,1],"span":[1249,24,38]},{"path":[4,69,2,10,3],"span":[1249,41,43]},{"path":[4,69,2,11],"span":[1250,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,11,4],"span":[1250,2,10]},{"path":[4,69,2,11,5],"span":[1250,16,22]},{"path":[4,69,2,11,1],"span":[1250,24,36]},{"path":[4,69,2,11,3],"span":[1250,39,41]},{"path":[4,69,2,12],"span":[1251,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,12,4],"span":[1251,2,10]},{"path":[4,69,2,12,5],"span":[1251,16,22]},{"path":[4,69,2,12,1],"span":[1251,24,35]},{"path":[4,69,2,12,3],"span":[1251,38,40]},{"path":[4,69,2,13],"span":[1252,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,13,4],"span":[1252,2,10]},{"path":[4,69,2,13,5],"span":[1252,16,22]},{"path":[4,69,2,13,1],"span":[1252,24,49]},{"path":[4,69,2,13,3],"span":[1252,52,54]},{"path":[4,69,2,14],"span":[1253,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,14,4],"span":[1253,2,10]},{"path":[4,69,2,14,5],"span":[1253,16,20]},{"path":[4,69,2,14,1],"span":[1253,24,37]},{"path":[4,69,2,14,3],"span":[1253,40,42]},{"path":[4,69,2,15],"span":[1254,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,69,2,15,4],"span":[1254,2,10]},{"path":[4,69,2,15,5],"span":[1254,16,22]},{"path":[4,69,2,15,1],"span":[1254,24,36]},{"path":[4,69,2,15,3],"span":[1254,39,41]},{"path":[4,69,2,16],"span":[1255,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,16,4],"span":[1255,2,10]},{"path":[4,69,2,16,5],"span":[1255,16,21]},{"path":[4,69,2,16,1],"span":[1255,24,40]},{"path":[4,69,2,16,3],"span":[1255,43,45]},{"path":[4,69,2,17],"span":[1256,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,17,4],"span":[1256,2,10]},{"path":[4,69,2,17,5],"span":[1256,16,21]},{"path":[4,69,2,17,1],"span":[1256,24,30]},{"path":[4,69,2,17,3],"span":[1256,33,35]},{"path":[4,69,2,18],"span":[1257,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,18,4],"span":[1257,2,10]},{"path":[4,69,2,18,6],"span":[1257,16,27]},{"path":[4,69,2,18,1],"span":[1257,32,43]},{"path":[4,69,2,18,3],"span":[1257,46,48]},{"path":[4,69,2,19],"span":[1258,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,19,4],"span":[1258,2,10]},{"path":[4,69,2,19,5],"span":[1258,16,21]},{"path":[4,69,2,19,1],"span":[1258,24,40]},{"path":[4,69,2,19,3],"span":[1258,43,45]},{"path":[4,69,2,20],"span":[1259,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,69,2,20,4],"span":[1259,2,10]},{"path":[4,69,2,20,5],"span":[1259,16,22]},{"path":[4,69,2,20,1],"span":[1259,24,32]},{"path":[4,69,2,20,3],"span":[1259,35,37]},{"path":[4,69,2,21],"span":[1260,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,21,4],"span":[1260,2,10]},{"path":[4,69,2,21,5],"span":[1260,16,22]},{"path":[4,69,2,21,1],"span":[1260,24,37]},{"path":[4,69,2,21,3],"span":[1260,40,42]},{"path":[4,69,2,22],"span":[1261,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,22,4],"span":[1261,2,10]},{"path":[4,69,2,22,6],"span":[1261,16,27]},{"path":[4,69,2,22,1],"span":[1261,32,37]},{"path":[4,69,2,22,3],"span":[1261,40,42]},{"path":[4,69,2,23],"span":[1262,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,69,2,23,4],"span":[1262,2,10]},{"path":[4,69,2,23,5],"span":[1262,16,22]},{"path":[4,69,2,23,1],"span":[1262,24,46]},{"path":[4,69,2,23,3],"span":[1262,49,51]},{"path":[4,69,2,24],"span":[1263,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,69,2,24,4],"span":[1263,2,10]},{"path":[4,69,2,24,5],"span":[1263,16,22]},{"path":[4,69,2,24,1],"span":[1263,24,38]},{"path":[4,69,2,24,3],"span":[1263,41,43]},{"path":[4,69,2,25],"span":[1264,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,25,4],"span":[1264,2,10]},{"path":[4,69,2,25,6],"span":[1264,16,27]},{"path":[4,69,2,25,1],"span":[1264,32,50]},{"path":[4,69,2,25,3],"span":[1264,53,55]},{"path":[4,69,2,26],"span":[1265,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,26,4],"span":[1265,2,10]},{"path":[4,69,2,26,5],"span":[1265,16,22]},{"path":[4,69,2,26,1],"span":[1265,24,34]},{"path":[4,69,2,26,3],"span":[1265,37,39]},{"path":[4,69,2,27],"span":[1266,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,27,4],"span":[1266,2,10]},{"path":[4,69,2,27,5],"span":[1266,16,22]},{"path":[4,69,2,27,1],"span":[1266,24,39]},{"path":[4,69,2,27,3],"span":[1266,42,44]},{"path":[4,70],"span":[1272,0,1282,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,70,1],"span":[1272,8,12]},{"path":[4,70,8,0],"span":[1273,2,1276,3]},{"path":[4,70,8,0,1],"span":[1273,8,12]},{"path":[4,70,2,0],"span":[1274,4,24]},{"path":[4,70,2,0,6],"span":[1274,4,15]},{"path":[4,70,2,0,1],"span":[1274,16,19]},{"path":[4,70,2,0,3],"span":[1274,22,23]},{"path":[4,70,2,1],"span":[1275,4,24]},{"path":[4,70,2,1,6],"span":[1275,4,13]},{"path":[4,70,2,1,1],"span":[1275,14,19]},{"path":[4,70,2,1,3],"span":[1275,22,23]},{"path":[4,70,2,2],"span":[1279,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,70,2,2,4],"span":[1279,2,10]},{"path":[4,70,2,2,5],"span":[1279,11,17]},{"path":[4,70,2,2,1],"span":[1279,18,30]},{"path":[4,70,2,2,3],"span":[1279,33,36]},{"path":[4,70,2,3],"span":[1280,2,32]},{"path":[4,70,2,3,4],"span":[1280,2,10]},{"path":[4,70,2,3,5],"span":[1280,11,17]},{"path":[4,70,2,3,1],"span":[1280,18,25]},{"path":[4,70,2,3,3],"span":[1280,28,31]},{"path":[4,70,2,4],"span":[1281,2,56]},{"path":[4,70,2,4,4],"span":[1281,2,10]},{"path":[4,70,2,4,6],"span":[1281,11,36]},{"path":[4,70,2,4,1],"span":[1281,37,49]},{"path":[4,70,2,4,3],"span":[1281,52,55]},{"path":[4,71],"span":[1288,0,1308,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,71,1],"span":[1288,8,19]},{"path":[4,71,2,0],"span":[1289,2,48]},{"path":[4,71,2,0,4],"span":[1289,2,10]},{"path":[4,71,2,0,6],"span":[1289,11,22]},{"path":[4,71,2,0,1],"span":[1289,23,43]},{"path":[4,71,2,0,3],"span":[1289,46,47]},{"path":[4,71,2,1],"span":[1290,2,30]},{"path":[4,71,2,1,4],"span":[1290,2,10]},{"path":[4,71,2,1,5],"span":[1290,11,17]},{"path":[4,71,2,1,1],"span":[1290,18,25]},{"path":[4,71,2,1,3],"span":[1290,28,29]},{"path":[4,71,2,2],"span":[1291,2,39]},{"path":[4,71,2,2,4],"span":[1291,2,10]},{"path":[4,71,2,2,5],"span":[1291,11,17]},{"path":[4,71,2,2,1],"span":[1291,18,34]},{"path":[4,71,2,2,3],"span":[1291,37,38]},{"path":[4,71,2,3],"span":[1292,2,43]},{"path":[4,71,2,3,4],"span":[1292,2,10]},{"path":[4,71,2,3,5],"span":[1292,11,16]},{"path":[4,71,2,3,1],"span":[1292,17,38]},{"path":[4,71,2,3,3],"span":[1292,41,42]},{"path":[4,71,2,4],"span":[1293,2,35]},{"path":[4,71,2,4,4],"span":[1293,2,10]},{"path":[4,71,2,4,5],"span":[1293,11,17]},{"path":[4,71,2,4,1],"span":[1293,18,30]},{"path":[4,71,2,4,3],"span":[1293,33,34]},{"path":[4,71,2,5],"span":[1294,2,27]},{"path":[4,71,2,5,4],"span":[1294,2,10]},{"path":[4,71,2,5,5],"span":[1294,11,17]},{"path":[4,71,2,5,1],"span":[1294,18,22]},{"path":[4,71,2,5,3],"span":[1294,25,26]},{"path":[4,71,2,6],"span":[1295,2,33]},{"path":[4,71,2,6,4],"span":[1295,2,10]},{"path":[4,71,2,6,5],"span":[1295,11,15]},{"path":[4,71,2,6,1],"span":[1295,16,28]},{"path":[4,71,2,6,3],"span":[1295,31,32]},{"path":[4,71,2,7],"span":[1296,2,54]},{"path":[4,71,2,7,4],"span":[1296,2,10]},{"path":[4,71,2,7,6],"span":[1296,11,36]},{"path":[4,71,2,7,1],"span":[1296,37,49]},{"path":[4,71,2,7,3],"span":[1296,52,53]},{"path":[4,71,2,8],"span":[1297,2,37]},{"path":[4,71,2,8,4],"span":[1297,2,10]},{"path":[4,71,2,8,5],"span":[1297,11,17]},{"path":[4,71,2,8,1],"span":[1297,18,31]},{"path":[4,71,2,8,3],"span":[1297,34,36]},{"path":[4,71,2,9],"span":[1298,2,43]},{"path":[4,71,2,9,4],"span":[1298,2,10]},{"path":[4,71,2,9,5],"span":[1298,11,17]},{"path":[4,71,2,9,1],"span":[1298,18,37]},{"path":[4,71,2,9,3],"span":[1298,40,42]},{"path":[4,71,2,10],"span":[1299,2,43]},{"path":[4,71,2,10,4],"span":[1299,2,10]},{"path":[4,71,2,10,5],"span":[1299,11,16]},{"path":[4,71,2,10,1],"span":[1299,17,37]},{"path":[4,71,2,10,3],"span":[1299,40,42]},{"path":[4,71,2,11],"span":[1300,2,43]},{"path":[4,71,2,11,4],"span":[1300,2,10]},{"path":[4,71,2,11,5],"span":[1300,11,16]},{"path":[4,71,2,11,1],"span":[1300,17,37]},{"path":[4,71,2,11,3],"span":[1300,40,42]},{"path":[4,71,2,12],"span":[1301,2,36]},{"path":[4,71,2,12,4],"span":[1301,2,10]},{"path":[4,71,2,12,5],"span":[1301,11,15]},{"path":[4,71,2,12,1],"span":[1301,16,30]},{"path":[4,71,2,12,3],"span":[1301,33,35]},{"path":[4,71,2,13],"span":[1302,2,43]},{"path":[4,71,2,13,4],"span":[1302,2,10]},{"path":[4,71,2,13,5],"span":[1302,11,17]},{"path":[4,71,2,13,1],"span":[1302,18,37]},{"path":[4,71,2,13,3],"span":[1302,40,42]},{"path":[4,71,2,14],"span":[1303,2,51]},{"path":[4,71,2,14,4],"span":[1303,2,10]},{"path":[4,71,2,14,6],"span":[1303,11,22]},{"path":[4,71,2,14,1],"span":[1303,23,45]},{"path":[4,71,2,14,3],"span":[1303,48,50]},{"path":[4,71,2,15],"span":[1304,2,30]},{"path":[4,71,2,15,4],"span":[1304,2,10]},{"path":[4,71,2,15,5],"span":[1304,11,17]},{"path":[4,71,2,15,1],"span":[1304,18,24]},{"path":[4,71,2,15,3],"span":[1304,27,29]},{"path":[4,71,2,16],"span":[1305,2,52]},{"path":[4,71,2,16,4],"span":[1305,2,10]},{"path":[4,71,2,16,6],"span":[1305,11,22]},{"path":[4,71,2,16,1],"span":[1305,23,46]},{"path":[4,71,2,16,3],"span":[1305,49,51]},{"path":[4,71,2,17],"span":[1306,2,31]},{"path":[4,71,2,17,4],"span":[1306,2,10]},{"path":[4,71,2,17,5],"span":[1306,11,17]},{"path":[4,71,2,17,1],"span":[1306,18,25]},{"path":[4,71,2,17,3],"span":[1306,28,30]},{"path":[4,71,2,18],"span":[1307,2,36]},{"path":[4,71,2,18,4],"span":[1307,2,10]},{"path":[4,71,2,18,5],"span":[1307,11,17]},{"path":[4,71,2,18,1],"span":[1307,18,30]},{"path":[4,71,2,18,3],"span":[1307,33,35]},{"path":[4,72],"span":[1313,0,1320,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,72,1],"span":[1313,8,17]},{"path":[4,72,2,0],"span":[1314,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,72,2,0,4],"span":[1314,2,10]},{"path":[4,72,2,0,5],"span":[1314,11,17]},{"path":[4,72,2,0,1],"span":[1314,18,25]},{"path":[4,72,2,0,3],"span":[1314,28,29]},{"path":[4,72,2,1],"span":[1315,2,30]},{"path":[4,72,2,1,4],"span":[1315,2,10]},{"path":[4,72,2,1,5],"span":[1315,11,17]},{"path":[4,72,2,1,1],"span":[1315,18,25]},{"path":[4,72,2,1,3],"span":[1315,28,29]},{"path":[4,72,2,2],"span":[1316,2,29]},{"path":[4,72,2,2,4],"span":[1316,2,10]},{"path":[4,72,2,2,5],"span":[1316,11,17]},{"path":[4,72,2,2,1],"span":[1316,18,24]},{"path":[4,72,2,2,3],"span":[1316,27,28]},{"path":[4,72,2,3],"span":[1317,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,72,2,3,4],"span":[1317,2,10]},{"path":[4,72,2,3,5],"span":[1317,11,16]},{"path":[4,72,2,3,1],"span":[1317,17,29]},{"path":[4,72,2,3,3],"span":[1317,32,33]},{"path":[4,72,2,4],"span":[1318,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,72,2,4,4],"span":[1318,2,10]},{"path":[4,72,2,4,5],"span":[1318,11,16]},{"path":[4,72,2,4,1],"span":[1318,17,25]},{"path":[4,72,2,4,3],"span":[1318,28,29]},{"path":[4,72,2,5],"span":[1319,2,54]},{"path":[4,72,2,5,4],"span":[1319,2,10]},{"path":[4,72,2,5,6],"span":[1319,11,36]},{"path":[4,72,2,5,1],"span":[1319,37,49]},{"path":[4,72,2,5,3],"span":[1319,52,53]},{"path":[4,73],"span":[1325,0,1331,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,73,1],"span":[1325,8,23]},{"path":[4,73,8,0],"span":[1326,2,1330,3]},{"path":[4,73,8,0,1],"span":[1326,8,12]},{"path":[4,73,2,0],"span":[1327,4,43]},{"path":[4,73,2,0,6],"span":[1327,4,26]},{"path":[4,73,2,0,1],"span":[1327,27,38]},{"path":[4,73,2,0,3],"span":[1327,41,42]},{"path":[4,73,2,1],"span":[1328,4,44]},{"path":[4,73,2,1,6],"span":[1328,4,26]},{"path":[4,73,2,1,1],"span":[1328,27,39]},{"path":[4,73,2,1,3],"span":[1328,42,43]},{"path":[4,73,2,2],"span":[1329,4,39]},{"path":[4,73,2,2,6],"span":[1329,4,22]},{"path":[4,73,2,2,1],"span":[1329,23,34]},{"path":[4,73,2,2,3],"span":[1329,37,38]},{"path":[4,74],"span":[1337,0,1348,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,74,1],"span":[1337,8,30]},{"path":[4,74,2,0],"span":[1338,2,40]},{"path":[4,74,2,0,4],"span":[1338,2,10]},{"path":[4,74,2,0,6],"span":[1338,11,22]},{"path":[4,74,2,0,1],"span":[1338,23,35]},{"path":[4,74,2,0,3],"span":[1338,38,39]},{"path":[4,74,2,1],"span":[1339,2,42]},{"path":[4,74,2,1,4],"span":[1339,2,10]},{"path":[4,74,2,1,6],"span":[1339,11,22]},{"path":[4,74,2,1,1],"span":[1339,23,37]},{"path":[4,74,2,1,3],"span":[1339,40,41]},{"path":[4,74,2,2],"span":[1340,2,37]},{"path":[4,74,2,2,4],"span":[1340,2,10]},{"path":[4,74,2,2,6],"span":[1340,11,22]},{"path":[4,74,2,2,1],"span":[1340,23,32]},{"path":[4,74,2,2,3],"span":[1340,35,36]},{"path":[4,74,2,3],"span":[1341,2,43]},{"path":[4,74,2,3,4],"span":[1341,2,10]},{"path":[4,74,2,3,6],"span":[1341,11,22]},{"path":[4,74,2,3,1],"span":[1341,23,38]},{"path":[4,74,2,3,3],"span":[1341,41,42]},{"path":[4,74,2,4],"span":[1342,2,32]},{"path":[4,74,2,4,4],"span":[1342,2,10]},{"path":[4,74,2,4,5],"span":[1342,11,17]},{"path":[4,74,2,4,1],"span":[1342,18,27]},{"path":[4,74,2,4,3],"span":[1342,30,31]},{"path":[4,74,2,5],"span":[1343,2,27]},{"path":[4,74,2,5,4],"span":[1343,2,10]},{"path":[4,74,2,5,5],"span":[1343,11,17]},{"path":[4,74,2,5,1],"span":[1343,18,22]},{"path":[4,74,2,5,3],"span":[1343,25,26]},{"path":[4,74,2,6],"span":[1344,2,57]},{"path":[4,74,2,6,4],"span":[1344,2,10]},{"path":[4,74,2,6,6],"span":[1344,11,22]},{"path":[4,74,2,6,1],"span":[1344,23,52]},{"path":[4,74,2,6,3],"span":[1344,55,56]},{"path":[4,74,2,7],"span":[1345,2,47]},{"path":[4,74,2,7,4],"span":[1345,2,10]},{"path":[4,74,2,7,5],"span":[1345,11,15]},{"path":[4,74,2,7,1],"span":[1345,16,42]},{"path":[4,74,2,7,3],"span":[1345,45,46]},{"path":[4,74,2,8],"span":[1346,2,44]},{"path":[4,74,2,8,4],"span":[1346,2,10]},{"path":[4,74,2,8,5],"span":[1346,11,17]},{"path":[4,74,2,8,1],"span":[1346,18,39]},{"path":[4,74,2,8,3],"span":[1346,42,43]},{"path":[4,74,2,9],"span":[1347,2,30]},{"path":[4,74,2,9,4],"span":[1347,2,10]},{"path":[4,74,2,9,5],"span":[1347,11,17]},{"path":[4,74,2,9,1],"span":[1347,18,24]},{"path":[4,74,2,9,3],"span":[1347,27,29]},{"path":[4,75],"span":[1354,0,1366,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,75,1],"span":[1354,8,30]},{"path":[4,75,2,0],"span":[1355,2,41]},{"path":[4,75,2,0,4],"span":[1355,2,10]},{"path":[4,75,2,0,5],"span":[1355,11,16]},{"path":[4,75,2,0,1],"span":[1355,17,36]},{"path":[4,75,2,0,3],"span":[1355,39,40]},{"path":[4,75,2,1],"span":[1356,2,37]},{"path":[4,75,2,1,4],"span":[1356,2,10]},{"path":[4,75,2,1,6],"span":[1356,11,22]},{"path":[4,75,2,1,1],"span":[1356,23,32]},{"path":[4,75,2,1,3],"span":[1356,35,36]},{"path":[4,75,2,2],"span":[1357,2,37]},{"path":[4,75,2,2,4],"span":[1357,2,10]},{"path":[4,75,2,2,5],"span":[1357,11,16]},{"path":[4,75,2,2,1],"span":[1357,17,32]},{"path":[4,75,2,2,3],"span":[1357,35,36]},{"path":[4,75,2,3],"span":[1358,2,36]},{"path":[4,75,2,3,4],"span":[1358,2,10]},{"path":[4,75,2,3,5],"span":[1358,11,16]},{"path":[4,75,2,3,1],"span":[1358,17,31]},{"path":[4,75,2,3,3],"span":[1358,34,35]},{"path":[4,75,2,4],"span":[1359,2,32]},{"path":[4,75,2,4,4],"span":[1359,2,10]},{"path":[4,75,2,4,5],"span":[1359,11,17]},{"path":[4,75,2,4,1],"span":[1359,18,27]},{"path":[4,75,2,4,3],"span":[1359,30,31]},{"path":[4,75,2,5],"span":[1360,2,31]},{"path":[4,75,2,5,4],"span":[1360,2,10]},{"path":[4,75,2,5,5],"span":[1360,11,17]},{"path":[4,75,2,5,1],"span":[1360,18,26]},{"path":[4,75,2,5,3],"span":[1360,29,30]},{"path":[4,75,2,6],"span":[1361,2,39]},{"path":[4,75,2,6,4],"span":[1361,2,10]},{"path":[4,75,2,6,5],"span":[1361,11,17]},{"path":[4,75,2,6,1],"span":[1361,18,34]},{"path":[4,75,2,6,3],"span":[1361,37,38]},{"path":[4,75,2,7],"span":[1362,2,35]},{"path":[4,75,2,7,4],"span":[1362,2,10]},{"path":[4,75,2,7,5],"span":[1362,11,17]},{"path":[4,75,2,7,1],"span":[1362,18,30]},{"path":[4,75,2,7,3],"span":[1362,33,34]},{"path":[4,75,2,8],"span":[1363,2,39]},{"path":[4,75,2,8,4],"span":[1363,2,10]},{"path":[4,75,2,8,5],"span":[1363,11,16]},{"path":[4,75,2,8,1],"span":[1363,17,34]},{"path":[4,75,2,8,3],"span":[1363,37,38]},{"path":[4,75,2,9],"span":[1364,2,28]},{"path":[4,75,2,9,4],"span":[1364,2,10]},{"path":[4,75,2,9,5],"span":[1364,11,17]},{"path":[4,75,2,9,1],"span":[1364,18,22]},{"path":[4,75,2,9,3],"span":[1364,25,27]},{"path":[4,75,2,10],"span":[1365,2,45]},{"path":[4,75,2,10,4],"span":[1365,2,10]},{"path":[4,75,2,10,5],"span":[1365,11,17]},{"path":[4,75,2,10,1],"span":[1365,18,39]},{"path":[4,75,2,10,3],"span":[1365,42,44]},{"path":[4,76],"span":[1371,0,1407,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,76,1],"span":[1371,8,26]},{"path":[4,76,2,0],"span":[1373,2,38],"leadingComments":" from battery power\n"},{"path":[4,76,2,0,4],"span":[1373,2,10]},{"path":[4,76,2,0,5],"span":[1373,11,16]},{"path":[4,76,2,0,1],"span":[1373,17,33]},{"path":[4,76,2,0,3],"span":[1373,36,37]},{"path":[4,76,2,1],"span":[1374,2,41]},{"path":[4,76,2,1,4],"span":[1374,2,10]},{"path":[4,76,2,1,5],"span":[1374,11,16]},{"path":[4,76,2,1,1],"span":[1374,17,36]},{"path":[4,76,2,1,3],"span":[1374,39,40]},{"path":[4,76,2,2],"span":[1375,2,36]},{"path":[4,76,2,2,4],"span":[1375,2,10]},{"path":[4,76,2,2,5],"span":[1375,11,16]},{"path":[4,76,2,2,1],"span":[1375,17,31]},{"path":[4,76,2,2,3],"span":[1375,34,35]},{"path":[4,76,2,3],"span":[1376,2,64]},{"path":[4,76,2,3,4],"span":[1376,2,10]},{"path":[4,76,2,3,5],"span":[1376,11,16]},{"path":[4,76,2,3,1],"span":[1376,17,59]},{"path":[4,76,2,3,3],"span":[1376,62,63]},{"path":[4,76,2,4],"span":[1377,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,76,2,4,4],"span":[1377,2,10]},{"path":[4,76,2,4,5],"span":[1377,11,15]},{"path":[4,76,2,4,1],"span":[1377,16,37]},{"path":[4,76,2,4,3],"span":[1377,40,41]},{"path":[4,76,2,5],"span":[1378,2,40]},{"path":[4,76,2,5,4],"span":[1378,2,10]},{"path":[4,76,2,5,5],"span":[1378,11,16]},{"path":[4,76,2,5,1],"span":[1378,17,35]},{"path":[4,76,2,5,3],"span":[1378,38,39]},{"path":[4,76,2,6],"span":[1379,2,32]},{"path":[4,76,2,6,4],"span":[1379,2,10]},{"path":[4,76,2,6,5],"span":[1379,11,15]},{"path":[4,76,2,6,1],"span":[1379,16,27]},{"path":[4,76,2,6,3],"span":[1379,30,31]},{"path":[4,76,2,7],"span":[1380,2,42]},{"path":[4,76,2,7,4],"span":[1380,2,10]},{"path":[4,76,2,7,5],"span":[1380,11,16]},{"path":[4,76,2,7,1],"span":[1380,17,37]},{"path":[4,76,2,7,3],"span":[1380,40,41]},{"path":[4,76,2,8],"span":[1381,2,37]},{"path":[4,76,2,8,4],"span":[1381,2,10]},{"path":[4,76,2,8,5],"span":[1381,11,16]},{"path":[4,76,2,8,1],"span":[1381,17,32]},{"path":[4,76,2,8,3],"span":[1381,35,36]},{"path":[4,76,2,9],"span":[1382,2,37]},{"path":[4,76,2,9,4],"span":[1382,2,10]},{"path":[4,76,2,9,5],"span":[1382,11,16]},{"path":[4,76,2,9,1],"span":[1382,17,31]},{"path":[4,76,2,9,3],"span":[1382,34,36]},{"path":[4,76,2,10],"span":[1383,2,39]},{"path":[4,76,2,10,4],"span":[1383,2,10]},{"path":[4,76,2,10,5],"span":[1383,11,15]},{"path":[4,76,2,10,1],"span":[1383,16,33]},{"path":[4,76,2,10,3],"span":[1383,36,38]},{"path":[4,76,2,11],"span":[1386,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,76,2,11,4],"span":[1386,2,10]},{"path":[4,76,2,11,5],"span":[1386,11,15]},{"path":[4,76,2,11,1],"span":[1386,16,32]},{"path":[4,76,2,11,3],"span":[1386,35,37]},{"path":[4,76,2,12],"span":[1387,2,38]},{"path":[4,76,2,12,4],"span":[1387,2,10]},{"path":[4,76,2,12,5],"span":[1387,11,15]},{"path":[4,76,2,12,1],"span":[1387,16,32]},{"path":[4,76,2,12,3],"span":[1387,35,37]},{"path":[4,76,2,13],"span":[1388,2,33]},{"path":[4,76,2,13,4],"span":[1388,2,10]},{"path":[4,76,2,13,5],"span":[1388,11,15]},{"path":[4,76,2,13,1],"span":[1388,16,27]},{"path":[4,76,2,13,3],"span":[1388,30,32]},{"path":[4,76,2,14],"span":[1389,2,39]},{"path":[4,76,2,14,4],"span":[1389,2,10]},{"path":[4,76,2,14,5],"span":[1389,11,16]},{"path":[4,76,2,14,1],"span":[1389,18,33]},{"path":[4,76,2,14,3],"span":[1389,36,38]},{"path":[4,76,2,15],"span":[1392,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,76,2,15,4],"span":[1392,2,10]},{"path":[4,76,2,15,5],"span":[1392,11,16]},{"path":[4,76,2,15,1],"span":[1392,17,28]},{"path":[4,76,2,15,3],"span":[1392,31,33]},{"path":[4,76,2,16],"span":[1393,2,37]},{"path":[4,76,2,16,4],"span":[1393,2,10]},{"path":[4,76,2,16,5],"span":[1393,11,17]},{"path":[4,76,2,16,1],"span":[1393,18,31]},{"path":[4,76,2,16,3],"span":[1393,34,36]},{"path":[4,76,2,17],"span":[1394,2,54]},{"path":[4,76,2,17,4],"span":[1394,2,10]},{"path":[4,76,2,17,5],"span":[1394,11,17]},{"path":[4,76,2,17,1],"span":[1394,18,48]},{"path":[4,76,2,17,3],"span":[1394,51,53]},{"path":[4,76,2,18],"span":[1397,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,76,2,18,4],"span":[1397,2,10]},{"path":[4,76,2,18,5],"span":[1397,11,17]},{"path":[4,76,2,18,1],"span":[1397,18,30]},{"path":[4,76,2,18,3],"span":[1397,33,35]},{"path":[4,76,2,19],"span":[1398,2,37]},{"path":[4,76,2,19,4],"span":[1398,2,10]},{"path":[4,76,2,19,5],"span":[1398,11,17]},{"path":[4,76,2,19,1],"span":[1398,18,31]},{"path":[4,76,2,19,3],"span":[1398,34,36]},{"path":[4,76,2,20],"span":[1399,2,37]},{"path":[4,76,2,20,4],"span":[1399,2,10]},{"path":[4,76,2,20,5],"span":[1399,11,17]},{"path":[4,76,2,20,1],"span":[1399,18,31]},{"path":[4,76,2,20,3],"span":[1399,34,36]},{"path":[4,76,2,21],"span":[1400,2,35]},{"path":[4,76,2,21,4],"span":[1400,2,10]},{"path":[4,76,2,21,5],"span":[1400,11,17]},{"path":[4,76,2,21,1],"span":[1400,18,29]},{"path":[4,76,2,21,3],"span":[1400,32,34]},{"path":[4,76,2,22],"span":[1401,2,40]},{"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,34]},{"path":[4,76,2,22,3],"span":[1401,37,39]},{"path":[4,76,2,23],"span":[1402,2,41]},{"path":[4,76,2,23,4],"span":[1402,2,10]},{"path":[4,76,2,23,5],"span":[1402,11,17]},{"path":[4,76,2,23,1],"span":[1402,18,35]},{"path":[4,76,2,23,3],"span":[1402,38,40]},{"path":[4,76,2,24],"span":[1403,2,37]},{"path":[4,76,2,24,4],"span":[1403,2,10]},{"path":[4,76,2,24,5],"span":[1403,11,17]},{"path":[4,76,2,24,1],"span":[1403,18,31]},{"path":[4,76,2,24,3],"span":[1403,34,36]},{"path":[4,76,2,25],"span":[1405,2,47]},{"path":[4,76,2,25,4],"span":[1405,2,10]},{"path":[4,76,2,25,5],"span":[1405,11,15]},{"path":[4,76,2,25,1],"span":[1405,16,41]},{"path":[4,76,2,25,3],"span":[1405,44,46]},{"path":[4,76,2,26],"span":[1406,2,41]},{"path":[4,76,2,26,4],"span":[1406,2,10]},{"path":[4,76,2,26,5],"span":[1406,11,15]},{"path":[4,76,2,26,1],"span":[1406,16,35]},{"path":[4,76,2,26,3],"span":[1406,38,40]},{"path":[4,77],"span":[1412,0,1434,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,77,1],"span":[1412,8,20]},{"path":[4,77,2,0],"span":[1413,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,77,2,0,4],"span":[1413,2,10]},{"path":[4,77,2,0,5],"span":[1413,16,22]},{"path":[4,77,2,0,1],"span":[1413,24,28]},{"path":[4,77,2,0,3],"span":[1413,34,35]},{"path":[4,77,2,1],"span":[1414,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,77,2,1,4],"span":[1414,2,10]},{"path":[4,77,2,1,5],"span":[1414,16,22]},{"path":[4,77,2,1,1],"span":[1414,24,30]},{"path":[4,77,2,1,3],"span":[1414,34,35]},{"path":[4,77,2,2],"span":[1415,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,77,2,2,4],"span":[1415,2,10]},{"path":[4,77,2,2,5],"span":[1415,16,22]},{"path":[4,77,2,2,1],"span":[1415,24,27]},{"path":[4,77,2,2,3],"span":[1415,34,35]},{"path":[4,77,2,3],"span":[1416,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,77,2,3,4],"span":[1416,2,10]},{"path":[4,77,2,3,6],"span":[1416,16,27]},{"path":[4,77,2,3,1],"span":[1416,32,44]},{"path":[4,77,2,3,3],"span":[1416,50,51]},{"path":[4,77,2,4],"span":[1417,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,77,2,4,4],"span":[1417,2,10]},{"path":[4,77,2,4,5],"span":[1417,16,22]},{"path":[4,77,2,4,1],"span":[1417,24,34]},{"path":[4,77,2,4,3],"span":[1417,42,43]},{"path":[4,77,2,5],"span":[1418,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,77,2,5,4],"span":[1418,2,10]},{"path":[4,77,2,5,5],"span":[1418,16,22]},{"path":[4,77,2,5,1],"span":[1418,24,36]},{"path":[4,77,2,5,3],"span":[1418,42,43]},{"path":[4,77,2,6],"span":[1419,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,77,2,6,4],"span":[1419,2,10]},{"path":[4,77,2,6,5],"span":[1419,16,22]},{"path":[4,77,2,6,1],"span":[1419,24,32]},{"path":[4,77,2,6,3],"span":[1419,42,43]},{"path":[4,77,2,7],"span":[1420,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,77,2,7,4],"span":[1420,2,10]},{"path":[4,77,2,7,5],"span":[1420,16,22]},{"path":[4,77,2,7,1],"span":[1420,24,33]},{"path":[4,77,2,7,3],"span":[1420,42,43]},{"path":[4,77,2,8],"span":[1421,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,77,2,8,4],"span":[1421,2,10]},{"path":[4,77,2,8,5],"span":[1421,16,22]},{"path":[4,77,2,8,1],"span":[1421,24,32]},{"path":[4,77,2,8,3],"span":[1421,42,43]},{"path":[4,77,2,9],"span":[1422,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,77,2,9,4],"span":[1422,2,10]},{"path":[4,77,2,9,5],"span":[1422,16,22]},{"path":[4,77,2,9,1],"span":[1422,24,34]},{"path":[4,77,2,9,3],"span":[1422,42,44]},{"path":[4,77,2,10],"span":[1423,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,77,2,10,4],"span":[1423,2,10]},{"path":[4,77,2,10,5],"span":[1423,16,22]},{"path":[4,77,2,10,1],"span":[1423,24,40]},{"path":[4,77,2,10,3],"span":[1423,50,52]},{"path":[4,77,2,11],"span":[1424,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,77,2,11,4],"span":[1424,2,10]},{"path":[4,77,2,11,5],"span":[1424,16,22]},{"path":[4,77,2,11,1],"span":[1424,24,34]},{"path":[4,77,2,11,3],"span":[1424,42,44]},{"path":[4,77,2,12],"span":[1425,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,77,2,12,4],"span":[1425,2,10]},{"path":[4,77,2,12,5],"span":[1425,16,22]},{"path":[4,77,2,12,1],"span":[1425,24,54]},{"path":[4,77,2,12,3],"span":[1425,58,60]},{"path":[4,77,2,13],"span":[1426,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,77,2,13,4],"span":[1426,2,10]},{"path":[4,77,2,13,5],"span":[1426,16,22]},{"path":[4,77,2,13,1],"span":[1426,24,36]},{"path":[4,77,2,13,3],"span":[1426,42,44]},{"path":[4,77,2,14],"span":[1427,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,77,2,14,4],"span":[1427,2,10]},{"path":[4,77,2,14,5],"span":[1427,16,22]},{"path":[4,77,2,14,1],"span":[1427,24,35]},{"path":[4,77,2,14,3],"span":[1427,42,44]},{"path":[4,77,2,15],"span":[1428,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,77,2,15,4],"span":[1428,2,10]},{"path":[4,77,2,15,5],"span":[1428,16,22]},{"path":[4,77,2,15,1],"span":[1428,24,40]},{"path":[4,77,2,15,3],"span":[1428,50,52]},{"path":[4,77,2,16],"span":[1429,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,77,2,16,4],"span":[1429,2,10]},{"path":[4,77,2,16,5],"span":[1429,16,21]},{"path":[4,77,2,16,1],"span":[1429,24,32]},{"path":[4,77,2,16,3],"span":[1429,42,44]},{"path":[4,77,2,17],"span":[1430,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,77,2,17,4],"span":[1430,2,10]},{"path":[4,77,2,17,5],"span":[1430,16,21]},{"path":[4,77,2,17,1],"span":[1430,24,41]},{"path":[4,77,2,17,3],"span":[1430,50,52]},{"path":[4,77,2,18],"span":[1431,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,77,2,18,4],"span":[1431,2,10]},{"path":[4,77,2,18,5],"span":[1431,16,21]},{"path":[4,77,2,18,1],"span":[1431,24,33]},{"path":[4,77,2,18,3],"span":[1431,42,44]},{"path":[4,77,2,19],"span":[1432,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,77,2,19,4],"span":[1432,2,10]},{"path":[4,77,2,19,5],"span":[1432,16,21]},{"path":[4,77,2,19,1],"span":[1432,24,38]},{"path":[4,77,2,19,3],"span":[1432,42,44]},{"path":[4,77,2,20],"span":[1433,2,52],"trailingComments":" \tMac\n"},{"path":[4,77,2,20,4],"span":[1433,2,10]},{"path":[4,77,2,20,5],"span":[1433,16,22]},{"path":[4,77,2,20,1],"span":[1433,24,46]},{"path":[4,77,2,20,3],"span":[1433,49,51]},{"path":[4,78],"span":[1439,0,1452,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,78,1],"span":[1439,8,19]},{"path":[4,78,2,0],"span":[1440,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,0,5],"span":[1440,2,8]},{"path":[4,78,2,0,1],"span":[1440,9,13]},{"path":[4,78,2,0,3],"span":[1440,16,17]},{"path":[4,78,2,1],"span":[1441,2,43],"trailingComments":" Windows\n"},{"path":[4,78,2,1,4],"span":[1441,2,10]},{"path":[4,78,2,1,5],"span":[1441,11,17]},{"path":[4,78,2,1,1],"span":[1441,24,38]},{"path":[4,78,2,1,3],"span":[1441,41,42]},{"path":[4,78,2,2],"span":[1442,2,37],"trailingComments":" Windows\n"},{"path":[4,78,2,2,4],"span":[1442,2,10]},{"path":[4,78,2,2,5],"span":[1442,11,15]},{"path":[4,78,2,2,1],"span":[1442,16,32]},{"path":[4,78,2,2,3],"span":[1442,35,36]},{"path":[4,78,2,3],"span":[1443,2,34],"trailingComments":" Windows\n"},{"path":[4,78,2,3,4],"span":[1443,2,10]},{"path":[4,78,2,3,5],"span":[1443,11,15]},{"path":[4,78,2,3,1],"span":[1443,16,29]},{"path":[4,78,2,3,3],"span":[1443,32,33]},{"path":[4,78,2,4],"span":[1444,2,37],"trailingComments":" Linux\n"},{"path":[4,78,2,4,4],"span":[1444,2,10]},{"path":[4,78,2,4,5],"span":[1444,11,17]},{"path":[4,78,2,4,1],"span":[1444,24,32]},{"path":[4,78,2,4,3],"span":[1444,35,36]},{"path":[4,78,2,5],"span":[1445,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,5,4],"span":[1445,2,10]},{"path":[4,78,2,5,5],"span":[1445,11,17]},{"path":[4,78,2,5,1],"span":[1445,24,36]},{"path":[4,78,2,5,3],"span":[1445,39,40]},{"path":[4,78,2,6],"span":[1446,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,6,4],"span":[1446,2,10]},{"path":[4,78,2,6,5],"span":[1446,11,17]},{"path":[4,78,2,6,1],"span":[1446,24,37]},{"path":[4,78,2,6,3],"span":[1446,40,41]},{"path":[4,78,2,7],"span":[1447,2,32],"trailingComments":" Windows\n"},{"path":[4,78,2,7,4],"span":[1447,2,10]},{"path":[4,78,2,7,5],"span":[1447,11,17]},{"path":[4,78,2,7,1],"span":[1447,24,27]},{"path":[4,78,2,7,3],"span":[1447,30,31]},{"path":[4,78,2,8],"span":[1448,2,33],"trailingComments":" Linux\n"},{"path":[4,78,2,8,4],"span":[1448,2,10]},{"path":[4,78,2,8,5],"span":[1448,11,17]},{"path":[4,78,2,8,1],"span":[1448,24,28]},{"path":[4,78,2,8,3],"span":[1448,31,32]},{"path":[4,78,2,9],"span":[1449,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,9,4],"span":[1449,2,10]},{"path":[4,78,2,9,5],"span":[1449,11,17]},{"path":[4,78,2,9,1],"span":[1449,24,31]},{"path":[4,78,2,9,3],"span":[1449,34,36]},{"path":[4,78,2,10],"span":[1451,2,41]},{"path":[4,78,2,10,4],"span":[1451,2,10]},{"path":[4,78,2,10,6],"span":[1451,11,28]},{"path":[4,78,2,10,1],"span":[1451,29,35]},{"path":[4,78,2,10,3],"span":[1451,38,40]},{"path":[4,79],"span":[1457,0,1462,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,79,1],"span":[1457,8,25]},{"path":[4,79,2,0],"span":[1458,2,40]},{"path":[4,79,2,0,4],"span":[1458,2,10]},{"path":[4,79,2,0,5],"span":[1458,11,17]},{"path":[4,79,2,0,1],"span":[1458,24,35]},{"path":[4,79,2,0,3],"span":[1458,38,39]},{"path":[4,79,2,1],"span":[1459,2,28]},{"path":[4,79,2,1,4],"span":[1459,2,10]},{"path":[4,79,2,1,5],"span":[1459,11,15]},{"path":[4,79,2,1,1],"span":[1459,16,23]},{"path":[4,79,2,1,3],"span":[1459,26,27]},{"path":[4,79,2,2],"span":[1460,2,32]},{"path":[4,79,2,2,4],"span":[1460,2,10]},{"path":[4,79,2,2,5],"span":[1460,11,17]},{"path":[4,79,2,2,1],"span":[1460,24,27]},{"path":[4,79,2,2,3],"span":[1460,30,31]},{"path":[4,79,2,3],"span":[1461,2,32]},{"path":[4,79,2,3,4],"span":[1461,2,10]},{"path":[4,79,2,3,6],"span":[1461,11,22]},{"path":[4,79,2,3,1],"span":[1461,23,27]},{"path":[4,79,2,3,3],"span":[1461,30,31]},{"path":[4,80],"span":[1467,0,1471,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,80,1],"span":[1467,8,14]},{"path":[4,80,2,0],"span":[1468,4,29]},{"path":[4,80,2,0,5],"span":[1468,4,9]},{"path":[4,80,2,0,1],"span":[1468,10,24]},{"path":[4,80,2,0,3],"span":[1468,27,28]},{"path":[4,80,2,1],"span":[1469,4,48]},{"path":[4,80,2,1,4],"span":[1469,4,12]},{"path":[4,80,2,1,6],"span":[1469,13,27]},{"path":[4,80,2,1,1],"span":[1469,28,43]},{"path":[4,80,2,1,3],"span":[1469,46,47]},{"path":[4,80,2,2],"span":[1470,4,42]},{"path":[4,80,2,2,4],"span":[1470,4,12]},{"path":[4,80,2,2,6],"span":[1470,13,24]},{"path":[4,80,2,2,1],"span":[1470,25,37]},{"path":[4,80,2,2,3],"span":[1470,40,41]},{"path":[4,81],"span":[1474,0,1497,1],"leadingComments":" MemoryEntry *"},{"path":[4,81,1],"span":[1474,8,22]},{"path":[4,81,2,0],"span":[1476,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,81,2,0,4],"span":[1476,4,12]},{"path":[4,81,2,0,5],"span":[1476,14,19]},{"path":[4,81,2,0,1],"span":[1476,20,24]},{"path":[4,81,2,0,3],"span":[1476,27,29]},{"path":[4,81,2,1],"span":[1477,4,40],"trailingComments":"\tLinux\n"},{"path":[4,81,2,1,4],"span":[1477,4,12]},{"path":[4,81,2,1,5],"span":[1477,13,19]},{"path":[4,81,2,1,1],"span":[1477,24,36]},{"path":[4,81,2,1,3],"span":[1477,38,39]},{"path":[4,81,2,2],"span":[1478,4,51],"trailingComments":"\tWindows\n"},{"path":[4,81,2,2,4],"span":[1478,4,12]},{"path":[4,81,2,2,5],"span":[1478,13,18]},{"path":[4,81,2,2,1],"span":[1478,24,46]},{"path":[4,81,2,2,3],"span":[1478,49,50]},{"path":[4,81,2,3],"span":[1479,4,46],"trailingComments":"\tWindows\n"},{"path":[4,81,2,3,4],"span":[1479,4,12]},{"path":[4,81,2,3,5],"span":[1479,13,18]},{"path":[4,81,2,3,1],"span":[1479,24,42]},{"path":[4,81,2,3,3],"span":[1479,44,45]},{"path":[4,81,2,4],"span":[1480,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,4,4],"span":[1480,4,12]},{"path":[4,81,2,4,5],"span":[1480,13,18]},{"path":[4,81,2,4,1],"span":[1480,24,34]},{"path":[4,81,2,4,3],"span":[1480,36,37]},{"path":[4,81,2,5],"span":[1481,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,5,4],"span":[1481,4,12]},{"path":[4,81,2,5,5],"span":[1481,13,19]},{"path":[4,81,2,5,1],"span":[1481,24,38]},{"path":[4,81,2,5,3],"span":[1481,40,41]},{"path":[4,81,2,6],"span":[1482,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,6,4],"span":[1482,4,12]},{"path":[4,81,2,6,6],"span":[1482,13,24]},{"path":[4,81,2,6,1],"span":[1482,32,43]},{"path":[4,81,2,6,3],"span":[1482,45,46]},{"path":[4,81,2,7],"span":[1483,4,49],"trailingComments":"\tWindows\n"},{"path":[4,81,2,7,4],"span":[1483,4,12]},{"path":[4,81,2,7,5],"span":[1483,13,18]},{"path":[4,81,2,7,1],"span":[1483,24,45]},{"path":[4,81,2,7,3],"span":[1483,47,48]},{"path":[4,81,2,8],"span":[1484,4,55],"trailingComments":"\tWindows\n"},{"path":[4,81,2,8,4],"span":[1484,4,12]},{"path":[4,81,2,8,6],"span":[1484,13,24]},{"path":[4,81,2,8,1],"span":[1484,32,51]},{"path":[4,81,2,8,3],"span":[1484,53,54]},{"path":[4,81,2,9],"span":[1485,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,9,4],"span":[1485,4,12]},{"path":[4,81,2,9,5],"span":[1485,13,19]},{"path":[4,81,2,9,1],"span":[1485,24,36]},{"path":[4,81,2,9,3],"span":[1485,38,39]},{"path":[4,81,2,10],"span":[1486,4,33],"trailingComments":"\tMac\n"},{"path":[4,81,2,10,4],"span":[1486,4,12]},{"path":[4,81,2,10,5],"span":[1486,13,19]},{"path":[4,81,2,10,1],"span":[1486,24,28]},{"path":[4,81,2,10,3],"span":[1486,30,32]},{"path":[4,81,2,11],"span":[1487,4,40],"trailingComments":"\tWindows\n"},{"path":[4,81,2,11,4],"span":[1487,4,12]},{"path":[4,81,2,11,5],"span":[1487,13,19]},{"path":[4,81,2,11,1],"span":[1487,24,35]},{"path":[4,81,2,11,3],"span":[1487,37,39]},{"path":[4,81,2,12],"span":[1488,4,44],"trailingComments":"\tWindows\n"},{"path":[4,81,2,12,4],"span":[1488,4,12]},{"path":[4,81,2,12,5],"span":[1488,13,18]},{"path":[4,81,2,12,1],"span":[1488,24,39]},{"path":[4,81,2,12,3],"span":[1488,41,43]},{"path":[4,81,2,13],"span":[1489,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,13,4],"span":[1489,4,12]},{"path":[4,81,2,13,5],"span":[1489,13,19]},{"path":[4,81,2,13,1],"span":[1489,24,37]},{"path":[4,81,2,13,3],"span":[1489,39,41]},{"path":[4,81,2,14],"span":[1490,4,32],"trailingComments":"\tLinux\n"},{"path":[4,81,2,14,4],"span":[1490,4,12]},{"path":[4,81,2,14,5],"span":[1490,13,19]},{"path":[4,81,2,14,1],"span":[1490,24,27]},{"path":[4,81,2,14,3],"span":[1490,29,31]},{"path":[4,81,2,15],"span":[1491,4,32],"trailingComments":"\tWindows\n"},{"path":[4,81,2,15,4],"span":[1491,4,12]},{"path":[4,81,2,15,5],"span":[1491,13,19]},{"path":[4,81,2,15,1],"span":[1491,24,27]},{"path":[4,81,2,15,3],"span":[1491,29,31]},{"path":[4,81,2,16],"span":[1492,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,81,2,16,4],"span":[1492,4,12]},{"path":[4,81,2,16,5],"span":[1492,13,18]},{"path":[4,81,2,16,1],"span":[1492,24,29]},{"path":[4,81,2,16,3],"span":[1492,31,33]},{"path":[4,81,2,17],"span":[1493,4,34],"trailingComments":"\tMac\n"},{"path":[4,81,2,17,4],"span":[1493,4,12]},{"path":[4,81,2,17,5],"span":[1493,13,19]},{"path":[4,81,2,17,1],"span":[1493,24,29]},{"path":[4,81,2,17,3],"span":[1493,31,33]},{"path":[4,81,2,18],"span":[1494,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,18,4],"span":[1494,4,12]},{"path":[4,81,2,18,5],"span":[1494,13,18]},{"path":[4,81,2,18,1],"span":[1494,24,35]},{"path":[4,81,2,18,3],"span":[1494,37,39]},{"path":[4,81,2,19],"span":[1495,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,81,2,19,4],"span":[1495,4,12]},{"path":[4,81,2,19,6],"span":[1495,13,24]},{"path":[4,81,2,19,1],"span":[1495,32,36]},{"path":[4,81,2,19,3],"span":[1495,38,40]},{"path":[4,81,2,20],"span":[1496,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,20,4],"span":[1496,4,12]},{"path":[4,81,2,20,6],"span":[1496,13,24]},{"path":[4,81,2,20,1],"span":[1496,32,43]},{"path":[4,81,2,20,3],"span":[1496,45,47]},{"path":[4,82],"span":[1501,0,1508,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,82,1],"span":[1501,8,19]},{"path":[4,82,2,0],"span":[1502,2,40],"trailingComments":"\tWindows\n"},{"path":[4,82,2,0,4],"span":[1502,2,10]},{"path":[4,82,2,0,5],"span":[1502,11,16]},{"path":[4,82,2,0,1],"span":[1502,24,36]},{"path":[4,82,2,0,3],"span":[1502,38,39]},{"path":[4,82,2,1],"span":[1503,2,36],"trailingComments":"\tWindows\n"},{"path":[4,82,2,1,4],"span":[1503,2,10]},{"path":[4,82,2,1,6],"span":[1503,11,22]},{"path":[4,82,2,1,1],"span":[1503,24,32]},{"path":[4,82,2,1,3],"span":[1503,34,35]},{"path":[4,82,2,2],"span":[1504,2,42],"trailingComments":"\tWindows\n"},{"path":[4,82,2,2,4],"span":[1504,2,10]},{"path":[4,82,2,2,5],"span":[1504,11,16]},{"path":[4,82,2,2,1],"span":[1504,24,38]},{"path":[4,82,2,2,3],"span":[1504,40,41]},{"path":[4,82,2,3],"span":[1505,2,51],"trailingComments":"\tWindows\n"},{"path":[4,82,2,3,4],"span":[1505,2,10]},{"path":[4,82,2,3,6],"span":[1505,11,22]},{"path":[4,82,2,3,1],"span":[1505,24,47]},{"path":[4,82,2,3,3],"span":[1505,49,50]},{"path":[4,82,2,4],"span":[1506,2,31],"trailingComments":"\tWindows\n"},{"path":[4,82,2,4,4],"span":[1506,2,10]},{"path":[4,82,2,4,5],"span":[1506,11,17]},{"path":[4,82,2,4,1],"span":[1506,24,27]},{"path":[4,82,2,4,3],"span":[1506,29,30]},{"path":[4,82,2,5],"span":[1507,2,31],"trailingComments":"\tWindows\n"},{"path":[4,82,2,5,4],"span":[1507,2,10]},{"path":[4,82,2,5,6],"span":[1507,11,22]},{"path":[4,82,2,5,1],"span":[1507,24,27]},{"path":[4,82,2,5,3],"span":[1507,29,30]},{"path":[4,83],"span":[1514,0,1523,1],"leadingComments":"\n ParallelPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-parallelport\n"},{"path":[4,83,1],"span":[1514,8,20]},{"path":[4,83,2,0],"span":[1515,2,30]},{"path":[4,83,2,0,4],"span":[1515,2,10]},{"path":[4,83,2,0,5],"span":[1515,11,17]},{"path":[4,83,2,0,1],"span":[1515,18,25]},{"path":[4,83,2,0,3],"span":[1515,28,29]},{"path":[4,83,2,1],"span":[1516,2,40]},{"path":[4,83,2,1,4],"span":[1516,2,10]},{"path":[4,83,2,1,6],"span":[1516,11,22]},{"path":[4,83,2,1,1],"span":[1516,23,35]},{"path":[4,83,2,1,3],"span":[1516,38,39]},{"path":[4,83,2,2],"span":[1517,2,46]},{"path":[4,83,2,2,4],"span":[1517,2,10]},{"path":[4,83,2,2,6],"span":[1517,11,22]},{"path":[4,83,2,2,1],"span":[1517,23,41]},{"path":[4,83,2,2,3],"span":[1517,44,45]},{"path":[4,83,2,3],"span":[1518,2,53]},{"path":[4,83,2,3,4],"span":[1518,2,10]},{"path":[4,83,2,3,6],"span":[1518,11,22]},{"path":[4,83,2,3,1],"span":[1518,23,48]},{"path":[4,83,2,3,3],"span":[1518,51,52]},{"path":[4,83,2,4],"span":[1519,2,36]},{"path":[4,83,2,4,4],"span":[1519,2,10]},{"path":[4,83,2,4,5],"span":[1519,11,17]},{"path":[4,83,2,4,1],"span":[1519,18,31]},{"path":[4,83,2,4,3],"span":[1519,34,35]},{"path":[4,83,2,5],"span":[1520,2,47]},{"path":[4,83,2,5,4],"span":[1520,2,10]},{"path":[4,83,2,5,5],"span":[1520,11,15]},{"path":[4,83,2,5,1],"span":[1520,16,42]},{"path":[4,83,2,5,3],"span":[1520,45,46]},{"path":[4,83,2,6],"span":[1521,2,39]},{"path":[4,83,2,6,4],"span":[1521,2,10]},{"path":[4,83,2,6,5],"span":[1521,11,15]},{"path":[4,83,2,6,1],"span":[1521,16,34]},{"path":[4,83,2,6,3],"span":[1521,37,38]},{"path":[4,83,2,7],"span":[1522,2,47]},{"path":[4,83,2,7,4],"span":[1522,2,10]},{"path":[4,83,2,7,5],"span":[1522,11,15]},{"path":[4,83,2,7,1],"span":[1522,16,42]},{"path":[4,83,2,7,3],"span":[1522,45,46]},{"path":[4,84],"span":[1529,0,1540,1],"leadingComments":"\n SerialPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-serialport\n"},{"path":[4,84,1],"span":[1529,8,18]},{"path":[4,84,2,0],"span":[1530,2,40]},{"path":[4,84,2,0,4],"span":[1530,2,10]},{"path":[4,84,2,0,6],"span":[1530,11,22]},{"path":[4,84,2,0,1],"span":[1530,23,35]},{"path":[4,84,2,0,3],"span":[1530,38,39]},{"path":[4,84,2,1],"span":[1531,2,27]},{"path":[4,84,2,1,4],"span":[1531,2,10]},{"path":[4,84,2,1,5],"span":[1531,11,15]},{"path":[4,84,2,1,1],"span":[1531,16,22]},{"path":[4,84,2,1,3],"span":[1531,25,26]},{"path":[4,84,2,2],"span":[1532,2,30]},{"path":[4,84,2,2,4],"span":[1532,2,10]},{"path":[4,84,2,2,5],"span":[1532,11,17]},{"path":[4,84,2,2,1],"span":[1532,18,25]},{"path":[4,84,2,2,3],"span":[1532,28,29]},{"path":[4,84,2,3],"span":[1533,2,32]},{"path":[4,84,2,3,4],"span":[1533,2,10]},{"path":[4,84,2,3,5],"span":[1533,11,17]},{"path":[4,84,2,3,1],"span":[1533,18,27]},{"path":[4,84,2,3,3],"span":[1533,30,31]},{"path":[4,84,2,4],"span":[1534,2,35]},{"path":[4,84,2,4,4],"span":[1534,2,10]},{"path":[4,84,2,4,5],"span":[1534,11,16]},{"path":[4,84,2,4,1],"span":[1534,17,30]},{"path":[4,84,2,4,3],"span":[1534,33,34]},{"path":[4,84,2,5],"span":[1535,2,47]},{"path":[4,84,2,5,4],"span":[1535,2,10]},{"path":[4,84,2,5,5],"span":[1535,11,16]},{"path":[4,84,2,5,1],"span":[1535,17,42]},{"path":[4,84,2,5,3],"span":[1535,45,46]},{"path":[4,84,2,6],"span":[1536,2,48]},{"path":[4,84,2,6,4],"span":[1536,2,10]},{"path":[4,84,2,6,5],"span":[1536,11,16]},{"path":[4,84,2,6,1],"span":[1536,17,43]},{"path":[4,84,2,6,3],"span":[1536,46,47]},{"path":[4,84,2,7],"span":[1537,2,39]},{"path":[4,84,2,7,4],"span":[1537,2,10]},{"path":[4,84,2,7,5],"span":[1537,11,15]},{"path":[4,84,2,7,1],"span":[1537,16,34]},{"path":[4,84,2,7,3],"span":[1537,37,38]},{"path":[4,84,2,8],"span":[1538,2,36]},{"path":[4,84,2,8,4],"span":[1538,2,10]},{"path":[4,84,2,8,5],"span":[1538,11,17]},{"path":[4,84,2,8,1],"span":[1538,18,31]},{"path":[4,84,2,8,3],"span":[1538,34,35]},{"path":[4,84,2,9],"span":[1539,2,37]},{"path":[4,84,2,9,4],"span":[1539,2,10]},{"path":[4,84,2,9,5],"span":[1539,11,17]},{"path":[4,84,2,9,1],"span":[1539,18,31]},{"path":[4,84,2,9,3],"span":[1539,34,36]},{"path":[4,85],"span":[1546,0,1553,1],"leadingComments":"\n PcmciaController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-pcmciacontroller\n"},{"path":[4,85,1],"span":[1546,8,24]},{"path":[4,85,2,0],"span":[1547,2,30]},{"path":[4,85,2,0,4],"span":[1547,2,10]},{"path":[4,85,2,0,5],"span":[1547,11,17]},{"path":[4,85,2,0,1],"span":[1547,18,25]},{"path":[4,85,2,0,3],"span":[1547,28,29]},{"path":[4,85,2,1],"span":[1548,2,46]},{"path":[4,85,2,1,4],"span":[1548,2,10]},{"path":[4,85,2,1,6],"span":[1548,11,22]},{"path":[4,85,2,1,1],"span":[1548,23,41]},{"path":[4,85,2,1,3],"span":[1548,44,45]},{"path":[4,85,2,2],"span":[1549,2,53]},{"path":[4,85,2,2,4],"span":[1549,2,10]},{"path":[4,85,2,2,6],"span":[1549,11,22]},{"path":[4,85,2,2,1],"span":[1549,23,48]},{"path":[4,85,2,2,3],"span":[1549,51,52]},{"path":[4,85,2,3],"span":[1550,2,47]},{"path":[4,85,2,3,4],"span":[1550,2,10]},{"path":[4,85,2,3,5],"span":[1550,11,15]},{"path":[4,85,2,3,1],"span":[1550,16,42]},{"path":[4,85,2,3,3],"span":[1550,45,46]},{"path":[4,85,2,4],"span":[1551,2,32]},{"path":[4,85,2,4,4],"span":[1551,2,10]},{"path":[4,85,2,4,5],"span":[1551,11,17]},{"path":[4,85,2,4,1],"span":[1551,18,27]},{"path":[4,85,2,4,3],"span":[1551,30,31]},{"path":[4,85,2,5],"span":[1552,2,35]},{"path":[4,85,2,5,4],"span":[1552,2,10]},{"path":[4,85,2,5,5],"span":[1552,11,17]},{"path":[4,85,2,5,1],"span":[1552,18,30]},{"path":[4,85,2,5,3],"span":[1552,33,34]},{"path":[4,86],"span":[1559,0,1565,1],"leadingComments":"\n PortConnector, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portconnector\n"},{"path":[4,86,1],"span":[1559,8,21]},{"path":[4,86,2,0],"span":[1560,2,42]},{"path":[4,86,2,0,4],"span":[1560,2,10]},{"path":[4,86,2,0,6],"span":[1560,11,22]},{"path":[4,86,2,0,1],"span":[1560,23,37]},{"path":[4,86,2,0,3],"span":[1560,40,41]},{"path":[4,86,2,1],"span":[1561,2,52]},{"path":[4,86,2,1,4],"span":[1561,2,10]},{"path":[4,86,2,1,5],"span":[1561,11,17]},{"path":[4,86,2,1,1],"span":[1561,18,47]},{"path":[4,86,2,1,3],"span":[1561,50,51]},{"path":[4,86,2,2],"span":[1562,2,52]},{"path":[4,86,2,2,4],"span":[1562,2,10]},{"path":[4,86,2,2,5],"span":[1562,11,17]},{"path":[4,86,2,2,1],"span":[1562,18,47]},{"path":[4,86,2,2,3],"span":[1562,50,51]},{"path":[4,86,2,3],"span":[1563,2,37]},{"path":[4,86,2,3,4],"span":[1563,2,10]},{"path":[4,86,2,3,6],"span":[1563,11,22]},{"path":[4,86,2,3,1],"span":[1563,23,32]},{"path":[4,86,2,3,3],"span":[1563,35,36]},{"path":[4,86,2,4],"span":[1564,2,26]},{"path":[4,86,2,4,4],"span":[1564,2,10]},{"path":[4,86,2,4,5],"span":[1564,11,17]},{"path":[4,86,2,4,1],"span":[1564,18,21]},{"path":[4,86,2,4,3],"span":[1564,24,25]},{"path":[4,87],"span":[1571,0,1578,1],"leadingComments":"\n ScsiController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-scsicontroller\n"},{"path":[4,87,1],"span":[1571,8,22]},{"path":[4,87,2,0],"span":[1572,2,40]},{"path":[4,87,2,0,4],"span":[1572,2,10]},{"path":[4,87,2,0,6],"span":[1572,11,22]},{"path":[4,87,2,0,1],"span":[1572,23,35]},{"path":[4,87,2,0,3],"span":[1572,38,39]},{"path":[4,87,2,1],"span":[1573,2,30]},{"path":[4,87,2,1,4],"span":[1573,2,10]},{"path":[4,87,2,1,5],"span":[1573,11,17]},{"path":[4,87,2,1,1],"span":[1573,18,25]},{"path":[4,87,2,1,3],"span":[1573,28,29]},{"path":[4,87,2,2],"span":[1574,2,32]},{"path":[4,87,2,2,4],"span":[1574,2,10]},{"path":[4,87,2,2,5],"span":[1574,11,17]},{"path":[4,87,2,2,1],"span":[1574,18,27]},{"path":[4,87,2,2,3],"span":[1574,30,31]},{"path":[4,87,2,3],"span":[1575,2,34]},{"path":[4,87,2,3,4],"span":[1575,2,10]},{"path":[4,87,2,3,5],"span":[1575,11,17]},{"path":[4,87,2,3,1],"span":[1575,18,29]},{"path":[4,87,2,3,3],"span":[1575,32,33]},{"path":[4,87,2,4],"span":[1576,2,35]},{"path":[4,87,2,4,4],"span":[1576,2,10]},{"path":[4,87,2,4,5],"span":[1576,11,17]},{"path":[4,87,2,4,1],"span":[1576,18,30]},{"path":[4,87,2,4,3],"span":[1576,33,34]},{"path":[4,87,2,5],"span":[1577,2,46]},{"path":[4,87,2,5,4],"span":[1577,2,10]},{"path":[4,87,2,5,6],"span":[1577,11,22]},{"path":[4,87,2,5,1],"span":[1577,23,41]},{"path":[4,87,2,5,3],"span":[1577,44,45]},{"path":[4,88],"span":[1584,0,1590,1],"leadingComments":"\n ComputerSystemProduct, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystemproduct\n"},{"path":[4,88,1],"span":[1584,8,29]},{"path":[4,88,2,0],"span":[1585,2,41]},{"path":[4,88,2,0,4],"span":[1585,2,10]},{"path":[4,88,2,0,5],"span":[1585,11,17]},{"path":[4,88,2,0,1],"span":[1585,18,36]},{"path":[4,88,2,0,3],"span":[1585,39,40]},{"path":[4,88,2,1],"span":[1586,2,27]},{"path":[4,88,2,1,4],"span":[1586,2,10]},{"path":[4,88,2,1,5],"span":[1586,11,17]},{"path":[4,88,2,1,1],"span":[1586,18,22]},{"path":[4,88,2,1,3],"span":[1586,25,26]},{"path":[4,88,2,2],"span":[1587,2,27]},{"path":[4,88,2,2,4],"span":[1587,2,10]},{"path":[4,88,2,2,5],"span":[1587,11,17]},{"path":[4,88,2,2,1],"span":[1587,18,22]},{"path":[4,88,2,2,3],"span":[1587,25,26]},{"path":[4,88,2,3],"span":[1588,2,29]},{"path":[4,88,2,3,4],"span":[1588,2,10]},{"path":[4,88,2,3,5],"span":[1588,11,17]},{"path":[4,88,2,3,1],"span":[1588,18,24]},{"path":[4,88,2,3,3],"span":[1588,27,28]},{"path":[4,88,2,4],"span":[1589,2,30]},{"path":[4,88,2,4,4],"span":[1589,2,10]},{"path":[4,88,2,4,5],"span":[1589,11,17]},{"path":[4,88,2,4,1],"span":[1589,18,25]},{"path":[4,88,2,4,3],"span":[1589,28,29]},{"path":[4,89],"span":[1596,0,1614,1],"leadingComments":"\n TrustedPlatformModule, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/secprov/win32-tpm\n"},{"path":[4,89,1],"span":[1596,8,29]},{"path":[4,89,2,0],"span":[1597,2,47]},{"path":[4,89,2,0,4],"span":[1597,2,10]},{"path":[4,89,2,0,5],"span":[1597,11,15]},{"path":[4,89,2,0,1],"span":[1597,16,42]},{"path":[4,89,2,0,3],"span":[1597,45,46]},{"path":[4,89,2,1],"span":[1598,2,45]},{"path":[4,89,2,1,4],"span":[1598,2,10]},{"path":[4,89,2,1,5],"span":[1598,11,15]},{"path":[4,89,2,1,1],"span":[1598,16,40]},{"path":[4,89,2,1,3],"span":[1598,43,44]},{"path":[4,89,2,2],"span":[1599,2,43]},{"path":[4,89,2,2,4],"span":[1599,2,10]},{"path":[4,89,2,2,5],"span":[1599,11,15]},{"path":[4,89,2,2,1],"span":[1599,16,38]},{"path":[4,89,2,2,3],"span":[1599,41,42]},{"path":[4,89,2,3],"span":[1600,2,35]},{"path":[4,89,2,3,4],"span":[1600,2,10]},{"path":[4,89,2,3,5],"span":[1600,11,17]},{"path":[4,89,2,3,1],"span":[1600,18,30]},{"path":[4,89,2,3,3],"span":[1600,33,34]},{"path":[4,89,2,4],"span":[1601,2,43]},{"path":[4,89,2,4,4],"span":[1601,2,10]},{"path":[4,89,2,4,5],"span":[1601,11,17]},{"path":[4,89,2,4,1],"span":[1601,18,38]},{"path":[4,89,2,4,3],"span":[1601,41,42]},{"path":[4,89,2,5],"span":[1602,2,48]},{"path":[4,89,2,5,4],"span":[1602,2,10]},{"path":[4,89,2,5,5],"span":[1602,11,17]},{"path":[4,89,2,5,1],"span":[1602,18,43]},{"path":[4,89,2,5,3],"span":[1602,46,47]},{"path":[4,89,2,6],"span":[1609,2,38],"leadingComments":"\n This integer value can be translated to a string value by interpreting each byte as an ASCII character.\n For example, an integer value of 1414548736 can be divided into these 4 bytes: 0x54, 0x50, 0x4D, and 0x00.\n Assuming the string is interpreted from left to right, this integer value translated to a string value of \"TPM\".\n"},{"path":[4,89,2,6,4],"span":[1609,2,10]},{"path":[4,89,2,6,5],"span":[1609,11,17]},{"path":[4,89,2,6,1],"span":[1609,18,33]},{"path":[4,89,2,6,3],"span":[1609,36,37]},{"path":[4,89,2,7],"span":[1611,2,50]},{"path":[4,89,2,7,4],"span":[1611,2,10]},{"path":[4,89,2,7,5],"span":[1611,11,17]},{"path":[4,89,2,7,1],"span":[1611,18,45]},{"path":[4,89,2,7,3],"span":[1611,48,49]},{"path":[4,89,2,8],"span":[1612,2,42]},{"path":[4,89,2,8,4],"span":[1612,2,10]},{"path":[4,89,2,8,5],"span":[1612,11,17]},{"path":[4,89,2,8,1],"span":[1612,18,37]},{"path":[4,89,2,8,3],"span":[1612,40,41]},{"path":[4,89,2,9],"span":[1613,2,54]},{"path":[4,89,2,9,4],"span":[1613,2,10]},{"path":[4,89,2,9,5],"span":[1613,11,17]},{"path":[4,89,2,9,1],"span":[1613,18,48]},{"path":[4,89,2,9,3],"span":[1613,51,53]},{"path":[4,90],"span":[1620,0,1625,1],"leadingComments":"\n ComputerConnectedUsbController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-usbcontroller\n"},{"path":[4,90,1],"span":[1620,8,38]},{"path":[4,90,2,0],"span":[1621,2,30]},{"path":[4,90,2,0,4],"span":[1621,2,10]},{"path":[4,90,2,0,5],"span":[1621,11,17]},{"path":[4,90,2,0,1],"span":[1621,18,25]},{"path":[4,90,2,0,3],"span":[1621,28,29]},{"path":[4,90,2,1],"span":[1622,2,32]},{"path":[4,90,2,1,4],"span":[1622,2,10]},{"path":[4,90,2,1,5],"span":[1622,11,17]},{"path":[4,90,2,1,1],"span":[1622,18,27]},{"path":[4,90,2,1,3],"span":[1622,30,31]},{"path":[4,90,2,2],"span":[1623,2,35]},{"path":[4,90,2,2,4],"span":[1623,2,10]},{"path":[4,90,2,2,5],"span":[1623,11,17]},{"path":[4,90,2,2,1],"span":[1623,18,30]},{"path":[4,90,2,2,3],"span":[1623,33,34]},{"path":[4,90,2,3],"span":[1624,2,46]},{"path":[4,90,2,3,4],"span":[1624,2,10]},{"path":[4,90,2,3,6],"span":[1624,11,22]},{"path":[4,90,2,3,1],"span":[1624,23,41]},{"path":[4,90,2,3,3],"span":[1624,44,45]},{"path":[4,91],"span":[1630,0,1634,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,91,1],"span":[1630,8,38]},{"path":[4,91,2,0],"span":[1631,2,24]},{"path":[4,91,2,0,5],"span":[1631,2,8]},{"path":[4,91,2,0,1],"span":[1631,9,19]},{"path":[4,91,2,0,3],"span":[1631,22,23]},{"path":[4,91,2,1],"span":[1632,2,26]},{"path":[4,91,2,1,5],"span":[1632,2,8]},{"path":[4,91,2,1,1],"span":[1632,9,21]},{"path":[4,91,2,1,3],"span":[1632,24,25]},{"path":[4,91,2,2],"span":[1633,2,26]},{"path":[4,91,2,2,5],"span":[1633,2,8]},{"path":[4,91,2,2,1],"span":[1633,9,21]},{"path":[4,91,2,2,3],"span":[1633,24,25]},{"path":[4,92],"span":[1639,0,1655,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,92,1],"span":[1639,8,30]},{"path":[4,92,2,0],"span":[1640,2,34]},{"path":[4,92,2,0,4],"span":[1640,2,10]},{"path":[4,92,2,0,5],"span":[1640,11,17]},{"path":[4,92,2,0,1],"span":[1640,18,29]},{"path":[4,92,2,0,3],"span":[1640,32,33]},{"path":[4,92,2,1],"span":[1641,2,30],"trailingComments":" mac: name\n"},{"path":[4,92,2,1,4],"span":[1641,2,10]},{"path":[4,92,2,1,5],"span":[1641,11,17]},{"path":[4,92,2,1,1],"span":[1641,18,25]},{"path":[4,92,2,1,3],"span":[1641,28,29]},{"path":[4,92,2,2],"span":[1642,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,92,2,2,4],"span":[1642,2,10]},{"path":[4,92,2,2,5],"span":[1642,11,17]},{"path":[4,92,2,2,1],"span":[1642,18,30]},{"path":[4,92,2,2,3],"span":[1642,33,34]},{"path":[4,92,2,3],"span":[1643,2,32]},{"path":[4,92,2,3,4],"span":[1643,2,10]},{"path":[4,92,2,3,5],"span":[1643,11,17]},{"path":[4,92,2,3,1],"span":[1643,18,27]},{"path":[4,92,2,3,3],"span":[1643,30,31]},{"path":[4,92,2,4],"span":[1644,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,92,2,4,4],"span":[1644,2,10]},{"path":[4,92,2,4,5],"span":[1644,11,17]},{"path":[4,92,2,4,1],"span":[1644,18,29]},{"path":[4,92,2,4,3],"span":[1644,32,33]},{"path":[4,92,2,5],"span":[1645,2,44]},{"path":[4,92,2,5,4],"span":[1645,2,10]},{"path":[4,92,2,5,5],"span":[1645,11,16]},{"path":[4,92,2,5,1],"span":[1645,17,39]},{"path":[4,92,2,5,3],"span":[1645,42,43]},{"path":[4,92,2,6],"span":[1646,2,50]},{"path":[4,92,2,6,4],"span":[1646,2,10]},{"path":[4,92,2,6,5],"span":[1646,11,16]},{"path":[4,92,2,6,1],"span":[1646,17,45]},{"path":[4,92,2,6,3],"span":[1646,48,49]},{"path":[4,92,2,7],"span":[1647,2,37]},{"path":[4,92,2,7,4],"span":[1647,2,10]},{"path":[4,92,2,7,5],"span":[1647,11,17]},{"path":[4,92,2,7,1],"span":[1647,18,32]},{"path":[4,92,2,7,3],"span":[1647,35,36]},{"path":[4,92,2,8],"span":[1648,2,40]},{"path":[4,92,2,8,4],"span":[1648,2,10]},{"path":[4,92,2,8,5],"span":[1648,11,17]},{"path":[4,92,2,8,1],"span":[1648,18,35]},{"path":[4,92,2,8,3],"span":[1648,38,39]},{"path":[4,92,2,9],"span":[1649,2,37]},{"path":[4,92,2,9,4],"span":[1649,2,10]},{"path":[4,92,2,9,5],"span":[1649,11,17]},{"path":[4,92,2,9,1],"span":[1649,18,31]},{"path":[4,92,2,9,3],"span":[1649,34,36]},{"path":[4,92,2,10],"span":[1651,2,34],"trailingComments":" mac only\n"},{"path":[4,92,2,10,4],"span":[1651,2,10]},{"path":[4,92,2,10,5],"span":[1651,11,17]},{"path":[4,92,2,10,1],"span":[1651,18,28]},{"path":[4,92,2,10,3],"span":[1651,31,33]},{"path":[4,92,2,11],"span":[1652,2,38],"trailingComments":" mac only\n"},{"path":[4,92,2,11,4],"span":[1652,2,10]},{"path":[4,92,2,11,5],"span":[1652,11,17]},{"path":[4,92,2,11,1],"span":[1652,18,32]},{"path":[4,92,2,11,3],"span":[1652,35,37]},{"path":[4,92,2,12],"span":[1653,2,29],"trailingComments":" mac only\n"},{"path":[4,92,2,12,4],"span":[1653,2,10]},{"path":[4,92,2,12,5],"span":[1653,11,17]},{"path":[4,92,2,12,1],"span":[1653,18,23]},{"path":[4,92,2,12,3],"span":[1653,26,28]},{"path":[4,92,2,13],"span":[1654,2,34],"trailingComments":" mac only\n"},{"path":[4,92,2,13,4],"span":[1654,2,10]},{"path":[4,92,2,13,5],"span":[1654,11,17]},{"path":[4,92,2,13,1],"span":[1654,18,28]},{"path":[4,92,2,13,3],"span":[1654,31,33]},{"path":[4,93],"span":[1660,0,1678,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,93,1],"span":[1660,8,32]},{"path":[4,93,2,0],"span":[1661,2,46]},{"path":[4,93,2,0,4],"span":[1661,2,10]},{"path":[4,93,2,0,5],"span":[1661,11,17]},{"path":[4,93,2,0,1],"span":[1661,18,41]},{"path":[4,93,2,0,3],"span":[1661,44,45]},{"path":[4,93,2,1],"span":[1662,2,30]},{"path":[4,93,2,1,4],"span":[1662,2,10]},{"path":[4,93,2,1,5],"span":[1662,11,17]},{"path":[4,93,2,1,1],"span":[1662,18,25]},{"path":[4,93,2,1,3],"span":[1662,28,29]},{"path":[4,93,2,2],"span":[1663,2,32]},{"path":[4,93,2,2,4],"span":[1663,2,10]},{"path":[4,93,2,2,5],"span":[1663,11,17]},{"path":[4,93,2,2,1],"span":[1663,18,27]},{"path":[4,93,2,2,3],"span":[1663,30,31]},{"path":[4,93,2,3],"span":[1664,2,31]},{"path":[4,93,2,3,4],"span":[1664,2,10]},{"path":[4,93,2,3,5],"span":[1664,11,17]},{"path":[4,93,2,3,1],"span":[1664,18,26]},{"path":[4,93,2,3,3],"span":[1664,29,30]},{"path":[4,93,2,4],"span":[1665,2,32]},{"path":[4,93,2,4,4],"span":[1665,2,10]},{"path":[4,93,2,4,5],"span":[1665,11,17]},{"path":[4,93,2,4,1],"span":[1665,18,27]},{"path":[4,93,2,4,3],"span":[1665,30,31]},{"path":[4,93,2,5],"span":[1666,2,42]},{"path":[4,93,2,5,4],"span":[1666,2,10]},{"path":[4,93,2,5,5],"span":[1666,11,17]},{"path":[4,93,2,5,1],"span":[1666,18,37]},{"path":[4,93,2,5,3],"span":[1666,40,41]},{"path":[4,93,2,6],"span":[1667,2,38]},{"path":[4,93,2,6,4],"span":[1667,2,10]},{"path":[4,93,2,6,5],"span":[1667,11,17]},{"path":[4,93,2,6,1],"span":[1667,18,33]},{"path":[4,93,2,6,3],"span":[1667,36,37]},{"path":[4,93,2,7],"span":[1668,2,34]},{"path":[4,93,2,7,4],"span":[1668,2,10]},{"path":[4,93,2,7,5],"span":[1668,11,17]},{"path":[4,93,2,7,1],"span":[1668,18,28]},{"path":[4,93,2,7,3],"span":[1668,31,33]},{"path":[4,93,2,8],"span":[1669,2,30]},{"path":[4,93,2,8,4],"span":[1669,2,10]},{"path":[4,93,2,8,5],"span":[1669,11,17]},{"path":[4,93,2,8,1],"span":[1669,18,24]},{"path":[4,93,2,8,3],"span":[1669,27,29]},{"path":[4,93,2,9],"span":[1670,2,31]},{"path":[4,93,2,9,4],"span":[1670,2,10]},{"path":[4,93,2,9,5],"span":[1670,11,17]},{"path":[4,93,2,9,1],"span":[1670,18,25]},{"path":[4,93,2,9,3],"span":[1670,28,30]},{"path":[4,93,2,10],"span":[1672,2,43]},{"path":[4,93,2,10,4],"span":[1672,2,10]},{"path":[4,93,2,10,5],"span":[1672,11,16]},{"path":[4,93,2,10,1],"span":[1672,17,38]},{"path":[4,93,2,10,3],"span":[1672,41,42]},{"path":[4,93,2,11],"span":[1673,2,42]},{"path":[4,93,2,11,4],"span":[1673,2,10]},{"path":[4,93,2,11,5],"span":[1673,11,16]},{"path":[4,93,2,11,1],"span":[1673,17,36]},{"path":[4,93,2,11,3],"span":[1673,39,41]},{"path":[4,93,2,12],"span":[1675,2,33]},{"path":[4,93,2,12,4],"span":[1675,2,10]},{"path":[4,93,2,12,5],"span":[1675,11,15]},{"path":[4,93,2,12,1],"span":[1675,16,27]},{"path":[4,93,2,12,3],"span":[1675,30,32]},{"path":[4,93,2,13],"span":[1676,2,27]},{"path":[4,93,2,13,4],"span":[1676,2,10]},{"path":[4,93,2,13,5],"span":[1676,11,15]},{"path":[4,93,2,13,1],"span":[1676,16,21]},{"path":[4,93,2,13,3],"span":[1676,24,26]},{"path":[4,93,2,14],"span":[1677,2,29]},{"path":[4,93,2,14,4],"span":[1677,2,10]},{"path":[4,93,2,14,5],"span":[1677,11,15]},{"path":[4,93,2,14,1],"span":[1677,16,23]},{"path":[4,93,2,14,3],"span":[1677,26,28]},{"path":[4,94],"span":[1683,0,1699,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,94,1],"span":[1683,8,34]},{"path":[4,94,2,0],"span":[1684,2,40]},{"path":[4,94,2,0,4],"span":[1684,2,10]},{"path":[4,94,2,0,6],"span":[1684,11,22]},{"path":[4,94,2,0,1],"span":[1684,23,35]},{"path":[4,94,2,0,3],"span":[1684,38,39]},{"path":[4,94,2,1],"span":[1685,2,40]},{"path":[4,94,2,1,4],"span":[1685,2,10]},{"path":[4,94,2,1,6],"span":[1685,11,22]},{"path":[4,94,2,1,1],"span":[1685,23,35]},{"path":[4,94,2,1,3],"span":[1685,38,39]},{"path":[4,94,2,2],"span":[1686,2,30]},{"path":[4,94,2,2,4],"span":[1686,2,10]},{"path":[4,94,2,2,5],"span":[1686,11,17]},{"path":[4,94,2,2,1],"span":[1686,18,25]},{"path":[4,94,2,2,3],"span":[1686,28,29]},{"path":[4,94,2,3],"span":[1687,2,32]},{"path":[4,94,2,3,4],"span":[1687,2,10]},{"path":[4,94,2,3,5],"span":[1687,11,15]},{"path":[4,94,2,3,1],"span":[1687,16,27]},{"path":[4,94,2,3,3],"span":[1687,30,31]},{"path":[4,94,2,4],"span":[1688,2,40]},{"path":[4,94,2,4,4],"span":[1688,2,10]},{"path":[4,94,2,4,5],"span":[1688,11,16]},{"path":[4,94,2,4,1],"span":[1688,17,35]},{"path":[4,94,2,4,3],"span":[1688,38,39]},{"path":[4,94,2,5],"span":[1689,2,32]},{"path":[4,94,2,5,4],"span":[1689,2,10]},{"path":[4,94,2,5,5],"span":[1689,11,17]},{"path":[4,94,2,5,1],"span":[1689,18,27]},{"path":[4,94,2,5,3],"span":[1689,30,31]},{"path":[4,94,2,6],"span":[1690,2,35]},{"path":[4,94,2,6,4],"span":[1690,2,10]},{"path":[4,94,2,6,5],"span":[1690,11,17]},{"path":[4,94,2,6,1],"span":[1690,18,30]},{"path":[4,94,2,6,3],"span":[1690,33,34]},{"path":[4,94,2,7],"span":[1691,2,36]},{"path":[4,94,2,7,4],"span":[1691,2,10]},{"path":[4,94,2,7,5],"span":[1691,11,16]},{"path":[4,94,2,7,1],"span":[1691,17,31]},{"path":[4,94,2,7,3],"span":[1691,34,35]},{"path":[4,94,2,8],"span":[1692,2,36]},{"path":[4,94,2,8,4],"span":[1692,2,10]},{"path":[4,94,2,8,5],"span":[1692,11,16]},{"path":[4,94,2,8,1],"span":[1692,17,31]},{"path":[4,94,2,8,3],"span":[1692,34,35]},{"path":[4,94,2,9],"span":[1693,2,42]},{"path":[4,94,2,9,4],"span":[1693,2,10]},{"path":[4,94,2,9,5],"span":[1693,11,16]},{"path":[4,94,2,9,1],"span":[1693,17,36]},{"path":[4,94,2,9,3],"span":[1693,39,41]},{"path":[4,94,2,10],"span":[1694,2,34]},{"path":[4,94,2,10,4],"span":[1694,2,10]},{"path":[4,94,2,10,5],"span":[1694,11,17]},{"path":[4,94,2,10,1],"span":[1694,18,28]},{"path":[4,94,2,10,3],"span":[1694,31,33]},{"path":[4,94,2,11],"span":[1695,2,37]},{"path":[4,94,2,11,4],"span":[1695,2,10]},{"path":[4,94,2,11,5],"span":[1695,11,16]},{"path":[4,94,2,11,1],"span":[1695,17,31]},{"path":[4,94,2,11,3],"span":[1695,34,36]},{"path":[4,94,2,12],"span":[1696,2,36]},{"path":[4,94,2,12,4],"span":[1696,2,10]},{"path":[4,94,2,12,5],"span":[1696,11,15]},{"path":[4,94,2,12,1],"span":[1696,16,30]},{"path":[4,94,2,12,3],"span":[1696,33,35]},{"path":[4,94,2,13],"span":[1697,2,48]},{"path":[4,94,2,13,4],"span":[1697,2,10]},{"path":[4,94,2,13,5],"span":[1697,11,16]},{"path":[4,94,2,13,1],"span":[1697,17,42]},{"path":[4,94,2,13,3],"span":[1697,45,47]},{"path":[4,94,2,14],"span":[1698,2,30]},{"path":[4,94,2,14,4],"span":[1698,2,10]},{"path":[4,94,2,14,5],"span":[1698,11,16]},{"path":[4,94,2,14,1],"span":[1698,17,24]},{"path":[4,94,2,14,3],"span":[1698,27,29]},{"path":[4,95],"span":[1704,0,1723,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,95,1],"span":[1704,8,30]},{"path":[4,95,2,0],"span":[1705,2,34]},{"path":[4,95,2,0,4],"span":[1705,2,10]},{"path":[4,95,2,0,5],"span":[1705,11,16]},{"path":[4,95,2,0,1],"span":[1705,17,29]},{"path":[4,95,2,0,3],"span":[1705,32,33]},{"path":[4,95,2,1],"span":[1706,2,32]},{"path":[4,95,2,1,4],"span":[1706,2,10]},{"path":[4,95,2,1,5],"span":[1706,11,15]},{"path":[4,95,2,1,1],"span":[1706,16,27]},{"path":[4,95,2,1,3],"span":[1706,30,31]},{"path":[4,95,2,2],"span":[1707,2,39]},{"path":[4,95,2,2,4],"span":[1707,2,10]},{"path":[4,95,2,2,5],"span":[1707,11,16]},{"path":[4,95,2,2,1],"span":[1707,17,34]},{"path":[4,95,2,2,3],"span":[1707,37,38]},{"path":[4,95,2,3],"span":[1708,2,38]},{"path":[4,95,2,3,4],"span":[1708,2,10]},{"path":[4,95,2,3,5],"span":[1708,11,15]},{"path":[4,95,2,3,1],"span":[1708,16,33]},{"path":[4,95,2,3,3],"span":[1708,36,37]},{"path":[4,95,2,4],"span":[1709,2,38]},{"path":[4,95,2,4,4],"span":[1709,2,10]},{"path":[4,95,2,4,5],"span":[1709,11,16]},{"path":[4,95,2,4,1],"span":[1709,17,33]},{"path":[4,95,2,4,3],"span":[1709,36,37]},{"path":[4,95,2,5],"span":[1710,2,34]},{"path":[4,95,2,5,4],"span":[1710,2,10]},{"path":[4,95,2,5,5],"span":[1710,11,16]},{"path":[4,95,2,5,1],"span":[1710,17,29]},{"path":[4,95,2,5,3],"span":[1710,32,33]},{"path":[4,95,2,6],"span":[1711,2,42]},{"path":[4,95,2,6,4],"span":[1711,2,10]},{"path":[4,95,2,6,5],"span":[1711,11,17]},{"path":[4,95,2,6,1],"span":[1711,18,37]},{"path":[4,95,2,6,3],"span":[1711,40,41]},{"path":[4,95,2,7],"span":[1712,2,37]},{"path":[4,95,2,7,4],"span":[1712,2,10]},{"path":[4,95,2,7,5],"span":[1712,11,16]},{"path":[4,95,2,7,1],"span":[1712,17,32]},{"path":[4,95,2,7,3],"span":[1712,35,36]},{"path":[4,95,2,8],"span":[1713,2,36]},{"path":[4,95,2,8,4],"span":[1713,2,10]},{"path":[4,95,2,8,5],"span":[1713,11,15]},{"path":[4,95,2,8,1],"span":[1713,16,31]},{"path":[4,95,2,8,3],"span":[1713,34,35]},{"path":[4,95,2,9],"span":[1714,2,28]},{"path":[4,95,2,9,4],"span":[1714,2,10]},{"path":[4,95,2,9,5],"span":[1714,11,17]},{"path":[4,95,2,9,1],"span":[1714,18,22]},{"path":[4,95,2,9,3],"span":[1714,25,27]},{"path":[4,95,2,10],"span":[1715,2,31]},{"path":[4,95,2,10,4],"span":[1715,2,10]},{"path":[4,95,2,10,5],"span":[1715,11,17]},{"path":[4,95,2,10,1],"span":[1715,18,25]},{"path":[4,95,2,10,3],"span":[1715,28,30]},{"path":[4,95,2,11],"span":[1716,2,40]},{"path":[4,95,2,11,4],"span":[1716,2,10]},{"path":[4,95,2,11,5],"span":[1716,11,15]},{"path":[4,95,2,11,1],"span":[1716,16,34]},{"path":[4,95,2,11,3],"span":[1716,37,39]},{"path":[4,95,2,12],"span":[1717,2,46]},{"path":[4,95,2,12,4],"span":[1717,2,10]},{"path":[4,95,2,12,5],"span":[1717,11,17]},{"path":[4,95,2,12,1],"span":[1717,18,40]},{"path":[4,95,2,12,3],"span":[1717,43,45]},{"path":[4,95,2,13],"span":[1718,2,40]},{"path":[4,95,2,13,4],"span":[1718,2,10]},{"path":[4,95,2,13,5],"span":[1718,11,15]},{"path":[4,95,2,13,1],"span":[1718,16,34]},{"path":[4,95,2,13,3],"span":[1718,37,39]},{"path":[4,95,2,14],"span":[1719,2,41]},{"path":[4,95,2,14,4],"span":[1719,2,10]},{"path":[4,95,2,14,5],"span":[1719,11,16]},{"path":[4,95,2,14,1],"span":[1719,17,35]},{"path":[4,95,2,14,3],"span":[1719,38,40]},{"path":[4,95,2,15],"span":[1720,2,33]},{"path":[4,95,2,15,4],"span":[1720,2,10]},{"path":[4,95,2,15,5],"span":[1720,11,17]},{"path":[4,95,2,15,1],"span":[1720,18,27]},{"path":[4,95,2,15,3],"span":[1720,30,32]},{"path":[4,95,2,16],"span":[1721,2,41]},{"path":[4,95,2,16,4],"span":[1721,2,10]},{"path":[4,95,2,16,5],"span":[1721,11,15]},{"path":[4,95,2,16,1],"span":[1721,16,35]},{"path":[4,95,2,16,3],"span":[1721,38,40]},{"path":[4,95,2,17],"span":[1722,2,37]},{"path":[4,95,2,17,4],"span":[1722,2,10]},{"path":[4,95,2,17,5],"span":[1722,11,15]},{"path":[4,95,2,17,1],"span":[1722,16,31]},{"path":[4,95,2,17,3],"span":[1722,34,36]},{"path":[4,96],"span":[1728,0,1739,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,96,1],"span":[1728,8,30]},{"path":[4,96,2,0],"span":[1729,2,34]},{"path":[4,96,2,0,4],"span":[1729,2,10]},{"path":[4,96,2,0,5],"span":[1729,11,16]},{"path":[4,96,2,0,1],"span":[1729,17,29]},{"path":[4,96,2,0,3],"span":[1729,32,33]},{"path":[4,96,2,1],"span":[1730,2,30]},{"path":[4,96,2,1,4],"span":[1730,2,10]},{"path":[4,96,2,1,5],"span":[1730,11,17]},{"path":[4,96,2,1,1],"span":[1730,18,25]},{"path":[4,96,2,1,3],"span":[1730,28,29]},{"path":[4,96,2,2],"span":[1731,2,34]},{"path":[4,96,2,2,4],"span":[1731,2,10]},{"path":[4,96,2,2,5],"span":[1731,11,17]},{"path":[4,96,2,2,1],"span":[1731,18,29]},{"path":[4,96,2,2,3],"span":[1731,32,33]},{"path":[4,96,2,3],"span":[1732,2,35]},{"path":[4,96,2,3,4],"span":[1732,2,10]},{"path":[4,96,2,3,5],"span":[1732,11,16]},{"path":[4,96,2,3,1],"span":[1732,17,30]},{"path":[4,96,2,3,3],"span":[1732,33,34]},{"path":[4,96,2,4],"span":[1733,2,39]},{"path":[4,96,2,4,4],"span":[1733,2,10]},{"path":[4,96,2,4,5],"span":[1733,11,16]},{"path":[4,96,2,4,1],"span":[1733,17,34]},{"path":[4,96,2,4,3],"span":[1733,37,38]},{"path":[4,96,2,5],"span":[1734,2,37]},{"path":[4,96,2,5,4],"span":[1734,2,10]},{"path":[4,96,2,5,5],"span":[1734,11,17]},{"path":[4,96,2,5,1],"span":[1734,18,32]},{"path":[4,96,2,5,3],"span":[1734,35,36]},{"path":[4,96,2,6],"span":[1735,2,32]},{"path":[4,96,2,6,4],"span":[1735,2,10]},{"path":[4,96,2,6,5],"span":[1735,11,16]},{"path":[4,96,2,6,1],"span":[1735,17,27]},{"path":[4,96,2,6,3],"span":[1735,30,31]},{"path":[4,96,2,7],"span":[1736,2,33]},{"path":[4,96,2,7,4],"span":[1736,2,10]},{"path":[4,96,2,7,5],"span":[1736,11,16]},{"path":[4,96,2,7,1],"span":[1736,17,28]},{"path":[4,96,2,7,3],"span":[1736,31,32]},{"path":[4,96,2,8],"span":[1737,2,32]},{"path":[4,96,2,8,4],"span":[1737,2,10]},{"path":[4,96,2,8,5],"span":[1737,11,16]},{"path":[4,96,2,8,1],"span":[1737,17,27]},{"path":[4,96,2,8,3],"span":[1737,30,31]},{"path":[4,96,2,9],"span":[1738,2,44]},{"path":[4,96,2,9,4],"span":[1738,2,10]},{"path":[4,96,2,9,5],"span":[1738,11,16]},{"path":[4,96,2,9,1],"span":[1738,17,38]},{"path":[4,96,2,9,3],"span":[1738,41,43]},{"path":[4,97],"span":[1745,0,1756,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,97,1],"span":[1745,8,40]},{"path":[4,97,2,0],"span":[1746,2,36]},{"path":[4,97,2,0,4],"span":[1746,2,10]},{"path":[4,97,2,0,5],"span":[1746,11,16]},{"path":[4,97,2,0,1],"span":[1746,17,31]},{"path":[4,97,2,0,3],"span":[1746,34,35]},{"path":[4,97,2,1],"span":[1747,2,30]},{"path":[4,97,2,1,4],"span":[1747,2,10]},{"path":[4,97,2,1,5],"span":[1747,11,17]},{"path":[4,97,2,1,1],"span":[1747,18,25]},{"path":[4,97,2,1,3],"span":[1747,28,29]},{"path":[4,97,2,2],"span":[1748,2,34]},{"path":[4,97,2,2,4],"span":[1748,2,10]},{"path":[4,97,2,2,5],"span":[1748,11,16]},{"path":[4,97,2,2,1],"span":[1748,17,29]},{"path":[4,97,2,2,3],"span":[1748,32,33]},{"path":[4,97,2,3],"span":[1749,2,53]},{"path":[4,97,2,3,4],"span":[1749,2,10]},{"path":[4,97,2,3,5],"span":[1749,11,16]},{"path":[4,97,2,3,1],"span":[1749,17,48]},{"path":[4,97,2,3,3],"span":[1749,51,52]},{"path":[4,97,2,4],"span":[1750,2,42]},{"path":[4,97,2,4,4],"span":[1750,2,10]},{"path":[4,97,2,4,5],"span":[1750,11,16]},{"path":[4,97,2,4,1],"span":[1750,17,37]},{"path":[4,97,2,4,3],"span":[1750,40,41]},{"path":[4,97,2,5],"span":[1751,2,43]},{"path":[4,97,2,5,4],"span":[1751,2,10]},{"path":[4,97,2,5,5],"span":[1751,11,16]},{"path":[4,97,2,5,1],"span":[1751,17,38]},{"path":[4,97,2,5,3],"span":[1751,41,42]},{"path":[4,97,2,6],"span":[1752,2,27]},{"path":[4,97,2,6,4],"span":[1752,2,10]},{"path":[4,97,2,6,5],"span":[1752,11,17]},{"path":[4,97,2,6,1],"span":[1752,18,22]},{"path":[4,97,2,6,3],"span":[1752,25,26]},{"path":[4,97,2,7],"span":[1753,2,34]},{"path":[4,97,2,7,4],"span":[1753,2,10]},{"path":[4,97,2,7,5],"span":[1753,11,16]},{"path":[4,97,2,7,1],"span":[1753,17,29]},{"path":[4,97,2,7,3],"span":[1753,32,33]},{"path":[4,97,2,8],"span":[1754,2,41]},{"path":[4,97,2,8,4],"span":[1754,2,10]},{"path":[4,97,2,8,5],"span":[1754,11,16]},{"path":[4,97,2,8,1],"span":[1754,17,36]},{"path":[4,97,2,8,3],"span":[1754,39,40]},{"path":[4,97,2,9],"span":[1755,2,34]},{"path":[4,97,2,9,4],"span":[1755,2,10]},{"path":[4,97,2,9,5],"span":[1755,11,17]},{"path":[4,97,2,9,1],"span":[1755,18,28]},{"path":[4,97,2,9,3],"span":[1755,31,33]},{"path":[4,98],"span":[1761,0,1766,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,98,1],"span":[1761,8,36]},{"path":[4,98,2,0],"span":[1762,2,30]},{"path":[4,98,2,0,4],"span":[1762,2,10]},{"path":[4,98,2,0,5],"span":[1762,11,17]},{"path":[4,98,2,0,1],"span":[1762,18,25]},{"path":[4,98,2,0,3],"span":[1762,28,29]},{"path":[4,98,2,1],"span":[1763,2,34]},{"path":[4,98,2,1,4],"span":[1763,2,10]},{"path":[4,98,2,1,5],"span":[1763,11,17]},{"path":[4,98,2,1,1],"span":[1763,18,29]},{"path":[4,98,2,1,3],"span":[1763,32,33]},{"path":[4,98,2,2],"span":[1764,2,35]},{"path":[4,98,2,2,4],"span":[1764,2,10]},{"path":[4,98,2,2,5],"span":[1764,11,17]},{"path":[4,98,2,2,1],"span":[1764,18,30]},{"path":[4,98,2,2,3],"span":[1764,33,34]},{"path":[4,98,2,3],"span":[1765,2,27]},{"path":[4,98,2,3,4],"span":[1765,2,10]},{"path":[4,98,2,3,5],"span":[1765,11,17]},{"path":[4,98,2,3,1],"span":[1765,18,22]},{"path":[4,98,2,3,3],"span":[1765,25,26]},{"path":[4,99],"span":[1773,0,1778,1],"leadingComments":"\n Computer Windows only: from WindowsIdeController.\n WMI mappings from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-idecontroller\n"},{"path":[4,99,1],"span":[1773,8,36]},{"path":[4,99,2,0],"span":[1774,2,30]},{"path":[4,99,2,0,4],"span":[1774,2,10]},{"path":[4,99,2,0,5],"span":[1774,11,17]},{"path":[4,99,2,0,1],"span":[1774,18,25]},{"path":[4,99,2,0,3],"span":[1774,28,29]},{"path":[4,99,2,1],"span":[1775,2,32]},{"path":[4,99,2,1,4],"span":[1775,2,10]},{"path":[4,99,2,1,5],"span":[1775,11,17]},{"path":[4,99,2,1,1],"span":[1775,18,27]},{"path":[4,99,2,1,3],"span":[1775,30,31]},{"path":[4,99,2,2],"span":[1776,2,35]},{"path":[4,99,2,2,4],"span":[1776,2,10]},{"path":[4,99,2,2,5],"span":[1776,11,17]},{"path":[4,99,2,2,1],"span":[1776,18,30]},{"path":[4,99,2,2,3],"span":[1776,33,34]},{"path":[4,99,2,3],"span":[1777,2,46]},{"path":[4,99,2,3,4],"span":[1777,2,10]},{"path":[4,99,2,3,6],"span":[1777,11,22]},{"path":[4,99,2,3,1],"span":[1777,23,41]},{"path":[4,99,2,3,3],"span":[1777,44,45]},{"path":[4,100],"span":[1784,0,1796,1],"leadingComments":"\n Computer Windows only: from WindowsDiskPartition.\n As per spec: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-diskpartition\n"},{"path":[4,100,1],"span":[1784,8,36]},{"path":[4,100,2,0],"span":[1785,2,32]},{"path":[4,100,2,0,4],"span":[1785,2,10]},{"path":[4,100,2,0,5],"span":[1785,11,16]},{"path":[4,100,2,0,1],"span":[1785,17,27]},{"path":[4,100,2,0,3],"span":[1785,30,31]},{"path":[4,100,2,1],"span":[1786,2,29]},{"path":[4,100,2,1,4],"span":[1786,2,10]},{"path":[4,100,2,1,5],"span":[1786,11,15]},{"path":[4,100,2,1,1],"span":[1786,16,24]},{"path":[4,100,2,1,3],"span":[1786,27,28]},{"path":[4,100,2,2],"span":[1787,2,35]},{"path":[4,100,2,2,4],"span":[1787,2,10]},{"path":[4,100,2,2,5],"span":[1787,11,15]},{"path":[4,100,2,2,1],"span":[1787,16,30]},{"path":[4,100,2,2,3],"span":[1787,33,34]},{"path":[4,100,2,3],"span":[1788,2,32]},{"path":[4,100,2,3,4],"span":[1788,2,10]},{"path":[4,100,2,3,5],"span":[1788,11,17]},{"path":[4,100,2,3,1],"span":[1788,18,27]},{"path":[4,100,2,3,3],"span":[1788,30,31]},{"path":[4,100,2,4],"span":[1789,2,32]},{"path":[4,100,2,4,4],"span":[1789,2,10]},{"path":[4,100,2,4,5],"span":[1789,11,16]},{"path":[4,100,2,4,1],"span":[1789,17,27]},{"path":[4,100,2,4,3],"span":[1789,30,31]},{"path":[4,100,2,5],"span":[1790,2,27]},{"path":[4,100,2,5,4],"span":[1790,2,10]},{"path":[4,100,2,5,5],"span":[1790,11,16]},{"path":[4,100,2,5,1],"span":[1790,17,22]},{"path":[4,100,2,5,3],"span":[1790,25,26]},{"path":[4,100,2,6],"span":[1791,2,38]},{"path":[4,100,2,6,4],"span":[1791,2,10]},{"path":[4,100,2,6,5],"span":[1791,11,16]},{"path":[4,100,2,6,1],"span":[1791,17,33]},{"path":[4,100,2,6,3],"span":[1791,36,37]},{"path":[4,100,2,7],"span":[1792,2,38]},{"path":[4,100,2,7,4],"span":[1792,2,10]},{"path":[4,100,2,7,5],"span":[1792,11,15]},{"path":[4,100,2,7,1],"span":[1792,16,33]},{"path":[4,100,2,7,3],"span":[1792,36,37]},{"path":[4,100,2,8],"span":[1793,2,26]},{"path":[4,100,2,8,4],"span":[1793,2,10]},{"path":[4,100,2,8,5],"span":[1793,11,16]},{"path":[4,100,2,8,1],"span":[1793,17,21]},{"path":[4,100,2,8,3],"span":[1793,24,25]},{"path":[4,100,2,9],"span":[1794,2,38]},{"path":[4,100,2,9,4],"span":[1794,2,10]},{"path":[4,100,2,9,5],"span":[1794,11,16]},{"path":[4,100,2,9,1],"span":[1794,17,32]},{"path":[4,100,2,9,3],"span":[1794,35,37]},{"path":[4,100,2,10],"span":[1795,2,28]},{"path":[4,100,2,10,4],"span":[1795,2,10]},{"path":[4,100,2,10,5],"span":[1795,11,17]},{"path":[4,100,2,10,1],"span":[1795,18,22]},{"path":[4,100,2,10,3],"span":[1795,25,27]},{"path":[4,101],"span":[1803,0,1815,1],"leadingComments":"\n PortableBattery, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portablebattery\n"},{"path":[4,101,1],"span":[1803,8,23]},{"path":[4,101,2,0],"span":[1804,2,41]},{"path":[4,101,2,0,4],"span":[1804,2,10]},{"path":[4,101,2,0,5],"span":[1804,11,16]},{"path":[4,101,2,0,1],"span":[1804,17,36]},{"path":[4,101,2,0,3],"span":[1804,39,40]},{"path":[4,101,2,1],"span":[1805,2,37]},{"path":[4,101,2,1,4],"span":[1805,2,10]},{"path":[4,101,2,1,6],"span":[1805,11,22]},{"path":[4,101,2,1,1],"span":[1805,23,32]},{"path":[4,101,2,1,3],"span":[1805,35,36]},{"path":[4,101,2,2],"span":[1806,2,37]},{"path":[4,101,2,2,4],"span":[1806,2,10]},{"path":[4,101,2,2,5],"span":[1806,11,16]},{"path":[4,101,2,2,1],"span":[1806,17,32]},{"path":[4,101,2,2,3],"span":[1806,35,36]},{"path":[4,101,2,3],"span":[1807,2,36]},{"path":[4,101,2,3,4],"span":[1807,2,10]},{"path":[4,101,2,3,5],"span":[1807,11,16]},{"path":[4,101,2,3,1],"span":[1807,17,31]},{"path":[4,101,2,3,3],"span":[1807,34,35]},{"path":[4,101,2,4],"span":[1808,2,32]},{"path":[4,101,2,4,4],"span":[1808,2,10]},{"path":[4,101,2,4,5],"span":[1808,11,17]},{"path":[4,101,2,4,1],"span":[1808,18,27]},{"path":[4,101,2,4,3],"span":[1808,30,31]},{"path":[4,101,2,5],"span":[1809,2,31]},{"path":[4,101,2,5,4],"span":[1809,2,10]},{"path":[4,101,2,5,5],"span":[1809,11,17]},{"path":[4,101,2,5,1],"span":[1809,18,26]},{"path":[4,101,2,5,3],"span":[1809,29,30]},{"path":[4,101,2,6],"span":[1810,2,39]},{"path":[4,101,2,6,4],"span":[1810,2,10]},{"path":[4,101,2,6,5],"span":[1810,11,17]},{"path":[4,101,2,6,1],"span":[1810,18,34]},{"path":[4,101,2,6,3],"span":[1810,37,38]},{"path":[4,101,2,7],"span":[1811,2,35]},{"path":[4,101,2,7,4],"span":[1811,2,10]},{"path":[4,101,2,7,5],"span":[1811,11,17]},{"path":[4,101,2,7,1],"span":[1811,18,30]},{"path":[4,101,2,7,3],"span":[1811,33,34]},{"path":[4,101,2,8],"span":[1812,2,39]},{"path":[4,101,2,8,4],"span":[1812,2,10]},{"path":[4,101,2,8,5],"span":[1812,11,16]},{"path":[4,101,2,8,1],"span":[1812,17,34]},{"path":[4,101,2,8,3],"span":[1812,37,38]},{"path":[4,101,2,9],"span":[1813,2,28]},{"path":[4,101,2,9,4],"span":[1813,2,10]},{"path":[4,101,2,9,5],"span":[1813,11,17]},{"path":[4,101,2,9,1],"span":[1813,18,22]},{"path":[4,101,2,9,3],"span":[1813,25,27]},{"path":[4,101,2,10],"span":[1814,2,45]},{"path":[4,101,2,10,4],"span":[1814,2,10]},{"path":[4,101,2,10,5],"span":[1814,11,17]},{"path":[4,101,2,10,1],"span":[1814,18,39]},{"path":[4,101,2,10,3],"span":[1814,42,44]},{"path":[4,102],"span":[1824,0,1827,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,102,1],"span":[1824,8,19]},{"path":[4,102,2,0],"span":[1825,2,18]},{"path":[4,102,2,0,5],"span":[1825,2,7]},{"path":[4,102,2,0,1],"span":[1825,8,13]},{"path":[4,102,2,0,3],"span":[1825,16,17]},{"path":[4,102,2,1],"span":[1826,2,27]},{"path":[4,102,2,1,4],"span":[1826,2,10]},{"path":[4,102,2,1,5],"span":[1826,11,17]},{"path":[4,102,2,1,1],"span":[1826,18,22]},{"path":[4,102,2,1,3],"span":[1826,25,26]},{"path":[4,103],"span":[1830,0,1833,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,103,1],"span":[1830,8,24]},{"path":[4,103,2,0],"span":[1831,2,42]},{"path":[4,103,2,0,6],"span":[1831,2,27]},{"path":[4,103,2,0,1],"span":[1831,28,37]},{"path":[4,103,2,0,3],"span":[1831,40,41]},{"path":[4,103,2,1],"span":[1832,2,31]},{"path":[4,103,2,1,4],"span":[1832,2,10]},{"path":[4,103,2,1,6],"span":[1832,11,18]},{"path":[4,103,2,1,1],"span":[1832,19,26]},{"path":[4,103,2,1,3],"span":[1832,29,30]},{"path":[4,104],"span":[1837,0,1858,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,104,1],"span":[1837,8,15]},{"path":[4,104,2,0],"span":[1839,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,104,2,0,4],"span":[1839,2,10]},{"path":[4,104,2,0,5],"span":[1839,11,16]},{"path":[4,104,2,0,1],"span":[1839,17,19]},{"path":[4,104,2,0,3],"span":[1839,22,23]},{"path":[4,104,2,1],"span":[1842,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,104,2,1,4],"span":[1842,2,10]},{"path":[4,104,2,1,5],"span":[1842,11,16]},{"path":[4,104,2,1,1],"span":[1842,17,24]},{"path":[4,104,2,1,3],"span":[1842,27,28]},{"path":[4,104,2,2],"span":[1844,2,23]},{"path":[4,104,2,2,5],"span":[1844,2,8]},{"path":[4,104,2,2,1],"span":[1844,9,18]},{"path":[4,104,2,2,3],"span":[1844,21,22]},{"path":[4,104,2,3],"span":[1845,2,24]},{"path":[4,104,2,3,5],"span":[1845,2,8]},{"path":[4,104,2,3,1],"span":[1845,9,19]},{"path":[4,104,2,3,3],"span":[1845,22,23]},{"path":[4,104,2,4],"span":[1847,2,36]},{"path":[4,104,2,4,4],"span":[1847,2,10]},{"path":[4,104,2,4,5],"span":[1847,11,17]},{"path":[4,104,2,4,1],"span":[1847,18,31]},{"path":[4,104,2,4,3],"span":[1847,34,35]},{"path":[4,104,2,5],"span":[1848,2,50]},{"path":[4,104,2,5,6],"span":[1848,2,27]},{"path":[4,104,2,5,1],"span":[1848,28,45]},{"path":[4,104,2,5,3],"span":[1848,48,49]},{"path":[4,104,8,0],"span":[1850,2,1852,3]},{"path":[4,104,8,0,1],"span":[1850,8,12]},{"path":[4,104,2,6],"span":[1851,4,36]},{"path":[4,104,2,6,6],"span":[1851,4,22]},{"path":[4,104,2,6,1],"span":[1851,23,30]},{"path":[4,104,2,6,3],"span":[1851,33,35]},{"path":[4,104,2,7],"span":[1855,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,104,2,7,4],"span":[1855,2,10]},{"path":[4,104,2,7,6],"span":[1855,11,23]},{"path":[4,104,2,7,1],"span":[1855,24,37]},{"path":[4,104,2,7,3],"span":[1855,40,42]},{"path":[4,104,2,8],"span":[1857,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,104,2,8,4],"span":[1857,2,10]},{"path":[4,104,2,8,6],"span":[1857,11,25]},{"path":[4,104,2,8,1],"span":[1857,26,41]},{"path":[4,104,2,8,3],"span":[1857,44,46]},{"path":[4,105],"span":[1860,0,1869,1]},{"path":[4,105,1],"span":[1860,8,26]},{"path":[4,105,2,0],"span":[1861,2,19]},{"path":[4,105,2,0,5],"span":[1861,2,8]},{"path":[4,105,2,0,1],"span":[1861,9,14]},{"path":[4,105,2,0,3],"span":[1861,17,18]},{"path":[4,105,2,1],"span":[1862,2,36]},{"path":[4,105,2,1,4],"span":[1862,2,10]},{"path":[4,105,2,1,5],"span":[1862,11,17]},{"path":[4,105,2,1,1],"span":[1862,18,31]},{"path":[4,105,2,1,3],"span":[1862,34,35]},{"path":[4,105,2,2],"span":[1863,2,36]},{"path":[4,105,2,2,4],"span":[1863,2,10]},{"path":[4,105,2,2,5],"span":[1863,11,17]},{"path":[4,105,2,2,1],"span":[1863,18,31]},{"path":[4,105,2,2,3],"span":[1863,34,35]},{"path":[4,105,2,3],"span":[1864,2,33]},{"path":[4,105,2,3,4],"span":[1864,2,10]},{"path":[4,105,2,3,5],"span":[1864,11,17]},{"path":[4,105,2,3,1],"span":[1864,18,28]},{"path":[4,105,2,3,3],"span":[1864,31,32]},{"path":[4,105,2,4],"span":[1865,2,40]},{"path":[4,105,2,4,4],"span":[1865,2,10]},{"path":[4,105,2,4,5],"span":[1865,11,17]},{"path":[4,105,2,4,1],"span":[1865,18,35]},{"path":[4,105,2,4,3],"span":[1865,38,39]},{"path":[4,105,2,5],"span":[1866,2,39]},{"path":[4,105,2,5,4],"span":[1866,2,10]},{"path":[4,105,2,5,5],"span":[1866,11,17]},{"path":[4,105,2,5,1],"span":[1866,18,34]},{"path":[4,105,2,5,3],"span":[1866,37,38]},{"path":[4,105,2,6],"span":[1867,2,59]},{"path":[4,105,2,6,4],"span":[1867,2,10]},{"path":[4,105,2,6,6],"span":[1867,11,36]},{"path":[4,105,2,6,1],"span":[1867,37,54]},{"path":[4,105,2,6,3],"span":[1867,57,58]},{"path":[4,105,2,7],"span":[1868,2,32]},{"path":[4,105,2,7,4],"span":[1868,2,10]},{"path":[4,105,2,7,5],"span":[1868,11,17]},{"path":[4,105,2,7,1],"span":[1868,18,27]},{"path":[4,105,2,7,3],"span":[1868,30,31]},{"path":[4,106],"span":[1874,0,1880,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,106,1],"span":[1874,8,25]},{"path":[4,106,2,0],"span":[1875,2,27]},{"path":[4,106,2,0,4],"span":[1875,2,10]},{"path":[4,106,2,0,5],"span":[1875,11,17]},{"path":[4,106,2,0,1],"span":[1875,18,22]},{"path":[4,106,2,0,3],"span":[1875,25,26]},{"path":[4,106,2,1],"span":[1876,2,27]},{"path":[4,106,2,1,4],"span":[1876,2,10]},{"path":[4,106,2,1,5],"span":[1876,11,17]},{"path":[4,106,2,1,1],"span":[1876,18,22]},{"path":[4,106,2,1,3],"span":[1876,25,26]},{"path":[4,106,2,2],"span":[1877,2,28]},{"path":[4,106,2,2,4],"span":[1877,2,10]},{"path":[4,106,2,2,5],"span":[1877,11,15]},{"path":[4,106,2,2,1],"span":[1877,16,23]},{"path":[4,106,2,2,3],"span":[1877,26,27]},{"path":[4,106,2,3],"span":[1878,2,31]},{"path":[4,106,2,3,4],"span":[1878,2,10]},{"path":[4,106,2,3,5],"span":[1878,11,15]},{"path":[4,106,2,3,1],"span":[1878,16,26]},{"path":[4,106,2,3,3],"span":[1878,29,30]},{"path":[4,106,2,4],"span":[1879,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,106,2,4,4],"span":[1879,2,10]},{"path":[4,106,2,4,6],"span":[1879,11,19]},{"path":[4,106,2,4,1],"span":[1879,20,28]},{"path":[4,106,2,4,3],"span":[1879,31,32]},{"path":[4,107],"span":[1885,0,1895,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,107,1],"span":[1885,8,14]},{"path":[4,107,2,0],"span":[1886,2,21]},{"path":[4,107,2,0,5],"span":[1886,2,8]},{"path":[4,107,2,0,1],"span":[1886,9,16]},{"path":[4,107,2,0,3],"span":[1886,19,20]},{"path":[4,107,2,1],"span":[1887,2,31]},{"path":[4,107,2,1,4],"span":[1887,2,10]},{"path":[4,107,2,1,5],"span":[1887,11,17]},{"path":[4,107,2,1,1],"span":[1887,18,26]},{"path":[4,107,2,1,3],"span":[1887,29,30]},{"path":[4,107,2,2],"span":[1888,2,31]},{"path":[4,107,2,2,4],"span":[1888,2,10]},{"path":[4,107,2,2,5],"span":[1888,11,17]},{"path":[4,107,2,2,1],"span":[1888,18,26]},{"path":[4,107,2,2,3],"span":[1888,29,30]},{"path":[4,107,2,3],"span":[1889,2,37]},{"path":[4,107,2,3,4],"span":[1889,2,10]},{"path":[4,107,2,3,5],"span":[1889,11,17]},{"path":[4,107,2,3,1],"span":[1889,18,32]},{"path":[4,107,2,3,3],"span":[1889,35,36]},{"path":[4,107,2,4],"span":[1890,2,35]},{"path":[4,107,2,4,4],"span":[1890,2,10]},{"path":[4,107,2,4,5],"span":[1890,11,17]},{"path":[4,107,2,4,1],"span":[1890,18,30]},{"path":[4,107,2,4,3],"span":[1890,33,34]},{"path":[4,107,2,5],"span":[1891,2,34]},{"path":[4,107,2,5,4],"span":[1891,2,10]},{"path":[4,107,2,5,5],"span":[1891,11,17]},{"path":[4,107,2,5,1],"span":[1891,18,29]},{"path":[4,107,2,5,3],"span":[1891,32,33]},{"path":[4,107,2,6],"span":[1892,2,35]},{"path":[4,107,2,6,4],"span":[1892,2,10]},{"path":[4,107,2,6,5],"span":[1892,11,17]},{"path":[4,107,2,6,1],"span":[1892,18,30]},{"path":[4,107,2,6,3],"span":[1892,33,34]},{"path":[4,107,2,7],"span":[1893,2,26]},{"path":[4,107,2,7,4],"span":[1893,2,10]},{"path":[4,107,2,7,5],"span":[1893,11,17]},{"path":[4,107,2,7,1],"span":[1893,18,21]},{"path":[4,107,2,7,3],"span":[1893,24,25]},{"path":[4,107,2,8],"span":[1894,2,35]},{"path":[4,107,2,8,4],"span":[1894,2,10]},{"path":[4,107,2,8,5],"span":[1894,11,17]},{"path":[4,107,2,8,1],"span":[1894,18,30]},{"path":[4,107,2,8,3],"span":[1894,33,34]},{"path":[4,108],"span":[1904,0,1907,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,108,1],"span":[1904,8,25]},{"path":[4,108,2,0],"span":[1905,2,42]},{"path":[4,108,2,0,6],"span":[1905,2,27]},{"path":[4,108,2,0,1],"span":[1905,28,37]},{"path":[4,108,2,0,3],"span":[1905,40,41]},{"path":[4,108,2,1],"span":[1906,2,33]},{"path":[4,108,2,1,4],"span":[1906,2,10]},{"path":[4,108,2,1,6],"span":[1906,11,19]},{"path":[4,108,2,1,1],"span":[1906,20,28]},{"path":[4,108,2,1,3],"span":[1906,31,32]},{"path":[4,109],"span":[1916,0,1954,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,109,1],"span":[1916,8,16]},{"path":[4,109,2,0],"span":[1918,2,26]},{"path":[4,109,2,0,4],"span":[1918,2,10]},{"path":[4,109,2,0,5],"span":[1918,11,16]},{"path":[4,109,2,0,1],"span":[1918,17,21]},{"path":[4,109,2,0,3],"span":[1918,24,25]},{"path":[4,109,2,1],"span":[1919,2,29]},{"path":[4,109,2,1,4],"span":[1919,2,10]},{"path":[4,109,2,1,5],"span":[1919,11,16]},{"path":[4,109,2,1,1],"span":[1919,17,24]},{"path":[4,109,2,1,3],"span":[1919,27,28]},{"path":[4,109,2,2],"span":[1920,2,28]},{"path":[4,109,2,2,4],"span":[1920,2,10]},{"path":[4,109,2,2,5],"span":[1920,11,16]},{"path":[4,109,2,2,1],"span":[1920,17,23]},{"path":[4,109,2,2,3],"span":[1920,26,27]},{"path":[4,109,2,3],"span":[1923,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,109,2,3,4],"span":[1923,2,10]},{"path":[4,109,2,3,5],"span":[1923,11,16]},{"path":[4,109,2,3,1],"span":[1923,17,24]},{"path":[4,109,2,3,3],"span":[1923,27,28]},{"path":[4,109,2,4],"span":[1926,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,109,2,4,4],"span":[1926,2,10]},{"path":[4,109,2,4,5],"span":[1926,11,16]},{"path":[4,109,2,4,1],"span":[1926,17,22]},{"path":[4,109,2,4,3],"span":[1926,25,26]},{"path":[4,109,2,5],"span":[1929,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,109,2,5,4],"span":[1929,2,10]},{"path":[4,109,2,5,5],"span":[1929,11,16]},{"path":[4,109,2,5,1],"span":[1929,17,26]},{"path":[4,109,2,5,3],"span":[1929,29,30]},{"path":[4,109,2,6],"span":[1931,2,32]},{"path":[4,109,2,6,4],"span":[1931,2,10]},{"path":[4,109,2,6,5],"span":[1931,11,17]},{"path":[4,109,2,6,1],"span":[1931,18,27]},{"path":[4,109,2,6,3],"span":[1931,30,31]},{"path":[4,109,2,7],"span":[1932,2,31]},{"path":[4,109,2,7,4],"span":[1932,2,10]},{"path":[4,109,2,7,5],"span":[1932,11,17]},{"path":[4,109,2,7,1],"span":[1932,18,26]},{"path":[4,109,2,7,3],"span":[1932,29,30]},{"path":[4,109,2,8],"span":[1933,2,32]},{"path":[4,109,2,8,4],"span":[1933,2,10]},{"path":[4,109,2,8,5],"span":[1933,11,17]},{"path":[4,109,2,8,1],"span":[1933,18,27]},{"path":[4,109,2,8,3],"span":[1933,30,31]},{"path":[4,109,2,9],"span":[1934,2,28]},{"path":[4,109,2,9,4],"span":[1934,2,10]},{"path":[4,109,2,9,5],"span":[1934,11,17]},{"path":[4,109,2,9,1],"span":[1934,18,22]},{"path":[4,109,2,9,3],"span":[1934,25,27]},{"path":[4,109,2,10],"span":[1935,2,31]},{"path":[4,109,2,10,4],"span":[1935,2,10]},{"path":[4,109,2,10,5],"span":[1935,11,17]},{"path":[4,109,2,10,1],"span":[1935,18,25]},{"path":[4,109,2,10,3],"span":[1935,28,30]},{"path":[4,109,2,11],"span":[1936,2,34]},{"path":[4,109,2,11,4],"span":[1936,2,10]},{"path":[4,109,2,11,5],"span":[1936,11,17]},{"path":[4,109,2,11,1],"span":[1936,18,28]},{"path":[4,109,2,11,3],"span":[1936,31,33]},{"path":[4,109,2,12],"span":[1937,2,31]},{"path":[4,109,2,12,4],"span":[1937,2,10]},{"path":[4,109,2,12,5],"span":[1937,11,17]},{"path":[4,109,2,12,1],"span":[1937,18,25]},{"path":[4,109,2,12,3],"span":[1937,28,30]},{"path":[4,109,2,13],"span":[1938,2,29]},{"path":[4,109,2,13,4],"span":[1938,2,10]},{"path":[4,109,2,13,5],"span":[1938,11,17]},{"path":[4,109,2,13,1],"span":[1938,18,23]},{"path":[4,109,2,13,3],"span":[1938,26,28]},{"path":[4,109,2,14],"span":[1939,2,28]},{"path":[4,109,2,14,4],"span":[1939,2,10]},{"path":[4,109,2,14,5],"span":[1939,11,17]},{"path":[4,109,2,14,1],"span":[1939,18,22]},{"path":[4,109,2,14,3],"span":[1939,25,27]},{"path":[4,109,2,15],"span":[1940,2,28]},{"path":[4,109,2,15,4],"span":[1940,2,10]},{"path":[4,109,2,15,5],"span":[1940,11,17]},{"path":[4,109,2,15,1],"span":[1940,18,22]},{"path":[4,109,2,15,3],"span":[1940,25,27]},{"path":[4,109,2,16],"span":[1942,2,27]},{"path":[4,109,2,16,4],"span":[1942,2,10]},{"path":[4,109,2,16,5],"span":[1942,11,17]},{"path":[4,109,2,16,1],"span":[1942,18,21]},{"path":[4,109,2,16,3],"span":[1942,24,26]},{"path":[4,109,2,17],"span":[1944,2,23]},{"path":[4,109,2,17,6],"span":[1944,2,13]},{"path":[4,109,2,17,1],"span":[1944,14,17]},{"path":[4,109,2,17,3],"span":[1944,20,22]},{"path":[4,109,2,18],"span":[1945,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,109,2,18,4],"span":[1945,2,10]},{"path":[4,109,2,18,5],"span":[1945,11,17]},{"path":[4,109,2,18,1],"span":[1945,18,26]},{"path":[4,109,2,18,3],"span":[1945,29,31]},{"path":[4,109,2,19],"span":[1946,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,109,2,19,4],"span":[1946,2,10]},{"path":[4,109,2,19,5],"span":[1946,11,17]},{"path":[4,109,2,19,1],"span":[1946,18,26]},{"path":[4,109,2,19,3],"span":[1946,29,31]},{"path":[4,109,2,20],"span":[1949,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,109,2,20,4],"span":[1949,2,10]},{"path":[4,109,2,20,6],"span":[1949,11,23]},{"path":[4,109,2,20,1],"span":[1949,24,37]},{"path":[4,109,2,20,3],"span":[1949,40,42]},{"path":[4,109,2,21],"span":[1951,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,109,2,21,4],"span":[1951,2,10]},{"path":[4,109,2,21,6],"span":[1951,11,26]},{"path":[4,109,2,21,1],"span":[1951,27,43]},{"path":[4,109,2,21,3],"span":[1951,46,48]},{"path":[4,109,2,22],"span":[1953,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,109,2,22,4],"span":[1953,2,10]},{"path":[4,109,2,22,6],"span":[1953,11,26]},{"path":[4,109,2,22,1],"span":[1953,27,41]},{"path":[4,109,2,22,3],"span":[1953,44,46]},{"path":[4,110],"span":[1959,0,1973,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,110,1],"span":[1959,8,19]},{"path":[4,110,2,0],"span":[1960,2,18]},{"path":[4,110,2,0,5],"span":[1960,2,8]},{"path":[4,110,2,0,1],"span":[1960,9,13]},{"path":[4,110,2,0,3],"span":[1960,16,17]},{"path":[4,110,2,1],"span":[1962,2,29]},{"path":[4,110,2,1,4],"span":[1962,2,10]},{"path":[4,110,2,1,5],"span":[1962,11,17]},{"path":[4,110,2,1,1],"span":[1962,18,24]},{"path":[4,110,2,1,3],"span":[1962,27,28]},{"path":[4,110,2,2],"span":[1963,2,30]},{"path":[4,110,2,2,4],"span":[1963,2,10]},{"path":[4,110,2,2,5],"span":[1963,11,17]},{"path":[4,110,2,2,1],"span":[1963,18,25]},{"path":[4,110,2,2,3],"span":[1963,28,29]},{"path":[4,110,2,3],"span":[1964,2,27]},{"path":[4,110,2,3,4],"span":[1964,2,10]},{"path":[4,110,2,3,5],"span":[1964,11,17]},{"path":[4,110,2,3,1],"span":[1964,18,22]},{"path":[4,110,2,3,3],"span":[1964,25,26]},{"path":[4,110,2,4],"span":[1965,2,31]},{"path":[4,110,2,4,4],"span":[1965,2,10]},{"path":[4,110,2,4,5],"span":[1965,11,17]},{"path":[4,110,2,4,1],"span":[1965,18,26]},{"path":[4,110,2,4,3],"span":[1965,29,30]},{"path":[4,110,2,5],"span":[1966,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,110,2,5,4],"span":[1966,2,10]},{"path":[4,110,2,5,5],"span":[1966,11,17]},{"path":[4,110,2,5,1],"span":[1966,18,22]},{"path":[4,110,2,5,3],"span":[1966,25,26]},{"path":[4,110,2,6],"span":[1967,2,54]},{"path":[4,110,2,6,4],"span":[1967,2,10]},{"path":[4,110,2,6,6],"span":[1967,11,36]},{"path":[4,110,2,6,1],"span":[1967,37,49]},{"path":[4,110,2,6,3],"span":[1967,52,53]},{"path":[4,110,2,7],"span":[1968,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,110,2,7,4],"span":[1968,2,10]},{"path":[4,110,2,7,5],"span":[1968,11,17]},{"path":[4,110,2,7,1],"span":[1968,18,29]},{"path":[4,110,2,7,3],"span":[1968,32,33]},{"path":[4,110,2,8],"span":[1970,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,110,2,8,4],"span":[1970,2,10]},{"path":[4,110,2,8,5],"span":[1970,11,17]},{"path":[4,110,2,8,1],"span":[1970,18,23]},{"path":[4,110,2,8,3],"span":[1970,26,27]},{"path":[4,110,2,9],"span":[1972,2,37]},{"path":[4,110,2,9,4],"span":[1972,2,10]},{"path":[4,110,2,9,5],"span":[1972,11,15]},{"path":[4,110,2,9,1],"span":[1972,16,31]},{"path":[4,110,2,9,3],"span":[1972,34,36]},{"path":[4,111],"span":[1977,0,2011,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,111,1],"span":[1977,8,20]},{"path":[4,111,2,0],"span":[1978,2,16]},{"path":[4,111,2,0,5],"span":[1978,2,7]},{"path":[4,111,2,0,1],"span":[1978,9,11]},{"path":[4,111,2,0,3],"span":[1978,14,15]},{"path":[4,111,2,1],"span":[1979,2,23]},{"path":[4,111,2,1,5],"span":[1979,2,8]},{"path":[4,111,2,1,1],"span":[1979,9,18]},{"path":[4,111,2,1,3],"span":[1979,21,22]},{"path":[4,111,2,2],"span":[1981,2,32]},{"path":[4,111,2,2,4],"span":[1981,2,10]},{"path":[4,111,2,2,5],"span":[1981,11,16]},{"path":[4,111,2,2,1],"span":[1981,17,26]},{"path":[4,111,2,2,3],"span":[1981,29,31]},{"path":[4,111,2,3],"span":[1982,2,58]},{"path":[4,111,2,3,4],"span":[1982,2,10]},{"path":[4,111,2,3,6],"span":[1982,11,36]},{"path":[4,111,2,3,1],"span":[1982,37,53]},{"path":[4,111,2,3,3],"span":[1982,56,57]},{"path":[4,111,2,4],"span":[1984,2,35]},{"path":[4,111,2,4,4],"span":[1984,2,10]},{"path":[4,111,2,4,5],"span":[1984,11,17]},{"path":[4,111,2,4,1],"span":[1984,18,30]},{"path":[4,111,2,4,3],"span":[1984,33,34]},{"path":[4,111,2,5],"span":[1985,2,37]},{"path":[4,111,2,5,4],"span":[1985,2,10]},{"path":[4,111,2,5,5],"span":[1985,11,17]},{"path":[4,111,2,5,1],"span":[1985,18,32]},{"path":[4,111,2,5,3],"span":[1985,35,36]},{"path":[4,111,2,6],"span":[1986,2,39]},{"path":[4,111,2,6,4],"span":[1986,2,10]},{"path":[4,111,2,6,5],"span":[1986,11,17]},{"path":[4,111,2,6,1],"span":[1986,18,34]},{"path":[4,111,2,6,3],"span":[1986,37,38]},{"path":[4,111,2,7],"span":[1987,2,35]},{"path":[4,111,2,7,4],"span":[1987,2,10]},{"path":[4,111,2,7,5],"span":[1987,11,17]},{"path":[4,111,2,7,1],"span":[1987,18,30]},{"path":[4,111,2,7,3],"span":[1987,33,34]},{"path":[4,111,2,8],"span":[1988,2,43]},{"path":[4,111,2,8,4],"span":[1988,2,10]},{"path":[4,111,2,8,5],"span":[1988,11,17]},{"path":[4,111,2,8,1],"span":[1988,18,37]},{"path":[4,111,2,8,3],"span":[1988,40,42]},{"path":[4,111,2,9],"span":[1989,2,35]},{"path":[4,111,2,9,4],"span":[1989,2,10]},{"path":[4,111,2,9,5],"span":[1989,11,17]},{"path":[4,111,2,9,1],"span":[1989,18,29]},{"path":[4,111,2,9,3],"span":[1989,32,34]},{"path":[4,111,2,10],"span":[1990,2,35]},{"path":[4,111,2,10,4],"span":[1990,2,10]},{"path":[4,111,2,10,5],"span":[1990,11,17]},{"path":[4,111,2,10,1],"span":[1990,18,29]},{"path":[4,111,2,10,3],"span":[1990,32,34]},{"path":[4,111,2,11],"span":[1991,2,37]},{"path":[4,111,2,11,4],"span":[1991,2,10]},{"path":[4,111,2,11,5],"span":[1991,11,17]},{"path":[4,111,2,11,1],"span":[1991,18,31]},{"path":[4,111,2,11,3],"span":[1991,34,36]},{"path":[4,111,2,12],"span":[1992,2,40]},{"path":[4,111,2,12,4],"span":[1992,2,10]},{"path":[4,111,2,12,5],"span":[1992,11,17]},{"path":[4,111,2,12,1],"span":[1992,18,34]},{"path":[4,111,2,12,3],"span":[1992,37,39]},{"path":[4,111,2,13],"span":[1993,2,39]},{"path":[4,111,2,13,4],"span":[1993,2,10]},{"path":[4,111,2,13,5],"span":[1993,11,17]},{"path":[4,111,2,13,1],"span":[1993,18,33]},{"path":[4,111,2,13,3],"span":[1993,36,38]},{"path":[4,111,2,14],"span":[1994,2,36]},{"path":[4,111,2,14,4],"span":[1994,2,10]},{"path":[4,111,2,14,5],"span":[1994,11,17]},{"path":[4,111,2,14,1],"span":[1994,18,30]},{"path":[4,111,2,14,3],"span":[1994,33,35]},{"path":[4,111,2,15],"span":[1995,2,43]},{"path":[4,111,2,15,4],"span":[1995,2,10]},{"path":[4,111,2,15,5],"span":[1995,11,17]},{"path":[4,111,2,15,1],"span":[1995,18,37]},{"path":[4,111,2,15,3],"span":[1995,40,42]},{"path":[4,111,2,16],"span":[1996,2,37]},{"path":[4,111,2,16,4],"span":[1996,2,10]},{"path":[4,111,2,16,5],"span":[1996,11,17]},{"path":[4,111,2,16,1],"span":[1996,18,31]},{"path":[4,111,2,16,3],"span":[1996,34,36]},{"path":[4,111,2,17],"span":[1997,2,40]},{"path":[4,111,2,17,4],"span":[1997,2,10]},{"path":[4,111,2,17,5],"span":[1997,11,17]},{"path":[4,111,2,17,1],"span":[1997,18,34]},{"path":[4,111,2,17,3],"span":[1997,37,39]},{"path":[4,111,2,18],"span":[1998,2,41]},{"path":[4,111,2,18,4],"span":[1998,2,10]},{"path":[4,111,2,18,5],"span":[1998,11,17]},{"path":[4,111,2,18,1],"span":[1998,18,35]},{"path":[4,111,2,18,3],"span":[1998,38,40]},{"path":[4,111,2,19],"span":[1999,2,39]},{"path":[4,111,2,19,4],"span":[1999,2,10]},{"path":[4,111,2,19,5],"span":[1999,11,17]},{"path":[4,111,2,19,1],"span":[1999,18,33]},{"path":[4,111,2,19,3],"span":[1999,36,38]},{"path":[4,111,2,20],"span":[2000,2,41]},{"path":[4,111,2,20,4],"span":[2000,2,10]},{"path":[4,111,2,20,5],"span":[2000,11,17]},{"path":[4,111,2,20,1],"span":[2000,18,35]},{"path":[4,111,2,20,3],"span":[2000,38,40]},{"path":[4,111,2,21],"span":[2001,2,38]},{"path":[4,111,2,21,4],"span":[2001,2,10]},{"path":[4,111,2,21,5],"span":[2001,11,17]},{"path":[4,111,2,21,1],"span":[2001,18,32]},{"path":[4,111,2,21,3],"span":[2001,35,37]},{"path":[4,111,2,22],"span":[2003,2,36]},{"path":[4,111,2,22,4],"span":[2003,2,10]},{"path":[4,111,2,22,5],"span":[2003,11,15]},{"path":[4,111,2,22,1],"span":[2003,16,30]},{"path":[4,111,2,22,3],"span":[2003,33,35]},{"path":[4,111,2,23],"span":[2004,2,36]},{"path":[4,111,2,23,4],"span":[2004,2,10]},{"path":[4,111,2,23,5],"span":[2004,11,15]},{"path":[4,111,2,23,1],"span":[2004,16,30]},{"path":[4,111,2,23,3],"span":[2004,33,35]},{"path":[4,111,2,24],"span":[2005,2,36]},{"path":[4,111,2,24,4],"span":[2005,2,10]},{"path":[4,111,2,24,5],"span":[2005,11,15]},{"path":[4,111,2,24,1],"span":[2005,16,30]},{"path":[4,111,2,24,3],"span":[2005,33,35]},{"path":[4,111,2,25],"span":[2006,2,38]},{"path":[4,111,2,25,4],"span":[2006,2,10]},{"path":[4,111,2,25,5],"span":[2006,11,15]},{"path":[4,111,2,25,1],"span":[2006,16,32]},{"path":[4,111,2,25,3],"span":[2006,35,37]},{"path":[4,111,2,26],"span":[2007,2,38]},{"path":[4,111,2,26,4],"span":[2007,2,10]},{"path":[4,111,2,26,5],"span":[2007,11,15]},{"path":[4,111,2,26,1],"span":[2007,16,32]},{"path":[4,111,2,26,3],"span":[2007,35,37]},{"path":[4,111,2,27],"span":[2008,2,38]},{"path":[4,111,2,27,4],"span":[2008,2,10]},{"path":[4,111,2,27,5],"span":[2008,11,15]},{"path":[4,111,2,27,1],"span":[2008,16,32]},{"path":[4,111,2,27,3],"span":[2008,35,37]},{"path":[4,111,2,28],"span":[2010,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,111,2,28,4],"span":[2010,2,10]},{"path":[4,111,2,28,5],"span":[2010,11,16]},{"path":[4,111,2,28,1],"span":[2010,17,28]},{"path":[4,111,2,28,3],"span":[2010,31,33]},{"path":[4,112],"span":[2013,0,2048,1]},{"path":[4,112,1],"span":[2013,8,20]},{"path":[4,112,2,0],"span":[2014,2,15]},{"path":[4,112,2,0,5],"span":[2014,2,7]},{"path":[4,112,2,0,1],"span":[2014,8,10]},{"path":[4,112,2,0,3],"span":[2014,13,14]},{"path":[4,112,2,1],"span":[2016,2,20]},{"path":[4,112,2,1,5],"span":[2016,2,7]},{"path":[4,112,2,1,1],"span":[2016,8,15]},{"path":[4,112,2,1,3],"span":[2016,18,19]},{"path":[4,112,2,2],"span":[2017,2,26]},{"path":[4,112,2,2,5],"span":[2017,2,8]},{"path":[4,112,2,2,1],"span":[2017,9,21]},{"path":[4,112,2,2,3],"span":[2017,24,25]},{"path":[4,112,2,3],"span":[2019,2,36]},{"path":[4,112,2,3,4],"span":[2019,2,10]},{"path":[4,112,2,3,5],"span":[2019,11,16]},{"path":[4,112,2,3,1],"span":[2019,17,31]},{"path":[4,112,2,3,3],"span":[2019,34,35]},{"path":[4,112,2,4],"span":[2020,2,40]},{"path":[4,112,2,4,4],"span":[2020,2,10]},{"path":[4,112,2,4,5],"span":[2020,11,17]},{"path":[4,112,2,4,1],"span":[2020,18,35]},{"path":[4,112,2,4,3],"span":[2020,38,39]},{"path":[4,112,2,5],"span":[2022,2,32]},{"path":[4,112,2,5,4],"span":[2022,2,10]},{"path":[4,112,2,5,5],"span":[2022,11,16]},{"path":[4,112,2,5,1],"span":[2022,17,26]},{"path":[4,112,2,5,3],"span":[2022,29,31]},{"path":[4,112,2,6],"span":[2023,2,31]},{"path":[4,112,2,6,4],"span":[2023,2,10]},{"path":[4,112,2,6,5],"span":[2023,11,15]},{"path":[4,112,2,6,1],"span":[2023,16,25]},{"path":[4,112,2,6,3],"span":[2023,28,30]},{"path":[4,112,2,7],"span":[2024,2,34]},{"path":[4,112,2,7,4],"span":[2024,2,10]},{"path":[4,112,2,7,5],"span":[2024,11,17]},{"path":[4,112,2,7,1],"span":[2024,18,28]},{"path":[4,112,2,7,3],"span":[2024,31,33]},{"path":[4,112,2,8],"span":[2025,2,31]},{"path":[4,112,2,8,4],"span":[2025,2,10]},{"path":[4,112,2,8,5],"span":[2025,11,17]},{"path":[4,112,2,8,1],"span":[2025,18,25]},{"path":[4,112,2,8,3],"span":[2025,28,30]},{"path":[4,112,2,9],"span":[2026,2,55]},{"path":[4,112,2,9,4],"span":[2026,2,10]},{"path":[4,112,2,9,6],"span":[2026,11,36]},{"path":[4,112,2,9,1],"span":[2026,37,49]},{"path":[4,112,2,9,3],"span":[2026,52,54]},{"path":[4,112,2,10],"span":[2027,2,52]},{"path":[4,112,2,10,4],"span":[2027,2,10]},{"path":[4,112,2,10,6],"span":[2027,11,36]},{"path":[4,112,2,10,1],"span":[2027,37,46]},{"path":[4,112,2,10,3],"span":[2027,49,51]},{"path":[4,112,2,11],"span":[2028,2,51]},{"path":[4,112,2,11,4],"span":[2028,2,10]},{"path":[4,112,2,11,6],"span":[2028,11,36]},{"path":[4,112,2,11,1],"span":[2028,37,45]},{"path":[4,112,2,11,3],"span":[2028,48,50]},{"path":[4,112,2,12],"span":[2029,2,43]},{"path":[4,112,2,12,4],"span":[2029,2,10]},{"path":[4,112,2,12,5],"span":[2029,11,17]},{"path":[4,112,2,12,1],"span":[2029,18,37]},{"path":[4,112,2,12,3],"span":[2029,40,42]},{"path":[4,112,2,13],"span":[2031,2,35]},{"path":[4,112,2,13,4],"span":[2031,2,10]},{"path":[4,112,2,13,5],"span":[2031,11,17]},{"path":[4,112,2,13,1],"span":[2031,18,29]},{"path":[4,112,2,13,3],"span":[2031,32,34]},{"path":[4,112,2,14],"span":[2032,2,37]},{"path":[4,112,2,14,4],"span":[2032,2,10]},{"path":[4,112,2,14,5],"span":[2032,11,17]},{"path":[4,112,2,14,1],"span":[2032,18,31]},{"path":[4,112,2,14,3],"span":[2032,34,36]},{"path":[4,112,2,15],"span":[2034,2,39]},{"path":[4,112,2,15,4],"span":[2034,2,10]},{"path":[4,112,2,15,5],"span":[2034,11,17]},{"path":[4,112,2,15,1],"span":[2034,18,33]},{"path":[4,112,2,15,3],"span":[2034,36,38]},{"path":[4,112,2,16],"span":[2035,2,43]},{"path":[4,112,2,16,4],"span":[2035,2,10]},{"path":[4,112,2,16,5],"span":[2035,11,17]},{"path":[4,112,2,16,1],"span":[2035,18,37]},{"path":[4,112,2,16,3],"span":[2035,40,42]},{"path":[4,112,2,17],"span":[2036,2,38]},{"path":[4,112,2,17,4],"span":[2036,2,10]},{"path":[4,112,2,17,5],"span":[2036,11,17]},{"path":[4,112,2,17,1],"span":[2036,18,32]},{"path":[4,112,2,17,3],"span":[2036,35,37]},{"path":[4,112,2,18],"span":[2037,2,38]},{"path":[4,112,2,18,4],"span":[2037,2,10]},{"path":[4,112,2,18,5],"span":[2037,11,17]},{"path":[4,112,2,18,1],"span":[2037,18,32]},{"path":[4,112,2,18,3],"span":[2037,35,37]},{"path":[4,112,2,19],"span":[2038,2,41]},{"path":[4,112,2,19,4],"span":[2038,2,10]},{"path":[4,112,2,19,5],"span":[2038,11,15]},{"path":[4,112,2,19,1],"span":[2038,18,35]},{"path":[4,112,2,19,3],"span":[2038,38,40]},{"path":[4,112,2,20],"span":[2039,2,42]},{"path":[4,112,2,20,4],"span":[2039,2,10]},{"path":[4,112,2,20,5],"span":[2039,11,17]},{"path":[4,112,2,20,1],"span":[2039,18,36]},{"path":[4,112,2,20,3],"span":[2039,39,41]},{"path":[4,112,2,21],"span":[2041,2,32]},{"path":[4,112,2,21,4],"span":[2041,2,10]},{"path":[4,112,2,21,5],"span":[2041,11,17]},{"path":[4,112,2,21,1],"span":[2041,18,26]},{"path":[4,112,2,21,3],"span":[2041,29,31]},{"path":[4,112,2,22],"span":[2043,2,33]},{"path":[4,112,2,22,4],"span":[2043,2,10]},{"path":[4,112,2,22,5],"span":[2043,11,16]},{"path":[4,112,2,22,1],"span":[2043,17,27]},{"path":[4,112,2,22,3],"span":[2043,30,32]},{"path":[4,112,2,23],"span":[2045,2,59]},{"path":[4,112,2,23,4],"span":[2045,2,10]},{"path":[4,112,2,23,6],"span":[2045,11,36]},{"path":[4,112,2,23,1],"span":[2045,37,53]},{"path":[4,112,2,23,3],"span":[2045,56,58]},{"path":[4,112,2,24],"span":[2047,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,112,2,24,4],"span":[2047,2,10]},{"path":[4,112,2,24,5],"span":[2047,11,16]},{"path":[4,112,2,24,1],"span":[2047,17,28]},{"path":[4,112,2,24,3],"span":[2047,31,33]},{"path":[4,113],"span":[2050,0,2083,1]},{"path":[4,113,1],"span":[2050,8,17]},{"path":[4,113,2,0],"span":[2051,2,15]},{"path":[4,113,2,0,5],"span":[2051,2,7]},{"path":[4,113,2,0,1],"span":[2051,8,10]},{"path":[4,113,2,0,3],"span":[2051,13,14]},{"path":[4,113,2,1],"span":[2053,2,21]},{"path":[4,113,2,1,5],"span":[2053,2,8]},{"path":[4,113,2,1,1],"span":[2053,9,16]},{"path":[4,113,2,1,3],"span":[2053,19,20]},{"path":[4,113,2,2],"span":[2055,2,33]},{"path":[4,113,2,2,4],"span":[2055,2,10]},{"path":[4,113,2,2,5],"span":[2055,11,17]},{"path":[4,113,2,2,1],"span":[2055,18,28]},{"path":[4,113,2,2,3],"span":[2055,31,32]},{"path":[4,113,2,3],"span":[2056,2,32]},{"path":[4,113,2,3,4],"span":[2056,2,10]},{"path":[4,113,2,3,5],"span":[2056,11,17]},{"path":[4,113,2,3,1],"span":[2056,18,26]},{"path":[4,113,2,3,3],"span":[2056,29,31]},{"path":[4,113,2,4],"span":[2057,2,38]},{"path":[4,113,2,4,4],"span":[2057,2,10]},{"path":[4,113,2,4,5],"span":[2057,11,17]},{"path":[4,113,2,4,1],"span":[2057,18,33]},{"path":[4,113,2,4,3],"span":[2057,36,37]},{"path":[4,113,2,5],"span":[2059,2,33]},{"path":[4,113,2,5,4],"span":[2059,2,10]},{"path":[4,113,2,5,5],"span":[2059,11,16]},{"path":[4,113,2,5,1],"span":[2059,17,28]},{"path":[4,113,2,5,3],"span":[2059,31,32]},{"path":[4,113,2,6],"span":[2060,2,29]},{"path":[4,113,2,6,4],"span":[2060,2,10]},{"path":[4,113,2,6,5],"span":[2060,11,16]},{"path":[4,113,2,6,1],"span":[2060,17,24]},{"path":[4,113,2,6,3],"span":[2060,27,28]},{"path":[4,113,2,7],"span":[2061,2,31]},{"path":[4,113,2,7,4],"span":[2061,2,10]},{"path":[4,113,2,7,5],"span":[2061,11,16]},{"path":[4,113,2,7,1],"span":[2061,17,26]},{"path":[4,113,2,7,3],"span":[2061,29,30]},{"path":[4,113,2,8],"span":[2063,2,54]},{"path":[4,113,2,8,4],"span":[2063,2,10]},{"path":[4,113,2,8,6],"span":[2063,11,36]},{"path":[4,113,2,8,1],"span":[2063,37,49]},{"path":[4,113,2,8,3],"span":[2063,52,53]},{"path":[4,113,2,9],"span":[2064,2,51]},{"path":[4,113,2,9,4],"span":[2064,2,10]},{"path":[4,113,2,9,6],"span":[2064,11,36]},{"path":[4,113,2,9,1],"span":[2064,37,45]},{"path":[4,113,2,9,3],"span":[2064,48,50]},{"path":[4,113,2,10],"span":[2065,2,51]},{"path":[4,113,2,10,4],"span":[2065,2,10]},{"path":[4,113,2,10,6],"span":[2065,11,36]},{"path":[4,113,2,10,1],"span":[2065,37,45]},{"path":[4,113,2,10,3],"span":[2065,48,50]},{"path":[4,113,2,11],"span":[2066,2,52]},{"path":[4,113,2,11,4],"span":[2066,2,10]},{"path":[4,113,2,11,6],"span":[2066,11,36]},{"path":[4,113,2,11,1],"span":[2066,37,46]},{"path":[4,113,2,11,3],"span":[2066,49,51]},{"path":[4,113,2,12],"span":[2067,2,43]},{"path":[4,113,2,12,4],"span":[2067,2,10]},{"path":[4,113,2,12,5],"span":[2067,11,17]},{"path":[4,113,2,12,1],"span":[2067,18,37]},{"path":[4,113,2,12,3],"span":[2067,40,42]},{"path":[4,113,2,13],"span":[2068,2,38]},{"path":[4,113,2,13,4],"span":[2068,2,10]},{"path":[4,113,2,13,5],"span":[2068,11,17]},{"path":[4,113,2,13,1],"span":[2068,18,32]},{"path":[4,113,2,13,3],"span":[2068,35,37]},{"path":[4,113,2,14],"span":[2069,2,40]},{"path":[4,113,2,14,4],"span":[2069,2,10]},{"path":[4,113,2,14,5],"span":[2069,11,17]},{"path":[4,113,2,14,1],"span":[2069,18,34]},{"path":[4,113,2,14,3],"span":[2069,37,39]},{"path":[4,113,2,15],"span":[2070,2,36]},{"path":[4,113,2,15,4],"span":[2070,2,10]},{"path":[4,113,2,15,5],"span":[2070,11,17]},{"path":[4,113,2,15,1],"span":[2070,18,30]},{"path":[4,113,2,15,3],"span":[2070,33,35]},{"path":[4,113,2,16],"span":[2071,2,43]},{"path":[4,113,2,16,4],"span":[2071,2,10]},{"path":[4,113,2,16,5],"span":[2071,11,17]},{"path":[4,113,2,16,1],"span":[2071,18,37]},{"path":[4,113,2,16,3],"span":[2071,40,42]},{"path":[4,113,2,17],"span":[2072,2,35]},{"path":[4,113,2,17,4],"span":[2072,2,10]},{"path":[4,113,2,17,5],"span":[2072,11,17]},{"path":[4,113,2,17,1],"span":[2072,18,29]},{"path":[4,113,2,17,3],"span":[2072,32,34]},{"path":[4,113,2,18],"span":[2073,2,35]},{"path":[4,113,2,18,4],"span":[2073,2,10]},{"path":[4,113,2,18,5],"span":[2073,11,17]},{"path":[4,113,2,18,1],"span":[2073,18,29]},{"path":[4,113,2,18,3],"span":[2073,32,34]},{"path":[4,113,2,19],"span":[2074,2,37]},{"path":[4,113,2,19,4],"span":[2074,2,10]},{"path":[4,113,2,19,5],"span":[2074,11,17]},{"path":[4,113,2,19,1],"span":[2074,18,31]},{"path":[4,113,2,19,3],"span":[2074,34,36]},{"path":[4,113,2,20],"span":[2075,2,40]},{"path":[4,113,2,20,4],"span":[2075,2,10]},{"path":[4,113,2,20,5],"span":[2075,11,17]},{"path":[4,113,2,20,1],"span":[2075,18,34]},{"path":[4,113,2,20,3],"span":[2075,37,39]},{"path":[4,113,2,21],"span":[2076,2,39]},{"path":[4,113,2,21,4],"span":[2076,2,10]},{"path":[4,113,2,21,5],"span":[2076,11,17]},{"path":[4,113,2,21,1],"span":[2076,18,33]},{"path":[4,113,2,21,3],"span":[2076,36,38]},{"path":[4,113,2,22],"span":[2078,2,32]},{"path":[4,113,2,22,4],"span":[2078,2,10]},{"path":[4,113,2,22,5],"span":[2078,11,17]},{"path":[4,113,2,22,1],"span":[2078,18,26]},{"path":[4,113,2,22,3],"span":[2078,29,31]},{"path":[4,113,2,23],"span":[2080,2,59]},{"path":[4,113,2,23,4],"span":[2080,2,10]},{"path":[4,113,2,23,6],"span":[2080,11,36]},{"path":[4,113,2,23,1],"span":[2080,37,53]},{"path":[4,113,2,23,3],"span":[2080,56,58]},{"path":[4,113,2,24],"span":[2082,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,113,2,24,4],"span":[2082,2,10]},{"path":[4,113,2,24,5],"span":[2082,11,16]},{"path":[4,113,2,24,1],"span":[2082,17,28]},{"path":[4,113,2,24,3],"span":[2082,31,33]},{"path":[4,114],"span":[2085,0,2115,1]},{"path":[4,114,1],"span":[2085,8,23]},{"path":[4,114,2,0],"span":[2086,2,15]},{"path":[4,114,2,0,5],"span":[2086,2,7]},{"path":[4,114,2,0,1],"span":[2086,8,10]},{"path":[4,114,2,0,3],"span":[2086,13,14]},{"path":[4,114,2,1],"span":[2087,2,21]},{"path":[4,114,2,1,5],"span":[2087,2,8]},{"path":[4,114,2,1,1],"span":[2087,9,16]},{"path":[4,114,2,1,3],"span":[2087,19,20]},{"path":[4,114,2,2],"span":[2089,2,33]},{"path":[4,114,2,2,4],"span":[2089,2,10]},{"path":[4,114,2,2,5],"span":[2089,11,17]},{"path":[4,114,2,2,1],"span":[2089,18,28]},{"path":[4,114,2,2,3],"span":[2089,31,32]},{"path":[4,114,2,3],"span":[2090,2,36]},{"path":[4,114,2,3,4],"span":[2090,2,10]},{"path":[4,114,2,3,5],"span":[2090,11,17]},{"path":[4,114,2,3,1],"span":[2090,18,31]},{"path":[4,114,2,3,3],"span":[2090,34,35]},{"path":[4,114,2,4],"span":[2091,2,33]},{"path":[4,114,2,4,4],"span":[2091,2,10]},{"path":[4,114,2,4,5],"span":[2091,11,17]},{"path":[4,114,2,4,1],"span":[2091,18,28]},{"path":[4,114,2,4,3],"span":[2091,31,32]},{"path":[4,114,2,5],"span":[2092,2,30]},{"path":[4,114,2,5,4],"span":[2092,2,10]},{"path":[4,114,2,5,5],"span":[2092,11,17]},{"path":[4,114,2,5,1],"span":[2092,18,25]},{"path":[4,114,2,5,3],"span":[2092,28,29]},{"path":[4,114,2,6],"span":[2093,2,31]},{"path":[4,114,2,6,4],"span":[2093,2,10]},{"path":[4,114,2,6,5],"span":[2093,11,17]},{"path":[4,114,2,6,1],"span":[2093,18,26]},{"path":[4,114,2,6,3],"span":[2093,29,30]},{"path":[4,114,2,7],"span":[2095,2,29]},{"path":[4,114,2,7,4],"span":[2095,2,10]},{"path":[4,114,2,7,5],"span":[2095,11,16]},{"path":[4,114,2,7,1],"span":[2095,17,24]},{"path":[4,114,2,7,3],"span":[2095,27,28]},{"path":[4,114,2,8],"span":[2096,2,31]},{"path":[4,114,2,8,4],"span":[2096,2,10]},{"path":[4,114,2,8,5],"span":[2096,11,16]},{"path":[4,114,2,8,1],"span":[2096,17,26]},{"path":[4,114,2,8,3],"span":[2096,29,30]},{"path":[4,114,2,9],"span":[2097,2,32]},{"path":[4,114,2,9,4],"span":[2097,2,10]},{"path":[4,114,2,9,5],"span":[2097,11,16]},{"path":[4,114,2,9,1],"span":[2097,17,26]},{"path":[4,114,2,9,3],"span":[2097,29,31]},{"path":[4,114,2,10],"span":[2099,2,31]},{"path":[4,114,2,10,4],"span":[2099,2,10]},{"path":[4,114,2,10,5],"span":[2099,11,17]},{"path":[4,114,2,10,1],"span":[2099,18,25]},{"path":[4,114,2,10,3],"span":[2099,28,30]},{"path":[4,114,2,11],"span":[2100,2,35]},{"path":[4,114,2,11,4],"span":[2100,2,10]},{"path":[4,114,2,11,5],"span":[2100,11,17]},{"path":[4,114,2,11,1],"span":[2100,18,29]},{"path":[4,114,2,11,3],"span":[2100,32,34]},{"path":[4,114,2,12],"span":[2102,2,55]},{"path":[4,114,2,12,4],"span":[2102,2,10]},{"path":[4,114,2,12,6],"span":[2102,11,36]},{"path":[4,114,2,12,1],"span":[2102,37,49]},{"path":[4,114,2,12,3],"span":[2102,52,54]},{"path":[4,114,2,13],"span":[2103,2,51]},{"path":[4,114,2,13,4],"span":[2103,2,10]},{"path":[4,114,2,13,6],"span":[2103,11,36]},{"path":[4,114,2,13,1],"span":[2103,37,45]},{"path":[4,114,2,13,3],"span":[2103,48,50]},{"path":[4,114,2,14],"span":[2104,2,51]},{"path":[4,114,2,14,4],"span":[2104,2,10]},{"path":[4,114,2,14,6],"span":[2104,11,36]},{"path":[4,114,2,14,1],"span":[2104,37,45]},{"path":[4,114,2,14,3],"span":[2104,48,50]},{"path":[4,114,2,15],"span":[2105,2,52]},{"path":[4,114,2,15,4],"span":[2105,2,10]},{"path":[4,114,2,15,6],"span":[2105,11,36]},{"path":[4,114,2,15,1],"span":[2105,37,46]},{"path":[4,114,2,15,3],"span":[2105,49,51]},{"path":[4,114,2,16],"span":[2106,2,43]},{"path":[4,114,2,16,4],"span":[2106,2,10]},{"path":[4,114,2,16,5],"span":[2106,11,17]},{"path":[4,114,2,16,1],"span":[2106,18,37]},{"path":[4,114,2,16,3],"span":[2106,40,42]},{"path":[4,114,2,17],"span":[2108,2,33]},{"path":[4,114,2,17,4],"span":[2108,2,10]},{"path":[4,114,2,17,5],"span":[2108,11,15]},{"path":[4,114,2,17,1],"span":[2108,16,27]},{"path":[4,114,2,17,3],"span":[2108,30,32]},{"path":[4,114,2,18],"span":[2109,2,37]},{"path":[4,114,2,18,4],"span":[2109,2,10]},{"path":[4,114,2,18,5],"span":[2109,11,15]},{"path":[4,114,2,18,1],"span":[2109,16,31]},{"path":[4,114,2,18,3],"span":[2109,34,36]},{"path":[4,114,2,19],"span":[2110,2,37]},{"path":[4,114,2,19,4],"span":[2110,2,10]},{"path":[4,114,2,19,5],"span":[2110,11,15]},{"path":[4,114,2,19,1],"span":[2110,16,31]},{"path":[4,114,2,19,3],"span":[2110,34,36]},{"path":[4,114,2,20],"span":[2112,2,59]},{"path":[4,114,2,20,4],"span":[2112,2,10]},{"path":[4,114,2,20,6],"span":[2112,11,36]},{"path":[4,114,2,20,1],"span":[2112,37,53]},{"path":[4,114,2,20,3],"span":[2112,56,58]},{"path":[4,114,2,21],"span":[2114,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,114,2,21,4],"span":[2114,2,10]},{"path":[4,114,2,21,5],"span":[2114,11,16]},{"path":[4,114,2,21,1],"span":[2114,17,28]},{"path":[4,114,2,21,3],"span":[2114,31,34]},{"path":[4,115],"span":[2117,0,2173,1]},{"path":[4,115,1],"span":[2117,8,22]},{"path":[4,115,2,0],"span":[2118,2,16]},{"path":[4,115,2,0,5],"span":[2118,2,7]},{"path":[4,115,2,0,1],"span":[2118,9,11]},{"path":[4,115,2,0,3],"span":[2118,14,15]},{"path":[4,115,2,1],"span":[2120,2,19]},{"path":[4,115,2,1,5],"span":[2120,2,8]},{"path":[4,115,2,1,1],"span":[2120,9,14]},{"path":[4,115,2,1,3],"span":[2120,17,18]},{"path":[4,115,2,2],"span":[2121,2,32]},{"path":[4,115,2,2,4],"span":[2121,2,10]},{"path":[4,115,2,2,5],"span":[2121,11,17]},{"path":[4,115,2,2,1],"span":[2121,18,27]},{"path":[4,115,2,2,3],"span":[2121,30,31]},{"path":[4,115,2,3],"span":[2122,2,29]},{"path":[4,115,2,3,4],"span":[2122,2,10]},{"path":[4,115,2,3,5],"span":[2122,11,16]},{"path":[4,115,2,3,1],"span":[2122,17,24]},{"path":[4,115,2,3,3],"span":[2122,27,28]},{"path":[4,115,2,4],"span":[2124,2,31]},{"path":[4,115,2,4,4],"span":[2124,2,10]},{"path":[4,115,2,4,5],"span":[2124,11,16]},{"path":[4,115,2,4,1],"span":[2124,17,26]},{"path":[4,115,2,4,3],"span":[2124,29,30]},{"path":[4,115,2,5],"span":[2125,2,30]},{"path":[4,115,2,5,4],"span":[2125,2,10]},{"path":[4,115,2,5,5],"span":[2125,11,15]},{"path":[4,115,2,5,1],"span":[2125,16,25]},{"path":[4,115,2,5,3],"span":[2125,28,29]},{"path":[4,115,2,6],"span":[2126,2,36]},{"path":[4,115,2,6,4],"span":[2126,2,10]},{"path":[4,115,2,6,5],"span":[2126,11,17]},{"path":[4,115,2,6,1],"span":[2126,18,31]},{"path":[4,115,2,6,3],"span":[2126,34,35]},{"path":[4,115,2,7],"span":[2127,2,35]},{"path":[4,115,2,7,4],"span":[2127,2,10]},{"path":[4,115,2,7,5],"span":[2127,11,17]},{"path":[4,115,2,7,1],"span":[2127,18,30]},{"path":[4,115,2,7,3],"span":[2127,33,34]},{"path":[4,115,2,8],"span":[2129,2,33]},{"path":[4,115,2,8,4],"span":[2129,2,10]},{"path":[4,115,2,8,5],"span":[2129,11,17]},{"path":[4,115,2,8,1],"span":[2129,18,27]},{"path":[4,115,2,8,3],"span":[2129,30,32]},{"path":[4,115,2,9],"span":[2130,2,38]},{"path":[4,115,2,9,4],"span":[2130,2,10]},{"path":[4,115,2,9,5],"span":[2130,11,17]},{"path":[4,115,2,9,1],"span":[2130,18,32]},{"path":[4,115,2,9,3],"span":[2130,35,37]},{"path":[4,115,2,10],"span":[2131,2,36]},{"path":[4,115,2,10,4],"span":[2131,2,10]},{"path":[4,115,2,10,5],"span":[2131,11,17]},{"path":[4,115,2,10,1],"span":[2131,18,30]},{"path":[4,115,2,10,3],"span":[2131,33,35]},{"path":[4,115,2,11],"span":[2132,2,40]},{"path":[4,115,2,11,4],"span":[2132,2,10]},{"path":[4,115,2,11,5],"span":[2132,11,17]},{"path":[4,115,2,11,1],"span":[2132,18,34]},{"path":[4,115,2,11,3],"span":[2132,37,39]},{"path":[4,115,2,12],"span":[2133,2,31]},{"path":[4,115,2,12,4],"span":[2133,2,10]},{"path":[4,115,2,12,5],"span":[2133,11,17]},{"path":[4,115,2,12,1],"span":[2133,18,25]},{"path":[4,115,2,12,3],"span":[2133,28,30]},{"path":[4,115,2,13],"span":[2134,2,36]},{"path":[4,115,2,13,4],"span":[2134,2,10]},{"path":[4,115,2,13,5],"span":[2134,11,17]},{"path":[4,115,2,13,1],"span":[2134,18,30]},{"path":[4,115,2,13,3],"span":[2134,33,35]},{"path":[4,115,2,14],"span":[2135,2,35]},{"path":[4,115,2,14,4],"span":[2135,2,10]},{"path":[4,115,2,14,5],"span":[2135,11,16]},{"path":[4,115,2,14,1],"span":[2135,17,29]},{"path":[4,115,2,14,3],"span":[2135,32,34]},{"path":[4,115,2,15],"span":[2136,2,29]},{"path":[4,115,2,15,4],"span":[2136,2,10]},{"path":[4,115,2,15,5],"span":[2136,11,17]},{"path":[4,115,2,15,1],"span":[2136,18,23]},{"path":[4,115,2,15,3],"span":[2136,26,28]},{"path":[4,115,2,16],"span":[2137,2,33]},{"path":[4,115,2,16,4],"span":[2137,2,10]},{"path":[4,115,2,16,5],"span":[2137,11,17]},{"path":[4,115,2,16,1],"span":[2137,18,27]},{"path":[4,115,2,16,3],"span":[2137,30,32]},{"path":[4,115,2,17],"span":[2138,2,32]},{"path":[4,115,2,17,4],"span":[2138,2,10]},{"path":[4,115,2,17,5],"span":[2138,11,17]},{"path":[4,115,2,17,1],"span":[2138,18,26]},{"path":[4,115,2,17,3],"span":[2138,29,31]},{"path":[4,115,2,18],"span":[2139,2,35]},{"path":[4,115,2,18,4],"span":[2139,2,10]},{"path":[4,115,2,18,5],"span":[2139,11,17]},{"path":[4,115,2,18,1],"span":[2139,18,29]},{"path":[4,115,2,18,3],"span":[2139,32,34]},{"path":[4,115,2,19],"span":[2141,2,36]},{"path":[4,115,2,19,4],"span":[2141,2,10]},{"path":[4,115,2,19,5],"span":[2141,11,17]},{"path":[4,115,2,19,1],"span":[2141,18,30]},{"path":[4,115,2,19,3],"span":[2141,33,35]},{"path":[4,115,2,20],"span":[2142,2,38]},{"path":[4,115,2,20,4],"span":[2142,2,10]},{"path":[4,115,2,20,5],"span":[2142,11,16]},{"path":[4,115,2,20,1],"span":[2142,17,32]},{"path":[4,115,2,20,3],"span":[2142,35,37]},{"path":[4,115,2,21],"span":[2143,2,47]},{"path":[4,115,2,21,4],"span":[2143,2,10]},{"path":[4,115,2,21,5],"span":[2143,11,16]},{"path":[4,115,2,21,1],"span":[2143,17,41]},{"path":[4,115,2,21,3],"span":[2143,44,46]},{"path":[4,115,2,22],"span":[2144,2,30]},{"path":[4,115,2,22,4],"span":[2144,2,10]},{"path":[4,115,2,22,5],"span":[2144,11,16]},{"path":[4,115,2,22,1],"span":[2144,17,24]},{"path":[4,115,2,22,3],"span":[2144,27,29]},{"path":[4,115,2,23],"span":[2145,2,29]},{"path":[4,115,2,23,4],"span":[2145,2,10]},{"path":[4,115,2,23,5],"span":[2145,11,16]},{"path":[4,115,2,23,1],"span":[2145,17,23]},{"path":[4,115,2,23,3],"span":[2145,26,28]},{"path":[4,115,2,24],"span":[2146,2,29]},{"path":[4,115,2,24,4],"span":[2146,2,10]},{"path":[4,115,2,24,5],"span":[2146,11,16]},{"path":[4,115,2,24,1],"span":[2146,17,23]},{"path":[4,115,2,24,3],"span":[2146,26,28]},{"path":[4,115,2,25],"span":[2147,2,36]},{"path":[4,115,2,25,4],"span":[2147,2,10]},{"path":[4,115,2,25,5],"span":[2147,11,17]},{"path":[4,115,2,25,1],"span":[2147,18,30]},{"path":[4,115,2,25,3],"span":[2147,33,35]},{"path":[4,115,2,26],"span":[2148,2,39]},{"path":[4,115,2,26,4],"span":[2148,2,10]},{"path":[4,115,2,26,5],"span":[2148,11,16]},{"path":[4,115,2,26,1],"span":[2148,17,33]},{"path":[4,115,2,26,3],"span":[2148,36,38]},{"path":[4,115,2,27],"span":[2149,2,44]},{"path":[4,115,2,27,4],"span":[2149,2,10]},{"path":[4,115,2,27,5],"span":[2149,11,17]},{"path":[4,115,2,27,1],"span":[2149,18,38]},{"path":[4,115,2,27,3],"span":[2149,41,43]},{"path":[4,115,2,28],"span":[2151,2,36]},{"path":[4,115,2,28,4],"span":[2151,2,10]},{"path":[4,115,2,28,5],"span":[2151,11,17]},{"path":[4,115,2,28,1],"span":[2151,18,30]},{"path":[4,115,2,28,3],"span":[2151,33,35]},{"path":[4,115,2,29],"span":[2152,2,37]},{"path":[4,115,2,29,4],"span":[2152,2,10]},{"path":[4,115,2,29,5],"span":[2152,11,16]},{"path":[4,115,2,29,1],"span":[2152,17,31]},{"path":[4,115,2,29,3],"span":[2152,34,36]},{"path":[4,115,2,30],"span":[2153,2,42]},{"path":[4,115,2,30,4],"span":[2153,2,10]},{"path":[4,115,2,30,5],"span":[2153,11,17]},{"path":[4,115,2,30,1],"span":[2153,18,36]},{"path":[4,115,2,30,3],"span":[2153,39,41]},{"path":[4,115,2,31],"span":[2154,2,38]},{"path":[4,115,2,31,4],"span":[2154,2,10]},{"path":[4,115,2,31,5],"span":[2154,11,17]},{"path":[4,115,2,31,1],"span":[2154,18,32]},{"path":[4,115,2,31,3],"span":[2154,35,37]},{"path":[4,115,2,32],"span":[2155,2,42]},{"path":[4,115,2,32,4],"span":[2155,2,10]},{"path":[4,115,2,32,5],"span":[2155,11,17]},{"path":[4,115,2,32,1],"span":[2155,18,36]},{"path":[4,115,2,32,3],"span":[2155,39,41]},{"path":[4,115,2,33],"span":[2156,2,39]},{"path":[4,115,2,33,4],"span":[2156,2,10]},{"path":[4,115,2,33,5],"span":[2156,11,17]},{"path":[4,115,2,33,1],"span":[2156,18,33]},{"path":[4,115,2,33,3],"span":[2156,36,38]},{"path":[4,115,2,34],"span":[2157,2,34]},{"path":[4,115,2,34,4],"span":[2157,2,10]},{"path":[4,115,2,34,5],"span":[2157,11,17]},{"path":[4,115,2,34,1],"span":[2157,18,28]},{"path":[4,115,2,34,3],"span":[2157,31,33]},{"path":[4,115,2,35],"span":[2158,2,34]},{"path":[4,115,2,35,4],"span":[2158,2,10]},{"path":[4,115,2,35,5],"span":[2158,11,17]},{"path":[4,115,2,35,1],"span":[2158,18,28]},{"path":[4,115,2,35,3],"span":[2158,31,33]},{"path":[4,115,2,36],"span":[2159,2,33]},{"path":[4,115,2,36,4],"span":[2159,2,10]},{"path":[4,115,2,36,5],"span":[2159,11,17]},{"path":[4,115,2,36,1],"span":[2159,18,27]},{"path":[4,115,2,36,3],"span":[2159,30,32]},{"path":[4,115,2,37],"span":[2161,2,33]},{"path":[4,115,2,37,4],"span":[2161,2,10]},{"path":[4,115,2,37,5],"span":[2161,11,15]},{"path":[4,115,2,37,1],"span":[2161,16,27]},{"path":[4,115,2,37,3],"span":[2161,30,32]},{"path":[4,115,2,38],"span":[2162,2,36]},{"path":[4,115,2,38,4],"span":[2162,2,10]},{"path":[4,115,2,38,5],"span":[2162,11,15]},{"path":[4,115,2,38,1],"span":[2162,16,30]},{"path":[4,115,2,38,3],"span":[2162,33,35]},{"path":[4,115,2,39],"span":[2163,2,38]},{"path":[4,115,2,39,4],"span":[2163,2,10]},{"path":[4,115,2,39,5],"span":[2163,11,15]},{"path":[4,115,2,39,1],"span":[2163,16,32]},{"path":[4,115,2,39,3],"span":[2163,35,37]},{"path":[4,115,2,40],"span":[2164,2,34]},{"path":[4,115,2,40,4],"span":[2164,2,10]},{"path":[4,115,2,40,5],"span":[2164,11,15]},{"path":[4,115,2,40,1],"span":[2164,16,28]},{"path":[4,115,2,40,3],"span":[2164,31,33]},{"path":[4,115,2,41],"span":[2165,2,33]},{"path":[4,115,2,41,4],"span":[2165,2,10]},{"path":[4,115,2,41,5],"span":[2165,11,15]},{"path":[4,115,2,41,1],"span":[2165,16,27]},{"path":[4,115,2,41,3],"span":[2165,30,32]},{"path":[4,115,2,42],"span":[2166,2,38]},{"path":[4,115,2,42,4],"span":[2166,2,10]},{"path":[4,115,2,42,5],"span":[2166,11,15]},{"path":[4,115,2,42,1],"span":[2166,16,32]},{"path":[4,115,2,42,3],"span":[2166,35,37]},{"path":[4,115,2,43],"span":[2167,2,36]},{"path":[4,115,2,43,4],"span":[2167,2,10]},{"path":[4,115,2,43,5],"span":[2167,11,15]},{"path":[4,115,2,43,1],"span":[2167,16,30]},{"path":[4,115,2,43,3],"span":[2167,33,35]},{"path":[4,115,2,44],"span":[2169,2,59]},{"path":[4,115,2,44,4],"span":[2169,2,10]},{"path":[4,115,2,44,6],"span":[2169,11,36]},{"path":[4,115,2,44,1],"span":[2169,37,53]},{"path":[4,115,2,44,3],"span":[2169,56,58]},{"path":[4,115,2,45],"span":[2171,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,115,2,45,4],"span":[2171,2,10]},{"path":[4,115,2,45,5],"span":[2171,11,16]},{"path":[4,115,2,45,1],"span":[2171,17,28]},{"path":[4,115,2,45,3],"span":[2171,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":"success","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"success","proto3Optional":true},{"name":"error_description","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"errorDescription","proto3Optional":true}],"oneofDecl":[{"name":"_success"},{"name":"_error_description"}]},{"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":"last_synced_source_agent","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"lastSyncedSourceAgent","proto3Optional":true},{"name":"last_synced_source_name","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSourceName","proto3Optional":true},{"name":"source_info","number":74,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SourceInfo","jsonName":"sourceInfo"},{"name":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"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":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":3,"jsonName":"internetIp","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":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":4,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":5,"jsonName":"os","proto3Optional":true},{"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":"network_protocols","number":76,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkProtocols","oneofIndex":8,"jsonName":"networkProtocols","proto3Optional":true},{"name":"port_scan","number":77,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortScan","oneofIndex":9,"jsonName":"portScan","proto3Optional":true},{"name":"computer","number":75,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Computer","oneofIndex":10,"jsonName":"computer","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":11,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":12,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_unique_key"},{"name":"_internet_ip"},{"name":"_hw"},{"name":"_os"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_network_protocols"},{"name":"_port_scan"},{"name":"_computer"},{"name":"_ot_module"},{"name":"_cloud"}],"reservedRange":[{"start":9,"end":10},{"start":26,"end":27},{"start":13,"end":14},{"start":37,"end":38},{"start":15,"end":16},{"start":18,"end":19},{"start":19,"end":20},{"start":21,"end":22},{"start":24,"end":25},{"start":25,"end":26},{"start":27,"end":28},{"start":30,"end":31},{"start":28,"end":29},{"start":29,"end":30},{"start":31,"end":32}]},{"name":"Computer","field":[{"name":"chassis","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":0,"jsonName":"chassis","proto3Optional":true},{"name":"motherboard","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":1,"jsonName":"motherboard","proto3Optional":true},{"name":"processor","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"memory","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":2,"jsonName":"memory","proto3Optional":true},{"name":"graphics_card","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"computer_bus","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBus","jsonName":"computerBus"},{"name":"computer_infrared","number":10,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerInfrared","jsonName":"computerInfrared"},{"name":"parallel_port","number":11,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ParallelPort","jsonName":"parallelPort"},{"name":"serial_port","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SerialPort","jsonName":"serialPort"},{"name":"pcmcia","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PcmciaController","jsonName":"pcmcia"},{"name":"port_connector","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortConnector","jsonName":"portConnector"},{"name":"scsi_controller","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScsiController","jsonName":"scsiController"},{"name":"computer_battery","number":16,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBattery","jsonName":"computerBattery"},{"name":"portable_battery","number":17,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortableBattery","jsonName":"portableBattery"},{"name":"optical_drive","number":18,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":19,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"tpm","number":21,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.TrustedPlatformModule","jsonName":"tpm"},{"name":"usb_controller","number":22,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbController","jsonName":"usbController"},{"name":"usb_device_info","number":23,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbDeviceInfo","jsonName":"usbDeviceInfo"},{"name":"modem","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedModem","jsonName":"modem"},{"name":"printer","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedPrinter","jsonName":"printer"},{"name":"tape_drive","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive","jsonName":"tapeDrive"},{"name":"windows_desktop","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktop","jsonName":"windowsDesktop"},{"name":"windows_display","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplay","jsonName":"windowsDisplay"},{"name":"windows_display_controller","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplayController","jsonName":"windowsDisplayController"},{"name":"windows_ide_controller","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsIdeController","jsonName":"windowsIdeController"},{"name":"windows_disk_partition","number":31,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDiskPartition","jsonName":"windowsDiskPartition"},{"name":"bios","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Bios","oneofIndex":3,"jsonName":"bios","proto3Optional":true},{"name":"os_patch","number":102,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":103,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":104,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":4,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":105,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"computer_system_product","number":106,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerSystemProduct","oneofIndex":5,"jsonName":"computerSystemProduct","proto3Optional":true},{"name":"software_inventory","number":201,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":6,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":202,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"auto_run_command","number":203,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":204,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":7,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":205,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":206,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":207,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"internet_explorer","number":208,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer","oneofIndex":8,"jsonName":"internetExplorer","proto3Optional":true},{"name":"windows_sql_server","number":209,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","oneofIndex":9,"jsonName":"windowsSqlServer","proto3Optional":true},{"name":"windows_network_client","number":210,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient","jsonName":"windowsNetworkClient"},{"name":"network_volume","number":211,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"last_user","number":301,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":10,"jsonName":"lastUser","proto3Optional":true},{"name":"user","number":302,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserAccount","jsonName":"user"},{"name":"user_group","number":303,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserGroup","jsonName":"userGroup"},{"name":"user_in_group","number":304,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserInGroup","jsonName":"userInGroup"}],"oneofDecl":[{"name":"_chassis"},{"name":"_motherboard"},{"name":"_memory"},{"name":"_bios"},{"name":"_os_recovery"},{"name":"_computer_system_product"},{"name":"_software_inventory"},{"name":"_boot_config"},{"name":"_internet_explorer"},{"name":"_windows_sql_server"},{"name":"_last_user"}]},{"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":"environment_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentId"},{"name":"cloud_provider","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"cloudProvider"},{"name":"region_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"regionId","proto3Optional":true},{"name":"environment_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentName"},{"name":"category","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"}],"oneofDecl":[{"name":"_region_id"}]},{"name":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"bus_config","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtBusConfig","oneofIndex":1,"jsonName":"busConfig","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":"scan_protocol","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"scanProtocol","proto3Optional":true},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"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":4,"jsonName":"routePath","proto3Optional":true}],"oneofDecl":[{"name":"_component_type"},{"name":"_bus_config"},{"name":"_scan_protocol"},{"name":"_part_number"},{"name":"_route_path"}]},{"name":"OtBusConfig","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":"start_index","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"startIndex"},{"name":"position","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"position","proto3Optional":true},{"name":"width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"width","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_position"},{"name":"_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":"SourceInfo","field":[{"name":"source_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceId"},{"name":"source_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceType"},{"name":"source_agent","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceAgent","proto3Optional":true},{"name":"source_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceName","proto3Optional":true},{"name":"raw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rawId"},{"name":"last_synced","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"}],"oneofDecl":[{"name":"_source_agent"},{"name":"_source_name"}]},{"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},{"name":"confidence","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"confidence"}],"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":"UserAccount","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"domain","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"domain","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"description","proto3Optional":true},{"name":"full_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"fullName","proto3Optional":true},{"name":"account_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"accountType","proto3Optional":true},{"name":"sid","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sid","proto3Optional":true},{"name":"sid_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"sidType","proto3Optional":true},{"name":"local_account","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"localAccount","proto3Optional":true},{"name":"disabled","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"disabled","proto3Optional":true},{"name":"lockout","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":10,"jsonName":"lockout","proto3Optional":true},{"name":"password_changeable","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"passwordChangeable","proto3Optional":true},{"name":"password_expires","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"passwordExpires","proto3Optional":true},{"name":"password_required","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"passwordRequired","proto3Optional":true},{"name":"status","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"status","proto3Optional":true},{"name":"user_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"userId","proto3Optional":true},{"name":"group_id","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"groupId","proto3Optional":true},{"name":"home_directory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"homeDirectory","proto3Optional":true},{"name":"login_shell","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"loginShell","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_domain"},{"name":"_caption"},{"name":"_description"},{"name":"_full_name"},{"name":"_account_type"},{"name":"_sid"},{"name":"_sid_type"},{"name":"_local_account"},{"name":"_disabled"},{"name":"_lockout"},{"name":"_password_changeable"},{"name":"_password_expires"},{"name":"_password_required"},{"name":"_status"},{"name":"_user_id"},{"name":"_group_id"},{"name":"_home_directory"},{"name":"_login_shell"}]},{"name":"UserGroup","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":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"domain","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"domain","proto3Optional":true},{"name":"sid","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"sid","proto3Optional":true},{"name":"local_account","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"localAccount","proto3Optional":true},{"name":"group_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"groupId","proto3Optional":true},{"name":"type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_description"},{"name":"_domain"},{"name":"_sid"},{"name":"_local_account"},{"name":"_group_id"},{"name":"_type"}]},{"name":"UserInGroup","field":[{"name":"group_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"groupName","proto3Optional":true},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userName","proto3Optional":true},{"name":"user_domain_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"userDomainName","proto3Optional":true},{"name":"account_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"accountType","proto3Optional":true},{"name":"is_admin_group","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isAdminGroup","proto3Optional":true}],"oneofDecl":[{"name":"_group_name"},{"name":"_user_name"},{"name":"_user_domain_name"},{"name":"_account_type"},{"name":"_is_admin_group"}]},{"name":"InternetExplorer","field":[{"name":"active_x","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX","jsonName":"activeX"},{"name":"bar","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"bar"},{"name":"browser_object","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"browserObject"},{"name":"extension","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.Extension","jsonName":"extension"}],"nestedType":[{"name":"ActiveX","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"code_base","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"codeBase","proto3Optional":true},{"name":"info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"osd","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"osd","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_code_base"},{"name":"_info"},{"name":"_osd"}]},{"name":"Extension","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"button_text","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"buttonText","proto3Optional":true},{"name":"cls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"clsId","proto3Optional":true},{"name":"default_visible","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"defaultVisible","proto3Optional":true},{"name":"exec","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"exec","proto3Optional":true},{"name":"hot_icon","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"hotIcon","proto3Optional":true},{"name":"icon","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"icon","proto3Optional":true},{"name":"menu_text","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"menuText","proto3Optional":true},{"name":"tooltip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"tooltip","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_button_text"},{"name":"_cls_id"},{"name":"_default_visible"},{"name":"_exec"},{"name":"_hot_icon"},{"name":"_icon"},{"name":"_menu_text"},{"name":"_tooltip"}]},{"name":"BrowserObject","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]},{"name":"BarInfo","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]}]},{"name":"WindowsSqlServer","field":[{"name":"is_clustered","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isClustered"},{"name":"sql_authentication_mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer.SqlAuthenticationMode","jsonName":"sqlAuthenticationMode"},{"name":"databases","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerDatabase","jsonName":"databases"},{"name":"services","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService","jsonName":"services"},{"name":"service_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"serviceName"},{"name":"display_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayVersion"},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"version"},{"name":"sp_level","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"spLevel","proto3Optional":true},{"name":"sku_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"skuName","proto3Optional":true},{"name":"language","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"language","proto3Optional":true},{"name":"is_wow64","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isWow64","proto3Optional":true},{"name":"install_path","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"installPath","proto3Optional":true},{"name":"file_version","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileVersion","proto3Optional":true},{"name":"data_path","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dataPath","proto3Optional":true},{"name":"cluster","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerCluster","oneofIndex":7,"jsonName":"cluster","proto3Optional":true},{"name":"instance_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"instanceId"},{"name":"instance_name","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"instanceName","proto3Optional":true}],"enumType":[{"name":"SqlAuthenticationMode","value":[{"name":"UNKNOWN_MODE","number":0},{"name":"WINDOWS","number":1},{"name":"MIXED","number":2}]}],"oneofDecl":[{"name":"_sp_level"},{"name":"_sku_name"},{"name":"_language"},{"name":"_is_wow64"},{"name":"_install_path"},{"name":"_file_version"},{"name":"_data_path"},{"name":"_cluster"},{"name":"_instance_name"}]},{"name":"SqlServerDatabase","field":[{"name":"data_files_size_kb","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"dataFilesSizeKb","proto3Optional":true},{"name":"log_files_size_kb","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"logFilesSizeKb","proto3Optional":true},{"name":"log_files_used_size_kb","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"logFilesUsedSizeKb","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_data_files_size_kb"},{"name":"_log_files_size_kb"},{"name":"_log_files_used_size_kb"},{"name":"_name"}]},{"name":"SqlServerService","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceState","oneofIndex":0,"jsonName":"state","proto3Optional":true},{"name":"startup_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceStartupType","oneofIndex":1,"jsonName":"startupType","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"instance_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"instanceId","proto3Optional":true}],"enumType":[{"name":"ServiceState","value":[{"name":"NO_SERVICE_STATE","number":0},{"name":"STOPPED","number":1},{"name":"START_PENDING","number":2},{"name":"STOP_PENDING","number":3},{"name":"RUNNING","number":4},{"name":"CONTINUE_PENDING","number":5},{"name":"PAUSE_PENDING","number":6},{"name":"PAUSED","number":7}]},{"name":"ServiceStartupType","value":[{"name":"NO_SERVICE_STARTUP_TYPE","number":0},{"name":"OTHER_STARTYP_TYPE","number":1},{"name":"AUTOMATIC","number":2},{"name":"MANUAL","number":3},{"name":"DISABLED","number":4}]}],"oneofDecl":[{"name":"_state"},{"name":"_startup_type"},{"name":"_name"},{"name":"_instance_id"}]},{"name":"SqlServerCluster","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"cluster_nodes","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerClusterNode","jsonName":"clusterNodes"}],"oneofDecl":[{"name":"_name"}]},{"name":"SqlServerClusterNode","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"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":"type_caption","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"typeCaption","proto3Optional":true},{"name":"type_group","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"typeGroup","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":14,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":15,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":16,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":17,"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":"_type_caption"},{"name":"_type_group"},{"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},{"name":"bus_speed","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"busSpeed","proto3Optional":true},{"name":"boot_rom_version","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootRomVersion","proto3Optional":true},{"name":"smc_version_system","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"smcVersionSystem","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"},{"name":"_bus_speed"},{"name":"_boot_rom_version"},{"name":"_smc_version_system"}]},{"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},{"name":"system_version","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"systemVersion","proto3Optional":true},{"name":"boot_volume","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"bootMode","proto3Optional":true},{"name":"computer_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"computerName","proto3Optional":true},{"name":"user_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userName","proto3Optional":true},{"name":"up_time","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"upTime","proto3Optional":true},{"name":"secure_virtual_memory","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"secureVirtualMemory","proto3Optional":true},{"name":"sixty_four_bit_kernel_and_exts","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"sixtyFourBitKernelAndExts","proto3Optional":true},{"name":"system_integrity","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"systemIntegrity","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"},{"name":"_system_version"},{"name":"_boot_volume"},{"name":"_boot_mode"},{"name":"_computer_name"},{"name":"_user_name"},{"name":"_up_time"},{"name":"_secure_virtual_memory"},{"name":"_sixty_four_bit_kernel_and_exts"},{"name":"_system_integrity"}]},{"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":"NetworkProtocols","field":[{"name":"protocol","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"protocol"}]},{"name":"PortScan","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"scanned_port","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScannedPort","jsonName":"scannedPort"}]},{"name":"ScannedPort","field":[{"name":"protocol","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"protocol"},{"name":"port_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"portNumber"},{"name":"local_address","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"localAddress","proto3Optional":true},{"name":"process_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"processName","proto3Optional":true},{"name":"banner","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"banner","proto3Optional":true},{"name":"http_server","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpServerInfo","oneofIndex":3,"jsonName":"httpServer","proto3Optional":true}],"oneofDecl":[{"name":"_local_address"},{"name":"_process_name"},{"name":"_banner"},{"name":"_http_server"}]},{"name":"HttpServerInfo","field":[{"name":"port","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"port"},{"name":"ssl","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ssl","proto3Optional":true},{"name":"server","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"server"},{"name":"wwwauth","number":4,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"wwwauth"},{"name":"cookie","number":5,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"cookie"},{"name":"title","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"title","proto3Optional":true},{"name":"favicon_md5","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"faviconMd5","proto3Optional":true},{"name":"favicon","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":3,"jsonName":"favicon","proto3Optional":true},{"name":"certificates","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate","jsonName":"certificates"}],"oneofDecl":[{"name":"_ssl"},{"name":"_title"},{"name":"_favicon_md5"},{"name":"_favicon"}]},{"name":"HttpCertificate","field":[{"name":"thumbprint","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"thumbprint","proto3Optional":true},{"name":"serial_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"x509_issuer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"x509Issuer","proto3Optional":true},{"name":"x509_subject","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"x509Subject","proto3Optional":true},{"name":"effective_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":4,"jsonName":"effectiveDate","proto3Optional":true},{"name":"expiration_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"expirationDate","proto3Optional":true},{"name":"errors","number":7,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate.SslPolicyErrors","jsonName":"errors"}],"enumType":[{"name":"SslPolicyErrors","value":[{"name":"SSL_REMOTE_CERTIFICATE_NOT_AVAILABLE","number":0},{"name":"SSL_REMOTE_CERTIFICATE_NAME_MISMATCH","number":1},{"name":"SSL_REMOTE_CERTIFICATE_CHAIN_ERRORS","number":2}]}],"oneofDecl":[{"name":"_thumbprint"},{"name":"_serial_number"},{"name":"_x509_issuer"},{"name":"_x509_subject"},{"name":"_effective_date"},{"name":"_expiration_date"}]},{"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":"ComputerBus","field":[{"name":"bus_num","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"busNum","proto3Optional":true},{"name":"bus_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"busType","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"pnp_device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"pnpDeviceId","proto3Optional":true}],"oneofDecl":[{"name":"_bus_num"},{"name":"_bus_type"},{"name":"_device_id"},{"name":"_pnp_device_id"}]},{"name":"ComputerInfrared","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":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"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":"ParallelPort","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"availability","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"availability","proto3Optional":true},{"name":"protocol_supported","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"pnp_device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"config_manager_user_config","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"os_auto_discovered","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"power_management_supported","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"powerManagementSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_availability"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_pnp_device_id"},{"name":"_config_manager_user_config"},{"name":"_os_auto_discovered"},{"name":"_power_management_supported"}]},{"name":"SerialPort","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":"binary","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"binary","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"max_baud_rate","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"maxBaudRate","proto3Optional":true},{"name":"maximum_input_buffer_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maximumInputBufferSize","proto3Optional":true},{"name":"maximum_output_buffer_size","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maximumOutputBufferSize","proto3Optional":true},{"name":"os_auto_discovered","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"pnp_device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"provider_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerType","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_binary"},{"name":"_caption"},{"name":"_device_id"},{"name":"_max_baud_rate"},{"name":"_maximum_input_buffer_size"},{"name":"_maximum_output_buffer_size"},{"name":"_os_auto_discovered"},{"name":"_pnp_device_id"},{"name":"_provider_type"}]},{"name":"PcmciaController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"protocol_supported","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"name":"PortConnector","field":[{"name":"connector_type","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"connectorType"},{"name":"external_reference_designator","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"externalReferenceDesignator","proto3Optional":true},{"name":"internal_reference_designator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"internalReferenceDesignator","proto3Optional":true},{"name":"port_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"portType","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"tag","proto3Optional":true}],"oneofDecl":[{"name":"_external_reference_designator"},{"name":"_internal_reference_designator"},{"name":"_port_type"},{"name":"_tag"}]},{"name":"ScsiController","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":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_device_id"},{"name":"_driver_name"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerSystemProduct","field":[{"name":"identifying_number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"identifyingNumber","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"uuid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"uuid","proto3Optional":true},{"name":"vendor","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_identifying_number"},{"name":"_name"},{"name":"_uuid"},{"name":"_vendor"},{"name":"_version"}]},{"name":"TrustedPlatformModule","field":[{"name":"is_initial_value_activated","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isInitialValueActivated","proto3Optional":true},{"name":"is_initial_value_enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isInitialValueEnabled","proto3Optional":true},{"name":"is_initial_value_owned","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isInitialValueOwned","proto3Optional":true},{"name":"spec_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"specVersion","proto3Optional":true},{"name":"manufacturer_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturerVersion","proto3Optional":true},{"name":"manufacturer_version_info","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturerVersionInfo","proto3Optional":true},{"name":"manufacturer_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufacturerId","proto3Optional":true},{"name":"manufacturer_version_full20","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturerVersionFull20","proto3Optional":true},{"name":"manufacturer_id_txt","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"manufacturerIdTxt","proto3Optional":true},{"name":"physical_presence_version_info","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"physicalPresenceVersionInfo","proto3Optional":true}],"oneofDecl":[{"name":"_is_initial_value_activated"},{"name":"_is_initial_value_enabled"},{"name":"_is_initial_value_owned"},{"name":"_spec_version"},{"name":"_manufacturer_version"},{"name":"_manufacturer_version_info"},{"name":"_manufacturer_id"},{"name":"_manufacturer_version_full20"},{"name":"_manufacturer_id_txt"},{"name":"_physical_presence_version_info"}]},{"name":"ComputerConnectedUsbController","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":"protocol_supported","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerConnectedUsbDeviceInfo","field":[{"name":"device_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceKey"},{"name":"device_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceValue"},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"manufacturer"}]},{"name":"ComputerConnectedModem","field":[{"name":"attached_to","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"attachedTo","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"country_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryInfo","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"device_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceType","proto3Optional":true},{"name":"max_baud_rate_to_phone","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maxBaudRateToPhone","proto3Optional":true},{"name":"max_baud_rate_to_serial_port","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maxBaudRateToSerialPort","proto3Optional":true},{"name":"modem_inf_path","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"modemInfPath","proto3Optional":true},{"name":"modem_inf_section","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modemInfSection","proto3Optional":true},{"name":"provider_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerName","proto3Optional":true},{"name":"hw_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hwVersion","proto3Optional":true},{"name":"interface_type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"interfaceType","proto3Optional":true},{"name":"model","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"model","proto3Optional":true},{"name":"modulation","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"modulation","proto3Optional":true}],"oneofDecl":[{"name":"_attached_to"},{"name":"_caption"},{"name":"_country_info"},{"name":"_device_id"},{"name":"_device_type"},{"name":"_max_baud_rate_to_phone"},{"name":"_max_baud_rate_to_serial_port"},{"name":"_modem_inf_path"},{"name":"_modem_inf_section"},{"name":"_provider_name"},{"name":"_hw_version"},{"name":"_interface_type"},{"name":"_model"},{"name":"_modulation"}]},{"name":"ComputerConnectedPrinter","field":[{"name":"capability_descriptions","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"capabilityDescriptions"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"port_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"portName","proto3Optional":true},{"name":"print_job_data_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"printJobDataType","proto3Optional":true},{"name":"print_processor","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"printProcessor","proto3Optional":true},{"name":"share_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"shareName","proto3Optional":true},{"name":"status","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"status","proto3Optional":true},{"name":"comment","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"comment","proto3Optional":true},{"name":"horizontal_resolution","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"vertical_resolution","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"verticalResolution","proto3Optional":true},{"name":"enable_bidi","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"enableBidi","proto3Optional":true},{"name":"local","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"local","proto3Optional":true},{"name":"network","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"network","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_location"},{"name":"_port_name"},{"name":"_print_job_data_type"},{"name":"_print_processor"},{"name":"_share_name"},{"name":"_status"},{"name":"_comment"},{"name":"_horizontal_resolution"},{"name":"_vertical_resolution"},{"name":"_enable_bidi"},{"name":"_local"},{"name":"_network"}]},{"name":"ComputerConnectedTapeDrive","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":"capabilities","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"compression","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"compression","proto3Optional":true},{"name":"default_block_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"defaultBlockSize","proto3Optional":true},{"name":"device_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_block_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"maxBlockSize","proto3Optional":true},{"name":"max_media_size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"maxMediaSize","proto3Optional":true},{"name":"max_partition_count","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxPartitionCount","proto3Optional":true},{"name":"media_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"mediaType","proto3Optional":true},{"name":"min_block_size","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"minBlockSize","proto3Optional":true},{"name":"needs_cleaning","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"needsCleaning","proto3Optional":true},{"name":"number_of_media_supported","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"numberOfMediaSupported","proto3Optional":true},{"name":"padding","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"padding","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_compression"},{"name":"_default_block_size"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_max_block_size"},{"name":"_max_media_size"},{"name":"_max_partition_count"},{"name":"_media_type"},{"name":"_min_block_size"},{"name":"_needs_cleaning"},{"name":"_number_of_media_supported"},{"name":"_padding"}]},{"name":"ComputerWindowsDesktop","field":[{"name":"border_width","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"borderWidth","proto3Optional":true},{"name":"cool_switch","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"coolSwitch","proto3Optional":true},{"name":"cursor_blink_rate","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"cursorBlinkRate","proto3Optional":true},{"name":"drag_full_windows","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"dragFullWindows","proto3Optional":true},{"name":"grid_granularity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"gridGranularity","proto3Optional":true},{"name":"icon_spacing","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"iconSpacing","proto3Optional":true},{"name":"icon_title_facename","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"iconTitleFacename","proto3Optional":true},{"name":"icon_title_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"iconTitleSize","proto3Optional":true},{"name":"icon_title_wrap","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"iconTitleWrap","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"pattern","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pattern","proto3Optional":true},{"name":"screensaver_active","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"screensaverActive","proto3Optional":true},{"name":"screensaver_executable","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"screensaverExecutable","proto3Optional":true},{"name":"screensaver_secure","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"screensaverSecure","proto3Optional":true},{"name":"screensavertimeout","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"screensavertimeout","proto3Optional":true},{"name":"wallpaper","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"wallpaper","proto3Optional":true},{"name":"wallpaper_stretched","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"wallpaperStretched","proto3Optional":true},{"name":"wallpaper_tiled","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"wallpaperTiled","proto3Optional":true}],"oneofDecl":[{"name":"_border_width"},{"name":"_cool_switch"},{"name":"_cursor_blink_rate"},{"name":"_drag_full_windows"},{"name":"_grid_granularity"},{"name":"_icon_spacing"},{"name":"_icon_title_facename"},{"name":"_icon_title_size"},{"name":"_icon_title_wrap"},{"name":"_name"},{"name":"_pattern"},{"name":"_screensaver_active"},{"name":"_screensaver_executable"},{"name":"_screensaver_secure"},{"name":"_screensavertimeout"},{"name":"_wallpaper"},{"name":"_wallpaper_stretched"},{"name":"_wallpaper_tiled"}]},{"name":"ComputerWindowsDisplay","field":[{"name":"bits_per_pel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceName","proto3Optional":true},{"name":"display_flags","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"displayFlags","proto3Optional":true},{"name":"display_frequency","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"displayFrequency","proto3Optional":true},{"name":"driver_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"log_pixels","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"logPixels","proto3Optional":true},{"name":"pels_height","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"pelsHeight","proto3Optional":true},{"name":"pels_width","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"pelsWidth","proto3Optional":true},{"name":"specification_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"specificationVersion","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pel"},{"name":"_caption"},{"name":"_device_name"},{"name":"_display_flags"},{"name":"_display_frequency"},{"name":"_driver_version"},{"name":"_log_pixels"},{"name":"_pels_height"},{"name":"_pels_width"},{"name":"_specification_version"}]},{"name":"ComputerWindowsDisplayController","field":[{"name":"bits_per_pixel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPixel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"color_planes","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"colorPlanes","proto3Optional":true},{"name":"device_entries_in_a_color_table","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"deviceEntriesInAColorTable","proto3Optional":true},{"name":"device_specific_pens","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"horizontal_resolution","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"name","proto3Optional":true},{"name":"refresh_rate","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"refreshRate","proto3Optional":true},{"name":"vertical_resolution","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"verticalResolution","proto3Optional":true},{"name":"video_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"videoMode","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pixel"},{"name":"_caption"},{"name":"_color_planes"},{"name":"_device_entries_in_a_color_table"},{"name":"_device_specific_pens"},{"name":"_horizontal_resolution"},{"name":"_name"},{"name":"_refresh_rate"},{"name":"_vertical_resolution"},{"name":"_video_mode"}]},{"name":"ComputerWindowsNetworkClient","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_description"},{"name":"_manufacturer"},{"name":"_name"}]},{"name":"ComputerWindowsIdeController","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":"protocol_supported","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"protocolSupported"}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"name":"ComputerWindowsDiskPartition","field":[{"name":"block_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"blockSize","proto3Optional":true},{"name":"bootable","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"bootable","proto3Optional":true},{"name":"boot_partition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"bootPartition","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"disk_index","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"diskIndex","proto3Optional":true},{"name":"index","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"index","proto3Optional":true},{"name":"number_of_blocks","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"numberOfBlocks","proto3Optional":true},{"name":"primary_partition","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"primaryPartition","proto3Optional":true},{"name":"size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"size","proto3Optional":true},{"name":"starting_offset","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"startingOffset","proto3Optional":true},{"name":"type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_block_size"},{"name":"_bootable"},{"name":"_boot_partition"},{"name":"_device_id"},{"name":"_disk_index"},{"name":"_index"},{"name":"_number_of_blocks"},{"name":"_primary_partition"},{"name":"_size"},{"name":"_starting_offset"},{"name":"_type"}]},{"name":"PortableBattery","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":"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,2175,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,78,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,5,2,5],"span":[76,2,28]},{"path":[4,5,2,5,4],"span":[76,2,10]},{"path":[4,5,2,5,5],"span":[76,11,15]},{"path":[4,5,2,5,1],"span":[76,16,23]},{"path":[4,5,2,5,3],"span":[76,26,27]},{"path":[4,5,2,6],"span":[77,2,40]},{"path":[4,5,2,6,4],"span":[77,2,10]},{"path":[4,5,2,6,5],"span":[77,11,17]},{"path":[4,5,2,6,1],"span":[77,18,35]},{"path":[4,5,2,6,3],"span":[77,38,39]},{"path":[4,6],"span":[82,0,88,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[82,8,18]},{"path":[4,6,2,0],"span":[83,2,21]},{"path":[4,6,2,0,5],"span":[83,2,8]},{"path":[4,6,2,0,1],"span":[83,9,16]},{"path":[4,6,2,0,3],"span":[83,19,20]},{"path":[4,6,2,1],"span":[84,2,32]},{"path":[4,6,2,1,4],"span":[84,2,10]},{"path":[4,6,2,1,5],"span":[84,11,17]},{"path":[4,6,2,1,1],"span":[84,18,27]},{"path":[4,6,2,1,3],"span":[84,30,31]},{"path":[4,6,2,2],"span":[85,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[85,2,10]},{"path":[4,6,2,2,5],"span":[85,11,17]},{"path":[4,6,2,2,1],"span":[85,18,29]},{"path":[4,6,2,2,3],"span":[85,32,33]},{"path":[4,6,2,3],"span":[86,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[86,2,10]},{"path":[4,6,2,3,5],"span":[86,11,17]},{"path":[4,6,2,3,1],"span":[86,18,29]},{"path":[4,6,2,3,3],"span":[86,32,33]},{"path":[4,6,2,4],"span":[87,2,32]},{"path":[4,6,2,4,4],"span":[87,2,10]},{"path":[4,6,2,4,5],"span":[87,11,17]},{"path":[4,6,2,4,1],"span":[87,18,27]},{"path":[4,6,2,4,3],"span":[87,30,31]},{"path":[4,7],"span":[91,0,97,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[91,8,14]},{"path":[4,7,8,0],"span":[92,2,96,3]},{"path":[4,7,8,0,1],"span":[92,8,14]},{"path":[4,7,2,0],"span":[93,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[93,4,9]},{"path":[4,7,2,0,1],"span":[93,10,15]},{"path":[4,7,2,0,3],"span":[93,18,19]},{"path":[4,8],"span":[102,0,162,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[102,8,13]},{"path":[4,8,2,0],"span":[104,2,20]},{"path":[4,8,2,0,6],"span":[104,2,12]},{"path":[4,8,2,0,1],"span":[104,13,15]},{"path":[4,8,2,0,3],"span":[104,18,19]},{"path":[4,8,2,1],"span":[106,2,44]},{"path":[4,8,2,1,6],"span":[106,2,27]},{"path":[4,8,2,1,1],"span":[106,28,39]},{"path":[4,8,2,1,3],"span":[106,42,43]},{"path":[4,8,2,2],"span":[107,2,43]},{"path":[4,8,2,2,6],"span":[107,2,27]},{"path":[4,8,2,2,1],"span":[107,28,38]},{"path":[4,8,2,2,3],"span":[107,41,42]},{"path":[4,8,2,3],"span":[108,2,45]},{"path":[4,8,2,3,6],"span":[108,2,27]},{"path":[4,8,2,3,1],"span":[108,28,40]},{"path":[4,8,2,3,3],"span":[108,43,44]},{"path":[4,8,2,4],"span":[109,2,46]},{"path":[4,8,2,4,6],"span":[109,2,27]},{"path":[4,8,2,4,1],"span":[109,28,41]},{"path":[4,8,2,4,3],"span":[109,44,45]},{"path":[4,8,2,5],"span":[111,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,8,2,5,4],"span":[111,2,10]},{"path":[4,8,2,5,5],"span":[111,11,17]},{"path":[4,8,2,5,1],"span":[111,18,42]},{"path":[4,8,2,5,3],"span":[111,45,47]},{"path":[4,8,2,6],"span":[112,2,47],"trailingComments":" last synced source name\n"},{"path":[4,8,2,6,4],"span":[112,2,10]},{"path":[4,8,2,6,5],"span":[112,11,17]},{"path":[4,8,2,6,1],"span":[112,18,41]},{"path":[4,8,2,6,3],"span":[112,44,46]},{"path":[4,8,2,7],"span":[119,2,39],"leadingComments":"\n Every source that contributed sending a scan for this asset is listed here.\n The source_info is a actually a map by source type/id, keeping history of scans.\n If the asset was discovered by a single sources, it's redudant with info already in main asset msg.\n"},{"path":[4,8,2,7,4],"span":[119,2,10]},{"path":[4,8,2,7,6],"span":[119,11,21]},{"path":[4,8,2,7,1],"span":[119,22,33]},{"path":[4,8,2,7,3],"span":[119,36,38]},{"path":[4,8,2,8],"span":[127,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,8,4],"span":[127,2,10]},{"path":[4,8,2,8,5],"span":[127,11,17]},{"path":[4,8,2,8,1],"span":[127,18,28]},{"path":[4,8,2,8,3],"span":[127,31,33]},{"path":[4,8,2,9],"span":[129,2,37]},{"path":[4,8,2,9,4],"span":[129,2,10]},{"path":[4,8,2,9,6],"span":[129,11,20]},{"path":[4,8,2,9,1],"span":[129,21,31]},{"path":[4,8,2,9,3],"span":[129,34,36]},{"path":[4,8,2,10],"span":[131,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,10,4],"span":[131,2,10]},{"path":[4,8,2,10,6],"span":[131,11,17]},{"path":[4,8,2,10,1],"span":[131,18,29]},{"path":[4,8,2,10,3],"span":[131,32,34]},{"path":[4,8,2,11],"span":[133,2,24]},{"path":[4,8,2,11,4],"span":[133,2,10]},{"path":[4,8,2,11,6],"span":[133,11,14]},{"path":[4,8,2,11,1],"span":[133,15,18]},{"path":[4,8,2,11,3],"span":[133,21,23]},{"path":[4,8,2,12],"span":[134,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,12,4],"span":[134,2,10]},{"path":[4,8,2,12,6],"span":[134,11,19]},{"path":[4,8,2,12,1],"span":[134,20,28]},{"path":[4,8,2,12,3],"span":[134,31,33]},{"path":[4,8,2,13],"span":[136,2,22]},{"path":[4,8,2,13,6],"span":[136,2,12]},{"path":[4,8,2,13,1],"span":[136,13,17]},{"path":[4,8,2,13,3],"span":[136,20,21]},{"path":[4,8,2,14],"span":[138,2,31]},{"path":[4,8,2,14,4],"span":[138,2,10]},{"path":[4,8,2,14,6],"span":[138,11,23]},{"path":[4,8,2,14,1],"span":[138,24,26]},{"path":[4,8,2,14,3],"span":[138,29,30]},{"path":[4,8,2,15],"span":[139,2,34]},{"path":[4,8,2,15,4],"span":[139,2,10]},{"path":[4,8,2,15,6],"span":[139,11,26]},{"path":[4,8,2,15,1],"span":[139,27,29]},{"path":[4,8,2,15,3],"span":[139,32,33]},{"path":[4,8,2,16],"span":[141,2,51]},{"path":[4,8,2,16,4],"span":[141,2,10]},{"path":[4,8,2,16,6],"span":[141,11,27]},{"path":[4,8,2,16,1],"span":[141,28,45]},{"path":[4,8,2,16,3],"span":[141,48,50]},{"path":[4,8,2,17],"span":[142,2,53]},{"path":[4,8,2,17,4],"span":[142,2,10]},{"path":[4,8,2,17,6],"span":[142,11,28]},{"path":[4,8,2,17,1],"span":[142,29,47]},{"path":[4,8,2,17,3],"span":[142,50,52]},{"path":[4,8,2,18],"span":[143,2,51]},{"path":[4,8,2,18,4],"span":[143,2,10]},{"path":[4,8,2,18,6],"span":[143,11,27]},{"path":[4,8,2,18,1],"span":[143,28,45]},{"path":[4,8,2,18,3],"span":[143,48,50]},{"path":[4,8,2,19],"span":[144,2,35]},{"path":[4,8,2,19,4],"span":[144,2,10]},{"path":[4,8,2,19,6],"span":[144,11,19]},{"path":[4,8,2,19,1],"span":[144,20,29]},{"path":[4,8,2,19,3],"span":[144,32,34]},{"path":[4,8,9],"span":[147,2,69],"leadingComments":" list of deprecated fields, now moved to computer message\n"},{"path":[4,8,9,0],"span":[147,11,12]},{"path":[4,8,9,0,1],"span":[147,11,12]},{"path":[4,8,9,1],"span":[147,14,16]},{"path":[4,8,9,1,1],"span":[147,14,16]},{"path":[4,8,9,2],"span":[147,18,20]},{"path":[4,8,9,2,1],"span":[147,18,20]},{"path":[4,8,9,3],"span":[147,22,24]},{"path":[4,8,9,3,1],"span":[147,22,24]},{"path":[4,8,9,4],"span":[147,26,28]},{"path":[4,8,9,4,1],"span":[147,26,28]},{"path":[4,8,9,5],"span":[147,30,32]},{"path":[4,8,9,5,1],"span":[147,30,32]},{"path":[4,8,9,6],"span":[147,34,36]},{"path":[4,8,9,6,1],"span":[147,34,36]},{"path":[4,8,9,7],"span":[147,38,40]},{"path":[4,8,9,7,1],"span":[147,38,40]},{"path":[4,8,9,8],"span":[147,42,44]},{"path":[4,8,9,8,1],"span":[147,42,44]},{"path":[4,8,9,9],"span":[147,46,48]},{"path":[4,8,9,9,1],"span":[147,46,48]},{"path":[4,8,9,10],"span":[147,50,52]},{"path":[4,8,9,10,1],"span":[147,50,52]},{"path":[4,8,9,11],"span":[147,54,56]},{"path":[4,8,9,11,1],"span":[147,54,56]},{"path":[4,8,9,12],"span":[147,58,60]},{"path":[4,8,9,12,1],"span":[147,58,60]},{"path":[4,8,9,13],"span":[147,62,64]},{"path":[4,8,9,13,1],"span":[147,62,64]},{"path":[4,8,9,14],"span":[147,66,68]},{"path":[4,8,9,14,1],"span":[147,66,68]},{"path":[4,8,2,20],"span":[149,2,34]},{"path":[4,8,2,20,4],"span":[149,2,10]},{"path":[4,8,2,20,6],"span":[149,11,19]},{"path":[4,8,2,20,1],"span":[149,20,28]},{"path":[4,8,2,20,3],"span":[149,31,33]},{"path":[4,8,2,21],"span":[151,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,21,4],"span":[151,2,10]},{"path":[4,8,2,21,6],"span":[151,11,19]},{"path":[4,8,2,21,1],"span":[151,20,29]},{"path":[4,8,2,21,3],"span":[151,32,34]},{"path":[4,8,2,22],"span":[153,2,34]},{"path":[4,8,2,22,4],"span":[153,2,10]},{"path":[4,8,2,22,6],"span":[153,11,22]},{"path":[4,8,2,22,1],"span":[153,23,28]},{"path":[4,8,2,22,3],"span":[153,31,33]},{"path":[4,9],"span":[167,0,228,1],"leadingComments":"\n Computer message keeping all sections of asset.computer.\n"},{"path":[4,9,1],"span":[167,8,16]},{"path":[4,9,2,0],"span":[169,2,31],"leadingComments":" HW\n"},{"path":[4,9,2,0,4],"span":[169,2,10]},{"path":[4,9,2,0,6],"span":[169,11,18]},{"path":[4,9,2,0,1],"span":[169,19,26]},{"path":[4,9,2,0,3],"span":[169,29,30]},{"path":[4,9,2,1],"span":[170,2,39]},{"path":[4,9,2,1,4],"span":[170,2,10]},{"path":[4,9,2,1,6],"span":[170,11,22]},{"path":[4,9,2,1,1],"span":[170,23,34]},{"path":[4,9,2,1,3],"span":[170,37,38]},{"path":[4,9,2,2],"span":[171,2,35]},{"path":[4,9,2,2,4],"span":[171,2,10]},{"path":[4,9,2,2,6],"span":[171,11,20]},{"path":[4,9,2,2,1],"span":[171,21,30]},{"path":[4,9,2,2,3],"span":[171,33,34]},{"path":[4,9,2,3],"span":[172,2,29]},{"path":[4,9,2,3,4],"span":[172,2,10]},{"path":[4,9,2,3,6],"span":[172,11,17]},{"path":[4,9,2,3,1],"span":[172,18,24]},{"path":[4,9,2,3,3],"span":[172,27,28]},{"path":[4,9,2,4],"span":[173,2,42]},{"path":[4,9,2,4,4],"span":[173,2,10]},{"path":[4,9,2,4,6],"span":[173,11,23]},{"path":[4,9,2,4,1],"span":[173,24,37]},{"path":[4,9,2,4,3],"span":[173,40,41]},{"path":[4,9,2,5],"span":[174,2,36]},{"path":[4,9,2,5,4],"span":[174,2,10]},{"path":[4,9,2,5,6],"span":[174,11,20]},{"path":[4,9,2,5,1],"span":[174,21,31]},{"path":[4,9,2,5,3],"span":[174,34,35]},{"path":[4,9,2,6],"span":[175,2,33]},{"path":[4,9,2,6,4],"span":[175,2,10]},{"path":[4,9,2,6,6],"span":[175,11,19]},{"path":[4,9,2,6,1],"span":[175,20,28]},{"path":[4,9,2,6,3],"span":[175,31,32]},{"path":[4,9,2,7],"span":[176,2,46]},{"path":[4,9,2,7,4],"span":[176,2,10]},{"path":[4,9,2,7,6],"span":[176,11,25]},{"path":[4,9,2,7,1],"span":[176,26,41]},{"path":[4,9,2,7,3],"span":[176,44,45]},{"path":[4,9,2,8],"span":[177,2,40]},{"path":[4,9,2,8,4],"span":[177,2,10]},{"path":[4,9,2,8,6],"span":[177,11,22]},{"path":[4,9,2,8,1],"span":[177,23,35]},{"path":[4,9,2,8,3],"span":[177,38,39]},{"path":[4,9,2,9],"span":[178,2,51]},{"path":[4,9,2,9,4],"span":[178,2,10]},{"path":[4,9,2,9,6],"span":[178,11,27]},{"path":[4,9,2,9,1],"span":[178,28,45]},{"path":[4,9,2,9,3],"span":[178,48,50]},{"path":[4,9,2,10],"span":[179,2,43]},{"path":[4,9,2,10,4],"span":[179,2,10]},{"path":[4,9,2,10,6],"span":[179,11,23]},{"path":[4,9,2,10,1],"span":[179,24,37]},{"path":[4,9,2,10,3],"span":[179,40,42]},{"path":[4,9,2,11],"span":[180,2,39]},{"path":[4,9,2,11,4],"span":[180,2,10]},{"path":[4,9,2,11,6],"span":[180,11,21]},{"path":[4,9,2,11,1],"span":[180,22,33]},{"path":[4,9,2,11,3],"span":[180,36,38]},{"path":[4,9,2,12],"span":[181,2,40]},{"path":[4,9,2,12,4],"span":[181,2,10]},{"path":[4,9,2,12,6],"span":[181,11,27]},{"path":[4,9,2,12,1],"span":[181,28,34]},{"path":[4,9,2,12,3],"span":[181,37,39]},{"path":[4,9,2,13],"span":[182,2,45]},{"path":[4,9,2,13,4],"span":[182,2,10]},{"path":[4,9,2,13,6],"span":[182,11,24]},{"path":[4,9,2,13,1],"span":[182,25,39]},{"path":[4,9,2,13,3],"span":[182,42,44]},{"path":[4,9,2,14],"span":[183,2,47]},{"path":[4,9,2,14,4],"span":[183,2,10]},{"path":[4,9,2,14,6],"span":[183,11,25]},{"path":[4,9,2,14,1],"span":[183,26,41]},{"path":[4,9,2,14,3],"span":[183,44,46]},{"path":[4,9,2,15],"span":[184,2,49]},{"path":[4,9,2,15,4],"span":[184,2,10]},{"path":[4,9,2,15,6],"span":[184,11,26]},{"path":[4,9,2,15,1],"span":[184,27,43]},{"path":[4,9,2,15,3],"span":[184,46,48]},{"path":[4,9,2,16],"span":[185,2,49]},{"path":[4,9,2,16,4],"span":[185,2,10]},{"path":[4,9,2,16,6],"span":[185,11,26]},{"path":[4,9,2,16,1],"span":[185,27,43]},{"path":[4,9,2,16,3],"span":[185,46,48]},{"path":[4,9,2,17],"span":[186,2,43]},{"path":[4,9,2,17,4],"span":[186,2,10]},{"path":[4,9,2,17,6],"span":[186,11,23]},{"path":[4,9,2,17,1],"span":[186,24,37]},{"path":[4,9,2,17,3],"span":[186,40,42]},{"path":[4,9,2,18],"span":[187,2,37]},{"path":[4,9,2,18,4],"span":[187,2,10]},{"path":[4,9,2,18,6],"span":[187,11,20]},{"path":[4,9,2,18,1],"span":[187,21,31]},{"path":[4,9,2,18,3],"span":[187,34,36]},{"path":[4,9,2,19],"span":[188,2,41]},{"path":[4,9,2,19,4],"span":[188,2,10]},{"path":[4,9,2,19,6],"span":[188,11,22]},{"path":[4,9,2,19,1],"span":[188,23,35]},{"path":[4,9,2,19,3],"span":[188,38,40]},{"path":[4,9,2,20],"span":[189,2,42]},{"path":[4,9,2,20,4],"span":[189,2,10]},{"path":[4,9,2,20,6],"span":[189,11,32]},{"path":[4,9,2,20,1],"span":[189,33,36]},{"path":[4,9,2,20,3],"span":[189,39,41]},{"path":[4,9,2,21],"span":[190,2,62]},{"path":[4,9,2,21,4],"span":[190,2,10]},{"path":[4,9,2,21,6],"span":[190,11,41]},{"path":[4,9,2,21,1],"span":[190,42,56]},{"path":[4,9,2,21,3],"span":[190,59,61]},{"path":[4,9,2,22],"span":[191,2,63]},{"path":[4,9,2,22,4],"span":[191,2,10]},{"path":[4,9,2,22,6],"span":[191,11,41]},{"path":[4,9,2,22,1],"span":[191,42,57]},{"path":[4,9,2,22,3],"span":[191,60,62]},{"path":[4,9,2,23],"span":[192,2,45]},{"path":[4,9,2,23,4],"span":[192,2,10]},{"path":[4,9,2,23,6],"span":[192,11,33]},{"path":[4,9,2,23,1],"span":[192,34,39]},{"path":[4,9,2,23,3],"span":[192,42,44]},{"path":[4,9,2,24],"span":[193,2,49]},{"path":[4,9,2,24,4],"span":[193,2,10]},{"path":[4,9,2,24,6],"span":[193,11,35]},{"path":[4,9,2,24,1],"span":[193,36,43]},{"path":[4,9,2,24,3],"span":[193,46,48]},{"path":[4,9,2,25],"span":[194,2,54]},{"path":[4,9,2,25,4],"span":[194,2,10]},{"path":[4,9,2,25,6],"span":[194,11,37]},{"path":[4,9,2,25,1],"span":[194,38,48]},{"path":[4,9,2,25,3],"span":[194,51,53]},{"path":[4,9,2,26],"span":[195,2,55]},{"path":[4,9,2,26,4],"span":[195,2,10]},{"path":[4,9,2,26,6],"span":[195,11,33]},{"path":[4,9,2,26,1],"span":[195,34,49]},{"path":[4,9,2,26,3],"span":[195,52,54]},{"path":[4,9,2,27],"span":[196,2,55]},{"path":[4,9,2,27,4],"span":[196,2,10]},{"path":[4,9,2,27,6],"span":[196,11,33]},{"path":[4,9,2,27,1],"span":[196,34,49]},{"path":[4,9,2,27,3],"span":[196,52,54]},{"path":[4,9,2,28],"span":[197,2,76]},{"path":[4,9,2,28,4],"span":[197,2,10]},{"path":[4,9,2,28,6],"span":[197,11,43]},{"path":[4,9,2,28,1],"span":[197,44,70]},{"path":[4,9,2,28,3],"span":[197,73,75]},{"path":[4,9,2,29],"span":[198,2,68]},{"path":[4,9,2,29,4],"span":[198,2,10]},{"path":[4,9,2,29,6],"span":[198,11,39]},{"path":[4,9,2,29,1],"span":[198,40,62]},{"path":[4,9,2,29,3],"span":[198,65,67]},{"path":[4,9,2,30],"span":[199,2,68]},{"path":[4,9,2,30,4],"span":[199,2,10]},{"path":[4,9,2,30,6],"span":[199,11,39]},{"path":[4,9,2,30,1],"span":[199,40,62]},{"path":[4,9,2,30,3],"span":[199,65,67]},{"path":[4,9,2,31],"span":[202,2,27],"leadingComments":" OS\n"},{"path":[4,9,2,31,4],"span":[202,2,10]},{"path":[4,9,2,31,6],"span":[202,11,15]},{"path":[4,9,2,31,1],"span":[202,16,20]},{"path":[4,9,2,31,3],"span":[202,23,26]},{"path":[4,9,2,32],"span":[203,2,47]},{"path":[4,9,2,32,4],"span":[203,2,10]},{"path":[4,9,2,32,6],"span":[203,11,31]},{"path":[4,9,2,32,1],"span":[203,32,40]},{"path":[4,9,2,32,3],"span":[203,43,46]},{"path":[4,9,2,33],"span":[204,2,51]},{"path":[4,9,2,33,4],"span":[204,2,10]},{"path":[4,9,2,33,6],"span":[204,11,33]},{"path":[4,9,2,33,1],"span":[204,34,44]},{"path":[4,9,2,33,3],"span":[204,47,50]},{"path":[4,9,2,34],"span":[205,2,53]},{"path":[4,9,2,34,4],"span":[205,2,10]},{"path":[4,9,2,34,6],"span":[205,11,34]},{"path":[4,9,2,34,1],"span":[205,35,46]},{"path":[4,9,2,34,3],"span":[205,49,52]},{"path":[4,9,2,35],"span":[206,2,51]},{"path":[4,9,2,35,4],"span":[206,2,10]},{"path":[4,9,2,35,6],"span":[206,11,33]},{"path":[4,9,2,35,1],"span":[206,34,44]},{"path":[4,9,2,35,3],"span":[206,47,50]},{"path":[4,9,2,36],"span":[207,2,63]},{"path":[4,9,2,36,4],"span":[207,2,10]},{"path":[4,9,2,36,6],"span":[207,11,32]},{"path":[4,9,2,36,1],"span":[207,33,56]},{"path":[4,9,2,36,3],"span":[207,59,62]},{"path":[4,9,2,37],"span":[210,2,54],"leadingComments":" SW\n"},{"path":[4,9,2,37,4],"span":[210,2,10]},{"path":[4,9,2,37,6],"span":[210,11,28]},{"path":[4,9,2,37,1],"span":[210,29,47]},{"path":[4,9,2,37,3],"span":[210,50,53]},{"path":[4,9,2,38],"span":[211,2,45]},{"path":[4,9,2,38,4],"span":[211,2,10]},{"path":[4,9,2,38,6],"span":[211,11,28]},{"path":[4,9,2,38,1],"span":[211,29,38]},{"path":[4,9,2,38,3],"span":[211,41,44]},{"path":[4,9,2,39],"span":[212,2,49]},{"path":[4,9,2,39,4],"span":[212,2,10]},{"path":[4,9,2,39,6],"span":[212,11,25]},{"path":[4,9,2,39,1],"span":[212,26,42]},{"path":[4,9,2,39,3],"span":[212,45,48]},{"path":[4,9,2,40],"span":[213,2,40]},{"path":[4,9,2,40,4],"span":[213,2,10]},{"path":[4,9,2,40,6],"span":[213,11,21]},{"path":[4,9,2,40,1],"span":[213,22,33]},{"path":[4,9,2,40,3],"span":[213,36,39]},{"path":[4,9,2,41],"span":[214,2,31]},{"path":[4,9,2,41,4],"span":[214,2,10]},{"path":[4,9,2,41,6],"span":[214,11,17]},{"path":[4,9,2,41,1],"span":[214,18,24]},{"path":[4,9,2,41,3],"span":[214,27,30]},{"path":[4,9,2,42],"span":[215,2,48]},{"path":[4,9,2,42,4],"span":[215,2,10]},{"path":[4,9,2,42,6],"span":[215,11,25]},{"path":[4,9,2,42,1],"span":[215,26,41]},{"path":[4,9,2,42,3],"span":[215,44,47]},{"path":[4,9,2,43],"span":[216,2,48]},{"path":[4,9,2,43,4],"span":[216,2,10]},{"path":[4,9,2,43,6],"span":[216,11,25]},{"path":[4,9,2,43,1],"span":[216,26,41]},{"path":[4,9,2,43,3],"span":[216,44,47]},{"path":[4,9,2,44],"span":[217,2,52],"trailingComments":" specific to IE on Windows\n"},{"path":[4,9,2,44,4],"span":[217,2,10]},{"path":[4,9,2,44,6],"span":[217,11,27]},{"path":[4,9,2,44,1],"span":[217,28,45]},{"path":[4,9,2,44,3],"span":[217,48,51]},{"path":[4,9,2,45],"span":[218,2,53],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,9,2,45,4],"span":[218,2,10]},{"path":[4,9,2,45,6],"span":[218,11,27]},{"path":[4,9,2,45,1],"span":[218,28,46]},{"path":[4,9,2,45,3],"span":[218,49,52]},{"path":[4,9,2,46],"span":[219,2,69]},{"path":[4,9,2,46,4],"span":[219,2,10]},{"path":[4,9,2,46,6],"span":[219,11,39]},{"path":[4,9,2,46,1],"span":[219,40,62]},{"path":[4,9,2,46,3],"span":[219,65,68]},{"path":[4,9,2,47],"span":[220,2,46]},{"path":[4,9,2,47,4],"span":[220,2,10]},{"path":[4,9,2,47,6],"span":[220,11,24]},{"path":[4,9,2,47,1],"span":[220,25,39]},{"path":[4,9,2,47,3],"span":[220,42,45]},{"path":[4,9,2,48],"span":[224,2,36],"leadingComments":" USERS AND ACCOUNT\n","trailingComments":" i.e. computer current user\n"},{"path":[4,9,2,48,4],"span":[224,2,10]},{"path":[4,9,2,48,6],"span":[224,11,19]},{"path":[4,9,2,48,1],"span":[224,20,29]},{"path":[4,9,2,48,3],"span":[224,32,35]},{"path":[4,9,2,49],"span":[225,2,34]},{"path":[4,9,2,49,4],"span":[225,2,10]},{"path":[4,9,2,49,6],"span":[225,11,22]},{"path":[4,9,2,49,1],"span":[225,23,27]},{"path":[4,9,2,49,3],"span":[225,30,33]},{"path":[4,9,2,50],"span":[226,2,38]},{"path":[4,9,2,50,4],"span":[226,2,10]},{"path":[4,9,2,50,6],"span":[226,11,20]},{"path":[4,9,2,50,1],"span":[226,21,31]},{"path":[4,9,2,50,3],"span":[226,34,37]},{"path":[4,9,2,51],"span":[227,2,43]},{"path":[4,9,2,51,4],"span":[227,2,10]},{"path":[4,9,2,51,6],"span":[227,11,22]},{"path":[4,9,2,51,1],"span":[227,23,36]},{"path":[4,9,2,51,3],"span":[227,39,42]},{"path":[4,10],"span":[247,0,250,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,10,1],"span":[247,8,11]},{"path":[4,10,2,0],"span":[248,2,17]},{"path":[4,10,2,0,5],"span":[248,2,8]},{"path":[4,10,2,0,1],"span":[248,9,12]},{"path":[4,10,2,0,3],"span":[248,15,16]},{"path":[4,10,2,1],"span":[249,2,28]},{"path":[4,10,2,1,4],"span":[249,2,10]},{"path":[4,10,2,1,5],"span":[249,11,17]},{"path":[4,10,2,1,1],"span":[249,18,23]},{"path":[4,10,2,1,3],"span":[249,26,27]},{"path":[4,11],"span":[257,0,264,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,11,1],"span":[257,8,16]},{"path":[4,11,2,0],"span":[258,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,0,4],"span":[258,2,10]},{"path":[4,11,2,0,6],"span":[258,11,21]},{"path":[4,11,2,0,1],"span":[258,22,26]},{"path":[4,11,2,0,3],"span":[258,29,30]},{"path":[4,11,2,1],"span":[259,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,1,4],"span":[259,2,10]},{"path":[4,11,2,1,6],"span":[259,11,21]},{"path":[4,11,2,1,1],"span":[259,22,24]},{"path":[4,11,2,1,3],"span":[259,27,28]},{"path":[4,11,2,2],"span":[260,2,38]},{"path":[4,11,2,2,6],"span":[260,2,27]},{"path":[4,11,2,2,1],"span":[260,28,33]},{"path":[4,11,2,2,3],"span":[260,36,37]},{"path":[4,11,2,3],"span":[261,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,11,2,3,4],"span":[261,2,10]},{"path":[4,11,2,3,6],"span":[261,11,36]},{"path":[4,11,2,3,1],"span":[261,37,40]},{"path":[4,11,2,3,3],"span":[261,43,44]},{"path":[4,11,2,4],"span":[262,2,18]},{"path":[4,11,2,4,5],"span":[262,2,8]},{"path":[4,11,2,4,1],"span":[262,9,13]},{"path":[4,11,2,4,3],"span":[262,16,17]},{"path":[4,11,2,5],"span":[263,2,23]},{"path":[4,11,2,5,4],"span":[263,2,10]},{"path":[4,11,2,5,6],"span":[263,11,14]},{"path":[4,11,2,5,1],"span":[263,15,18]},{"path":[4,11,2,5,3],"span":[263,21,22]},{"path":[4,12],"span":[274,0,281,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,12,1],"span":[274,8,19]},{"path":[4,12,2,0],"span":[275,2,31]},{"path":[4,12,2,0,6],"span":[275,2,21]},{"path":[4,12,2,0,1],"span":[275,22,26]},{"path":[4,12,2,0,3],"span":[275,29,30]},{"path":[4,12,2,1],"span":[276,2,28]},{"path":[4,12,2,1,5],"span":[276,2,8]},{"path":[4,12,2,1,1],"span":[276,9,23]},{"path":[4,12,2,1,3],"span":[276,26,27]},{"path":[4,12,2,2],"span":[277,2,28]},{"path":[4,12,2,2,5],"span":[277,2,8]},{"path":[4,12,2,2,1],"span":[277,9,23]},{"path":[4,12,2,2,3],"span":[277,26,27]},{"path":[4,12,2,3],"span":[278,2,32]},{"path":[4,12,2,3,4],"span":[278,2,10]},{"path":[4,12,2,3,5],"span":[278,11,17]},{"path":[4,12,2,3,1],"span":[278,18,27]},{"path":[4,12,2,3,3],"span":[278,30,31]},{"path":[4,12,2,4],"span":[279,2,30]},{"path":[4,12,2,4,5],"span":[279,2,8]},{"path":[4,12,2,4,1],"span":[279,9,25]},{"path":[4,12,2,4,3],"span":[279,28,29]},{"path":[4,12,2,5],"span":[280,2,22]},{"path":[4,12,2,5,5],"span":[280,2,8]},{"path":[4,12,2,5,1],"span":[280,9,17]},{"path":[4,12,2,5,3],"span":[280,20,21]},{"path":[4,13],"span":[291,0,304,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,13,1],"span":[291,8,16]},{"path":[4,13,2,0],"span":[292,2,37]},{"path":[4,13,2,0,4],"span":[292,2,10]},{"path":[4,13,2,0,5],"span":[292,11,17]},{"path":[4,13,2,0,1],"span":[292,18,32]},{"path":[4,13,2,0,3],"span":[292,35,36]},{"path":[4,13,2,1],"span":[293,2,38]},{"path":[4,13,2,1,4],"span":[293,2,10]},{"path":[4,13,2,1,6],"span":[293,11,22]},{"path":[4,13,2,1,1],"span":[293,23,33]},{"path":[4,13,2,1,3],"span":[293,36,37]},{"path":[4,13,2,2],"span":[295,2,26]},{"path":[4,13,2,2,5],"span":[295,2,6]},{"path":[4,13,2,2,1],"span":[295,7,21]},{"path":[4,13,2,2,3],"span":[295,24,25]},{"path":[4,13,2,3],"span":[296,2,27]},{"path":[4,13,2,3,5],"span":[296,2,6]},{"path":[4,13,2,3,1],"span":[296,7,22]},{"path":[4,13,2,3,3],"span":[296,25,26]},{"path":[4,13,2,4],"span":[297,2,36]},{"path":[4,13,2,4,4],"span":[297,2,10]},{"path":[4,13,2,4,5],"span":[297,11,17]},{"path":[4,13,2,4,1],"span":[297,18,31]},{"path":[4,13,2,4,3],"span":[297,34,35]},{"path":[4,13,2,5],"span":[299,2,34]},{"path":[4,13,2,5,4],"span":[299,2,10]},{"path":[4,13,2,5,5],"span":[299,11,17]},{"path":[4,13,2,5,1],"span":[299,18,29]},{"path":[4,13,2,5,3],"span":[299,32,33]},{"path":[4,13,2,6],"span":[300,2,40]},{"path":[4,13,2,6,4],"span":[300,2,10]},{"path":[4,13,2,6,6],"span":[300,11,26]},{"path":[4,13,2,6,1],"span":[300,27,35]},{"path":[4,13,2,6,3],"span":[300,38,39]},{"path":[4,13,2,7],"span":[302,2,33]},{"path":[4,13,2,7,4],"span":[302,2,10]},{"path":[4,13,2,7,5],"span":[302,11,17]},{"path":[4,13,2,7,1],"span":[302,18,28]},{"path":[4,13,2,7,3],"span":[302,31,32]},{"path":[4,14],"span":[307,0,315,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,14,1],"span":[307,8,19]},{"path":[4,14,2,0],"span":[308,2,19]},{"path":[4,14,2,0,5],"span":[308,2,7]},{"path":[4,14,2,0,1],"span":[308,8,14]},{"path":[4,14,2,0,3],"span":[308,17,18]},{"path":[4,14,2,1],"span":[309,2,27]},{"path":[4,14,2,1,4],"span":[309,2,10]},{"path":[4,14,2,1,5],"span":[309,11,17]},{"path":[4,14,2,1,1],"span":[309,18,22]},{"path":[4,14,2,1,3],"span":[309,25,26]},{"path":[4,14,2,2],"span":[310,2,27]},{"path":[4,14,2,2,4],"span":[310,2,10]},{"path":[4,14,2,2,5],"span":[310,11,17]},{"path":[4,14,2,2,1],"span":[310,18,22]},{"path":[4,14,2,2,3],"span":[310,25,26]},{"path":[4,14,2,3],"span":[311,2,17]},{"path":[4,14,2,3,5],"span":[311,2,7]},{"path":[4,14,2,3,1],"span":[311,8,12]},{"path":[4,14,2,3,3],"span":[311,15,16]},{"path":[4,14,2,4],"span":[312,2,24]},{"path":[4,14,2,4,5],"span":[312,2,7]},{"path":[4,14,2,4,1],"span":[312,8,19]},{"path":[4,14,2,4,3],"span":[312,22,23]},{"path":[4,14,2,5],"span":[313,2,30],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,14,2,5,4],"span":[313,2,10]},{"path":[4,14,2,5,5],"span":[313,11,16]},{"path":[4,14,2,5,1],"span":[313,17,25]},{"path":[4,14,2,5,3],"span":[313,28,29]},{"path":[4,14,2,6],"span":[314,2,27],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,14,2,6,4],"span":[314,2,10]},{"path":[4,14,2,6,5],"span":[314,11,16]},{"path":[4,14,2,6,1],"span":[314,17,22]},{"path":[4,14,2,6,3],"span":[314,25,26]},{"path":[4,15],"span":[317,0,320,1]},{"path":[4,15,1],"span":[317,8,23]},{"path":[4,15,2,0],"span":[318,2,17]},{"path":[4,15,2,0,5],"span":[318,2,8]},{"path":[4,15,2,0,1],"span":[318,9,12]},{"path":[4,15,2,0,3],"span":[318,15,16]},{"path":[4,15,2,1],"span":[319,2,19]},{"path":[4,15,2,1,5],"span":[319,2,8]},{"path":[4,15,2,1,1],"span":[319,9,14]},{"path":[4,15,2,1,3],"span":[319,17,18]},{"path":[4,16],"span":[326,0,334,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,16,1],"span":[326,8,17]},{"path":[4,16,2,0],"span":[328,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,16,2,0,5],"span":[328,2,8]},{"path":[4,16,2,0,1],"span":[328,9,16]},{"path":[4,16,2,0,3],"span":[328,19,20]},{"path":[4,16,2,1],"span":[330,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,16,2,1,5],"span":[330,2,7]},{"path":[4,16,2,1,1],"span":[330,8,13]},{"path":[4,16,2,1,3],"span":[330,16,17]},{"path":[4,16,2,2],"span":[332,2,32],"leadingComments":" Fing Type\n"},{"path":[4,16,2,2,4],"span":[332,2,10]},{"path":[4,16,2,2,5],"span":[332,11,17]},{"path":[4,16,2,2,1],"span":[332,18,27]},{"path":[4,16,2,2,3],"span":[332,30,31]},{"path":[4,16,2,3],"span":[333,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,16,2,3,4],"span":[333,2,10]},{"path":[4,16,2,3,5],"span":[333,11,17]},{"path":[4,16,2,3,1],"span":[333,18,26]},{"path":[4,16,2,3,3],"span":[333,29,30]},{"path":[4,17],"span":[341,0,349,1],"leadingComments":"\n Detailed Source information for each source (aka installation in legacy terms)\n that at least once contributed to sending a scan about this asset.\n"},{"path":[4,17,1],"span":[341,8,18]},{"path":[4,17,2,0],"span":[342,2,23],"trailingComments":" source id, like installation id of IT\n"},{"path":[4,17,2,0,5],"span":[342,2,8]},{"path":[4,17,2,0,1],"span":[342,9,18]},{"path":[4,17,2,0,3],"span":[342,21,22]},{"path":[4,17,2,1],"span":[343,2,25],"trailingComments":" source type like e.g. IT\n"},{"path":[4,17,2,1,5],"span":[343,2,8]},{"path":[4,17,2,1,1],"span":[343,9,20]},{"path":[4,17,2,1,3],"span":[343,23,24]},{"path":[4,17,2,2],"span":[344,2,35],"trailingComments":" source agent name and version\n"},{"path":[4,17,2,2,4],"span":[344,2,10]},{"path":[4,17,2,2,5],"span":[344,11,17]},{"path":[4,17,2,2,1],"span":[344,18,30]},{"path":[4,17,2,2,3],"span":[344,33,34]},{"path":[4,17,2,3],"span":[345,2,34],"trailingComments":" source name\n"},{"path":[4,17,2,3,4],"span":[345,2,10]},{"path":[4,17,2,3,5],"span":[345,11,17]},{"path":[4,17,2,3,1],"span":[345,18,29]},{"path":[4,17,2,3,3],"span":[345,32,33]},{"path":[4,17,2,4],"span":[346,2,20],"trailingComments":" entity/asset raw id for source\n"},{"path":[4,17,2,4,5],"span":[346,2,8]},{"path":[4,17,2,4,1],"span":[346,9,15]},{"path":[4,17,2,4,3],"span":[346,18,19]},{"path":[4,17,2,5],"span":[347,2,44],"trailingComments":" later here we could also have a summary of errors, if needed to keep history\n"},{"path":[4,17,2,5,6],"span":[347,2,27]},{"path":[4,17,2,5,1],"span":[347,28,39]},{"path":[4,17,2,5,3],"span":[347,42,43]},{"path":[4,18],"span":[354,0,360,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,18,1],"span":[354,8,17]},{"path":[4,18,2,0],"span":[355,2,21],"trailingComments":" name of section\n"},{"path":[4,18,2,0,5],"span":[355,2,8]},{"path":[4,18,2,0,1],"span":[355,9,16]},{"path":[4,18,2,0,3],"span":[355,19,20]},{"path":[4,18,2,1],"span":[356,2,19],"trailingComments":" error descr\n"},{"path":[4,18,2,1,5],"span":[356,2,8]},{"path":[4,18,2,1,1],"span":[356,9,14]},{"path":[4,18,2,1,3],"span":[356,17,18]},{"path":[4,18,2,2],"span":[357,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,18,2,2,4],"span":[357,2,10]},{"path":[4,18,2,2,5],"span":[357,11,17]},{"path":[4,18,2,2,1],"span":[357,18,24]},{"path":[4,18,2,2,3],"span":[357,27,28]},{"path":[4,18,2,3],"span":[358,2,51]},{"path":[4,18,2,3,4],"span":[358,2,10]},{"path":[4,18,2,3,6],"span":[358,11,36]},{"path":[4,18,2,3,1],"span":[358,37,46]},{"path":[4,18,2,3,3],"span":[358,49,50]},{"path":[4,18,2,4],"span":[359,2,30]},{"path":[4,18,2,4,4],"span":[359,2,10]},{"path":[4,18,2,4,5],"span":[359,11,16]},{"path":[4,18,2,4,1],"span":[359,17,25]},{"path":[4,18,2,4,3],"span":[359,28,29]},{"path":[4,19],"span":[365,0,382,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,19,1],"span":[365,8,18]},{"path":[4,19,2,0],"span":[366,2,21]},{"path":[4,19,2,0,6],"span":[366,2,11]},{"path":[4,19,2,0,1],"span":[366,12,16]},{"path":[4,19,2,0,3],"span":[366,19,20]},{"path":[4,19,2,1],"span":[367,2,18]},{"path":[4,19,2,1,5],"span":[367,2,8]},{"path":[4,19,2,1,1],"span":[367,9,13]},{"path":[4,19,2,1,3],"span":[367,16,17]},{"path":[4,19,2,2],"span":[368,2,29]},{"path":[4,19,2,2,4],"span":[368,2,10]},{"path":[4,19,2,2,5],"span":[368,11,17]},{"path":[4,19,2,2,1],"span":[368,18,24]},{"path":[4,19,2,2,3],"span":[368,27,28]},{"path":[4,19,2,3],"span":[369,2,33]},{"path":[4,19,2,3,4],"span":[369,2,10]},{"path":[4,19,2,3,5],"span":[369,11,17]},{"path":[4,19,2,3,1],"span":[369,18,28]},{"path":[4,19,2,3,3],"span":[369,31,32]},{"path":[4,19,2,4],"span":[370,2,29]},{"path":[4,19,2,4,4],"span":[370,2,10]},{"path":[4,19,2,4,5],"span":[370,11,17]},{"path":[4,19,2,4,1],"span":[370,18,24]},{"path":[4,19,2,4,3],"span":[370,27,28]},{"path":[4,19,2,5],"span":[371,2,26]},{"path":[4,19,2,5,4],"span":[371,2,10]},{"path":[4,19,2,5,5],"span":[371,11,17]},{"path":[4,19,2,5,1],"span":[371,18,21]},{"path":[4,19,2,5,3],"span":[371,24,25]},{"path":[4,19,2,6],"span":[372,2,33]},{"path":[4,19,2,6,4],"span":[372,2,10]},{"path":[4,19,2,6,5],"span":[372,11,17]},{"path":[4,19,2,6,1],"span":[372,18,28]},{"path":[4,19,2,6,3],"span":[372,31,32]},{"path":[4,19,2,7],"span":[373,2,32]},{"path":[4,19,2,7,4],"span":[373,2,10]},{"path":[4,19,2,7,5],"span":[373,11,17]},{"path":[4,19,2,7,1],"span":[373,18,27]},{"path":[4,19,2,7,3],"span":[373,30,31]},{"path":[4,19,2,8],"span":[374,2,27]},{"path":[4,19,2,8,4],"span":[374,2,10]},{"path":[4,19,2,8,5],"span":[374,11,17]},{"path":[4,19,2,8,1],"span":[374,18,22]},{"path":[4,19,2,8,3],"span":[374,25,26]},{"path":[4,19,2,9],"span":[381,2,24],"leadingComments":"\n Asset confidence 1-100:\n - 100 is for credential-scan assets by LS internal scanners\n - <100 is for e.g. CDR or imported data from 3rd parties\n"},{"path":[4,19,2,9,5],"span":[381,2,7]},{"path":[4,19,2,9,1],"span":[381,8,18]},{"path":[4,19,2,9,3],"span":[381,21,23]},{"path":[4,20],"span":[384,0,389,1]},{"path":[4,20,1],"span":[384,8,16]},{"path":[4,20,2,0],"span":[385,4,25]},{"path":[4,20,2,0,5],"span":[385,4,10]},{"path":[4,20,2,0,1],"span":[385,11,20]},{"path":[4,20,2,0,3],"span":[385,23,24]},{"path":[4,20,2,1],"span":[386,4,34]},{"path":[4,20,2,1,4],"span":[386,4,12]},{"path":[4,20,2,1,5],"span":[386,13,19]},{"path":[4,20,2,1,1],"span":[386,20,29]},{"path":[4,20,2,1,3],"span":[386,32,33]},{"path":[4,20,2,2],"span":[387,4,28]},{"path":[4,20,2,2,4],"span":[387,4,12]},{"path":[4,20,2,2,5],"span":[387,13,19]},{"path":[4,20,2,2,1],"span":[387,20,23]},{"path":[4,20,2,2,3],"span":[387,26,27]},{"path":[4,20,2,3],"span":[388,4,28]},{"path":[4,20,2,3,4],"span":[388,4,12]},{"path":[4,20,2,3,5],"span":[388,13,19]},{"path":[4,20,2,3,1],"span":[388,20,23]},{"path":[4,20,2,3,3],"span":[388,26,27]},{"path":[4,21],"span":[394,0,421,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,21,1],"span":[394,8,19]},{"path":[4,21,2,0],"span":[395,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,21,2,0,4],"span":[395,2,10]},{"path":[4,21,2,0,5],"span":[395,11,17]},{"path":[4,21,2,0,1],"span":[395,18,22]},{"path":[4,21,2,0,3],"span":[395,25,26]},{"path":[4,21,2,1],"span":[396,2,29]},{"path":[4,21,2,1,4],"span":[396,2,10]},{"path":[4,21,2,1,5],"span":[396,11,17]},{"path":[4,21,2,1,1],"span":[396,18,24]},{"path":[4,21,2,1,3],"span":[396,27,28]},{"path":[4,21,2,2],"span":[397,2,30]},{"path":[4,21,2,2,4],"span":[397,2,10]},{"path":[4,21,2,2,5],"span":[397,11,17]},{"path":[4,21,2,2,1],"span":[397,18,25]},{"path":[4,21,2,2,3],"span":[397,28,29]},{"path":[4,21,2,3],"span":[398,2,34],"trailingComments":" unix:comment\n"},{"path":[4,21,2,3,4],"span":[398,2,10]},{"path":[4,21,2,3,5],"span":[398,11,17]},{"path":[4,21,2,3,1],"span":[398,18,29]},{"path":[4,21,2,3,3],"span":[398,32,33]},{"path":[4,21,2,4],"span":[399,2,32]},{"path":[4,21,2,4,4],"span":[399,2,10]},{"path":[4,21,2,4,5],"span":[399,11,17]},{"path":[4,21,2,4,1],"span":[399,18,27]},{"path":[4,21,2,4,3],"span":[399,30,31]},{"path":[4,21,2,5],"span":[401,2,40],"trailingComments":" unix:type\n"},{"path":[4,21,2,5,4],"span":[401,2,10]},{"path":[4,21,2,5,6],"span":[401,11,22]},{"path":[4,21,2,5,1],"span":[401,23,35]},{"path":[4,21,2,5,3],"span":[401,38,39]},{"path":[4,21,2,6],"span":[403,2,26]},{"path":[4,21,2,6,4],"span":[403,2,10]},{"path":[4,21,2,6,5],"span":[403,11,17]},{"path":[4,21,2,6,1],"span":[403,18,21]},{"path":[4,21,2,6,3],"span":[403,24,25]},{"path":[4,21,2,7],"span":[404,2,36]},{"path":[4,21,2,7,4],"span":[404,2,10]},{"path":[4,21,2,7,6],"span":[404,11,22]},{"path":[4,21,2,7,1],"span":[404,23,31]},{"path":[4,21,2,7,3],"span":[404,34,35]},{"path":[4,21,2,8],"span":[406,2,34]},{"path":[4,21,2,8,4],"span":[406,2,10]},{"path":[4,21,2,8,5],"span":[406,11,15]},{"path":[4,21,2,8,1],"span":[406,16,29]},{"path":[4,21,2,8,3],"span":[406,32,33]},{"path":[4,21,2,9],"span":[407,2,30]},{"path":[4,21,2,9,4],"span":[407,2,10]},{"path":[4,21,2,9,5],"span":[407,11,15]},{"path":[4,21,2,9,1],"span":[407,16,24]},{"path":[4,21,2,9,3],"span":[407,27,29]},{"path":[4,21,2,10],"span":[408,2,29]},{"path":[4,21,2,10,4],"span":[408,2,10]},{"path":[4,21,2,10,5],"span":[408,11,15]},{"path":[4,21,2,10,1],"span":[408,16,23]},{"path":[4,21,2,10,3],"span":[408,26,28]},{"path":[4,21,2,11],"span":[409,2,41]},{"path":[4,21,2,11,4],"span":[409,2,10]},{"path":[4,21,2,11,5],"span":[409,11,15]},{"path":[4,21,2,11,1],"span":[409,16,35]},{"path":[4,21,2,11,3],"span":[409,38,40]},{"path":[4,21,2,12],"span":[410,2,38]},{"path":[4,21,2,12,4],"span":[410,2,10]},{"path":[4,21,2,12,5],"span":[410,11,15]},{"path":[4,21,2,12,1],"span":[410,16,32]},{"path":[4,21,2,12,3],"span":[410,35,37]},{"path":[4,21,2,13],"span":[411,2,39]},{"path":[4,21,2,13,4],"span":[411,2,10]},{"path":[4,21,2,13,5],"span":[411,11,15]},{"path":[4,21,2,13,1],"span":[411,16,33]},{"path":[4,21,2,13,3],"span":[411,36,38]},{"path":[4,21,2,14],"span":[413,2,30]},{"path":[4,21,2,14,4],"span":[413,2,10]},{"path":[4,21,2,14,5],"span":[413,11,17]},{"path":[4,21,2,14,1],"span":[413,18,24]},{"path":[4,21,2,14,3],"span":[413,27,29]},{"path":[4,21,2,15],"span":[416,2,30],"leadingComments":" unix specific\n"},{"path":[4,21,2,15,4],"span":[416,2,10]},{"path":[4,21,2,15,5],"span":[416,11,16]},{"path":[4,21,2,15,1],"span":[416,17,24]},{"path":[4,21,2,15,3],"span":[416,27,29]},{"path":[4,21,2,16],"span":[417,2,31]},{"path":[4,21,2,16,4],"span":[417,2,10]},{"path":[4,21,2,16,5],"span":[417,11,16]},{"path":[4,21,2,16,1],"span":[417,17,25]},{"path":[4,21,2,16,3],"span":[417,28,30]},{"path":[4,21,2,17],"span":[419,2,38]},{"path":[4,21,2,17,4],"span":[419,2,10]},{"path":[4,21,2,17,5],"span":[419,11,17]},{"path":[4,21,2,17,1],"span":[419,18,32]},{"path":[4,21,2,17,3],"span":[419,35,37]},{"path":[4,21,2,18],"span":[420,2,35]},{"path":[4,21,2,18,4],"span":[420,2,10]},{"path":[4,21,2,18,5],"span":[420,11,17]},{"path":[4,21,2,18,1],"span":[420,18,29]},{"path":[4,21,2,18,3],"span":[420,32,34]},{"path":[4,22],"span":[427,0,439,1],"leadingComments":"\n User group, from Windows.WindowsGroup and Unix.GroupEntry.\n Note that Unix.user_names are not here but programmatically mapped to UserInGroup.\n"},{"path":[4,22,1],"span":[427,8,17]},{"path":[4,22,2,0],"span":[428,2,27]},{"path":[4,22,2,0,4],"span":[428,2,10]},{"path":[4,22,2,0,5],"span":[428,11,17]},{"path":[4,22,2,0,1],"span":[428,18,22]},{"path":[4,22,2,0,3],"span":[428,25,26]},{"path":[4,22,2,1],"span":[429,2,30]},{"path":[4,22,2,1,4],"span":[429,2,10]},{"path":[4,22,2,1,5],"span":[429,11,17]},{"path":[4,22,2,1,1],"span":[429,18,25]},{"path":[4,22,2,1,3],"span":[429,28,29]},{"path":[4,22,2,2],"span":[430,2,34]},{"path":[4,22,2,2,4],"span":[430,2,10]},{"path":[4,22,2,2,5],"span":[430,11,17]},{"path":[4,22,2,2,1],"span":[430,18,29]},{"path":[4,22,2,2,3],"span":[430,32,33]},{"path":[4,22,2,3],"span":[431,2,29]},{"path":[4,22,2,3,4],"span":[431,2,10]},{"path":[4,22,2,3,5],"span":[431,11,17]},{"path":[4,22,2,3,1],"span":[431,18,24]},{"path":[4,22,2,3,3],"span":[431,27,28]},{"path":[4,22,2,4],"span":[433,2,26]},{"path":[4,22,2,4,4],"span":[433,2,10]},{"path":[4,22,2,4,5],"span":[433,11,17]},{"path":[4,22,2,4,1],"span":[433,18,21]},{"path":[4,22,2,4,3],"span":[433,24,25]},{"path":[4,22,2,5],"span":[434,2,34]},{"path":[4,22,2,5,4],"span":[434,2,10]},{"path":[4,22,2,5,5],"span":[434,11,15]},{"path":[4,22,2,5,1],"span":[434,16,29]},{"path":[4,22,2,5,3],"span":[434,32,33]},{"path":[4,22,2,6],"span":[437,2,30],"leadingComments":" unix specific\n"},{"path":[4,22,2,6,4],"span":[437,2,10]},{"path":[4,22,2,6,5],"span":[437,11,16]},{"path":[4,22,2,6,1],"span":[437,17,25]},{"path":[4,22,2,6,3],"span":[437,28,29]},{"path":[4,22,2,7],"span":[438,2,27]},{"path":[4,22,2,7,4],"span":[438,2,10]},{"path":[4,22,2,7,5],"span":[438,11,17]},{"path":[4,22,2,7,1],"span":[438,18,22]},{"path":[4,22,2,7,3],"span":[438,25,26]},{"path":[4,23],"span":[446,0,453,1],"leadingComments":"\n Many to many relationship between users and groups and related relation properties.\n Windows: direct mapping mapped from WindowsUserInGroupInfo.\n Unix: created from parsing of Unix.GroupEntry.user_names\n"},{"path":[4,23,1],"span":[446,8,19]},{"path":[4,23,2,0],"span":[447,2,33]},{"path":[4,23,2,0,4],"span":[447,2,10]},{"path":[4,23,2,0,5],"span":[447,11,17]},{"path":[4,23,2,0,1],"span":[447,18,28]},{"path":[4,23,2,0,3],"span":[447,31,32]},{"path":[4,23,2,1],"span":[448,2,32]},{"path":[4,23,2,1,4],"span":[448,2,10]},{"path":[4,23,2,1,5],"span":[448,11,17]},{"path":[4,23,2,1,1],"span":[448,18,27]},{"path":[4,23,2,1,3],"span":[448,30,31]},{"path":[4,23,2,2],"span":[449,2,39]},{"path":[4,23,2,2,4],"span":[449,2,10]},{"path":[4,23,2,2,5],"span":[449,11,17]},{"path":[4,23,2,2,1],"span":[449,18,34]},{"path":[4,23,2,2,3],"span":[449,37,38]},{"path":[4,23,2,3],"span":[450,2,35]},{"path":[4,23,2,3,4],"span":[450,2,10]},{"path":[4,23,2,3,5],"span":[450,11,17]},{"path":[4,23,2,3,1],"span":[450,18,30]},{"path":[4,23,2,3,3],"span":[450,33,34]},{"path":[4,23,2,4],"span":[452,2,35]},{"path":[4,23,2,4,4],"span":[452,2,10]},{"path":[4,23,2,4,5],"span":[452,11,15]},{"path":[4,23,2,4,1],"span":[452,16,30]},{"path":[4,23,2,4,3],"span":[452,33,34]},{"path":[4,24],"span":[460,0,497,1],"leadingComments":"\n IE on Windows. Very specific.\n From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,\n WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.\n"},{"path":[4,24,1],"span":[460,8,24]},{"path":[4,24,3,0],"span":[462,4,467,5],"leadingComments":" from WindowsActiveX\n"},{"path":[4,24,3,0,1],"span":[462,12,19]},{"path":[4,24,3,0,2,0],"span":[463,6,34]},{"path":[4,24,3,0,2,0,4],"span":[463,6,14]},{"path":[4,24,3,0,2,0,5],"span":[463,15,21]},{"path":[4,24,3,0,2,0,1],"span":[463,22,29]},{"path":[4,24,3,0,2,0,3],"span":[463,32,33]},{"path":[4,24,3,0,2,1],"span":[464,6,36]},{"path":[4,24,3,0,2,1,4],"span":[464,6,14]},{"path":[4,24,3,0,2,1,5],"span":[464,15,21]},{"path":[4,24,3,0,2,1,1],"span":[464,22,31]},{"path":[4,24,3,0,2,1,3],"span":[464,34,35]},{"path":[4,24,3,0,2,2],"span":[465,6,31]},{"path":[4,24,3,0,2,2,4],"span":[465,6,14]},{"path":[4,24,3,0,2,2,5],"span":[465,15,21]},{"path":[4,24,3,0,2,2,1],"span":[465,22,26]},{"path":[4,24,3,0,2,2,3],"span":[465,29,30]},{"path":[4,24,3,0,2,3],"span":[466,6,30]},{"path":[4,24,3,0,2,3,4],"span":[466,6,14]},{"path":[4,24,3,0,2,3,5],"span":[466,15,21]},{"path":[4,24,3,0,2,3,1],"span":[466,22,25]},{"path":[4,24,3,0,2,3,3],"span":[466,28,29]},{"path":[4,24,3,1],"span":[470,4,480,5],"leadingComments":" InternetExplorerExtensionInfo\n"},{"path":[4,24,3,1,1],"span":[470,12,21]},{"path":[4,24,3,1,2,0],"span":[471,6,34]},{"path":[4,24,3,1,2,0,4],"span":[471,6,14]},{"path":[4,24,3,1,2,0,5],"span":[471,15,21]},{"path":[4,24,3,1,2,0,1],"span":[471,22,29]},{"path":[4,24,3,1,2,0,3],"span":[471,32,33]},{"path":[4,24,3,1,2,1],"span":[472,6,38]},{"path":[4,24,3,1,2,1,4],"span":[472,6,14]},{"path":[4,24,3,1,2,1,5],"span":[472,15,21]},{"path":[4,24,3,1,2,1,1],"span":[472,22,33]},{"path":[4,24,3,1,2,1,3],"span":[472,36,37]},{"path":[4,24,3,1,2,2],"span":[473,6,33]},{"path":[4,24,3,1,2,2,4],"span":[473,6,14]},{"path":[4,24,3,1,2,2,5],"span":[473,15,21]},{"path":[4,24,3,1,2,2,1],"span":[473,22,28]},{"path":[4,24,3,1,2,2,3],"span":[473,31,32]},{"path":[4,24,3,1,2,3],"span":[474,6,42]},{"path":[4,24,3,1,2,3,4],"span":[474,6,14]},{"path":[4,24,3,1,2,3,5],"span":[474,15,21]},{"path":[4,24,3,1,2,3,1],"span":[474,22,37]},{"path":[4,24,3,1,2,3,3],"span":[474,40,41]},{"path":[4,24,3,1,2,4],"span":[475,6,31]},{"path":[4,24,3,1,2,4,4],"span":[475,6,14]},{"path":[4,24,3,1,2,4,5],"span":[475,15,21]},{"path":[4,24,3,1,2,4,1],"span":[475,22,26]},{"path":[4,24,3,1,2,4,3],"span":[475,29,30]},{"path":[4,24,3,1,2,5],"span":[476,6,35]},{"path":[4,24,3,1,2,5,4],"span":[476,6,14]},{"path":[4,24,3,1,2,5,5],"span":[476,15,21]},{"path":[4,24,3,1,2,5,1],"span":[476,22,30]},{"path":[4,24,3,1,2,5,3],"span":[476,33,34]},{"path":[4,24,3,1,2,6],"span":[477,6,31]},{"path":[4,24,3,1,2,6,4],"span":[477,6,14]},{"path":[4,24,3,1,2,6,5],"span":[477,15,21]},{"path":[4,24,3,1,2,6,1],"span":[477,22,26]},{"path":[4,24,3,1,2,6,3],"span":[477,29,30]},{"path":[4,24,3,1,2,7],"span":[478,6,36]},{"path":[4,24,3,1,2,7,4],"span":[478,6,14]},{"path":[4,24,3,1,2,7,5],"span":[478,15,21]},{"path":[4,24,3,1,2,7,1],"span":[478,22,31]},{"path":[4,24,3,1,2,7,3],"span":[478,34,35]},{"path":[4,24,3,1,2,8],"span":[479,6,34]},{"path":[4,24,3,1,2,8,4],"span":[479,6,14]},{"path":[4,24,3,1,2,8,5],"span":[479,15,21]},{"path":[4,24,3,1,2,8,1],"span":[479,22,29]},{"path":[4,24,3,1,2,8,3],"span":[479,32,33]},{"path":[4,24,3,2],"span":[483,2,485,3],"leadingComments":" from InternetExplorerBrowserObjectInfo\n"},{"path":[4,24,3,2,1],"span":[483,10,23]},{"path":[4,24,3,2,2,0],"span":[484,4,23]},{"path":[4,24,3,2,2,0,5],"span":[484,4,10]},{"path":[4,24,3,2,2,0,1],"span":[484,11,18]},{"path":[4,24,3,2,2,0,3],"span":[484,21,22]},{"path":[4,24,3,3],"span":[488,2,490,3],"leadingComments":" from WindowsInternetExplorerBarInfo\n"},{"path":[4,24,3,3,1],"span":[488,10,17]},{"path":[4,24,3,3,2,0],"span":[489,4,23]},{"path":[4,24,3,3,2,0,5],"span":[489,4,10]},{"path":[4,24,3,3,2,0,1],"span":[489,11,18]},{"path":[4,24,3,3,2,0,3],"span":[489,21,22]},{"path":[4,24,2,0],"span":[493,2,32]},{"path":[4,24,2,0,4],"span":[493,2,10]},{"path":[4,24,2,0,6],"span":[493,11,18]},{"path":[4,24,2,0,1],"span":[493,19,27]},{"path":[4,24,2,0,3],"span":[493,30,31]},{"path":[4,24,2,1],"span":[494,2,33]},{"path":[4,24,2,1,4],"span":[494,2,10]},{"path":[4,24,2,1,6],"span":[494,11,24]},{"path":[4,24,2,1,1],"span":[494,25,28]},{"path":[4,24,2,1,3],"span":[494,31,32]},{"path":[4,24,2,2],"span":[495,2,44]},{"path":[4,24,2,2,4],"span":[495,2,10]},{"path":[4,24,2,2,6],"span":[495,11,24]},{"path":[4,24,2,2,1],"span":[495,25,39]},{"path":[4,24,2,2,3],"span":[495,42,43]},{"path":[4,24,2,3],"span":[496,2,35]},{"path":[4,24,2,3,4],"span":[496,2,10]},{"path":[4,24,2,3,6],"span":[496,11,20]},{"path":[4,24,2,3,1],"span":[496,21,30]},{"path":[4,24,2,3,3],"span":[496,33,34]},{"path":[4,25],"span":[502,0,526,1],"leadingComments":"\n SQL Server extended information on Windows Computers.\n"},{"path":[4,25,1],"span":[502,8,24]},{"path":[4,25,4,0],"span":[503,2,507,3]},{"path":[4,25,4,0,1],"span":[503,7,28]},{"path":[4,25,4,0,2,0],"span":[504,4,21]},{"path":[4,25,4,0,2,0,1],"span":[504,4,16]},{"path":[4,25,4,0,2,0,2],"span":[504,19,20]},{"path":[4,25,4,0,2,1],"span":[505,4,16]},{"path":[4,25,4,0,2,1,1],"span":[505,4,11]},{"path":[4,25,4,0,2,1,2],"span":[505,14,15]},{"path":[4,25,4,0,2,2],"span":[506,4,14]},{"path":[4,25,4,0,2,2,1],"span":[506,4,9]},{"path":[4,25,4,0,2,2,2],"span":[506,12,13]},{"path":[4,25,2,0],"span":[509,4,26]},{"path":[4,25,2,0,5],"span":[509,4,8]},{"path":[4,25,2,0,1],"span":[509,9,21]},{"path":[4,25,2,0,3],"span":[509,24,25]},{"path":[4,25,2,1],"span":[510,4,54]},{"path":[4,25,2,1,6],"span":[510,4,25]},{"path":[4,25,2,1,1],"span":[510,26,49]},{"path":[4,25,2,1,3],"span":[510,52,53]},{"path":[4,25,2,2],"span":[511,4,45]},{"path":[4,25,2,2,4],"span":[511,4,12]},{"path":[4,25,2,2,6],"span":[511,13,30]},{"path":[4,25,2,2,1],"span":[511,31,40]},{"path":[4,25,2,2,3],"span":[511,43,44]},{"path":[4,25,2,3],"span":[512,4,43]},{"path":[4,25,2,3,4],"span":[512,4,12]},{"path":[4,25,2,3,6],"span":[512,13,29]},{"path":[4,25,2,3,1],"span":[512,30,38]},{"path":[4,25,2,3,3],"span":[512,41,42]},{"path":[4,25,2,4],"span":[513,4,28]},{"path":[4,25,2,4,5],"span":[513,4,10]},{"path":[4,25,2,4,1],"span":[513,11,23]},{"path":[4,25,2,4,3],"span":[513,26,27]},{"path":[4,25,2,5],"span":[514,4,31]},{"path":[4,25,2,5,5],"span":[514,4,10]},{"path":[4,25,2,5,1],"span":[514,11,26]},{"path":[4,25,2,5,3],"span":[514,29,30]},{"path":[4,25,2,6],"span":[515,4,23]},{"path":[4,25,2,6,5],"span":[515,4,10]},{"path":[4,25,2,6,1],"span":[515,11,18]},{"path":[4,25,2,6,3],"span":[515,21,22]},{"path":[4,25,2,7],"span":[516,4,32]},{"path":[4,25,2,7,4],"span":[516,4,12]},{"path":[4,25,2,7,5],"span":[516,13,18]},{"path":[4,25,2,7,1],"span":[516,19,27]},{"path":[4,25,2,7,3],"span":[516,30,31]},{"path":[4,25,2,8],"span":[517,4,33]},{"path":[4,25,2,8,4],"span":[517,4,12]},{"path":[4,25,2,8,5],"span":[517,13,19]},{"path":[4,25,2,8,1],"span":[517,20,28]},{"path":[4,25,2,8,3],"span":[517,31,32]},{"path":[4,25,2,9],"span":[518,4,39]},{"path":[4,25,2,9,4],"span":[518,4,12]},{"path":[4,25,2,9,6],"span":[518,13,24]},{"path":[4,25,2,9,1],"span":[518,25,33]},{"path":[4,25,2,9,3],"span":[518,36,38]},{"path":[4,25,2,10],"span":[519,4,32]},{"path":[4,25,2,10,4],"span":[519,4,12]},{"path":[4,25,2,10,5],"span":[519,13,17]},{"path":[4,25,2,10,1],"span":[519,18,26]},{"path":[4,25,2,10,3],"span":[519,29,31]},{"path":[4,25,2,11],"span":[520,4,38]},{"path":[4,25,2,11,4],"span":[520,4,12]},{"path":[4,25,2,11,5],"span":[520,13,19]},{"path":[4,25,2,11,1],"span":[520,20,32]},{"path":[4,25,2,11,3],"span":[520,35,37]},{"path":[4,25,2,12],"span":[521,4,38]},{"path":[4,25,2,12,4],"span":[521,4,12]},{"path":[4,25,2,12,5],"span":[521,13,19]},{"path":[4,25,2,12,1],"span":[521,20,32]},{"path":[4,25,2,12,3],"span":[521,35,37]},{"path":[4,25,2,13],"span":[522,4,35]},{"path":[4,25,2,13,4],"span":[522,4,12]},{"path":[4,25,2,13,5],"span":[522,13,19]},{"path":[4,25,2,13,1],"span":[522,20,29]},{"path":[4,25,2,13,3],"span":[522,32,34]},{"path":[4,25,2,14],"span":[523,4,43]},{"path":[4,25,2,14,4],"span":[523,4,12]},{"path":[4,25,2,14,6],"span":[523,13,29]},{"path":[4,25,2,14,1],"span":[523,30,37]},{"path":[4,25,2,14,3],"span":[523,40,42]},{"path":[4,25,2,15],"span":[524,4,28]},{"path":[4,25,2,15,5],"span":[524,4,10]},{"path":[4,25,2,15,1],"span":[524,11,22]},{"path":[4,25,2,15,3],"span":[524,25,27]},{"path":[4,25,2,16],"span":[525,4,39]},{"path":[4,25,2,16,4],"span":[525,4,12]},{"path":[4,25,2,16,5],"span":[525,13,19]},{"path":[4,25,2,16,1],"span":[525,20,33]},{"path":[4,25,2,16,3],"span":[525,36,38]},{"path":[4,26],"span":[529,0,534,1]},{"path":[4,26,1],"span":[529,8,25]},{"path":[4,26,2,0],"span":[530,2,40]},{"path":[4,26,2,0,4],"span":[530,2,10]},{"path":[4,26,2,0,5],"span":[530,11,16]},{"path":[4,26,2,0,1],"span":[530,17,35]},{"path":[4,26,2,0,3],"span":[530,38,39]},{"path":[4,26,2,1],"span":[531,2,39]},{"path":[4,26,2,1,4],"span":[531,2,10]},{"path":[4,26,2,1,5],"span":[531,11,16]},{"path":[4,26,2,1,1],"span":[531,17,34]},{"path":[4,26,2,1,3],"span":[531,37,38]},{"path":[4,26,2,2],"span":[532,2,44]},{"path":[4,26,2,2,4],"span":[532,2,10]},{"path":[4,26,2,2,5],"span":[532,11,16]},{"path":[4,26,2,2,1],"span":[532,17,39]},{"path":[4,26,2,2,3],"span":[532,42,43]},{"path":[4,26,2,3],"span":[533,2,27]},{"path":[4,26,2,3,4],"span":[533,2,10]},{"path":[4,26,2,3,5],"span":[533,11,17]},{"path":[4,26,2,3,1],"span":[533,18,22]},{"path":[4,26,2,3,3],"span":[533,25,26]},{"path":[4,27],"span":[536,0,560,1]},{"path":[4,27,1],"span":[536,8,24]},{"path":[4,27,4,0],"span":[537,2,546,3]},{"path":[4,27,4,0,1],"span":[537,7,19]},{"path":[4,27,4,0,2,0],"span":[538,4,25]},{"path":[4,27,4,0,2,0,1],"span":[538,4,20]},{"path":[4,27,4,0,2,0,2],"span":[538,23,24]},{"path":[4,27,4,0,2,1],"span":[539,4,16]},{"path":[4,27,4,0,2,1,1],"span":[539,4,11]},{"path":[4,27,4,0,2,1,2],"span":[539,14,15]},{"path":[4,27,4,0,2,2],"span":[540,4,22]},{"path":[4,27,4,0,2,2,1],"span":[540,4,17]},{"path":[4,27,4,0,2,2,2],"span":[540,20,21]},{"path":[4,27,4,0,2,3],"span":[541,4,21]},{"path":[4,27,4,0,2,3,1],"span":[541,4,16]},{"path":[4,27,4,0,2,3,2],"span":[541,19,20]},{"path":[4,27,4,0,2,4],"span":[542,4,16]},{"path":[4,27,4,0,2,4,1],"span":[542,4,11]},{"path":[4,27,4,0,2,4,2],"span":[542,14,15]},{"path":[4,27,4,0,2,5],"span":[543,4,25]},{"path":[4,27,4,0,2,5,1],"span":[543,4,20]},{"path":[4,27,4,0,2,5,2],"span":[543,23,24]},{"path":[4,27,4,0,2,6],"span":[544,4,22]},{"path":[4,27,4,0,2,6,1],"span":[544,4,17]},{"path":[4,27,4,0,2,6,2],"span":[544,20,21]},{"path":[4,27,4,0,2,7],"span":[545,4,15]},{"path":[4,27,4,0,2,7,1],"span":[545,4,10]},{"path":[4,27,4,0,2,7,2],"span":[545,13,14]},{"path":[4,27,4,1],"span":[548,2,554,3]},{"path":[4,27,4,1,1],"span":[548,7,25]},{"path":[4,27,4,1,2,0],"span":[549,4,32]},{"path":[4,27,4,1,2,0,1],"span":[549,4,27]},{"path":[4,27,4,1,2,0,2],"span":[549,30,31]},{"path":[4,27,4,1,2,1],"span":[550,4,27]},{"path":[4,27,4,1,2,1,1],"span":[550,4,22]},{"path":[4,27,4,1,2,1,2],"span":[550,25,26]},{"path":[4,27,4,1,2,2],"span":[551,4,18]},{"path":[4,27,4,1,2,2,1],"span":[551,4,13]},{"path":[4,27,4,1,2,2,2],"span":[551,16,17]},{"path":[4,27,4,1,2,3],"span":[552,4,15]},{"path":[4,27,4,1,2,3,1],"span":[552,4,10]},{"path":[4,27,4,1,2,3,2],"span":[552,13,14]},{"path":[4,27,4,1,2,4],"span":[553,4,17]},{"path":[4,27,4,1,2,4,1],"span":[553,4,12]},{"path":[4,27,4,1,2,4,2],"span":[553,15,16]},{"path":[4,27,2,0],"span":[556,2,34]},{"path":[4,27,2,0,4],"span":[556,2,10]},{"path":[4,27,2,0,6],"span":[556,11,23]},{"path":[4,27,2,0,1],"span":[556,24,29]},{"path":[4,27,2,0,3],"span":[556,32,33]},{"path":[4,27,2,1],"span":[557,2,47]},{"path":[4,27,2,1,4],"span":[557,2,10]},{"path":[4,27,2,1,6],"span":[557,11,29]},{"path":[4,27,2,1,1],"span":[557,30,42]},{"path":[4,27,2,1,3],"span":[557,45,46]},{"path":[4,27,2,2],"span":[558,2,27]},{"path":[4,27,2,2,4],"span":[558,2,10]},{"path":[4,27,2,2,5],"span":[558,11,17]},{"path":[4,27,2,2,1],"span":[558,18,22]},{"path":[4,27,2,2,3],"span":[558,25,26]},{"path":[4,27,2,3],"span":[559,2,34]},{"path":[4,27,2,3,4],"span":[559,2,10]},{"path":[4,27,2,3,5],"span":[559,11,17]},{"path":[4,27,2,3,1],"span":[559,18,29]},{"path":[4,27,2,3,3],"span":[559,32,33]},{"path":[4,28],"span":[562,0,565,1]},{"path":[4,28,1],"span":[562,8,24]},{"path":[4,28,2,0],"span":[563,2,27]},{"path":[4,28,2,0,4],"span":[563,2,10]},{"path":[4,28,2,0,5],"span":[563,11,17]},{"path":[4,28,2,0,1],"span":[563,18,22]},{"path":[4,28,2,0,3],"span":[563,25,26]},{"path":[4,28,2,1],"span":[564,2,50]},{"path":[4,28,2,1,4],"span":[564,2,10]},{"path":[4,28,2,1,6],"span":[564,11,31]},{"path":[4,28,2,1,1],"span":[564,32,45]},{"path":[4,28,2,1,3],"span":[564,48,49]},{"path":[4,29],"span":[567,0,569,1]},{"path":[4,29,1],"span":[567,8,28]},{"path":[4,29,2,0],"span":[568,2,27]},{"path":[4,29,2,0,4],"span":[568,2,10]},{"path":[4,29,2,0,5],"span":[568,11,17]},{"path":[4,29,2,0,1],"span":[568,18,22]},{"path":[4,29,2,0,3],"span":[568,25,26]},{"path":[4,30],"span":[575,0,609,1],"leadingComments":"\n General section for any HW, normalized and with raw data.\n"},{"path":[4,30,1],"span":[575,8,20]},{"path":[4,30,2,0],"span":[576,2,29]},{"path":[4,30,2,0,4],"span":[576,2,10]},{"path":[4,30,2,0,5],"span":[576,11,16]},{"path":[4,30,2,0,1],"span":[576,17,24]},{"path":[4,30,2,0,3],"span":[576,27,28]},{"path":[4,30,2,1],"span":[579,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,30,2,1,4],"span":[579,2,10]},{"path":[4,30,2,1,5],"span":[579,11,16]},{"path":[4,30,2,1,1],"span":[579,17,24]},{"path":[4,30,2,1,3],"span":[579,27,28]},{"path":[4,30,2,2],"span":[582,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,30,2,2,4],"span":[582,2,10]},{"path":[4,30,2,2,5],"span":[582,11,16]},{"path":[4,30,2,2,1],"span":[582,17,25]},{"path":[4,30,2,2,3],"span":[582,28,29]},{"path":[4,30,2,3],"span":[585,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,30,2,3,4],"span":[585,2,10]},{"path":[4,30,2,3,5],"span":[585,11,16]},{"path":[4,30,2,3,1],"span":[585,17,26]},{"path":[4,30,2,3,3],"span":[585,29,30]},{"path":[4,30,2,4],"span":[587,2,30]},{"path":[4,30,2,4,4],"span":[587,2,10]},{"path":[4,30,2,4,5],"span":[587,11,15]},{"path":[4,30,2,4,1],"span":[587,16,25]},{"path":[4,30,2,4,3],"span":[587,28,29]},{"path":[4,30,2,5],"span":[588,2,29]},{"path":[4,30,2,5,4],"span":[588,2,10]},{"path":[4,30,2,5,5],"span":[588,11,17]},{"path":[4,30,2,5,1],"span":[588,18,24]},{"path":[4,30,2,5,3],"span":[588,27,28]},{"path":[4,30,2,6],"span":[590,2,33],"trailingComments":" e.g.: \"SMART_HOME\"\n"},{"path":[4,30,2,6,4],"span":[590,2,10]},{"path":[4,30,2,6,5],"span":[590,11,17]},{"path":[4,30,2,6,1],"span":[590,18,27]},{"path":[4,30,2,6,3],"span":[590,30,32]},{"path":[4,30,2,7],"span":[591,2,36],"trailingComments":" e.g.: \"Smart Device\"\n"},{"path":[4,30,2,7,4],"span":[591,2,10]},{"path":[4,30,2,7,5],"span":[591,11,17]},{"path":[4,30,2,7,1],"span":[591,18,30]},{"path":[4,30,2,7,3],"span":[591,33,35]},{"path":[4,30,2,8],"span":[592,2,34],"trailingComments":" e.g.: \"Smart Home\"\n"},{"path":[4,30,2,8,4],"span":[592,2,10]},{"path":[4,30,2,8,5],"span":[592,11,17]},{"path":[4,30,2,8,1],"span":[592,18,28]},{"path":[4,30,2,8,3],"span":[592,31,33]},{"path":[4,30,2,9],"span":[594,2,33]},{"path":[4,30,2,9,4],"span":[594,2,10]},{"path":[4,30,2,9,5],"span":[594,11,17]},{"path":[4,30,2,9,1],"span":[594,18,27]},{"path":[4,30,2,9,3],"span":[594,30,32]},{"path":[4,30,2,10],"span":[595,2,34]},{"path":[4,30,2,10,4],"span":[595,2,10]},{"path":[4,30,2,10,5],"span":[595,11,17]},{"path":[4,30,2,10,1],"span":[595,18,28]},{"path":[4,30,2,10,3],"span":[595,31,33]},{"path":[4,30,2,11],"span":[596,2,35]},{"path":[4,30,2,11,4],"span":[596,2,10]},{"path":[4,30,2,11,5],"span":[596,11,17]},{"path":[4,30,2,11,1],"span":[596,18,29]},{"path":[4,30,2,11,3],"span":[596,32,34]},{"path":[4,30,2,12],"span":[598,2,27]},{"path":[4,30,2,12,4],"span":[598,2,10]},{"path":[4,30,2,12,5],"span":[598,11,17]},{"path":[4,30,2,12,1],"span":[598,18,21]},{"path":[4,30,2,12,3],"span":[598,24,26]},{"path":[4,30,2,13],"span":[599,2,27]},{"path":[4,30,2,13,4],"span":[599,2,10]},{"path":[4,30,2,13,5],"span":[599,11,16]},{"path":[4,30,2,13,1],"span":[599,17,21]},{"path":[4,30,2,13,3],"span":[599,24,26]},{"path":[4,30,2,14],"span":[601,2,38]},{"path":[4,30,2,14,4],"span":[601,2,10]},{"path":[4,30,2,14,6],"span":[601,11,27]},{"path":[4,30,2,14,1],"span":[601,28,32]},{"path":[4,30,2,14,3],"span":[601,35,37]},{"path":[4,30,2,15],"span":[604,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,30,2,15,4],"span":[604,2,10]},{"path":[4,30,2,15,6],"span":[604,11,23]},{"path":[4,30,2,15,1],"span":[604,24,37]},{"path":[4,30,2,15,3],"span":[604,40,42]},{"path":[4,30,2,16],"span":[606,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,30,2,16,4],"span":[606,2,10]},{"path":[4,30,2,16,6],"span":[606,11,23]},{"path":[4,30,2,16,1],"span":[606,24,37]},{"path":[4,30,2,16,3],"span":[606,40,42]},{"path":[4,30,2,17],"span":[608,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,30,2,17,4],"span":[608,2,10]},{"path":[4,30,2,17,6],"span":[608,11,23]},{"path":[4,30,2,17,1],"span":[608,24,38]},{"path":[4,30,2,17,3],"span":[608,41,43]},{"path":[4,31],"span":[611,0,622,1]},{"path":[4,31,1],"span":[611,8,24]},{"path":[4,31,2,0],"span":[612,2,35]},{"path":[4,31,2,0,4],"span":[612,2,10]},{"path":[4,31,2,0,5],"span":[612,11,17]},{"path":[4,31,2,0,1],"span":[612,18,30]},{"path":[4,31,2,0,3],"span":[612,33,34]},{"path":[4,31,2,1],"span":[613,2,28]},{"path":[4,31,2,1,4],"span":[613,2,10]},{"path":[4,31,2,1,5],"span":[613,11,17]},{"path":[4,31,2,1,1],"span":[613,18,23]},{"path":[4,31,2,1,3],"span":[613,26,27]},{"path":[4,31,2,2],"span":[614,2,35]},{"path":[4,31,2,2,4],"span":[614,2,10]},{"path":[4,31,2,2,5],"span":[614,11,17]},{"path":[4,31,2,2,1],"span":[614,18,30]},{"path":[4,31,2,2,3],"span":[614,33,34]},{"path":[4,31,2,3],"span":[615,2,36]},{"path":[4,31,2,3,4],"span":[615,2,10]},{"path":[4,31,2,3,5],"span":[615,11,17]},{"path":[4,31,2,3,1],"span":[615,18,31]},{"path":[4,31,2,3,3],"span":[615,34,35]},{"path":[4,31,2,4],"span":[616,2,33]},{"path":[4,31,2,4,4],"span":[616,2,10]},{"path":[4,31,2,4,5],"span":[616,11,17]},{"path":[4,31,2,4,1],"span":[616,18,28]},{"path":[4,31,2,4,3],"span":[616,31,32]},{"path":[4,31,2,5],"span":[617,2,29]},{"path":[4,31,2,5,4],"span":[617,2,10]},{"path":[4,31,2,5,5],"span":[617,11,16]},{"path":[4,31,2,5,1],"span":[617,18,24]},{"path":[4,31,2,5,3],"span":[617,27,28]},{"path":[4,31,2,6],"span":[618,2,32],"trailingComments":" mac\n"},{"path":[4,31,2,6,4],"span":[618,2,10]},{"path":[4,31,2,6,5],"span":[618,11,17]},{"path":[4,31,2,6,1],"span":[618,18,27]},{"path":[4,31,2,6,3],"span":[618,30,31]},{"path":[4,31,2,7],"span":[619,2,39],"trailingComments":" mac\n"},{"path":[4,31,2,7,4],"span":[619,2,10]},{"path":[4,31,2,7,5],"span":[619,11,17]},{"path":[4,31,2,7,1],"span":[619,18,34]},{"path":[4,31,2,7,3],"span":[619,37,38]},{"path":[4,31,2,8],"span":[620,2,41],"trailingComments":" mac\n"},{"path":[4,31,2,8,4],"span":[620,2,10]},{"path":[4,31,2,8,5],"span":[620,11,17]},{"path":[4,31,2,8,1],"span":[620,18,36]},{"path":[4,31,2,8,3],"span":[620,39,40]},{"path":[4,32],"span":[626,0,649,1]},{"path":[4,32,1],"span":[626,8,23]},{"path":[4,32,2,0],"span":[628,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,32,2,0,4],"span":[628,2,10]},{"path":[4,32,2,0,5],"span":[628,11,16]},{"path":[4,32,2,0,1],"span":[628,17,19]},{"path":[4,32,2,0,3],"span":[628,22,23]},{"path":[4,32,2,1],"span":[631,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,32,2,1,4],"span":[631,2,10]},{"path":[4,32,2,1,5],"span":[631,11,16]},{"path":[4,32,2,1,1],"span":[631,17,24]},{"path":[4,32,2,1,3],"span":[631,27,29]},{"path":[4,32,2,2],"span":[633,2,27]},{"path":[4,32,2,2,4],"span":[633,2,10]},{"path":[4,32,2,2,5],"span":[633,11,17]},{"path":[4,32,2,2,1],"span":[633,18,22]},{"path":[4,32,2,2,3],"span":[633,25,26]},{"path":[4,32,2,3],"span":[634,2,30]},{"path":[4,32,2,3,4],"span":[634,2,10]},{"path":[4,32,2,3,5],"span":[634,11,17]},{"path":[4,32,2,3,1],"span":[634,18,25]},{"path":[4,32,2,3,3],"span":[634,28,29]},{"path":[4,32,2,4],"span":[635,2,28]},{"path":[4,32,2,4,4],"span":[635,2,10]},{"path":[4,32,2,4,5],"span":[635,11,17]},{"path":[4,32,2,4,1],"span":[635,18,23]},{"path":[4,32,2,4,3],"span":[635,26,27]},{"path":[4,32,2,5],"span":[637,2,33]},{"path":[4,32,2,5,4],"span":[637,2,10]},{"path":[4,32,2,5,5],"span":[637,11,17]},{"path":[4,32,2,5,1],"span":[637,18,28]},{"path":[4,32,2,5,3],"span":[637,31,32]},{"path":[4,32,2,6],"span":[639,2,26]},{"path":[4,32,2,6,4],"span":[639,2,10]},{"path":[4,32,2,6,5],"span":[639,11,17]},{"path":[4,32,2,6,1],"span":[639,18,21]},{"path":[4,32,2,6,3],"span":[639,24,25]},{"path":[4,32,2,7],"span":[640,2,29]},{"path":[4,32,2,7,4],"span":[640,2,10]},{"path":[4,32,2,7,5],"span":[640,11,17]},{"path":[4,32,2,7,1],"span":[640,18,24]},{"path":[4,32,2,7,3],"span":[640,27,28]},{"path":[4,32,2,8],"span":[642,2,26]},{"path":[4,32,2,8,4],"span":[642,2,10]},{"path":[4,32,2,8,5],"span":[642,11,16]},{"path":[4,32,2,8,1],"span":[642,17,21]},{"path":[4,32,2,8,3],"span":[642,24,25]},{"path":[4,32,8,0],"span":[644,2,648,3]},{"path":[4,32,8,0,1],"span":[644,8,12]},{"path":[4,32,2,9],"span":[645,4,44]},{"path":[4,32,2,9,6],"span":[645,4,30]},{"path":[4,32,2,9,1],"span":[645,31,38]},{"path":[4,32,2,9,3],"span":[645,41,43]},{"path":[4,32,2,10],"span":[646,4,36]},{"path":[4,32,2,10,6],"span":[646,4,26]},{"path":[4,32,2,10,1],"span":[646,27,30]},{"path":[4,32,2,10,3],"span":[646,33,35]},{"path":[4,32,2,11],"span":[647,4,40]},{"path":[4,32,2,11,6],"span":[647,4,28]},{"path":[4,32,2,11,1],"span":[647,29,34]},{"path":[4,32,2,11,3],"span":[647,37,39]},{"path":[4,33],"span":[651,0,662,1]},{"path":[4,33,1],"span":[651,8,30]},{"path":[4,33,2,0],"span":[652,2,37]},{"path":[4,33,2,0,4],"span":[652,2,10]},{"path":[4,33,2,0,5],"span":[652,11,17]},{"path":[4,33,2,0,1],"span":[652,18,32]},{"path":[4,33,2,0,3],"span":[652,35,36]},{"path":[4,33,2,1],"span":[653,2,37]},{"path":[4,33,2,1,4],"span":[653,2,10]},{"path":[4,33,2,1,5],"span":[653,11,17]},{"path":[4,33,2,1,1],"span":[653,18,32]},{"path":[4,33,2,1,3],"span":[653,35,36]},{"path":[4,33,2,2],"span":[654,2,34]},{"path":[4,33,2,2,4],"span":[654,2,10]},{"path":[4,33,2,2,5],"span":[654,11,17]},{"path":[4,33,2,2,1],"span":[654,18,29]},{"path":[4,33,2,2,3],"span":[654,32,33]},{"path":[4,33,2,3],"span":[655,2,32]},{"path":[4,33,2,3,4],"span":[655,2,10]},{"path":[4,33,2,3,5],"span":[655,11,17]},{"path":[4,33,2,3,1],"span":[655,18,27]},{"path":[4,33,2,3,3],"span":[655,30,31]},{"path":[4,33,2,4],"span":[656,2,36]},{"path":[4,33,2,4,4],"span":[656,2,10]},{"path":[4,33,2,4,5],"span":[656,11,17]},{"path":[4,33,2,4,1],"span":[656,18,31]},{"path":[4,33,2,4,3],"span":[656,34,35]},{"path":[4,33,2,5],"span":[657,2,32]},{"path":[4,33,2,5,4],"span":[657,2,10]},{"path":[4,33,2,5,5],"span":[657,11,17]},{"path":[4,33,2,5,1],"span":[657,18,27]},{"path":[4,33,2,5,3],"span":[657,30,31]},{"path":[4,33,2,6],"span":[658,2,30]},{"path":[4,33,2,6,4],"span":[658,2,10]},{"path":[4,33,2,6,5],"span":[658,11,17]},{"path":[4,33,2,6,1],"span":[658,18,25]},{"path":[4,33,2,6,3],"span":[658,28,29]},{"path":[4,33,2,7],"span":[659,2,44]},{"path":[4,33,2,7,4],"span":[659,2,10]},{"path":[4,33,2,7,5],"span":[659,11,17]},{"path":[4,33,2,7,1],"span":[659,18,39]},{"path":[4,33,2,7,3],"span":[659,42,43]},{"path":[4,33,2,8],"span":[660,2,53]},{"path":[4,33,2,8,4],"span":[660,2,10]},{"path":[4,33,2,8,5],"span":[660,11,17]},{"path":[4,33,2,8,1],"span":[660,18,48]},{"path":[4,33,2,8,3],"span":[660,51,52]},{"path":[4,33,2,9],"span":[661,2,40]},{"path":[4,33,2,9,4],"span":[661,2,10]},{"path":[4,33,2,9,5],"span":[661,11,17]},{"path":[4,33,2,9,1],"span":[661,18,34]},{"path":[4,33,2,9,3],"span":[661,37,39]},{"path":[4,34],"span":[664,0,670,1]},{"path":[4,34,1],"span":[664,8,32]},{"path":[4,34,2,0],"span":[665,2,34]},{"path":[4,34,2,0,4],"span":[665,2,10]},{"path":[4,34,2,0,5],"span":[665,11,17]},{"path":[4,34,2,0,1],"span":[665,18,29]},{"path":[4,34,2,0,3],"span":[665,32,33]},{"path":[4,34,2,1],"span":[666,2,37]},{"path":[4,34,2,1,4],"span":[666,2,10]},{"path":[4,34,2,1,5],"span":[666,11,17]},{"path":[4,34,2,1,1],"span":[666,18,32]},{"path":[4,34,2,1,3],"span":[666,35,36]},{"path":[4,34,2,2],"span":[667,2,37]},{"path":[4,34,2,2,4],"span":[667,2,10]},{"path":[4,34,2,2,5],"span":[667,11,17]},{"path":[4,34,2,2,1],"span":[667,18,32]},{"path":[4,34,2,2,3],"span":[667,35,36]},{"path":[4,34,2,3],"span":[668,2,35]},{"path":[4,34,2,3,4],"span":[668,2,10]},{"path":[4,34,2,3,5],"span":[668,11,17]},{"path":[4,34,2,3,1],"span":[668,18,30]},{"path":[4,34,2,3,3],"span":[668,33,34]},{"path":[4,34,2,4],"span":[669,2,33]},{"path":[4,34,2,4,4],"span":[669,2,10]},{"path":[4,34,2,4,5],"span":[669,11,17]},{"path":[4,34,2,4,1],"span":[669,18,28]},{"path":[4,34,2,4,3],"span":[669,31,32]},{"path":[4,35],"span":[672,0,725,1]},{"path":[4,35,1],"span":[672,8,34]},{"path":[4,35,2,0],"span":[673,2,30]},{"path":[4,35,2,0,4],"span":[673,2,10]},{"path":[4,35,2,0,5],"span":[673,11,17]},{"path":[4,35,2,0,1],"span":[673,18,25]},{"path":[4,35,2,0,3],"span":[673,28,29]},{"path":[4,35,2,1],"span":[674,2,34]},{"path":[4,35,2,1,4],"span":[674,2,10]},{"path":[4,35,2,1,5],"span":[674,11,16]},{"path":[4,35,2,1,1],"span":[674,17,29]},{"path":[4,35,2,1,3],"span":[674,32,33]},{"path":[4,35,2,2],"span":[675,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,35,2,2,4],"span":[675,2,10]},{"path":[4,35,2,2,5],"span":[675,11,17]},{"path":[4,35,2,2,1],"span":[675,18,23]},{"path":[4,35,2,2,3],"span":[675,26,27]},{"path":[4,35,2,3],"span":[676,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,35,2,3,4],"span":[676,2,10]},{"path":[4,35,2,3,5],"span":[676,11,17]},{"path":[4,35,2,3,1],"span":[676,18,30]},{"path":[4,35,2,3,3],"span":[676,33,34]},{"path":[4,35,2,4],"span":[677,2,41]},{"path":[4,35,2,4,4],"span":[677,2,10]},{"path":[4,35,2,4,5],"span":[677,11,15]},{"path":[4,35,2,4,1],"span":[677,16,36]},{"path":[4,35,2,4,3],"span":[677,39,40]},{"path":[4,35,2,5],"span":[678,2,35]},{"path":[4,35,2,5,4],"span":[678,2,10]},{"path":[4,35,2,5,5],"span":[678,11,15]},{"path":[4,35,2,5,1],"span":[678,16,30]},{"path":[4,35,2,5,3],"span":[678,33,34]},{"path":[4,35,2,6],"span":[679,2,39]},{"path":[4,35,2,6,4],"span":[679,2,10]},{"path":[4,35,2,6,5],"span":[679,11,15]},{"path":[4,35,2,6,1],"span":[679,16,34]},{"path":[4,35,2,6,3],"span":[679,37,38]},{"path":[4,35,2,7],"span":[681,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,35,2,7,4],"span":[681,2,10]},{"path":[4,35,2,7,5],"span":[681,11,17]},{"path":[4,35,2,7,1],"span":[681,18,25]},{"path":[4,35,2,7,3],"span":[681,28,30]},{"path":[4,35,2,8],"span":[683,2,35]},{"path":[4,35,2,8,4],"span":[683,2,10]},{"path":[4,35,2,8,5],"span":[683,11,17]},{"path":[4,35,2,8,1],"span":[683,18,29]},{"path":[4,35,2,8,3],"span":[683,32,34]},{"path":[4,35,2,9],"span":[684,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,35,2,9,4],"span":[684,2,10]},{"path":[4,35,2,9,5],"span":[684,11,17]},{"path":[4,35,2,9,1],"span":[684,18,30]},{"path":[4,35,2,9,3],"span":[684,33,35]},{"path":[4,35,2,10],"span":[685,2,34]},{"path":[4,35,2,10,4],"span":[685,2,10]},{"path":[4,35,2,10,5],"span":[685,11,17]},{"path":[4,35,2,10,1],"span":[685,18,28]},{"path":[4,35,2,10,3],"span":[685,31,33]},{"path":[4,35,2,11],"span":[686,2,31]},{"path":[4,35,2,11,4],"span":[686,2,10]},{"path":[4,35,2,11,5],"span":[686,11,17]},{"path":[4,35,2,11,1],"span":[686,18,25]},{"path":[4,35,2,11,3],"span":[686,28,30]},{"path":[4,35,2,12],"span":[687,2,32]},{"path":[4,35,2,12,4],"span":[687,2,10]},{"path":[4,35,2,12,5],"span":[687,11,17]},{"path":[4,35,2,12,1],"span":[687,18,26]},{"path":[4,35,2,12,3],"span":[687,29,31]},{"path":[4,35,2,13],"span":[688,2,36]},{"path":[4,35,2,13,4],"span":[688,2,10]},{"path":[4,35,2,13,5],"span":[688,11,17]},{"path":[4,35,2,13,1],"span":[688,18,30]},{"path":[4,35,2,13,3],"span":[688,33,35]},{"path":[4,35,2,14],"span":[689,2,35]},{"path":[4,35,2,14,4],"span":[689,2,10]},{"path":[4,35,2,14,5],"span":[689,11,17]},{"path":[4,35,2,14,1],"span":[689,18,29]},{"path":[4,35,2,14,3],"span":[689,32,34]},{"path":[4,35,2,15],"span":[690,2,39]},{"path":[4,35,2,15,4],"span":[690,2,10]},{"path":[4,35,2,15,5],"span":[690,11,16]},{"path":[4,35,2,15,1],"span":[690,17,33]},{"path":[4,35,2,15,3],"span":[690,36,38]},{"path":[4,35,2,16],"span":[691,2,27]},{"path":[4,35,2,16,4],"span":[691,2,10]},{"path":[4,35,2,16,5],"span":[691,11,15]},{"path":[4,35,2,16,1],"span":[691,16,21]},{"path":[4,35,2,16,3],"span":[691,24,26]},{"path":[4,35,2,17],"span":[692,2,35]},{"path":[4,35,2,17,4],"span":[692,2,10]},{"path":[4,35,2,17,5],"span":[692,11,17]},{"path":[4,35,2,17,1],"span":[692,18,29]},{"path":[4,35,2,17,3],"span":[692,32,34]},{"path":[4,35,2,18],"span":[693,2,52]},{"path":[4,35,2,18,4],"span":[693,2,10]},{"path":[4,35,2,18,5],"span":[693,11,17]},{"path":[4,35,2,18,1],"span":[693,18,46]},{"path":[4,35,2,18,3],"span":[693,49,51]},{"path":[4,35,2,19],"span":[694,2,55]},{"path":[4,35,2,19,4],"span":[694,2,10]},{"path":[4,35,2,19,6],"span":[694,11,36]},{"path":[4,35,2,19,1],"span":[694,37,49]},{"path":[4,35,2,19,3],"span":[694,52,54]},{"path":[4,35,2,20],"span":[695,2,47]},{"path":[4,35,2,20,4],"span":[695,2,10]},{"path":[4,35,2,20,5],"span":[695,11,17]},{"path":[4,35,2,20,1],"span":[695,18,41]},{"path":[4,35,2,20,3],"span":[695,44,46]},{"path":[4,35,2,21],"span":[696,2,48]},{"path":[4,35,2,21,4],"span":[696,2,10]},{"path":[4,35,2,21,5],"span":[696,11,17]},{"path":[4,35,2,21,1],"span":[696,18,42]},{"path":[4,35,2,21,3],"span":[696,45,47]},{"path":[4,35,2,22],"span":[697,2,36]},{"path":[4,35,2,22,4],"span":[697,2,10]},{"path":[4,35,2,22,5],"span":[697,11,17]},{"path":[4,35,2,22,1],"span":[697,18,30]},{"path":[4,35,2,22,3],"span":[697,33,35]},{"path":[4,35,2,23],"span":[698,2,40]},{"path":[4,35,2,23,4],"span":[698,2,10]},{"path":[4,35,2,23,6],"span":[698,11,22]},{"path":[4,35,2,23,1],"span":[698,23,34]},{"path":[4,35,2,23,3],"span":[698,37,39]},{"path":[4,35,2,24],"span":[699,2,45]},{"path":[4,35,2,24,4],"span":[699,2,10]},{"path":[4,35,2,24,6],"span":[699,11,22]},{"path":[4,35,2,24,1],"span":[699,23,39]},{"path":[4,35,2,24,3],"span":[699,42,44]},{"path":[4,35,2,25],"span":[700,2,36]},{"path":[4,35,2,25,4],"span":[700,2,10]},{"path":[4,35,2,25,6],"span":[700,11,22]},{"path":[4,35,2,25,1],"span":[700,23,30]},{"path":[4,35,2,25,3],"span":[700,33,35]},{"path":[4,35,2,26],"span":[701,2,39]},{"path":[4,35,2,26,4],"span":[701,2,10]},{"path":[4,35,2,26,5],"span":[701,11,17]},{"path":[4,35,2,26,1],"span":[701,18,33]},{"path":[4,35,2,26,3],"span":[701,36,38]},{"path":[4,35,2,27],"span":[702,2,43]},{"path":[4,35,2,27,4],"span":[702,2,10]},{"path":[4,35,2,27,5],"span":[702,11,17]},{"path":[4,35,2,27,1],"span":[702,18,37]},{"path":[4,35,2,27,3],"span":[702,40,42]},{"path":[4,35,2,28],"span":[703,2,39]},{"path":[4,35,2,28,4],"span":[703,2,10]},{"path":[4,35,2,28,5],"span":[703,11,17]},{"path":[4,35,2,28,1],"span":[703,18,33]},{"path":[4,35,2,28,3],"span":[703,36,38]},{"path":[4,35,2,29],"span":[704,2,37]},{"path":[4,35,2,29,4],"span":[704,2,10]},{"path":[4,35,2,29,5],"span":[704,11,17]},{"path":[4,35,2,29,1],"span":[704,18,31]},{"path":[4,35,2,29,3],"span":[704,34,36]},{"path":[4,35,2,30],"span":[705,2,50]},{"path":[4,35,2,30,4],"span":[705,2,10]},{"path":[4,35,2,30,5],"span":[705,11,17]},{"path":[4,35,2,30,1],"span":[705,18,44]},{"path":[4,35,2,30,3],"span":[705,47,49]},{"path":[4,35,2,31],"span":[706,2,50]},{"path":[4,35,2,31,4],"span":[706,2,10]},{"path":[4,35,2,31,5],"span":[706,11,17]},{"path":[4,35,2,31,1],"span":[706,18,44]},{"path":[4,35,2,31,3],"span":[706,47,49]},{"path":[4,35,2,32],"span":[707,2,51]},{"path":[4,35,2,32,4],"span":[707,2,10]},{"path":[4,35,2,32,5],"span":[707,11,17]},{"path":[4,35,2,32,1],"span":[707,18,45]},{"path":[4,35,2,32,3],"span":[707,48,50]},{"path":[4,35,2,33],"span":[708,2,30]},{"path":[4,35,2,33,4],"span":[708,2,10]},{"path":[4,35,2,33,5],"span":[708,11,17]},{"path":[4,35,2,33,1],"span":[708,18,24]},{"path":[4,35,2,33,3],"span":[708,27,29]},{"path":[4,35,2,34],"span":[709,2,37]},{"path":[4,35,2,34,4],"span":[709,2,10]},{"path":[4,35,2,34,5],"span":[709,11,17]},{"path":[4,35,2,34,1],"span":[709,18,31]},{"path":[4,35,2,34,3],"span":[709,34,36]},{"path":[4,35,2,35],"span":[710,2,40]},{"path":[4,35,2,35,4],"span":[710,2,10]},{"path":[4,35,2,35,5],"span":[710,11,17]},{"path":[4,35,2,35,1],"span":[710,18,34]},{"path":[4,35,2,35,3],"span":[710,37,39]},{"path":[4,35,2,36],"span":[711,2,49]},{"path":[4,35,2,36,4],"span":[711,2,10]},{"path":[4,35,2,36,5],"span":[711,11,17]},{"path":[4,35,2,36,1],"span":[711,18,43]},{"path":[4,35,2,36,3],"span":[711,46,48]},{"path":[4,35,2,37],"span":[712,2,49]},{"path":[4,35,2,37,4],"span":[712,2,10]},{"path":[4,35,2,37,5],"span":[712,11,17]},{"path":[4,35,2,37,1],"span":[712,18,43]},{"path":[4,35,2,37,3],"span":[712,46,48]},{"path":[4,35,2,38],"span":[713,2,41]},{"path":[4,35,2,38,4],"span":[713,2,10]},{"path":[4,35,2,38,5],"span":[713,11,17]},{"path":[4,35,2,38,1],"span":[713,18,35]},{"path":[4,35,2,38,3],"span":[713,38,40]},{"path":[4,35,2,39],"span":[714,2,45]},{"path":[4,35,2,39,4],"span":[714,2,10]},{"path":[4,35,2,39,5],"span":[714,11,17]},{"path":[4,35,2,39,1],"span":[714,18,39]},{"path":[4,35,2,39,3],"span":[714,42,44]},{"path":[4,35,2,40],"span":[715,2,42]},{"path":[4,35,2,40,4],"span":[715,2,10]},{"path":[4,35,2,40,5],"span":[715,11,17]},{"path":[4,35,2,40,1],"span":[715,18,36]},{"path":[4,35,2,40,3],"span":[715,39,41]},{"path":[4,35,2,41],"span":[716,2,46]},{"path":[4,35,2,41,4],"span":[716,2,10]},{"path":[4,35,2,41,5],"span":[716,11,17]},{"path":[4,35,2,41,1],"span":[716,18,40]},{"path":[4,35,2,41,3],"span":[716,43,45]},{"path":[4,35,2,42],"span":[717,2,41]},{"path":[4,35,2,42,4],"span":[717,2,10]},{"path":[4,35,2,42,6],"span":[717,11,22]},{"path":[4,35,2,42,1],"span":[717,23,35]},{"path":[4,35,2,42,3],"span":[717,38,40]},{"path":[4,35,2,43],"span":[718,2,34]},{"path":[4,35,2,43,4],"span":[718,2,10]},{"path":[4,35,2,43,5],"span":[718,11,17]},{"path":[4,35,2,43,1],"span":[718,18,28]},{"path":[4,35,2,43,3],"span":[718,31,33]},{"path":[4,35,2,44],"span":[719,2,36]},{"path":[4,35,2,44,4],"span":[719,2,10]},{"path":[4,35,2,44,5],"span":[719,11,17]},{"path":[4,35,2,44,1],"span":[719,18,30]},{"path":[4,35,2,44,3],"span":[719,33,35]},{"path":[4,35,2,45],"span":[720,2,40]},{"path":[4,35,2,45,4],"span":[720,2,10]},{"path":[4,35,2,45,5],"span":[720,11,17]},{"path":[4,35,2,45,1],"span":[720,18,34]},{"path":[4,35,2,45,3],"span":[720,37,39]},{"path":[4,35,2,46],"span":[721,2,66]},{"path":[4,35,2,46,4],"span":[721,2,10]},{"path":[4,35,2,46,5],"span":[721,11,15]},{"path":[4,35,2,46,1],"span":[721,16,60]},{"path":[4,35,2,46,3],"span":[721,63,65]},{"path":[4,35,2,47],"span":[722,2,60]},{"path":[4,35,2,47,4],"span":[722,2,10]},{"path":[4,35,2,47,5],"span":[722,11,15]},{"path":[4,35,2,47,1],"span":[722,16,54]},{"path":[4,35,2,47,3],"span":[722,57,59]},{"path":[4,35,2,48],"span":[723,2,55]},{"path":[4,35,2,48,4],"span":[723,2,10]},{"path":[4,35,2,48,5],"span":[723,11,15]},{"path":[4,35,2,48,1],"span":[723,16,49]},{"path":[4,35,2,48,3],"span":[723,52,54]},{"path":[4,35,2,49],"span":[724,2,64]},{"path":[4,35,2,49,4],"span":[724,2,10]},{"path":[4,35,2,49,5],"span":[724,11,17]},{"path":[4,35,2,49,1],"span":[724,18,58]},{"path":[4,35,2,49,3],"span":[724,61,63]},{"path":[4,36],"span":[729,0,732,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,36,1],"span":[729,8,30]},{"path":[4,36,2,0],"span":[730,2,18]},{"path":[4,36,2,0,5],"span":[730,2,8]},{"path":[4,36,2,0,1],"span":[730,9,13]},{"path":[4,36,2,0,3],"span":[730,16,17]},{"path":[4,36,2,1],"span":[731,2,21]},{"path":[4,36,2,1,5],"span":[731,2,8]},{"path":[4,36,2,1,1],"span":[731,9,16]},{"path":[4,36,2,1,3],"span":[731,19,20]},{"path":[4,37],"span":[735,0,751,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,37,1],"span":[735,8,28]},{"path":[4,37,2,0],"span":[737,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,37,2,0,5],"span":[737,2,8]},{"path":[4,37,2,0,1],"span":[737,9,11]},{"path":[4,37,2,0,3],"span":[737,14,15]},{"path":[4,37,2,1],"span":[740,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,37,2,1,4],"span":[740,2,10]},{"path":[4,37,2,1,5],"span":[740,11,17]},{"path":[4,37,2,1,1],"span":[740,18,22]},{"path":[4,37,2,1,3],"span":[740,25,26]},{"path":[4,37,2,2],"span":[742,2,54]},{"path":[4,37,2,2,4],"span":[742,2,10]},{"path":[4,37,2,2,6],"span":[742,11,36]},{"path":[4,37,2,2,1],"span":[742,37,49]},{"path":[4,37,2,2,3],"span":[742,52,53]},{"path":[4,37,2,3],"span":[745,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,37,2,3,4],"span":[745,2,10]},{"path":[4,37,2,3,5],"span":[745,11,17]},{"path":[4,37,2,3,1],"span":[745,18,28]},{"path":[4,37,2,3,3],"span":[745,31,32]},{"path":[4,37,2,4],"span":[747,2,31]},{"path":[4,37,2,4,4],"span":[747,2,10]},{"path":[4,37,2,4,5],"span":[747,11,17]},{"path":[4,37,2,4,1],"span":[747,18,26]},{"path":[4,37,2,4,3],"span":[747,29,30]},{"path":[4,37,2,5],"span":[749,2,43]},{"path":[4,37,2,5,4],"span":[749,2,10]},{"path":[4,37,2,5,5],"span":[749,11,17]},{"path":[4,37,2,5,1],"span":[749,18,38]},{"path":[4,37,2,5,3],"span":[749,41,42]},{"path":[4,38],"span":[754,0,757,1],"leadingComments":" Network Interface cards "},{"path":[4,38,1],"span":[754,8,25]},{"path":[4,38,2,0],"span":[755,2,42]},{"path":[4,38,2,0,6],"span":[755,2,27]},{"path":[4,38,2,0,1],"span":[755,28,37]},{"path":[4,38,2,0,3],"span":[755,40,41]},{"path":[4,38,2,1],"span":[756,2,42]},{"path":[4,38,2,1,4],"span":[756,2,10]},{"path":[4,38,2,1,6],"span":[756,11,27]},{"path":[4,38,2,1,1],"span":[756,28,37]},{"path":[4,38,2,1,3],"span":[756,40,41]},{"path":[4,39],"span":[759,0,782,1]},{"path":[4,39,1],"span":[759,8,24]},{"path":[4,39,2,0],"span":[760,2,18]},{"path":[4,39,2,0,5],"span":[760,2,8]},{"path":[4,39,2,0,1],"span":[760,9,13]},{"path":[4,39,2,0,3],"span":[760,16,17]},{"path":[4,39,2,1],"span":[761,2,18]},{"path":[4,39,2,1,5],"span":[761,2,8]},{"path":[4,39,2,1,1],"span":[761,9,13]},{"path":[4,39,2,1,3],"span":[761,16,17]},{"path":[4,39,2,2],"span":[762,2,22]},{"path":[4,39,2,2,5],"span":[762,2,8]},{"path":[4,39,2,2,1],"span":[762,9,17]},{"path":[4,39,2,2,3],"span":[762,20,21]},{"path":[4,39,2,3],"span":[764,2,25]},{"path":[4,39,2,3,4],"span":[764,2,10]},{"path":[4,39,2,3,5],"span":[764,11,17]},{"path":[4,39,2,3,1],"span":[764,18,20]},{"path":[4,39,2,3,3],"span":[764,23,24]},{"path":[4,39,2,4],"span":[766,2,26]},{"path":[4,39,2,4,4],"span":[766,2,10]},{"path":[4,39,2,4,5],"span":[766,11,17]},{"path":[4,39,2,4,1],"span":[766,18,21]},{"path":[4,39,2,4,3],"span":[766,24,25]},{"path":[4,39,2,5],"span":[768,2,33]},{"path":[4,39,2,5,4],"span":[768,2,10]},{"path":[4,39,2,5,5],"span":[768,11,15]},{"path":[4,39,2,5,1],"span":[768,16,28]},{"path":[4,39,2,5,3],"span":[768,31,32]},{"path":[4,39,2,6],"span":[769,2,37]},{"path":[4,39,2,6,4],"span":[769,2,10]},{"path":[4,39,2,6,5],"span":[769,11,17]},{"path":[4,39,2,6,1],"span":[769,18,32]},{"path":[4,39,2,6,3],"span":[769,35,36]},{"path":[4,39,2,7],"span":[771,2,31]},{"path":[4,39,2,7,4],"span":[771,2,10]},{"path":[4,39,2,7,6],"span":[771,11,23]},{"path":[4,39,2,7,1],"span":[771,24,26]},{"path":[4,39,2,7,3],"span":[771,29,30]},{"path":[4,39,2,8],"span":[773,2,33]},{"path":[4,39,2,8,4],"span":[773,2,10]},{"path":[4,39,2,8,5],"span":[773,11,17]},{"path":[4,39,2,8,1],"span":[773,18,28]},{"path":[4,39,2,8,3],"span":[773,31,32]},{"path":[4,39,2,9],"span":[774,2,35]},{"path":[4,39,2,9,4],"span":[774,2,10]},{"path":[4,39,2,9,5],"span":[774,11,17]},{"path":[4,39,2,9,1],"span":[774,18,29]},{"path":[4,39,2,9,3],"span":[774,32,34]},{"path":[4,39,2,10],"span":[776,2,34]},{"path":[4,39,2,10,4],"span":[776,2,10]},{"path":[4,39,2,10,5],"span":[776,11,17]},{"path":[4,39,2,10,1],"span":[776,18,28]},{"path":[4,39,2,10,3],"span":[776,31,33]},{"path":[4,39,2,11],"span":[777,2,37]},{"path":[4,39,2,11,4],"span":[777,2,10]},{"path":[4,39,2,11,5],"span":[777,11,17]},{"path":[4,39,2,11,1],"span":[777,18,31]},{"path":[4,39,2,11,3],"span":[777,34,36]},{"path":[4,39,2,12],"span":[778,2,54]},{"path":[4,39,2,12,4],"span":[778,2,10]},{"path":[4,39,2,12,5],"span":[778,11,17]},{"path":[4,39,2,12,1],"span":[778,18,48]},{"path":[4,39,2,12,3],"span":[778,51,53]},{"path":[4,39,2,13],"span":[780,2,36]},{"path":[4,39,2,13,4],"span":[780,2,10]},{"path":[4,39,2,13,5],"span":[780,11,17]},{"path":[4,39,2,13,1],"span":[780,18,30]},{"path":[4,39,2,13,3],"span":[780,33,35]},{"path":[4,39,2,14],"span":[781,2,37]},{"path":[4,39,2,14,4],"span":[781,2,10]},{"path":[4,39,2,14,5],"span":[781,11,17]},{"path":[4,39,2,14,1],"span":[781,18,31]},{"path":[4,39,2,14,3],"span":[781,34,36]},{"path":[4,40],"span":[785,0,788,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,40,1],"span":[785,8,20]},{"path":[4,40,2,0],"span":[786,2,16]},{"path":[4,40,2,0,5],"span":[786,2,8]},{"path":[4,40,2,0,1],"span":[786,9,11]},{"path":[4,40,2,0,3],"span":[786,14,15]},{"path":[4,40,2,1],"span":[787,2,20]},{"path":[4,40,2,1,5],"span":[787,2,8]},{"path":[4,40,2,1,1],"span":[787,9,15]},{"path":[4,40,2,1,3],"span":[787,18,19]},{"path":[4,41],"span":[793,0,798,1],"leadingComments":"\n Network protocols, summary and detailed info.\n"},{"path":[4,41,1],"span":[793,8,24]},{"path":[4,41,2,0],"span":[794,4,33],"trailingComments":" summary list of protocols and data points available\n"},{"path":[4,41,2,0,4],"span":[794,4,12]},{"path":[4,41,2,0,5],"span":[794,13,19]},{"path":[4,41,2,0,1],"span":[794,20,28]},{"path":[4,41,2,0,3],"span":[794,31,32]},{"path":[4,42],"span":[803,0,806,1],"leadingComments":"\n Full port scan.\n"},{"path":[4,42,1],"span":[803,8,16]},{"path":[4,42,2,0],"span":[804,2,42]},{"path":[4,42,2,0,6],"span":[804,2,27]},{"path":[4,42,2,0,1],"span":[804,28,37]},{"path":[4,42,2,0,3],"span":[804,40,41]},{"path":[4,42,2,1],"span":[805,2,40]},{"path":[4,42,2,1,4],"span":[805,2,10]},{"path":[4,42,2,1,6],"span":[805,11,22]},{"path":[4,42,2,1,1],"span":[805,23,35]},{"path":[4,42,2,1,3],"span":[805,38,39]},{"path":[4,43],"span":[808,0,817,1]},{"path":[4,43,1],"span":[808,8,19]},{"path":[4,43,2,0],"span":[809,2,22]},{"path":[4,43,2,0,5],"span":[809,2,8]},{"path":[4,43,2,0,1],"span":[809,9,17]},{"path":[4,43,2,0,3],"span":[809,20,21]},{"path":[4,43,2,1],"span":[810,2,24]},{"path":[4,43,2,1,5],"span":[810,2,7]},{"path":[4,43,2,1,1],"span":[810,8,19]},{"path":[4,43,2,1,3],"span":[810,22,23]},{"path":[4,43,2,2],"span":[811,2,36]},{"path":[4,43,2,2,4],"span":[811,2,10]},{"path":[4,43,2,2,5],"span":[811,11,17]},{"path":[4,43,2,2,1],"span":[811,18,31]},{"path":[4,43,2,2,3],"span":[811,34,35]},{"path":[4,43,2,3],"span":[812,2,35]},{"path":[4,43,2,3,4],"span":[812,2,10]},{"path":[4,43,2,3,5],"span":[812,11,17]},{"path":[4,43,2,3,1],"span":[812,18,30]},{"path":[4,43,2,3,3],"span":[812,33,34]},{"path":[4,43,2,4],"span":[814,2,29]},{"path":[4,43,2,4,4],"span":[814,2,10]},{"path":[4,43,2,4,5],"span":[814,11,17]},{"path":[4,43,2,4,1],"span":[814,18,24]},{"path":[4,43,2,4,3],"span":[814,27,28]},{"path":[4,43,2,5],"span":[815,2,42]},{"path":[4,43,2,5,4],"span":[815,2,10]},{"path":[4,43,2,5,6],"span":[815,11,25]},{"path":[4,43,2,5,1],"span":[815,26,37]},{"path":[4,43,2,5,3],"span":[815,40,41]},{"path":[4,44],"span":[819,0,832,1]},{"path":[4,44,1],"span":[819,8,22]},{"path":[4,44,2,0],"span":[820,2,17]},{"path":[4,44,2,0,5],"span":[820,2,7]},{"path":[4,44,2,0,1],"span":[820,8,12]},{"path":[4,44,2,0,3],"span":[820,15,16]},{"path":[4,44,2,1],"span":[821,2,24]},{"path":[4,44,2,1,4],"span":[821,2,10]},{"path":[4,44,2,1,5],"span":[821,11,15]},{"path":[4,44,2,1,1],"span":[821,16,19]},{"path":[4,44,2,1,3],"span":[821,22,23]},{"path":[4,44,2,2],"span":[823,2,29],"trailingComments":" http_header.server\n"},{"path":[4,44,2,2,4],"span":[823,2,10]},{"path":[4,44,2,2,5],"span":[823,11,17]},{"path":[4,44,2,2,1],"span":[823,18,24]},{"path":[4,44,2,2,3],"span":[823,27,28]},{"path":[4,44,2,3],"span":[824,2,30],"trailingComments":" http_header.wwwauth\n"},{"path":[4,44,2,3,4],"span":[824,2,10]},{"path":[4,44,2,3,5],"span":[824,11,17]},{"path":[4,44,2,3,1],"span":[824,18,25]},{"path":[4,44,2,3,3],"span":[824,28,29]},{"path":[4,44,2,4],"span":[825,2,29],"trailingComments":" http_header.cookie\n"},{"path":[4,44,2,4,4],"span":[825,2,10]},{"path":[4,44,2,4,5],"span":[825,11,17]},{"path":[4,44,2,4,1],"span":[825,18,24]},{"path":[4,44,2,4,3],"span":[825,27,28]},{"path":[4,44,2,5],"span":[827,2,28],"trailingComments":" html_title\n"},{"path":[4,44,2,5,4],"span":[827,2,10]},{"path":[4,44,2,5,5],"span":[827,11,17]},{"path":[4,44,2,5,1],"span":[827,18,23]},{"path":[4,44,2,5,3],"span":[827,26,27]},{"path":[4,44,2,6],"span":[828,2,34],"trailingComments":" favicon.md5\n"},{"path":[4,44,2,6,4],"span":[828,2,10]},{"path":[4,44,2,6,5],"span":[828,11,17]},{"path":[4,44,2,6,1],"span":[828,18,29]},{"path":[4,44,2,6,3],"span":[828,32,33]},{"path":[4,44,2,7],"span":[829,2,29],"trailingComments":" in case at some point we want to store full\n"},{"path":[4,44,2,7,4],"span":[829,2,10]},{"path":[4,44,2,7,5],"span":[829,11,16]},{"path":[4,44,2,7,1],"span":[829,17,24]},{"path":[4,44,2,7,3],"span":[829,27,28]},{"path":[4,44,2,8],"span":[831,2,44],"trailingComments":" Captured certificates\n"},{"path":[4,44,2,8,4],"span":[831,2,10]},{"path":[4,44,2,8,6],"span":[831,11,26]},{"path":[4,44,2,8,1],"span":[831,27,39]},{"path":[4,44,2,8,3],"span":[831,42,43]},{"path":[4,45],"span":[834,0,849,1]},{"path":[4,45,1],"span":[834,8,23]},{"path":[4,45,2,0],"span":[835,2,33],"trailingComments":" thumbprint\n"},{"path":[4,45,2,0,4],"span":[835,2,10]},{"path":[4,45,2,0,5],"span":[835,11,17]},{"path":[4,45,2,0,1],"span":[835,18,28]},{"path":[4,45,2,0,3],"span":[835,31,32]},{"path":[4,45,2,1],"span":[836,2,36],"trailingComments":" serial_number (as a big-endian hexadecimal string)\n"},{"path":[4,45,2,1,4],"span":[836,2,10]},{"path":[4,45,2,1,5],"span":[836,11,17]},{"path":[4,45,2,1,1],"span":[836,18,31]},{"path":[4,45,2,1,3],"span":[836,34,35]},{"path":[4,45,2,2],"span":[837,2,34],"trailingComments":" x509.issuer\n"},{"path":[4,45,2,2,4],"span":[837,2,10]},{"path":[4,45,2,2,5],"span":[837,11,17]},{"path":[4,45,2,2,1],"span":[837,18,29]},{"path":[4,45,2,2,3],"span":[837,32,33]},{"path":[4,45,2,3],"span":[838,2,35],"trailingComments":" x509.subject\n"},{"path":[4,45,2,3,4],"span":[838,2,10]},{"path":[4,45,2,3,5],"span":[838,11,17]},{"path":[4,45,2,3,1],"span":[838,18,30]},{"path":[4,45,2,3,3],"span":[838,33,34]},{"path":[4,45,2,4],"span":[839,2,56],"trailingComments":" not_before\n"},{"path":[4,45,2,4,4],"span":[839,2,10]},{"path":[4,45,2,4,6],"span":[839,11,36]},{"path":[4,45,2,4,1],"span":[839,37,51]},{"path":[4,45,2,4,3],"span":[839,54,55]},{"path":[4,45,2,5],"span":[840,2,57],"trailingComments":" not_after\n"},{"path":[4,45,2,5,4],"span":[840,2,10]},{"path":[4,45,2,5,6],"span":[840,11,36]},{"path":[4,45,2,5,1],"span":[840,37,52]},{"path":[4,45,2,5,3],"span":[840,55,56]},{"path":[4,45,4,0],"span":[842,2,846,3]},{"path":[4,45,4,0,1],"span":[842,7,22]},{"path":[4,45,4,0,2,0],"span":[843,4,45]},{"path":[4,45,4,0,2,0,1],"span":[843,4,40]},{"path":[4,45,4,0,2,0,2],"span":[843,43,44]},{"path":[4,45,4,0,2,1],"span":[844,4,45]},{"path":[4,45,4,0,2,1,1],"span":[844,4,40]},{"path":[4,45,4,0,2,1,2],"span":[844,43,44]},{"path":[4,45,4,0,2,2],"span":[845,4,44]},{"path":[4,45,4,0,2,2,1],"span":[845,4,39]},{"path":[4,45,4,0,2,2,2],"span":[845,42,43]},{"path":[4,45,2,6],"span":[848,2,38],"trailingComments":" ssl errors\n"},{"path":[4,45,2,6,4],"span":[848,2,10]},{"path":[4,45,2,6,6],"span":[848,11,26]},{"path":[4,45,2,6,1],"span":[848,27,33]},{"path":[4,45,2,6,3],"span":[848,36,37]},{"path":[4,46],"span":[853,0,894,1],"leadingComments":" Processor *"},{"path":[4,46,1],"span":[853,8,17]},{"path":[4,46,2,0],"span":[854,2,21]},{"path":[4,46,2,0,5],"span":[854,2,8]},{"path":[4,46,2,0,1],"span":[854,10,14]},{"path":[4,46,2,0,3],"span":[854,17,18]},{"path":[4,46,2,1],"span":[855,2,36],"trailingComments":" Linux-only\n"},{"path":[4,46,2,1,4],"span":[855,2,10]},{"path":[4,46,2,1,5],"span":[855,11,17]},{"path":[4,46,2,1,1],"span":[855,18,31]},{"path":[4,46,2,1,3],"span":[855,34,35]},{"path":[4,46,2,2],"span":[856,2,35],"trailingComments":" Windows-only\n"},{"path":[4,46,2,2,4],"span":[856,2,10]},{"path":[4,46,2,2,5],"span":[856,11,16]},{"path":[4,46,2,2,1],"span":[856,17,30]},{"path":[4,46,2,2,3],"span":[856,33,34]},{"path":[4,46,2,3],"span":[857,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,46,2,3,4],"span":[857,2,10]},{"path":[4,46,2,3,6],"span":[857,11,22]},{"path":[4,46,2,3,1],"span":[857,23,35]},{"path":[4,46,2,3,3],"span":[857,38,39]},{"path":[4,46,2,4],"span":[858,2,34],"trailingComments":" Windows-only\n"},{"path":[4,46,2,4,4],"span":[858,2,10]},{"path":[4,46,2,4,5],"span":[858,11,16]},{"path":[4,46,2,4,1],"span":[858,17,29]},{"path":[4,46,2,4,3],"span":[858,32,33]},{"path":[4,46,2,5],"span":[859,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,46,2,5,4],"span":[859,2,10]},{"path":[4,46,2,5,5],"span":[859,11,17]},{"path":[4,46,2,5,1],"span":[859,18,27]},{"path":[4,46,2,5,3],"span":[859,30,31]},{"path":[4,46,2,6],"span":[860,2,33],"trailingComments":" Linux-only\n"},{"path":[4,46,2,6,4],"span":[860,2,10]},{"path":[4,46,2,6,5],"span":[860,11,17]},{"path":[4,46,2,6,1],"span":[860,18,28]},{"path":[4,46,2,6,3],"span":[860,31,32]},{"path":[4,46,2,7],"span":[861,2,30],"trailingComments":" Windows-only\n"},{"path":[4,46,2,7,4],"span":[861,2,10]},{"path":[4,46,2,7,5],"span":[861,11,17]},{"path":[4,46,2,7,1],"span":[861,18,25]},{"path":[4,46,2,7,3],"span":[861,28,29]},{"path":[4,46,2,8],"span":[862,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,46,2,8,4],"span":[862,2,10]},{"path":[4,46,2,8,5],"span":[862,11,16]},{"path":[4,46,2,8,1],"span":[862,17,36]},{"path":[4,46,2,8,3],"span":[862,39,40]},{"path":[4,46,2,9],"span":[863,2,33],"trailingComments":" Windows-only\n"},{"path":[4,46,2,9,4],"span":[863,2,10]},{"path":[4,46,2,9,5],"span":[863,11,16]},{"path":[4,46,2,9,1],"span":[863,17,27]},{"path":[4,46,2,9,3],"span":[863,30,32]},{"path":[4,46,2,10],"span":[864,2,33],"trailingComments":" Windows-only\n"},{"path":[4,46,2,10,4],"span":[864,2,10]},{"path":[4,46,2,10,5],"span":[864,11,17]},{"path":[4,46,2,10,1],"span":[864,18,27]},{"path":[4,46,2,10,3],"span":[864,30,32]},{"path":[4,46,2,11],"span":[865,2,41],"trailingComments":" Windows-only\n"},{"path":[4,46,2,11,4],"span":[865,2,10]},{"path":[4,46,2,11,5],"span":[865,11,16]},{"path":[4,46,2,11,1],"span":[865,17,35]},{"path":[4,46,2,11,3],"span":[865,38,40]},{"path":[4,46,2,12],"span":[866,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,46,2,12,4],"span":[866,2,10]},{"path":[4,46,2,12,6],"span":[866,11,22]},{"path":[4,46,2,12,1],"span":[866,23,29]},{"path":[4,46,2,12,3],"span":[866,32,34]},{"path":[4,46,2,13],"span":[867,2,41],"trailingComments":" Linux-only\n"},{"path":[4,46,2,13,4],"span":[867,2,10]},{"path":[4,46,2,13,5],"span":[867,11,17]},{"path":[4,46,2,13,1],"span":[867,18,35]},{"path":[4,46,2,13,3],"span":[867,38,40]},{"path":[4,46,2,14],"span":[868,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,46,2,14,4],"span":[868,2,10]},{"path":[4,46,2,14,5],"span":[868,11,16]},{"path":[4,46,2,14,1],"span":[868,17,34]},{"path":[4,46,2,14,3],"span":[868,37,39]},{"path":[4,46,2,15],"span":[869,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,46,2,15,4],"span":[869,2,10]},{"path":[4,46,2,15,5],"span":[869,11,16]},{"path":[4,46,2,15,1],"span":[869,17,34]},{"path":[4,46,2,15,3],"span":[869,37,39]},{"path":[4,46,2,16],"span":[870,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,46,2,16,4],"span":[870,2,10]},{"path":[4,46,2,16,5],"span":[870,11,16]},{"path":[4,46,2,16,1],"span":[870,17,33]},{"path":[4,46,2,16,3],"span":[870,36,38]},{"path":[4,46,2,17],"span":[871,2,41],"trailingComments":" Windows-only\n"},{"path":[4,46,2,17,4],"span":[871,2,10]},{"path":[4,46,2,17,5],"span":[871,11,16]},{"path":[4,46,2,17,1],"span":[871,17,35]},{"path":[4,46,2,17,3],"span":[871,38,40]},{"path":[4,46,2,18],"span":[872,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,46,2,18,4],"span":[872,2,10]},{"path":[4,46,2,18,5],"span":[872,11,16]},{"path":[4,46,2,18,1],"span":[872,17,33]},{"path":[4,46,2,18,3],"span":[872,36,38]},{"path":[4,46,2,19],"span":[873,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,46,2,19,4],"span":[873,2,10]},{"path":[4,46,2,19,5],"span":[873,11,16]},{"path":[4,46,2,19,1],"span":[873,17,22]},{"path":[4,46,2,19,3],"span":[873,25,27]},{"path":[4,46,2,20],"span":[874,2,44]},{"path":[4,46,2,20,4],"span":[874,2,10]},{"path":[4,46,2,20,5],"span":[874,11,16]},{"path":[4,46,2,20,1],"span":[874,17,36]},{"path":[4,46,2,20,3],"span":[874,39,41]},{"path":[4,46,2,21],"span":[875,2,38]},{"path":[4,46,2,21,4],"span":[875,2,10]},{"path":[4,46,2,21,5],"span":[875,11,17]},{"path":[4,46,2,21,1],"span":[875,18,30]},{"path":[4,46,2,21,3],"span":[875,33,35]},{"path":[4,46,2,22],"span":[876,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,46,2,22,4],"span":[876,2,10]},{"path":[4,46,2,22,5],"span":[876,11,16]},{"path":[4,46,2,22,1],"span":[876,17,36]},{"path":[4,46,2,22,3],"span":[876,39,41]},{"path":[4,46,2,23],"span":[877,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,46,2,23,4],"span":[877,2,10]},{"path":[4,46,2,23,5],"span":[877,11,16]},{"path":[4,46,2,23,1],"span":[877,17,36]},{"path":[4,46,2,23,3],"span":[877,39,41]},{"path":[4,46,2,24],"span":[878,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,46,2,24,4],"span":[878,2,10]},{"path":[4,46,2,24,5],"span":[878,11,16]},{"path":[4,46,2,24,1],"span":[878,17,29]},{"path":[4,46,2,24,3],"span":[878,32,34]},{"path":[4,46,2,25],"span":[879,2,32],"trailingComments":" Linux-only\n"},{"path":[4,46,2,25,4],"span":[879,2,10]},{"path":[4,46,2,25,5],"span":[879,11,17]},{"path":[4,46,2,25,1],"span":[879,18,26]},{"path":[4,46,2,25,3],"span":[879,29,31]},{"path":[4,46,2,26],"span":[880,2,45]},{"path":[4,46,2,26,4],"span":[880,2,10]},{"path":[4,46,2,26,5],"span":[880,11,16]},{"path":[4,46,2,26,1],"span":[880,17,37]},{"path":[4,46,2,26,3],"span":[880,40,42]},{"path":[4,46,2,27],"span":[881,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,46,2,27,4],"span":[881,2,10]},{"path":[4,46,2,27,5],"span":[881,11,17]},{"path":[4,46,2,27,1],"span":[881,18,30]},{"path":[4,46,2,27,3],"span":[881,33,35]},{"path":[4,46,2,28],"span":[882,2,43],"trailingComments":" Windows-only\n"},{"path":[4,46,2,28,4],"span":[882,2,10]},{"path":[4,46,2,28,6],"span":[882,11,22]},{"path":[4,46,2,28,1],"span":[882,23,37]},{"path":[4,46,2,28,3],"span":[882,40,42]},{"path":[4,46,2,29],"span":[883,2,31],"trailingComments":" Windows-only\n"},{"path":[4,46,2,29,4],"span":[883,2,10]},{"path":[4,46,2,29,5],"span":[883,11,16]},{"path":[4,46,2,29,1],"span":[883,17,25]},{"path":[4,46,2,29,3],"span":[883,28,30]},{"path":[4,46,2,30],"span":[884,2,42],"trailingComments":" Windows-only\n"},{"path":[4,46,2,30,4],"span":[884,2,10]},{"path":[4,46,2,30,5],"span":[884,11,17]},{"path":[4,46,2,30,1],"span":[884,18,36]},{"path":[4,46,2,30,3],"span":[884,39,41]},{"path":[4,46,2,31],"span":[885,2,31],"trailingComments":" Linux-only\n"},{"path":[4,46,2,31,4],"span":[885,2,10]},{"path":[4,46,2,31,5],"span":[885,11,16]},{"path":[4,46,2,31,1],"span":[885,18,25]},{"path":[4,46,2,31,3],"span":[885,28,30]},{"path":[4,46,2,32],"span":[886,2,35],"trailingComments":" Windows-only\n"},{"path":[4,46,2,32,4],"span":[886,2,10]},{"path":[4,46,2,32,6],"span":[886,11,22]},{"path":[4,46,2,32,1],"span":[886,23,29]},{"path":[4,46,2,32,3],"span":[886,32,34]},{"path":[4,46,2,33],"span":[887,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,46,2,33,4],"span":[887,2,10]},{"path":[4,46,2,33,5],"span":[887,11,16]},{"path":[4,46,2,33,1],"span":[887,17,25]},{"path":[4,46,2,33,3],"span":[887,28,30]},{"path":[4,46,2,34],"span":[888,2,54],"trailingComments":" Linux-only\n"},{"path":[4,46,2,34,4],"span":[888,2,10]},{"path":[4,46,2,34,5],"span":[888,11,16]},{"path":[4,46,2,34,1],"span":[888,17,48]},{"path":[4,46,2,34,3],"span":[888,51,53]},{"path":[4,46,2,35],"span":[889,2,33],"trailingComments":" Windows-only\n"},{"path":[4,46,2,35,4],"span":[889,2,10]},{"path":[4,46,2,35,5],"span":[889,11,17]},{"path":[4,46,2,35,1],"span":[889,18,27]},{"path":[4,46,2,35,3],"span":[889,30,32]},{"path":[4,46,2,36],"span":[890,2,43],"trailingComments":" Windows-only\n"},{"path":[4,46,2,36,4],"span":[890,2,10]},{"path":[4,46,2,36,6],"span":[890,11,22]},{"path":[4,46,2,36,1],"span":[890,23,37]},{"path":[4,46,2,36,3],"span":[890,40,42]},{"path":[4,46,2,37],"span":[891,2,31],"trailingComments":" Windows-only\n"},{"path":[4,46,2,37,4],"span":[891,2,10]},{"path":[4,46,2,37,5],"span":[891,11,17]},{"path":[4,46,2,37,1],"span":[891,18,25]},{"path":[4,46,2,37,3],"span":[891,28,30]},{"path":[4,46,2,38],"span":[892,2,38],"trailingComments":" Linux-only\n"},{"path":[4,46,2,38,4],"span":[892,2,10]},{"path":[4,46,2,38,5],"span":[892,11,17]},{"path":[4,46,2,38,1],"span":[892,18,32]},{"path":[4,46,2,38,3],"span":[892,35,37]},{"path":[4,46,2,39],"span":[893,2,49],"trailingComments":" Windows-only\n"},{"path":[4,46,2,39,4],"span":[893,2,10]},{"path":[4,46,2,39,6],"span":[893,11,22]},{"path":[4,46,2,39,1],"span":[893,23,43]},{"path":[4,46,2,39,3],"span":[893,46,48]},{"path":[4,47],"span":[897,0,907,1],"leadingComments":" Chassis *"},{"path":[4,47,1],"span":[897,8,15]},{"path":[4,47,2,0],"span":[899,2,25]},{"path":[4,47,2,0,6],"span":[899,2,13]},{"path":[4,47,2,0,1],"span":[899,16,20]},{"path":[4,47,2,0,3],"span":[899,23,24]},{"path":[4,47,2,1],"span":[900,2,33]},{"path":[4,47,2,1,4],"span":[900,2,10]},{"path":[4,47,2,1,5],"span":[900,11,15]},{"path":[4,47,2,1,1],"span":[900,16,28]},{"path":[4,47,2,1,3],"span":[900,31,32]},{"path":[4,47,2,2],"span":[901,2,41]},{"path":[4,47,2,2,4],"span":[901,2,10]},{"path":[4,47,2,2,5],"span":[901,11,17]},{"path":[4,47,2,2,1],"span":[901,24,36]},{"path":[4,47,2,2,3],"span":[901,39,40]},{"path":[4,47,2,3],"span":[902,2,43]},{"path":[4,47,2,3,4],"span":[902,2,10]},{"path":[4,47,2,3,6],"span":[902,11,22]},{"path":[4,47,2,3,1],"span":[902,23,38]},{"path":[4,47,2,3,3],"span":[902,41,42]},{"path":[4,47,2,4],"span":[903,2,42]},{"path":[4,47,2,4,4],"span":[903,2,10]},{"path":[4,47,2,4,5],"span":[903,11,17]},{"path":[4,47,2,4,1],"span":[903,24,37]},{"path":[4,47,2,4,3],"span":[903,40,41]},{"path":[4,47,2,5],"span":[904,2,38]},{"path":[4,47,2,5,4],"span":[904,2,10]},{"path":[4,47,2,5,5],"span":[904,11,17]},{"path":[4,47,2,5,1],"span":[904,24,33]},{"path":[4,47,2,5,3],"span":[904,36,37]},{"path":[4,47,2,6],"span":[905,2,36]},{"path":[4,47,2,6,4],"span":[905,2,10]},{"path":[4,47,2,6,5],"span":[905,11,17]},{"path":[4,47,2,6,1],"span":[905,24,31]},{"path":[4,47,2,6,3],"span":[905,34,35]},{"path":[4,47,2,7],"span":[906,2,40]},{"path":[4,47,2,7,4],"span":[906,2,10]},{"path":[4,47,2,7,6],"span":[906,11,22]},{"path":[4,47,2,7,1],"span":[906,23,35]},{"path":[4,47,2,7,3],"span":[906,38,39]},{"path":[4,48],"span":[912,0,924,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,48,1],"span":[912,8,17]},{"path":[4,48,2,0],"span":[913,2,30]},{"path":[4,48,2,0,4],"span":[913,2,10]},{"path":[4,48,2,0,5],"span":[913,11,17]},{"path":[4,48,2,0,1],"span":[913,18,25]},{"path":[4,48,2,0,3],"span":[913,28,29]},{"path":[4,48,2,1],"span":[914,2,31]},{"path":[4,48,2,1,4],"span":[914,2,10]},{"path":[4,48,2,1,5],"span":[914,11,15]},{"path":[4,48,2,1,1],"span":[914,16,26]},{"path":[4,48,2,1,3],"span":[914,29,30]},{"path":[4,48,2,2],"span":[915,2,34]},{"path":[4,48,2,2,4],"span":[915,2,10]},{"path":[4,48,2,2,5],"span":[915,11,17]},{"path":[4,48,2,2,1],"span":[915,18,29]},{"path":[4,48,2,2,3],"span":[915,32,33]},{"path":[4,48,2,3],"span":[916,2,32]},{"path":[4,48,2,3,4],"span":[916,2,10]},{"path":[4,48,2,3,5],"span":[916,11,17]},{"path":[4,48,2,3,1],"span":[916,18,27]},{"path":[4,48,2,3,3],"span":[916,30,31]},{"path":[4,48,2,4],"span":[917,2,38]},{"path":[4,48,2,4,4],"span":[917,2,10]},{"path":[4,48,2,4,6],"span":[917,11,22]},{"path":[4,48,2,4,1],"span":[917,23,33]},{"path":[4,48,2,4,3],"span":[917,36,37]},{"path":[4,48,2,5],"span":[918,2,34]},{"path":[4,48,2,5,4],"span":[918,2,10]},{"path":[4,48,2,5,5],"span":[918,11,17]},{"path":[4,48,2,5,1],"span":[918,18,29]},{"path":[4,48,2,5,3],"span":[918,32,33]},{"path":[4,48,2,6],"span":[919,2,32]},{"path":[4,48,2,6,4],"span":[919,2,10]},{"path":[4,48,2,6,5],"span":[919,11,16]},{"path":[4,48,2,6,1],"span":[919,17,27]},{"path":[4,48,2,6,3],"span":[919,30,31]},{"path":[4,48,2,7],"span":[920,2,26]},{"path":[4,48,2,7,4],"span":[920,2,10]},{"path":[4,48,2,7,5],"span":[920,11,16]},{"path":[4,48,2,7,1],"span":[920,17,21]},{"path":[4,48,2,7,3],"span":[920,24,25]},{"path":[4,48,2,8],"span":[921,2,34]},{"path":[4,48,2,8,4],"span":[921,2,10]},{"path":[4,48,2,8,5],"span":[921,11,17]},{"path":[4,48,2,8,1],"span":[921,18,29]},{"path":[4,48,2,8,3],"span":[921,32,33]},{"path":[4,48,2,9],"span":[922,2,37]},{"path":[4,48,2,9,4],"span":[922,2,10]},{"path":[4,48,2,9,5],"span":[922,11,17]},{"path":[4,48,2,9,1],"span":[922,18,31]},{"path":[4,48,2,9,3],"span":[922,34,36]},{"path":[4,48,2,10],"span":[923,2,34]},{"path":[4,48,2,10,4],"span":[923,2,10]},{"path":[4,48,2,10,5],"span":[923,11,17]},{"path":[4,48,2,10,1],"span":[923,18,28]},{"path":[4,48,2,10,3],"span":[923,31,33]},{"path":[4,49],"span":[929,0,959,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,49,1],"span":[929,8,19]},{"path":[4,49,2,0],"span":[930,2,32]},{"path":[4,49,2,0,4],"span":[930,2,10]},{"path":[4,49,2,0,5],"span":[930,11,17]},{"path":[4,49,2,0,1],"span":[930,18,27]},{"path":[4,49,2,0,3],"span":[930,30,31]},{"path":[4,49,2,1],"span":[931,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,49,2,1,4],"span":[931,2,10]},{"path":[4,49,2,1,5],"span":[931,11,17]},{"path":[4,49,2,1,1],"span":[931,18,22]},{"path":[4,49,2,1,3],"span":[931,25,26]},{"path":[4,49,2,2],"span":[932,2,28],"trailingComments":" win and linux\n"},{"path":[4,49,2,2,4],"span":[932,2,10]},{"path":[4,49,2,2,5],"span":[932,11,17]},{"path":[4,49,2,2,1],"span":[932,18,23]},{"path":[4,49,2,2,3],"span":[932,26,27]},{"path":[4,49,2,3],"span":[933,2,27]},{"path":[4,49,2,3,4],"span":[933,2,10]},{"path":[4,49,2,3,5],"span":[933,11,17]},{"path":[4,49,2,3,1],"span":[933,18,22]},{"path":[4,49,2,3,3],"span":[933,25,26]},{"path":[4,49,2,4],"span":[935,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,49,2,4,4],"span":[935,2,10]},{"path":[4,49,2,4,5],"span":[935,11,16]},{"path":[4,49,2,4,1],"span":[935,17,25]},{"path":[4,49,2,4,3],"span":[935,28,29]},{"path":[4,49,2,5],"span":[936,2,32]},{"path":[4,49,2,5,4],"span":[936,2,10]},{"path":[4,49,2,5,5],"span":[936,11,16]},{"path":[4,49,2,5,1],"span":[936,17,27]},{"path":[4,49,2,5,3],"span":[936,30,31]},{"path":[4,49,2,6],"span":[937,2,32]},{"path":[4,49,2,6,4],"span":[937,2,10]},{"path":[4,49,2,6,5],"span":[937,11,16]},{"path":[4,49,2,6,1],"span":[937,17,27]},{"path":[4,49,2,6,3],"span":[937,30,31]},{"path":[4,49,2,7],"span":[939,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,49,2,7,4],"span":[939,2,10]},{"path":[4,49,2,7,6],"span":[939,11,22]},{"path":[4,49,2,7,1],"span":[939,23,33]},{"path":[4,49,2,7,3],"span":[939,36,37]},{"path":[4,49,2,8],"span":[940,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,49,2,8,4],"span":[940,2,10]},{"path":[4,49,2,8,6],"span":[940,11,22]},{"path":[4,49,2,8,1],"span":[940,23,40]},{"path":[4,49,2,8,3],"span":[940,43,44]},{"path":[4,49,2,9],"span":[942,2,41]},{"path":[4,49,2,9,4],"span":[942,2,10]},{"path":[4,49,2,9,5],"span":[942,11,17]},{"path":[4,49,2,9,1],"span":[942,18,35]},{"path":[4,49,2,9,3],"span":[942,38,40]},{"path":[4,49,2,10],"span":[943,2,41]},{"path":[4,49,2,10,4],"span":[943,2,10]},{"path":[4,49,2,10,5],"span":[943,11,17]},{"path":[4,49,2,10,1],"span":[943,18,35]},{"path":[4,49,2,10,3],"span":[943,38,40]},{"path":[4,49,2,11],"span":[944,2,35]},{"path":[4,49,2,11,4],"span":[944,2,10]},{"path":[4,49,2,11,5],"span":[944,11,17]},{"path":[4,49,2,11,1],"span":[944,18,29]},{"path":[4,49,2,11,3],"span":[944,32,34]},{"path":[4,49,2,12],"span":[946,2,32]},{"path":[4,49,2,12,4],"span":[946,2,10]},{"path":[4,49,2,12,5],"span":[946,11,15]},{"path":[4,49,2,12,1],"span":[946,16,26]},{"path":[4,49,2,12,3],"span":[946,29,31]},{"path":[4,49,2,13],"span":[947,2,32]},{"path":[4,49,2,13,4],"span":[947,2,10]},{"path":[4,49,2,13,5],"span":[947,11,15]},{"path":[4,49,2,13,1],"span":[947,16,26]},{"path":[4,49,2,13,3],"span":[947,29,31]},{"path":[4,49,2,14],"span":[948,2,35]},{"path":[4,49,2,14,4],"span":[948,2,10]},{"path":[4,49,2,14,5],"span":[948,11,15]},{"path":[4,49,2,14,1],"span":[948,16,29]},{"path":[4,49,2,14,3],"span":[948,32,34]},{"path":[4,49,2,15],"span":[949,2,35]},{"path":[4,49,2,15,4],"span":[949,2,10]},{"path":[4,49,2,15,5],"span":[949,11,15]},{"path":[4,49,2,15,1],"span":[949,16,29]},{"path":[4,49,2,15,3],"span":[949,32,34]},{"path":[4,49,2,16],"span":[950,2,38]},{"path":[4,49,2,16,4],"span":[950,2,10]},{"path":[4,49,2,16,5],"span":[950,11,15]},{"path":[4,49,2,16,1],"span":[950,16,32]},{"path":[4,49,2,16,3],"span":[950,35,37]},{"path":[4,49,2,17],"span":[951,2,39]},{"path":[4,49,2,17,4],"span":[951,2,10]},{"path":[4,49,2,17,5],"span":[951,11,15]},{"path":[4,49,2,17,1],"span":[951,16,33]},{"path":[4,49,2,17,3],"span":[951,36,38]},{"path":[4,49,2,18],"span":[952,2,42]},{"path":[4,49,2,18,4],"span":[952,2,10]},{"path":[4,49,2,18,5],"span":[952,11,15]},{"path":[4,49,2,18,1],"span":[952,16,36]},{"path":[4,49,2,18,3],"span":[952,39,41]},{"path":[4,49,2,19],"span":[953,2,53]},{"path":[4,49,2,19,4],"span":[953,2,10]},{"path":[4,49,2,19,5],"span":[953,11,15]},{"path":[4,49,2,19,1],"span":[953,16,47]},{"path":[4,49,2,19,3],"span":[953,50,52]},{"path":[4,49,2,20],"span":[956,2,31],"leadingComments":" unix\n"},{"path":[4,49,2,20,4],"span":[956,2,10]},{"path":[4,49,2,20,5],"span":[956,11,17]},{"path":[4,49,2,20,1],"span":[956,18,25]},{"path":[4,49,2,20,3],"span":[956,28,30]},{"path":[4,49,2,21],"span":[957,2,35]},{"path":[4,49,2,21,4],"span":[957,2,10]},{"path":[4,49,2,21,5],"span":[957,11,17]},{"path":[4,49,2,21,1],"span":[957,18,29]},{"path":[4,49,2,21,3],"span":[957,32,34]},{"path":[4,50],"span":[964,0,971,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,50,1],"span":[964,8,21]},{"path":[4,50,8,0],"span":[965,2,968,5]},{"path":[4,50,8,0,1],"span":[965,8,14]},{"path":[4,50,2,0],"span":[966,4,44]},{"path":[4,50,2,0,6],"span":[966,4,22]},{"path":[4,50,2,0,1],"span":[966,23,39]},{"path":[4,50,2,0,3],"span":[966,42,43]},{"path":[4,50,2,1],"span":[967,4,36]},{"path":[4,50,2,1,6],"span":[967,4,20]},{"path":[4,50,2,1,1],"span":[967,21,31]},{"path":[4,50,2,1,3],"span":[967,34,35]},{"path":[4,50,2,2],"span":[970,2,29]},{"path":[4,50,2,2,4],"span":[970,2,10]},{"path":[4,50,2,2,5],"span":[970,11,17]},{"path":[4,50,2,2,1],"span":[970,18,22]},{"path":[4,50,2,2,3],"span":[970,25,28]},{"path":[4,51],"span":[974,0,979,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,51,1],"span":[974,8,26]},{"path":[4,51,2,0],"span":[975,2,26]},{"path":[4,51,2,0,5],"span":[975,2,8]},{"path":[4,51,2,0,1],"span":[975,9,21]},{"path":[4,51,2,0,3],"span":[975,24,25]},{"path":[4,51,2,1],"span":[976,2,32]},{"path":[4,51,2,1,4],"span":[976,2,10]},{"path":[4,51,2,1,5],"span":[976,11,17]},{"path":[4,51,2,1,1],"span":[976,18,27]},{"path":[4,51,2,1,3],"span":[976,30,31]},{"path":[4,51,2,2],"span":[977,2,34]},{"path":[4,51,2,2,4],"span":[977,2,10]},{"path":[4,51,2,2,5],"span":[977,11,17]},{"path":[4,51,2,2,1],"span":[977,18,29]},{"path":[4,51,2,2,3],"span":[977,32,33]},{"path":[4,51,2,3],"span":[978,2,34]},{"path":[4,51,2,3,4],"span":[978,2,10]},{"path":[4,51,2,3,5],"span":[978,11,17]},{"path":[4,51,2,3,1],"span":[978,18,29]},{"path":[4,51,2,3,3],"span":[978,32,33]},{"path":[4,52],"span":[982,0,988,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,52,1],"span":[982,8,24]},{"path":[4,52,2,0],"span":[983,2,27]},{"path":[4,52,2,0,4],"span":[983,2,10]},{"path":[4,52,2,0,5],"span":[983,11,17]},{"path":[4,52,2,0,1],"span":[983,18,22]},{"path":[4,52,2,0,3],"span":[983,25,26]},{"path":[4,52,2,1],"span":[984,2,35]},{"path":[4,52,2,1,4],"span":[984,2,10]},{"path":[4,52,2,1,5],"span":[984,11,17]},{"path":[4,52,2,1,1],"span":[984,18,30]},{"path":[4,52,2,1,3],"span":[984,33,34]},{"path":[4,52,2,2],"span":[985,2,36]},{"path":[4,52,2,2,4],"span":[985,2,10]},{"path":[4,52,2,2,5],"span":[985,11,17]},{"path":[4,52,2,2,1],"span":[985,18,31]},{"path":[4,52,2,2,3],"span":[985,34,35]},{"path":[4,52,2,3],"span":[986,2,35]},{"path":[4,52,2,3,4],"span":[986,2,10]},{"path":[4,52,2,3,5],"span":[986,11,17]},{"path":[4,52,2,3,1],"span":[986,18,30]},{"path":[4,52,2,3,3],"span":[986,33,34]},{"path":[4,52,2,4],"span":[987,2,36]},{"path":[4,52,2,4,4],"span":[987,2,10]},{"path":[4,52,2,4,5],"span":[987,11,17]},{"path":[4,52,2,4,1],"span":[987,18,31]},{"path":[4,52,2,4,3],"span":[987,34,35]},{"path":[4,53],"span":[993,0,1000,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,53,1],"span":[993,8,16]},{"path":[4,53,2,0],"span":[994,2,53]},{"path":[4,53,2,0,4],"span":[994,2,10]},{"path":[4,53,2,0,6],"span":[994,11,22]},{"path":[4,53,2,0,1],"span":[994,23,48]},{"path":[4,53,2,0,3],"span":[994,51,52]},{"path":[4,53,2,1],"span":[995,2,47]},{"path":[4,53,2,1,4],"span":[995,2,10]},{"path":[4,53,2,1,5],"span":[995,11,15]},{"path":[4,53,2,1,1],"span":[995,16,42]},{"path":[4,53,2,1,3],"span":[995,45,46]},{"path":[4,53,2,2],"span":[996,2,34]},{"path":[4,53,2,2,4],"span":[996,2,10]},{"path":[4,53,2,2,5],"span":[996,11,17]},{"path":[4,53,2,2,1],"span":[996,18,29]},{"path":[4,53,2,2,3],"span":[996,32,33]},{"path":[4,53,2,3],"span":[997,2,32]},{"path":[4,53,2,3,4],"span":[997,2,10]},{"path":[4,53,2,3,5],"span":[997,11,17]},{"path":[4,53,2,3,1],"span":[997,18,27]},{"path":[4,53,2,3,3],"span":[997,30,31]},{"path":[4,53,2,4],"span":[998,2,29]},{"path":[4,53,2,4,4],"span":[998,2,10]},{"path":[4,53,2,4,5],"span":[998,11,17]},{"path":[4,53,2,4,1],"span":[998,18,24]},{"path":[4,53,2,4,3],"span":[998,27,28]},{"path":[4,53,2,5],"span":[999,2,45]},{"path":[4,53,2,5,4],"span":[999,2,10]},{"path":[4,53,2,5,5],"span":[999,11,16]},{"path":[4,53,2,5,1],"span":[999,17,40]},{"path":[4,53,2,5,3],"span":[999,43,44]},{"path":[4,54],"span":[1006,0,1011,1],"leadingComments":"\n Computer Bus: from Windows.Bus\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-bus\n"},{"path":[4,54,1],"span":[1006,8,19]},{"path":[4,54,2,0],"span":[1007,2,29]},{"path":[4,54,2,0,4],"span":[1007,2,10]},{"path":[4,54,2,0,5],"span":[1007,11,16]},{"path":[4,54,2,0,1],"span":[1007,17,24]},{"path":[4,54,2,0,3],"span":[1007,27,28]},{"path":[4,54,2,1],"span":[1008,2,36]},{"path":[4,54,2,1,4],"span":[1008,2,10]},{"path":[4,54,2,1,6],"span":[1008,11,22]},{"path":[4,54,2,1,1],"span":[1008,23,31]},{"path":[4,54,2,1,3],"span":[1008,34,35]},{"path":[4,54,2,2],"span":[1009,2,32]},{"path":[4,54,2,2,4],"span":[1009,2,10]},{"path":[4,54,2,2,5],"span":[1009,11,17]},{"path":[4,54,2,2,1],"span":[1009,18,27]},{"path":[4,54,2,2,3],"span":[1009,30,31]},{"path":[4,54,2,3],"span":[1010,2,36]},{"path":[4,54,2,3,4],"span":[1010,2,10]},{"path":[4,54,2,3,5],"span":[1010,11,17]},{"path":[4,54,2,3,1],"span":[1010,18,31]},{"path":[4,54,2,3,3],"span":[1010,34,35]},{"path":[4,55],"span":[1017,0,1025,1],"leadingComments":"\n Computer Infrared: from Windows.Infrared\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-infrareddevice\n"},{"path":[4,55,1],"span":[1017,8,24]},{"path":[4,55,2,0],"span":[1018,2,40]},{"path":[4,55,2,0,4],"span":[1018,2,10]},{"path":[4,55,2,0,6],"span":[1018,11,22]},{"path":[4,55,2,0,1],"span":[1018,23,35]},{"path":[4,55,2,0,3],"span":[1018,38,39]},{"path":[4,55,2,1],"span":[1019,2,30]},{"path":[4,55,2,1,4],"span":[1019,2,10]},{"path":[4,55,2,1,5],"span":[1019,11,17]},{"path":[4,55,2,1,1],"span":[1019,18,25]},{"path":[4,55,2,1,3],"span":[1019,28,29]},{"path":[4,55,2,2],"span":[1020,2,53]},{"path":[4,55,2,2,4],"span":[1020,2,10]},{"path":[4,55,2,2,6],"span":[1020,11,22]},{"path":[4,55,2,2,1],"span":[1020,23,48]},{"path":[4,55,2,2,3],"span":[1020,51,52]},{"path":[4,55,2,3],"span":[1021,2,47]},{"path":[4,55,2,3,4],"span":[1021,2,10]},{"path":[4,55,2,3,5],"span":[1021,11,15]},{"path":[4,55,2,3,1],"span":[1021,16,42]},{"path":[4,55,2,3,3],"span":[1021,45,46]},{"path":[4,55,2,4],"span":[1022,2,32]},{"path":[4,55,2,4,4],"span":[1022,2,10]},{"path":[4,55,2,4,5],"span":[1022,11,17]},{"path":[4,55,2,4,1],"span":[1022,18,27]},{"path":[4,55,2,4,3],"span":[1022,30,31]},{"path":[4,55,2,5],"span":[1023,2,35]},{"path":[4,55,2,5,4],"span":[1023,2,10]},{"path":[4,55,2,5,5],"span":[1023,11,17]},{"path":[4,55,2,5,1],"span":[1023,18,30]},{"path":[4,55,2,5,3],"span":[1023,33,34]},{"path":[4,55,2,6],"span":[1024,2,46]},{"path":[4,55,2,6,4],"span":[1024,2,10]},{"path":[4,55,2,6,6],"span":[1024,11,22]},{"path":[4,55,2,6,1],"span":[1024,23,41]},{"path":[4,55,2,6,3],"span":[1024,44,45]},{"path":[4,56],"span":[1031,0,1043,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,56,1],"span":[1031,8,22]},{"path":[4,56,2,0],"span":[1032,2,30]},{"path":[4,56,2,0,4],"span":[1032,2,10]},{"path":[4,56,2,0,5],"span":[1032,11,17]},{"path":[4,56,2,0,1],"span":[1032,18,25]},{"path":[4,56,2,0,3],"span":[1032,28,29]},{"path":[4,56,2,1],"span":[1033,2,32]},{"path":[4,56,2,1,4],"span":[1033,2,10]},{"path":[4,56,2,1,5],"span":[1033,11,17]},{"path":[4,56,2,1,1],"span":[1033,18,27]},{"path":[4,56,2,1,3],"span":[1033,30,31]},{"path":[4,56,2,2],"span":[1034,2,44]},{"path":[4,56,2,2,4],"span":[1034,2,10]},{"path":[4,56,2,2,6],"span":[1034,11,22]},{"path":[4,56,2,2,1],"span":[1034,23,39]},{"path":[4,56,2,2,3],"span":[1034,42,43]},{"path":[4,56,2,3],"span":[1035,2,45]},{"path":[4,56,2,3,4],"span":[1035,2,10]},{"path":[4,56,2,3,5],"span":[1035,11,16]},{"path":[4,56,2,3,1],"span":[1035,18,40]},{"path":[4,56,2,3,3],"span":[1035,43,44]},{"path":[4,56,2,4],"span":[1036,2,38]},{"path":[4,56,2,4,4],"span":[1036,2,10]},{"path":[4,56,2,4,6],"span":[1036,11,22]},{"path":[4,56,2,4,1],"span":[1036,23,33]},{"path":[4,56,2,4,3],"span":[1036,36,37]},{"path":[4,56,2,5],"span":[1037,2,36]},{"path":[4,56,2,5,4],"span":[1037,2,10]},{"path":[4,56,2,5,5],"span":[1037,11,17]},{"path":[4,56,2,5,1],"span":[1037,18,31]},{"path":[4,56,2,5,3],"span":[1037,34,35]},{"path":[4,56,2,6],"span":[1038,2,34]},{"path":[4,56,2,6,4],"span":[1038,2,10]},{"path":[4,56,2,6,5],"span":[1038,11,17]},{"path":[4,56,2,6,1],"span":[1038,18,29]},{"path":[4,56,2,6,3],"span":[1038,32,33]},{"path":[4,56,2,7],"span":[1039,2,35]},{"path":[4,56,2,7,4],"span":[1039,2,10]},{"path":[4,56,2,7,5],"span":[1039,11,17]},{"path":[4,56,2,7,1],"span":[1039,18,30]},{"path":[4,56,2,7,3],"span":[1039,33,34]},{"path":[4,56,2,8],"span":[1040,2,40]},{"path":[4,56,2,8,4],"span":[1040,2,10]},{"path":[4,56,2,8,5],"span":[1040,11,16]},{"path":[4,56,2,8,1],"span":[1040,18,35]},{"path":[4,56,2,8,3],"span":[1040,38,39]},{"path":[4,56,2,9],"span":[1041,2,42]},{"path":[4,56,2,9,4],"span":[1041,2,10]},{"path":[4,56,2,9,6],"span":[1041,11,22]},{"path":[4,56,2,9,1],"span":[1041,23,36]},{"path":[4,56,2,9,3],"span":[1041,39,41]},{"path":[4,56,2,10],"span":[1042,2,44]},{"path":[4,56,2,10,4],"span":[1042,2,10]},{"path":[4,56,2,10,5],"span":[1042,11,16]},{"path":[4,56,2,10,1],"span":[1042,18,38]},{"path":[4,56,2,10,3],"span":[1042,41,43]},{"path":[4,57],"span":[1048,0,1055,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,57,1],"span":[1048,8,22]},{"path":[4,57,2,0],"span":[1049,2,30]},{"path":[4,57,2,0,4],"span":[1049,2,10]},{"path":[4,57,2,0,5],"span":[1049,11,17]},{"path":[4,57,2,0,1],"span":[1049,18,25]},{"path":[4,57,2,0,3],"span":[1049,28,29]},{"path":[4,57,2,1],"span":[1050,2,30]},{"path":[4,57,2,1,4],"span":[1050,2,10]},{"path":[4,57,2,1,5],"span":[1050,11,17]},{"path":[4,57,2,1,1],"span":[1050,18,25]},{"path":[4,57,2,1,3],"span":[1050,28,29]},{"path":[4,57,2,2],"span":[1051,2,31]},{"path":[4,57,2,2,4],"span":[1051,2,10]},{"path":[4,57,2,2,5],"span":[1051,11,17]},{"path":[4,57,2,2,1],"span":[1051,18,26]},{"path":[4,57,2,2,3],"span":[1051,29,30]},{"path":[4,57,2,3],"span":[1052,2,27]},{"path":[4,57,2,3,4],"span":[1052,2,10]},{"path":[4,57,2,3,5],"span":[1052,11,17]},{"path":[4,57,2,3,1],"span":[1052,18,22]},{"path":[4,57,2,3,3],"span":[1052,25,26]},{"path":[4,57,2,4],"span":[1053,2,27]},{"path":[4,57,2,4,4],"span":[1053,2,10]},{"path":[4,57,2,4,5],"span":[1053,11,17]},{"path":[4,57,2,4,1],"span":[1053,18,22]},{"path":[4,57,2,4,3],"span":[1053,25,26]},{"path":[4,57,2,5],"span":[1054,2,31]},{"path":[4,57,2,5,4],"span":[1054,2,10]},{"path":[4,57,2,5,5],"span":[1054,11,17]},{"path":[4,57,2,5,1],"span":[1054,18,26]},{"path":[4,57,2,5,3],"span":[1054,29,30]},{"path":[4,58],"span":[1060,0,1071,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,58,1],"span":[1060,8,18]},{"path":[4,58,2,0],"span":[1061,2,37]},{"path":[4,58,2,0,4],"span":[1061,2,10]},{"path":[4,58,2,0,5],"span":[1061,11,17]},{"path":[4,58,2,0,1],"span":[1061,18,32]},{"path":[4,58,2,0,3],"span":[1061,35,36]},{"path":[4,58,2,1],"span":[1062,2,30]},{"path":[4,58,2,1,4],"span":[1062,2,10]},{"path":[4,58,2,1,5],"span":[1062,11,17]},{"path":[4,58,2,1,1],"span":[1062,18,25]},{"path":[4,58,2,1,3],"span":[1062,28,29]},{"path":[4,58,2,2],"span":[1063,2,27]},{"path":[4,58,2,2,4],"span":[1063,2,10]},{"path":[4,58,2,2,5],"span":[1063,11,17]},{"path":[4,58,2,2,1],"span":[1063,18,22]},{"path":[4,58,2,2,3],"span":[1063,25,26]},{"path":[4,58,2,3],"span":[1064,2,41]},{"path":[4,58,2,3,4],"span":[1064,2,10]},{"path":[4,58,2,3,5],"span":[1064,11,17]},{"path":[4,58,2,3,1],"span":[1064,18,36]},{"path":[4,58,2,3,3],"span":[1064,39,40]},{"path":[4,58,2,4],"span":[1065,2,40]},{"path":[4,58,2,4,4],"span":[1065,2,10]},{"path":[4,58,2,4,5],"span":[1065,11,17]},{"path":[4,58,2,4,1],"span":[1065,18,35]},{"path":[4,58,2,4,3],"span":[1065,38,39]},{"path":[4,58,2,5],"span":[1066,2,37]},{"path":[4,58,2,5,4],"span":[1066,2,10]},{"path":[4,58,2,5,5],"span":[1066,11,17]},{"path":[4,58,2,5,1],"span":[1066,18,32]},{"path":[4,58,2,5,3],"span":[1066,35,36]},{"path":[4,58,2,6],"span":[1069,2,34],"leadingComments":" from mac\n"},{"path":[4,58,2,6,4],"span":[1069,2,10]},{"path":[4,58,2,6,5],"span":[1069,11,17]},{"path":[4,58,2,6,1],"span":[1069,18,29]},{"path":[4,58,2,6,3],"span":[1069,32,33]},{"path":[4,58,2,7],"span":[1070,2,32]},{"path":[4,58,2,7,4],"span":[1070,2,10]},{"path":[4,58,2,7,5],"span":[1070,11,17]},{"path":[4,58,2,7,1],"span":[1070,18,27]},{"path":[4,58,2,7,3],"span":[1070,30,31]},{"path":[4,59],"span":[1076,0,1081,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,59,1],"span":[1076,8,22]},{"path":[4,59,2,0],"span":[1077,2,30]},{"path":[4,59,2,0,4],"span":[1077,2,10]},{"path":[4,59,2,0,5],"span":[1077,11,17]},{"path":[4,59,2,0,1],"span":[1077,18,25]},{"path":[4,59,2,0,3],"span":[1077,28,29]},{"path":[4,59,2,1],"span":[1078,2,28]},{"path":[4,59,2,1,4],"span":[1078,2,10]},{"path":[4,59,2,1,5],"span":[1078,11,17]},{"path":[4,59,2,1,1],"span":[1078,18,22]},{"path":[4,59,2,1,3],"span":[1078,26,27]},{"path":[4,59,2,2],"span":[1079,2,27]},{"path":[4,59,2,2,4],"span":[1079,2,10]},{"path":[4,59,2,2,5],"span":[1079,11,17]},{"path":[4,59,2,2,1],"span":[1079,18,22]},{"path":[4,59,2,2,3],"span":[1079,25,26]},{"path":[4,59,2,3],"span":[1080,2,32]},{"path":[4,59,2,3,4],"span":[1080,2,10]},{"path":[4,59,2,3,6],"span":[1080,11,22]},{"path":[4,59,2,3,1],"span":[1080,23,27]},{"path":[4,59,2,3,3],"span":[1080,30,31]},{"path":[4,60],"span":[1086,0,1092,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,60,1],"span":[1086,8,22]},{"path":[4,60,2,0],"span":[1087,2,27],"trailingComments":" caption\n"},{"path":[4,60,2,0,4],"span":[1087,2,10]},{"path":[4,60,2,0,5],"span":[1087,11,17]},{"path":[4,60,2,0,1],"span":[1087,18,22]},{"path":[4,60,2,0,3],"span":[1087,25,26]},{"path":[4,60,2,1],"span":[1088,2,27],"trailingComments":" executable_path\n"},{"path":[4,60,2,1,4],"span":[1088,2,10]},{"path":[4,60,2,1,5],"span":[1088,11,17]},{"path":[4,60,2,1,1],"span":[1088,18,22]},{"path":[4,60,2,1,3],"span":[1088,25,26]},{"path":[4,60,2,2],"span":[1089,2,29]},{"path":[4,60,2,2,4],"span":[1089,2,10]},{"path":[4,60,2,2,5],"span":[1089,11,16]},{"path":[4,60,2,2,1],"span":[1089,17,24]},{"path":[4,60,2,2,3],"span":[1089,27,28]},{"path":[4,60,2,3],"span":[1090,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,60,2,3,4],"span":[1090,2,10]},{"path":[4,60,2,3,5],"span":[1090,11,16]},{"path":[4,60,2,3,1],"span":[1090,17,25]},{"path":[4,60,2,3,3],"span":[1090,28,29]},{"path":[4,60,2,4],"span":[1091,2,29]},{"path":[4,60,2,4,4],"span":[1091,2,10]},{"path":[4,60,2,4,5],"span":[1091,11,17]},{"path":[4,60,2,4,1],"span":[1091,18,24]},{"path":[4,60,2,4,3],"span":[1091,27,28]},{"path":[4,61],"span":[1097,0,1108,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,61,1],"span":[1097,8,30]},{"path":[4,61,2,0],"span":[1098,2,27]},{"path":[4,61,2,0,4],"span":[1098,2,10]},{"path":[4,61,2,0,5],"span":[1098,11,17]},{"path":[4,61,2,0,1],"span":[1098,18,22]},{"path":[4,61,2,0,3],"span":[1098,25,26]},{"path":[4,61,2,1],"span":[1099,2,30]},{"path":[4,61,2,1,4],"span":[1099,2,10]},{"path":[4,61,2,1,5],"span":[1099,11,17]},{"path":[4,61,2,1,1],"span":[1099,18,25]},{"path":[4,61,2,1,3],"span":[1099,28,29]},{"path":[4,61,2,2],"span":[1100,2,31]},{"path":[4,61,2,2,4],"span":[1100,2,10]},{"path":[4,61,2,2,5],"span":[1100,11,17]},{"path":[4,61,2,2,1],"span":[1100,18,26]},{"path":[4,61,2,2,3],"span":[1100,29,30]},{"path":[4,61,2,3],"span":[1101,2,33]},{"path":[4,61,2,3,4],"span":[1101,2,10]},{"path":[4,61,2,3,5],"span":[1101,11,17]},{"path":[4,61,2,3,1],"span":[1101,18,28]},{"path":[4,61,2,3,3],"span":[1101,31,32]},{"path":[4,61,2,4],"span":[1102,2,33]},{"path":[4,61,2,4,4],"span":[1102,2,10]},{"path":[4,61,2,4,5],"span":[1102,11,17]},{"path":[4,61,2,4,1],"span":[1102,18,28]},{"path":[4,61,2,4,3],"span":[1102,31,32]},{"path":[4,61,2,5],"span":[1103,2,28]},{"path":[4,61,2,5,4],"span":[1103,2,10]},{"path":[4,61,2,5,5],"span":[1103,11,17]},{"path":[4,61,2,5,1],"span":[1103,18,23]},{"path":[4,61,2,5,3],"span":[1103,26,27]},{"path":[4,61,2,6],"span":[1104,2,28]},{"path":[4,61,2,6,4],"span":[1104,2,10]},{"path":[4,61,2,6,5],"span":[1104,11,15]},{"path":[4,61,2,6,1],"span":[1104,16,23]},{"path":[4,61,2,6,3],"span":[1104,26,27]},{"path":[4,61,2,7],"span":[1105,2,33]},{"path":[4,61,2,7,4],"span":[1105,2,10]},{"path":[4,61,2,7,5],"span":[1105,11,15]},{"path":[4,61,2,7,1],"span":[1105,16,28]},{"path":[4,61,2,7,3],"span":[1105,31,32]},{"path":[4,61,2,8],"span":[1106,2,32]},{"path":[4,61,2,8,4],"span":[1106,2,10]},{"path":[4,61,2,8,5],"span":[1106,11,15]},{"path":[4,61,2,8,1],"span":[1106,16,27]},{"path":[4,61,2,8,3],"span":[1106,30,31]},{"path":[4,61,2,9],"span":[1107,2,38]},{"path":[4,61,2,9,4],"span":[1107,2,10]},{"path":[4,61,2,9,5],"span":[1107,11,15]},{"path":[4,61,2,9,1],"span":[1107,16,32]},{"path":[4,61,2,9,3],"span":[1107,35,37]},{"path":[4,62],"span":[1113,0,1117,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,62,1],"span":[1113,8,31]},{"path":[4,62,8,0],"span":[1114,2,1116,3]},{"path":[4,62,8,0,1],"span":[1114,8,10]},{"path":[4,62,2,0],"span":[1115,6,32]},{"path":[4,62,2,0,6],"span":[1115,6,23]},{"path":[4,62,2,0,1],"span":[1115,24,27]},{"path":[4,62,2,0,3],"span":[1115,30,31]},{"path":[4,63],"span":[1122,0,1133,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,63,1],"span":[1122,8,25]},{"path":[4,63,2,0],"span":[1123,2,32]},{"path":[4,63,2,0,4],"span":[1123,2,10]},{"path":[4,63,2,0,5],"span":[1123,11,15]},{"path":[4,63,2,0,1],"span":[1123,16,27]},{"path":[4,63,2,0,3],"span":[1123,30,31]},{"path":[4,63,2,1],"span":[1124,2,38]},{"path":[4,63,2,1,4],"span":[1124,2,10]},{"path":[4,63,2,1,5],"span":[1124,11,17]},{"path":[4,63,2,1,1],"span":[1124,18,33]},{"path":[4,63,2,1,3],"span":[1124,36,37]},{"path":[4,63,2,2],"span":[1125,2,37]},{"path":[4,63,2,2,4],"span":[1125,2,10]},{"path":[4,63,2,2,5],"span":[1125,11,15]},{"path":[4,63,2,2,1],"span":[1125,16,32]},{"path":[4,63,2,2,3],"span":[1125,35,36]},{"path":[4,63,2,3],"span":[1126,2,27]},{"path":[4,63,2,3,4],"span":[1126,2,10]},{"path":[4,63,2,3,5],"span":[1126,11,17]},{"path":[4,63,2,3,1],"span":[1126,18,22]},{"path":[4,63,2,3,3],"span":[1126,25,26]},{"path":[4,63,2,4],"span":[1127,2,50]},{"path":[4,63,2,4,4],"span":[1127,2,10]},{"path":[4,63,2,4,5],"span":[1127,11,15]},{"path":[4,63,2,4,1],"span":[1127,16,45]},{"path":[4,63,2,4,3],"span":[1127,48,49]},{"path":[4,63,2,5],"span":[1128,2,37]},{"path":[4,63,2,5,4],"span":[1128,2,10]},{"path":[4,63,2,5,5],"span":[1128,11,15]},{"path":[4,63,2,5,1],"span":[1128,16,32]},{"path":[4,63,2,5,3],"span":[1128,35,36]},{"path":[4,63,2,6],"span":[1129,2,37]},{"path":[4,63,2,6,4],"span":[1129,2,10]},{"path":[4,63,2,6,5],"span":[1129,11,15]},{"path":[4,63,2,6,1],"span":[1129,16,32]},{"path":[4,63,2,6,3],"span":[1129,35,36]},{"path":[4,63,2,7],"span":[1130,2,40]},{"path":[4,63,2,7,4],"span":[1130,2,10]},{"path":[4,63,2,7,5],"span":[1130,11,15]},{"path":[4,63,2,7,1],"span":[1130,16,35]},{"path":[4,63,2,7,3],"span":[1130,38,39]},{"path":[4,63,2,8],"span":[1131,2,44]},{"path":[4,63,2,8,4],"span":[1131,2,10]},{"path":[4,63,2,8,6],"span":[1131,11,22]},{"path":[4,63,2,8,1],"span":[1131,23,38]},{"path":[4,63,2,8,3],"span":[1131,41,43]},{"path":[4,63,2,9],"span":[1132,2,43]},{"path":[4,63,2,9,4],"span":[1132,2,10]},{"path":[4,63,2,9,5],"span":[1132,11,17]},{"path":[4,63,2,9,1],"span":[1132,18,37]},{"path":[4,63,2,9,3],"span":[1132,40,42]},{"path":[4,64],"span":[1139,0,1148,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,64,1],"span":[1139,8,14]},{"path":[4,64,8,0],"span":[1140,2,1144,3]},{"path":[4,64,8,0,1],"span":[1140,8,14]},{"path":[4,64,2,0],"span":[1141,4,36]},{"path":[4,64,2,0,6],"span":[1141,4,23]},{"path":[4,64,2,0,1],"span":[1141,24,31]},{"path":[4,64,2,0,3],"span":[1141,34,35]},{"path":[4,64,2,1],"span":[1142,4,39]},{"path":[4,64,2,1,6],"span":[1142,4,26]},{"path":[4,64,2,1,1],"span":[1142,27,34]},{"path":[4,64,2,1,3],"span":[1142,37,38]},{"path":[4,64,2,2],"span":[1143,4,41]},{"path":[4,64,2,2,6],"span":[1143,4,24]},{"path":[4,64,2,2,1],"span":[1143,25,36]},{"path":[4,64,2,2,3],"span":[1143,39,40]},{"path":[4,64,2,3],"span":[1146,2,29]},{"path":[4,64,2,3,4],"span":[1146,2,10]},{"path":[4,64,2,3,5],"span":[1146,11,17]},{"path":[4,64,2,3,1],"span":[1146,18,22]},{"path":[4,64,2,3,3],"span":[1146,25,28]},{"path":[4,64,2,4],"span":[1147,2,36]},{"path":[4,64,2,4,4],"span":[1147,2,10]},{"path":[4,64,2,4,5],"span":[1147,11,17]},{"path":[4,64,2,4,1],"span":[1147,18,29]},{"path":[4,64,2,4,3],"span":[1147,32,35]},{"path":[4,65],"span":[1153,0,1172,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,65,1],"span":[1153,8,27]},{"path":[4,65,2,0],"span":[1154,2,34]},{"path":[4,65,2,0,4],"span":[1154,2,10]},{"path":[4,65,2,0,5],"span":[1154,11,15]},{"path":[4,65,2,0,1],"span":[1154,17,29]},{"path":[4,65,2,0,3],"span":[1154,32,33]},{"path":[4,65,2,1],"span":[1155,2,33]},{"path":[4,65,2,1,4],"span":[1155,2,10]},{"path":[4,65,2,1,5],"span":[1155,11,15]},{"path":[4,65,2,1,1],"span":[1155,17,28]},{"path":[4,65,2,1,3],"span":[1155,31,32]},{"path":[4,65,2,2],"span":[1156,2,38]},{"path":[4,65,2,2,4],"span":[1156,2,10]},{"path":[4,65,2,2,5],"span":[1156,11,15]},{"path":[4,65,2,2,1],"span":[1156,17,33]},{"path":[4,65,2,2,3],"span":[1156,36,37]},{"path":[4,65,2,3],"span":[1157,2,36]},{"path":[4,65,2,3,4],"span":[1157,2,10]},{"path":[4,65,2,3,5],"span":[1157,11,17]},{"path":[4,65,2,3,1],"span":[1157,18,31]},{"path":[4,65,2,3,3],"span":[1157,34,35]},{"path":[4,65,2,4],"span":[1158,2,32]},{"path":[4,65,2,4,4],"span":[1158,2,10]},{"path":[4,65,2,4,5],"span":[1158,11,16]},{"path":[4,65,2,4,1],"span":[1158,18,27]},{"path":[4,65,2,4,3],"span":[1158,30,31]},{"path":[4,65,2,5],"span":[1159,2,32]},{"path":[4,65,2,5,4],"span":[1159,2,10]},{"path":[4,65,2,5,5],"span":[1159,11,17]},{"path":[4,65,2,5,1],"span":[1159,18,27]},{"path":[4,65,2,5,3],"span":[1159,30,31]},{"path":[4,65,2,6],"span":[1160,2,49]},{"path":[4,65,2,6,4],"span":[1160,2,10]},{"path":[4,65,2,6,5],"span":[1160,11,16]},{"path":[4,65,2,6,1],"span":[1160,18,44]},{"path":[4,65,2,6,3],"span":[1160,47,48]},{"path":[4,65,2,7],"span":[1161,2,34]},{"path":[4,65,2,7,4],"span":[1161,2,10]},{"path":[4,65,2,7,5],"span":[1161,11,17]},{"path":[4,65,2,7,1],"span":[1161,18,30]},{"path":[4,65,2,7,3],"span":[1161,32,33]},{"path":[4,65,2,8],"span":[1162,2,29]},{"path":[4,65,2,8,4],"span":[1162,2,10]},{"path":[4,65,2,8,5],"span":[1162,11,15]},{"path":[4,65,2,8,1],"span":[1162,17,24]},{"path":[4,65,2,8,3],"span":[1162,27,28]},{"path":[4,65,2,9],"span":[1163,2,34]},{"path":[4,65,2,9,4],"span":[1163,2,10]},{"path":[4,65,2,9,5],"span":[1163,11,17]},{"path":[4,65,2,9,1],"span":[1163,18,28]},{"path":[4,65,2,9,3],"span":[1163,31,33]},{"path":[4,65,2,10],"span":[1164,2,34]},{"path":[4,65,2,10,4],"span":[1164,2,10]},{"path":[4,65,2,10,5],"span":[1164,11,17]},{"path":[4,65,2,10,1],"span":[1164,18,28]},{"path":[4,65,2,10,3],"span":[1164,31,33]},{"path":[4,65,2,11],"span":[1165,2,29]},{"path":[4,65,2,11,4],"span":[1165,2,10]},{"path":[4,65,2,11,5],"span":[1165,11,17]},{"path":[4,65,2,11,1],"span":[1165,18,23]},{"path":[4,65,2,11,3],"span":[1165,26,28]},{"path":[4,65,2,12],"span":[1166,2,30]},{"path":[4,65,2,12,4],"span":[1166,2,10]},{"path":[4,65,2,12,5],"span":[1166,11,17]},{"path":[4,65,2,12,1],"span":[1166,18,24]},{"path":[4,65,2,12,3],"span":[1166,27,29]},{"path":[4,65,2,13],"span":[1167,2,30]},{"path":[4,65,2,13,4],"span":[1167,2,10]},{"path":[4,65,2,13,5],"span":[1167,11,16]},{"path":[4,65,2,13,1],"span":[1167,18,24]},{"path":[4,65,2,13,3],"span":[1167,27,29]},{"path":[4,65,2,14],"span":[1168,2,28]},{"path":[4,65,2,14,4],"span":[1168,2,10]},{"path":[4,65,2,14,5],"span":[1168,11,17]},{"path":[4,65,2,14,1],"span":[1168,18,22]},{"path":[4,65,2,14,3],"span":[1168,25,27]},{"path":[4,65,2,15],"span":[1169,2,35]},{"path":[4,65,2,15,4],"span":[1169,2,10]},{"path":[4,65,2,15,5],"span":[1169,11,17]},{"path":[4,65,2,15,1],"span":[1169,18,29]},{"path":[4,65,2,15,3],"span":[1169,32,34]},{"path":[4,65,2,16],"span":[1170,2,31]},{"path":[4,65,2,16,4],"span":[1170,2,10]},{"path":[4,65,2,16,5],"span":[1170,11,17]},{"path":[4,65,2,16,1],"span":[1170,18,25]},{"path":[4,65,2,16,3],"span":[1170,28,30]},{"path":[4,65,2,17],"span":[1171,2,36]},{"path":[4,65,2,17,4],"span":[1171,2,10]},{"path":[4,65,2,17,5],"span":[1171,11,17]},{"path":[4,65,2,17,1],"span":[1171,18,30]},{"path":[4,65,2,17,3],"span":[1171,33,35]},{"path":[4,66],"span":[1177,0,1196,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,66,1],"span":[1177,8,30]},{"path":[4,66,2,0],"span":[1178,2,32]},{"path":[4,66,2,0,4],"span":[1178,2,10]},{"path":[4,66,2,0,5],"span":[1178,11,17]},{"path":[4,66,2,0,1],"span":[1178,18,27]},{"path":[4,66,2,0,3],"span":[1178,30,31]},{"path":[4,66,2,1],"span":[1179,2,32]},{"path":[4,66,2,1,4],"span":[1179,2,10]},{"path":[4,66,2,1,5],"span":[1179,11,17]},{"path":[4,66,2,1,1],"span":[1179,18,27]},{"path":[4,66,2,1,3],"span":[1179,30,31]},{"path":[4,66,2,2],"span":[1180,2,33]},{"path":[4,66,2,2,4],"span":[1180,2,10]},{"path":[4,66,2,2,5],"span":[1180,11,17]},{"path":[4,66,2,2,1],"span":[1180,18,28]},{"path":[4,66,2,2,3],"span":[1180,31,32]},{"path":[4,66,2,3],"span":[1181,2,34]},{"path":[4,66,2,3,4],"span":[1181,2,10]},{"path":[4,66,2,3,5],"span":[1181,11,17]},{"path":[4,66,2,3,1],"span":[1181,18,29]},{"path":[4,66,2,3,3],"span":[1181,32,33]},{"path":[4,66,2,4],"span":[1182,2,36]},{"path":[4,66,2,4,4],"span":[1182,2,10]},{"path":[4,66,2,4,5],"span":[1182,11,17]},{"path":[4,66,2,4,1],"span":[1182,18,31]},{"path":[4,66,2,4,3],"span":[1182,34,35]},{"path":[4,66,2,5],"span":[1183,2,44]},{"path":[4,66,2,5,6],"span":[1183,2,27]},{"path":[4,66,2,5,1],"span":[1183,28,39]},{"path":[4,66,2,5,3],"span":[1183,42,43]},{"path":[4,66,2,6],"span":[1184,2,37]},{"path":[4,66,2,6,4],"span":[1184,2,10]},{"path":[4,66,2,6,5],"span":[1184,11,17]},{"path":[4,66,2,6,1],"span":[1184,18,32]},{"path":[4,66,2,6,3],"span":[1184,35,36]},{"path":[4,66,2,7],"span":[1185,2,34]},{"path":[4,66,2,7,4],"span":[1185,2,10]},{"path":[4,66,2,7,5],"span":[1185,11,17]},{"path":[4,66,2,7,1],"span":[1185,18,29]},{"path":[4,66,2,7,3],"span":[1185,32,33]},{"path":[4,66,2,8],"span":[1186,2,31]},{"path":[4,66,2,8,4],"span":[1186,2,10]},{"path":[4,66,2,8,5],"span":[1186,11,17]},{"path":[4,66,2,8,1],"span":[1186,18,26]},{"path":[4,66,2,8,3],"span":[1186,29,30]},{"path":[4,66,2,9],"span":[1187,2,32]},{"path":[4,66,2,9,4],"span":[1187,2,10]},{"path":[4,66,2,9,5],"span":[1187,11,15]},{"path":[4,66,2,9,1],"span":[1187,17,26]},{"path":[4,66,2,9,3],"span":[1187,29,31]},{"path":[4,66,2,10],"span":[1188,2,32]},{"path":[4,66,2,10,4],"span":[1188,2,10]},{"path":[4,66,2,10,5],"span":[1188,11,17]},{"path":[4,66,2,10,1],"span":[1188,18,26]},{"path":[4,66,2,10,3],"span":[1188,29,31]},{"path":[4,66,2,11],"span":[1189,2,27]},{"path":[4,66,2,11,4],"span":[1189,2,10]},{"path":[4,66,2,11,5],"span":[1189,11,17]},{"path":[4,66,2,11,1],"span":[1189,18,21]},{"path":[4,66,2,11,3],"span":[1189,24,26]},{"path":[4,66,2,12],"span":[1190,2,36]},{"path":[4,66,2,12,4],"span":[1190,2,10]},{"path":[4,66,2,12,5],"span":[1190,11,17]},{"path":[4,66,2,12,1],"span":[1190,18,30]},{"path":[4,66,2,12,3],"span":[1190,33,35]},{"path":[4,66,2,13],"span":[1191,2,35]},{"path":[4,66,2,13,4],"span":[1191,2,10]},{"path":[4,66,2,13,5],"span":[1191,11,17]},{"path":[4,66,2,13,1],"span":[1191,18,29]},{"path":[4,66,2,13,3],"span":[1191,32,34]},{"path":[4,66,2,14],"span":[1192,2,36]},{"path":[4,66,2,14,4],"span":[1192,2,10]},{"path":[4,66,2,14,5],"span":[1192,11,17]},{"path":[4,66,2,14,1],"span":[1192,18,30]},{"path":[4,66,2,14,3],"span":[1192,33,35]},{"path":[4,66,2,15],"span":[1193,2,35]},{"path":[4,66,2,15,4],"span":[1193,2,10]},{"path":[4,66,2,15,5],"span":[1193,11,17]},{"path":[4,66,2,15,1],"span":[1193,18,29]},{"path":[4,66,2,15,3],"span":[1193,32,34]},{"path":[4,66,2,16],"span":[1194,2,30]},{"path":[4,66,2,16,4],"span":[1194,2,10]},{"path":[4,66,2,16,5],"span":[1194,11,17]},{"path":[4,66,2,16,1],"span":[1194,18,24]},{"path":[4,66,2,16,3],"span":[1194,27,29]},{"path":[4,66,2,17],"span":[1195,2,44]},{"path":[4,66,2,17,4],"span":[1195,2,10]},{"path":[4,66,2,17,5],"span":[1195,11,17]},{"path":[4,66,2,17,1],"span":[1195,18,38]},{"path":[4,66,2,17,3],"span":[1195,41,43]},{"path":[4,67],"span":[1201,0,1221,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,67,1],"span":[1201,8,28]},{"path":[4,67,2,0],"span":[1202,2,34]},{"path":[4,67,2,0,4],"span":[1202,2,10]},{"path":[4,67,2,0,5],"span":[1202,11,17]},{"path":[4,67,2,0,1],"span":[1202,18,29]},{"path":[4,67,2,0,3],"span":[1202,32,33]},{"path":[4,67,2,1],"span":[1203,2,32]},{"path":[4,67,2,1,4],"span":[1203,2,10]},{"path":[4,67,2,1,5],"span":[1203,11,17]},{"path":[4,67,2,1,1],"span":[1203,18,27]},{"path":[4,67,2,1,3],"span":[1203,30,31]},{"path":[4,67,2,2],"span":[1204,2,40]},{"path":[4,67,2,2,4],"span":[1204,2,10]},{"path":[4,67,2,2,5],"span":[1204,11,17]},{"path":[4,67,2,2,1],"span":[1204,18,35]},{"path":[4,67,2,2,3],"span":[1204,38,39]},{"path":[4,67,2,3],"span":[1205,2,34]},{"path":[4,67,2,3,4],"span":[1205,2,10]},{"path":[4,67,2,3,5],"span":[1205,11,17]},{"path":[4,67,2,3,1],"span":[1205,18,29]},{"path":[4,67,2,3,3],"span":[1205,32,33]},{"path":[4,67,2,4],"span":[1206,2,32]},{"path":[4,67,2,4,4],"span":[1206,2,10]},{"path":[4,67,2,4,5],"span":[1206,11,17]},{"path":[4,67,2,4,1],"span":[1206,18,27]},{"path":[4,67,2,4,3],"span":[1206,30,31]},{"path":[4,67,2,5],"span":[1207,2,32]},{"path":[4,67,2,5,4],"span":[1207,2,10]},{"path":[4,67,2,5,5],"span":[1207,11,17]},{"path":[4,67,2,5,1],"span":[1207,18,27]},{"path":[4,67,2,5,3],"span":[1207,30,31]},{"path":[4,67,2,6],"span":[1208,2,35]},{"path":[4,67,2,6,4],"span":[1208,2,10]},{"path":[4,67,2,6,5],"span":[1208,11,17]},{"path":[4,67,2,6,1],"span":[1208,18,30]},{"path":[4,67,2,6,3],"span":[1208,33,34]},{"path":[4,67,2,7],"span":[1209,2,30]},{"path":[4,67,2,7,4],"span":[1209,2,10]},{"path":[4,67,2,7,5],"span":[1209,11,17]},{"path":[4,67,2,7,1],"span":[1209,18,25]},{"path":[4,67,2,7,3],"span":[1209,28,29]},{"path":[4,67,2,8],"span":[1210,2,30]},{"path":[4,67,2,8,4],"span":[1210,2,10]},{"path":[4,67,2,8,5],"span":[1210,11,16]},{"path":[4,67,2,8,1],"span":[1210,18,25]},{"path":[4,67,2,8,3],"span":[1210,28,29]},{"path":[4,67,2,9],"span":[1211,2,38]},{"path":[4,67,2,9,4],"span":[1211,2,10]},{"path":[4,67,2,9,5],"span":[1211,11,17]},{"path":[4,67,2,9,1],"span":[1211,18,32]},{"path":[4,67,2,9,3],"span":[1211,35,37]},{"path":[4,67,2,10],"span":[1212,2,35]},{"path":[4,67,2,10,4],"span":[1212,2,10]},{"path":[4,67,2,10,5],"span":[1212,11,17]},{"path":[4,67,2,10,1],"span":[1212,18,29]},{"path":[4,67,2,10,3],"span":[1212,32,34]},{"path":[4,67,2,11],"span":[1213,2,35]},{"path":[4,67,2,11,4],"span":[1213,2,10]},{"path":[4,67,2,11,5],"span":[1213,11,17]},{"path":[4,67,2,11,1],"span":[1213,18,29]},{"path":[4,67,2,11,3],"span":[1213,32,34]},{"path":[4,67,2,12],"span":[1214,2,32]},{"path":[4,67,2,12,4],"span":[1214,2,10]},{"path":[4,67,2,12,5],"span":[1214,11,17]},{"path":[4,67,2,12,1],"span":[1214,18,26]},{"path":[4,67,2,12,3],"span":[1214,29,31]},{"path":[4,67,2,13],"span":[1215,2,43]},{"path":[4,67,2,13,4],"span":[1215,2,10]},{"path":[4,67,2,13,5],"span":[1215,11,17]},{"path":[4,67,2,13,1],"span":[1215,18,37]},{"path":[4,67,2,13,3],"span":[1215,40,42]},{"path":[4,67,2,14],"span":[1216,2,39]},{"path":[4,67,2,14,4],"span":[1216,2,10]},{"path":[4,67,2,14,5],"span":[1216,11,17]},{"path":[4,67,2,14,1],"span":[1216,18,33]},{"path":[4,67,2,14,3],"span":[1216,36,38]},{"path":[4,67,2,15],"span":[1217,2,28]},{"path":[4,67,2,15,4],"span":[1217,2,10]},{"path":[4,67,2,15,5],"span":[1217,11,17]},{"path":[4,67,2,15,1],"span":[1217,18,22]},{"path":[4,67,2,15,3],"span":[1217,25,27]},{"path":[4,67,2,16],"span":[1218,2,32]},{"path":[4,67,2,16,4],"span":[1218,2,10]},{"path":[4,67,2,16,5],"span":[1218,11,17]},{"path":[4,67,2,16,1],"span":[1218,18,26]},{"path":[4,67,2,16,3],"span":[1218,29,31]},{"path":[4,67,2,17],"span":[1219,2,42]},{"path":[4,67,2,17,4],"span":[1219,2,10]},{"path":[4,67,2,17,5],"span":[1219,11,17]},{"path":[4,67,2,17,1],"span":[1219,18,36]},{"path":[4,67,2,17,3],"span":[1219,39,41]},{"path":[4,67,2,18],"span":[1220,2,36]},{"path":[4,67,2,18,4],"span":[1220,2,10]},{"path":[4,67,2,18,5],"span":[1220,11,17]},{"path":[4,67,2,18,1],"span":[1220,18,30]},{"path":[4,67,2,18,3],"span":[1220,33,35]},{"path":[4,68],"span":[1226,0,1235,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,68,1],"span":[1226,8,17]},{"path":[4,68,2,0],"span":[1227,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,68,2,0,4],"span":[1227,2,10]},{"path":[4,68,2,0,5],"span":[1227,11,17]},{"path":[4,68,2,0,1],"span":[1227,18,25]},{"path":[4,68,2,0,3],"span":[1227,28,29]},{"path":[4,68,2,1],"span":[1228,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,68,2,1,4],"span":[1228,2,10]},{"path":[4,68,2,1,5],"span":[1228,11,17]},{"path":[4,68,2,1,1],"span":[1228,18,27]},{"path":[4,68,2,1,3],"span":[1228,30,31]},{"path":[4,68,2,2],"span":[1229,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,68,2,2,4],"span":[1229,2,10]},{"path":[4,68,2,2,5],"span":[1229,11,17]},{"path":[4,68,2,2,1],"span":[1229,18,30]},{"path":[4,68,2,2,3],"span":[1229,33,34]},{"path":[4,68,2,3],"span":[1231,2,27],"trailingComments":" Linux\n"},{"path":[4,68,2,3,4],"span":[1231,2,10]},{"path":[4,68,2,3,5],"span":[1231,11,17]},{"path":[4,68,2,3,1],"span":[1231,18,22]},{"path":[4,68,2,3,3],"span":[1231,25,26]},{"path":[4,68,2,4],"span":[1232,2,37],"trailingComments":" Linux\n"},{"path":[4,68,2,4,4],"span":[1232,2,10]},{"path":[4,68,2,4,5],"span":[1232,11,17]},{"path":[4,68,2,4,1],"span":[1232,18,32]},{"path":[4,68,2,4,3],"span":[1232,35,36]},{"path":[4,68,2,5],"span":[1233,2,45],"trailingComments":" Linux\n"},{"path":[4,68,2,5,4],"span":[1233,2,10]},{"path":[4,68,2,5,5],"span":[1233,11,17]},{"path":[4,68,2,5,1],"span":[1233,18,40]},{"path":[4,68,2,5,3],"span":[1233,43,44]},{"path":[4,68,2,6],"span":[1234,2,29],"trailingComments":" Linux\n"},{"path":[4,68,2,6,4],"span":[1234,2,10]},{"path":[4,68,2,6,5],"span":[1234,11,17]},{"path":[4,68,2,6,1],"span":[1234,18,24]},{"path":[4,68,2,6,3],"span":[1234,27,28]},{"path":[4,69],"span":[1240,0,1269,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,69,1],"span":[1240,8,20]},{"path":[4,69,2,0],"span":[1241,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,69,2,0,4],"span":[1241,2,10]},{"path":[4,69,2,0,5],"span":[1241,16,22]},{"path":[4,69,2,0,1],"span":[1241,24,28]},{"path":[4,69,2,0,3],"span":[1241,31,32]},{"path":[4,69,2,1],"span":[1242,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,1,4],"span":[1242,2,10]},{"path":[4,69,2,1,5],"span":[1242,16,21]},{"path":[4,69,2,1,1],"span":[1242,24,42]},{"path":[4,69,2,1,3],"span":[1242,45,46]},{"path":[4,69,2,2],"span":[1243,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,2,4],"span":[1243,2,10]},{"path":[4,69,2,2,5],"span":[1243,16,21]},{"path":[4,69,2,2,1],"span":[1243,24,46]},{"path":[4,69,2,2,3],"span":[1243,49,50]},{"path":[4,69,2,3],"span":[1244,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,3,4],"span":[1244,2,10]},{"path":[4,69,2,3,5],"span":[1244,16,21]},{"path":[4,69,2,3,1],"span":[1244,24,53]},{"path":[4,69,2,3,3],"span":[1244,56,57]},{"path":[4,69,2,4],"span":[1245,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,4,4],"span":[1245,2,10]},{"path":[4,69,2,4,5],"span":[1245,16,21]},{"path":[4,69,2,4,1],"span":[1245,24,48]},{"path":[4,69,2,4,3],"span":[1245,51,52]},{"path":[4,69,2,5],"span":[1246,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,5,4],"span":[1246,2,10]},{"path":[4,69,2,5,5],"span":[1246,16,21]},{"path":[4,69,2,5,1],"span":[1246,24,44]},{"path":[4,69,2,5,3],"span":[1246,47,48]},{"path":[4,69,2,6],"span":[1247,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,6,4],"span":[1247,2,10]},{"path":[4,69,2,6,6],"span":[1247,16,27]},{"path":[4,69,2,6,1],"span":[1247,32,49]},{"path":[4,69,2,6,3],"span":[1247,52,53]},{"path":[4,69,2,7],"span":[1248,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,7,4],"span":[1248,2,10]},{"path":[4,69,2,7,5],"span":[1248,16,21]},{"path":[4,69,2,7,1],"span":[1248,24,51]},{"path":[4,69,2,7,3],"span":[1248,54,55]},{"path":[4,69,2,8],"span":[1249,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,69,2,8,4],"span":[1249,2,10]},{"path":[4,69,2,8,5],"span":[1249,16,22]},{"path":[4,69,2,8,1],"span":[1249,24,33]},{"path":[4,69,2,8,3],"span":[1249,36,37]},{"path":[4,69,2,9],"span":[1250,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,9,4],"span":[1250,2,10]},{"path":[4,69,2,9,5],"span":[1250,16,21]},{"path":[4,69,2,9,1],"span":[1250,24,44]},{"path":[4,69,2,9,3],"span":[1250,47,49]},{"path":[4,69,2,10],"span":[1251,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,10,4],"span":[1251,2,10]},{"path":[4,69,2,10,5],"span":[1251,16,22]},{"path":[4,69,2,10,1],"span":[1251,24,38]},{"path":[4,69,2,10,3],"span":[1251,41,43]},{"path":[4,69,2,11],"span":[1252,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,11,4],"span":[1252,2,10]},{"path":[4,69,2,11,5],"span":[1252,16,22]},{"path":[4,69,2,11,1],"span":[1252,24,36]},{"path":[4,69,2,11,3],"span":[1252,39,41]},{"path":[4,69,2,12],"span":[1253,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,12,4],"span":[1253,2,10]},{"path":[4,69,2,12,5],"span":[1253,16,22]},{"path":[4,69,2,12,1],"span":[1253,24,35]},{"path":[4,69,2,12,3],"span":[1253,38,40]},{"path":[4,69,2,13],"span":[1254,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,13,4],"span":[1254,2,10]},{"path":[4,69,2,13,5],"span":[1254,16,22]},{"path":[4,69,2,13,1],"span":[1254,24,49]},{"path":[4,69,2,13,3],"span":[1254,52,54]},{"path":[4,69,2,14],"span":[1255,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,14,4],"span":[1255,2,10]},{"path":[4,69,2,14,5],"span":[1255,16,20]},{"path":[4,69,2,14,1],"span":[1255,24,37]},{"path":[4,69,2,14,3],"span":[1255,40,42]},{"path":[4,69,2,15],"span":[1256,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,69,2,15,4],"span":[1256,2,10]},{"path":[4,69,2,15,5],"span":[1256,16,22]},{"path":[4,69,2,15,1],"span":[1256,24,36]},{"path":[4,69,2,15,3],"span":[1256,39,41]},{"path":[4,69,2,16],"span":[1257,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,16,4],"span":[1257,2,10]},{"path":[4,69,2,16,5],"span":[1257,16,21]},{"path":[4,69,2,16,1],"span":[1257,24,40]},{"path":[4,69,2,16,3],"span":[1257,43,45]},{"path":[4,69,2,17],"span":[1258,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,17,4],"span":[1258,2,10]},{"path":[4,69,2,17,5],"span":[1258,16,21]},{"path":[4,69,2,17,1],"span":[1258,24,30]},{"path":[4,69,2,17,3],"span":[1258,33,35]},{"path":[4,69,2,18],"span":[1259,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,18,4],"span":[1259,2,10]},{"path":[4,69,2,18,6],"span":[1259,16,27]},{"path":[4,69,2,18,1],"span":[1259,32,43]},{"path":[4,69,2,18,3],"span":[1259,46,48]},{"path":[4,69,2,19],"span":[1260,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,19,4],"span":[1260,2,10]},{"path":[4,69,2,19,5],"span":[1260,16,21]},{"path":[4,69,2,19,1],"span":[1260,24,40]},{"path":[4,69,2,19,3],"span":[1260,43,45]},{"path":[4,69,2,20],"span":[1261,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,69,2,20,4],"span":[1261,2,10]},{"path":[4,69,2,20,5],"span":[1261,16,22]},{"path":[4,69,2,20,1],"span":[1261,24,32]},{"path":[4,69,2,20,3],"span":[1261,35,37]},{"path":[4,69,2,21],"span":[1262,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,21,4],"span":[1262,2,10]},{"path":[4,69,2,21,5],"span":[1262,16,22]},{"path":[4,69,2,21,1],"span":[1262,24,37]},{"path":[4,69,2,21,3],"span":[1262,40,42]},{"path":[4,69,2,22],"span":[1263,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,22,4],"span":[1263,2,10]},{"path":[4,69,2,22,6],"span":[1263,16,27]},{"path":[4,69,2,22,1],"span":[1263,32,37]},{"path":[4,69,2,22,3],"span":[1263,40,42]},{"path":[4,69,2,23],"span":[1264,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,69,2,23,4],"span":[1264,2,10]},{"path":[4,69,2,23,5],"span":[1264,16,22]},{"path":[4,69,2,23,1],"span":[1264,24,46]},{"path":[4,69,2,23,3],"span":[1264,49,51]},{"path":[4,69,2,24],"span":[1265,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,69,2,24,4],"span":[1265,2,10]},{"path":[4,69,2,24,5],"span":[1265,16,22]},{"path":[4,69,2,24,1],"span":[1265,24,38]},{"path":[4,69,2,24,3],"span":[1265,41,43]},{"path":[4,69,2,25],"span":[1266,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,25,4],"span":[1266,2,10]},{"path":[4,69,2,25,6],"span":[1266,16,27]},{"path":[4,69,2,25,1],"span":[1266,32,50]},{"path":[4,69,2,25,3],"span":[1266,53,55]},{"path":[4,69,2,26],"span":[1267,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,26,4],"span":[1267,2,10]},{"path":[4,69,2,26,5],"span":[1267,16,22]},{"path":[4,69,2,26,1],"span":[1267,24,34]},{"path":[4,69,2,26,3],"span":[1267,37,39]},{"path":[4,69,2,27],"span":[1268,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,69,2,27,4],"span":[1268,2,10]},{"path":[4,69,2,27,5],"span":[1268,16,22]},{"path":[4,69,2,27,1],"span":[1268,24,39]},{"path":[4,69,2,27,3],"span":[1268,42,44]},{"path":[4,70],"span":[1274,0,1284,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,70,1],"span":[1274,8,12]},{"path":[4,70,8,0],"span":[1275,2,1278,3]},{"path":[4,70,8,0,1],"span":[1275,8,12]},{"path":[4,70,2,0],"span":[1276,4,24]},{"path":[4,70,2,0,6],"span":[1276,4,15]},{"path":[4,70,2,0,1],"span":[1276,16,19]},{"path":[4,70,2,0,3],"span":[1276,22,23]},{"path":[4,70,2,1],"span":[1277,4,24]},{"path":[4,70,2,1,6],"span":[1277,4,13]},{"path":[4,70,2,1,1],"span":[1277,14,19]},{"path":[4,70,2,1,3],"span":[1277,22,23]},{"path":[4,70,2,2],"span":[1281,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,70,2,2,4],"span":[1281,2,10]},{"path":[4,70,2,2,5],"span":[1281,11,17]},{"path":[4,70,2,2,1],"span":[1281,18,30]},{"path":[4,70,2,2,3],"span":[1281,33,36]},{"path":[4,70,2,3],"span":[1282,2,32]},{"path":[4,70,2,3,4],"span":[1282,2,10]},{"path":[4,70,2,3,5],"span":[1282,11,17]},{"path":[4,70,2,3,1],"span":[1282,18,25]},{"path":[4,70,2,3,3],"span":[1282,28,31]},{"path":[4,70,2,4],"span":[1283,2,56]},{"path":[4,70,2,4,4],"span":[1283,2,10]},{"path":[4,70,2,4,6],"span":[1283,11,36]},{"path":[4,70,2,4,1],"span":[1283,37,49]},{"path":[4,70,2,4,3],"span":[1283,52,55]},{"path":[4,71],"span":[1290,0,1310,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,71,1],"span":[1290,8,19]},{"path":[4,71,2,0],"span":[1291,2,48]},{"path":[4,71,2,0,4],"span":[1291,2,10]},{"path":[4,71,2,0,6],"span":[1291,11,22]},{"path":[4,71,2,0,1],"span":[1291,23,43]},{"path":[4,71,2,0,3],"span":[1291,46,47]},{"path":[4,71,2,1],"span":[1292,2,30]},{"path":[4,71,2,1,4],"span":[1292,2,10]},{"path":[4,71,2,1,5],"span":[1292,11,17]},{"path":[4,71,2,1,1],"span":[1292,18,25]},{"path":[4,71,2,1,3],"span":[1292,28,29]},{"path":[4,71,2,2],"span":[1293,2,39]},{"path":[4,71,2,2,4],"span":[1293,2,10]},{"path":[4,71,2,2,5],"span":[1293,11,17]},{"path":[4,71,2,2,1],"span":[1293,18,34]},{"path":[4,71,2,2,3],"span":[1293,37,38]},{"path":[4,71,2,3],"span":[1294,2,43]},{"path":[4,71,2,3,4],"span":[1294,2,10]},{"path":[4,71,2,3,5],"span":[1294,11,16]},{"path":[4,71,2,3,1],"span":[1294,17,38]},{"path":[4,71,2,3,3],"span":[1294,41,42]},{"path":[4,71,2,4],"span":[1295,2,35]},{"path":[4,71,2,4,4],"span":[1295,2,10]},{"path":[4,71,2,4,5],"span":[1295,11,17]},{"path":[4,71,2,4,1],"span":[1295,18,30]},{"path":[4,71,2,4,3],"span":[1295,33,34]},{"path":[4,71,2,5],"span":[1296,2,27]},{"path":[4,71,2,5,4],"span":[1296,2,10]},{"path":[4,71,2,5,5],"span":[1296,11,17]},{"path":[4,71,2,5,1],"span":[1296,18,22]},{"path":[4,71,2,5,3],"span":[1296,25,26]},{"path":[4,71,2,6],"span":[1297,2,33]},{"path":[4,71,2,6,4],"span":[1297,2,10]},{"path":[4,71,2,6,5],"span":[1297,11,15]},{"path":[4,71,2,6,1],"span":[1297,16,28]},{"path":[4,71,2,6,3],"span":[1297,31,32]},{"path":[4,71,2,7],"span":[1298,2,54]},{"path":[4,71,2,7,4],"span":[1298,2,10]},{"path":[4,71,2,7,6],"span":[1298,11,36]},{"path":[4,71,2,7,1],"span":[1298,37,49]},{"path":[4,71,2,7,3],"span":[1298,52,53]},{"path":[4,71,2,8],"span":[1299,2,37]},{"path":[4,71,2,8,4],"span":[1299,2,10]},{"path":[4,71,2,8,5],"span":[1299,11,17]},{"path":[4,71,2,8,1],"span":[1299,18,31]},{"path":[4,71,2,8,3],"span":[1299,34,36]},{"path":[4,71,2,9],"span":[1300,2,43]},{"path":[4,71,2,9,4],"span":[1300,2,10]},{"path":[4,71,2,9,5],"span":[1300,11,17]},{"path":[4,71,2,9,1],"span":[1300,18,37]},{"path":[4,71,2,9,3],"span":[1300,40,42]},{"path":[4,71,2,10],"span":[1301,2,43]},{"path":[4,71,2,10,4],"span":[1301,2,10]},{"path":[4,71,2,10,5],"span":[1301,11,16]},{"path":[4,71,2,10,1],"span":[1301,17,37]},{"path":[4,71,2,10,3],"span":[1301,40,42]},{"path":[4,71,2,11],"span":[1302,2,43]},{"path":[4,71,2,11,4],"span":[1302,2,10]},{"path":[4,71,2,11,5],"span":[1302,11,16]},{"path":[4,71,2,11,1],"span":[1302,17,37]},{"path":[4,71,2,11,3],"span":[1302,40,42]},{"path":[4,71,2,12],"span":[1303,2,36]},{"path":[4,71,2,12,4],"span":[1303,2,10]},{"path":[4,71,2,12,5],"span":[1303,11,15]},{"path":[4,71,2,12,1],"span":[1303,16,30]},{"path":[4,71,2,12,3],"span":[1303,33,35]},{"path":[4,71,2,13],"span":[1304,2,43]},{"path":[4,71,2,13,4],"span":[1304,2,10]},{"path":[4,71,2,13,5],"span":[1304,11,17]},{"path":[4,71,2,13,1],"span":[1304,18,37]},{"path":[4,71,2,13,3],"span":[1304,40,42]},{"path":[4,71,2,14],"span":[1305,2,51]},{"path":[4,71,2,14,4],"span":[1305,2,10]},{"path":[4,71,2,14,6],"span":[1305,11,22]},{"path":[4,71,2,14,1],"span":[1305,23,45]},{"path":[4,71,2,14,3],"span":[1305,48,50]},{"path":[4,71,2,15],"span":[1306,2,30]},{"path":[4,71,2,15,4],"span":[1306,2,10]},{"path":[4,71,2,15,5],"span":[1306,11,17]},{"path":[4,71,2,15,1],"span":[1306,18,24]},{"path":[4,71,2,15,3],"span":[1306,27,29]},{"path":[4,71,2,16],"span":[1307,2,52]},{"path":[4,71,2,16,4],"span":[1307,2,10]},{"path":[4,71,2,16,6],"span":[1307,11,22]},{"path":[4,71,2,16,1],"span":[1307,23,46]},{"path":[4,71,2,16,3],"span":[1307,49,51]},{"path":[4,71,2,17],"span":[1308,2,31]},{"path":[4,71,2,17,4],"span":[1308,2,10]},{"path":[4,71,2,17,5],"span":[1308,11,17]},{"path":[4,71,2,17,1],"span":[1308,18,25]},{"path":[4,71,2,17,3],"span":[1308,28,30]},{"path":[4,71,2,18],"span":[1309,2,36]},{"path":[4,71,2,18,4],"span":[1309,2,10]},{"path":[4,71,2,18,5],"span":[1309,11,17]},{"path":[4,71,2,18,1],"span":[1309,18,30]},{"path":[4,71,2,18,3],"span":[1309,33,35]},{"path":[4,72],"span":[1315,0,1322,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,72,1],"span":[1315,8,17]},{"path":[4,72,2,0],"span":[1316,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,72,2,0,4],"span":[1316,2,10]},{"path":[4,72,2,0,5],"span":[1316,11,17]},{"path":[4,72,2,0,1],"span":[1316,18,25]},{"path":[4,72,2,0,3],"span":[1316,28,29]},{"path":[4,72,2,1],"span":[1317,2,30]},{"path":[4,72,2,1,4],"span":[1317,2,10]},{"path":[4,72,2,1,5],"span":[1317,11,17]},{"path":[4,72,2,1,1],"span":[1317,18,25]},{"path":[4,72,2,1,3],"span":[1317,28,29]},{"path":[4,72,2,2],"span":[1318,2,29]},{"path":[4,72,2,2,4],"span":[1318,2,10]},{"path":[4,72,2,2,5],"span":[1318,11,17]},{"path":[4,72,2,2,1],"span":[1318,18,24]},{"path":[4,72,2,2,3],"span":[1318,27,28]},{"path":[4,72,2,3],"span":[1319,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,72,2,3,4],"span":[1319,2,10]},{"path":[4,72,2,3,5],"span":[1319,11,16]},{"path":[4,72,2,3,1],"span":[1319,17,29]},{"path":[4,72,2,3,3],"span":[1319,32,33]},{"path":[4,72,2,4],"span":[1320,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,72,2,4,4],"span":[1320,2,10]},{"path":[4,72,2,4,5],"span":[1320,11,16]},{"path":[4,72,2,4,1],"span":[1320,17,25]},{"path":[4,72,2,4,3],"span":[1320,28,29]},{"path":[4,72,2,5],"span":[1321,2,54]},{"path":[4,72,2,5,4],"span":[1321,2,10]},{"path":[4,72,2,5,6],"span":[1321,11,36]},{"path":[4,72,2,5,1],"span":[1321,37,49]},{"path":[4,72,2,5,3],"span":[1321,52,53]},{"path":[4,73],"span":[1327,0,1333,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,73,1],"span":[1327,8,23]},{"path":[4,73,8,0],"span":[1328,2,1332,3]},{"path":[4,73,8,0,1],"span":[1328,8,12]},{"path":[4,73,2,0],"span":[1329,4,43]},{"path":[4,73,2,0,6],"span":[1329,4,26]},{"path":[4,73,2,0,1],"span":[1329,27,38]},{"path":[4,73,2,0,3],"span":[1329,41,42]},{"path":[4,73,2,1],"span":[1330,4,44]},{"path":[4,73,2,1,6],"span":[1330,4,26]},{"path":[4,73,2,1,1],"span":[1330,27,39]},{"path":[4,73,2,1,3],"span":[1330,42,43]},{"path":[4,73,2,2],"span":[1331,4,39]},{"path":[4,73,2,2,6],"span":[1331,4,22]},{"path":[4,73,2,2,1],"span":[1331,23,34]},{"path":[4,73,2,2,3],"span":[1331,37,38]},{"path":[4,74],"span":[1339,0,1350,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,74,1],"span":[1339,8,30]},{"path":[4,74,2,0],"span":[1340,2,40]},{"path":[4,74,2,0,4],"span":[1340,2,10]},{"path":[4,74,2,0,6],"span":[1340,11,22]},{"path":[4,74,2,0,1],"span":[1340,23,35]},{"path":[4,74,2,0,3],"span":[1340,38,39]},{"path":[4,74,2,1],"span":[1341,2,42]},{"path":[4,74,2,1,4],"span":[1341,2,10]},{"path":[4,74,2,1,6],"span":[1341,11,22]},{"path":[4,74,2,1,1],"span":[1341,23,37]},{"path":[4,74,2,1,3],"span":[1341,40,41]},{"path":[4,74,2,2],"span":[1342,2,37]},{"path":[4,74,2,2,4],"span":[1342,2,10]},{"path":[4,74,2,2,6],"span":[1342,11,22]},{"path":[4,74,2,2,1],"span":[1342,23,32]},{"path":[4,74,2,2,3],"span":[1342,35,36]},{"path":[4,74,2,3],"span":[1343,2,43]},{"path":[4,74,2,3,4],"span":[1343,2,10]},{"path":[4,74,2,3,6],"span":[1343,11,22]},{"path":[4,74,2,3,1],"span":[1343,23,38]},{"path":[4,74,2,3,3],"span":[1343,41,42]},{"path":[4,74,2,4],"span":[1344,2,32]},{"path":[4,74,2,4,4],"span":[1344,2,10]},{"path":[4,74,2,4,5],"span":[1344,11,17]},{"path":[4,74,2,4,1],"span":[1344,18,27]},{"path":[4,74,2,4,3],"span":[1344,30,31]},{"path":[4,74,2,5],"span":[1345,2,27]},{"path":[4,74,2,5,4],"span":[1345,2,10]},{"path":[4,74,2,5,5],"span":[1345,11,17]},{"path":[4,74,2,5,1],"span":[1345,18,22]},{"path":[4,74,2,5,3],"span":[1345,25,26]},{"path":[4,74,2,6],"span":[1346,2,57]},{"path":[4,74,2,6,4],"span":[1346,2,10]},{"path":[4,74,2,6,6],"span":[1346,11,22]},{"path":[4,74,2,6,1],"span":[1346,23,52]},{"path":[4,74,2,6,3],"span":[1346,55,56]},{"path":[4,74,2,7],"span":[1347,2,47]},{"path":[4,74,2,7,4],"span":[1347,2,10]},{"path":[4,74,2,7,5],"span":[1347,11,15]},{"path":[4,74,2,7,1],"span":[1347,16,42]},{"path":[4,74,2,7,3],"span":[1347,45,46]},{"path":[4,74,2,8],"span":[1348,2,44]},{"path":[4,74,2,8,4],"span":[1348,2,10]},{"path":[4,74,2,8,5],"span":[1348,11,17]},{"path":[4,74,2,8,1],"span":[1348,18,39]},{"path":[4,74,2,8,3],"span":[1348,42,43]},{"path":[4,74,2,9],"span":[1349,2,30]},{"path":[4,74,2,9,4],"span":[1349,2,10]},{"path":[4,74,2,9,5],"span":[1349,11,17]},{"path":[4,74,2,9,1],"span":[1349,18,24]},{"path":[4,74,2,9,3],"span":[1349,27,29]},{"path":[4,75],"span":[1356,0,1368,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,75,1],"span":[1356,8,30]},{"path":[4,75,2,0],"span":[1357,2,41]},{"path":[4,75,2,0,4],"span":[1357,2,10]},{"path":[4,75,2,0,5],"span":[1357,11,16]},{"path":[4,75,2,0,1],"span":[1357,17,36]},{"path":[4,75,2,0,3],"span":[1357,39,40]},{"path":[4,75,2,1],"span":[1358,2,37]},{"path":[4,75,2,1,4],"span":[1358,2,10]},{"path":[4,75,2,1,6],"span":[1358,11,22]},{"path":[4,75,2,1,1],"span":[1358,23,32]},{"path":[4,75,2,1,3],"span":[1358,35,36]},{"path":[4,75,2,2],"span":[1359,2,37]},{"path":[4,75,2,2,4],"span":[1359,2,10]},{"path":[4,75,2,2,5],"span":[1359,11,16]},{"path":[4,75,2,2,1],"span":[1359,17,32]},{"path":[4,75,2,2,3],"span":[1359,35,36]},{"path":[4,75,2,3],"span":[1360,2,36]},{"path":[4,75,2,3,4],"span":[1360,2,10]},{"path":[4,75,2,3,5],"span":[1360,11,16]},{"path":[4,75,2,3,1],"span":[1360,17,31]},{"path":[4,75,2,3,3],"span":[1360,34,35]},{"path":[4,75,2,4],"span":[1361,2,32]},{"path":[4,75,2,4,4],"span":[1361,2,10]},{"path":[4,75,2,4,5],"span":[1361,11,17]},{"path":[4,75,2,4,1],"span":[1361,18,27]},{"path":[4,75,2,4,3],"span":[1361,30,31]},{"path":[4,75,2,5],"span":[1362,2,31]},{"path":[4,75,2,5,4],"span":[1362,2,10]},{"path":[4,75,2,5,5],"span":[1362,11,17]},{"path":[4,75,2,5,1],"span":[1362,18,26]},{"path":[4,75,2,5,3],"span":[1362,29,30]},{"path":[4,75,2,6],"span":[1363,2,39]},{"path":[4,75,2,6,4],"span":[1363,2,10]},{"path":[4,75,2,6,5],"span":[1363,11,17]},{"path":[4,75,2,6,1],"span":[1363,18,34]},{"path":[4,75,2,6,3],"span":[1363,37,38]},{"path":[4,75,2,7],"span":[1364,2,35]},{"path":[4,75,2,7,4],"span":[1364,2,10]},{"path":[4,75,2,7,5],"span":[1364,11,17]},{"path":[4,75,2,7,1],"span":[1364,18,30]},{"path":[4,75,2,7,3],"span":[1364,33,34]},{"path":[4,75,2,8],"span":[1365,2,39]},{"path":[4,75,2,8,4],"span":[1365,2,10]},{"path":[4,75,2,8,5],"span":[1365,11,16]},{"path":[4,75,2,8,1],"span":[1365,17,34]},{"path":[4,75,2,8,3],"span":[1365,37,38]},{"path":[4,75,2,9],"span":[1366,2,28]},{"path":[4,75,2,9,4],"span":[1366,2,10]},{"path":[4,75,2,9,5],"span":[1366,11,17]},{"path":[4,75,2,9,1],"span":[1366,18,22]},{"path":[4,75,2,9,3],"span":[1366,25,27]},{"path":[4,75,2,10],"span":[1367,2,45]},{"path":[4,75,2,10,4],"span":[1367,2,10]},{"path":[4,75,2,10,5],"span":[1367,11,17]},{"path":[4,75,2,10,1],"span":[1367,18,39]},{"path":[4,75,2,10,3],"span":[1367,42,44]},{"path":[4,76],"span":[1373,0,1409,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,76,1],"span":[1373,8,26]},{"path":[4,76,2,0],"span":[1375,2,38],"leadingComments":" from battery power\n"},{"path":[4,76,2,0,4],"span":[1375,2,10]},{"path":[4,76,2,0,5],"span":[1375,11,16]},{"path":[4,76,2,0,1],"span":[1375,17,33]},{"path":[4,76,2,0,3],"span":[1375,36,37]},{"path":[4,76,2,1],"span":[1376,2,41]},{"path":[4,76,2,1,4],"span":[1376,2,10]},{"path":[4,76,2,1,5],"span":[1376,11,16]},{"path":[4,76,2,1,1],"span":[1376,17,36]},{"path":[4,76,2,1,3],"span":[1376,39,40]},{"path":[4,76,2,2],"span":[1377,2,36]},{"path":[4,76,2,2,4],"span":[1377,2,10]},{"path":[4,76,2,2,5],"span":[1377,11,16]},{"path":[4,76,2,2,1],"span":[1377,17,31]},{"path":[4,76,2,2,3],"span":[1377,34,35]},{"path":[4,76,2,3],"span":[1378,2,64]},{"path":[4,76,2,3,4],"span":[1378,2,10]},{"path":[4,76,2,3,5],"span":[1378,11,16]},{"path":[4,76,2,3,1],"span":[1378,17,59]},{"path":[4,76,2,3,3],"span":[1378,62,63]},{"path":[4,76,2,4],"span":[1379,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,76,2,4,4],"span":[1379,2,10]},{"path":[4,76,2,4,5],"span":[1379,11,15]},{"path":[4,76,2,4,1],"span":[1379,16,37]},{"path":[4,76,2,4,3],"span":[1379,40,41]},{"path":[4,76,2,5],"span":[1380,2,40]},{"path":[4,76,2,5,4],"span":[1380,2,10]},{"path":[4,76,2,5,5],"span":[1380,11,16]},{"path":[4,76,2,5,1],"span":[1380,17,35]},{"path":[4,76,2,5,3],"span":[1380,38,39]},{"path":[4,76,2,6],"span":[1381,2,32]},{"path":[4,76,2,6,4],"span":[1381,2,10]},{"path":[4,76,2,6,5],"span":[1381,11,15]},{"path":[4,76,2,6,1],"span":[1381,16,27]},{"path":[4,76,2,6,3],"span":[1381,30,31]},{"path":[4,76,2,7],"span":[1382,2,42]},{"path":[4,76,2,7,4],"span":[1382,2,10]},{"path":[4,76,2,7,5],"span":[1382,11,16]},{"path":[4,76,2,7,1],"span":[1382,17,37]},{"path":[4,76,2,7,3],"span":[1382,40,41]},{"path":[4,76,2,8],"span":[1383,2,37]},{"path":[4,76,2,8,4],"span":[1383,2,10]},{"path":[4,76,2,8,5],"span":[1383,11,16]},{"path":[4,76,2,8,1],"span":[1383,17,32]},{"path":[4,76,2,8,3],"span":[1383,35,36]},{"path":[4,76,2,9],"span":[1384,2,37]},{"path":[4,76,2,9,4],"span":[1384,2,10]},{"path":[4,76,2,9,5],"span":[1384,11,16]},{"path":[4,76,2,9,1],"span":[1384,17,31]},{"path":[4,76,2,9,3],"span":[1384,34,36]},{"path":[4,76,2,10],"span":[1385,2,39]},{"path":[4,76,2,10,4],"span":[1385,2,10]},{"path":[4,76,2,10,5],"span":[1385,11,15]},{"path":[4,76,2,10,1],"span":[1385,16,33]},{"path":[4,76,2,10,3],"span":[1385,36,38]},{"path":[4,76,2,11],"span":[1388,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,76,2,11,4],"span":[1388,2,10]},{"path":[4,76,2,11,5],"span":[1388,11,15]},{"path":[4,76,2,11,1],"span":[1388,16,32]},{"path":[4,76,2,11,3],"span":[1388,35,37]},{"path":[4,76,2,12],"span":[1389,2,38]},{"path":[4,76,2,12,4],"span":[1389,2,10]},{"path":[4,76,2,12,5],"span":[1389,11,15]},{"path":[4,76,2,12,1],"span":[1389,16,32]},{"path":[4,76,2,12,3],"span":[1389,35,37]},{"path":[4,76,2,13],"span":[1390,2,33]},{"path":[4,76,2,13,4],"span":[1390,2,10]},{"path":[4,76,2,13,5],"span":[1390,11,15]},{"path":[4,76,2,13,1],"span":[1390,16,27]},{"path":[4,76,2,13,3],"span":[1390,30,32]},{"path":[4,76,2,14],"span":[1391,2,39]},{"path":[4,76,2,14,4],"span":[1391,2,10]},{"path":[4,76,2,14,5],"span":[1391,11,16]},{"path":[4,76,2,14,1],"span":[1391,18,33]},{"path":[4,76,2,14,3],"span":[1391,36,38]},{"path":[4,76,2,15],"span":[1394,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,76,2,15,4],"span":[1394,2,10]},{"path":[4,76,2,15,5],"span":[1394,11,16]},{"path":[4,76,2,15,1],"span":[1394,17,28]},{"path":[4,76,2,15,3],"span":[1394,31,33]},{"path":[4,76,2,16],"span":[1395,2,37]},{"path":[4,76,2,16,4],"span":[1395,2,10]},{"path":[4,76,2,16,5],"span":[1395,11,17]},{"path":[4,76,2,16,1],"span":[1395,18,31]},{"path":[4,76,2,16,3],"span":[1395,34,36]},{"path":[4,76,2,17],"span":[1396,2,54]},{"path":[4,76,2,17,4],"span":[1396,2,10]},{"path":[4,76,2,17,5],"span":[1396,11,17]},{"path":[4,76,2,17,1],"span":[1396,18,48]},{"path":[4,76,2,17,3],"span":[1396,51,53]},{"path":[4,76,2,18],"span":[1399,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,76,2,18,4],"span":[1399,2,10]},{"path":[4,76,2,18,5],"span":[1399,11,17]},{"path":[4,76,2,18,1],"span":[1399,18,30]},{"path":[4,76,2,18,3],"span":[1399,33,35]},{"path":[4,76,2,19],"span":[1400,2,37]},{"path":[4,76,2,19,4],"span":[1400,2,10]},{"path":[4,76,2,19,5],"span":[1400,11,17]},{"path":[4,76,2,19,1],"span":[1400,18,31]},{"path":[4,76,2,19,3],"span":[1400,34,36]},{"path":[4,76,2,20],"span":[1401,2,37]},{"path":[4,76,2,20,4],"span":[1401,2,10]},{"path":[4,76,2,20,5],"span":[1401,11,17]},{"path":[4,76,2,20,1],"span":[1401,18,31]},{"path":[4,76,2,20,3],"span":[1401,34,36]},{"path":[4,76,2,21],"span":[1402,2,35]},{"path":[4,76,2,21,4],"span":[1402,2,10]},{"path":[4,76,2,21,5],"span":[1402,11,17]},{"path":[4,76,2,21,1],"span":[1402,18,29]},{"path":[4,76,2,21,3],"span":[1402,32,34]},{"path":[4,76,2,22],"span":[1403,2,40]},{"path":[4,76,2,22,4],"span":[1403,2,10]},{"path":[4,76,2,22,5],"span":[1403,11,17]},{"path":[4,76,2,22,1],"span":[1403,18,34]},{"path":[4,76,2,22,3],"span":[1403,37,39]},{"path":[4,76,2,23],"span":[1404,2,41]},{"path":[4,76,2,23,4],"span":[1404,2,10]},{"path":[4,76,2,23,5],"span":[1404,11,17]},{"path":[4,76,2,23,1],"span":[1404,18,35]},{"path":[4,76,2,23,3],"span":[1404,38,40]},{"path":[4,76,2,24],"span":[1405,2,37]},{"path":[4,76,2,24,4],"span":[1405,2,10]},{"path":[4,76,2,24,5],"span":[1405,11,17]},{"path":[4,76,2,24,1],"span":[1405,18,31]},{"path":[4,76,2,24,3],"span":[1405,34,36]},{"path":[4,76,2,25],"span":[1407,2,47]},{"path":[4,76,2,25,4],"span":[1407,2,10]},{"path":[4,76,2,25,5],"span":[1407,11,15]},{"path":[4,76,2,25,1],"span":[1407,16,41]},{"path":[4,76,2,25,3],"span":[1407,44,46]},{"path":[4,76,2,26],"span":[1408,2,41]},{"path":[4,76,2,26,4],"span":[1408,2,10]},{"path":[4,76,2,26,5],"span":[1408,11,15]},{"path":[4,76,2,26,1],"span":[1408,16,35]},{"path":[4,76,2,26,3],"span":[1408,38,40]},{"path":[4,77],"span":[1414,0,1436,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,77,1],"span":[1414,8,20]},{"path":[4,77,2,0],"span":[1415,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,77,2,0,4],"span":[1415,2,10]},{"path":[4,77,2,0,5],"span":[1415,16,22]},{"path":[4,77,2,0,1],"span":[1415,24,28]},{"path":[4,77,2,0,3],"span":[1415,34,35]},{"path":[4,77,2,1],"span":[1416,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,77,2,1,4],"span":[1416,2,10]},{"path":[4,77,2,1,5],"span":[1416,16,22]},{"path":[4,77,2,1,1],"span":[1416,24,30]},{"path":[4,77,2,1,3],"span":[1416,34,35]},{"path":[4,77,2,2],"span":[1417,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,77,2,2,4],"span":[1417,2,10]},{"path":[4,77,2,2,5],"span":[1417,16,22]},{"path":[4,77,2,2,1],"span":[1417,24,27]},{"path":[4,77,2,2,3],"span":[1417,34,35]},{"path":[4,77,2,3],"span":[1418,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,77,2,3,4],"span":[1418,2,10]},{"path":[4,77,2,3,6],"span":[1418,16,27]},{"path":[4,77,2,3,1],"span":[1418,32,44]},{"path":[4,77,2,3,3],"span":[1418,50,51]},{"path":[4,77,2,4],"span":[1419,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,77,2,4,4],"span":[1419,2,10]},{"path":[4,77,2,4,5],"span":[1419,16,22]},{"path":[4,77,2,4,1],"span":[1419,24,34]},{"path":[4,77,2,4,3],"span":[1419,42,43]},{"path":[4,77,2,5],"span":[1420,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,77,2,5,4],"span":[1420,2,10]},{"path":[4,77,2,5,5],"span":[1420,16,22]},{"path":[4,77,2,5,1],"span":[1420,24,36]},{"path":[4,77,2,5,3],"span":[1420,42,43]},{"path":[4,77,2,6],"span":[1421,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,77,2,6,4],"span":[1421,2,10]},{"path":[4,77,2,6,5],"span":[1421,16,22]},{"path":[4,77,2,6,1],"span":[1421,24,32]},{"path":[4,77,2,6,3],"span":[1421,42,43]},{"path":[4,77,2,7],"span":[1422,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,77,2,7,4],"span":[1422,2,10]},{"path":[4,77,2,7,5],"span":[1422,16,22]},{"path":[4,77,2,7,1],"span":[1422,24,33]},{"path":[4,77,2,7,3],"span":[1422,42,43]},{"path":[4,77,2,8],"span":[1423,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,77,2,8,4],"span":[1423,2,10]},{"path":[4,77,2,8,5],"span":[1423,16,22]},{"path":[4,77,2,8,1],"span":[1423,24,32]},{"path":[4,77,2,8,3],"span":[1423,42,43]},{"path":[4,77,2,9],"span":[1424,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,77,2,9,4],"span":[1424,2,10]},{"path":[4,77,2,9,5],"span":[1424,16,22]},{"path":[4,77,2,9,1],"span":[1424,24,34]},{"path":[4,77,2,9,3],"span":[1424,42,44]},{"path":[4,77,2,10],"span":[1425,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,77,2,10,4],"span":[1425,2,10]},{"path":[4,77,2,10,5],"span":[1425,16,22]},{"path":[4,77,2,10,1],"span":[1425,24,40]},{"path":[4,77,2,10,3],"span":[1425,50,52]},{"path":[4,77,2,11],"span":[1426,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,77,2,11,4],"span":[1426,2,10]},{"path":[4,77,2,11,5],"span":[1426,16,22]},{"path":[4,77,2,11,1],"span":[1426,24,34]},{"path":[4,77,2,11,3],"span":[1426,42,44]},{"path":[4,77,2,12],"span":[1427,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,77,2,12,4],"span":[1427,2,10]},{"path":[4,77,2,12,5],"span":[1427,16,22]},{"path":[4,77,2,12,1],"span":[1427,24,54]},{"path":[4,77,2,12,3],"span":[1427,58,60]},{"path":[4,77,2,13],"span":[1428,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,77,2,13,4],"span":[1428,2,10]},{"path":[4,77,2,13,5],"span":[1428,16,22]},{"path":[4,77,2,13,1],"span":[1428,24,36]},{"path":[4,77,2,13,3],"span":[1428,42,44]},{"path":[4,77,2,14],"span":[1429,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,77,2,14,4],"span":[1429,2,10]},{"path":[4,77,2,14,5],"span":[1429,16,22]},{"path":[4,77,2,14,1],"span":[1429,24,35]},{"path":[4,77,2,14,3],"span":[1429,42,44]},{"path":[4,77,2,15],"span":[1430,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,77,2,15,4],"span":[1430,2,10]},{"path":[4,77,2,15,5],"span":[1430,16,22]},{"path":[4,77,2,15,1],"span":[1430,24,40]},{"path":[4,77,2,15,3],"span":[1430,50,52]},{"path":[4,77,2,16],"span":[1431,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,77,2,16,4],"span":[1431,2,10]},{"path":[4,77,2,16,5],"span":[1431,16,21]},{"path":[4,77,2,16,1],"span":[1431,24,32]},{"path":[4,77,2,16,3],"span":[1431,42,44]},{"path":[4,77,2,17],"span":[1432,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,77,2,17,4],"span":[1432,2,10]},{"path":[4,77,2,17,5],"span":[1432,16,21]},{"path":[4,77,2,17,1],"span":[1432,24,41]},{"path":[4,77,2,17,3],"span":[1432,50,52]},{"path":[4,77,2,18],"span":[1433,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,77,2,18,4],"span":[1433,2,10]},{"path":[4,77,2,18,5],"span":[1433,16,21]},{"path":[4,77,2,18,1],"span":[1433,24,33]},{"path":[4,77,2,18,3],"span":[1433,42,44]},{"path":[4,77,2,19],"span":[1434,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,77,2,19,4],"span":[1434,2,10]},{"path":[4,77,2,19,5],"span":[1434,16,21]},{"path":[4,77,2,19,1],"span":[1434,24,38]},{"path":[4,77,2,19,3],"span":[1434,42,44]},{"path":[4,77,2,20],"span":[1435,2,52],"trailingComments":" \tMac\n"},{"path":[4,77,2,20,4],"span":[1435,2,10]},{"path":[4,77,2,20,5],"span":[1435,16,22]},{"path":[4,77,2,20,1],"span":[1435,24,46]},{"path":[4,77,2,20,3],"span":[1435,49,51]},{"path":[4,78],"span":[1441,0,1454,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,78,1],"span":[1441,8,19]},{"path":[4,78,2,0],"span":[1442,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,0,5],"span":[1442,2,8]},{"path":[4,78,2,0,1],"span":[1442,9,13]},{"path":[4,78,2,0,3],"span":[1442,16,17]},{"path":[4,78,2,1],"span":[1443,2,43],"trailingComments":" Windows\n"},{"path":[4,78,2,1,4],"span":[1443,2,10]},{"path":[4,78,2,1,5],"span":[1443,11,17]},{"path":[4,78,2,1,1],"span":[1443,24,38]},{"path":[4,78,2,1,3],"span":[1443,41,42]},{"path":[4,78,2,2],"span":[1444,2,37],"trailingComments":" Windows\n"},{"path":[4,78,2,2,4],"span":[1444,2,10]},{"path":[4,78,2,2,5],"span":[1444,11,15]},{"path":[4,78,2,2,1],"span":[1444,16,32]},{"path":[4,78,2,2,3],"span":[1444,35,36]},{"path":[4,78,2,3],"span":[1445,2,34],"trailingComments":" Windows\n"},{"path":[4,78,2,3,4],"span":[1445,2,10]},{"path":[4,78,2,3,5],"span":[1445,11,15]},{"path":[4,78,2,3,1],"span":[1445,16,29]},{"path":[4,78,2,3,3],"span":[1445,32,33]},{"path":[4,78,2,4],"span":[1446,2,37],"trailingComments":" Linux\n"},{"path":[4,78,2,4,4],"span":[1446,2,10]},{"path":[4,78,2,4,5],"span":[1446,11,17]},{"path":[4,78,2,4,1],"span":[1446,24,32]},{"path":[4,78,2,4,3],"span":[1446,35,36]},{"path":[4,78,2,5],"span":[1447,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,5,4],"span":[1447,2,10]},{"path":[4,78,2,5,5],"span":[1447,11,17]},{"path":[4,78,2,5,1],"span":[1447,24,36]},{"path":[4,78,2,5,3],"span":[1447,39,40]},{"path":[4,78,2,6],"span":[1448,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,6,4],"span":[1448,2,10]},{"path":[4,78,2,6,5],"span":[1448,11,17]},{"path":[4,78,2,6,1],"span":[1448,24,37]},{"path":[4,78,2,6,3],"span":[1448,40,41]},{"path":[4,78,2,7],"span":[1449,2,32],"trailingComments":" Windows\n"},{"path":[4,78,2,7,4],"span":[1449,2,10]},{"path":[4,78,2,7,5],"span":[1449,11,17]},{"path":[4,78,2,7,1],"span":[1449,24,27]},{"path":[4,78,2,7,3],"span":[1449,30,31]},{"path":[4,78,2,8],"span":[1450,2,33],"trailingComments":" Linux\n"},{"path":[4,78,2,8,4],"span":[1450,2,10]},{"path":[4,78,2,8,5],"span":[1450,11,17]},{"path":[4,78,2,8,1],"span":[1450,24,28]},{"path":[4,78,2,8,3],"span":[1450,31,32]},{"path":[4,78,2,9],"span":[1451,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,78,2,9,4],"span":[1451,2,10]},{"path":[4,78,2,9,5],"span":[1451,11,17]},{"path":[4,78,2,9,1],"span":[1451,24,31]},{"path":[4,78,2,9,3],"span":[1451,34,36]},{"path":[4,78,2,10],"span":[1453,2,41]},{"path":[4,78,2,10,4],"span":[1453,2,10]},{"path":[4,78,2,10,6],"span":[1453,11,28]},{"path":[4,78,2,10,1],"span":[1453,29,35]},{"path":[4,78,2,10,3],"span":[1453,38,40]},{"path":[4,79],"span":[1459,0,1464,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,79,1],"span":[1459,8,25]},{"path":[4,79,2,0],"span":[1460,2,40]},{"path":[4,79,2,0,4],"span":[1460,2,10]},{"path":[4,79,2,0,5],"span":[1460,11,17]},{"path":[4,79,2,0,1],"span":[1460,24,35]},{"path":[4,79,2,0,3],"span":[1460,38,39]},{"path":[4,79,2,1],"span":[1461,2,28]},{"path":[4,79,2,1,4],"span":[1461,2,10]},{"path":[4,79,2,1,5],"span":[1461,11,15]},{"path":[4,79,2,1,1],"span":[1461,16,23]},{"path":[4,79,2,1,3],"span":[1461,26,27]},{"path":[4,79,2,2],"span":[1462,2,32]},{"path":[4,79,2,2,4],"span":[1462,2,10]},{"path":[4,79,2,2,5],"span":[1462,11,17]},{"path":[4,79,2,2,1],"span":[1462,24,27]},{"path":[4,79,2,2,3],"span":[1462,30,31]},{"path":[4,79,2,3],"span":[1463,2,32]},{"path":[4,79,2,3,4],"span":[1463,2,10]},{"path":[4,79,2,3,6],"span":[1463,11,22]},{"path":[4,79,2,3,1],"span":[1463,23,27]},{"path":[4,79,2,3,3],"span":[1463,30,31]},{"path":[4,80],"span":[1469,0,1473,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,80,1],"span":[1469,8,14]},{"path":[4,80,2,0],"span":[1470,4,29]},{"path":[4,80,2,0,5],"span":[1470,4,9]},{"path":[4,80,2,0,1],"span":[1470,10,24]},{"path":[4,80,2,0,3],"span":[1470,27,28]},{"path":[4,80,2,1],"span":[1471,4,48]},{"path":[4,80,2,1,4],"span":[1471,4,12]},{"path":[4,80,2,1,6],"span":[1471,13,27]},{"path":[4,80,2,1,1],"span":[1471,28,43]},{"path":[4,80,2,1,3],"span":[1471,46,47]},{"path":[4,80,2,2],"span":[1472,4,42]},{"path":[4,80,2,2,4],"span":[1472,4,12]},{"path":[4,80,2,2,6],"span":[1472,13,24]},{"path":[4,80,2,2,1],"span":[1472,25,37]},{"path":[4,80,2,2,3],"span":[1472,40,41]},{"path":[4,81],"span":[1476,0,1499,1],"leadingComments":" MemoryEntry *"},{"path":[4,81,1],"span":[1476,8,22]},{"path":[4,81,2,0],"span":[1478,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,81,2,0,4],"span":[1478,4,12]},{"path":[4,81,2,0,5],"span":[1478,14,19]},{"path":[4,81,2,0,1],"span":[1478,20,24]},{"path":[4,81,2,0,3],"span":[1478,27,29]},{"path":[4,81,2,1],"span":[1479,4,40],"trailingComments":"\tLinux\n"},{"path":[4,81,2,1,4],"span":[1479,4,12]},{"path":[4,81,2,1,5],"span":[1479,13,19]},{"path":[4,81,2,1,1],"span":[1479,24,36]},{"path":[4,81,2,1,3],"span":[1479,38,39]},{"path":[4,81,2,2],"span":[1480,4,51],"trailingComments":"\tWindows\n"},{"path":[4,81,2,2,4],"span":[1480,4,12]},{"path":[4,81,2,2,5],"span":[1480,13,18]},{"path":[4,81,2,2,1],"span":[1480,24,46]},{"path":[4,81,2,2,3],"span":[1480,49,50]},{"path":[4,81,2,3],"span":[1481,4,46],"trailingComments":"\tWindows\n"},{"path":[4,81,2,3,4],"span":[1481,4,12]},{"path":[4,81,2,3,5],"span":[1481,13,18]},{"path":[4,81,2,3,1],"span":[1481,24,42]},{"path":[4,81,2,3,3],"span":[1481,44,45]},{"path":[4,81,2,4],"span":[1482,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,4,4],"span":[1482,4,12]},{"path":[4,81,2,4,5],"span":[1482,13,18]},{"path":[4,81,2,4,1],"span":[1482,24,34]},{"path":[4,81,2,4,3],"span":[1482,36,37]},{"path":[4,81,2,5],"span":[1483,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,5,4],"span":[1483,4,12]},{"path":[4,81,2,5,5],"span":[1483,13,19]},{"path":[4,81,2,5,1],"span":[1483,24,38]},{"path":[4,81,2,5,3],"span":[1483,40,41]},{"path":[4,81,2,6],"span":[1484,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,6,4],"span":[1484,4,12]},{"path":[4,81,2,6,6],"span":[1484,13,24]},{"path":[4,81,2,6,1],"span":[1484,32,43]},{"path":[4,81,2,6,3],"span":[1484,45,46]},{"path":[4,81,2,7],"span":[1485,4,49],"trailingComments":"\tWindows\n"},{"path":[4,81,2,7,4],"span":[1485,4,12]},{"path":[4,81,2,7,5],"span":[1485,13,18]},{"path":[4,81,2,7,1],"span":[1485,24,45]},{"path":[4,81,2,7,3],"span":[1485,47,48]},{"path":[4,81,2,8],"span":[1486,4,55],"trailingComments":"\tWindows\n"},{"path":[4,81,2,8,4],"span":[1486,4,12]},{"path":[4,81,2,8,6],"span":[1486,13,24]},{"path":[4,81,2,8,1],"span":[1486,32,51]},{"path":[4,81,2,8,3],"span":[1486,53,54]},{"path":[4,81,2,9],"span":[1487,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,9,4],"span":[1487,4,12]},{"path":[4,81,2,9,5],"span":[1487,13,19]},{"path":[4,81,2,9,1],"span":[1487,24,36]},{"path":[4,81,2,9,3],"span":[1487,38,39]},{"path":[4,81,2,10],"span":[1488,4,33],"trailingComments":"\tMac\n"},{"path":[4,81,2,10,4],"span":[1488,4,12]},{"path":[4,81,2,10,5],"span":[1488,13,19]},{"path":[4,81,2,10,1],"span":[1488,24,28]},{"path":[4,81,2,10,3],"span":[1488,30,32]},{"path":[4,81,2,11],"span":[1489,4,40],"trailingComments":"\tWindows\n"},{"path":[4,81,2,11,4],"span":[1489,4,12]},{"path":[4,81,2,11,5],"span":[1489,13,19]},{"path":[4,81,2,11,1],"span":[1489,24,35]},{"path":[4,81,2,11,3],"span":[1489,37,39]},{"path":[4,81,2,12],"span":[1490,4,44],"trailingComments":"\tWindows\n"},{"path":[4,81,2,12,4],"span":[1490,4,12]},{"path":[4,81,2,12,5],"span":[1490,13,18]},{"path":[4,81,2,12,1],"span":[1490,24,39]},{"path":[4,81,2,12,3],"span":[1490,41,43]},{"path":[4,81,2,13],"span":[1491,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,13,4],"span":[1491,4,12]},{"path":[4,81,2,13,5],"span":[1491,13,19]},{"path":[4,81,2,13,1],"span":[1491,24,37]},{"path":[4,81,2,13,3],"span":[1491,39,41]},{"path":[4,81,2,14],"span":[1492,4,32],"trailingComments":"\tLinux\n"},{"path":[4,81,2,14,4],"span":[1492,4,12]},{"path":[4,81,2,14,5],"span":[1492,13,19]},{"path":[4,81,2,14,1],"span":[1492,24,27]},{"path":[4,81,2,14,3],"span":[1492,29,31]},{"path":[4,81,2,15],"span":[1493,4,32],"trailingComments":"\tWindows\n"},{"path":[4,81,2,15,4],"span":[1493,4,12]},{"path":[4,81,2,15,5],"span":[1493,13,19]},{"path":[4,81,2,15,1],"span":[1493,24,27]},{"path":[4,81,2,15,3],"span":[1493,29,31]},{"path":[4,81,2,16],"span":[1494,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,81,2,16,4],"span":[1494,4,12]},{"path":[4,81,2,16,5],"span":[1494,13,18]},{"path":[4,81,2,16,1],"span":[1494,24,29]},{"path":[4,81,2,16,3],"span":[1494,31,33]},{"path":[4,81,2,17],"span":[1495,4,34],"trailingComments":"\tMac\n"},{"path":[4,81,2,17,4],"span":[1495,4,12]},{"path":[4,81,2,17,5],"span":[1495,13,19]},{"path":[4,81,2,17,1],"span":[1495,24,29]},{"path":[4,81,2,17,3],"span":[1495,31,33]},{"path":[4,81,2,18],"span":[1496,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,18,4],"span":[1496,4,12]},{"path":[4,81,2,18,5],"span":[1496,13,18]},{"path":[4,81,2,18,1],"span":[1496,24,35]},{"path":[4,81,2,18,3],"span":[1496,37,39]},{"path":[4,81,2,19],"span":[1497,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,81,2,19,4],"span":[1497,4,12]},{"path":[4,81,2,19,6],"span":[1497,13,24]},{"path":[4,81,2,19,1],"span":[1497,32,36]},{"path":[4,81,2,19,3],"span":[1497,38,40]},{"path":[4,81,2,20],"span":[1498,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,81,2,20,4],"span":[1498,4,12]},{"path":[4,81,2,20,6],"span":[1498,13,24]},{"path":[4,81,2,20,1],"span":[1498,32,43]},{"path":[4,81,2,20,3],"span":[1498,45,47]},{"path":[4,82],"span":[1503,0,1510,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,82,1],"span":[1503,8,19]},{"path":[4,82,2,0],"span":[1504,2,40],"trailingComments":"\tWindows\n"},{"path":[4,82,2,0,4],"span":[1504,2,10]},{"path":[4,82,2,0,5],"span":[1504,11,16]},{"path":[4,82,2,0,1],"span":[1504,24,36]},{"path":[4,82,2,0,3],"span":[1504,38,39]},{"path":[4,82,2,1],"span":[1505,2,36],"trailingComments":"\tWindows\n"},{"path":[4,82,2,1,4],"span":[1505,2,10]},{"path":[4,82,2,1,6],"span":[1505,11,22]},{"path":[4,82,2,1,1],"span":[1505,24,32]},{"path":[4,82,2,1,3],"span":[1505,34,35]},{"path":[4,82,2,2],"span":[1506,2,42],"trailingComments":"\tWindows\n"},{"path":[4,82,2,2,4],"span":[1506,2,10]},{"path":[4,82,2,2,5],"span":[1506,11,16]},{"path":[4,82,2,2,1],"span":[1506,24,38]},{"path":[4,82,2,2,3],"span":[1506,40,41]},{"path":[4,82,2,3],"span":[1507,2,51],"trailingComments":"\tWindows\n"},{"path":[4,82,2,3,4],"span":[1507,2,10]},{"path":[4,82,2,3,6],"span":[1507,11,22]},{"path":[4,82,2,3,1],"span":[1507,24,47]},{"path":[4,82,2,3,3],"span":[1507,49,50]},{"path":[4,82,2,4],"span":[1508,2,31],"trailingComments":"\tWindows\n"},{"path":[4,82,2,4,4],"span":[1508,2,10]},{"path":[4,82,2,4,5],"span":[1508,11,17]},{"path":[4,82,2,4,1],"span":[1508,24,27]},{"path":[4,82,2,4,3],"span":[1508,29,30]},{"path":[4,82,2,5],"span":[1509,2,31],"trailingComments":"\tWindows\n"},{"path":[4,82,2,5,4],"span":[1509,2,10]},{"path":[4,82,2,5,6],"span":[1509,11,22]},{"path":[4,82,2,5,1],"span":[1509,24,27]},{"path":[4,82,2,5,3],"span":[1509,29,30]},{"path":[4,83],"span":[1516,0,1525,1],"leadingComments":"\n ParallelPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-parallelport\n"},{"path":[4,83,1],"span":[1516,8,20]},{"path":[4,83,2,0],"span":[1517,2,30]},{"path":[4,83,2,0,4],"span":[1517,2,10]},{"path":[4,83,2,0,5],"span":[1517,11,17]},{"path":[4,83,2,0,1],"span":[1517,18,25]},{"path":[4,83,2,0,3],"span":[1517,28,29]},{"path":[4,83,2,1],"span":[1518,2,40]},{"path":[4,83,2,1,4],"span":[1518,2,10]},{"path":[4,83,2,1,6],"span":[1518,11,22]},{"path":[4,83,2,1,1],"span":[1518,23,35]},{"path":[4,83,2,1,3],"span":[1518,38,39]},{"path":[4,83,2,2],"span":[1519,2,46]},{"path":[4,83,2,2,4],"span":[1519,2,10]},{"path":[4,83,2,2,6],"span":[1519,11,22]},{"path":[4,83,2,2,1],"span":[1519,23,41]},{"path":[4,83,2,2,3],"span":[1519,44,45]},{"path":[4,83,2,3],"span":[1520,2,53]},{"path":[4,83,2,3,4],"span":[1520,2,10]},{"path":[4,83,2,3,6],"span":[1520,11,22]},{"path":[4,83,2,3,1],"span":[1520,23,48]},{"path":[4,83,2,3,3],"span":[1520,51,52]},{"path":[4,83,2,4],"span":[1521,2,36]},{"path":[4,83,2,4,4],"span":[1521,2,10]},{"path":[4,83,2,4,5],"span":[1521,11,17]},{"path":[4,83,2,4,1],"span":[1521,18,31]},{"path":[4,83,2,4,3],"span":[1521,34,35]},{"path":[4,83,2,5],"span":[1522,2,47]},{"path":[4,83,2,5,4],"span":[1522,2,10]},{"path":[4,83,2,5,5],"span":[1522,11,15]},{"path":[4,83,2,5,1],"span":[1522,16,42]},{"path":[4,83,2,5,3],"span":[1522,45,46]},{"path":[4,83,2,6],"span":[1523,2,39]},{"path":[4,83,2,6,4],"span":[1523,2,10]},{"path":[4,83,2,6,5],"span":[1523,11,15]},{"path":[4,83,2,6,1],"span":[1523,16,34]},{"path":[4,83,2,6,3],"span":[1523,37,38]},{"path":[4,83,2,7],"span":[1524,2,47]},{"path":[4,83,2,7,4],"span":[1524,2,10]},{"path":[4,83,2,7,5],"span":[1524,11,15]},{"path":[4,83,2,7,1],"span":[1524,16,42]},{"path":[4,83,2,7,3],"span":[1524,45,46]},{"path":[4,84],"span":[1531,0,1542,1],"leadingComments":"\n SerialPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-serialport\n"},{"path":[4,84,1],"span":[1531,8,18]},{"path":[4,84,2,0],"span":[1532,2,40]},{"path":[4,84,2,0,4],"span":[1532,2,10]},{"path":[4,84,2,0,6],"span":[1532,11,22]},{"path":[4,84,2,0,1],"span":[1532,23,35]},{"path":[4,84,2,0,3],"span":[1532,38,39]},{"path":[4,84,2,1],"span":[1533,2,27]},{"path":[4,84,2,1,4],"span":[1533,2,10]},{"path":[4,84,2,1,5],"span":[1533,11,15]},{"path":[4,84,2,1,1],"span":[1533,16,22]},{"path":[4,84,2,1,3],"span":[1533,25,26]},{"path":[4,84,2,2],"span":[1534,2,30]},{"path":[4,84,2,2,4],"span":[1534,2,10]},{"path":[4,84,2,2,5],"span":[1534,11,17]},{"path":[4,84,2,2,1],"span":[1534,18,25]},{"path":[4,84,2,2,3],"span":[1534,28,29]},{"path":[4,84,2,3],"span":[1535,2,32]},{"path":[4,84,2,3,4],"span":[1535,2,10]},{"path":[4,84,2,3,5],"span":[1535,11,17]},{"path":[4,84,2,3,1],"span":[1535,18,27]},{"path":[4,84,2,3,3],"span":[1535,30,31]},{"path":[4,84,2,4],"span":[1536,2,35]},{"path":[4,84,2,4,4],"span":[1536,2,10]},{"path":[4,84,2,4,5],"span":[1536,11,16]},{"path":[4,84,2,4,1],"span":[1536,17,30]},{"path":[4,84,2,4,3],"span":[1536,33,34]},{"path":[4,84,2,5],"span":[1537,2,47]},{"path":[4,84,2,5,4],"span":[1537,2,10]},{"path":[4,84,2,5,5],"span":[1537,11,16]},{"path":[4,84,2,5,1],"span":[1537,17,42]},{"path":[4,84,2,5,3],"span":[1537,45,46]},{"path":[4,84,2,6],"span":[1538,2,48]},{"path":[4,84,2,6,4],"span":[1538,2,10]},{"path":[4,84,2,6,5],"span":[1538,11,16]},{"path":[4,84,2,6,1],"span":[1538,17,43]},{"path":[4,84,2,6,3],"span":[1538,46,47]},{"path":[4,84,2,7],"span":[1539,2,39]},{"path":[4,84,2,7,4],"span":[1539,2,10]},{"path":[4,84,2,7,5],"span":[1539,11,15]},{"path":[4,84,2,7,1],"span":[1539,16,34]},{"path":[4,84,2,7,3],"span":[1539,37,38]},{"path":[4,84,2,8],"span":[1540,2,36]},{"path":[4,84,2,8,4],"span":[1540,2,10]},{"path":[4,84,2,8,5],"span":[1540,11,17]},{"path":[4,84,2,8,1],"span":[1540,18,31]},{"path":[4,84,2,8,3],"span":[1540,34,35]},{"path":[4,84,2,9],"span":[1541,2,37]},{"path":[4,84,2,9,4],"span":[1541,2,10]},{"path":[4,84,2,9,5],"span":[1541,11,17]},{"path":[4,84,2,9,1],"span":[1541,18,31]},{"path":[4,84,2,9,3],"span":[1541,34,36]},{"path":[4,85],"span":[1548,0,1555,1],"leadingComments":"\n PcmciaController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-pcmciacontroller\n"},{"path":[4,85,1],"span":[1548,8,24]},{"path":[4,85,2,0],"span":[1549,2,30]},{"path":[4,85,2,0,4],"span":[1549,2,10]},{"path":[4,85,2,0,5],"span":[1549,11,17]},{"path":[4,85,2,0,1],"span":[1549,18,25]},{"path":[4,85,2,0,3],"span":[1549,28,29]},{"path":[4,85,2,1],"span":[1550,2,46]},{"path":[4,85,2,1,4],"span":[1550,2,10]},{"path":[4,85,2,1,6],"span":[1550,11,22]},{"path":[4,85,2,1,1],"span":[1550,23,41]},{"path":[4,85,2,1,3],"span":[1550,44,45]},{"path":[4,85,2,2],"span":[1551,2,53]},{"path":[4,85,2,2,4],"span":[1551,2,10]},{"path":[4,85,2,2,6],"span":[1551,11,22]},{"path":[4,85,2,2,1],"span":[1551,23,48]},{"path":[4,85,2,2,3],"span":[1551,51,52]},{"path":[4,85,2,3],"span":[1552,2,47]},{"path":[4,85,2,3,4],"span":[1552,2,10]},{"path":[4,85,2,3,5],"span":[1552,11,15]},{"path":[4,85,2,3,1],"span":[1552,16,42]},{"path":[4,85,2,3,3],"span":[1552,45,46]},{"path":[4,85,2,4],"span":[1553,2,32]},{"path":[4,85,2,4,4],"span":[1553,2,10]},{"path":[4,85,2,4,5],"span":[1553,11,17]},{"path":[4,85,2,4,1],"span":[1553,18,27]},{"path":[4,85,2,4,3],"span":[1553,30,31]},{"path":[4,85,2,5],"span":[1554,2,35]},{"path":[4,85,2,5,4],"span":[1554,2,10]},{"path":[4,85,2,5,5],"span":[1554,11,17]},{"path":[4,85,2,5,1],"span":[1554,18,30]},{"path":[4,85,2,5,3],"span":[1554,33,34]},{"path":[4,86],"span":[1561,0,1567,1],"leadingComments":"\n PortConnector, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portconnector\n"},{"path":[4,86,1],"span":[1561,8,21]},{"path":[4,86,2,0],"span":[1562,2,42]},{"path":[4,86,2,0,4],"span":[1562,2,10]},{"path":[4,86,2,0,6],"span":[1562,11,22]},{"path":[4,86,2,0,1],"span":[1562,23,37]},{"path":[4,86,2,0,3],"span":[1562,40,41]},{"path":[4,86,2,1],"span":[1563,2,52]},{"path":[4,86,2,1,4],"span":[1563,2,10]},{"path":[4,86,2,1,5],"span":[1563,11,17]},{"path":[4,86,2,1,1],"span":[1563,18,47]},{"path":[4,86,2,1,3],"span":[1563,50,51]},{"path":[4,86,2,2],"span":[1564,2,52]},{"path":[4,86,2,2,4],"span":[1564,2,10]},{"path":[4,86,2,2,5],"span":[1564,11,17]},{"path":[4,86,2,2,1],"span":[1564,18,47]},{"path":[4,86,2,2,3],"span":[1564,50,51]},{"path":[4,86,2,3],"span":[1565,2,37]},{"path":[4,86,2,3,4],"span":[1565,2,10]},{"path":[4,86,2,3,6],"span":[1565,11,22]},{"path":[4,86,2,3,1],"span":[1565,23,32]},{"path":[4,86,2,3,3],"span":[1565,35,36]},{"path":[4,86,2,4],"span":[1566,2,26]},{"path":[4,86,2,4,4],"span":[1566,2,10]},{"path":[4,86,2,4,5],"span":[1566,11,17]},{"path":[4,86,2,4,1],"span":[1566,18,21]},{"path":[4,86,2,4,3],"span":[1566,24,25]},{"path":[4,87],"span":[1573,0,1580,1],"leadingComments":"\n ScsiController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-scsicontroller\n"},{"path":[4,87,1],"span":[1573,8,22]},{"path":[4,87,2,0],"span":[1574,2,40]},{"path":[4,87,2,0,4],"span":[1574,2,10]},{"path":[4,87,2,0,6],"span":[1574,11,22]},{"path":[4,87,2,0,1],"span":[1574,23,35]},{"path":[4,87,2,0,3],"span":[1574,38,39]},{"path":[4,87,2,1],"span":[1575,2,30]},{"path":[4,87,2,1,4],"span":[1575,2,10]},{"path":[4,87,2,1,5],"span":[1575,11,17]},{"path":[4,87,2,1,1],"span":[1575,18,25]},{"path":[4,87,2,1,3],"span":[1575,28,29]},{"path":[4,87,2,2],"span":[1576,2,32]},{"path":[4,87,2,2,4],"span":[1576,2,10]},{"path":[4,87,2,2,5],"span":[1576,11,17]},{"path":[4,87,2,2,1],"span":[1576,18,27]},{"path":[4,87,2,2,3],"span":[1576,30,31]},{"path":[4,87,2,3],"span":[1577,2,34]},{"path":[4,87,2,3,4],"span":[1577,2,10]},{"path":[4,87,2,3,5],"span":[1577,11,17]},{"path":[4,87,2,3,1],"span":[1577,18,29]},{"path":[4,87,2,3,3],"span":[1577,32,33]},{"path":[4,87,2,4],"span":[1578,2,35]},{"path":[4,87,2,4,4],"span":[1578,2,10]},{"path":[4,87,2,4,5],"span":[1578,11,17]},{"path":[4,87,2,4,1],"span":[1578,18,30]},{"path":[4,87,2,4,3],"span":[1578,33,34]},{"path":[4,87,2,5],"span":[1579,2,46]},{"path":[4,87,2,5,4],"span":[1579,2,10]},{"path":[4,87,2,5,6],"span":[1579,11,22]},{"path":[4,87,2,5,1],"span":[1579,23,41]},{"path":[4,87,2,5,3],"span":[1579,44,45]},{"path":[4,88],"span":[1586,0,1592,1],"leadingComments":"\n ComputerSystemProduct, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystemproduct\n"},{"path":[4,88,1],"span":[1586,8,29]},{"path":[4,88,2,0],"span":[1587,2,41]},{"path":[4,88,2,0,4],"span":[1587,2,10]},{"path":[4,88,2,0,5],"span":[1587,11,17]},{"path":[4,88,2,0,1],"span":[1587,18,36]},{"path":[4,88,2,0,3],"span":[1587,39,40]},{"path":[4,88,2,1],"span":[1588,2,27]},{"path":[4,88,2,1,4],"span":[1588,2,10]},{"path":[4,88,2,1,5],"span":[1588,11,17]},{"path":[4,88,2,1,1],"span":[1588,18,22]},{"path":[4,88,2,1,3],"span":[1588,25,26]},{"path":[4,88,2,2],"span":[1589,2,27]},{"path":[4,88,2,2,4],"span":[1589,2,10]},{"path":[4,88,2,2,5],"span":[1589,11,17]},{"path":[4,88,2,2,1],"span":[1589,18,22]},{"path":[4,88,2,2,3],"span":[1589,25,26]},{"path":[4,88,2,3],"span":[1590,2,29]},{"path":[4,88,2,3,4],"span":[1590,2,10]},{"path":[4,88,2,3,5],"span":[1590,11,17]},{"path":[4,88,2,3,1],"span":[1590,18,24]},{"path":[4,88,2,3,3],"span":[1590,27,28]},{"path":[4,88,2,4],"span":[1591,2,30]},{"path":[4,88,2,4,4],"span":[1591,2,10]},{"path":[4,88,2,4,5],"span":[1591,11,17]},{"path":[4,88,2,4,1],"span":[1591,18,25]},{"path":[4,88,2,4,3],"span":[1591,28,29]},{"path":[4,89],"span":[1598,0,1616,1],"leadingComments":"\n TrustedPlatformModule, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/secprov/win32-tpm\n"},{"path":[4,89,1],"span":[1598,8,29]},{"path":[4,89,2,0],"span":[1599,2,47]},{"path":[4,89,2,0,4],"span":[1599,2,10]},{"path":[4,89,2,0,5],"span":[1599,11,15]},{"path":[4,89,2,0,1],"span":[1599,16,42]},{"path":[4,89,2,0,3],"span":[1599,45,46]},{"path":[4,89,2,1],"span":[1600,2,45]},{"path":[4,89,2,1,4],"span":[1600,2,10]},{"path":[4,89,2,1,5],"span":[1600,11,15]},{"path":[4,89,2,1,1],"span":[1600,16,40]},{"path":[4,89,2,1,3],"span":[1600,43,44]},{"path":[4,89,2,2],"span":[1601,2,43]},{"path":[4,89,2,2,4],"span":[1601,2,10]},{"path":[4,89,2,2,5],"span":[1601,11,15]},{"path":[4,89,2,2,1],"span":[1601,16,38]},{"path":[4,89,2,2,3],"span":[1601,41,42]},{"path":[4,89,2,3],"span":[1602,2,35]},{"path":[4,89,2,3,4],"span":[1602,2,10]},{"path":[4,89,2,3,5],"span":[1602,11,17]},{"path":[4,89,2,3,1],"span":[1602,18,30]},{"path":[4,89,2,3,3],"span":[1602,33,34]},{"path":[4,89,2,4],"span":[1603,2,43]},{"path":[4,89,2,4,4],"span":[1603,2,10]},{"path":[4,89,2,4,5],"span":[1603,11,17]},{"path":[4,89,2,4,1],"span":[1603,18,38]},{"path":[4,89,2,4,3],"span":[1603,41,42]},{"path":[4,89,2,5],"span":[1604,2,48]},{"path":[4,89,2,5,4],"span":[1604,2,10]},{"path":[4,89,2,5,5],"span":[1604,11,17]},{"path":[4,89,2,5,1],"span":[1604,18,43]},{"path":[4,89,2,5,3],"span":[1604,46,47]},{"path":[4,89,2,6],"span":[1611,2,38],"leadingComments":"\n This integer value can be translated to a string value by interpreting each byte as an ASCII character.\n For example, an integer value of 1414548736 can be divided into these 4 bytes: 0x54, 0x50, 0x4D, and 0x00.\n Assuming the string is interpreted from left to right, this integer value translated to a string value of \"TPM\".\n"},{"path":[4,89,2,6,4],"span":[1611,2,10]},{"path":[4,89,2,6,5],"span":[1611,11,17]},{"path":[4,89,2,6,1],"span":[1611,18,33]},{"path":[4,89,2,6,3],"span":[1611,36,37]},{"path":[4,89,2,7],"span":[1613,2,50]},{"path":[4,89,2,7,4],"span":[1613,2,10]},{"path":[4,89,2,7,5],"span":[1613,11,17]},{"path":[4,89,2,7,1],"span":[1613,18,45]},{"path":[4,89,2,7,3],"span":[1613,48,49]},{"path":[4,89,2,8],"span":[1614,2,42]},{"path":[4,89,2,8,4],"span":[1614,2,10]},{"path":[4,89,2,8,5],"span":[1614,11,17]},{"path":[4,89,2,8,1],"span":[1614,18,37]},{"path":[4,89,2,8,3],"span":[1614,40,41]},{"path":[4,89,2,9],"span":[1615,2,54]},{"path":[4,89,2,9,4],"span":[1615,2,10]},{"path":[4,89,2,9,5],"span":[1615,11,17]},{"path":[4,89,2,9,1],"span":[1615,18,48]},{"path":[4,89,2,9,3],"span":[1615,51,53]},{"path":[4,90],"span":[1622,0,1627,1],"leadingComments":"\n ComputerConnectedUsbController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-usbcontroller\n"},{"path":[4,90,1],"span":[1622,8,38]},{"path":[4,90,2,0],"span":[1623,2,30]},{"path":[4,90,2,0,4],"span":[1623,2,10]},{"path":[4,90,2,0,5],"span":[1623,11,17]},{"path":[4,90,2,0,1],"span":[1623,18,25]},{"path":[4,90,2,0,3],"span":[1623,28,29]},{"path":[4,90,2,1],"span":[1624,2,32]},{"path":[4,90,2,1,4],"span":[1624,2,10]},{"path":[4,90,2,1,5],"span":[1624,11,17]},{"path":[4,90,2,1,1],"span":[1624,18,27]},{"path":[4,90,2,1,3],"span":[1624,30,31]},{"path":[4,90,2,2],"span":[1625,2,35]},{"path":[4,90,2,2,4],"span":[1625,2,10]},{"path":[4,90,2,2,5],"span":[1625,11,17]},{"path":[4,90,2,2,1],"span":[1625,18,30]},{"path":[4,90,2,2,3],"span":[1625,33,34]},{"path":[4,90,2,3],"span":[1626,2,46]},{"path":[4,90,2,3,4],"span":[1626,2,10]},{"path":[4,90,2,3,6],"span":[1626,11,22]},{"path":[4,90,2,3,1],"span":[1626,23,41]},{"path":[4,90,2,3,3],"span":[1626,44,45]},{"path":[4,91],"span":[1632,0,1636,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,91,1],"span":[1632,8,38]},{"path":[4,91,2,0],"span":[1633,2,24]},{"path":[4,91,2,0,5],"span":[1633,2,8]},{"path":[4,91,2,0,1],"span":[1633,9,19]},{"path":[4,91,2,0,3],"span":[1633,22,23]},{"path":[4,91,2,1],"span":[1634,2,26]},{"path":[4,91,2,1,5],"span":[1634,2,8]},{"path":[4,91,2,1,1],"span":[1634,9,21]},{"path":[4,91,2,1,3],"span":[1634,24,25]},{"path":[4,91,2,2],"span":[1635,2,26]},{"path":[4,91,2,2,5],"span":[1635,2,8]},{"path":[4,91,2,2,1],"span":[1635,9,21]},{"path":[4,91,2,2,3],"span":[1635,24,25]},{"path":[4,92],"span":[1641,0,1657,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,92,1],"span":[1641,8,30]},{"path":[4,92,2,0],"span":[1642,2,34]},{"path":[4,92,2,0,4],"span":[1642,2,10]},{"path":[4,92,2,0,5],"span":[1642,11,17]},{"path":[4,92,2,0,1],"span":[1642,18,29]},{"path":[4,92,2,0,3],"span":[1642,32,33]},{"path":[4,92,2,1],"span":[1643,2,30],"trailingComments":" mac: name\n"},{"path":[4,92,2,1,4],"span":[1643,2,10]},{"path":[4,92,2,1,5],"span":[1643,11,17]},{"path":[4,92,2,1,1],"span":[1643,18,25]},{"path":[4,92,2,1,3],"span":[1643,28,29]},{"path":[4,92,2,2],"span":[1644,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,92,2,2,4],"span":[1644,2,10]},{"path":[4,92,2,2,5],"span":[1644,11,17]},{"path":[4,92,2,2,1],"span":[1644,18,30]},{"path":[4,92,2,2,3],"span":[1644,33,34]},{"path":[4,92,2,3],"span":[1645,2,32]},{"path":[4,92,2,3,4],"span":[1645,2,10]},{"path":[4,92,2,3,5],"span":[1645,11,17]},{"path":[4,92,2,3,1],"span":[1645,18,27]},{"path":[4,92,2,3,3],"span":[1645,30,31]},{"path":[4,92,2,4],"span":[1646,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,92,2,4,4],"span":[1646,2,10]},{"path":[4,92,2,4,5],"span":[1646,11,17]},{"path":[4,92,2,4,1],"span":[1646,18,29]},{"path":[4,92,2,4,3],"span":[1646,32,33]},{"path":[4,92,2,5],"span":[1647,2,44]},{"path":[4,92,2,5,4],"span":[1647,2,10]},{"path":[4,92,2,5,5],"span":[1647,11,16]},{"path":[4,92,2,5,1],"span":[1647,17,39]},{"path":[4,92,2,5,3],"span":[1647,42,43]},{"path":[4,92,2,6],"span":[1648,2,50]},{"path":[4,92,2,6,4],"span":[1648,2,10]},{"path":[4,92,2,6,5],"span":[1648,11,16]},{"path":[4,92,2,6,1],"span":[1648,17,45]},{"path":[4,92,2,6,3],"span":[1648,48,49]},{"path":[4,92,2,7],"span":[1649,2,37]},{"path":[4,92,2,7,4],"span":[1649,2,10]},{"path":[4,92,2,7,5],"span":[1649,11,17]},{"path":[4,92,2,7,1],"span":[1649,18,32]},{"path":[4,92,2,7,3],"span":[1649,35,36]},{"path":[4,92,2,8],"span":[1650,2,40]},{"path":[4,92,2,8,4],"span":[1650,2,10]},{"path":[4,92,2,8,5],"span":[1650,11,17]},{"path":[4,92,2,8,1],"span":[1650,18,35]},{"path":[4,92,2,8,3],"span":[1650,38,39]},{"path":[4,92,2,9],"span":[1651,2,37]},{"path":[4,92,2,9,4],"span":[1651,2,10]},{"path":[4,92,2,9,5],"span":[1651,11,17]},{"path":[4,92,2,9,1],"span":[1651,18,31]},{"path":[4,92,2,9,3],"span":[1651,34,36]},{"path":[4,92,2,10],"span":[1653,2,34],"trailingComments":" mac only\n"},{"path":[4,92,2,10,4],"span":[1653,2,10]},{"path":[4,92,2,10,5],"span":[1653,11,17]},{"path":[4,92,2,10,1],"span":[1653,18,28]},{"path":[4,92,2,10,3],"span":[1653,31,33]},{"path":[4,92,2,11],"span":[1654,2,38],"trailingComments":" mac only\n"},{"path":[4,92,2,11,4],"span":[1654,2,10]},{"path":[4,92,2,11,5],"span":[1654,11,17]},{"path":[4,92,2,11,1],"span":[1654,18,32]},{"path":[4,92,2,11,3],"span":[1654,35,37]},{"path":[4,92,2,12],"span":[1655,2,29],"trailingComments":" mac only\n"},{"path":[4,92,2,12,4],"span":[1655,2,10]},{"path":[4,92,2,12,5],"span":[1655,11,17]},{"path":[4,92,2,12,1],"span":[1655,18,23]},{"path":[4,92,2,12,3],"span":[1655,26,28]},{"path":[4,92,2,13],"span":[1656,2,34],"trailingComments":" mac only\n"},{"path":[4,92,2,13,4],"span":[1656,2,10]},{"path":[4,92,2,13,5],"span":[1656,11,17]},{"path":[4,92,2,13,1],"span":[1656,18,28]},{"path":[4,92,2,13,3],"span":[1656,31,33]},{"path":[4,93],"span":[1662,0,1680,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,93,1],"span":[1662,8,32]},{"path":[4,93,2,0],"span":[1663,2,46]},{"path":[4,93,2,0,4],"span":[1663,2,10]},{"path":[4,93,2,0,5],"span":[1663,11,17]},{"path":[4,93,2,0,1],"span":[1663,18,41]},{"path":[4,93,2,0,3],"span":[1663,44,45]},{"path":[4,93,2,1],"span":[1664,2,30]},{"path":[4,93,2,1,4],"span":[1664,2,10]},{"path":[4,93,2,1,5],"span":[1664,11,17]},{"path":[4,93,2,1,1],"span":[1664,18,25]},{"path":[4,93,2,1,3],"span":[1664,28,29]},{"path":[4,93,2,2],"span":[1665,2,32]},{"path":[4,93,2,2,4],"span":[1665,2,10]},{"path":[4,93,2,2,5],"span":[1665,11,17]},{"path":[4,93,2,2,1],"span":[1665,18,27]},{"path":[4,93,2,2,3],"span":[1665,30,31]},{"path":[4,93,2,3],"span":[1666,2,31]},{"path":[4,93,2,3,4],"span":[1666,2,10]},{"path":[4,93,2,3,5],"span":[1666,11,17]},{"path":[4,93,2,3,1],"span":[1666,18,26]},{"path":[4,93,2,3,3],"span":[1666,29,30]},{"path":[4,93,2,4],"span":[1667,2,32]},{"path":[4,93,2,4,4],"span":[1667,2,10]},{"path":[4,93,2,4,5],"span":[1667,11,17]},{"path":[4,93,2,4,1],"span":[1667,18,27]},{"path":[4,93,2,4,3],"span":[1667,30,31]},{"path":[4,93,2,5],"span":[1668,2,42]},{"path":[4,93,2,5,4],"span":[1668,2,10]},{"path":[4,93,2,5,5],"span":[1668,11,17]},{"path":[4,93,2,5,1],"span":[1668,18,37]},{"path":[4,93,2,5,3],"span":[1668,40,41]},{"path":[4,93,2,6],"span":[1669,2,38]},{"path":[4,93,2,6,4],"span":[1669,2,10]},{"path":[4,93,2,6,5],"span":[1669,11,17]},{"path":[4,93,2,6,1],"span":[1669,18,33]},{"path":[4,93,2,6,3],"span":[1669,36,37]},{"path":[4,93,2,7],"span":[1670,2,34]},{"path":[4,93,2,7,4],"span":[1670,2,10]},{"path":[4,93,2,7,5],"span":[1670,11,17]},{"path":[4,93,2,7,1],"span":[1670,18,28]},{"path":[4,93,2,7,3],"span":[1670,31,33]},{"path":[4,93,2,8],"span":[1671,2,30]},{"path":[4,93,2,8,4],"span":[1671,2,10]},{"path":[4,93,2,8,5],"span":[1671,11,17]},{"path":[4,93,2,8,1],"span":[1671,18,24]},{"path":[4,93,2,8,3],"span":[1671,27,29]},{"path":[4,93,2,9],"span":[1672,2,31]},{"path":[4,93,2,9,4],"span":[1672,2,10]},{"path":[4,93,2,9,5],"span":[1672,11,17]},{"path":[4,93,2,9,1],"span":[1672,18,25]},{"path":[4,93,2,9,3],"span":[1672,28,30]},{"path":[4,93,2,10],"span":[1674,2,43]},{"path":[4,93,2,10,4],"span":[1674,2,10]},{"path":[4,93,2,10,5],"span":[1674,11,16]},{"path":[4,93,2,10,1],"span":[1674,17,38]},{"path":[4,93,2,10,3],"span":[1674,41,42]},{"path":[4,93,2,11],"span":[1675,2,42]},{"path":[4,93,2,11,4],"span":[1675,2,10]},{"path":[4,93,2,11,5],"span":[1675,11,16]},{"path":[4,93,2,11,1],"span":[1675,17,36]},{"path":[4,93,2,11,3],"span":[1675,39,41]},{"path":[4,93,2,12],"span":[1677,2,33]},{"path":[4,93,2,12,4],"span":[1677,2,10]},{"path":[4,93,2,12,5],"span":[1677,11,15]},{"path":[4,93,2,12,1],"span":[1677,16,27]},{"path":[4,93,2,12,3],"span":[1677,30,32]},{"path":[4,93,2,13],"span":[1678,2,27]},{"path":[4,93,2,13,4],"span":[1678,2,10]},{"path":[4,93,2,13,5],"span":[1678,11,15]},{"path":[4,93,2,13,1],"span":[1678,16,21]},{"path":[4,93,2,13,3],"span":[1678,24,26]},{"path":[4,93,2,14],"span":[1679,2,29]},{"path":[4,93,2,14,4],"span":[1679,2,10]},{"path":[4,93,2,14,5],"span":[1679,11,15]},{"path":[4,93,2,14,1],"span":[1679,16,23]},{"path":[4,93,2,14,3],"span":[1679,26,28]},{"path":[4,94],"span":[1685,0,1701,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,94,1],"span":[1685,8,34]},{"path":[4,94,2,0],"span":[1686,2,40]},{"path":[4,94,2,0,4],"span":[1686,2,10]},{"path":[4,94,2,0,6],"span":[1686,11,22]},{"path":[4,94,2,0,1],"span":[1686,23,35]},{"path":[4,94,2,0,3],"span":[1686,38,39]},{"path":[4,94,2,1],"span":[1687,2,40]},{"path":[4,94,2,1,4],"span":[1687,2,10]},{"path":[4,94,2,1,6],"span":[1687,11,22]},{"path":[4,94,2,1,1],"span":[1687,23,35]},{"path":[4,94,2,1,3],"span":[1687,38,39]},{"path":[4,94,2,2],"span":[1688,2,30]},{"path":[4,94,2,2,4],"span":[1688,2,10]},{"path":[4,94,2,2,5],"span":[1688,11,17]},{"path":[4,94,2,2,1],"span":[1688,18,25]},{"path":[4,94,2,2,3],"span":[1688,28,29]},{"path":[4,94,2,3],"span":[1689,2,32]},{"path":[4,94,2,3,4],"span":[1689,2,10]},{"path":[4,94,2,3,5],"span":[1689,11,15]},{"path":[4,94,2,3,1],"span":[1689,16,27]},{"path":[4,94,2,3,3],"span":[1689,30,31]},{"path":[4,94,2,4],"span":[1690,2,40]},{"path":[4,94,2,4,4],"span":[1690,2,10]},{"path":[4,94,2,4,5],"span":[1690,11,16]},{"path":[4,94,2,4,1],"span":[1690,17,35]},{"path":[4,94,2,4,3],"span":[1690,38,39]},{"path":[4,94,2,5],"span":[1691,2,32]},{"path":[4,94,2,5,4],"span":[1691,2,10]},{"path":[4,94,2,5,5],"span":[1691,11,17]},{"path":[4,94,2,5,1],"span":[1691,18,27]},{"path":[4,94,2,5,3],"span":[1691,30,31]},{"path":[4,94,2,6],"span":[1692,2,35]},{"path":[4,94,2,6,4],"span":[1692,2,10]},{"path":[4,94,2,6,5],"span":[1692,11,17]},{"path":[4,94,2,6,1],"span":[1692,18,30]},{"path":[4,94,2,6,3],"span":[1692,33,34]},{"path":[4,94,2,7],"span":[1693,2,36]},{"path":[4,94,2,7,4],"span":[1693,2,10]},{"path":[4,94,2,7,5],"span":[1693,11,16]},{"path":[4,94,2,7,1],"span":[1693,17,31]},{"path":[4,94,2,7,3],"span":[1693,34,35]},{"path":[4,94,2,8],"span":[1694,2,36]},{"path":[4,94,2,8,4],"span":[1694,2,10]},{"path":[4,94,2,8,5],"span":[1694,11,16]},{"path":[4,94,2,8,1],"span":[1694,17,31]},{"path":[4,94,2,8,3],"span":[1694,34,35]},{"path":[4,94,2,9],"span":[1695,2,42]},{"path":[4,94,2,9,4],"span":[1695,2,10]},{"path":[4,94,2,9,5],"span":[1695,11,16]},{"path":[4,94,2,9,1],"span":[1695,17,36]},{"path":[4,94,2,9,3],"span":[1695,39,41]},{"path":[4,94,2,10],"span":[1696,2,34]},{"path":[4,94,2,10,4],"span":[1696,2,10]},{"path":[4,94,2,10,5],"span":[1696,11,17]},{"path":[4,94,2,10,1],"span":[1696,18,28]},{"path":[4,94,2,10,3],"span":[1696,31,33]},{"path":[4,94,2,11],"span":[1697,2,37]},{"path":[4,94,2,11,4],"span":[1697,2,10]},{"path":[4,94,2,11,5],"span":[1697,11,16]},{"path":[4,94,2,11,1],"span":[1697,17,31]},{"path":[4,94,2,11,3],"span":[1697,34,36]},{"path":[4,94,2,12],"span":[1698,2,36]},{"path":[4,94,2,12,4],"span":[1698,2,10]},{"path":[4,94,2,12,5],"span":[1698,11,15]},{"path":[4,94,2,12,1],"span":[1698,16,30]},{"path":[4,94,2,12,3],"span":[1698,33,35]},{"path":[4,94,2,13],"span":[1699,2,48]},{"path":[4,94,2,13,4],"span":[1699,2,10]},{"path":[4,94,2,13,5],"span":[1699,11,16]},{"path":[4,94,2,13,1],"span":[1699,17,42]},{"path":[4,94,2,13,3],"span":[1699,45,47]},{"path":[4,94,2,14],"span":[1700,2,30]},{"path":[4,94,2,14,4],"span":[1700,2,10]},{"path":[4,94,2,14,5],"span":[1700,11,16]},{"path":[4,94,2,14,1],"span":[1700,17,24]},{"path":[4,94,2,14,3],"span":[1700,27,29]},{"path":[4,95],"span":[1706,0,1725,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,95,1],"span":[1706,8,30]},{"path":[4,95,2,0],"span":[1707,2,34]},{"path":[4,95,2,0,4],"span":[1707,2,10]},{"path":[4,95,2,0,5],"span":[1707,11,16]},{"path":[4,95,2,0,1],"span":[1707,17,29]},{"path":[4,95,2,0,3],"span":[1707,32,33]},{"path":[4,95,2,1],"span":[1708,2,32]},{"path":[4,95,2,1,4],"span":[1708,2,10]},{"path":[4,95,2,1,5],"span":[1708,11,15]},{"path":[4,95,2,1,1],"span":[1708,16,27]},{"path":[4,95,2,1,3],"span":[1708,30,31]},{"path":[4,95,2,2],"span":[1709,2,39]},{"path":[4,95,2,2,4],"span":[1709,2,10]},{"path":[4,95,2,2,5],"span":[1709,11,16]},{"path":[4,95,2,2,1],"span":[1709,17,34]},{"path":[4,95,2,2,3],"span":[1709,37,38]},{"path":[4,95,2,3],"span":[1710,2,38]},{"path":[4,95,2,3,4],"span":[1710,2,10]},{"path":[4,95,2,3,5],"span":[1710,11,15]},{"path":[4,95,2,3,1],"span":[1710,16,33]},{"path":[4,95,2,3,3],"span":[1710,36,37]},{"path":[4,95,2,4],"span":[1711,2,38]},{"path":[4,95,2,4,4],"span":[1711,2,10]},{"path":[4,95,2,4,5],"span":[1711,11,16]},{"path":[4,95,2,4,1],"span":[1711,17,33]},{"path":[4,95,2,4,3],"span":[1711,36,37]},{"path":[4,95,2,5],"span":[1712,2,34]},{"path":[4,95,2,5,4],"span":[1712,2,10]},{"path":[4,95,2,5,5],"span":[1712,11,16]},{"path":[4,95,2,5,1],"span":[1712,17,29]},{"path":[4,95,2,5,3],"span":[1712,32,33]},{"path":[4,95,2,6],"span":[1713,2,42]},{"path":[4,95,2,6,4],"span":[1713,2,10]},{"path":[4,95,2,6,5],"span":[1713,11,17]},{"path":[4,95,2,6,1],"span":[1713,18,37]},{"path":[4,95,2,6,3],"span":[1713,40,41]},{"path":[4,95,2,7],"span":[1714,2,37]},{"path":[4,95,2,7,4],"span":[1714,2,10]},{"path":[4,95,2,7,5],"span":[1714,11,16]},{"path":[4,95,2,7,1],"span":[1714,17,32]},{"path":[4,95,2,7,3],"span":[1714,35,36]},{"path":[4,95,2,8],"span":[1715,2,36]},{"path":[4,95,2,8,4],"span":[1715,2,10]},{"path":[4,95,2,8,5],"span":[1715,11,15]},{"path":[4,95,2,8,1],"span":[1715,16,31]},{"path":[4,95,2,8,3],"span":[1715,34,35]},{"path":[4,95,2,9],"span":[1716,2,28]},{"path":[4,95,2,9,4],"span":[1716,2,10]},{"path":[4,95,2,9,5],"span":[1716,11,17]},{"path":[4,95,2,9,1],"span":[1716,18,22]},{"path":[4,95,2,9,3],"span":[1716,25,27]},{"path":[4,95,2,10],"span":[1717,2,31]},{"path":[4,95,2,10,4],"span":[1717,2,10]},{"path":[4,95,2,10,5],"span":[1717,11,17]},{"path":[4,95,2,10,1],"span":[1717,18,25]},{"path":[4,95,2,10,3],"span":[1717,28,30]},{"path":[4,95,2,11],"span":[1718,2,40]},{"path":[4,95,2,11,4],"span":[1718,2,10]},{"path":[4,95,2,11,5],"span":[1718,11,15]},{"path":[4,95,2,11,1],"span":[1718,16,34]},{"path":[4,95,2,11,3],"span":[1718,37,39]},{"path":[4,95,2,12],"span":[1719,2,46]},{"path":[4,95,2,12,4],"span":[1719,2,10]},{"path":[4,95,2,12,5],"span":[1719,11,17]},{"path":[4,95,2,12,1],"span":[1719,18,40]},{"path":[4,95,2,12,3],"span":[1719,43,45]},{"path":[4,95,2,13],"span":[1720,2,40]},{"path":[4,95,2,13,4],"span":[1720,2,10]},{"path":[4,95,2,13,5],"span":[1720,11,15]},{"path":[4,95,2,13,1],"span":[1720,16,34]},{"path":[4,95,2,13,3],"span":[1720,37,39]},{"path":[4,95,2,14],"span":[1721,2,41]},{"path":[4,95,2,14,4],"span":[1721,2,10]},{"path":[4,95,2,14,5],"span":[1721,11,16]},{"path":[4,95,2,14,1],"span":[1721,17,35]},{"path":[4,95,2,14,3],"span":[1721,38,40]},{"path":[4,95,2,15],"span":[1722,2,33]},{"path":[4,95,2,15,4],"span":[1722,2,10]},{"path":[4,95,2,15,5],"span":[1722,11,17]},{"path":[4,95,2,15,1],"span":[1722,18,27]},{"path":[4,95,2,15,3],"span":[1722,30,32]},{"path":[4,95,2,16],"span":[1723,2,41]},{"path":[4,95,2,16,4],"span":[1723,2,10]},{"path":[4,95,2,16,5],"span":[1723,11,15]},{"path":[4,95,2,16,1],"span":[1723,16,35]},{"path":[4,95,2,16,3],"span":[1723,38,40]},{"path":[4,95,2,17],"span":[1724,2,37]},{"path":[4,95,2,17,4],"span":[1724,2,10]},{"path":[4,95,2,17,5],"span":[1724,11,15]},{"path":[4,95,2,17,1],"span":[1724,16,31]},{"path":[4,95,2,17,3],"span":[1724,34,36]},{"path":[4,96],"span":[1730,0,1741,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,96,1],"span":[1730,8,30]},{"path":[4,96,2,0],"span":[1731,2,34]},{"path":[4,96,2,0,4],"span":[1731,2,10]},{"path":[4,96,2,0,5],"span":[1731,11,16]},{"path":[4,96,2,0,1],"span":[1731,17,29]},{"path":[4,96,2,0,3],"span":[1731,32,33]},{"path":[4,96,2,1],"span":[1732,2,30]},{"path":[4,96,2,1,4],"span":[1732,2,10]},{"path":[4,96,2,1,5],"span":[1732,11,17]},{"path":[4,96,2,1,1],"span":[1732,18,25]},{"path":[4,96,2,1,3],"span":[1732,28,29]},{"path":[4,96,2,2],"span":[1733,2,34]},{"path":[4,96,2,2,4],"span":[1733,2,10]},{"path":[4,96,2,2,5],"span":[1733,11,17]},{"path":[4,96,2,2,1],"span":[1733,18,29]},{"path":[4,96,2,2,3],"span":[1733,32,33]},{"path":[4,96,2,3],"span":[1734,2,35]},{"path":[4,96,2,3,4],"span":[1734,2,10]},{"path":[4,96,2,3,5],"span":[1734,11,16]},{"path":[4,96,2,3,1],"span":[1734,17,30]},{"path":[4,96,2,3,3],"span":[1734,33,34]},{"path":[4,96,2,4],"span":[1735,2,39]},{"path":[4,96,2,4,4],"span":[1735,2,10]},{"path":[4,96,2,4,5],"span":[1735,11,16]},{"path":[4,96,2,4,1],"span":[1735,17,34]},{"path":[4,96,2,4,3],"span":[1735,37,38]},{"path":[4,96,2,5],"span":[1736,2,37]},{"path":[4,96,2,5,4],"span":[1736,2,10]},{"path":[4,96,2,5,5],"span":[1736,11,17]},{"path":[4,96,2,5,1],"span":[1736,18,32]},{"path":[4,96,2,5,3],"span":[1736,35,36]},{"path":[4,96,2,6],"span":[1737,2,32]},{"path":[4,96,2,6,4],"span":[1737,2,10]},{"path":[4,96,2,6,5],"span":[1737,11,16]},{"path":[4,96,2,6,1],"span":[1737,17,27]},{"path":[4,96,2,6,3],"span":[1737,30,31]},{"path":[4,96,2,7],"span":[1738,2,33]},{"path":[4,96,2,7,4],"span":[1738,2,10]},{"path":[4,96,2,7,5],"span":[1738,11,16]},{"path":[4,96,2,7,1],"span":[1738,17,28]},{"path":[4,96,2,7,3],"span":[1738,31,32]},{"path":[4,96,2,8],"span":[1739,2,32]},{"path":[4,96,2,8,4],"span":[1739,2,10]},{"path":[4,96,2,8,5],"span":[1739,11,16]},{"path":[4,96,2,8,1],"span":[1739,17,27]},{"path":[4,96,2,8,3],"span":[1739,30,31]},{"path":[4,96,2,9],"span":[1740,2,44]},{"path":[4,96,2,9,4],"span":[1740,2,10]},{"path":[4,96,2,9,5],"span":[1740,11,16]},{"path":[4,96,2,9,1],"span":[1740,17,38]},{"path":[4,96,2,9,3],"span":[1740,41,43]},{"path":[4,97],"span":[1747,0,1758,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,97,1],"span":[1747,8,40]},{"path":[4,97,2,0],"span":[1748,2,36]},{"path":[4,97,2,0,4],"span":[1748,2,10]},{"path":[4,97,2,0,5],"span":[1748,11,16]},{"path":[4,97,2,0,1],"span":[1748,17,31]},{"path":[4,97,2,0,3],"span":[1748,34,35]},{"path":[4,97,2,1],"span":[1749,2,30]},{"path":[4,97,2,1,4],"span":[1749,2,10]},{"path":[4,97,2,1,5],"span":[1749,11,17]},{"path":[4,97,2,1,1],"span":[1749,18,25]},{"path":[4,97,2,1,3],"span":[1749,28,29]},{"path":[4,97,2,2],"span":[1750,2,34]},{"path":[4,97,2,2,4],"span":[1750,2,10]},{"path":[4,97,2,2,5],"span":[1750,11,16]},{"path":[4,97,2,2,1],"span":[1750,17,29]},{"path":[4,97,2,2,3],"span":[1750,32,33]},{"path":[4,97,2,3],"span":[1751,2,53]},{"path":[4,97,2,3,4],"span":[1751,2,10]},{"path":[4,97,2,3,5],"span":[1751,11,16]},{"path":[4,97,2,3,1],"span":[1751,17,48]},{"path":[4,97,2,3,3],"span":[1751,51,52]},{"path":[4,97,2,4],"span":[1752,2,42]},{"path":[4,97,2,4,4],"span":[1752,2,10]},{"path":[4,97,2,4,5],"span":[1752,11,16]},{"path":[4,97,2,4,1],"span":[1752,17,37]},{"path":[4,97,2,4,3],"span":[1752,40,41]},{"path":[4,97,2,5],"span":[1753,2,43]},{"path":[4,97,2,5,4],"span":[1753,2,10]},{"path":[4,97,2,5,5],"span":[1753,11,16]},{"path":[4,97,2,5,1],"span":[1753,17,38]},{"path":[4,97,2,5,3],"span":[1753,41,42]},{"path":[4,97,2,6],"span":[1754,2,27]},{"path":[4,97,2,6,4],"span":[1754,2,10]},{"path":[4,97,2,6,5],"span":[1754,11,17]},{"path":[4,97,2,6,1],"span":[1754,18,22]},{"path":[4,97,2,6,3],"span":[1754,25,26]},{"path":[4,97,2,7],"span":[1755,2,34]},{"path":[4,97,2,7,4],"span":[1755,2,10]},{"path":[4,97,2,7,5],"span":[1755,11,16]},{"path":[4,97,2,7,1],"span":[1755,17,29]},{"path":[4,97,2,7,3],"span":[1755,32,33]},{"path":[4,97,2,8],"span":[1756,2,41]},{"path":[4,97,2,8,4],"span":[1756,2,10]},{"path":[4,97,2,8,5],"span":[1756,11,16]},{"path":[4,97,2,8,1],"span":[1756,17,36]},{"path":[4,97,2,8,3],"span":[1756,39,40]},{"path":[4,97,2,9],"span":[1757,2,34]},{"path":[4,97,2,9,4],"span":[1757,2,10]},{"path":[4,97,2,9,5],"span":[1757,11,17]},{"path":[4,97,2,9,1],"span":[1757,18,28]},{"path":[4,97,2,9,3],"span":[1757,31,33]},{"path":[4,98],"span":[1763,0,1768,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,98,1],"span":[1763,8,36]},{"path":[4,98,2,0],"span":[1764,2,30]},{"path":[4,98,2,0,4],"span":[1764,2,10]},{"path":[4,98,2,0,5],"span":[1764,11,17]},{"path":[4,98,2,0,1],"span":[1764,18,25]},{"path":[4,98,2,0,3],"span":[1764,28,29]},{"path":[4,98,2,1],"span":[1765,2,34]},{"path":[4,98,2,1,4],"span":[1765,2,10]},{"path":[4,98,2,1,5],"span":[1765,11,17]},{"path":[4,98,2,1,1],"span":[1765,18,29]},{"path":[4,98,2,1,3],"span":[1765,32,33]},{"path":[4,98,2,2],"span":[1766,2,35]},{"path":[4,98,2,2,4],"span":[1766,2,10]},{"path":[4,98,2,2,5],"span":[1766,11,17]},{"path":[4,98,2,2,1],"span":[1766,18,30]},{"path":[4,98,2,2,3],"span":[1766,33,34]},{"path":[4,98,2,3],"span":[1767,2,27]},{"path":[4,98,2,3,4],"span":[1767,2,10]},{"path":[4,98,2,3,5],"span":[1767,11,17]},{"path":[4,98,2,3,1],"span":[1767,18,22]},{"path":[4,98,2,3,3],"span":[1767,25,26]},{"path":[4,99],"span":[1775,0,1780,1],"leadingComments":"\n Computer Windows only: from WindowsIdeController.\n WMI mappings from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-idecontroller\n"},{"path":[4,99,1],"span":[1775,8,36]},{"path":[4,99,2,0],"span":[1776,2,30]},{"path":[4,99,2,0,4],"span":[1776,2,10]},{"path":[4,99,2,0,5],"span":[1776,11,17]},{"path":[4,99,2,0,1],"span":[1776,18,25]},{"path":[4,99,2,0,3],"span":[1776,28,29]},{"path":[4,99,2,1],"span":[1777,2,32]},{"path":[4,99,2,1,4],"span":[1777,2,10]},{"path":[4,99,2,1,5],"span":[1777,11,17]},{"path":[4,99,2,1,1],"span":[1777,18,27]},{"path":[4,99,2,1,3],"span":[1777,30,31]},{"path":[4,99,2,2],"span":[1778,2,35]},{"path":[4,99,2,2,4],"span":[1778,2,10]},{"path":[4,99,2,2,5],"span":[1778,11,17]},{"path":[4,99,2,2,1],"span":[1778,18,30]},{"path":[4,99,2,2,3],"span":[1778,33,34]},{"path":[4,99,2,3],"span":[1779,2,46]},{"path":[4,99,2,3,4],"span":[1779,2,10]},{"path":[4,99,2,3,6],"span":[1779,11,22]},{"path":[4,99,2,3,1],"span":[1779,23,41]},{"path":[4,99,2,3,3],"span":[1779,44,45]},{"path":[4,100],"span":[1786,0,1798,1],"leadingComments":"\n Computer Windows only: from WindowsDiskPartition.\n As per spec: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-diskpartition\n"},{"path":[4,100,1],"span":[1786,8,36]},{"path":[4,100,2,0],"span":[1787,2,32]},{"path":[4,100,2,0,4],"span":[1787,2,10]},{"path":[4,100,2,0,5],"span":[1787,11,16]},{"path":[4,100,2,0,1],"span":[1787,17,27]},{"path":[4,100,2,0,3],"span":[1787,30,31]},{"path":[4,100,2,1],"span":[1788,2,29]},{"path":[4,100,2,1,4],"span":[1788,2,10]},{"path":[4,100,2,1,5],"span":[1788,11,15]},{"path":[4,100,2,1,1],"span":[1788,16,24]},{"path":[4,100,2,1,3],"span":[1788,27,28]},{"path":[4,100,2,2],"span":[1789,2,35]},{"path":[4,100,2,2,4],"span":[1789,2,10]},{"path":[4,100,2,2,5],"span":[1789,11,15]},{"path":[4,100,2,2,1],"span":[1789,16,30]},{"path":[4,100,2,2,3],"span":[1789,33,34]},{"path":[4,100,2,3],"span":[1790,2,32]},{"path":[4,100,2,3,4],"span":[1790,2,10]},{"path":[4,100,2,3,5],"span":[1790,11,17]},{"path":[4,100,2,3,1],"span":[1790,18,27]},{"path":[4,100,2,3,3],"span":[1790,30,31]},{"path":[4,100,2,4],"span":[1791,2,32]},{"path":[4,100,2,4,4],"span":[1791,2,10]},{"path":[4,100,2,4,5],"span":[1791,11,16]},{"path":[4,100,2,4,1],"span":[1791,17,27]},{"path":[4,100,2,4,3],"span":[1791,30,31]},{"path":[4,100,2,5],"span":[1792,2,27]},{"path":[4,100,2,5,4],"span":[1792,2,10]},{"path":[4,100,2,5,5],"span":[1792,11,16]},{"path":[4,100,2,5,1],"span":[1792,17,22]},{"path":[4,100,2,5,3],"span":[1792,25,26]},{"path":[4,100,2,6],"span":[1793,2,38]},{"path":[4,100,2,6,4],"span":[1793,2,10]},{"path":[4,100,2,6,5],"span":[1793,11,16]},{"path":[4,100,2,6,1],"span":[1793,17,33]},{"path":[4,100,2,6,3],"span":[1793,36,37]},{"path":[4,100,2,7],"span":[1794,2,38]},{"path":[4,100,2,7,4],"span":[1794,2,10]},{"path":[4,100,2,7,5],"span":[1794,11,15]},{"path":[4,100,2,7,1],"span":[1794,16,33]},{"path":[4,100,2,7,3],"span":[1794,36,37]},{"path":[4,100,2,8],"span":[1795,2,26]},{"path":[4,100,2,8,4],"span":[1795,2,10]},{"path":[4,100,2,8,5],"span":[1795,11,16]},{"path":[4,100,2,8,1],"span":[1795,17,21]},{"path":[4,100,2,8,3],"span":[1795,24,25]},{"path":[4,100,2,9],"span":[1796,2,38]},{"path":[4,100,2,9,4],"span":[1796,2,10]},{"path":[4,100,2,9,5],"span":[1796,11,16]},{"path":[4,100,2,9,1],"span":[1796,17,32]},{"path":[4,100,2,9,3],"span":[1796,35,37]},{"path":[4,100,2,10],"span":[1797,2,28]},{"path":[4,100,2,10,4],"span":[1797,2,10]},{"path":[4,100,2,10,5],"span":[1797,11,17]},{"path":[4,100,2,10,1],"span":[1797,18,22]},{"path":[4,100,2,10,3],"span":[1797,25,27]},{"path":[4,101],"span":[1805,0,1817,1],"leadingComments":"\n PortableBattery, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portablebattery\n"},{"path":[4,101,1],"span":[1805,8,23]},{"path":[4,101,2,0],"span":[1806,2,41]},{"path":[4,101,2,0,4],"span":[1806,2,10]},{"path":[4,101,2,0,5],"span":[1806,11,16]},{"path":[4,101,2,0,1],"span":[1806,17,36]},{"path":[4,101,2,0,3],"span":[1806,39,40]},{"path":[4,101,2,1],"span":[1807,2,37]},{"path":[4,101,2,1,4],"span":[1807,2,10]},{"path":[4,101,2,1,6],"span":[1807,11,22]},{"path":[4,101,2,1,1],"span":[1807,23,32]},{"path":[4,101,2,1,3],"span":[1807,35,36]},{"path":[4,101,2,2],"span":[1808,2,37]},{"path":[4,101,2,2,4],"span":[1808,2,10]},{"path":[4,101,2,2,5],"span":[1808,11,16]},{"path":[4,101,2,2,1],"span":[1808,17,32]},{"path":[4,101,2,2,3],"span":[1808,35,36]},{"path":[4,101,2,3],"span":[1809,2,36]},{"path":[4,101,2,3,4],"span":[1809,2,10]},{"path":[4,101,2,3,5],"span":[1809,11,16]},{"path":[4,101,2,3,1],"span":[1809,17,31]},{"path":[4,101,2,3,3],"span":[1809,34,35]},{"path":[4,101,2,4],"span":[1810,2,32]},{"path":[4,101,2,4,4],"span":[1810,2,10]},{"path":[4,101,2,4,5],"span":[1810,11,17]},{"path":[4,101,2,4,1],"span":[1810,18,27]},{"path":[4,101,2,4,3],"span":[1810,30,31]},{"path":[4,101,2,5],"span":[1811,2,31]},{"path":[4,101,2,5,4],"span":[1811,2,10]},{"path":[4,101,2,5,5],"span":[1811,11,17]},{"path":[4,101,2,5,1],"span":[1811,18,26]},{"path":[4,101,2,5,3],"span":[1811,29,30]},{"path":[4,101,2,6],"span":[1812,2,39]},{"path":[4,101,2,6,4],"span":[1812,2,10]},{"path":[4,101,2,6,5],"span":[1812,11,17]},{"path":[4,101,2,6,1],"span":[1812,18,34]},{"path":[4,101,2,6,3],"span":[1812,37,38]},{"path":[4,101,2,7],"span":[1813,2,35]},{"path":[4,101,2,7,4],"span":[1813,2,10]},{"path":[4,101,2,7,5],"span":[1813,11,17]},{"path":[4,101,2,7,1],"span":[1813,18,30]},{"path":[4,101,2,7,3],"span":[1813,33,34]},{"path":[4,101,2,8],"span":[1814,2,39]},{"path":[4,101,2,8,4],"span":[1814,2,10]},{"path":[4,101,2,8,5],"span":[1814,11,16]},{"path":[4,101,2,8,1],"span":[1814,17,34]},{"path":[4,101,2,8,3],"span":[1814,37,38]},{"path":[4,101,2,9],"span":[1815,2,28]},{"path":[4,101,2,9,4],"span":[1815,2,10]},{"path":[4,101,2,9,5],"span":[1815,11,17]},{"path":[4,101,2,9,1],"span":[1815,18,22]},{"path":[4,101,2,9,3],"span":[1815,25,27]},{"path":[4,101,2,10],"span":[1816,2,45]},{"path":[4,101,2,10,4],"span":[1816,2,10]},{"path":[4,101,2,10,5],"span":[1816,11,17]},{"path":[4,101,2,10,1],"span":[1816,18,39]},{"path":[4,101,2,10,3],"span":[1816,42,44]},{"path":[4,102],"span":[1826,0,1829,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,102,1],"span":[1826,8,19]},{"path":[4,102,2,0],"span":[1827,2,18]},{"path":[4,102,2,0,5],"span":[1827,2,7]},{"path":[4,102,2,0,1],"span":[1827,8,13]},{"path":[4,102,2,0,3],"span":[1827,16,17]},{"path":[4,102,2,1],"span":[1828,2,27]},{"path":[4,102,2,1,4],"span":[1828,2,10]},{"path":[4,102,2,1,5],"span":[1828,11,17]},{"path":[4,102,2,1,1],"span":[1828,18,22]},{"path":[4,102,2,1,3],"span":[1828,25,26]},{"path":[4,103],"span":[1832,0,1835,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,103,1],"span":[1832,8,24]},{"path":[4,103,2,0],"span":[1833,2,42]},{"path":[4,103,2,0,6],"span":[1833,2,27]},{"path":[4,103,2,0,1],"span":[1833,28,37]},{"path":[4,103,2,0,3],"span":[1833,40,41]},{"path":[4,103,2,1],"span":[1834,2,31]},{"path":[4,103,2,1,4],"span":[1834,2,10]},{"path":[4,103,2,1,6],"span":[1834,11,18]},{"path":[4,103,2,1,1],"span":[1834,19,26]},{"path":[4,103,2,1,3],"span":[1834,29,30]},{"path":[4,104],"span":[1839,0,1860,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,104,1],"span":[1839,8,15]},{"path":[4,104,2,0],"span":[1841,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,104,2,0,4],"span":[1841,2,10]},{"path":[4,104,2,0,5],"span":[1841,11,16]},{"path":[4,104,2,0,1],"span":[1841,17,19]},{"path":[4,104,2,0,3],"span":[1841,22,23]},{"path":[4,104,2,1],"span":[1844,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,104,2,1,4],"span":[1844,2,10]},{"path":[4,104,2,1,5],"span":[1844,11,16]},{"path":[4,104,2,1,1],"span":[1844,17,24]},{"path":[4,104,2,1,3],"span":[1844,27,28]},{"path":[4,104,2,2],"span":[1846,2,23]},{"path":[4,104,2,2,5],"span":[1846,2,8]},{"path":[4,104,2,2,1],"span":[1846,9,18]},{"path":[4,104,2,2,3],"span":[1846,21,22]},{"path":[4,104,2,3],"span":[1847,2,24]},{"path":[4,104,2,3,5],"span":[1847,2,8]},{"path":[4,104,2,3,1],"span":[1847,9,19]},{"path":[4,104,2,3,3],"span":[1847,22,23]},{"path":[4,104,2,4],"span":[1849,2,36]},{"path":[4,104,2,4,4],"span":[1849,2,10]},{"path":[4,104,2,4,5],"span":[1849,11,17]},{"path":[4,104,2,4,1],"span":[1849,18,31]},{"path":[4,104,2,4,3],"span":[1849,34,35]},{"path":[4,104,2,5],"span":[1850,2,50]},{"path":[4,104,2,5,6],"span":[1850,2,27]},{"path":[4,104,2,5,1],"span":[1850,28,45]},{"path":[4,104,2,5,3],"span":[1850,48,49]},{"path":[4,104,8,0],"span":[1852,2,1854,3]},{"path":[4,104,8,0,1],"span":[1852,8,12]},{"path":[4,104,2,6],"span":[1853,4,36]},{"path":[4,104,2,6,6],"span":[1853,4,22]},{"path":[4,104,2,6,1],"span":[1853,23,30]},{"path":[4,104,2,6,3],"span":[1853,33,35]},{"path":[4,104,2,7],"span":[1857,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,104,2,7,4],"span":[1857,2,10]},{"path":[4,104,2,7,6],"span":[1857,11,23]},{"path":[4,104,2,7,1],"span":[1857,24,37]},{"path":[4,104,2,7,3],"span":[1857,40,42]},{"path":[4,104,2,8],"span":[1859,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,104,2,8,4],"span":[1859,2,10]},{"path":[4,104,2,8,6],"span":[1859,11,25]},{"path":[4,104,2,8,1],"span":[1859,26,41]},{"path":[4,104,2,8,3],"span":[1859,44,46]},{"path":[4,105],"span":[1862,0,1871,1]},{"path":[4,105,1],"span":[1862,8,26]},{"path":[4,105,2,0],"span":[1863,2,19]},{"path":[4,105,2,0,5],"span":[1863,2,8]},{"path":[4,105,2,0,1],"span":[1863,9,14]},{"path":[4,105,2,0,3],"span":[1863,17,18]},{"path":[4,105,2,1],"span":[1864,2,36]},{"path":[4,105,2,1,4],"span":[1864,2,10]},{"path":[4,105,2,1,5],"span":[1864,11,17]},{"path":[4,105,2,1,1],"span":[1864,18,31]},{"path":[4,105,2,1,3],"span":[1864,34,35]},{"path":[4,105,2,2],"span":[1865,2,36]},{"path":[4,105,2,2,4],"span":[1865,2,10]},{"path":[4,105,2,2,5],"span":[1865,11,17]},{"path":[4,105,2,2,1],"span":[1865,18,31]},{"path":[4,105,2,2,3],"span":[1865,34,35]},{"path":[4,105,2,3],"span":[1866,2,33]},{"path":[4,105,2,3,4],"span":[1866,2,10]},{"path":[4,105,2,3,5],"span":[1866,11,17]},{"path":[4,105,2,3,1],"span":[1866,18,28]},{"path":[4,105,2,3,3],"span":[1866,31,32]},{"path":[4,105,2,4],"span":[1867,2,40]},{"path":[4,105,2,4,4],"span":[1867,2,10]},{"path":[4,105,2,4,5],"span":[1867,11,17]},{"path":[4,105,2,4,1],"span":[1867,18,35]},{"path":[4,105,2,4,3],"span":[1867,38,39]},{"path":[4,105,2,5],"span":[1868,2,39]},{"path":[4,105,2,5,4],"span":[1868,2,10]},{"path":[4,105,2,5,5],"span":[1868,11,17]},{"path":[4,105,2,5,1],"span":[1868,18,34]},{"path":[4,105,2,5,3],"span":[1868,37,38]},{"path":[4,105,2,6],"span":[1869,2,59]},{"path":[4,105,2,6,4],"span":[1869,2,10]},{"path":[4,105,2,6,6],"span":[1869,11,36]},{"path":[4,105,2,6,1],"span":[1869,37,54]},{"path":[4,105,2,6,3],"span":[1869,57,58]},{"path":[4,105,2,7],"span":[1870,2,32]},{"path":[4,105,2,7,4],"span":[1870,2,10]},{"path":[4,105,2,7,5],"span":[1870,11,17]},{"path":[4,105,2,7,1],"span":[1870,18,27]},{"path":[4,105,2,7,3],"span":[1870,30,31]},{"path":[4,106],"span":[1876,0,1882,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,106,1],"span":[1876,8,25]},{"path":[4,106,2,0],"span":[1877,2,27]},{"path":[4,106,2,0,4],"span":[1877,2,10]},{"path":[4,106,2,0,5],"span":[1877,11,17]},{"path":[4,106,2,0,1],"span":[1877,18,22]},{"path":[4,106,2,0,3],"span":[1877,25,26]},{"path":[4,106,2,1],"span":[1878,2,27]},{"path":[4,106,2,1,4],"span":[1878,2,10]},{"path":[4,106,2,1,5],"span":[1878,11,17]},{"path":[4,106,2,1,1],"span":[1878,18,22]},{"path":[4,106,2,1,3],"span":[1878,25,26]},{"path":[4,106,2,2],"span":[1879,2,28]},{"path":[4,106,2,2,4],"span":[1879,2,10]},{"path":[4,106,2,2,5],"span":[1879,11,15]},{"path":[4,106,2,2,1],"span":[1879,16,23]},{"path":[4,106,2,2,3],"span":[1879,26,27]},{"path":[4,106,2,3],"span":[1880,2,31]},{"path":[4,106,2,3,4],"span":[1880,2,10]},{"path":[4,106,2,3,5],"span":[1880,11,15]},{"path":[4,106,2,3,1],"span":[1880,16,26]},{"path":[4,106,2,3,3],"span":[1880,29,30]},{"path":[4,106,2,4],"span":[1881,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,106,2,4,4],"span":[1881,2,10]},{"path":[4,106,2,4,6],"span":[1881,11,19]},{"path":[4,106,2,4,1],"span":[1881,20,28]},{"path":[4,106,2,4,3],"span":[1881,31,32]},{"path":[4,107],"span":[1887,0,1897,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,107,1],"span":[1887,8,14]},{"path":[4,107,2,0],"span":[1888,2,21]},{"path":[4,107,2,0,5],"span":[1888,2,8]},{"path":[4,107,2,0,1],"span":[1888,9,16]},{"path":[4,107,2,0,3],"span":[1888,19,20]},{"path":[4,107,2,1],"span":[1889,2,31]},{"path":[4,107,2,1,4],"span":[1889,2,10]},{"path":[4,107,2,1,5],"span":[1889,11,17]},{"path":[4,107,2,1,1],"span":[1889,18,26]},{"path":[4,107,2,1,3],"span":[1889,29,30]},{"path":[4,107,2,2],"span":[1890,2,31]},{"path":[4,107,2,2,4],"span":[1890,2,10]},{"path":[4,107,2,2,5],"span":[1890,11,17]},{"path":[4,107,2,2,1],"span":[1890,18,26]},{"path":[4,107,2,2,3],"span":[1890,29,30]},{"path":[4,107,2,3],"span":[1891,2,37]},{"path":[4,107,2,3,4],"span":[1891,2,10]},{"path":[4,107,2,3,5],"span":[1891,11,17]},{"path":[4,107,2,3,1],"span":[1891,18,32]},{"path":[4,107,2,3,3],"span":[1891,35,36]},{"path":[4,107,2,4],"span":[1892,2,35]},{"path":[4,107,2,4,4],"span":[1892,2,10]},{"path":[4,107,2,4,5],"span":[1892,11,17]},{"path":[4,107,2,4,1],"span":[1892,18,30]},{"path":[4,107,2,4,3],"span":[1892,33,34]},{"path":[4,107,2,5],"span":[1893,2,34]},{"path":[4,107,2,5,4],"span":[1893,2,10]},{"path":[4,107,2,5,5],"span":[1893,11,17]},{"path":[4,107,2,5,1],"span":[1893,18,29]},{"path":[4,107,2,5,3],"span":[1893,32,33]},{"path":[4,107,2,6],"span":[1894,2,35]},{"path":[4,107,2,6,4],"span":[1894,2,10]},{"path":[4,107,2,6,5],"span":[1894,11,17]},{"path":[4,107,2,6,1],"span":[1894,18,30]},{"path":[4,107,2,6,3],"span":[1894,33,34]},{"path":[4,107,2,7],"span":[1895,2,26]},{"path":[4,107,2,7,4],"span":[1895,2,10]},{"path":[4,107,2,7,5],"span":[1895,11,17]},{"path":[4,107,2,7,1],"span":[1895,18,21]},{"path":[4,107,2,7,3],"span":[1895,24,25]},{"path":[4,107,2,8],"span":[1896,2,35]},{"path":[4,107,2,8,4],"span":[1896,2,10]},{"path":[4,107,2,8,5],"span":[1896,11,17]},{"path":[4,107,2,8,1],"span":[1896,18,30]},{"path":[4,107,2,8,3],"span":[1896,33,34]},{"path":[4,108],"span":[1906,0,1909,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,108,1],"span":[1906,8,25]},{"path":[4,108,2,0],"span":[1907,2,42]},{"path":[4,108,2,0,6],"span":[1907,2,27]},{"path":[4,108,2,0,1],"span":[1907,28,37]},{"path":[4,108,2,0,3],"span":[1907,40,41]},{"path":[4,108,2,1],"span":[1908,2,33]},{"path":[4,108,2,1,4],"span":[1908,2,10]},{"path":[4,108,2,1,6],"span":[1908,11,19]},{"path":[4,108,2,1,1],"span":[1908,20,28]},{"path":[4,108,2,1,3],"span":[1908,31,32]},{"path":[4,109],"span":[1918,0,1956,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,109,1],"span":[1918,8,16]},{"path":[4,109,2,0],"span":[1920,2,26]},{"path":[4,109,2,0,4],"span":[1920,2,10]},{"path":[4,109,2,0,5],"span":[1920,11,16]},{"path":[4,109,2,0,1],"span":[1920,17,21]},{"path":[4,109,2,0,3],"span":[1920,24,25]},{"path":[4,109,2,1],"span":[1921,2,29]},{"path":[4,109,2,1,4],"span":[1921,2,10]},{"path":[4,109,2,1,5],"span":[1921,11,16]},{"path":[4,109,2,1,1],"span":[1921,17,24]},{"path":[4,109,2,1,3],"span":[1921,27,28]},{"path":[4,109,2,2],"span":[1922,2,28]},{"path":[4,109,2,2,4],"span":[1922,2,10]},{"path":[4,109,2,2,5],"span":[1922,11,16]},{"path":[4,109,2,2,1],"span":[1922,17,23]},{"path":[4,109,2,2,3],"span":[1922,26,27]},{"path":[4,109,2,3],"span":[1925,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,109,2,3,4],"span":[1925,2,10]},{"path":[4,109,2,3,5],"span":[1925,11,16]},{"path":[4,109,2,3,1],"span":[1925,17,24]},{"path":[4,109,2,3,3],"span":[1925,27,28]},{"path":[4,109,2,4],"span":[1928,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,109,2,4,4],"span":[1928,2,10]},{"path":[4,109,2,4,5],"span":[1928,11,16]},{"path":[4,109,2,4,1],"span":[1928,17,22]},{"path":[4,109,2,4,3],"span":[1928,25,26]},{"path":[4,109,2,5],"span":[1931,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,109,2,5,4],"span":[1931,2,10]},{"path":[4,109,2,5,5],"span":[1931,11,16]},{"path":[4,109,2,5,1],"span":[1931,17,26]},{"path":[4,109,2,5,3],"span":[1931,29,30]},{"path":[4,109,2,6],"span":[1933,2,32]},{"path":[4,109,2,6,4],"span":[1933,2,10]},{"path":[4,109,2,6,5],"span":[1933,11,17]},{"path":[4,109,2,6,1],"span":[1933,18,27]},{"path":[4,109,2,6,3],"span":[1933,30,31]},{"path":[4,109,2,7],"span":[1934,2,31]},{"path":[4,109,2,7,4],"span":[1934,2,10]},{"path":[4,109,2,7,5],"span":[1934,11,17]},{"path":[4,109,2,7,1],"span":[1934,18,26]},{"path":[4,109,2,7,3],"span":[1934,29,30]},{"path":[4,109,2,8],"span":[1935,2,32]},{"path":[4,109,2,8,4],"span":[1935,2,10]},{"path":[4,109,2,8,5],"span":[1935,11,17]},{"path":[4,109,2,8,1],"span":[1935,18,27]},{"path":[4,109,2,8,3],"span":[1935,30,31]},{"path":[4,109,2,9],"span":[1936,2,28]},{"path":[4,109,2,9,4],"span":[1936,2,10]},{"path":[4,109,2,9,5],"span":[1936,11,17]},{"path":[4,109,2,9,1],"span":[1936,18,22]},{"path":[4,109,2,9,3],"span":[1936,25,27]},{"path":[4,109,2,10],"span":[1937,2,31]},{"path":[4,109,2,10,4],"span":[1937,2,10]},{"path":[4,109,2,10,5],"span":[1937,11,17]},{"path":[4,109,2,10,1],"span":[1937,18,25]},{"path":[4,109,2,10,3],"span":[1937,28,30]},{"path":[4,109,2,11],"span":[1938,2,34]},{"path":[4,109,2,11,4],"span":[1938,2,10]},{"path":[4,109,2,11,5],"span":[1938,11,17]},{"path":[4,109,2,11,1],"span":[1938,18,28]},{"path":[4,109,2,11,3],"span":[1938,31,33]},{"path":[4,109,2,12],"span":[1939,2,31]},{"path":[4,109,2,12,4],"span":[1939,2,10]},{"path":[4,109,2,12,5],"span":[1939,11,17]},{"path":[4,109,2,12,1],"span":[1939,18,25]},{"path":[4,109,2,12,3],"span":[1939,28,30]},{"path":[4,109,2,13],"span":[1940,2,29]},{"path":[4,109,2,13,4],"span":[1940,2,10]},{"path":[4,109,2,13,5],"span":[1940,11,17]},{"path":[4,109,2,13,1],"span":[1940,18,23]},{"path":[4,109,2,13,3],"span":[1940,26,28]},{"path":[4,109,2,14],"span":[1941,2,28]},{"path":[4,109,2,14,4],"span":[1941,2,10]},{"path":[4,109,2,14,5],"span":[1941,11,17]},{"path":[4,109,2,14,1],"span":[1941,18,22]},{"path":[4,109,2,14,3],"span":[1941,25,27]},{"path":[4,109,2,15],"span":[1942,2,28]},{"path":[4,109,2,15,4],"span":[1942,2,10]},{"path":[4,109,2,15,5],"span":[1942,11,17]},{"path":[4,109,2,15,1],"span":[1942,18,22]},{"path":[4,109,2,15,3],"span":[1942,25,27]},{"path":[4,109,2,16],"span":[1944,2,27]},{"path":[4,109,2,16,4],"span":[1944,2,10]},{"path":[4,109,2,16,5],"span":[1944,11,17]},{"path":[4,109,2,16,1],"span":[1944,18,21]},{"path":[4,109,2,16,3],"span":[1944,24,26]},{"path":[4,109,2,17],"span":[1946,2,23]},{"path":[4,109,2,17,6],"span":[1946,2,13]},{"path":[4,109,2,17,1],"span":[1946,14,17]},{"path":[4,109,2,17,3],"span":[1946,20,22]},{"path":[4,109,2,18],"span":[1947,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,109,2,18,4],"span":[1947,2,10]},{"path":[4,109,2,18,5],"span":[1947,11,17]},{"path":[4,109,2,18,1],"span":[1947,18,26]},{"path":[4,109,2,18,3],"span":[1947,29,31]},{"path":[4,109,2,19],"span":[1948,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,109,2,19,4],"span":[1948,2,10]},{"path":[4,109,2,19,5],"span":[1948,11,17]},{"path":[4,109,2,19,1],"span":[1948,18,26]},{"path":[4,109,2,19,3],"span":[1948,29,31]},{"path":[4,109,2,20],"span":[1951,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,109,2,20,4],"span":[1951,2,10]},{"path":[4,109,2,20,6],"span":[1951,11,23]},{"path":[4,109,2,20,1],"span":[1951,24,37]},{"path":[4,109,2,20,3],"span":[1951,40,42]},{"path":[4,109,2,21],"span":[1953,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,109,2,21,4],"span":[1953,2,10]},{"path":[4,109,2,21,6],"span":[1953,11,26]},{"path":[4,109,2,21,1],"span":[1953,27,43]},{"path":[4,109,2,21,3],"span":[1953,46,48]},{"path":[4,109,2,22],"span":[1955,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,109,2,22,4],"span":[1955,2,10]},{"path":[4,109,2,22,6],"span":[1955,11,26]},{"path":[4,109,2,22,1],"span":[1955,27,41]},{"path":[4,109,2,22,3],"span":[1955,44,46]},{"path":[4,110],"span":[1961,0,1975,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,110,1],"span":[1961,8,19]},{"path":[4,110,2,0],"span":[1962,2,18]},{"path":[4,110,2,0,5],"span":[1962,2,8]},{"path":[4,110,2,0,1],"span":[1962,9,13]},{"path":[4,110,2,0,3],"span":[1962,16,17]},{"path":[4,110,2,1],"span":[1964,2,29]},{"path":[4,110,2,1,4],"span":[1964,2,10]},{"path":[4,110,2,1,5],"span":[1964,11,17]},{"path":[4,110,2,1,1],"span":[1964,18,24]},{"path":[4,110,2,1,3],"span":[1964,27,28]},{"path":[4,110,2,2],"span":[1965,2,30]},{"path":[4,110,2,2,4],"span":[1965,2,10]},{"path":[4,110,2,2,5],"span":[1965,11,17]},{"path":[4,110,2,2,1],"span":[1965,18,25]},{"path":[4,110,2,2,3],"span":[1965,28,29]},{"path":[4,110,2,3],"span":[1966,2,27]},{"path":[4,110,2,3,4],"span":[1966,2,10]},{"path":[4,110,2,3,5],"span":[1966,11,17]},{"path":[4,110,2,3,1],"span":[1966,18,22]},{"path":[4,110,2,3,3],"span":[1966,25,26]},{"path":[4,110,2,4],"span":[1967,2,31]},{"path":[4,110,2,4,4],"span":[1967,2,10]},{"path":[4,110,2,4,5],"span":[1967,11,17]},{"path":[4,110,2,4,1],"span":[1967,18,26]},{"path":[4,110,2,4,3],"span":[1967,29,30]},{"path":[4,110,2,5],"span":[1968,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,110,2,5,4],"span":[1968,2,10]},{"path":[4,110,2,5,5],"span":[1968,11,17]},{"path":[4,110,2,5,1],"span":[1968,18,22]},{"path":[4,110,2,5,3],"span":[1968,25,26]},{"path":[4,110,2,6],"span":[1969,2,54]},{"path":[4,110,2,6,4],"span":[1969,2,10]},{"path":[4,110,2,6,6],"span":[1969,11,36]},{"path":[4,110,2,6,1],"span":[1969,37,49]},{"path":[4,110,2,6,3],"span":[1969,52,53]},{"path":[4,110,2,7],"span":[1970,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,110,2,7,4],"span":[1970,2,10]},{"path":[4,110,2,7,5],"span":[1970,11,17]},{"path":[4,110,2,7,1],"span":[1970,18,29]},{"path":[4,110,2,7,3],"span":[1970,32,33]},{"path":[4,110,2,8],"span":[1972,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,110,2,8,4],"span":[1972,2,10]},{"path":[4,110,2,8,5],"span":[1972,11,17]},{"path":[4,110,2,8,1],"span":[1972,18,23]},{"path":[4,110,2,8,3],"span":[1972,26,27]},{"path":[4,110,2,9],"span":[1974,2,37]},{"path":[4,110,2,9,4],"span":[1974,2,10]},{"path":[4,110,2,9,5],"span":[1974,11,15]},{"path":[4,110,2,9,1],"span":[1974,16,31]},{"path":[4,110,2,9,3],"span":[1974,34,36]},{"path":[4,111],"span":[1979,0,2013,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,111,1],"span":[1979,8,20]},{"path":[4,111,2,0],"span":[1980,2,16]},{"path":[4,111,2,0,5],"span":[1980,2,7]},{"path":[4,111,2,0,1],"span":[1980,9,11]},{"path":[4,111,2,0,3],"span":[1980,14,15]},{"path":[4,111,2,1],"span":[1981,2,23]},{"path":[4,111,2,1,5],"span":[1981,2,8]},{"path":[4,111,2,1,1],"span":[1981,9,18]},{"path":[4,111,2,1,3],"span":[1981,21,22]},{"path":[4,111,2,2],"span":[1983,2,32]},{"path":[4,111,2,2,4],"span":[1983,2,10]},{"path":[4,111,2,2,5],"span":[1983,11,16]},{"path":[4,111,2,2,1],"span":[1983,17,26]},{"path":[4,111,2,2,3],"span":[1983,29,31]},{"path":[4,111,2,3],"span":[1984,2,58]},{"path":[4,111,2,3,4],"span":[1984,2,10]},{"path":[4,111,2,3,6],"span":[1984,11,36]},{"path":[4,111,2,3,1],"span":[1984,37,53]},{"path":[4,111,2,3,3],"span":[1984,56,57]},{"path":[4,111,2,4],"span":[1986,2,35]},{"path":[4,111,2,4,4],"span":[1986,2,10]},{"path":[4,111,2,4,5],"span":[1986,11,17]},{"path":[4,111,2,4,1],"span":[1986,18,30]},{"path":[4,111,2,4,3],"span":[1986,33,34]},{"path":[4,111,2,5],"span":[1987,2,37]},{"path":[4,111,2,5,4],"span":[1987,2,10]},{"path":[4,111,2,5,5],"span":[1987,11,17]},{"path":[4,111,2,5,1],"span":[1987,18,32]},{"path":[4,111,2,5,3],"span":[1987,35,36]},{"path":[4,111,2,6],"span":[1988,2,39]},{"path":[4,111,2,6,4],"span":[1988,2,10]},{"path":[4,111,2,6,5],"span":[1988,11,17]},{"path":[4,111,2,6,1],"span":[1988,18,34]},{"path":[4,111,2,6,3],"span":[1988,37,38]},{"path":[4,111,2,7],"span":[1989,2,35]},{"path":[4,111,2,7,4],"span":[1989,2,10]},{"path":[4,111,2,7,5],"span":[1989,11,17]},{"path":[4,111,2,7,1],"span":[1989,18,30]},{"path":[4,111,2,7,3],"span":[1989,33,34]},{"path":[4,111,2,8],"span":[1990,2,43]},{"path":[4,111,2,8,4],"span":[1990,2,10]},{"path":[4,111,2,8,5],"span":[1990,11,17]},{"path":[4,111,2,8,1],"span":[1990,18,37]},{"path":[4,111,2,8,3],"span":[1990,40,42]},{"path":[4,111,2,9],"span":[1991,2,35]},{"path":[4,111,2,9,4],"span":[1991,2,10]},{"path":[4,111,2,9,5],"span":[1991,11,17]},{"path":[4,111,2,9,1],"span":[1991,18,29]},{"path":[4,111,2,9,3],"span":[1991,32,34]},{"path":[4,111,2,10],"span":[1992,2,35]},{"path":[4,111,2,10,4],"span":[1992,2,10]},{"path":[4,111,2,10,5],"span":[1992,11,17]},{"path":[4,111,2,10,1],"span":[1992,18,29]},{"path":[4,111,2,10,3],"span":[1992,32,34]},{"path":[4,111,2,11],"span":[1993,2,37]},{"path":[4,111,2,11,4],"span":[1993,2,10]},{"path":[4,111,2,11,5],"span":[1993,11,17]},{"path":[4,111,2,11,1],"span":[1993,18,31]},{"path":[4,111,2,11,3],"span":[1993,34,36]},{"path":[4,111,2,12],"span":[1994,2,40]},{"path":[4,111,2,12,4],"span":[1994,2,10]},{"path":[4,111,2,12,5],"span":[1994,11,17]},{"path":[4,111,2,12,1],"span":[1994,18,34]},{"path":[4,111,2,12,3],"span":[1994,37,39]},{"path":[4,111,2,13],"span":[1995,2,39]},{"path":[4,111,2,13,4],"span":[1995,2,10]},{"path":[4,111,2,13,5],"span":[1995,11,17]},{"path":[4,111,2,13,1],"span":[1995,18,33]},{"path":[4,111,2,13,3],"span":[1995,36,38]},{"path":[4,111,2,14],"span":[1996,2,36]},{"path":[4,111,2,14,4],"span":[1996,2,10]},{"path":[4,111,2,14,5],"span":[1996,11,17]},{"path":[4,111,2,14,1],"span":[1996,18,30]},{"path":[4,111,2,14,3],"span":[1996,33,35]},{"path":[4,111,2,15],"span":[1997,2,43]},{"path":[4,111,2,15,4],"span":[1997,2,10]},{"path":[4,111,2,15,5],"span":[1997,11,17]},{"path":[4,111,2,15,1],"span":[1997,18,37]},{"path":[4,111,2,15,3],"span":[1997,40,42]},{"path":[4,111,2,16],"span":[1998,2,37]},{"path":[4,111,2,16,4],"span":[1998,2,10]},{"path":[4,111,2,16,5],"span":[1998,11,17]},{"path":[4,111,2,16,1],"span":[1998,18,31]},{"path":[4,111,2,16,3],"span":[1998,34,36]},{"path":[4,111,2,17],"span":[1999,2,40]},{"path":[4,111,2,17,4],"span":[1999,2,10]},{"path":[4,111,2,17,5],"span":[1999,11,17]},{"path":[4,111,2,17,1],"span":[1999,18,34]},{"path":[4,111,2,17,3],"span":[1999,37,39]},{"path":[4,111,2,18],"span":[2000,2,41]},{"path":[4,111,2,18,4],"span":[2000,2,10]},{"path":[4,111,2,18,5],"span":[2000,11,17]},{"path":[4,111,2,18,1],"span":[2000,18,35]},{"path":[4,111,2,18,3],"span":[2000,38,40]},{"path":[4,111,2,19],"span":[2001,2,39]},{"path":[4,111,2,19,4],"span":[2001,2,10]},{"path":[4,111,2,19,5],"span":[2001,11,17]},{"path":[4,111,2,19,1],"span":[2001,18,33]},{"path":[4,111,2,19,3],"span":[2001,36,38]},{"path":[4,111,2,20],"span":[2002,2,41]},{"path":[4,111,2,20,4],"span":[2002,2,10]},{"path":[4,111,2,20,5],"span":[2002,11,17]},{"path":[4,111,2,20,1],"span":[2002,18,35]},{"path":[4,111,2,20,3],"span":[2002,38,40]},{"path":[4,111,2,21],"span":[2003,2,38]},{"path":[4,111,2,21,4],"span":[2003,2,10]},{"path":[4,111,2,21,5],"span":[2003,11,17]},{"path":[4,111,2,21,1],"span":[2003,18,32]},{"path":[4,111,2,21,3],"span":[2003,35,37]},{"path":[4,111,2,22],"span":[2005,2,36]},{"path":[4,111,2,22,4],"span":[2005,2,10]},{"path":[4,111,2,22,5],"span":[2005,11,15]},{"path":[4,111,2,22,1],"span":[2005,16,30]},{"path":[4,111,2,22,3],"span":[2005,33,35]},{"path":[4,111,2,23],"span":[2006,2,36]},{"path":[4,111,2,23,4],"span":[2006,2,10]},{"path":[4,111,2,23,5],"span":[2006,11,15]},{"path":[4,111,2,23,1],"span":[2006,16,30]},{"path":[4,111,2,23,3],"span":[2006,33,35]},{"path":[4,111,2,24],"span":[2007,2,36]},{"path":[4,111,2,24,4],"span":[2007,2,10]},{"path":[4,111,2,24,5],"span":[2007,11,15]},{"path":[4,111,2,24,1],"span":[2007,16,30]},{"path":[4,111,2,24,3],"span":[2007,33,35]},{"path":[4,111,2,25],"span":[2008,2,38]},{"path":[4,111,2,25,4],"span":[2008,2,10]},{"path":[4,111,2,25,5],"span":[2008,11,15]},{"path":[4,111,2,25,1],"span":[2008,16,32]},{"path":[4,111,2,25,3],"span":[2008,35,37]},{"path":[4,111,2,26],"span":[2009,2,38]},{"path":[4,111,2,26,4],"span":[2009,2,10]},{"path":[4,111,2,26,5],"span":[2009,11,15]},{"path":[4,111,2,26,1],"span":[2009,16,32]},{"path":[4,111,2,26,3],"span":[2009,35,37]},{"path":[4,111,2,27],"span":[2010,2,38]},{"path":[4,111,2,27,4],"span":[2010,2,10]},{"path":[4,111,2,27,5],"span":[2010,11,15]},{"path":[4,111,2,27,1],"span":[2010,16,32]},{"path":[4,111,2,27,3],"span":[2010,35,37]},{"path":[4,111,2,28],"span":[2012,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,111,2,28,4],"span":[2012,2,10]},{"path":[4,111,2,28,5],"span":[2012,11,16]},{"path":[4,111,2,28,1],"span":[2012,17,28]},{"path":[4,111,2,28,3],"span":[2012,31,33]},{"path":[4,112],"span":[2015,0,2050,1]},{"path":[4,112,1],"span":[2015,8,20]},{"path":[4,112,2,0],"span":[2016,2,15]},{"path":[4,112,2,0,5],"span":[2016,2,7]},{"path":[4,112,2,0,1],"span":[2016,8,10]},{"path":[4,112,2,0,3],"span":[2016,13,14]},{"path":[4,112,2,1],"span":[2018,2,20]},{"path":[4,112,2,1,5],"span":[2018,2,7]},{"path":[4,112,2,1,1],"span":[2018,8,15]},{"path":[4,112,2,1,3],"span":[2018,18,19]},{"path":[4,112,2,2],"span":[2019,2,26]},{"path":[4,112,2,2,5],"span":[2019,2,8]},{"path":[4,112,2,2,1],"span":[2019,9,21]},{"path":[4,112,2,2,3],"span":[2019,24,25]},{"path":[4,112,2,3],"span":[2021,2,36]},{"path":[4,112,2,3,4],"span":[2021,2,10]},{"path":[4,112,2,3,5],"span":[2021,11,16]},{"path":[4,112,2,3,1],"span":[2021,17,31]},{"path":[4,112,2,3,3],"span":[2021,34,35]},{"path":[4,112,2,4],"span":[2022,2,40]},{"path":[4,112,2,4,4],"span":[2022,2,10]},{"path":[4,112,2,4,5],"span":[2022,11,17]},{"path":[4,112,2,4,1],"span":[2022,18,35]},{"path":[4,112,2,4,3],"span":[2022,38,39]},{"path":[4,112,2,5],"span":[2024,2,32]},{"path":[4,112,2,5,4],"span":[2024,2,10]},{"path":[4,112,2,5,5],"span":[2024,11,16]},{"path":[4,112,2,5,1],"span":[2024,17,26]},{"path":[4,112,2,5,3],"span":[2024,29,31]},{"path":[4,112,2,6],"span":[2025,2,31]},{"path":[4,112,2,6,4],"span":[2025,2,10]},{"path":[4,112,2,6,5],"span":[2025,11,15]},{"path":[4,112,2,6,1],"span":[2025,16,25]},{"path":[4,112,2,6,3],"span":[2025,28,30]},{"path":[4,112,2,7],"span":[2026,2,34]},{"path":[4,112,2,7,4],"span":[2026,2,10]},{"path":[4,112,2,7,5],"span":[2026,11,17]},{"path":[4,112,2,7,1],"span":[2026,18,28]},{"path":[4,112,2,7,3],"span":[2026,31,33]},{"path":[4,112,2,8],"span":[2027,2,31]},{"path":[4,112,2,8,4],"span":[2027,2,10]},{"path":[4,112,2,8,5],"span":[2027,11,17]},{"path":[4,112,2,8,1],"span":[2027,18,25]},{"path":[4,112,2,8,3],"span":[2027,28,30]},{"path":[4,112,2,9],"span":[2028,2,55]},{"path":[4,112,2,9,4],"span":[2028,2,10]},{"path":[4,112,2,9,6],"span":[2028,11,36]},{"path":[4,112,2,9,1],"span":[2028,37,49]},{"path":[4,112,2,9,3],"span":[2028,52,54]},{"path":[4,112,2,10],"span":[2029,2,52]},{"path":[4,112,2,10,4],"span":[2029,2,10]},{"path":[4,112,2,10,6],"span":[2029,11,36]},{"path":[4,112,2,10,1],"span":[2029,37,46]},{"path":[4,112,2,10,3],"span":[2029,49,51]},{"path":[4,112,2,11],"span":[2030,2,51]},{"path":[4,112,2,11,4],"span":[2030,2,10]},{"path":[4,112,2,11,6],"span":[2030,11,36]},{"path":[4,112,2,11,1],"span":[2030,37,45]},{"path":[4,112,2,11,3],"span":[2030,48,50]},{"path":[4,112,2,12],"span":[2031,2,43]},{"path":[4,112,2,12,4],"span":[2031,2,10]},{"path":[4,112,2,12,5],"span":[2031,11,17]},{"path":[4,112,2,12,1],"span":[2031,18,37]},{"path":[4,112,2,12,3],"span":[2031,40,42]},{"path":[4,112,2,13],"span":[2033,2,35]},{"path":[4,112,2,13,4],"span":[2033,2,10]},{"path":[4,112,2,13,5],"span":[2033,11,17]},{"path":[4,112,2,13,1],"span":[2033,18,29]},{"path":[4,112,2,13,3],"span":[2033,32,34]},{"path":[4,112,2,14],"span":[2034,2,37]},{"path":[4,112,2,14,4],"span":[2034,2,10]},{"path":[4,112,2,14,5],"span":[2034,11,17]},{"path":[4,112,2,14,1],"span":[2034,18,31]},{"path":[4,112,2,14,3],"span":[2034,34,36]},{"path":[4,112,2,15],"span":[2036,2,39]},{"path":[4,112,2,15,4],"span":[2036,2,10]},{"path":[4,112,2,15,5],"span":[2036,11,17]},{"path":[4,112,2,15,1],"span":[2036,18,33]},{"path":[4,112,2,15,3],"span":[2036,36,38]},{"path":[4,112,2,16],"span":[2037,2,43]},{"path":[4,112,2,16,4],"span":[2037,2,10]},{"path":[4,112,2,16,5],"span":[2037,11,17]},{"path":[4,112,2,16,1],"span":[2037,18,37]},{"path":[4,112,2,16,3],"span":[2037,40,42]},{"path":[4,112,2,17],"span":[2038,2,38]},{"path":[4,112,2,17,4],"span":[2038,2,10]},{"path":[4,112,2,17,5],"span":[2038,11,17]},{"path":[4,112,2,17,1],"span":[2038,18,32]},{"path":[4,112,2,17,3],"span":[2038,35,37]},{"path":[4,112,2,18],"span":[2039,2,38]},{"path":[4,112,2,18,4],"span":[2039,2,10]},{"path":[4,112,2,18,5],"span":[2039,11,17]},{"path":[4,112,2,18,1],"span":[2039,18,32]},{"path":[4,112,2,18,3],"span":[2039,35,37]},{"path":[4,112,2,19],"span":[2040,2,41]},{"path":[4,112,2,19,4],"span":[2040,2,10]},{"path":[4,112,2,19,5],"span":[2040,11,15]},{"path":[4,112,2,19,1],"span":[2040,18,35]},{"path":[4,112,2,19,3],"span":[2040,38,40]},{"path":[4,112,2,20],"span":[2041,2,42]},{"path":[4,112,2,20,4],"span":[2041,2,10]},{"path":[4,112,2,20,5],"span":[2041,11,17]},{"path":[4,112,2,20,1],"span":[2041,18,36]},{"path":[4,112,2,20,3],"span":[2041,39,41]},{"path":[4,112,2,21],"span":[2043,2,32]},{"path":[4,112,2,21,4],"span":[2043,2,10]},{"path":[4,112,2,21,5],"span":[2043,11,17]},{"path":[4,112,2,21,1],"span":[2043,18,26]},{"path":[4,112,2,21,3],"span":[2043,29,31]},{"path":[4,112,2,22],"span":[2045,2,33]},{"path":[4,112,2,22,4],"span":[2045,2,10]},{"path":[4,112,2,22,5],"span":[2045,11,16]},{"path":[4,112,2,22,1],"span":[2045,17,27]},{"path":[4,112,2,22,3],"span":[2045,30,32]},{"path":[4,112,2,23],"span":[2047,2,59]},{"path":[4,112,2,23,4],"span":[2047,2,10]},{"path":[4,112,2,23,6],"span":[2047,11,36]},{"path":[4,112,2,23,1],"span":[2047,37,53]},{"path":[4,112,2,23,3],"span":[2047,56,58]},{"path":[4,112,2,24],"span":[2049,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,112,2,24,4],"span":[2049,2,10]},{"path":[4,112,2,24,5],"span":[2049,11,16]},{"path":[4,112,2,24,1],"span":[2049,17,28]},{"path":[4,112,2,24,3],"span":[2049,31,33]},{"path":[4,113],"span":[2052,0,2085,1]},{"path":[4,113,1],"span":[2052,8,17]},{"path":[4,113,2,0],"span":[2053,2,15]},{"path":[4,113,2,0,5],"span":[2053,2,7]},{"path":[4,113,2,0,1],"span":[2053,8,10]},{"path":[4,113,2,0,3],"span":[2053,13,14]},{"path":[4,113,2,1],"span":[2055,2,21]},{"path":[4,113,2,1,5],"span":[2055,2,8]},{"path":[4,113,2,1,1],"span":[2055,9,16]},{"path":[4,113,2,1,3],"span":[2055,19,20]},{"path":[4,113,2,2],"span":[2057,2,33]},{"path":[4,113,2,2,4],"span":[2057,2,10]},{"path":[4,113,2,2,5],"span":[2057,11,17]},{"path":[4,113,2,2,1],"span":[2057,18,28]},{"path":[4,113,2,2,3],"span":[2057,31,32]},{"path":[4,113,2,3],"span":[2058,2,32]},{"path":[4,113,2,3,4],"span":[2058,2,10]},{"path":[4,113,2,3,5],"span":[2058,11,17]},{"path":[4,113,2,3,1],"span":[2058,18,26]},{"path":[4,113,2,3,3],"span":[2058,29,31]},{"path":[4,113,2,4],"span":[2059,2,38]},{"path":[4,113,2,4,4],"span":[2059,2,10]},{"path":[4,113,2,4,5],"span":[2059,11,17]},{"path":[4,113,2,4,1],"span":[2059,18,33]},{"path":[4,113,2,4,3],"span":[2059,36,37]},{"path":[4,113,2,5],"span":[2061,2,33]},{"path":[4,113,2,5,4],"span":[2061,2,10]},{"path":[4,113,2,5,5],"span":[2061,11,16]},{"path":[4,113,2,5,1],"span":[2061,17,28]},{"path":[4,113,2,5,3],"span":[2061,31,32]},{"path":[4,113,2,6],"span":[2062,2,29]},{"path":[4,113,2,6,4],"span":[2062,2,10]},{"path":[4,113,2,6,5],"span":[2062,11,16]},{"path":[4,113,2,6,1],"span":[2062,17,24]},{"path":[4,113,2,6,3],"span":[2062,27,28]},{"path":[4,113,2,7],"span":[2063,2,31]},{"path":[4,113,2,7,4],"span":[2063,2,10]},{"path":[4,113,2,7,5],"span":[2063,11,16]},{"path":[4,113,2,7,1],"span":[2063,17,26]},{"path":[4,113,2,7,3],"span":[2063,29,30]},{"path":[4,113,2,8],"span":[2065,2,54]},{"path":[4,113,2,8,4],"span":[2065,2,10]},{"path":[4,113,2,8,6],"span":[2065,11,36]},{"path":[4,113,2,8,1],"span":[2065,37,49]},{"path":[4,113,2,8,3],"span":[2065,52,53]},{"path":[4,113,2,9],"span":[2066,2,51]},{"path":[4,113,2,9,4],"span":[2066,2,10]},{"path":[4,113,2,9,6],"span":[2066,11,36]},{"path":[4,113,2,9,1],"span":[2066,37,45]},{"path":[4,113,2,9,3],"span":[2066,48,50]},{"path":[4,113,2,10],"span":[2067,2,51]},{"path":[4,113,2,10,4],"span":[2067,2,10]},{"path":[4,113,2,10,6],"span":[2067,11,36]},{"path":[4,113,2,10,1],"span":[2067,37,45]},{"path":[4,113,2,10,3],"span":[2067,48,50]},{"path":[4,113,2,11],"span":[2068,2,52]},{"path":[4,113,2,11,4],"span":[2068,2,10]},{"path":[4,113,2,11,6],"span":[2068,11,36]},{"path":[4,113,2,11,1],"span":[2068,37,46]},{"path":[4,113,2,11,3],"span":[2068,49,51]},{"path":[4,113,2,12],"span":[2069,2,43]},{"path":[4,113,2,12,4],"span":[2069,2,10]},{"path":[4,113,2,12,5],"span":[2069,11,17]},{"path":[4,113,2,12,1],"span":[2069,18,37]},{"path":[4,113,2,12,3],"span":[2069,40,42]},{"path":[4,113,2,13],"span":[2070,2,38]},{"path":[4,113,2,13,4],"span":[2070,2,10]},{"path":[4,113,2,13,5],"span":[2070,11,17]},{"path":[4,113,2,13,1],"span":[2070,18,32]},{"path":[4,113,2,13,3],"span":[2070,35,37]},{"path":[4,113,2,14],"span":[2071,2,40]},{"path":[4,113,2,14,4],"span":[2071,2,10]},{"path":[4,113,2,14,5],"span":[2071,11,17]},{"path":[4,113,2,14,1],"span":[2071,18,34]},{"path":[4,113,2,14,3],"span":[2071,37,39]},{"path":[4,113,2,15],"span":[2072,2,36]},{"path":[4,113,2,15,4],"span":[2072,2,10]},{"path":[4,113,2,15,5],"span":[2072,11,17]},{"path":[4,113,2,15,1],"span":[2072,18,30]},{"path":[4,113,2,15,3],"span":[2072,33,35]},{"path":[4,113,2,16],"span":[2073,2,43]},{"path":[4,113,2,16,4],"span":[2073,2,10]},{"path":[4,113,2,16,5],"span":[2073,11,17]},{"path":[4,113,2,16,1],"span":[2073,18,37]},{"path":[4,113,2,16,3],"span":[2073,40,42]},{"path":[4,113,2,17],"span":[2074,2,35]},{"path":[4,113,2,17,4],"span":[2074,2,10]},{"path":[4,113,2,17,5],"span":[2074,11,17]},{"path":[4,113,2,17,1],"span":[2074,18,29]},{"path":[4,113,2,17,3],"span":[2074,32,34]},{"path":[4,113,2,18],"span":[2075,2,35]},{"path":[4,113,2,18,4],"span":[2075,2,10]},{"path":[4,113,2,18,5],"span":[2075,11,17]},{"path":[4,113,2,18,1],"span":[2075,18,29]},{"path":[4,113,2,18,3],"span":[2075,32,34]},{"path":[4,113,2,19],"span":[2076,2,37]},{"path":[4,113,2,19,4],"span":[2076,2,10]},{"path":[4,113,2,19,5],"span":[2076,11,17]},{"path":[4,113,2,19,1],"span":[2076,18,31]},{"path":[4,113,2,19,3],"span":[2076,34,36]},{"path":[4,113,2,20],"span":[2077,2,40]},{"path":[4,113,2,20,4],"span":[2077,2,10]},{"path":[4,113,2,20,5],"span":[2077,11,17]},{"path":[4,113,2,20,1],"span":[2077,18,34]},{"path":[4,113,2,20,3],"span":[2077,37,39]},{"path":[4,113,2,21],"span":[2078,2,39]},{"path":[4,113,2,21,4],"span":[2078,2,10]},{"path":[4,113,2,21,5],"span":[2078,11,17]},{"path":[4,113,2,21,1],"span":[2078,18,33]},{"path":[4,113,2,21,3],"span":[2078,36,38]},{"path":[4,113,2,22],"span":[2080,2,32]},{"path":[4,113,2,22,4],"span":[2080,2,10]},{"path":[4,113,2,22,5],"span":[2080,11,17]},{"path":[4,113,2,22,1],"span":[2080,18,26]},{"path":[4,113,2,22,3],"span":[2080,29,31]},{"path":[4,113,2,23],"span":[2082,2,59]},{"path":[4,113,2,23,4],"span":[2082,2,10]},{"path":[4,113,2,23,6],"span":[2082,11,36]},{"path":[4,113,2,23,1],"span":[2082,37,53]},{"path":[4,113,2,23,3],"span":[2082,56,58]},{"path":[4,113,2,24],"span":[2084,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,113,2,24,4],"span":[2084,2,10]},{"path":[4,113,2,24,5],"span":[2084,11,16]},{"path":[4,113,2,24,1],"span":[2084,17,28]},{"path":[4,113,2,24,3],"span":[2084,31,33]},{"path":[4,114],"span":[2087,0,2117,1]},{"path":[4,114,1],"span":[2087,8,23]},{"path":[4,114,2,0],"span":[2088,2,15]},{"path":[4,114,2,0,5],"span":[2088,2,7]},{"path":[4,114,2,0,1],"span":[2088,8,10]},{"path":[4,114,2,0,3],"span":[2088,13,14]},{"path":[4,114,2,1],"span":[2089,2,21]},{"path":[4,114,2,1,5],"span":[2089,2,8]},{"path":[4,114,2,1,1],"span":[2089,9,16]},{"path":[4,114,2,1,3],"span":[2089,19,20]},{"path":[4,114,2,2],"span":[2091,2,33]},{"path":[4,114,2,2,4],"span":[2091,2,10]},{"path":[4,114,2,2,5],"span":[2091,11,17]},{"path":[4,114,2,2,1],"span":[2091,18,28]},{"path":[4,114,2,2,3],"span":[2091,31,32]},{"path":[4,114,2,3],"span":[2092,2,36]},{"path":[4,114,2,3,4],"span":[2092,2,10]},{"path":[4,114,2,3,5],"span":[2092,11,17]},{"path":[4,114,2,3,1],"span":[2092,18,31]},{"path":[4,114,2,3,3],"span":[2092,34,35]},{"path":[4,114,2,4],"span":[2093,2,33]},{"path":[4,114,2,4,4],"span":[2093,2,10]},{"path":[4,114,2,4,5],"span":[2093,11,17]},{"path":[4,114,2,4,1],"span":[2093,18,28]},{"path":[4,114,2,4,3],"span":[2093,31,32]},{"path":[4,114,2,5],"span":[2094,2,30]},{"path":[4,114,2,5,4],"span":[2094,2,10]},{"path":[4,114,2,5,5],"span":[2094,11,17]},{"path":[4,114,2,5,1],"span":[2094,18,25]},{"path":[4,114,2,5,3],"span":[2094,28,29]},{"path":[4,114,2,6],"span":[2095,2,31]},{"path":[4,114,2,6,4],"span":[2095,2,10]},{"path":[4,114,2,6,5],"span":[2095,11,17]},{"path":[4,114,2,6,1],"span":[2095,18,26]},{"path":[4,114,2,6,3],"span":[2095,29,30]},{"path":[4,114,2,7],"span":[2097,2,29]},{"path":[4,114,2,7,4],"span":[2097,2,10]},{"path":[4,114,2,7,5],"span":[2097,11,16]},{"path":[4,114,2,7,1],"span":[2097,17,24]},{"path":[4,114,2,7,3],"span":[2097,27,28]},{"path":[4,114,2,8],"span":[2098,2,31]},{"path":[4,114,2,8,4],"span":[2098,2,10]},{"path":[4,114,2,8,5],"span":[2098,11,16]},{"path":[4,114,2,8,1],"span":[2098,17,26]},{"path":[4,114,2,8,3],"span":[2098,29,30]},{"path":[4,114,2,9],"span":[2099,2,32]},{"path":[4,114,2,9,4],"span":[2099,2,10]},{"path":[4,114,2,9,5],"span":[2099,11,16]},{"path":[4,114,2,9,1],"span":[2099,17,26]},{"path":[4,114,2,9,3],"span":[2099,29,31]},{"path":[4,114,2,10],"span":[2101,2,31]},{"path":[4,114,2,10,4],"span":[2101,2,10]},{"path":[4,114,2,10,5],"span":[2101,11,17]},{"path":[4,114,2,10,1],"span":[2101,18,25]},{"path":[4,114,2,10,3],"span":[2101,28,30]},{"path":[4,114,2,11],"span":[2102,2,35]},{"path":[4,114,2,11,4],"span":[2102,2,10]},{"path":[4,114,2,11,5],"span":[2102,11,17]},{"path":[4,114,2,11,1],"span":[2102,18,29]},{"path":[4,114,2,11,3],"span":[2102,32,34]},{"path":[4,114,2,12],"span":[2104,2,55]},{"path":[4,114,2,12,4],"span":[2104,2,10]},{"path":[4,114,2,12,6],"span":[2104,11,36]},{"path":[4,114,2,12,1],"span":[2104,37,49]},{"path":[4,114,2,12,3],"span":[2104,52,54]},{"path":[4,114,2,13],"span":[2105,2,51]},{"path":[4,114,2,13,4],"span":[2105,2,10]},{"path":[4,114,2,13,6],"span":[2105,11,36]},{"path":[4,114,2,13,1],"span":[2105,37,45]},{"path":[4,114,2,13,3],"span":[2105,48,50]},{"path":[4,114,2,14],"span":[2106,2,51]},{"path":[4,114,2,14,4],"span":[2106,2,10]},{"path":[4,114,2,14,6],"span":[2106,11,36]},{"path":[4,114,2,14,1],"span":[2106,37,45]},{"path":[4,114,2,14,3],"span":[2106,48,50]},{"path":[4,114,2,15],"span":[2107,2,52]},{"path":[4,114,2,15,4],"span":[2107,2,10]},{"path":[4,114,2,15,6],"span":[2107,11,36]},{"path":[4,114,2,15,1],"span":[2107,37,46]},{"path":[4,114,2,15,3],"span":[2107,49,51]},{"path":[4,114,2,16],"span":[2108,2,43]},{"path":[4,114,2,16,4],"span":[2108,2,10]},{"path":[4,114,2,16,5],"span":[2108,11,17]},{"path":[4,114,2,16,1],"span":[2108,18,37]},{"path":[4,114,2,16,3],"span":[2108,40,42]},{"path":[4,114,2,17],"span":[2110,2,33]},{"path":[4,114,2,17,4],"span":[2110,2,10]},{"path":[4,114,2,17,5],"span":[2110,11,15]},{"path":[4,114,2,17,1],"span":[2110,16,27]},{"path":[4,114,2,17,3],"span":[2110,30,32]},{"path":[4,114,2,18],"span":[2111,2,37]},{"path":[4,114,2,18,4],"span":[2111,2,10]},{"path":[4,114,2,18,5],"span":[2111,11,15]},{"path":[4,114,2,18,1],"span":[2111,16,31]},{"path":[4,114,2,18,3],"span":[2111,34,36]},{"path":[4,114,2,19],"span":[2112,2,37]},{"path":[4,114,2,19,4],"span":[2112,2,10]},{"path":[4,114,2,19,5],"span":[2112,11,15]},{"path":[4,114,2,19,1],"span":[2112,16,31]},{"path":[4,114,2,19,3],"span":[2112,34,36]},{"path":[4,114,2,20],"span":[2114,2,59]},{"path":[4,114,2,20,4],"span":[2114,2,10]},{"path":[4,114,2,20,6],"span":[2114,11,36]},{"path":[4,114,2,20,1],"span":[2114,37,53]},{"path":[4,114,2,20,3],"span":[2114,56,58]},{"path":[4,114,2,21],"span":[2116,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,114,2,21,4],"span":[2116,2,10]},{"path":[4,114,2,21,5],"span":[2116,11,16]},{"path":[4,114,2,21,1],"span":[2116,17,28]},{"path":[4,114,2,21,3],"span":[2116,31,34]},{"path":[4,115],"span":[2119,0,2175,1]},{"path":[4,115,1],"span":[2119,8,22]},{"path":[4,115,2,0],"span":[2120,2,16]},{"path":[4,115,2,0,5],"span":[2120,2,7]},{"path":[4,115,2,0,1],"span":[2120,9,11]},{"path":[4,115,2,0,3],"span":[2120,14,15]},{"path":[4,115,2,1],"span":[2122,2,19]},{"path":[4,115,2,1,5],"span":[2122,2,8]},{"path":[4,115,2,1,1],"span":[2122,9,14]},{"path":[4,115,2,1,3],"span":[2122,17,18]},{"path":[4,115,2,2],"span":[2123,2,32]},{"path":[4,115,2,2,4],"span":[2123,2,10]},{"path":[4,115,2,2,5],"span":[2123,11,17]},{"path":[4,115,2,2,1],"span":[2123,18,27]},{"path":[4,115,2,2,3],"span":[2123,30,31]},{"path":[4,115,2,3],"span":[2124,2,29]},{"path":[4,115,2,3,4],"span":[2124,2,10]},{"path":[4,115,2,3,5],"span":[2124,11,16]},{"path":[4,115,2,3,1],"span":[2124,17,24]},{"path":[4,115,2,3,3],"span":[2124,27,28]},{"path":[4,115,2,4],"span":[2126,2,31]},{"path":[4,115,2,4,4],"span":[2126,2,10]},{"path":[4,115,2,4,5],"span":[2126,11,16]},{"path":[4,115,2,4,1],"span":[2126,17,26]},{"path":[4,115,2,4,3],"span":[2126,29,30]},{"path":[4,115,2,5],"span":[2127,2,30]},{"path":[4,115,2,5,4],"span":[2127,2,10]},{"path":[4,115,2,5,5],"span":[2127,11,15]},{"path":[4,115,2,5,1],"span":[2127,16,25]},{"path":[4,115,2,5,3],"span":[2127,28,29]},{"path":[4,115,2,6],"span":[2128,2,36]},{"path":[4,115,2,6,4],"span":[2128,2,10]},{"path":[4,115,2,6,5],"span":[2128,11,17]},{"path":[4,115,2,6,1],"span":[2128,18,31]},{"path":[4,115,2,6,3],"span":[2128,34,35]},{"path":[4,115,2,7],"span":[2129,2,35]},{"path":[4,115,2,7,4],"span":[2129,2,10]},{"path":[4,115,2,7,5],"span":[2129,11,17]},{"path":[4,115,2,7,1],"span":[2129,18,30]},{"path":[4,115,2,7,3],"span":[2129,33,34]},{"path":[4,115,2,8],"span":[2131,2,33]},{"path":[4,115,2,8,4],"span":[2131,2,10]},{"path":[4,115,2,8,5],"span":[2131,11,17]},{"path":[4,115,2,8,1],"span":[2131,18,27]},{"path":[4,115,2,8,3],"span":[2131,30,32]},{"path":[4,115,2,9],"span":[2132,2,38]},{"path":[4,115,2,9,4],"span":[2132,2,10]},{"path":[4,115,2,9,5],"span":[2132,11,17]},{"path":[4,115,2,9,1],"span":[2132,18,32]},{"path":[4,115,2,9,3],"span":[2132,35,37]},{"path":[4,115,2,10],"span":[2133,2,36]},{"path":[4,115,2,10,4],"span":[2133,2,10]},{"path":[4,115,2,10,5],"span":[2133,11,17]},{"path":[4,115,2,10,1],"span":[2133,18,30]},{"path":[4,115,2,10,3],"span":[2133,33,35]},{"path":[4,115,2,11],"span":[2134,2,40]},{"path":[4,115,2,11,4],"span":[2134,2,10]},{"path":[4,115,2,11,5],"span":[2134,11,17]},{"path":[4,115,2,11,1],"span":[2134,18,34]},{"path":[4,115,2,11,3],"span":[2134,37,39]},{"path":[4,115,2,12],"span":[2135,2,31]},{"path":[4,115,2,12,4],"span":[2135,2,10]},{"path":[4,115,2,12,5],"span":[2135,11,17]},{"path":[4,115,2,12,1],"span":[2135,18,25]},{"path":[4,115,2,12,3],"span":[2135,28,30]},{"path":[4,115,2,13],"span":[2136,2,36]},{"path":[4,115,2,13,4],"span":[2136,2,10]},{"path":[4,115,2,13,5],"span":[2136,11,17]},{"path":[4,115,2,13,1],"span":[2136,18,30]},{"path":[4,115,2,13,3],"span":[2136,33,35]},{"path":[4,115,2,14],"span":[2137,2,35]},{"path":[4,115,2,14,4],"span":[2137,2,10]},{"path":[4,115,2,14,5],"span":[2137,11,16]},{"path":[4,115,2,14,1],"span":[2137,17,29]},{"path":[4,115,2,14,3],"span":[2137,32,34]},{"path":[4,115,2,15],"span":[2138,2,29]},{"path":[4,115,2,15,4],"span":[2138,2,10]},{"path":[4,115,2,15,5],"span":[2138,11,17]},{"path":[4,115,2,15,1],"span":[2138,18,23]},{"path":[4,115,2,15,3],"span":[2138,26,28]},{"path":[4,115,2,16],"span":[2139,2,33]},{"path":[4,115,2,16,4],"span":[2139,2,10]},{"path":[4,115,2,16,5],"span":[2139,11,17]},{"path":[4,115,2,16,1],"span":[2139,18,27]},{"path":[4,115,2,16,3],"span":[2139,30,32]},{"path":[4,115,2,17],"span":[2140,2,32]},{"path":[4,115,2,17,4],"span":[2140,2,10]},{"path":[4,115,2,17,5],"span":[2140,11,17]},{"path":[4,115,2,17,1],"span":[2140,18,26]},{"path":[4,115,2,17,3],"span":[2140,29,31]},{"path":[4,115,2,18],"span":[2141,2,35]},{"path":[4,115,2,18,4],"span":[2141,2,10]},{"path":[4,115,2,18,5],"span":[2141,11,17]},{"path":[4,115,2,18,1],"span":[2141,18,29]},{"path":[4,115,2,18,3],"span":[2141,32,34]},{"path":[4,115,2,19],"span":[2143,2,36]},{"path":[4,115,2,19,4],"span":[2143,2,10]},{"path":[4,115,2,19,5],"span":[2143,11,17]},{"path":[4,115,2,19,1],"span":[2143,18,30]},{"path":[4,115,2,19,3],"span":[2143,33,35]},{"path":[4,115,2,20],"span":[2144,2,38]},{"path":[4,115,2,20,4],"span":[2144,2,10]},{"path":[4,115,2,20,5],"span":[2144,11,16]},{"path":[4,115,2,20,1],"span":[2144,17,32]},{"path":[4,115,2,20,3],"span":[2144,35,37]},{"path":[4,115,2,21],"span":[2145,2,47]},{"path":[4,115,2,21,4],"span":[2145,2,10]},{"path":[4,115,2,21,5],"span":[2145,11,16]},{"path":[4,115,2,21,1],"span":[2145,17,41]},{"path":[4,115,2,21,3],"span":[2145,44,46]},{"path":[4,115,2,22],"span":[2146,2,30]},{"path":[4,115,2,22,4],"span":[2146,2,10]},{"path":[4,115,2,22,5],"span":[2146,11,16]},{"path":[4,115,2,22,1],"span":[2146,17,24]},{"path":[4,115,2,22,3],"span":[2146,27,29]},{"path":[4,115,2,23],"span":[2147,2,29]},{"path":[4,115,2,23,4],"span":[2147,2,10]},{"path":[4,115,2,23,5],"span":[2147,11,16]},{"path":[4,115,2,23,1],"span":[2147,17,23]},{"path":[4,115,2,23,3],"span":[2147,26,28]},{"path":[4,115,2,24],"span":[2148,2,29]},{"path":[4,115,2,24,4],"span":[2148,2,10]},{"path":[4,115,2,24,5],"span":[2148,11,16]},{"path":[4,115,2,24,1],"span":[2148,17,23]},{"path":[4,115,2,24,3],"span":[2148,26,28]},{"path":[4,115,2,25],"span":[2149,2,36]},{"path":[4,115,2,25,4],"span":[2149,2,10]},{"path":[4,115,2,25,5],"span":[2149,11,17]},{"path":[4,115,2,25,1],"span":[2149,18,30]},{"path":[4,115,2,25,3],"span":[2149,33,35]},{"path":[4,115,2,26],"span":[2150,2,39]},{"path":[4,115,2,26,4],"span":[2150,2,10]},{"path":[4,115,2,26,5],"span":[2150,11,16]},{"path":[4,115,2,26,1],"span":[2150,17,33]},{"path":[4,115,2,26,3],"span":[2150,36,38]},{"path":[4,115,2,27],"span":[2151,2,44]},{"path":[4,115,2,27,4],"span":[2151,2,10]},{"path":[4,115,2,27,5],"span":[2151,11,17]},{"path":[4,115,2,27,1],"span":[2151,18,38]},{"path":[4,115,2,27,3],"span":[2151,41,43]},{"path":[4,115,2,28],"span":[2153,2,36]},{"path":[4,115,2,28,4],"span":[2153,2,10]},{"path":[4,115,2,28,5],"span":[2153,11,17]},{"path":[4,115,2,28,1],"span":[2153,18,30]},{"path":[4,115,2,28,3],"span":[2153,33,35]},{"path":[4,115,2,29],"span":[2154,2,37]},{"path":[4,115,2,29,4],"span":[2154,2,10]},{"path":[4,115,2,29,5],"span":[2154,11,16]},{"path":[4,115,2,29,1],"span":[2154,17,31]},{"path":[4,115,2,29,3],"span":[2154,34,36]},{"path":[4,115,2,30],"span":[2155,2,42]},{"path":[4,115,2,30,4],"span":[2155,2,10]},{"path":[4,115,2,30,5],"span":[2155,11,17]},{"path":[4,115,2,30,1],"span":[2155,18,36]},{"path":[4,115,2,30,3],"span":[2155,39,41]},{"path":[4,115,2,31],"span":[2156,2,38]},{"path":[4,115,2,31,4],"span":[2156,2,10]},{"path":[4,115,2,31,5],"span":[2156,11,17]},{"path":[4,115,2,31,1],"span":[2156,18,32]},{"path":[4,115,2,31,3],"span":[2156,35,37]},{"path":[4,115,2,32],"span":[2157,2,42]},{"path":[4,115,2,32,4],"span":[2157,2,10]},{"path":[4,115,2,32,5],"span":[2157,11,17]},{"path":[4,115,2,32,1],"span":[2157,18,36]},{"path":[4,115,2,32,3],"span":[2157,39,41]},{"path":[4,115,2,33],"span":[2158,2,39]},{"path":[4,115,2,33,4],"span":[2158,2,10]},{"path":[4,115,2,33,5],"span":[2158,11,17]},{"path":[4,115,2,33,1],"span":[2158,18,33]},{"path":[4,115,2,33,3],"span":[2158,36,38]},{"path":[4,115,2,34],"span":[2159,2,34]},{"path":[4,115,2,34,4],"span":[2159,2,10]},{"path":[4,115,2,34,5],"span":[2159,11,17]},{"path":[4,115,2,34,1],"span":[2159,18,28]},{"path":[4,115,2,34,3],"span":[2159,31,33]},{"path":[4,115,2,35],"span":[2160,2,34]},{"path":[4,115,2,35,4],"span":[2160,2,10]},{"path":[4,115,2,35,5],"span":[2160,11,17]},{"path":[4,115,2,35,1],"span":[2160,18,28]},{"path":[4,115,2,35,3],"span":[2160,31,33]},{"path":[4,115,2,36],"span":[2161,2,33]},{"path":[4,115,2,36,4],"span":[2161,2,10]},{"path":[4,115,2,36,5],"span":[2161,11,17]},{"path":[4,115,2,36,1],"span":[2161,18,27]},{"path":[4,115,2,36,3],"span":[2161,30,32]},{"path":[4,115,2,37],"span":[2163,2,33]},{"path":[4,115,2,37,4],"span":[2163,2,10]},{"path":[4,115,2,37,5],"span":[2163,11,15]},{"path":[4,115,2,37,1],"span":[2163,16,27]},{"path":[4,115,2,37,3],"span":[2163,30,32]},{"path":[4,115,2,38],"span":[2164,2,36]},{"path":[4,115,2,38,4],"span":[2164,2,10]},{"path":[4,115,2,38,5],"span":[2164,11,15]},{"path":[4,115,2,38,1],"span":[2164,16,30]},{"path":[4,115,2,38,3],"span":[2164,33,35]},{"path":[4,115,2,39],"span":[2165,2,38]},{"path":[4,115,2,39,4],"span":[2165,2,10]},{"path":[4,115,2,39,5],"span":[2165,11,15]},{"path":[4,115,2,39,1],"span":[2165,16,32]},{"path":[4,115,2,39,3],"span":[2165,35,37]},{"path":[4,115,2,40],"span":[2166,2,34]},{"path":[4,115,2,40,4],"span":[2166,2,10]},{"path":[4,115,2,40,5],"span":[2166,11,15]},{"path":[4,115,2,40,1],"span":[2166,16,28]},{"path":[4,115,2,40,3],"span":[2166,31,33]},{"path":[4,115,2,41],"span":[2167,2,33]},{"path":[4,115,2,41,4],"span":[2167,2,10]},{"path":[4,115,2,41,5],"span":[2167,11,15]},{"path":[4,115,2,41,1],"span":[2167,16,27]},{"path":[4,115,2,41,3],"span":[2167,30,32]},{"path":[4,115,2,42],"span":[2168,2,38]},{"path":[4,115,2,42,4],"span":[2168,2,10]},{"path":[4,115,2,42,5],"span":[2168,11,15]},{"path":[4,115,2,42,1],"span":[2168,16,32]},{"path":[4,115,2,42,3],"span":[2168,35,37]},{"path":[4,115,2,43],"span":[2169,2,36]},{"path":[4,115,2,43,4],"span":[2169,2,10]},{"path":[4,115,2,43,5],"span":[2169,11,15]},{"path":[4,115,2,43,1],"span":[2169,16,30]},{"path":[4,115,2,43,3],"span":[2169,33,35]},{"path":[4,115,2,44],"span":[2171,2,59]},{"path":[4,115,2,44,4],"span":[2171,2,10]},{"path":[4,115,2,44,6],"span":[2171,11,36]},{"path":[4,115,2,44,1],"span":[2171,37,53]},{"path":[4,115,2,44,3],"span":[2171,56,58]},{"path":[4,115,2,45],"span":[2173,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,115,2,45,4],"span":[2173,2,10]},{"path":[4,115,2,45,5],"span":[2173,11,16]},{"path":[4,115,2,45,1],"span":[2173,17,28]},{"path":[4,115,2,45,3],"span":[2173,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|