@lansweeper/multitenant-api-grpc 0.4.45 → 0.4.46
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/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":"limits/limits.proto","package":"lansweeper.shared.limits.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"CalculateRiskInsights","field":[{"name":"from_year","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fromYear","proto3Optional":true},{"name":"from_severity","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.RiskInsightsSeverity","oneofIndex":1,"jsonName":"fromSeverity","proto3Optional":true},{"name":"max","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"max","proto3Optional":true}],"oneofDecl":[{"name":"_from_year"},{"name":"_from_severity"},{"name":"_max"}]},{"name":"ExpirableAllowedEntities","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"expires_at","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"expiresAt","proto3Optional":true}],"oneofDecl":[{"name":"_expires_at"}]},{"name":"BaseLimit","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"},{"name":"allowed_entities","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.ExpirableAllowedEntities","jsonName":"allowedEntities"}],"reservedRange":[{"start":2,"end":3}]},{"name":"RiskInsights","field":[{"name":"view_assets","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewAssets"}]},{"name":"Assets","field":[{"name":"view_risk_insights","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewRiskInsights"}]},{"name":"Scopes","field":[{"name":"create_max","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"createMax"}]},{"name":"SiteLimits","field":[{"name":"tier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.SiteLimitsTiers","jsonName":"tier"},{"name":"risk_insights","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.RiskInsights","oneofIndex":0,"jsonName":"riskInsights","proto3Optional":true},{"name":"assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Assets","oneofIndex":1,"jsonName":"assets","proto3Optional":true},{"name":"scopes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Scopes","jsonName":"scopes"}],"oneofDecl":[{"name":"_risk_insights"},{"name":"_assets"}],"reservedRange":[{"start":2,"end":3}]}],"enumType":[{"name":"SiteLimitsTiers","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":2}]},{"name":"RiskInsightsSeverity","value":[{"name":"RISK_INSIGHT_SEVERITY_LOW","number":0},{"name":"RISK_INSIGHT_SEVERITY_MEDIUM","number":1},{"name":"RISK_INSIGHT_SEVERITY_HIGH","number":2},{"name":"RISK_INSIGHT_SEVERITY_CRITICAL","number":3}]}],"options":{"goPackage":"github.com/Lansweeper/lansweeperapis/packages/shared/generated-go;limits"},"sourceCodeInfo":{"location":[{"span":[0,0,55,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[3,0,95]},{"path":[8,11],"span":[3,0,95]},{"path":[3,0],"span":[4,0,41]},{"path":[5,0],"span":[7,0,11,1]},{"path":[5,0,1],"span":[7,5,20]},{"path":[5,0,2,0],"span":[8,2,38]},{"path":[5,0,2,0,1],"span":[8,2,33]},{"path":[5,0,2,0,2],"span":[8,36,37]},{"path":[5,0,2,1],"span":[9,2,34]},{"path":[5,0,2,1,1],"span":[9,2,29]},{"path":[5,0,2,1,2],"span":[9,32,33]},{"path":[5,0,2,2],"span":[10,2,41]},{"path":[5,0,2,2,1],"span":[10,2,36]},{"path":[5,0,2,2,2],"span":[10,39,40]},{"path":[5,1],"span":[13,0,18,1]},{"path":[5,1,1],"span":[13,5,25]},{"path":[5,1,2,0],"span":[14,2,32]},{"path":[5,1,2,0,1],"span":[14,2,27]},{"path":[5,1,2,0,2],"span":[14,30,31]},{"path":[5,1,2,1],"span":[15,2,35]},{"path":[5,1,2,1,1],"span":[15,2,30]},{"path":[5,1,2,1,2],"span":[15,33,34]},{"path":[5,1,2,2],"span":[16,2,33]},{"path":[5,1,2,2,1],"span":[16,2,28]},{"path":[5,1,2,2,2],"span":[16,31,32]},{"path":[5,1,2,3],"span":[17,2,37]},{"path":[5,1,2,3,1],"span":[17,2,32]},{"path":[5,1,2,3,2],"span":[17,35,36]},{"path":[4,0],"span":[20,0,24,1]},{"path":[4,0,1],"span":[20,8,29]},{"path":[4,0,2,0],"span":[21,2,32]},{"path":[4,0,2,0,4],"span":[21,2,10]},{"path":[4,0,2,0,5],"span":[21,11,17]},{"path":[4,0,2,0,1],"span":[21,18,27]},{"path":[4,0,2,0,3],"span":[21,30,31]},{"path":[4,0,2,1],"span":[22,2,50]},{"path":[4,0,2,1,4],"span":[22,2,10]},{"path":[4,0,2,1,6],"span":[22,11,31]},{"path":[4,0,2,1,1],"span":[22,32,45]},{"path":[4,0,2,1,3],"span":[22,48,49]},{"path":[4,0,2,2],"span":[23,2,25]},{"path":[4,0,2,2,4],"span":[23,2,10]},{"path":[4,0,2,2,5],"span":[23,11,16]},{"path":[4,0,2,2,1],"span":[23,17,20]},{"path":[4,0,2,2,3],"span":[23,23,24]},{"path":[4,1],"span":[26,0,29,1]},{"path":[4,1,1],"span":[26,8,32]},{"path":[4,1,2,0],"span":[27,2,17]},{"path":[4,1,2,0,5],"span":[27,2,8]},{"path":[4,1,2,0,1],"span":[27,9,12]},{"path":[4,1,2,0,3],"span":[27,15,16]},{"path":[4,1,2,1],"span":[28,2,52]},{"path":[4,1,2,1,4],"span":[28,2,10]},{"path":[4,1,2,1,6],"span":[28,11,36]},{"path":[4,1,2,1,1],"span":[28,37,47]},{"path":[4,1,2,1,3],"span":[28,50,51]},{"path":[4,2],"span":[31,0,35,1]},{"path":[4,2,1],"span":[31,8,17]},{"path":[4,2,9],"span":[32,2,13]},{"path":[4,2,9,0],"span":[32,11,12]},{"path":[4,2,9,0,1],"span":[32,11,12]},{"path":[4,2,2,0],"span":[33,2,17]},{"path":[4,2,2,0,5],"span":[33,2,6]},{"path":[4,2,2,0,1],"span":[33,7,12]},{"path":[4,2,2,0,3],"span":[33,15,16]},{"path":[4,2,2,1],"span":[34,2,57]},{"path":[4,2,2,1,4],"span":[34,2,10]},{"path":[4,2,2,1,6],"span":[34,11,35]},{"path":[4,2,2,1,1],"span":[34,36,52]},{"path":[4,2,2,1,3],"span":[34,55,56]},{"path":[4,3],"span":[37,0,39,1]},{"path":[4,3,1],"span":[37,8,20]},{"path":[4,3,2,0],"span":[38,2,28]},{"path":[4,3,2,0,6],"span":[38,2,11]},{"path":[4,3,2,0,1],"span":[38,12,23]},{"path":[4,3,2,0,3],"span":[38,26,27]},{"path":[4,4],"span":[41,0,43,1]},{"path":[4,4,1],"span":[41,8,14]},{"path":[4,4,2,0],"span":[42,2,35]},{"path":[4,4,2,0,6],"span":[42,2,11]},{"path":[4,4,2,0,1],"span":[42,12,30]},{"path":[4,4,2,0,3],"span":[42,33,34]},{"path":[4,5],"span":[45,0,47,1]},{"path":[4,5,1],"span":[45,8,14]},{"path":[4,5,2,0],"span":[46,2,23]},{"path":[4,5,2,0,5],"span":[46,2,7]},{"path":[4,5,2,0,1],"span":[46,8,18]},{"path":[4,5,2,0,3],"span":[46,21,22]},{"path":[4,6],"span":[49,0,55,1]},{"path":[4,6,1],"span":[49,8,18]},{"path":[4,6,9],"span":[50,2,13]},{"path":[4,6,9,0],"span":[50,11,12]},{"path":[4,6,9,0,1],"span":[50,11,12]},{"path":[4,6,2,0],"span":[51,2,27]},{"path":[4,6,2,0,6],"span":[51,2,17]},{"path":[4,6,2,0,1],"span":[51,18,22]},{"path":[4,6,2,0,3],"span":[51,25,26]},{"path":[4,6,2,1],"span":[52,2,42]},{"path":[4,6,2,1,4],"span":[52,2,10]},{"path":[4,6,2,1,6],"span":[52,11,23]},{"path":[4,6,2,1,1],"span":[52,24,37]},{"path":[4,6,2,1,3],"span":[52,40,41]},{"path":[4,6,2,2],"span":[53,2,29]},{"path":[4,6,2,2,4],"span":[53,2,10]},{"path":[4,6,2,2,6],"span":[53,11,17]},{"path":[4,6,2,2,1],"span":[53,18,24]},{"path":[4,6,2,2,3],"span":[53,27,28]},{"path":[4,6,2,3],"span":[54,2,20]},{"path":[4,6,2,3,6],"span":[54,2,8]},{"path":[4,6,2,3,1],"span":[54,9,15]},{"path":[4,6,2,3,3],"span":[54,18,19]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/multitenant.proto","package":"lansweeper.multitenant.v1","dependency":["limits/limits.proto"],"messageType":[{"name":"PreviewAccount","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"username","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"username"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"surname","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"surname"},{"name":"email","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email"},{"name":"image_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"imageUrl"}]},{"name":"GetPreviewAccountByIdRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"GetPreviewAccountByIdResponse","field":[{"name":"account","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"account"}]},{"name":"PreviewSite","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"company_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"companyName"},{"name":"logo_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"logoUrl"},{"name":"mode","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"},{"name":"created_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"PatchSiteModeRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"}]},{"name":"PatchSiteModeResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"Profile","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"is_owner","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isOwner"}]},{"name":"ListProfilesByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks"}]},{"name":"ListProfilesByAccountIdResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"ListAuthorizedLinkProfilesRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks","options":{"deprecated":true}}]},{"name":"ListAuthorizedLinkProfilesResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"CheckAccessToSiteByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"only_owner","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"onlyOwner"},{"name":"user_info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo","jsonName":"userInfo"}],"nestedType":[{"name":"UserInfo","field":[{"name":"has_mfa","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasMfa"},{"name":"is_sso_login","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isSsoLogin"}]}]},{"name":"CheckAccessToSiteByAccountIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"CheckAccessToSiteByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckAccessToSiteByClientIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"Install","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install.InstallState","jsonName":"state"},{"name":"created_at","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"license","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"},{"name":"type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"installType"}],"nestedType":[{"name":"InstallState","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"value"}]}]},{"name":"InstallCredentials","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"client_secret","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientSecret"}]},{"name":"GetInstallsCountBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetInstallsCountResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"count"}]},{"name":"GetInstallsByIdRequest","field":[{"name":"install_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"}]},{"name":"GetInstallsByIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"NullableInstallType","field":[{"name":"data","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","oneofIndex":0,"jsonName":"data"}],"oneofDecl":[{"name":"kind"}]},{"name":"GetInstallsBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"filter","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter","jsonName":"filter"}],"nestedType":[{"name":"Filter","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"state"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.NullableInstallType","jsonName":"installType"}]}]},{"name":"GetInstallsBySiteResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsForMultipleSitesRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetInstallsForMultipleSitesResponse","field":[{"name":"installs","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installs"}]},{"name":"GetInstallbyClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallbyClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"CreateInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"client_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}],"reservedRange":[{"start":2,"end":3},{"start":8,"end":9}]},{"name":"CreateInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"}]},{"name":"CreateAndLinkInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"created_by_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"client_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"external_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}]},{"name":"CreateAndLinkInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"license","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"UpdateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"syncer_settings","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings","jsonName":"syncerSettings"}],"nestedType":[{"name":"SyncerSettings","field":[{"name":"send_changed_data_timeout","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendChangedDataTimeout"},{"name":"send_fast_changing_data_timeout","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendFastChangingDataTimeout"},{"name":"send_non_changed_data_timeout","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendNonChangedDataTimeout"},{"name":"sync_interval_in_seconds","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syncIntervalInSeconds"}]}]},{"name":"UpdateInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"RotateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"}]},{"name":"RotateInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"old_install_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"oldInstallId"},{"name":"new_install_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"newInstallId"}]},{"name":"UnlinkInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"},{"name":"remove_data","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"removeData"},{"name":"from_onprem","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"fromOnprem"}]},{"name":"UnlinkInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"LinkTrialInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"}]},{"name":"LinkTrialInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"license","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"RemoveInstallDataBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_ids","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"},{"name":"user_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"RemoveInstallDataBySiteIdResponse","field":[{"name":"result","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result","jsonName":"result"}],"nestedType":[{"name":"Result","field":[{"name":"install_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"},{"name":"queued","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"queued"}]}]},{"name":"GetDuplicatedInstallsByGlobalIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"global_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"}]},{"name":"GetDuplicatedInstallsByGlobalIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetUserPermissionsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"GetUserPermissionsResponse","field":[{"name":"roles","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Role","jsonName":"roles"}],"nestedType":[{"name":"AuthorizationAction","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"derived_permissions","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"derivedPermissions"}]},{"name":"Scope","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"Role","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"actions","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction","jsonName":"actions"},{"name":"installations","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installations"},{"name":"scopes","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope","jsonName":"scopes"}]}]},{"name":"ValidateApplicationPersonalAccessTokenRequest","field":[{"name":"personal_access_token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"personalAccessToken"}]},{"name":"ValidateApplicationPersonalAccessTokenResponse","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"application_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}]},{"name":"DisableWebhookEmailRequest","field":[{"name":"application_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationName"},{"name":"email","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email","options":{"deprecated":true}},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError","jsonName":"errors"},{"name":"payload_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"payloadUrl"},{"name":"webhook_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookName"},{"name":"webhook_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookUrl","options":{"deprecated":true}},{"name":"webhook_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookId"},{"name":"application_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}],"nestedType":[{"name":"WebhookError","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"},{"name":"messsage","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"messsage","options":{"deprecated":true}},{"name":"timestamp","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"timestamp"},{"name":"message","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}]},{"name":"DisableWebhookEmailResponse","field":[{"name":"mail_sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mailSent"}]},{"name":"Site","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"AuthorizedSitesRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"AuthorizedSitesResponse","field":[{"name":"site","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Site","jsonName":"site"}]},{"name":"GetAccountIdsBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetAccountIdsBySiteIdResponse","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"CheckManagerInApplicationRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"manager_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"managerId"}]},{"name":"CheckManagerInApplicationResponse","field":[{"name":"is_manager","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManager"}]},{"name":"Subscription","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"created_at","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"created_by","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdBy"}]},{"name":"UpdateSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"updated_by","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSubscriptionResponse","field":[{"name":"subscription","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Subscription","jsonName":"subscription"}]},{"name":"CreateTrialSiteAndInstallerRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"CreateTrialSiteAndInstallerResponse","field":[{"name":"installer_credentials","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installerCredentials"}]},{"name":"GetInstallationLicenseByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallationLicenseByClientIdResponse","field":[{"name":"license","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"AllProfileExistsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}],"options":{"deprecated":true}},{"name":"AllProfileExistsResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"}],"options":{"deprecated":true}},{"name":"AllProfilesExistRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}]},{"name":"AllProfilesExistResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"},{"name":"profiles","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profiles"},{"name":"createdBy","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"SendInviteLocalUsersMailRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"SendInviteLocalUsersMailResponse","field":[{"name":"sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"sent"}]},{"name":"GetSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetSiteSubscriptionResponse","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"}]},{"name":"CreateLinkingCodeRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"CreateLinkingCodeResponse","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"}]},{"name":"GetSiteIdsWithIntegrationData","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"CheckStandardizedSoftwareEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckStandardizedSoftwareEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"UpdateSiteMetadataRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"UpdateSiteMetadataResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"GetSiteLimitsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetSiteLimitsResponse","field":[{"name":"site_limits","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry","jsonName":"siteLimits"}],"nestedType":[{"name":"SiteLimitsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.SiteLimits","jsonName":"value"}],"options":{"mapEntry":true}}]}],"enumType":[{"name":"SiteMode","value":[{"name":"UNESPECIFIED","number":0},{"name":"CLOUD_NATIVE","number":1},{"name":"DEMO","number":2},{"name":"HYBRID","number":3},{"name":"DUAL","number":4}]},{"name":"InstallStateValue","value":[{"name":"INSTALL_STATE_VALUE_UNESPECIFIED","number":0},{"name":"INSTALL_STATE_VALUE_SYNC","number":1},{"name":"INSTALL_STATE_VALUE_UNSYNC","number":2}]},{"name":"InstallType","value":[{"name":"IT","number":0},{"name":"OT","number":1},{"name":"IT_AGENT","number":2},{"name":"CLOUD","number":3}]},{"name":"SubscriptionType","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_UNESPECIFIED","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_TRIAL","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_FREEWARE","number":2},{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":3},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":4},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":5}]}],"service":[{"name":"Multitenant","method":[{"name":"CheckAccessToSiteByAccountId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse","options":{}},{"name":"CheckAccessToSiteByClientId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse","options":{}},{"name":"GetPreviewAccountById","inputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdResponse","options":{}},{"name":"ListProfilesByAccountId","inputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdRequest","outputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdResponse","options":{}},{"name":"ListAuthorizedLinkProfiles","inputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest","outputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse","options":{}},{"name":"PatchSiteMode","inputType":".lansweeper.multitenant.v1.PatchSiteModeRequest","outputType":".lansweeper.multitenant.v1.PatchSiteModeResponse","options":{}},{"name":"CreateInstall","inputType":".lansweeper.multitenant.v1.CreateInstallRequest","outputType":".lansweeper.multitenant.v1.CreateInstallResponse","options":{}},{"name":"CreateAndLinkInstall","inputType":".lansweeper.multitenant.v1.CreateAndLinkInstallRequest","outputType":".lansweeper.multitenant.v1.CreateAndLinkInstallResponse","options":{}},{"name":"GetInstallsBySite","inputType":".lansweeper.multitenant.v1.GetInstallsBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsBySiteResponse","options":{}},{"name":"GetInstallsforMultipleSites","inputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest","outputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse","options":{}},{"name":"GetInstallsById","inputType":".lansweeper.multitenant.v1.GetInstallsByIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByIdResponse","options":{}},{"name":"GetInstallsCountBySite","inputType":".lansweeper.multitenant.v1.GetInstallsCountBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsCountResponse","options":{}},{"name":"GetInstallbyClientId","inputType":".lansweeper.multitenant.v1.GetInstallbyClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallbyClientIdResponse","options":{}},{"name":"UpdateInstallByClientId","inputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdResponse","options":{}},{"name":"RotateInstallByClientId","inputType":".lansweeper.multitenant.v1.RotateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.RotateInstallByClientIdResponse","options":{}},{"name":"LinkTrialInstallByClientId","inputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse","options":{}},{"name":"UnlinkInstallByClientId","inputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse","options":{}},{"name":"RemoveInstallDataBySiteId","inputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest","outputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse","options":{}},{"name":"GetDuplicatedInstallsByGlobalId","inputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest","outputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse","options":{}},{"name":"GetUserPermissions","inputType":".lansweeper.multitenant.v1.GetUserPermissionsRequest","outputType":".lansweeper.multitenant.v1.GetUserPermissionsResponse","options":{}},{"name":"ValidateApplicationPersonalAccessToken","inputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse","options":{}},{"name":"SendDisabledWebhookEmail","inputType":".lansweeper.multitenant.v1.DisableWebhookEmailRequest","outputType":".lansweeper.multitenant.v1.DisableWebhookEmailResponse","options":{}},{"name":"GetAuthorizedSitesByApplicationId","inputType":".lansweeper.multitenant.v1.AuthorizedSitesRequest","outputType":".lansweeper.multitenant.v1.AuthorizedSitesResponse","options":{}},{"name":"GetAccountIdsBySiteId","inputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest","outputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse","options":{}},{"name":"CheckManagerInApplication","inputType":".lansweeper.multitenant.v1.CheckManagerInApplicationRequest","outputType":".lansweeper.multitenant.v1.CheckManagerInApplicationResponse","options":{}},{"name":"UpdateSiteSubscription","inputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse","options":{}},{"name":"CreateTrialSiteAndInstaller","inputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest","outputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse","options":{}},{"name":"GetInstallationLicenseByClientId","inputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse","options":{}},{"name":"AllProfilesExist","inputType":".lansweeper.multitenant.v1.AllProfilesExistRequest","outputType":".lansweeper.multitenant.v1.AllProfilesExistResponse","options":{}},{"name":"SendInviteLocalUsersMail","inputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest","outputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse","options":{}},{"name":"AllProfileExists","inputType":".lansweeper.multitenant.v1.AllProfileExistsRequest","outputType":".lansweeper.multitenant.v1.AllProfileExistsResponse","options":{"deprecated":true}},{"name":"GetSiteSubscription","inputType":".lansweeper.multitenant.v1.GetSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.GetSiteSubscriptionResponse","options":{}},{"name":"CreateLinkingCode","inputType":".lansweeper.multitenant.v1.CreateLinkingCodeRequest","outputType":".lansweeper.multitenant.v1.CreateLinkingCodeResponse","options":{}},{"name":"GetSiteIdsWithIntegrationBySiteId","inputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","outputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","options":{}},{"name":"CheckStandardizedSoftwareEnabled","inputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest","outputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse","options":{}},{"name":"UpdateSiteMetadata","inputType":".lansweeper.multitenant.v1.UpdateSiteMetadataRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteMetadataResponse","options":{}},{"name":"GetSiteLimits","inputType":".lansweeper.multitenant.v1.GetSiteLimitsRequest","outputType":".lansweeper.multitenant.v1.GetSiteLimitsResponse","options":{}}]}],"options":{"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[0,0,472,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[1,0,34]},{"path":[8],"span":[2,0,37]},{"path":[8,11],"span":[2,0,37]},{"path":[3,0],"span":[4,0,29]},{"path":[4,0],"span":[6,0,13,1]},{"path":[4,0,1],"span":[6,8,22]},{"path":[4,0,2,0],"span":[7,2,16]},{"path":[4,0,2,0,5],"span":[7,2,8]},{"path":[4,0,2,0,1],"span":[7,9,11]},{"path":[4,0,2,0,3],"span":[7,14,15]},{"path":[4,0,2,1],"span":[8,2,22]},{"path":[4,0,2,1,5],"span":[8,2,8]},{"path":[4,0,2,1,1],"span":[8,9,17]},{"path":[4,0,2,1,3],"span":[8,20,21]},{"path":[4,0,2,2],"span":[9,2,18]},{"path":[4,0,2,2,5],"span":[9,2,8]},{"path":[4,0,2,2,1],"span":[9,9,13]},{"path":[4,0,2,2,3],"span":[9,16,17]},{"path":[4,0,2,3],"span":[10,2,21]},{"path":[4,0,2,3,5],"span":[10,2,8]},{"path":[4,0,2,3,1],"span":[10,9,16]},{"path":[4,0,2,3,3],"span":[10,19,20]},{"path":[4,0,2,4],"span":[11,2,19]},{"path":[4,0,2,4,5],"span":[11,2,8]},{"path":[4,0,2,4,1],"span":[11,9,14]},{"path":[4,0,2,4,3],"span":[11,17,18]},{"path":[4,0,2,5],"span":[12,2,23]},{"path":[4,0,2,5,5],"span":[12,2,8]},{"path":[4,0,2,5,1],"span":[12,9,18]},{"path":[4,0,2,5,3],"span":[12,21,22]},{"path":[4,1],"span":[14,0,16,1]},{"path":[4,1,1],"span":[14,8,36]},{"path":[4,1,2,0],"span":[15,2,16]},{"path":[4,1,2,0,5],"span":[15,2,8]},{"path":[4,1,2,0,1],"span":[15,9,11]},{"path":[4,1,2,0,3],"span":[15,14,15]},{"path":[4,2],"span":[17,0,19,1]},{"path":[4,2,1],"span":[17,8,37]},{"path":[4,2,2,0],"span":[18,2,29]},{"path":[4,2,2,0,6],"span":[18,2,16]},{"path":[4,2,2,0,1],"span":[18,17,24]},{"path":[4,2,2,0,3],"span":[18,27,28]},{"path":[5,0],"span":[20,0,26,1]},{"path":[5,0,1],"span":[20,5,13]},{"path":[5,0,2,0],"span":[21,2,19]},{"path":[5,0,2,0,1],"span":[21,2,14]},{"path":[5,0,2,0,2],"span":[21,17,18]},{"path":[5,0,2,1],"span":[22,2,19]},{"path":[5,0,2,1,1],"span":[22,2,14]},{"path":[5,0,2,1,2],"span":[22,17,18]},{"path":[5,0,2,2],"span":[23,2,11]},{"path":[5,0,2,2,1],"span":[23,2,6]},{"path":[5,0,2,2,2],"span":[23,9,10]},{"path":[5,0,2,3],"span":[24,2,13]},{"path":[5,0,2,3,1],"span":[24,2,8]},{"path":[5,0,2,3,2],"span":[24,11,12]},{"path":[5,0,2,4],"span":[25,2,11]},{"path":[5,0,2,4,1],"span":[25,2,6]},{"path":[5,0,2,4,2],"span":[25,9,10]},{"path":[4,3],"span":[27,0,34,1]},{"path":[4,3,1],"span":[27,8,19]},{"path":[4,3,2,0],"span":[28,2,16]},{"path":[4,3,2,0,5],"span":[28,2,8]},{"path":[4,3,2,0,1],"span":[28,9,11]},{"path":[4,3,2,0,3],"span":[28,14,15]},{"path":[4,3,2,1],"span":[29,2,18]},{"path":[4,3,2,1,5],"span":[29,2,8]},{"path":[4,3,2,1,1],"span":[29,9,13]},{"path":[4,3,2,1,3],"span":[29,16,17]},{"path":[4,3,2,2],"span":[30,2,26]},{"path":[4,3,2,2,5],"span":[30,2,8]},{"path":[4,3,2,2,1],"span":[30,9,21]},{"path":[4,3,2,2,3],"span":[30,24,25]},{"path":[4,3,2,3],"span":[31,2,22]},{"path":[4,3,2,3,5],"span":[31,2,8]},{"path":[4,3,2,3,1],"span":[31,9,17]},{"path":[4,3,2,3,3],"span":[31,20,21]},{"path":[4,3,2,4],"span":[32,2,20]},{"path":[4,3,2,4,6],"span":[32,2,10]},{"path":[4,3,2,4,1],"span":[32,11,15]},{"path":[4,3,2,4,3],"span":[32,18,19]},{"path":[4,3,2,5],"span":[33,2,32]},{"path":[4,3,2,5,6],"span":[33,2,16]},{"path":[4,3,2,5,1],"span":[33,17,27]},{"path":[4,3,2,5,3],"span":[33,30,31]},{"path":[4,4],"span":[35,0,38,1]},{"path":[4,4,1],"span":[35,8,28]},{"path":[4,4,2,0],"span":[36,2,16]},{"path":[4,4,2,0,5],"span":[36,2,8]},{"path":[4,4,2,0,1],"span":[36,9,11]},{"path":[4,4,2,0,3],"span":[36,14,15]},{"path":[4,4,2,1],"span":[37,2,20]},{"path":[4,4,2,1,6],"span":[37,2,10]},{"path":[4,4,2,1,1],"span":[37,11,15]},{"path":[4,4,2,1,3],"span":[37,18,19]},{"path":[4,5],"span":[39,0,41,1]},{"path":[4,5,1],"span":[39,8,29]},{"path":[4,5,2,0],"span":[40,2,19]},{"path":[4,5,2,0,5],"span":[40,2,6]},{"path":[4,5,2,0,1],"span":[40,7,14]},{"path":[4,5,2,0,3],"span":[40,17,18]},{"path":[4,6],"span":[42,0,47,1]},{"path":[4,6,1],"span":[42,8,15]},{"path":[4,6,2,0],"span":[43,2,16]},{"path":[4,6,2,0,5],"span":[43,2,8]},{"path":[4,6,2,0,1],"span":[43,9,11]},{"path":[4,6,2,0,3],"span":[43,14,15]},{"path":[4,6,2,1],"span":[44,2,21]},{"path":[4,6,2,1,5],"span":[44,2,8]},{"path":[4,6,2,1,1],"span":[44,9,16]},{"path":[4,6,2,1,3],"span":[44,19,20]},{"path":[4,6,2,2],"span":[45,2,23]},{"path":[4,6,2,2,6],"span":[45,2,13]},{"path":[4,6,2,2,1],"span":[45,14,18]},{"path":[4,6,2,2,3],"span":[45,21,22]},{"path":[4,6,2,3],"span":[46,2,20]},{"path":[4,6,2,3,5],"span":[46,2,6]},{"path":[4,6,2,3,1],"span":[46,7,15]},{"path":[4,6,2,3,3],"span":[46,18,19]},{"path":[4,7],"span":[48,0,51,1]},{"path":[4,7,1],"span":[48,8,38]},{"path":[4,7,2,0],"span":[49,2,24]},{"path":[4,7,2,0,5],"span":[49,2,8]},{"path":[4,7,2,0,1],"span":[49,9,19]},{"path":[4,7,2,0,3],"span":[49,22,23]},{"path":[4,7,2,1],"span":[50,2,26]},{"path":[4,7,2,1,5],"span":[50,2,6]},{"path":[4,7,2,1,1],"span":[50,7,21]},{"path":[4,7,2,1,3],"span":[50,24,25]},{"path":[4,8],"span":[52,0,54,1]},{"path":[4,8,1],"span":[52,8,39]},{"path":[4,8,2,0],"span":[53,2,31]},{"path":[4,8,2,0,4],"span":[53,2,10]},{"path":[4,8,2,0,6],"span":[53,11,18]},{"path":[4,8,2,0,1],"span":[53,19,26]},{"path":[4,8,2,0,3],"span":[53,29,30]},{"path":[4,9],"span":[55,0,58,1]},{"path":[4,9,1],"span":[55,8,41]},{"path":[4,9,2,0],"span":[56,2,24]},{"path":[4,9,2,0,5],"span":[56,2,8]},{"path":[4,9,2,0,1],"span":[56,9,19]},{"path":[4,9,2,0,3],"span":[56,22,23]},{"path":[4,9,2,1],"span":[57,2,46]},{"path":[4,9,2,1,5],"span":[57,2,6]},{"path":[4,9,2,1,1],"span":[57,7,21]},{"path":[4,9,2,1,3],"span":[57,24,25]},{"path":[4,9,2,1,8],"span":[57,26,45]},{"path":[4,9,2,1,8,3],"span":[57,27,44]},{"path":[4,10],"span":[59,0,61,1]},{"path":[4,10,1],"span":[59,8,42]},{"path":[4,10,2,0],"span":[60,2,31]},{"path":[4,10,2,0,4],"span":[60,2,10]},{"path":[4,10,2,0,6],"span":[60,11,18]},{"path":[4,10,2,0,1],"span":[60,19,26]},{"path":[4,10,2,0,3],"span":[60,29,30]},{"path":[4,11],"span":[62,0,71,1]},{"path":[4,11,1],"span":[62,8,43]},{"path":[4,11,2,0],"span":[63,2,24]},{"path":[4,11,2,0,5],"span":[63,2,8]},{"path":[4,11,2,0,1],"span":[63,9,19]},{"path":[4,11,2,0,3],"span":[63,22,23]},{"path":[4,11,2,1],"span":[64,2,21]},{"path":[4,11,2,1,5],"span":[64,2,8]},{"path":[4,11,2,1,1],"span":[64,9,16]},{"path":[4,11,2,1,3],"span":[64,19,20]},{"path":[4,11,2,2],"span":[65,2,22]},{"path":[4,11,2,2,5],"span":[65,2,6]},{"path":[4,11,2,2,1],"span":[65,7,17]},{"path":[4,11,2,2,3],"span":[65,20,21]},{"path":[4,11,3,0],"span":[66,2,69,3]},{"path":[4,11,3,0,1],"span":[66,10,18]},{"path":[4,11,3,0,2,0],"span":[67,4,21]},{"path":[4,11,3,0,2,0,5],"span":[67,4,8]},{"path":[4,11,3,0,2,0,1],"span":[67,9,16]},{"path":[4,11,3,0,2,0,3],"span":[67,19,20]},{"path":[4,11,3,0,2,1],"span":[68,4,26]},{"path":[4,11,3,0,2,1,5],"span":[68,4,8]},{"path":[4,11,3,0,2,1,1],"span":[68,9,21]},{"path":[4,11,3,0,2,1,3],"span":[68,24,25]},{"path":[4,11,2,3],"span":[70,2,25]},{"path":[4,11,2,3,6],"span":[70,2,10]},{"path":[4,11,2,3,1],"span":[70,11,20]},{"path":[4,11,2,3,3],"span":[70,23,24]},{"path":[4,12],"span":[72,0,74,1]},{"path":[4,12,1],"span":[72,8,44]},{"path":[4,12,2,0],"span":[73,2,18]},{"path":[4,12,2,0,5],"span":[73,2,6]},{"path":[4,12,2,0,1],"span":[73,7,13]},{"path":[4,12,2,0,3],"span":[73,16,17]},{"path":[4,13],"span":[75,0,78,1]},{"path":[4,13,1],"span":[75,8,42]},{"path":[4,13,2,0],"span":[76,2,23]},{"path":[4,13,2,0,5],"span":[76,2,8]},{"path":[4,13,2,0,1],"span":[76,9,18]},{"path":[4,13,2,0,3],"span":[76,21,22]},{"path":[4,13,2,1],"span":[77,2,21]},{"path":[4,13,2,1,5],"span":[77,2,8]},{"path":[4,13,2,1,1],"span":[77,9,16]},{"path":[4,13,2,1,3],"span":[77,19,20]},{"path":[4,14],"span":[79,0,81,1]},{"path":[4,14,1],"span":[79,8,43]},{"path":[4,14,2,0],"span":[80,2,18]},{"path":[4,14,2,0,5],"span":[80,2,6]},{"path":[4,14,2,0,1],"span":[80,7,13]},{"path":[4,14,2,0,3],"span":[80,16,17]},{"path":[5,1],"span":[82,0,86,1]},{"path":[5,1,1],"span":[82,5,22]},{"path":[5,1,2,0],"span":[83,2,39]},{"path":[5,1,2,0,1],"span":[83,2,34]},{"path":[5,1,2,0,2],"span":[83,37,38]},{"path":[5,1,2,1],"span":[84,2,31]},{"path":[5,1,2,1,1],"span":[84,2,26]},{"path":[5,1,2,1,2],"span":[84,29,30]},{"path":[5,1,2,2],"span":[85,2,33]},{"path":[5,1,2,2,1],"span":[85,2,28]},{"path":[5,1,2,2,2],"span":[85,31,32]},{"path":[4,15],"span":[87,0,104,1]},{"path":[4,15,1],"span":[87,8,15]},{"path":[4,15,2,0],"span":[88,2,16]},{"path":[4,15,2,0,5],"span":[88,2,8]},{"path":[4,15,2,0,1],"span":[88,9,11]},{"path":[4,15,2,0,3],"span":[88,14,15]},{"path":[4,15,2,1],"span":[89,2,21]},{"path":[4,15,2,1,5],"span":[89,2,8]},{"path":[4,15,2,1,1],"span":[89,9,16]},{"path":[4,15,2,1,3],"span":[89,19,20]},{"path":[4,15,2,2],"span":[90,2,26]},{"path":[4,15,2,2,5],"span":[90,2,8]},{"path":[4,15,2,2,1],"span":[90,9,21]},{"path":[4,15,2,2,3],"span":[90,24,25]},{"path":[4,15,2,3],"span":[91,2,25]},{"path":[4,15,2,3,5],"span":[91,2,8]},{"path":[4,15,2,3,1],"span":[91,9,20]},{"path":[4,15,2,3,3],"span":[91,23,24]},{"path":[4,15,2,4],"span":[92,2,20]},{"path":[4,15,2,4,5],"span":[92,2,8]},{"path":[4,15,2,4,1],"span":[92,9,15]},{"path":[4,15,2,4,3],"span":[92,18,19]},{"path":[4,15,2,5],"span":[93,2,18]},{"path":[4,15,2,5,5],"span":[93,2,8]},{"path":[4,15,2,5,1],"span":[93,9,13]},{"path":[4,15,2,5,3],"span":[93,16,17]},{"path":[4,15,2,6],"span":[94,2,27]},{"path":[4,15,2,6,5],"span":[94,2,8]},{"path":[4,15,2,6,1],"span":[94,9,22]},{"path":[4,15,2,6,3],"span":[94,25,26]},{"path":[4,15,2,7],"span":[95,2,23]},{"path":[4,15,2,7,5],"span":[95,2,8]},{"path":[4,15,2,7,1],"span":[95,9,18]},{"path":[4,15,2,7,3],"span":[95,21,22]},{"path":[4,15,3,0],"span":[96,2,98,3]},{"path":[4,15,3,0,1],"span":[96,10,22]},{"path":[4,15,3,0,2,0],"span":[97,4,32]},{"path":[4,15,3,0,2,0,6],"span":[97,4,21]},{"path":[4,15,3,0,2,0,1],"span":[97,22,27]},{"path":[4,15,3,0,2,0,3],"span":[97,30,31]},{"path":[4,15,2,8],"span":[99,2,25]},{"path":[4,15,2,8,6],"span":[99,2,14]},{"path":[4,15,2,8,1],"span":[99,15,20]},{"path":[4,15,2,8,3],"span":[99,23,24]},{"path":[4,15,2,9],"span":[100,2,25]},{"path":[4,15,2,9,5],"span":[100,2,8]},{"path":[4,15,2,9,1],"span":[100,9,19]},{"path":[4,15,2,9,3],"span":[100,22,24]},{"path":[4,15,2,10],"span":[101,2,22]},{"path":[4,15,2,10,5],"span":[101,2,8]},{"path":[4,15,2,10,1],"span":[101,9,16]},{"path":[4,15,2,10,3],"span":[101,19,21]},{"path":[4,15,2,11],"span":[102,2,39]},{"path":[4,15,2,11,5],"span":[102,2,8]},{"path":[4,15,2,11,1],"span":[102,9,13]},{"path":[4,15,2,11,3],"span":[102,16,18]},{"path":[4,15,2,11,8],"span":[102,19,38]},{"path":[4,15,2,11,8,3],"span":[102,20,37]},{"path":[4,15,2,12],"span":[103,2,32]},{"path":[4,15,2,12,6],"span":[103,2,13]},{"path":[4,15,2,12,1],"span":[103,14,26]},{"path":[4,15,2,12,3],"span":[103,29,31]},{"path":[4,16],"span":[105,0,108,1]},{"path":[4,16,1],"span":[105,8,26]},{"path":[4,16,2,0],"span":[106,2,23]},{"path":[4,16,2,0,5],"span":[106,2,8]},{"path":[4,16,2,0,1],"span":[106,9,18]},{"path":[4,16,2,0,3],"span":[106,21,22]},{"path":[4,16,2,1],"span":[107,2,27]},{"path":[4,16,2,1,5],"span":[107,2,8]},{"path":[4,16,2,1,1],"span":[107,9,22]},{"path":[4,16,2,1,3],"span":[107,25,26]},{"path":[4,17],"span":[109,0,111,1]},{"path":[4,17,1],"span":[109,8,37]},{"path":[4,17,2,0],"span":[110,2,21]},{"path":[4,17,2,0,5],"span":[110,2,8]},{"path":[4,17,2,0,1],"span":[110,9,16]},{"path":[4,17,2,0,3],"span":[110,19,20]},{"path":[4,18],"span":[112,0,114,1]},{"path":[4,18,1],"span":[112,8,32]},{"path":[4,18,2,0],"span":[113,2,18]},{"path":[4,18,2,0,5],"span":[113,2,7]},{"path":[4,18,2,0,1],"span":[113,8,13]},{"path":[4,18,2,0,3],"span":[113,16,17]},{"path":[4,19],"span":[115,0,117,1]},{"path":[4,19,1],"span":[115,8,30]},{"path":[4,19,2,0],"span":[116,2,34]},{"path":[4,19,2,0,4],"span":[116,2,10]},{"path":[4,19,2,0,5],"span":[116,11,17]},{"path":[4,19,2,0,1],"span":[116,18,29]},{"path":[4,19,2,0,3],"span":[116,32,33]},{"path":[4,20],"span":[118,0,120,1]},{"path":[4,20,1],"span":[118,8,31]},{"path":[4,20,2,0],"span":[119,2,31]},{"path":[4,20,2,0,4],"span":[119,2,10]},{"path":[4,20,2,0,6],"span":[119,11,18]},{"path":[4,20,2,0,1],"span":[119,19,26]},{"path":[4,20,2,0,3],"span":[119,29,30]},{"path":[4,21],"span":[121,0,125,1]},{"path":[4,21,1],"span":[121,8,27]},{"path":[4,21,8,0],"span":[122,2,124,3]},{"path":[4,21,8,0,1],"span":[122,8,12]},{"path":[4,21,2,0],"span":[123,4,25]},{"path":[4,21,2,0,6],"span":[123,4,15]},{"path":[4,21,2,0,1],"span":[123,16,20]},{"path":[4,21,2,0,3],"span":[123,23,24]},{"path":[4,22],"span":[126,0,134,1]},{"path":[4,22,1],"span":[126,8,32]},{"path":[4,22,2,0],"span":[127,2,21]},{"path":[4,22,2,0,5],"span":[127,2,8]},{"path":[4,22,2,0,1],"span":[127,9,16]},{"path":[4,22,2,0,3],"span":[127,19,20]},{"path":[4,22,3,0],"span":[128,2,132,3]},{"path":[4,22,3,0,1],"span":[128,10,16]},{"path":[4,22,3,0,2,0],"span":[129,4,32]},{"path":[4,22,3,0,2,0,6],"span":[129,4,21]},{"path":[4,22,3,0,2,0,1],"span":[129,22,27]},{"path":[4,22,3,0,2,0,3],"span":[129,30,31]},{"path":[4,22,3,0,2,1],"span":[130,4,43]},{"path":[4,22,3,0,2,1,6],"span":[130,4,15]},{"path":[4,22,3,0,2,1,1],"span":[130,16,20]},{"path":[4,22,3,0,2,1,3],"span":[130,21,22]},{"path":[4,22,3,0,2,1,8],"span":[130,23,42]},{"path":[4,22,3,0,2,1,8,3],"span":[130,24,41]},{"path":[4,22,3,0,2,2],"span":[131,4,39]},{"path":[4,22,3,0,2,2,6],"span":[131,4,23]},{"path":[4,22,3,0,2,2,1],"span":[131,24,36]},{"path":[4,22,3,0,2,2,3],"span":[131,37,38]},{"path":[4,22,2,1],"span":[133,2,20]},{"path":[4,22,2,1,6],"span":[133,2,8]},{"path":[4,22,2,1,1],"span":[133,9,15]},{"path":[4,22,2,1,3],"span":[133,18,19]},{"path":[4,23],"span":[135,0,137,1]},{"path":[4,23,1],"span":[135,8,33]},{"path":[4,23,2,0],"span":[136,2,31]},{"path":[4,23,2,0,4],"span":[136,2,10]},{"path":[4,23,2,0,6],"span":[136,11,18]},{"path":[4,23,2,0,1],"span":[136,19,26]},{"path":[4,23,2,0,3],"span":[136,29,30]},{"path":[4,24],"span":[138,0,140,1]},{"path":[4,24,1],"span":[138,8,42]},{"path":[4,24,2,0],"span":[139,2,31]},{"path":[4,24,2,0,4],"span":[139,2,10]},{"path":[4,24,2,0,5],"span":[139,11,17]},{"path":[4,24,2,0,1],"span":[139,18,26]},{"path":[4,24,2,0,3],"span":[139,29,30]},{"path":[4,25],"span":[141,0,143,1]},{"path":[4,25,1],"span":[141,8,43]},{"path":[4,25,2,0],"span":[142,2,32]},{"path":[4,25,2,0,4],"span":[142,2,10]},{"path":[4,25,2,0,6],"span":[142,11,18]},{"path":[4,25,2,0,1],"span":[142,19,27]},{"path":[4,25,2,0,3],"span":[142,30,31]},{"path":[4,26],"span":[144,0,146,1]},{"path":[4,26,1],"span":[144,8,35]},{"path":[4,26,2,0],"span":[145,2,23]},{"path":[4,26,2,0,5],"span":[145,2,8]},{"path":[4,26,2,0,1],"span":[145,9,18]},{"path":[4,26,2,0,3],"span":[145,21,22]},{"path":[4,27],"span":[147,0,149,1]},{"path":[4,27,1],"span":[147,8,36]},{"path":[4,27,2,0],"span":[148,2,22]},{"path":[4,27,2,0,6],"span":[148,2,9]},{"path":[4,27,2,0,1],"span":[148,10,17]},{"path":[4,27,2,0,3],"span":[148,20,21]},{"path":[4,28],"span":[150,0,162,1]},{"path":[4,28,1],"span":[150,8,28]},{"path":[4,28,9],"span":[151,2,16]},{"path":[4,28,9,0],"span":[151,11,12]},{"path":[4,28,9,0,1],"span":[151,11,12]},{"path":[4,28,9,1],"span":[151,14,15]},{"path":[4,28,9,1,1],"span":[151,14,15]},{"path":[4,28,2,0],"span":[152,2,21]},{"path":[4,28,2,0,5],"span":[152,2,8]},{"path":[4,28,2,0,1],"span":[152,9,16]},{"path":[4,28,2,0,3],"span":[152,19,20]},{"path":[4,28,2,1],"span":[153,2,26]},{"path":[4,28,2,1,5],"span":[153,2,8]},{"path":[4,28,2,1,1],"span":[153,9,21]},{"path":[4,28,2,1,3],"span":[153,24,25]},{"path":[4,28,2,2],"span":[154,2,25]},{"path":[4,28,2,2,5],"span":[154,2,8]},{"path":[4,28,2,2,1],"span":[154,9,20]},{"path":[4,28,2,2,3],"span":[154,23,24]},{"path":[4,28,2,3],"span":[155,2,20]},{"path":[4,28,2,3,5],"span":[155,2,8]},{"path":[4,28,2,3,1],"span":[155,9,15]},{"path":[4,28,2,3,3],"span":[155,18,19]},{"path":[4,28,2,4],"span":[156,2,18]},{"path":[4,28,2,4,5],"span":[156,2,8]},{"path":[4,28,2,4,1],"span":[156,9,13]},{"path":[4,28,2,4,3],"span":[156,16,17]},{"path":[4,28,2,5],"span":[157,2,27]},{"path":[4,28,2,5,5],"span":[157,2,8]},{"path":[4,28,2,5,1],"span":[157,9,22]},{"path":[4,28,2,5,3],"span":[157,25,26]},{"path":[4,28,2,6],"span":[159,2,23]},{"path":[4,28,2,6,5],"span":[159,2,8]},{"path":[4,28,2,6,1],"span":[159,9,18]},{"path":[4,28,2,6,3],"span":[159,21,22]},{"path":[4,28,2,7],"span":[160,2,24]},{"path":[4,28,2,7,6],"span":[160,2,13]},{"path":[4,28,2,7,1],"span":[160,14,18]},{"path":[4,28,2,7,3],"span":[160,21,23]},{"path":[4,28,2,8],"span":[161,2,24]},{"path":[4,28,2,8,5],"span":[161,2,8]},{"path":[4,28,2,8,1],"span":[161,9,18]},{"path":[4,28,2,8,3],"span":[161,21,23]},{"path":[5,2],"span":[163,0,168,1]},{"path":[5,2,1],"span":[163,5,16]},{"path":[5,2,2,0],"span":[164,2,7]},{"path":[5,2,2,0,1],"span":[164,2,4]},{"path":[5,2,2,0,2],"span":[164,5,6]},{"path":[5,2,2,1],"span":[165,2,7]},{"path":[5,2,2,1,1],"span":[165,2,4]},{"path":[5,2,2,1,2],"span":[165,5,6]},{"path":[5,2,2,2],"span":[166,2,13]},{"path":[5,2,2,2,1],"span":[166,2,10]},{"path":[5,2,2,2,2],"span":[166,11,12]},{"path":[5,2,2,3],"span":[167,2,10]},{"path":[5,2,2,3,1],"span":[167,2,7]},{"path":[5,2,2,3,2],"span":[167,8,9]},{"path":[4,29],"span":[169,0,172,1]},{"path":[4,29,1],"span":[169,8,29]},{"path":[4,29,2,0],"span":[170,2,22]},{"path":[4,29,2,0,6],"span":[170,2,9]},{"path":[4,29,2,0,1],"span":[170,10,17]},{"path":[4,29,2,0,3],"span":[170,20,21]},{"path":[4,29,2,1],"span":[171,2,37]},{"path":[4,29,2,1,6],"span":[171,2,20]},{"path":[4,29,2,1,1],"span":[171,21,32]},{"path":[4,29,2,1,3],"span":[171,35,36]},{"path":[4,30],"span":[173,0,182,1]},{"path":[4,30,1],"span":[173,8,35]},{"path":[4,30,2,0],"span":[174,2,21]},{"path":[4,30,2,0,5],"span":[174,2,8]},{"path":[4,30,2,0,1],"span":[174,9,16]},{"path":[4,30,2,0,3],"span":[174,19,20]},{"path":[4,30,2,1],"span":[175,2,26]},{"path":[4,30,2,1,5],"span":[175,2,8]},{"path":[4,30,2,1,1],"span":[175,9,21]},{"path":[4,30,2,1,3],"span":[175,24,25]},{"path":[4,30,2,2],"span":[176,2,25]},{"path":[4,30,2,2,5],"span":[176,2,8]},{"path":[4,30,2,2,1],"span":[176,9,20]},{"path":[4,30,2,2,3],"span":[176,23,24]},{"path":[4,30,2,3],"span":[177,2,23]},{"path":[4,30,2,3,5],"span":[177,2,8]},{"path":[4,30,2,3,1],"span":[177,9,18]},{"path":[4,30,2,3,3],"span":[177,21,22]},{"path":[4,30,2,4],"span":[178,2,23]},{"path":[4,30,2,4,6],"span":[178,2,13]},{"path":[4,30,2,4,1],"span":[178,14,18]},{"path":[4,30,2,4,3],"span":[178,21,22]},{"path":[4,30,2,5],"span":[179,2,27]},{"path":[4,30,2,5,5],"span":[179,2,8]},{"path":[4,30,2,5,1],"span":[179,9,22]},{"path":[4,30,2,5,3],"span":[179,25,26]},{"path":[4,30,2,6],"span":[180,2,23]},{"path":[4,30,2,6,5],"span":[180,2,8]},{"path":[4,30,2,6,1],"span":[180,9,18]},{"path":[4,30,2,6,3],"span":[180,21,22]},{"path":[4,30,2,7],"span":[181,2,25]},{"path":[4,30,2,7,5],"span":[181,2,8]},{"path":[4,30,2,7,1],"span":[181,9,20]},{"path":[4,30,2,7,3],"span":[181,23,24]},{"path":[4,31],"span":[183,0,187,1]},{"path":[4,31,1],"span":[183,8,36]},{"path":[4,31,2,0],"span":[184,2,22]},{"path":[4,31,2,0,6],"span":[184,2,9]},{"path":[4,31,2,0,1],"span":[184,10,17]},{"path":[4,31,2,0,3],"span":[184,20,21]},{"path":[4,31,2,1],"span":[185,2,37]},{"path":[4,31,2,1,6],"span":[185,2,20]},{"path":[4,31,2,1,1],"span":[185,21,32]},{"path":[4,31,2,1,3],"span":[185,35,36]},{"path":[4,31,2,2],"span":[186,2,21]},{"path":[4,31,2,2,5],"span":[186,2,8]},{"path":[4,31,2,2,1],"span":[186,9,16]},{"path":[4,31,2,2,3],"span":[186,19,20]},{"path":[4,32],"span":[188,0,201,1]},{"path":[4,32,1],"span":[188,8,38]},{"path":[4,32,2,0],"span":[189,2,23]},{"path":[4,32,2,0,5],"span":[189,2,8]},{"path":[4,32,2,0,1],"span":[189,9,18]},{"path":[4,32,2,0,3],"span":[189,21,22]},{"path":[4,32,2,1],"span":[190,2,26]},{"path":[4,32,2,1,5],"span":[190,2,8]},{"path":[4,32,2,1,1],"span":[190,9,21]},{"path":[4,32,2,1,3],"span":[190,24,25]},{"path":[4,32,2,2],"span":[191,2,25]},{"path":[4,32,2,2,5],"span":[191,2,8]},{"path":[4,32,2,2,1],"span":[191,9,20]},{"path":[4,32,2,2,3],"span":[191,23,24]},{"path":[4,32,2,3],"span":[192,2,20]},{"path":[4,32,2,3,5],"span":[192,2,8]},{"path":[4,32,2,3,1],"span":[192,9,15]},{"path":[4,32,2,3,3],"span":[192,18,19]},{"path":[4,32,2,4],"span":[193,2,18]},{"path":[4,32,2,4,5],"span":[193,2,8]},{"path":[4,32,2,4,1],"span":[193,9,13]},{"path":[4,32,2,4,3],"span":[193,16,17]},{"path":[4,32,3,0],"span":[194,2,199,3]},{"path":[4,32,3,0,1],"span":[194,10,24]},{"path":[4,32,3,0,2,0],"span":[195,4,41]},{"path":[4,32,3,0,2,0,5],"span":[195,4,10]},{"path":[4,32,3,0,2,0,1],"span":[195,11,36]},{"path":[4,32,3,0,2,0,3],"span":[195,39,40]},{"path":[4,32,3,0,2,1],"span":[196,4,47]},{"path":[4,32,3,0,2,1,5],"span":[196,4,10]},{"path":[4,32,3,0,2,1,1],"span":[196,11,42]},{"path":[4,32,3,0,2,1,3],"span":[196,45,46]},{"path":[4,32,3,0,2,2],"span":[197,4,45]},{"path":[4,32,3,0,2,2,5],"span":[197,4,10]},{"path":[4,32,3,0,2,2,1],"span":[197,11,40]},{"path":[4,32,3,0,2,2,3],"span":[197,43,44]},{"path":[4,32,3,0,2,3],"span":[198,4,40]},{"path":[4,32,3,0,2,3,5],"span":[198,4,10]},{"path":[4,32,3,0,2,3,1],"span":[198,11,35]},{"path":[4,32,3,0,2,3,3],"span":[198,38,39]},{"path":[4,32,2,5],"span":[200,2,37]},{"path":[4,32,2,5,6],"span":[200,2,16]},{"path":[4,32,2,5,1],"span":[200,17,32]},{"path":[4,32,2,5,3],"span":[200,35,36]},{"path":[4,33],"span":[202,0,204,1]},{"path":[4,33,1],"span":[202,8,39]},{"path":[4,33,2,0],"span":[203,2,22]},{"path":[4,33,2,0,6],"span":[203,2,9]},{"path":[4,33,2,0,1],"span":[203,10,17]},{"path":[4,33,2,0,3],"span":[203,20,21]},{"path":[4,34],"span":[205,0,208,1]},{"path":[4,34,1],"span":[205,8,38]},{"path":[4,34,2,0],"span":[206,2,23]},{"path":[4,34,2,0,5],"span":[206,2,8]},{"path":[4,34,2,0,1],"span":[206,9,18]},{"path":[4,34,2,0,3],"span":[206,21,22]},{"path":[4,34,2,1],"span":[207,2,22]},{"path":[4,34,2,1,5],"span":[207,2,8]},{"path":[4,34,2,1,1],"span":[207,9,17]},{"path":[4,34,2,1,3],"span":[207,20,21]},{"path":[4,35],"span":[209,0,214,1]},{"path":[4,35,1],"span":[209,8,39]},{"path":[4,35,2,0],"span":[210,2,19]},{"path":[4,35,2,0,5],"span":[210,2,6]},{"path":[4,35,2,0,1],"span":[210,7,14]},{"path":[4,35,2,0,3],"span":[210,17,18]},{"path":[4,35,2,1],"span":[211,2,21]},{"path":[4,35,2,1,5],"span":[211,2,8]},{"path":[4,35,2,1,1],"span":[211,9,16]},{"path":[4,35,2,1,3],"span":[211,19,20]},{"path":[4,35,2,2],"span":[212,2,28]},{"path":[4,35,2,2,5],"span":[212,2,8]},{"path":[4,35,2,2,1],"span":[212,9,23]},{"path":[4,35,2,2,3],"span":[212,26,27]},{"path":[4,35,2,3],"span":[213,2,28]},{"path":[4,35,2,3,5],"span":[213,2,8]},{"path":[4,35,2,3,1],"span":[213,9,23]},{"path":[4,35,2,3,3],"span":[213,26,27]},{"path":[4,36],"span":[215,0,220,1]},{"path":[4,36,1],"span":[215,8,38]},{"path":[4,36,2,0],"span":[216,2,23]},{"path":[4,36,2,0,5],"span":[216,2,8]},{"path":[4,36,2,0,1],"span":[216,9,18]},{"path":[4,36,2,0,3],"span":[216,21,22]},{"path":[4,36,2,1],"span":[217,2,22]},{"path":[4,36,2,1,5],"span":[217,2,8]},{"path":[4,36,2,1,1],"span":[217,9,17]},{"path":[4,36,2,1,3],"span":[217,20,21]},{"path":[4,36,2,2],"span":[218,2,23]},{"path":[4,36,2,2,5],"span":[218,2,6]},{"path":[4,36,2,2,1],"span":[218,7,18]},{"path":[4,36,2,2,3],"span":[218,21,22]},{"path":[4,36,2,3],"span":[219,2,23]},{"path":[4,36,2,3,5],"span":[219,2,6]},{"path":[4,36,2,3,1],"span":[219,7,18]},{"path":[4,36,2,3,3],"span":[219,21,22]},{"path":[4,37],"span":[221,0,223,1]},{"path":[4,37,1],"span":[221,8,39]},{"path":[4,37,2,0],"span":[222,2,19]},{"path":[4,37,2,0,5],"span":[222,2,6]},{"path":[4,37,2,0,1],"span":[222,7,14]},{"path":[4,37,2,0,3],"span":[222,17,18]},{"path":[4,38],"span":[224,0,230,1]},{"path":[4,38,1],"span":[224,8,41]},{"path":[4,38,2,0],"span":[225,2,23]},{"path":[4,38,2,0,5],"span":[225,2,8]},{"path":[4,38,2,0,1],"span":[225,9,18]},{"path":[4,38,2,0,3],"span":[225,21,22]},{"path":[4,38,2,1],"span":[226,2,26]},{"path":[4,38,2,1,5],"span":[226,2,8]},{"path":[4,38,2,1,1],"span":[226,9,21]},{"path":[4,38,2,1,3],"span":[226,24,25]},{"path":[4,38,2,2],"span":[227,2,25]},{"path":[4,38,2,2,5],"span":[227,2,8]},{"path":[4,38,2,2,1],"span":[227,9,20]},{"path":[4,38,2,2,3],"span":[227,23,24]},{"path":[4,38,2,3],"span":[228,2,23]},{"path":[4,38,2,3,5],"span":[228,2,8]},{"path":[4,38,2,3,1],"span":[228,9,18]},{"path":[4,38,2,3,3],"span":[228,21,22]},{"path":[4,38,2,4],"span":[229,2,23]},{"path":[4,38,2,4,6],"span":[229,2,13]},{"path":[4,38,2,4,1],"span":[229,14,18]},{"path":[4,38,2,4,3],"span":[229,21,22]},{"path":[4,39],"span":[231,0,236,1]},{"path":[4,39,1],"span":[231,8,42]},{"path":[4,39,2,0],"span":[232,2,22]},{"path":[4,39,2,0,6],"span":[232,2,9]},{"path":[4,39,2,0,1],"span":[232,10,17]},{"path":[4,39,2,0,3],"span":[232,20,21]},{"path":[4,39,2,1],"span":[233,2,37]},{"path":[4,39,2,1,6],"span":[233,2,20]},{"path":[4,39,2,1,1],"span":[233,21,32]},{"path":[4,39,2,1,3],"span":[233,35,36]},{"path":[4,39,2,2],"span":[234,2,23]},{"path":[4,39,2,2,6],"span":[234,2,13]},{"path":[4,39,2,2,1],"span":[234,14,18]},{"path":[4,39,2,2,3],"span":[234,21,22]},{"path":[4,39,2,3],"span":[235,2,21]},{"path":[4,39,2,3,5],"span":[235,2,8]},{"path":[4,39,2,3,1],"span":[235,9,16]},{"path":[4,39,2,3,3],"span":[235,19,20]},{"path":[4,40],"span":[237,0,241,1]},{"path":[4,40,1],"span":[237,8,40]},{"path":[4,40,2,0],"span":[238,2,21]},{"path":[4,40,2,0,5],"span":[238,2,8]},{"path":[4,40,2,0,1],"span":[238,9,16]},{"path":[4,40,2,0,3],"span":[238,19,20]},{"path":[4,40,2,1],"span":[239,2,34]},{"path":[4,40,2,1,4],"span":[239,2,10]},{"path":[4,40,2,1,5],"span":[239,11,17]},{"path":[4,40,2,1,1],"span":[239,18,29]},{"path":[4,40,2,1,3],"span":[239,32,33]},{"path":[4,40,2,2],"span":[240,2,21]},{"path":[4,40,2,2,5],"span":[240,2,8]},{"path":[4,40,2,2,1],"span":[240,9,16]},{"path":[4,40,2,2,3],"span":[240,19,20]},{"path":[4,41],"span":[242,0,248,1]},{"path":[4,41,1],"span":[242,8,41]},{"path":[4,41,3,0],"span":[243,2,246,3]},{"path":[4,41,3,0,1],"span":[243,10,16]},{"path":[4,41,3,0,2,0],"span":[244,4,26]},{"path":[4,41,3,0,2,0,5],"span":[244,4,10]},{"path":[4,41,3,0,2,0,1],"span":[244,11,21]},{"path":[4,41,3,0,2,0,3],"span":[244,24,25]},{"path":[4,41,3,0,2,1],"span":[245,4,20]},{"path":[4,41,3,0,2,1,5],"span":[245,4,8]},{"path":[4,41,3,0,2,1,1],"span":[245,9,15]},{"path":[4,41,3,0,2,1,3],"span":[245,18,19]},{"path":[4,41,2,0],"span":[247,2,29]},{"path":[4,41,2,0,4],"span":[247,2,10]},{"path":[4,41,2,0,6],"span":[247,11,17]},{"path":[4,41,2,0,1],"span":[247,18,24]},{"path":[4,41,2,0,3],"span":[247,27,28]},{"path":[4,42],"span":[249,0,252,1]},{"path":[4,42,1],"span":[249,8,46]},{"path":[4,42,2,0],"span":[250,2,21]},{"path":[4,42,2,0,5],"span":[250,2,8]},{"path":[4,42,2,0,1],"span":[250,9,16]},{"path":[4,42,2,0,3],"span":[250,19,20]},{"path":[4,42,2,1],"span":[251,2,23]},{"path":[4,42,2,1,5],"span":[251,2,8]},{"path":[4,42,2,1,1],"span":[251,9,18]},{"path":[4,42,2,1,3],"span":[251,21,22]},{"path":[4,43],"span":[253,0,255,1]},{"path":[4,43,1],"span":[253,8,47]},{"path":[4,43,2,0],"span":[254,2,31]},{"path":[4,43,2,0,4],"span":[254,2,10]},{"path":[4,43,2,0,6],"span":[254,11,18]},{"path":[4,43,2,0,1],"span":[254,19,26]},{"path":[4,43,2,0,3],"span":[254,29,30]},{"path":[4,44],"span":[256,0,259,1]},{"path":[4,44,1],"span":[256,8,33]},{"path":[4,44,2,0],"span":[257,2,21]},{"path":[4,44,2,0,5],"span":[257,2,8]},{"path":[4,44,2,0,1],"span":[257,9,16]},{"path":[4,44,2,0,3],"span":[257,19,20]},{"path":[4,44,2,1],"span":[258,2,24]},{"path":[4,44,2,1,5],"span":[258,2,8]},{"path":[4,44,2,1,1],"span":[258,9,19]},{"path":[4,44,2,1,3],"span":[258,22,23]},{"path":[4,45],"span":[260,0,275,1]},{"path":[4,45,1],"span":[260,8,34]},{"path":[4,45,3,0],"span":[261,2,264,3]},{"path":[4,45,3,0,1],"span":[261,10,29]},{"path":[4,45,3,0,2,0],"span":[262,4,19]},{"path":[4,45,3,0,2,0,5],"span":[262,4,10]},{"path":[4,45,3,0,2,0,1],"span":[262,11,14]},{"path":[4,45,3,0,2,0,3],"span":[262,17,18]},{"path":[4,45,3,0,2,1],"span":[263,4,34]},{"path":[4,45,3,0,2,1,5],"span":[263,4,9]},{"path":[4,45,3,0,2,1,1],"span":[263,10,29]},{"path":[4,45,3,0,2,1,3],"span":[263,32,33]},{"path":[4,45,3,1],"span":[265,2,267,3]},{"path":[4,45,3,1,1],"span":[265,10,15]},{"path":[4,45,3,1,2,0],"span":[266,4,18]},{"path":[4,45,3,1,2,0,5],"span":[266,4,10]},{"path":[4,45,3,1,2,0,1],"span":[266,11,13]},{"path":[4,45,3,1,2,0,3],"span":[266,16,17]},{"path":[4,45,3,2],"span":[268,2,273,3]},{"path":[4,45,3,2,1],"span":[268,10,14]},{"path":[4,45,3,2,2,0],"span":[269,4,18]},{"path":[4,45,3,2,2,0,5],"span":[269,4,10]},{"path":[4,45,3,2,2,0,1],"span":[269,11,13]},{"path":[4,45,3,2,2,0,3],"span":[269,16,17]},{"path":[4,45,3,2,2,1],"span":[270,4,45]},{"path":[4,45,3,2,2,1,4],"span":[270,4,12]},{"path":[4,45,3,2,2,1,6],"span":[270,13,32]},{"path":[4,45,3,2,2,1,1],"span":[270,33,40]},{"path":[4,45,3,2,2,1,3],"span":[270,43,44]},{"path":[4,45,3,2,2,2],"span":[271,4,39]},{"path":[4,45,3,2,2,2,4],"span":[271,4,12]},{"path":[4,45,3,2,2,2,6],"span":[271,13,20]},{"path":[4,45,3,2,2,2,1],"span":[271,21,34]},{"path":[4,45,3,2,2,2,3],"span":[271,37,38]},{"path":[4,45,3,2,2,3],"span":[272,4,30]},{"path":[4,45,3,2,2,3,4],"span":[272,4,12]},{"path":[4,45,3,2,2,3,6],"span":[272,13,18]},{"path":[4,45,3,2,2,3,1],"span":[272,19,25]},{"path":[4,45,3,2,2,3,3],"span":[272,28,29]},{"path":[4,45,2,0],"span":[274,2,26]},{"path":[4,45,2,0,4],"span":[274,2,10]},{"path":[4,45,2,0,6],"span":[274,11,15]},{"path":[4,45,2,0,1],"span":[274,16,21]},{"path":[4,45,2,0,3],"span":[274,24,25]},{"path":[4,46],"span":[276,0,278,1]},{"path":[4,46,1],"span":[276,8,53]},{"path":[4,46,2,0],"span":[277,2,35]},{"path":[4,46,2,0,5],"span":[277,2,8]},{"path":[4,46,2,0,1],"span":[277,9,30]},{"path":[4,46,2,0,3],"span":[277,33,34]},{"path":[4,47],"span":[279,0,282,1]},{"path":[4,47,1],"span":[279,8,54]},{"path":[4,47,2,0],"span":[280,2,21]},{"path":[4,47,2,0,5],"span":[280,2,8]},{"path":[4,47,2,0,1],"span":[280,9,16]},{"path":[4,47,2,0,3],"span":[280,19,20]},{"path":[4,47,2,1],"span":[281,2,28]},{"path":[4,47,2,1,5],"span":[281,2,8]},{"path":[4,47,2,1,1],"span":[281,9,23]},{"path":[4,47,2,1,3],"span":[281,26,27]},{"path":[4,48],"span":[283,0,300,1]},{"path":[4,48,1],"span":[283,8,34]},{"path":[4,48,2,0],"span":[284,2,30]},{"path":[4,48,2,0,5],"span":[284,2,8]},{"path":[4,48,2,0,1],"span":[284,9,25]},{"path":[4,48,2,0,3],"span":[284,28,29]},{"path":[4,48,2,1],"span":[285,2,39]},{"path":[4,48,2,1,5],"span":[285,2,8]},{"path":[4,48,2,1,1],"span":[285,9,14]},{"path":[4,48,2,1,3],"span":[285,17,18]},{"path":[4,48,2,1,8],"span":[285,19,38]},{"path":[4,48,2,1,8,3],"span":[285,20,37]},{"path":[4,48,3,0],"span":[287,2,292,3]},{"path":[4,48,3,0,1],"span":[287,10,22]},{"path":[4,48,3,0,2,0],"span":[288,4,20]},{"path":[4,48,3,0,2,0,5],"span":[288,4,10]},{"path":[4,48,3,0,2,0,1],"span":[288,11,15]},{"path":[4,48,3,0,2,0,3],"span":[288,18,19]},{"path":[4,48,3,0,2,1],"span":[289,4,44]},{"path":[4,48,3,0,2,1,5],"span":[289,4,10]},{"path":[4,48,3,0,2,1,1],"span":[289,11,19]},{"path":[4,48,3,0,2,1,3],"span":[289,22,23]},{"path":[4,48,3,0,2,1,8],"span":[289,24,43]},{"path":[4,48,3,0,2,1,8,3],"span":[289,25,42]},{"path":[4,48,3,0,2,2],"span":[290,4,25]},{"path":[4,48,3,0,2,2,5],"span":[290,4,10]},{"path":[4,48,3,0,2,2,1],"span":[290,11,20]},{"path":[4,48,3,0,2,2,3],"span":[290,23,24]},{"path":[4,48,3,0,2,3],"span":[291,4,23]},{"path":[4,48,3,0,2,3,5],"span":[291,4,10]},{"path":[4,48,3,0,2,3,1],"span":[291,11,18]},{"path":[4,48,3,0,2,3,3],"span":[291,21,22]},{"path":[4,48,2,2],"span":[293,2,35]},{"path":[4,48,2,2,4],"span":[293,2,10]},{"path":[4,48,2,2,6],"span":[293,11,23]},{"path":[4,48,2,2,1],"span":[293,24,30]},{"path":[4,48,2,2,3],"span":[293,33,34]},{"path":[4,48,2,3],"span":[295,2,25]},{"path":[4,48,2,3,5],"span":[295,2,8]},{"path":[4,48,2,3,1],"span":[295,9,20]},{"path":[4,48,2,3,3],"span":[295,23,24]},{"path":[4,48,2,4],"span":[296,2,26]},{"path":[4,48,2,4,5],"span":[296,2,8]},{"path":[4,48,2,4,1],"span":[296,9,21]},{"path":[4,48,2,4,3],"span":[296,24,25]},{"path":[4,48,2,5],"span":[297,2,45]},{"path":[4,48,2,5,5],"span":[297,2,8]},{"path":[4,48,2,5,1],"span":[297,9,20]},{"path":[4,48,2,5,3],"span":[297,23,24]},{"path":[4,48,2,5,8],"span":[297,25,44]},{"path":[4,48,2,5,8,3],"span":[297,26,43]},{"path":[4,48,2,6],"span":[298,2,24]},{"path":[4,48,2,6,5],"span":[298,2,8]},{"path":[4,48,2,6,1],"span":[298,9,19]},{"path":[4,48,2,6,3],"span":[298,22,23]},{"path":[4,48,2,7],"span":[299,2,28]},{"path":[4,48,2,7,5],"span":[299,2,8]},{"path":[4,48,2,7,1],"span":[299,9,23]},{"path":[4,48,2,7,3],"span":[299,26,27]},{"path":[4,49],"span":[301,0,303,1]},{"path":[4,49,1],"span":[301,8,35]},{"path":[4,49,2,0],"span":[302,2,21]},{"path":[4,49,2,0,5],"span":[302,2,6]},{"path":[4,49,2,0,1],"span":[302,7,16]},{"path":[4,49,2,0,3],"span":[302,19,20]},{"path":[4,50],"span":[304,0,306,1]},{"path":[4,50,1],"span":[304,8,12]},{"path":[4,50,2,0],"span":[305,2,16]},{"path":[4,50,2,0,5],"span":[305,2,8]},{"path":[4,50,2,0,1],"span":[305,9,11]},{"path":[4,50,2,0,3],"span":[305,14,15]},{"path":[4,51],"span":[307,0,310,1]},{"path":[4,51,1],"span":[307,8,30]},{"path":[4,51,2,0],"span":[308,2,28]},{"path":[4,51,2,0,5],"span":[308,2,8]},{"path":[4,51,2,0,1],"span":[308,9,23]},{"path":[4,51,2,0,3],"span":[308,26,27]},{"path":[4,51,2,1],"span":[309,2,22]},{"path":[4,51,2,1,5],"span":[309,2,8]},{"path":[4,51,2,1,1],"span":[309,9,17]},{"path":[4,51,2,1,3],"span":[309,20,21]},{"path":[4,52],"span":[311,0,313,1]},{"path":[4,52,1],"span":[311,8,31]},{"path":[4,52,2,0],"span":[312,2,25]},{"path":[4,52,2,0,4],"span":[312,2,10]},{"path":[4,52,2,0,6],"span":[312,11,15]},{"path":[4,52,2,0,1],"span":[312,16,20]},{"path":[4,52,2,0,3],"span":[312,23,24]},{"path":[4,53],"span":[314,0,316,1]},{"path":[4,53,1],"span":[314,8,36]},{"path":[4,53,2,0],"span":[315,2,21]},{"path":[4,53,2,0,5],"span":[315,2,8]},{"path":[4,53,2,0,1],"span":[315,9,16]},{"path":[4,53,2,0,3],"span":[315,19,20]},{"path":[4,54],"span":[317,0,319,1]},{"path":[4,54,1],"span":[317,8,37]},{"path":[4,54,2,0],"span":[318,2,34]},{"path":[4,54,2,0,4],"span":[318,2,10]},{"path":[4,54,2,0,5],"span":[318,11,17]},{"path":[4,54,2,0,1],"span":[318,18,29]},{"path":[4,54,2,0,3],"span":[318,32,33]},{"path":[4,55],"span":[320,0,323,1]},{"path":[4,55,1],"span":[320,8,40]},{"path":[4,55,2,0],"span":[321,2,28]},{"path":[4,55,2,0,5],"span":[321,2,8]},{"path":[4,55,2,0,1],"span":[321,9,23]},{"path":[4,55,2,0,3],"span":[321,26,27]},{"path":[4,55,2,1],"span":[322,2,24]},{"path":[4,55,2,1,5],"span":[322,2,8]},{"path":[4,55,2,1,1],"span":[322,9,19]},{"path":[4,55,2,1,3],"span":[322,22,23]},{"path":[4,56],"span":[324,0,326,1]},{"path":[4,56,1],"span":[324,8,41]},{"path":[4,56,2,0],"span":[325,2,22]},{"path":[4,56,2,0,5],"span":[325,2,6]},{"path":[4,56,2,0,1],"span":[325,7,17]},{"path":[4,56,2,0,3],"span":[325,20,21]},{"path":[5,3],"span":[327,0,334,1]},{"path":[5,3,1],"span":[327,5,21]},{"path":[5,3,2,0],"span":[328,2,43]},{"path":[5,3,2,0,1],"span":[328,2,38]},{"path":[5,3,2,0,2],"span":[328,41,42]},{"path":[5,3,2,1],"span":[329,2,36]},{"path":[5,3,2,1,1],"span":[329,2,31]},{"path":[5,3,2,1,2],"span":[329,34,35]},{"path":[5,3,2,2],"span":[330,2,39]},{"path":[5,3,2,2,1],"span":[330,2,34]},{"path":[5,3,2,2,2],"span":[330,37,38]},{"path":[5,3,2,3],"span":[331,2,38]},{"path":[5,3,2,3,1],"span":[331,2,33]},{"path":[5,3,2,3,2],"span":[331,36,37]},{"path":[5,3,2,4],"span":[332,2,34]},{"path":[5,3,2,4,1],"span":[332,2,29]},{"path":[5,3,2,4,2],"span":[332,32,33]},{"path":[5,3,2,5],"span":[333,2,41]},{"path":[5,3,2,5,1],"span":[333,2,36]},{"path":[5,3,2,5,2],"span":[333,39,40]},{"path":[4,57],"span":[335,0,343,1]},{"path":[4,57,1],"span":[335,8,20]},{"path":[4,57,2,0],"span":[336,2,16]},{"path":[4,57,2,0,5],"span":[336,2,8]},{"path":[4,57,2,0,1],"span":[336,9,11]},{"path":[4,57,2,0,3],"span":[336,14,15]},{"path":[4,57,2,1],"span":[337,2,21]},{"path":[4,57,2,1,5],"span":[337,2,8]},{"path":[4,57,2,1,1],"span":[337,9,16]},{"path":[4,57,2,1,3],"span":[337,19,20]},{"path":[4,57,2,2],"span":[338,2,28]},{"path":[4,57,2,2,6],"span":[338,2,18]},{"path":[4,57,2,2,1],"span":[338,19,23]},{"path":[4,57,2,2,3],"span":[338,26,27]},{"path":[4,57,2,3],"span":[339,2,25]},{"path":[4,57,2,3,5],"span":[339,2,7]},{"path":[4,57,2,3,1],"span":[339,8,20]},{"path":[4,57,2,3,3],"span":[339,23,24]},{"path":[4,57,2,4],"span":[340,2,29]},{"path":[4,57,2,4,5],"span":[340,2,8]},{"path":[4,57,2,4,1],"span":[340,9,24]},{"path":[4,57,2,4,3],"span":[340,27,28]},{"path":[4,57,2,5],"span":[341,2,24]},{"path":[4,57,2,5,5],"span":[341,2,8]},{"path":[4,57,2,5,1],"span":[341,9,19]},{"path":[4,57,2,5,3],"span":[341,22,23]},{"path":[4,57,2,6],"span":[342,2,24]},{"path":[4,57,2,6,5],"span":[342,2,8]},{"path":[4,57,2,6,1],"span":[342,9,19]},{"path":[4,57,2,6,3],"span":[342,22,23]},{"path":[4,58],"span":[344,0,350,1]},{"path":[4,58,1],"span":[344,8,37]},{"path":[4,58,2,0],"span":[345,2,21]},{"path":[4,58,2,0,5],"span":[345,2,8]},{"path":[4,58,2,0,1],"span":[345,9,16]},{"path":[4,58,2,0,3],"span":[345,19,20]},{"path":[4,58,2,1],"span":[346,2,28]},{"path":[4,58,2,1,6],"span":[346,2,18]},{"path":[4,58,2,1,1],"span":[346,19,23]},{"path":[4,58,2,1,3],"span":[346,26,27]},{"path":[4,58,2,2],"span":[347,2,25]},{"path":[4,58,2,2,5],"span":[347,2,7]},{"path":[4,58,2,2,1],"span":[347,8,20]},{"path":[4,58,2,2,3],"span":[347,23,24]},{"path":[4,58,2,3],"span":[348,2,29]},{"path":[4,58,2,3,5],"span":[348,2,8]},{"path":[4,58,2,3,1],"span":[348,9,24]},{"path":[4,58,2,3,3],"span":[348,27,28]},{"path":[4,58,2,4],"span":[349,2,24]},{"path":[4,58,2,4,5],"span":[349,2,8]},{"path":[4,58,2,4,1],"span":[349,9,19]},{"path":[4,58,2,4,3],"span":[349,22,23]},{"path":[4,59],"span":[351,0,353,1]},{"path":[4,59,1],"span":[351,8,38]},{"path":[4,59,2,0],"span":[352,2,32]},{"path":[4,59,2,0,6],"span":[352,2,14]},{"path":[4,59,2,0,1],"span":[352,15,27]},{"path":[4,59,2,0,3],"span":[352,30,31]},{"path":[4,60],"span":[354,0,356,1]},{"path":[4,60,1],"span":[354,8,42]},{"path":[4,60,2,0],"span":[355,2,21]},{"path":[4,60,2,0,5],"span":[355,2,8]},{"path":[4,60,2,0,1],"span":[355,9,16]},{"path":[4,60,2,0,3],"span":[355,19,20]},{"path":[4,61],"span":[357,0,359,1]},{"path":[4,61,1],"span":[357,8,43]},{"path":[4,61,2,0],"span":[358,2,35]},{"path":[4,61,2,0,5],"span":[358,2,8]},{"path":[4,61,2,0,1],"span":[358,9,30]},{"path":[4,61,2,0,3],"span":[358,33,34]},{"path":[4,62],"span":[360,0,362,1]},{"path":[4,62,1],"span":[360,8,47]},{"path":[4,62,2,0],"span":[361,2,23]},{"path":[4,62,2,0,5],"span":[361,2,8]},{"path":[4,62,2,0,1],"span":[361,9,18]},{"path":[4,62,2,0,3],"span":[361,21,22]},{"path":[4,63],"span":[363,0,365,1]},{"path":[4,63,1],"span":[363,8,48]},{"path":[4,63,2,0],"span":[364,2,21]},{"path":[4,63,2,0,5],"span":[364,2,8]},{"path":[4,63,2,0,1],"span":[364,9,16]},{"path":[4,63,2,0,3],"span":[364,19,20]},{"path":[4,64],"span":[366,0,370,1]},{"path":[4,64,1],"span":[366,8,31]},{"path":[4,64,7],"span":[367,2,27]},{"path":[4,64,7,3],"span":[367,2,27]},{"path":[4,64,2,0],"span":[368,2,21]},{"path":[4,64,2,0,5],"span":[368,2,8]},{"path":[4,64,2,0,1],"span":[368,9,16]},{"path":[4,64,2,0,3],"span":[368,19,20]},{"path":[4,64,2,1],"span":[369,2,29]},{"path":[4,64,2,1,4],"span":[369,2,10]},{"path":[4,64,2,1,5],"span":[369,11,17]},{"path":[4,64,2,1,1],"span":[369,18,24]},{"path":[4,64,2,1,3],"span":[369,27,28]},{"path":[4,65],"span":[371,0,374,1]},{"path":[4,65,1],"span":[371,8,32]},{"path":[4,65,7],"span":[372,2,27]},{"path":[4,65,7,3],"span":[372,2,27]},{"path":[4,65,2,0],"span":[373,2,15]},{"path":[4,65,2,0,5],"span":[373,2,6]},{"path":[4,65,2,0,1],"span":[373,7,10]},{"path":[4,65,2,0,3],"span":[373,13,14]},{"path":[4,66],"span":[375,0,378,1]},{"path":[4,66,1],"span":[375,8,31]},{"path":[4,66,2,0],"span":[376,2,21]},{"path":[4,66,2,0,5],"span":[376,2,8]},{"path":[4,66,2,0,1],"span":[376,9,16]},{"path":[4,66,2,0,3],"span":[376,19,20]},{"path":[4,66,2,1],"span":[377,2,29]},{"path":[4,66,2,1,4],"span":[377,2,10]},{"path":[4,66,2,1,5],"span":[377,11,17]},{"path":[4,66,2,1,1],"span":[377,18,24]},{"path":[4,66,2,1,3],"span":[377,27,28]},{"path":[4,67],"span":[379,0,383,1]},{"path":[4,67,1],"span":[379,8,32]},{"path":[4,67,2,0],"span":[380,2,15]},{"path":[4,67,2,0,5],"span":[380,2,6]},{"path":[4,67,2,0,1],"span":[380,7,10]},{"path":[4,67,2,0,3],"span":[380,13,14]},{"path":[4,67,2,1],"span":[381,2,32]},{"path":[4,67,2,1,4],"span":[381,2,10]},{"path":[4,67,2,1,6],"span":[381,11,18]},{"path":[4,67,2,1,1],"span":[381,19,27]},{"path":[4,67,2,1,3],"span":[381,30,31]},{"path":[4,67,2,2],"span":[382,2,31]},{"path":[4,67,2,2,6],"span":[382,2,16]},{"path":[4,67,2,2,1],"span":[382,17,26]},{"path":[4,67,2,2,3],"span":[382,29,30]},{"path":[4,68],"span":[384,0,386,1]},{"path":[4,68,1],"span":[384,8,39]},{"path":[4,68,2,0],"span":[385,2,21]},{"path":[4,68,2,0,5],"span":[385,2,8]},{"path":[4,68,2,0,1],"span":[385,9,16]},{"path":[4,68,2,0,3],"span":[385,19,20]},{"path":[4,69],"span":[387,0,389,1]},{"path":[4,69,1],"span":[387,8,40]},{"path":[4,69,2,0],"span":[388,2,16]},{"path":[4,69,2,0,5],"span":[388,2,6]},{"path":[4,69,2,0,1],"span":[388,7,11]},{"path":[4,69,2,0,3],"span":[388,14,15]},{"path":[4,70],"span":[390,0,392,1]},{"path":[4,70,1],"span":[390,8,34]},{"path":[4,70,2,0],"span":[391,2,21]},{"path":[4,70,2,0,5],"span":[391,2,8]},{"path":[4,70,2,0,1],"span":[391,9,16]},{"path":[4,70,2,0,3],"span":[391,19,20]},{"path":[4,71],"span":[393,0,395,1]},{"path":[4,71,1],"span":[393,8,35]},{"path":[4,71,2,0],"span":[394,2,28]},{"path":[4,71,2,0,6],"span":[394,2,18]},{"path":[4,71,2,0,1],"span":[394,19,23]},{"path":[4,71,2,0,3],"span":[394,26,27]},{"path":[4,72],"span":[396,0,399,1]},{"path":[4,72,1],"span":[396,8,32]},{"path":[4,72,2,0],"span":[397,2,21]},{"path":[4,72,2,0,5],"span":[397,2,8]},{"path":[4,72,2,0,1],"span":[397,9,16]},{"path":[4,72,2,0,3],"span":[397,19,20]},{"path":[4,72,2,1],"span":[398,2,24]},{"path":[4,72,2,1,5],"span":[398,2,8]},{"path":[4,72,2,1,1],"span":[398,9,19]},{"path":[4,72,2,1,3],"span":[398,22,23]},{"path":[4,73],"span":[400,0,402,1]},{"path":[4,73,1],"span":[400,8,33]},{"path":[4,73,2,0],"span":[401,2,18]},{"path":[4,73,2,0,5],"span":[401,2,8]},{"path":[4,73,2,0,1],"span":[401,9,13]},{"path":[4,73,2,0,3],"span":[401,16,17]},{"path":[4,74],"span":[403,0,405,1]},{"path":[4,74,1],"span":[403,8,37]},{"path":[4,74,2,0],"span":[404,4,33]},{"path":[4,74,2,0,4],"span":[404,4,12]},{"path":[4,74,2,0,5],"span":[404,13,19]},{"path":[4,74,2,0,1],"span":[404,20,28]},{"path":[4,74,2,0,3],"span":[404,31,32]},{"path":[4,75],"span":[406,0,408,1]},{"path":[4,75,1],"span":[406,8,47]},{"path":[4,75,2,0],"span":[407,2,21]},{"path":[4,75,2,0,5],"span":[407,2,8]},{"path":[4,75,2,0,1],"span":[407,9,16]},{"path":[4,75,2,0,3],"span":[407,19,20]},{"path":[4,76],"span":[409,0,411,1]},{"path":[4,76,1],"span":[409,8,48]},{"path":[4,76,2,0],"span":[410,2,22]},{"path":[4,76,2,0,5],"span":[410,2,6]},{"path":[4,76,2,0,1],"span":[410,7,17]},{"path":[4,76,2,0,3],"span":[410,20,21]},{"path":[4,77],"span":[412,0,416,1]},{"path":[4,77,1],"span":[412,8,33]},{"path":[4,77,2,0],"span":[413,2,21]},{"path":[4,77,2,0,5],"span":[413,2,8]},{"path":[4,77,2,0,1],"span":[413,9,16]},{"path":[4,77,2,0,3],"span":[413,19,20]},{"path":[4,77,2,1],"span":[414,2,17]},{"path":[4,77,2,1,5],"span":[414,2,8]},{"path":[4,77,2,1,1],"span":[414,9,12]},{"path":[4,77,2,1,3],"span":[414,15,16]},{"path":[4,77,2,2],"span":[415,2,19]},{"path":[4,77,2,2,5],"span":[415,2,8]},{"path":[4,77,2,2,1],"span":[415,9,14]},{"path":[4,77,2,2,3],"span":[415,17,18]},{"path":[4,78],"span":[417,0,419,1]},{"path":[4,78,1],"span":[417,8,34]},{"path":[4,78,2,0],"span":[418,2,19]},{"path":[4,78,2,0,5],"span":[418,2,6]},{"path":[4,78,2,0,1],"span":[418,7,14]},{"path":[4,78,2,0,3],"span":[418,17,18]},{"path":[4,79],"span":[421,0,423,1]},{"path":[4,79,1],"span":[421,8,28]},{"path":[4,79,2,0],"span":[422,2,31]},{"path":[4,79,2,0,4],"span":[422,2,10]},{"path":[4,79,2,0,5],"span":[422,11,17]},{"path":[4,79,2,0,1],"span":[422,18,26]},{"path":[4,79,2,0,3],"span":[422,29,30]},{"path":[4,80],"span":[425,0,427,1]},{"path":[4,80,1],"span":[425,8,29]},{"path":[4,80,2,0],"span":[426,2,70]},{"path":[4,80,2,0,6],"span":[426,2,53]},{"path":[4,80,2,0,1],"span":[426,54,65]},{"path":[4,80,2,0,3],"span":[426,68,69]},{"path":[6,0],"span":[429,0,472,1]},{"path":[6,0,1],"span":[429,8,19]},{"path":[6,0,2,0],"span":[430,2,121]},{"path":[6,0,2,0,1],"span":[430,6,34]},{"path":[6,0,2,0,2],"span":[430,35,70]},{"path":[6,0,2,0,3],"span":[430,81,117]},{"path":[6,0,2,1],"span":[431,2,118]},{"path":[6,0,2,1,1],"span":[431,6,33]},{"path":[6,0,2,1,2],"span":[431,34,68]},{"path":[6,0,2,1,3],"span":[431,79,114]},{"path":[6,0,2,2],"span":[432,2,100]},{"path":[6,0,2,2,1],"span":[432,6,27]},{"path":[6,0,2,2,2],"span":[432,28,56]},{"path":[6,0,2,2,3],"span":[432,67,96]},{"path":[6,0,2,3],"span":[433,2,106]},{"path":[6,0,2,3,1],"span":[433,6,29]},{"path":[6,0,2,3,2],"span":[433,30,60]},{"path":[6,0,2,3,3],"span":[433,71,102]},{"path":[6,0,2,4],"span":[435,2,115]},{"path":[6,0,2,4,1],"span":[435,6,32]},{"path":[6,0,2,4,2],"span":[435,33,66]},{"path":[6,0,2,4,3],"span":[435,77,111]},{"path":[6,0,2,5],"span":[436,2,76]},{"path":[6,0,2,5,1],"span":[436,6,19]},{"path":[6,0,2,5,2],"span":[436,20,40]},{"path":[6,0,2,5,3],"span":[436,51,72]},{"path":[6,0,2,6],"span":[437,2,76]},{"path":[6,0,2,6,1],"span":[437,6,19]},{"path":[6,0,2,6,2],"span":[437,20,40]},{"path":[6,0,2,6,3],"span":[437,51,72]},{"path":[6,0,2,7],"span":[438,2,97]},{"path":[6,0,2,7,1],"span":[438,6,26]},{"path":[6,0,2,7,2],"span":[438,27,54]},{"path":[6,0,2,7,3],"span":[438,65,93]},{"path":[6,0,2,8],"span":[439,2,88]},{"path":[6,0,2,8,1],"span":[439,6,23]},{"path":[6,0,2,8,2],"span":[439,24,48]},{"path":[6,0,2,8,3],"span":[439,59,84]},{"path":[6,0,2,9],"span":[440,2,118]},{"path":[6,0,2,9,1],"span":[440,6,33]},{"path":[6,0,2,9,2],"span":[440,34,68]},{"path":[6,0,2,9,3],"span":[440,79,114]},{"path":[6,0,2,10],"span":[441,2,82]},{"path":[6,0,2,10,1],"span":[441,6,21]},{"path":[6,0,2,10,2],"span":[441,22,44]},{"path":[6,0,2,10,3],"span":[441,55,78]},{"path":[6,0,2,11],"span":[442,2,97]},{"path":[6,0,2,11,1],"span":[442,6,28]},{"path":[6,0,2,11,2],"span":[442,29,58]},{"path":[6,0,2,11,3],"span":[442,69,93]},{"path":[6,0,2,12],"span":[443,2,97]},{"path":[6,0,2,12,1],"span":[443,6,26]},{"path":[6,0,2,12,2],"span":[443,27,54]},{"path":[6,0,2,12,3],"span":[443,65,93]},{"path":[6,0,2,13],"span":[444,2,106]},{"path":[6,0,2,13,1],"span":[444,6,29]},{"path":[6,0,2,13,2],"span":[444,30,60]},{"path":[6,0,2,13,3],"span":[444,71,102]},{"path":[6,0,2,14],"span":[445,2,106]},{"path":[6,0,2,14,1],"span":[445,6,29]},{"path":[6,0,2,14,2],"span":[445,30,60]},{"path":[6,0,2,14,3],"span":[445,71,102]},{"path":[6,0,2,15],"span":[446,2,115]},{"path":[6,0,2,15,1],"span":[446,6,32]},{"path":[6,0,2,15,2],"span":[446,33,66]},{"path":[6,0,2,15,3],"span":[446,77,111]},{"path":[6,0,2,16],"span":[447,2,106]},{"path":[6,0,2,16,1],"span":[447,6,29]},{"path":[6,0,2,16,2],"span":[447,30,60]},{"path":[6,0,2,16,3],"span":[447,71,102]},{"path":[6,0,2,17],"span":[448,2,112]},{"path":[6,0,2,17,1],"span":[448,6,31]},{"path":[6,0,2,17,2],"span":[448,32,64]},{"path":[6,0,2,17,3],"span":[448,75,108]},{"path":[6,0,2,18],"span":[449,2,130]},{"path":[6,0,2,18,1],"span":[449,6,37]},{"path":[6,0,2,18,2],"span":[449,38,76]},{"path":[6,0,2,18,3],"span":[449,87,126]},{"path":[6,0,2,19],"span":[450,2,91]},{"path":[6,0,2,19,1],"span":[450,6,24]},{"path":[6,0,2,19,2],"span":[450,25,50]},{"path":[6,0,2,19,3],"span":[450,61,87]},{"path":[6,0,2,20],"span":[451,2,151]},{"path":[6,0,2,20,1],"span":[451,6,44]},{"path":[6,0,2,20,2],"span":[451,45,90]},{"path":[6,0,2,20,3],"span":[451,101,147]},{"path":[6,0,2,21],"span":[452,2,99]},{"path":[6,0,2,21,1],"span":[452,6,30]},{"path":[6,0,2,21,2],"span":[452,31,57]},{"path":[6,0,2,21,3],"span":[452,68,95]},{"path":[6,0,2,22],"span":[453,2,100]},{"path":[6,0,2,22,1],"span":[453,6,39]},{"path":[6,0,2,22,2],"span":[453,40,62]},{"path":[6,0,2,22,3],"span":[453,73,96]},{"path":[6,0,2,23],"span":[454,2,100]},{"path":[6,0,2,23,1],"span":[454,6,27]},{"path":[6,0,2,23,2],"span":[454,28,56]},{"path":[6,0,2,23,3],"span":[454,67,96]},{"path":[6,0,2,24],"span":[455,2,112]},{"path":[6,0,2,24,1],"span":[455,6,31]},{"path":[6,0,2,24,2],"span":[455,32,64]},{"path":[6,0,2,24,3],"span":[455,75,108]},{"path":[6,0,2,25],"span":[456,2,103]},{"path":[6,0,2,25,1],"span":[456,6,28]},{"path":[6,0,2,25,2],"span":[456,29,58]},{"path":[6,0,2,25,3],"span":[456,69,99]},{"path":[6,0,2,26],"span":[457,2,118]},{"path":[6,0,2,26,1],"span":[457,6,33]},{"path":[6,0,2,26,2],"span":[457,34,68]},{"path":[6,0,2,26,3],"span":[457,79,114]},{"path":[6,0,2,27],"span":[458,2,133]},{"path":[6,0,2,27,1],"span":[458,6,38]},{"path":[6,0,2,27,2],"span":[458,39,78]},{"path":[6,0,2,27,3],"span":[458,89,129]},{"path":[6,0,2,28],"span":[459,2,85]},{"path":[6,0,2,28,1],"span":[459,6,22]},{"path":[6,0,2,28,2],"span":[459,23,46]},{"path":[6,0,2,28,3],"span":[459,57,81]},{"path":[6,0,2,29],"span":[461,2,109]},{"path":[6,0,2,29,1],"span":[461,6,30]},{"path":[6,0,2,29,2],"span":[461,31,62]},{"path":[6,0,2,29,3],"span":[461,73,105]},{"path":[6,0,2,30],"span":[462,2,464,3]},{"path":[6,0,2,30,1],"span":[462,6,22]},{"path":[6,0,2,30,2],"span":[462,23,46]},{"path":[6,0,2,30,3],"span":[462,57,81]},{"path":[6,0,2,30,4],"span":[463,4,29]},{"path":[6,0,2,30,4,33],"span":[463,4,29]},{"path":[6,0,2,31],"span":[465,2,94]},{"path":[6,0,2,31,1],"span":[465,6,25]},{"path":[6,0,2,31,2],"span":[465,26,52]},{"path":[6,0,2,31,3],"span":[465,63,90]},{"path":[6,0,2,32],"span":[466,2,88]},{"path":[6,0,2,32,1],"span":[466,6,23]},{"path":[6,0,2,32,2],"span":[466,24,48]},{"path":[6,0,2,32,3],"span":[466,59,84]},{"path":[6,0,2,33],"span":[467,2,113]},{"path":[6,0,2,33,1],"span":[467,6,39]},{"path":[6,0,2,33,2],"span":[467,40,69]},{"path":[6,0,2,33,3],"span":[467,80,109]},{"path":[6,0,2,34],"span":[468,2,133]},{"path":[6,0,2,34,1],"span":[468,6,38]},{"path":[6,0,2,34,2],"span":[468,39,78]},{"path":[6,0,2,34,3],"span":[468,89,129]},{"path":[6,0,2,35],"span":[470,2,91]},{"path":[6,0,2,35,1],"span":[470,6,24]},{"path":[6,0,2,35,2],"span":[470,25,50]},{"path":[6,0,2,35,3],"span":[470,61,87]},{"path":[6,0,2,36],"span":[471,2,76]},{"path":[6,0,2,36,1],"span":[471,6,19]},{"path":[6,0,2,36,2],"span":[471,20,40]},{"path":[6,0,2,36,3],"span":[471,51,72]}]},"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":"limits/limits.proto","package":"lansweeper.shared.limits.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"CalculateRiskInsights","field":[{"name":"from_year","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fromYear","proto3Optional":true},{"name":"from_severity","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.RiskInsightsSeverity","oneofIndex":1,"jsonName":"fromSeverity","proto3Optional":true},{"name":"max","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"max","proto3Optional":true}],"oneofDecl":[{"name":"_from_year"},{"name":"_from_severity"},{"name":"_max"}]},{"name":"ExpirableAllowedEntities","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"expires_at","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"expiresAt","proto3Optional":true}],"oneofDecl":[{"name":"_expires_at"}]},{"name":"BaseLimit","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"},{"name":"allowed_entities","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.ExpirableAllowedEntities","jsonName":"allowedEntities"}],"reservedRange":[{"start":2,"end":3}]},{"name":"RiskInsights","field":[{"name":"view_assets","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewAssets"}]},{"name":"Assets","field":[{"name":"view_risk_insights","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewRiskInsights"}]},{"name":"Scopes","field":[{"name":"create_max","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"createMax"}]},{"name":"SiteLimits","field":[{"name":"tier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.SiteLimitsTiers","jsonName":"tier"},{"name":"risk_insights","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.RiskInsights","oneofIndex":0,"jsonName":"riskInsights","proto3Optional":true},{"name":"assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Assets","oneofIndex":1,"jsonName":"assets","proto3Optional":true},{"name":"scopes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Scopes","jsonName":"scopes"}],"oneofDecl":[{"name":"_risk_insights"},{"name":"_assets"}],"reservedRange":[{"start":2,"end":3}]}],"enumType":[{"name":"SiteLimitsTiers","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":2}]},{"name":"RiskInsightsSeverity","value":[{"name":"RISK_INSIGHT_SEVERITY_LOW","number":0},{"name":"RISK_INSIGHT_SEVERITY_MEDIUM","number":1},{"name":"RISK_INSIGHT_SEVERITY_HIGH","number":2},{"name":"RISK_INSIGHT_SEVERITY_CRITICAL","number":3}]}],"options":{"goPackage":"github.com/Lansweeper/lansweeperapis/packages/shared/generated-go;limits"},"sourceCodeInfo":{"location":[{"span":[0,0,55,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[3,0,95]},{"path":[8,11],"span":[3,0,95]},{"path":[3,0],"span":[4,0,41]},{"path":[5,0],"span":[7,0,11,1]},{"path":[5,0,1],"span":[7,5,20]},{"path":[5,0,2,0],"span":[8,2,38]},{"path":[5,0,2,0,1],"span":[8,2,33]},{"path":[5,0,2,0,2],"span":[8,36,37]},{"path":[5,0,2,1],"span":[9,2,34]},{"path":[5,0,2,1,1],"span":[9,2,29]},{"path":[5,0,2,1,2],"span":[9,32,33]},{"path":[5,0,2,2],"span":[10,2,41]},{"path":[5,0,2,2,1],"span":[10,2,36]},{"path":[5,0,2,2,2],"span":[10,39,40]},{"path":[5,1],"span":[13,0,18,1]},{"path":[5,1,1],"span":[13,5,25]},{"path":[5,1,2,0],"span":[14,2,32]},{"path":[5,1,2,0,1],"span":[14,2,27]},{"path":[5,1,2,0,2],"span":[14,30,31]},{"path":[5,1,2,1],"span":[15,2,35]},{"path":[5,1,2,1,1],"span":[15,2,30]},{"path":[5,1,2,1,2],"span":[15,33,34]},{"path":[5,1,2,2],"span":[16,2,33]},{"path":[5,1,2,2,1],"span":[16,2,28]},{"path":[5,1,2,2,2],"span":[16,31,32]},{"path":[5,1,2,3],"span":[17,2,37]},{"path":[5,1,2,3,1],"span":[17,2,32]},{"path":[5,1,2,3,2],"span":[17,35,36]},{"path":[4,0],"span":[20,0,24,1]},{"path":[4,0,1],"span":[20,8,29]},{"path":[4,0,2,0],"span":[21,2,32]},{"path":[4,0,2,0,4],"span":[21,2,10]},{"path":[4,0,2,0,5],"span":[21,11,17]},{"path":[4,0,2,0,1],"span":[21,18,27]},{"path":[4,0,2,0,3],"span":[21,30,31]},{"path":[4,0,2,1],"span":[22,2,50]},{"path":[4,0,2,1,4],"span":[22,2,10]},{"path":[4,0,2,1,6],"span":[22,11,31]},{"path":[4,0,2,1,1],"span":[22,32,45]},{"path":[4,0,2,1,3],"span":[22,48,49]},{"path":[4,0,2,2],"span":[23,2,25]},{"path":[4,0,2,2,4],"span":[23,2,10]},{"path":[4,0,2,2,5],"span":[23,11,16]},{"path":[4,0,2,2,1],"span":[23,17,20]},{"path":[4,0,2,2,3],"span":[23,23,24]},{"path":[4,1],"span":[26,0,29,1]},{"path":[4,1,1],"span":[26,8,32]},{"path":[4,1,2,0],"span":[27,2,17]},{"path":[4,1,2,0,5],"span":[27,2,8]},{"path":[4,1,2,0,1],"span":[27,9,12]},{"path":[4,1,2,0,3],"span":[27,15,16]},{"path":[4,1,2,1],"span":[28,2,52]},{"path":[4,1,2,1,4],"span":[28,2,10]},{"path":[4,1,2,1,6],"span":[28,11,36]},{"path":[4,1,2,1,1],"span":[28,37,47]},{"path":[4,1,2,1,3],"span":[28,50,51]},{"path":[4,2],"span":[31,0,35,1]},{"path":[4,2,1],"span":[31,8,17]},{"path":[4,2,9],"span":[32,2,13]},{"path":[4,2,9,0],"span":[32,11,12]},{"path":[4,2,9,0,1],"span":[32,11,12]},{"path":[4,2,2,0],"span":[33,2,17]},{"path":[4,2,2,0,5],"span":[33,2,6]},{"path":[4,2,2,0,1],"span":[33,7,12]},{"path":[4,2,2,0,3],"span":[33,15,16]},{"path":[4,2,2,1],"span":[34,2,57]},{"path":[4,2,2,1,4],"span":[34,2,10]},{"path":[4,2,2,1,6],"span":[34,11,35]},{"path":[4,2,2,1,1],"span":[34,36,52]},{"path":[4,2,2,1,3],"span":[34,55,56]},{"path":[4,3],"span":[37,0,39,1]},{"path":[4,3,1],"span":[37,8,20]},{"path":[4,3,2,0],"span":[38,2,28]},{"path":[4,3,2,0,6],"span":[38,2,11]},{"path":[4,3,2,0,1],"span":[38,12,23]},{"path":[4,3,2,0,3],"span":[38,26,27]},{"path":[4,4],"span":[41,0,43,1]},{"path":[4,4,1],"span":[41,8,14]},{"path":[4,4,2,0],"span":[42,2,35]},{"path":[4,4,2,0,6],"span":[42,2,11]},{"path":[4,4,2,0,1],"span":[42,12,30]},{"path":[4,4,2,0,3],"span":[42,33,34]},{"path":[4,5],"span":[45,0,47,1]},{"path":[4,5,1],"span":[45,8,14]},{"path":[4,5,2,0],"span":[46,2,23]},{"path":[4,5,2,0,5],"span":[46,2,7]},{"path":[4,5,2,0,1],"span":[46,8,18]},{"path":[4,5,2,0,3],"span":[46,21,22]},{"path":[4,6],"span":[49,0,55,1]},{"path":[4,6,1],"span":[49,8,18]},{"path":[4,6,9],"span":[50,2,13]},{"path":[4,6,9,0],"span":[50,11,12]},{"path":[4,6,9,0,1],"span":[50,11,12]},{"path":[4,6,2,0],"span":[51,2,27]},{"path":[4,6,2,0,6],"span":[51,2,17]},{"path":[4,6,2,0,1],"span":[51,18,22]},{"path":[4,6,2,0,3],"span":[51,25,26]},{"path":[4,6,2,1],"span":[52,2,42]},{"path":[4,6,2,1,4],"span":[52,2,10]},{"path":[4,6,2,1,6],"span":[52,11,23]},{"path":[4,6,2,1,1],"span":[52,24,37]},{"path":[4,6,2,1,3],"span":[52,40,41]},{"path":[4,6,2,2],"span":[53,2,29]},{"path":[4,6,2,2,4],"span":[53,2,10]},{"path":[4,6,2,2,6],"span":[53,11,17]},{"path":[4,6,2,2,1],"span":[53,18,24]},{"path":[4,6,2,2,3],"span":[53,27,28]},{"path":[4,6,2,3],"span":[54,2,20]},{"path":[4,6,2,3,6],"span":[54,2,8]},{"path":[4,6,2,3,1],"span":[54,9,15]},{"path":[4,6,2,3,3],"span":[54,18,19]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/multitenant.proto","package":"lansweeper.multitenant.v1","dependency":["limits/limits.proto"],"messageType":[{"name":"PreviewAccount","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"username","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"username"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"surname","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"surname"},{"name":"email","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email"},{"name":"image_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"imageUrl"}]},{"name":"GetPreviewAccountByIdRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"GetPreviewAccountByIdResponse","field":[{"name":"account","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"account"}]},{"name":"PreviewSite","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"company_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"companyName"},{"name":"logo_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"logoUrl"},{"name":"mode","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"},{"name":"created_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"PatchSiteModeRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"}]},{"name":"PatchSiteModeResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"Profile","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"is_owner","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isOwner"}]},{"name":"ListProfilesByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks"}]},{"name":"ListProfilesByAccountIdResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"ListAuthorizedLinkProfilesRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks","options":{"deprecated":true}}]},{"name":"ListAuthorizedLinkProfilesResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"CheckAccessToSiteByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"only_owner","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"onlyOwner"},{"name":"user_info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo","jsonName":"userInfo"}],"nestedType":[{"name":"UserInfo","field":[{"name":"has_mfa","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasMfa"},{"name":"is_sso_login","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isSsoLogin"}]}]},{"name":"CheckAccessToSiteByAccountIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"CheckAccessToSiteByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckAccessToSiteByClientIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"Install","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install.InstallState","jsonName":"state"},{"name":"created_at","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"license","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"},{"name":"type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"installType"}],"nestedType":[{"name":"InstallState","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"value"}]}]},{"name":"InstallCredentials","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"client_secret","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientSecret"}]},{"name":"GetInstallsCountBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetInstallsCountResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"count"}]},{"name":"GetInstallsByIdRequest","field":[{"name":"install_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"}]},{"name":"GetInstallsByIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"NullableInstallType","field":[{"name":"data","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","oneofIndex":0,"jsonName":"data"}],"oneofDecl":[{"name":"kind"}]},{"name":"GetInstallsBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"filter","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter","jsonName":"filter"}],"nestedType":[{"name":"Filter","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"state"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.NullableInstallType","jsonName":"installType"}]}]},{"name":"GetInstallsBySiteResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsForMultipleSitesRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetInstallsForMultipleSitesResponse","field":[{"name":"installs","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installs"}]},{"name":"GetInstallbyClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallbyClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"CreateInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"client_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}],"reservedRange":[{"start":2,"end":3},{"start":8,"end":9}]},{"name":"CreateInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"}]},{"name":"CreateAndLinkInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"created_by_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"client_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"external_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}]},{"name":"CreateAndLinkInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"license","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"UpdateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"syncer_settings","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings","jsonName":"syncerSettings"}],"nestedType":[{"name":"SyncerSettings","field":[{"name":"send_changed_data_timeout","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendChangedDataTimeout"},{"name":"send_fast_changing_data_timeout","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendFastChangingDataTimeout"},{"name":"send_non_changed_data_timeout","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendNonChangedDataTimeout"},{"name":"sync_interval_in_seconds","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syncIntervalInSeconds"}]}]},{"name":"UpdateInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"RotateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"}]},{"name":"RotateInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"old_install_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"oldInstallId"},{"name":"new_install_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"newInstallId"}]},{"name":"UnlinkInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"},{"name":"remove_data","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"removeData"},{"name":"from_onprem","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"fromOnprem"}]},{"name":"UnlinkInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"LinkTrialInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"}]},{"name":"LinkTrialInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"license","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"RemoveInstallDataBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_ids","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"},{"name":"user_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"RemoveInstallDataBySiteIdResponse","field":[{"name":"result","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result","jsonName":"result"}],"nestedType":[{"name":"Result","field":[{"name":"install_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"},{"name":"queued","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"queued"}]}]},{"name":"GetDuplicatedInstallsByGlobalIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"global_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"}]},{"name":"GetDuplicatedInstallsByGlobalIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetUserPermissionsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"GetUserPermissionsResponse","field":[{"name":"roles","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Role","jsonName":"roles"}],"nestedType":[{"name":"AuthorizationAction","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"derived_permissions","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"derivedPermissions"}]},{"name":"Scope","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"Role","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"actions","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction","jsonName":"actions"},{"name":"installations","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installations"},{"name":"scopes","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope","jsonName":"scopes"}]}]},{"name":"ValidateApplicationPersonalAccessTokenRequest","field":[{"name":"personal_access_token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"personalAccessToken"}]},{"name":"ValidateApplicationPersonalAccessTokenResponse","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"application_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}]},{"name":"DisableWebhookEmailRequest","field":[{"name":"application_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationName"},{"name":"email","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email","options":{"deprecated":true}},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError","jsonName":"errors"},{"name":"payload_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"payloadUrl"},{"name":"webhook_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookName"},{"name":"webhook_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookUrl","options":{"deprecated":true}},{"name":"webhook_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookId"},{"name":"application_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}],"nestedType":[{"name":"WebhookError","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"},{"name":"messsage","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"messsage","options":{"deprecated":true}},{"name":"timestamp","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"timestamp"},{"name":"message","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}]},{"name":"DisableWebhookEmailResponse","field":[{"name":"mail_sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mailSent"}]},{"name":"Site","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"AuthorizedSitesRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"AuthorizedSitesResponse","field":[{"name":"site","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Site","jsonName":"site"}]},{"name":"GetAccountIdsBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetAccountIdsBySiteIdResponse","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"CheckManagerInApplicationRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"manager_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"managerId"}]},{"name":"CheckManagerInApplicationResponse","field":[{"name":"is_manager","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManager"}]},{"name":"Subscription","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"created_at","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"created_by","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdBy"}]},{"name":"UpdateSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"updated_by","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSubscriptionResponse","field":[{"name":"subscription","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Subscription","jsonName":"subscription"}]},{"name":"CreateTrialSiteAndInstallerRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"CreateTrialSiteAndInstallerResponse","field":[{"name":"installer_credentials","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installerCredentials"}]},{"name":"GetInstallationLicenseByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallationLicenseByClientIdResponse","field":[{"name":"license","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"AllProfileExistsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}],"options":{"deprecated":true}},{"name":"AllProfileExistsResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"}],"options":{"deprecated":true}},{"name":"AllProfilesExistRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}]},{"name":"AllProfilesExistResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"},{"name":"profiles","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profiles"},{"name":"createdBy","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"SendInviteLocalUsersMailRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"SendInviteLocalUsersMailResponse","field":[{"name":"sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"sent"}]},{"name":"GetSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetSiteSubscriptionResponse","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"}]},{"name":"CreateLinkingCodeRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"CreateLinkingCodeResponse","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"}]},{"name":"GetSiteIdsWithIntegrationData","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"CheckStandardizedSoftwareEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckStandardizedSoftwareEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"UpdateSiteMetadataRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"UpdateSiteMetadataResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"GetSiteLimitsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetSiteLimitsResponse","field":[{"name":"site_limits","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry","jsonName":"siteLimits"}],"nestedType":[{"name":"SiteLimitsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.SiteLimits","jsonName":"value"}],"options":{"mapEntry":true}}]}],"enumType":[{"name":"SiteMode","value":[{"name":"UNESPECIFIED","number":0},{"name":"CLOUD_NATIVE","number":1},{"name":"DEMO","number":2},{"name":"HYBRID","number":3},{"name":"DUAL","number":4}]},{"name":"InstallStateValue","value":[{"name":"INSTALL_STATE_VALUE_UNESPECIFIED","number":0},{"name":"INSTALL_STATE_VALUE_SYNC","number":1},{"name":"INSTALL_STATE_VALUE_UNSYNC","number":2}]},{"name":"InstallType","value":[{"name":"IT","number":0},{"name":"OT","number":1},{"name":"IT_AGENT","number":2},{"name":"CLOUD","number":3},{"name":"NETWORK_DISCOVERY","number":4}]},{"name":"SubscriptionType","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_UNESPECIFIED","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_TRIAL","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_FREEWARE","number":2},{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":3},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":4},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":5}]}],"service":[{"name":"Multitenant","method":[{"name":"CheckAccessToSiteByAccountId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse","options":{}},{"name":"CheckAccessToSiteByClientId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse","options":{}},{"name":"GetPreviewAccountById","inputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdResponse","options":{}},{"name":"ListProfilesByAccountId","inputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdRequest","outputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdResponse","options":{}},{"name":"ListAuthorizedLinkProfiles","inputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest","outputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse","options":{}},{"name":"PatchSiteMode","inputType":".lansweeper.multitenant.v1.PatchSiteModeRequest","outputType":".lansweeper.multitenant.v1.PatchSiteModeResponse","options":{}},{"name":"CreateInstall","inputType":".lansweeper.multitenant.v1.CreateInstallRequest","outputType":".lansweeper.multitenant.v1.CreateInstallResponse","options":{}},{"name":"CreateAndLinkInstall","inputType":".lansweeper.multitenant.v1.CreateAndLinkInstallRequest","outputType":".lansweeper.multitenant.v1.CreateAndLinkInstallResponse","options":{}},{"name":"GetInstallsBySite","inputType":".lansweeper.multitenant.v1.GetInstallsBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsBySiteResponse","options":{}},{"name":"GetInstallsforMultipleSites","inputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest","outputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse","options":{}},{"name":"GetInstallsById","inputType":".lansweeper.multitenant.v1.GetInstallsByIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByIdResponse","options":{}},{"name":"GetInstallsCountBySite","inputType":".lansweeper.multitenant.v1.GetInstallsCountBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsCountResponse","options":{}},{"name":"GetInstallbyClientId","inputType":".lansweeper.multitenant.v1.GetInstallbyClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallbyClientIdResponse","options":{}},{"name":"UpdateInstallByClientId","inputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdResponse","options":{}},{"name":"RotateInstallByClientId","inputType":".lansweeper.multitenant.v1.RotateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.RotateInstallByClientIdResponse","options":{}},{"name":"LinkTrialInstallByClientId","inputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse","options":{}},{"name":"UnlinkInstallByClientId","inputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse","options":{}},{"name":"RemoveInstallDataBySiteId","inputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest","outputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse","options":{}},{"name":"GetDuplicatedInstallsByGlobalId","inputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest","outputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse","options":{}},{"name":"GetUserPermissions","inputType":".lansweeper.multitenant.v1.GetUserPermissionsRequest","outputType":".lansweeper.multitenant.v1.GetUserPermissionsResponse","options":{}},{"name":"ValidateApplicationPersonalAccessToken","inputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse","options":{}},{"name":"SendDisabledWebhookEmail","inputType":".lansweeper.multitenant.v1.DisableWebhookEmailRequest","outputType":".lansweeper.multitenant.v1.DisableWebhookEmailResponse","options":{}},{"name":"GetAuthorizedSitesByApplicationId","inputType":".lansweeper.multitenant.v1.AuthorizedSitesRequest","outputType":".lansweeper.multitenant.v1.AuthorizedSitesResponse","options":{}},{"name":"GetAccountIdsBySiteId","inputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest","outputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse","options":{}},{"name":"CheckManagerInApplication","inputType":".lansweeper.multitenant.v1.CheckManagerInApplicationRequest","outputType":".lansweeper.multitenant.v1.CheckManagerInApplicationResponse","options":{}},{"name":"UpdateSiteSubscription","inputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse","options":{}},{"name":"CreateTrialSiteAndInstaller","inputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest","outputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse","options":{}},{"name":"GetInstallationLicenseByClientId","inputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse","options":{}},{"name":"AllProfilesExist","inputType":".lansweeper.multitenant.v1.AllProfilesExistRequest","outputType":".lansweeper.multitenant.v1.AllProfilesExistResponse","options":{}},{"name":"SendInviteLocalUsersMail","inputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest","outputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse","options":{}},{"name":"AllProfileExists","inputType":".lansweeper.multitenant.v1.AllProfileExistsRequest","outputType":".lansweeper.multitenant.v1.AllProfileExistsResponse","options":{"deprecated":true}},{"name":"GetSiteSubscription","inputType":".lansweeper.multitenant.v1.GetSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.GetSiteSubscriptionResponse","options":{}},{"name":"CreateLinkingCode","inputType":".lansweeper.multitenant.v1.CreateLinkingCodeRequest","outputType":".lansweeper.multitenant.v1.CreateLinkingCodeResponse","options":{}},{"name":"GetSiteIdsWithIntegrationBySiteId","inputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","outputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","options":{}},{"name":"CheckStandardizedSoftwareEnabled","inputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest","outputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse","options":{}},{"name":"UpdateSiteMetadata","inputType":".lansweeper.multitenant.v1.UpdateSiteMetadataRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteMetadataResponse","options":{}},{"name":"GetSiteLimits","inputType":".lansweeper.multitenant.v1.GetSiteLimitsRequest","outputType":".lansweeper.multitenant.v1.GetSiteLimitsResponse","options":{}}]}],"options":{"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[0,0,473,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[1,0,34]},{"path":[8],"span":[2,0,37]},{"path":[8,11],"span":[2,0,37]},{"path":[3,0],"span":[4,0,29]},{"path":[4,0],"span":[6,0,13,1]},{"path":[4,0,1],"span":[6,8,22]},{"path":[4,0,2,0],"span":[7,2,16]},{"path":[4,0,2,0,5],"span":[7,2,8]},{"path":[4,0,2,0,1],"span":[7,9,11]},{"path":[4,0,2,0,3],"span":[7,14,15]},{"path":[4,0,2,1],"span":[8,2,22]},{"path":[4,0,2,1,5],"span":[8,2,8]},{"path":[4,0,2,1,1],"span":[8,9,17]},{"path":[4,0,2,1,3],"span":[8,20,21]},{"path":[4,0,2,2],"span":[9,2,18]},{"path":[4,0,2,2,5],"span":[9,2,8]},{"path":[4,0,2,2,1],"span":[9,9,13]},{"path":[4,0,2,2,3],"span":[9,16,17]},{"path":[4,0,2,3],"span":[10,2,21]},{"path":[4,0,2,3,5],"span":[10,2,8]},{"path":[4,0,2,3,1],"span":[10,9,16]},{"path":[4,0,2,3,3],"span":[10,19,20]},{"path":[4,0,2,4],"span":[11,2,19]},{"path":[4,0,2,4,5],"span":[11,2,8]},{"path":[4,0,2,4,1],"span":[11,9,14]},{"path":[4,0,2,4,3],"span":[11,17,18]},{"path":[4,0,2,5],"span":[12,2,23]},{"path":[4,0,2,5,5],"span":[12,2,8]},{"path":[4,0,2,5,1],"span":[12,9,18]},{"path":[4,0,2,5,3],"span":[12,21,22]},{"path":[4,1],"span":[14,0,16,1]},{"path":[4,1,1],"span":[14,8,36]},{"path":[4,1,2,0],"span":[15,2,16]},{"path":[4,1,2,0,5],"span":[15,2,8]},{"path":[4,1,2,0,1],"span":[15,9,11]},{"path":[4,1,2,0,3],"span":[15,14,15]},{"path":[4,2],"span":[17,0,19,1]},{"path":[4,2,1],"span":[17,8,37]},{"path":[4,2,2,0],"span":[18,2,29]},{"path":[4,2,2,0,6],"span":[18,2,16]},{"path":[4,2,2,0,1],"span":[18,17,24]},{"path":[4,2,2,0,3],"span":[18,27,28]},{"path":[5,0],"span":[20,0,26,1]},{"path":[5,0,1],"span":[20,5,13]},{"path":[5,0,2,0],"span":[21,2,19]},{"path":[5,0,2,0,1],"span":[21,2,14]},{"path":[5,0,2,0,2],"span":[21,17,18]},{"path":[5,0,2,1],"span":[22,2,19]},{"path":[5,0,2,1,1],"span":[22,2,14]},{"path":[5,0,2,1,2],"span":[22,17,18]},{"path":[5,0,2,2],"span":[23,2,11]},{"path":[5,0,2,2,1],"span":[23,2,6]},{"path":[5,0,2,2,2],"span":[23,9,10]},{"path":[5,0,2,3],"span":[24,2,13]},{"path":[5,0,2,3,1],"span":[24,2,8]},{"path":[5,0,2,3,2],"span":[24,11,12]},{"path":[5,0,2,4],"span":[25,2,11]},{"path":[5,0,2,4,1],"span":[25,2,6]},{"path":[5,0,2,4,2],"span":[25,9,10]},{"path":[4,3],"span":[27,0,34,1]},{"path":[4,3,1],"span":[27,8,19]},{"path":[4,3,2,0],"span":[28,2,16]},{"path":[4,3,2,0,5],"span":[28,2,8]},{"path":[4,3,2,0,1],"span":[28,9,11]},{"path":[4,3,2,0,3],"span":[28,14,15]},{"path":[4,3,2,1],"span":[29,2,18]},{"path":[4,3,2,1,5],"span":[29,2,8]},{"path":[4,3,2,1,1],"span":[29,9,13]},{"path":[4,3,2,1,3],"span":[29,16,17]},{"path":[4,3,2,2],"span":[30,2,26]},{"path":[4,3,2,2,5],"span":[30,2,8]},{"path":[4,3,2,2,1],"span":[30,9,21]},{"path":[4,3,2,2,3],"span":[30,24,25]},{"path":[4,3,2,3],"span":[31,2,22]},{"path":[4,3,2,3,5],"span":[31,2,8]},{"path":[4,3,2,3,1],"span":[31,9,17]},{"path":[4,3,2,3,3],"span":[31,20,21]},{"path":[4,3,2,4],"span":[32,2,20]},{"path":[4,3,2,4,6],"span":[32,2,10]},{"path":[4,3,2,4,1],"span":[32,11,15]},{"path":[4,3,2,4,3],"span":[32,18,19]},{"path":[4,3,2,5],"span":[33,2,32]},{"path":[4,3,2,5,6],"span":[33,2,16]},{"path":[4,3,2,5,1],"span":[33,17,27]},{"path":[4,3,2,5,3],"span":[33,30,31]},{"path":[4,4],"span":[35,0,38,1]},{"path":[4,4,1],"span":[35,8,28]},{"path":[4,4,2,0],"span":[36,2,16]},{"path":[4,4,2,0,5],"span":[36,2,8]},{"path":[4,4,2,0,1],"span":[36,9,11]},{"path":[4,4,2,0,3],"span":[36,14,15]},{"path":[4,4,2,1],"span":[37,2,20]},{"path":[4,4,2,1,6],"span":[37,2,10]},{"path":[4,4,2,1,1],"span":[37,11,15]},{"path":[4,4,2,1,3],"span":[37,18,19]},{"path":[4,5],"span":[39,0,41,1]},{"path":[4,5,1],"span":[39,8,29]},{"path":[4,5,2,0],"span":[40,2,19]},{"path":[4,5,2,0,5],"span":[40,2,6]},{"path":[4,5,2,0,1],"span":[40,7,14]},{"path":[4,5,2,0,3],"span":[40,17,18]},{"path":[4,6],"span":[42,0,47,1]},{"path":[4,6,1],"span":[42,8,15]},{"path":[4,6,2,0],"span":[43,2,16]},{"path":[4,6,2,0,5],"span":[43,2,8]},{"path":[4,6,2,0,1],"span":[43,9,11]},{"path":[4,6,2,0,3],"span":[43,14,15]},{"path":[4,6,2,1],"span":[44,2,21]},{"path":[4,6,2,1,5],"span":[44,2,8]},{"path":[4,6,2,1,1],"span":[44,9,16]},{"path":[4,6,2,1,3],"span":[44,19,20]},{"path":[4,6,2,2],"span":[45,2,23]},{"path":[4,6,2,2,6],"span":[45,2,13]},{"path":[4,6,2,2,1],"span":[45,14,18]},{"path":[4,6,2,2,3],"span":[45,21,22]},{"path":[4,6,2,3],"span":[46,2,20]},{"path":[4,6,2,3,5],"span":[46,2,6]},{"path":[4,6,2,3,1],"span":[46,7,15]},{"path":[4,6,2,3,3],"span":[46,18,19]},{"path":[4,7],"span":[48,0,51,1]},{"path":[4,7,1],"span":[48,8,38]},{"path":[4,7,2,0],"span":[49,2,24]},{"path":[4,7,2,0,5],"span":[49,2,8]},{"path":[4,7,2,0,1],"span":[49,9,19]},{"path":[4,7,2,0,3],"span":[49,22,23]},{"path":[4,7,2,1],"span":[50,2,26]},{"path":[4,7,2,1,5],"span":[50,2,6]},{"path":[4,7,2,1,1],"span":[50,7,21]},{"path":[4,7,2,1,3],"span":[50,24,25]},{"path":[4,8],"span":[52,0,54,1]},{"path":[4,8,1],"span":[52,8,39]},{"path":[4,8,2,0],"span":[53,2,31]},{"path":[4,8,2,0,4],"span":[53,2,10]},{"path":[4,8,2,0,6],"span":[53,11,18]},{"path":[4,8,2,0,1],"span":[53,19,26]},{"path":[4,8,2,0,3],"span":[53,29,30]},{"path":[4,9],"span":[55,0,58,1]},{"path":[4,9,1],"span":[55,8,41]},{"path":[4,9,2,0],"span":[56,2,24]},{"path":[4,9,2,0,5],"span":[56,2,8]},{"path":[4,9,2,0,1],"span":[56,9,19]},{"path":[4,9,2,0,3],"span":[56,22,23]},{"path":[4,9,2,1],"span":[57,2,46]},{"path":[4,9,2,1,5],"span":[57,2,6]},{"path":[4,9,2,1,1],"span":[57,7,21]},{"path":[4,9,2,1,3],"span":[57,24,25]},{"path":[4,9,2,1,8],"span":[57,26,45]},{"path":[4,9,2,1,8,3],"span":[57,27,44]},{"path":[4,10],"span":[59,0,61,1]},{"path":[4,10,1],"span":[59,8,42]},{"path":[4,10,2,0],"span":[60,2,31]},{"path":[4,10,2,0,4],"span":[60,2,10]},{"path":[4,10,2,0,6],"span":[60,11,18]},{"path":[4,10,2,0,1],"span":[60,19,26]},{"path":[4,10,2,0,3],"span":[60,29,30]},{"path":[4,11],"span":[62,0,71,1]},{"path":[4,11,1],"span":[62,8,43]},{"path":[4,11,2,0],"span":[63,2,24]},{"path":[4,11,2,0,5],"span":[63,2,8]},{"path":[4,11,2,0,1],"span":[63,9,19]},{"path":[4,11,2,0,3],"span":[63,22,23]},{"path":[4,11,2,1],"span":[64,2,21]},{"path":[4,11,2,1,5],"span":[64,2,8]},{"path":[4,11,2,1,1],"span":[64,9,16]},{"path":[4,11,2,1,3],"span":[64,19,20]},{"path":[4,11,2,2],"span":[65,2,22]},{"path":[4,11,2,2,5],"span":[65,2,6]},{"path":[4,11,2,2,1],"span":[65,7,17]},{"path":[4,11,2,2,3],"span":[65,20,21]},{"path":[4,11,3,0],"span":[66,2,69,3]},{"path":[4,11,3,0,1],"span":[66,10,18]},{"path":[4,11,3,0,2,0],"span":[67,4,21]},{"path":[4,11,3,0,2,0,5],"span":[67,4,8]},{"path":[4,11,3,0,2,0,1],"span":[67,9,16]},{"path":[4,11,3,0,2,0,3],"span":[67,19,20]},{"path":[4,11,3,0,2,1],"span":[68,4,26]},{"path":[4,11,3,0,2,1,5],"span":[68,4,8]},{"path":[4,11,3,0,2,1,1],"span":[68,9,21]},{"path":[4,11,3,0,2,1,3],"span":[68,24,25]},{"path":[4,11,2,3],"span":[70,2,25]},{"path":[4,11,2,3,6],"span":[70,2,10]},{"path":[4,11,2,3,1],"span":[70,11,20]},{"path":[4,11,2,3,3],"span":[70,23,24]},{"path":[4,12],"span":[72,0,74,1]},{"path":[4,12,1],"span":[72,8,44]},{"path":[4,12,2,0],"span":[73,2,18]},{"path":[4,12,2,0,5],"span":[73,2,6]},{"path":[4,12,2,0,1],"span":[73,7,13]},{"path":[4,12,2,0,3],"span":[73,16,17]},{"path":[4,13],"span":[75,0,78,1]},{"path":[4,13,1],"span":[75,8,42]},{"path":[4,13,2,0],"span":[76,2,23]},{"path":[4,13,2,0,5],"span":[76,2,8]},{"path":[4,13,2,0,1],"span":[76,9,18]},{"path":[4,13,2,0,3],"span":[76,21,22]},{"path":[4,13,2,1],"span":[77,2,21]},{"path":[4,13,2,1,5],"span":[77,2,8]},{"path":[4,13,2,1,1],"span":[77,9,16]},{"path":[4,13,2,1,3],"span":[77,19,20]},{"path":[4,14],"span":[79,0,81,1]},{"path":[4,14,1],"span":[79,8,43]},{"path":[4,14,2,0],"span":[80,2,18]},{"path":[4,14,2,0,5],"span":[80,2,6]},{"path":[4,14,2,0,1],"span":[80,7,13]},{"path":[4,14,2,0,3],"span":[80,16,17]},{"path":[5,1],"span":[82,0,86,1]},{"path":[5,1,1],"span":[82,5,22]},{"path":[5,1,2,0],"span":[83,2,39]},{"path":[5,1,2,0,1],"span":[83,2,34]},{"path":[5,1,2,0,2],"span":[83,37,38]},{"path":[5,1,2,1],"span":[84,2,31]},{"path":[5,1,2,1,1],"span":[84,2,26]},{"path":[5,1,2,1,2],"span":[84,29,30]},{"path":[5,1,2,2],"span":[85,2,33]},{"path":[5,1,2,2,1],"span":[85,2,28]},{"path":[5,1,2,2,2],"span":[85,31,32]},{"path":[4,15],"span":[87,0,104,1]},{"path":[4,15,1],"span":[87,8,15]},{"path":[4,15,2,0],"span":[88,2,16]},{"path":[4,15,2,0,5],"span":[88,2,8]},{"path":[4,15,2,0,1],"span":[88,9,11]},{"path":[4,15,2,0,3],"span":[88,14,15]},{"path":[4,15,2,1],"span":[89,2,21]},{"path":[4,15,2,1,5],"span":[89,2,8]},{"path":[4,15,2,1,1],"span":[89,9,16]},{"path":[4,15,2,1,3],"span":[89,19,20]},{"path":[4,15,2,2],"span":[90,2,26]},{"path":[4,15,2,2,5],"span":[90,2,8]},{"path":[4,15,2,2,1],"span":[90,9,21]},{"path":[4,15,2,2,3],"span":[90,24,25]},{"path":[4,15,2,3],"span":[91,2,25]},{"path":[4,15,2,3,5],"span":[91,2,8]},{"path":[4,15,2,3,1],"span":[91,9,20]},{"path":[4,15,2,3,3],"span":[91,23,24]},{"path":[4,15,2,4],"span":[92,2,20]},{"path":[4,15,2,4,5],"span":[92,2,8]},{"path":[4,15,2,4,1],"span":[92,9,15]},{"path":[4,15,2,4,3],"span":[92,18,19]},{"path":[4,15,2,5],"span":[93,2,18]},{"path":[4,15,2,5,5],"span":[93,2,8]},{"path":[4,15,2,5,1],"span":[93,9,13]},{"path":[4,15,2,5,3],"span":[93,16,17]},{"path":[4,15,2,6],"span":[94,2,27]},{"path":[4,15,2,6,5],"span":[94,2,8]},{"path":[4,15,2,6,1],"span":[94,9,22]},{"path":[4,15,2,6,3],"span":[94,25,26]},{"path":[4,15,2,7],"span":[95,2,23]},{"path":[4,15,2,7,5],"span":[95,2,8]},{"path":[4,15,2,7,1],"span":[95,9,18]},{"path":[4,15,2,7,3],"span":[95,21,22]},{"path":[4,15,3,0],"span":[96,2,98,3]},{"path":[4,15,3,0,1],"span":[96,10,22]},{"path":[4,15,3,0,2,0],"span":[97,4,32]},{"path":[4,15,3,0,2,0,6],"span":[97,4,21]},{"path":[4,15,3,0,2,0,1],"span":[97,22,27]},{"path":[4,15,3,0,2,0,3],"span":[97,30,31]},{"path":[4,15,2,8],"span":[99,2,25]},{"path":[4,15,2,8,6],"span":[99,2,14]},{"path":[4,15,2,8,1],"span":[99,15,20]},{"path":[4,15,2,8,3],"span":[99,23,24]},{"path":[4,15,2,9],"span":[100,2,25]},{"path":[4,15,2,9,5],"span":[100,2,8]},{"path":[4,15,2,9,1],"span":[100,9,19]},{"path":[4,15,2,9,3],"span":[100,22,24]},{"path":[4,15,2,10],"span":[101,2,22]},{"path":[4,15,2,10,5],"span":[101,2,8]},{"path":[4,15,2,10,1],"span":[101,9,16]},{"path":[4,15,2,10,3],"span":[101,19,21]},{"path":[4,15,2,11],"span":[102,2,39]},{"path":[4,15,2,11,5],"span":[102,2,8]},{"path":[4,15,2,11,1],"span":[102,9,13]},{"path":[4,15,2,11,3],"span":[102,16,18]},{"path":[4,15,2,11,8],"span":[102,19,38]},{"path":[4,15,2,11,8,3],"span":[102,20,37]},{"path":[4,15,2,12],"span":[103,2,32]},{"path":[4,15,2,12,6],"span":[103,2,13]},{"path":[4,15,2,12,1],"span":[103,14,26]},{"path":[4,15,2,12,3],"span":[103,29,31]},{"path":[4,16],"span":[105,0,108,1]},{"path":[4,16,1],"span":[105,8,26]},{"path":[4,16,2,0],"span":[106,2,23]},{"path":[4,16,2,0,5],"span":[106,2,8]},{"path":[4,16,2,0,1],"span":[106,9,18]},{"path":[4,16,2,0,3],"span":[106,21,22]},{"path":[4,16,2,1],"span":[107,2,27]},{"path":[4,16,2,1,5],"span":[107,2,8]},{"path":[4,16,2,1,1],"span":[107,9,22]},{"path":[4,16,2,1,3],"span":[107,25,26]},{"path":[4,17],"span":[109,0,111,1]},{"path":[4,17,1],"span":[109,8,37]},{"path":[4,17,2,0],"span":[110,2,21]},{"path":[4,17,2,0,5],"span":[110,2,8]},{"path":[4,17,2,0,1],"span":[110,9,16]},{"path":[4,17,2,0,3],"span":[110,19,20]},{"path":[4,18],"span":[112,0,114,1]},{"path":[4,18,1],"span":[112,8,32]},{"path":[4,18,2,0],"span":[113,2,18]},{"path":[4,18,2,0,5],"span":[113,2,7]},{"path":[4,18,2,0,1],"span":[113,8,13]},{"path":[4,18,2,0,3],"span":[113,16,17]},{"path":[4,19],"span":[115,0,117,1]},{"path":[4,19,1],"span":[115,8,30]},{"path":[4,19,2,0],"span":[116,2,34]},{"path":[4,19,2,0,4],"span":[116,2,10]},{"path":[4,19,2,0,5],"span":[116,11,17]},{"path":[4,19,2,0,1],"span":[116,18,29]},{"path":[4,19,2,0,3],"span":[116,32,33]},{"path":[4,20],"span":[118,0,120,1]},{"path":[4,20,1],"span":[118,8,31]},{"path":[4,20,2,0],"span":[119,2,31]},{"path":[4,20,2,0,4],"span":[119,2,10]},{"path":[4,20,2,0,6],"span":[119,11,18]},{"path":[4,20,2,0,1],"span":[119,19,26]},{"path":[4,20,2,0,3],"span":[119,29,30]},{"path":[4,21],"span":[121,0,125,1]},{"path":[4,21,1],"span":[121,8,27]},{"path":[4,21,8,0],"span":[122,2,124,3]},{"path":[4,21,8,0,1],"span":[122,8,12]},{"path":[4,21,2,0],"span":[123,4,25]},{"path":[4,21,2,0,6],"span":[123,4,15]},{"path":[4,21,2,0,1],"span":[123,16,20]},{"path":[4,21,2,0,3],"span":[123,23,24]},{"path":[4,22],"span":[126,0,134,1]},{"path":[4,22,1],"span":[126,8,32]},{"path":[4,22,2,0],"span":[127,2,21]},{"path":[4,22,2,0,5],"span":[127,2,8]},{"path":[4,22,2,0,1],"span":[127,9,16]},{"path":[4,22,2,0,3],"span":[127,19,20]},{"path":[4,22,3,0],"span":[128,2,132,3]},{"path":[4,22,3,0,1],"span":[128,10,16]},{"path":[4,22,3,0,2,0],"span":[129,4,32]},{"path":[4,22,3,0,2,0,6],"span":[129,4,21]},{"path":[4,22,3,0,2,0,1],"span":[129,22,27]},{"path":[4,22,3,0,2,0,3],"span":[129,30,31]},{"path":[4,22,3,0,2,1],"span":[130,4,43]},{"path":[4,22,3,0,2,1,6],"span":[130,4,15]},{"path":[4,22,3,0,2,1,1],"span":[130,16,20]},{"path":[4,22,3,0,2,1,3],"span":[130,21,22]},{"path":[4,22,3,0,2,1,8],"span":[130,23,42]},{"path":[4,22,3,0,2,1,8,3],"span":[130,24,41]},{"path":[4,22,3,0,2,2],"span":[131,4,39]},{"path":[4,22,3,0,2,2,6],"span":[131,4,23]},{"path":[4,22,3,0,2,2,1],"span":[131,24,36]},{"path":[4,22,3,0,2,2,3],"span":[131,37,38]},{"path":[4,22,2,1],"span":[133,2,20]},{"path":[4,22,2,1,6],"span":[133,2,8]},{"path":[4,22,2,1,1],"span":[133,9,15]},{"path":[4,22,2,1,3],"span":[133,18,19]},{"path":[4,23],"span":[135,0,137,1]},{"path":[4,23,1],"span":[135,8,33]},{"path":[4,23,2,0],"span":[136,2,31]},{"path":[4,23,2,0,4],"span":[136,2,10]},{"path":[4,23,2,0,6],"span":[136,11,18]},{"path":[4,23,2,0,1],"span":[136,19,26]},{"path":[4,23,2,0,3],"span":[136,29,30]},{"path":[4,24],"span":[138,0,140,1]},{"path":[4,24,1],"span":[138,8,42]},{"path":[4,24,2,0],"span":[139,2,31]},{"path":[4,24,2,0,4],"span":[139,2,10]},{"path":[4,24,2,0,5],"span":[139,11,17]},{"path":[4,24,2,0,1],"span":[139,18,26]},{"path":[4,24,2,0,3],"span":[139,29,30]},{"path":[4,25],"span":[141,0,143,1]},{"path":[4,25,1],"span":[141,8,43]},{"path":[4,25,2,0],"span":[142,2,32]},{"path":[4,25,2,0,4],"span":[142,2,10]},{"path":[4,25,2,0,6],"span":[142,11,18]},{"path":[4,25,2,0,1],"span":[142,19,27]},{"path":[4,25,2,0,3],"span":[142,30,31]},{"path":[4,26],"span":[144,0,146,1]},{"path":[4,26,1],"span":[144,8,35]},{"path":[4,26,2,0],"span":[145,2,23]},{"path":[4,26,2,0,5],"span":[145,2,8]},{"path":[4,26,2,0,1],"span":[145,9,18]},{"path":[4,26,2,0,3],"span":[145,21,22]},{"path":[4,27],"span":[147,0,149,1]},{"path":[4,27,1],"span":[147,8,36]},{"path":[4,27,2,0],"span":[148,2,22]},{"path":[4,27,2,0,6],"span":[148,2,9]},{"path":[4,27,2,0,1],"span":[148,10,17]},{"path":[4,27,2,0,3],"span":[148,20,21]},{"path":[4,28],"span":[150,0,162,1]},{"path":[4,28,1],"span":[150,8,28]},{"path":[4,28,9],"span":[151,2,16]},{"path":[4,28,9,0],"span":[151,11,12]},{"path":[4,28,9,0,1],"span":[151,11,12]},{"path":[4,28,9,1],"span":[151,14,15]},{"path":[4,28,9,1,1],"span":[151,14,15]},{"path":[4,28,2,0],"span":[152,2,21]},{"path":[4,28,2,0,5],"span":[152,2,8]},{"path":[4,28,2,0,1],"span":[152,9,16]},{"path":[4,28,2,0,3],"span":[152,19,20]},{"path":[4,28,2,1],"span":[153,2,26]},{"path":[4,28,2,1,5],"span":[153,2,8]},{"path":[4,28,2,1,1],"span":[153,9,21]},{"path":[4,28,2,1,3],"span":[153,24,25]},{"path":[4,28,2,2],"span":[154,2,25]},{"path":[4,28,2,2,5],"span":[154,2,8]},{"path":[4,28,2,2,1],"span":[154,9,20]},{"path":[4,28,2,2,3],"span":[154,23,24]},{"path":[4,28,2,3],"span":[155,2,20]},{"path":[4,28,2,3,5],"span":[155,2,8]},{"path":[4,28,2,3,1],"span":[155,9,15]},{"path":[4,28,2,3,3],"span":[155,18,19]},{"path":[4,28,2,4],"span":[156,2,18]},{"path":[4,28,2,4,5],"span":[156,2,8]},{"path":[4,28,2,4,1],"span":[156,9,13]},{"path":[4,28,2,4,3],"span":[156,16,17]},{"path":[4,28,2,5],"span":[157,2,27]},{"path":[4,28,2,5,5],"span":[157,2,8]},{"path":[4,28,2,5,1],"span":[157,9,22]},{"path":[4,28,2,5,3],"span":[157,25,26]},{"path":[4,28,2,6],"span":[159,2,23]},{"path":[4,28,2,6,5],"span":[159,2,8]},{"path":[4,28,2,6,1],"span":[159,9,18]},{"path":[4,28,2,6,3],"span":[159,21,22]},{"path":[4,28,2,7],"span":[160,2,24]},{"path":[4,28,2,7,6],"span":[160,2,13]},{"path":[4,28,2,7,1],"span":[160,14,18]},{"path":[4,28,2,7,3],"span":[160,21,23]},{"path":[4,28,2,8],"span":[161,2,24]},{"path":[4,28,2,8,5],"span":[161,2,8]},{"path":[4,28,2,8,1],"span":[161,9,18]},{"path":[4,28,2,8,3],"span":[161,21,23]},{"path":[5,2],"span":[163,0,169,1]},{"path":[5,2,1],"span":[163,5,16]},{"path":[5,2,2,0],"span":[164,2,7]},{"path":[5,2,2,0,1],"span":[164,2,4]},{"path":[5,2,2,0,2],"span":[164,5,6]},{"path":[5,2,2,1],"span":[165,2,7]},{"path":[5,2,2,1,1],"span":[165,2,4]},{"path":[5,2,2,1,2],"span":[165,5,6]},{"path":[5,2,2,2],"span":[166,2,13]},{"path":[5,2,2,2,1],"span":[166,2,10]},{"path":[5,2,2,2,2],"span":[166,11,12]},{"path":[5,2,2,3],"span":[167,2,10]},{"path":[5,2,2,3,1],"span":[167,2,7]},{"path":[5,2,2,3,2],"span":[167,8,9]},{"path":[5,2,2,4],"span":[168,2,22]},{"path":[5,2,2,4,1],"span":[168,2,19]},{"path":[5,2,2,4,2],"span":[168,20,21]},{"path":[4,29],"span":[170,0,173,1]},{"path":[4,29,1],"span":[170,8,29]},{"path":[4,29,2,0],"span":[171,2,22]},{"path":[4,29,2,0,6],"span":[171,2,9]},{"path":[4,29,2,0,1],"span":[171,10,17]},{"path":[4,29,2,0,3],"span":[171,20,21]},{"path":[4,29,2,1],"span":[172,2,37]},{"path":[4,29,2,1,6],"span":[172,2,20]},{"path":[4,29,2,1,1],"span":[172,21,32]},{"path":[4,29,2,1,3],"span":[172,35,36]},{"path":[4,30],"span":[174,0,183,1]},{"path":[4,30,1],"span":[174,8,35]},{"path":[4,30,2,0],"span":[175,2,21]},{"path":[4,30,2,0,5],"span":[175,2,8]},{"path":[4,30,2,0,1],"span":[175,9,16]},{"path":[4,30,2,0,3],"span":[175,19,20]},{"path":[4,30,2,1],"span":[176,2,26]},{"path":[4,30,2,1,5],"span":[176,2,8]},{"path":[4,30,2,1,1],"span":[176,9,21]},{"path":[4,30,2,1,3],"span":[176,24,25]},{"path":[4,30,2,2],"span":[177,2,25]},{"path":[4,30,2,2,5],"span":[177,2,8]},{"path":[4,30,2,2,1],"span":[177,9,20]},{"path":[4,30,2,2,3],"span":[177,23,24]},{"path":[4,30,2,3],"span":[178,2,23]},{"path":[4,30,2,3,5],"span":[178,2,8]},{"path":[4,30,2,3,1],"span":[178,9,18]},{"path":[4,30,2,3,3],"span":[178,21,22]},{"path":[4,30,2,4],"span":[179,2,23]},{"path":[4,30,2,4,6],"span":[179,2,13]},{"path":[4,30,2,4,1],"span":[179,14,18]},{"path":[4,30,2,4,3],"span":[179,21,22]},{"path":[4,30,2,5],"span":[180,2,27]},{"path":[4,30,2,5,5],"span":[180,2,8]},{"path":[4,30,2,5,1],"span":[180,9,22]},{"path":[4,30,2,5,3],"span":[180,25,26]},{"path":[4,30,2,6],"span":[181,2,23]},{"path":[4,30,2,6,5],"span":[181,2,8]},{"path":[4,30,2,6,1],"span":[181,9,18]},{"path":[4,30,2,6,3],"span":[181,21,22]},{"path":[4,30,2,7],"span":[182,2,25]},{"path":[4,30,2,7,5],"span":[182,2,8]},{"path":[4,30,2,7,1],"span":[182,9,20]},{"path":[4,30,2,7,3],"span":[182,23,24]},{"path":[4,31],"span":[184,0,188,1]},{"path":[4,31,1],"span":[184,8,36]},{"path":[4,31,2,0],"span":[185,2,22]},{"path":[4,31,2,0,6],"span":[185,2,9]},{"path":[4,31,2,0,1],"span":[185,10,17]},{"path":[4,31,2,0,3],"span":[185,20,21]},{"path":[4,31,2,1],"span":[186,2,37]},{"path":[4,31,2,1,6],"span":[186,2,20]},{"path":[4,31,2,1,1],"span":[186,21,32]},{"path":[4,31,2,1,3],"span":[186,35,36]},{"path":[4,31,2,2],"span":[187,2,21]},{"path":[4,31,2,2,5],"span":[187,2,8]},{"path":[4,31,2,2,1],"span":[187,9,16]},{"path":[4,31,2,2,3],"span":[187,19,20]},{"path":[4,32],"span":[189,0,202,1]},{"path":[4,32,1],"span":[189,8,38]},{"path":[4,32,2,0],"span":[190,2,23]},{"path":[4,32,2,0,5],"span":[190,2,8]},{"path":[4,32,2,0,1],"span":[190,9,18]},{"path":[4,32,2,0,3],"span":[190,21,22]},{"path":[4,32,2,1],"span":[191,2,26]},{"path":[4,32,2,1,5],"span":[191,2,8]},{"path":[4,32,2,1,1],"span":[191,9,21]},{"path":[4,32,2,1,3],"span":[191,24,25]},{"path":[4,32,2,2],"span":[192,2,25]},{"path":[4,32,2,2,5],"span":[192,2,8]},{"path":[4,32,2,2,1],"span":[192,9,20]},{"path":[4,32,2,2,3],"span":[192,23,24]},{"path":[4,32,2,3],"span":[193,2,20]},{"path":[4,32,2,3,5],"span":[193,2,8]},{"path":[4,32,2,3,1],"span":[193,9,15]},{"path":[4,32,2,3,3],"span":[193,18,19]},{"path":[4,32,2,4],"span":[194,2,18]},{"path":[4,32,2,4,5],"span":[194,2,8]},{"path":[4,32,2,4,1],"span":[194,9,13]},{"path":[4,32,2,4,3],"span":[194,16,17]},{"path":[4,32,3,0],"span":[195,2,200,3]},{"path":[4,32,3,0,1],"span":[195,10,24]},{"path":[4,32,3,0,2,0],"span":[196,4,41]},{"path":[4,32,3,0,2,0,5],"span":[196,4,10]},{"path":[4,32,3,0,2,0,1],"span":[196,11,36]},{"path":[4,32,3,0,2,0,3],"span":[196,39,40]},{"path":[4,32,3,0,2,1],"span":[197,4,47]},{"path":[4,32,3,0,2,1,5],"span":[197,4,10]},{"path":[4,32,3,0,2,1,1],"span":[197,11,42]},{"path":[4,32,3,0,2,1,3],"span":[197,45,46]},{"path":[4,32,3,0,2,2],"span":[198,4,45]},{"path":[4,32,3,0,2,2,5],"span":[198,4,10]},{"path":[4,32,3,0,2,2,1],"span":[198,11,40]},{"path":[4,32,3,0,2,2,3],"span":[198,43,44]},{"path":[4,32,3,0,2,3],"span":[199,4,40]},{"path":[4,32,3,0,2,3,5],"span":[199,4,10]},{"path":[4,32,3,0,2,3,1],"span":[199,11,35]},{"path":[4,32,3,0,2,3,3],"span":[199,38,39]},{"path":[4,32,2,5],"span":[201,2,37]},{"path":[4,32,2,5,6],"span":[201,2,16]},{"path":[4,32,2,5,1],"span":[201,17,32]},{"path":[4,32,2,5,3],"span":[201,35,36]},{"path":[4,33],"span":[203,0,205,1]},{"path":[4,33,1],"span":[203,8,39]},{"path":[4,33,2,0],"span":[204,2,22]},{"path":[4,33,2,0,6],"span":[204,2,9]},{"path":[4,33,2,0,1],"span":[204,10,17]},{"path":[4,33,2,0,3],"span":[204,20,21]},{"path":[4,34],"span":[206,0,209,1]},{"path":[4,34,1],"span":[206,8,38]},{"path":[4,34,2,0],"span":[207,2,23]},{"path":[4,34,2,0,5],"span":[207,2,8]},{"path":[4,34,2,0,1],"span":[207,9,18]},{"path":[4,34,2,0,3],"span":[207,21,22]},{"path":[4,34,2,1],"span":[208,2,22]},{"path":[4,34,2,1,5],"span":[208,2,8]},{"path":[4,34,2,1,1],"span":[208,9,17]},{"path":[4,34,2,1,3],"span":[208,20,21]},{"path":[4,35],"span":[210,0,215,1]},{"path":[4,35,1],"span":[210,8,39]},{"path":[4,35,2,0],"span":[211,2,19]},{"path":[4,35,2,0,5],"span":[211,2,6]},{"path":[4,35,2,0,1],"span":[211,7,14]},{"path":[4,35,2,0,3],"span":[211,17,18]},{"path":[4,35,2,1],"span":[212,2,21]},{"path":[4,35,2,1,5],"span":[212,2,8]},{"path":[4,35,2,1,1],"span":[212,9,16]},{"path":[4,35,2,1,3],"span":[212,19,20]},{"path":[4,35,2,2],"span":[213,2,28]},{"path":[4,35,2,2,5],"span":[213,2,8]},{"path":[4,35,2,2,1],"span":[213,9,23]},{"path":[4,35,2,2,3],"span":[213,26,27]},{"path":[4,35,2,3],"span":[214,2,28]},{"path":[4,35,2,3,5],"span":[214,2,8]},{"path":[4,35,2,3,1],"span":[214,9,23]},{"path":[4,35,2,3,3],"span":[214,26,27]},{"path":[4,36],"span":[216,0,221,1]},{"path":[4,36,1],"span":[216,8,38]},{"path":[4,36,2,0],"span":[217,2,23]},{"path":[4,36,2,0,5],"span":[217,2,8]},{"path":[4,36,2,0,1],"span":[217,9,18]},{"path":[4,36,2,0,3],"span":[217,21,22]},{"path":[4,36,2,1],"span":[218,2,22]},{"path":[4,36,2,1,5],"span":[218,2,8]},{"path":[4,36,2,1,1],"span":[218,9,17]},{"path":[4,36,2,1,3],"span":[218,20,21]},{"path":[4,36,2,2],"span":[219,2,23]},{"path":[4,36,2,2,5],"span":[219,2,6]},{"path":[4,36,2,2,1],"span":[219,7,18]},{"path":[4,36,2,2,3],"span":[219,21,22]},{"path":[4,36,2,3],"span":[220,2,23]},{"path":[4,36,2,3,5],"span":[220,2,6]},{"path":[4,36,2,3,1],"span":[220,7,18]},{"path":[4,36,2,3,3],"span":[220,21,22]},{"path":[4,37],"span":[222,0,224,1]},{"path":[4,37,1],"span":[222,8,39]},{"path":[4,37,2,0],"span":[223,2,19]},{"path":[4,37,2,0,5],"span":[223,2,6]},{"path":[4,37,2,0,1],"span":[223,7,14]},{"path":[4,37,2,0,3],"span":[223,17,18]},{"path":[4,38],"span":[225,0,231,1]},{"path":[4,38,1],"span":[225,8,41]},{"path":[4,38,2,0],"span":[226,2,23]},{"path":[4,38,2,0,5],"span":[226,2,8]},{"path":[4,38,2,0,1],"span":[226,9,18]},{"path":[4,38,2,0,3],"span":[226,21,22]},{"path":[4,38,2,1],"span":[227,2,26]},{"path":[4,38,2,1,5],"span":[227,2,8]},{"path":[4,38,2,1,1],"span":[227,9,21]},{"path":[4,38,2,1,3],"span":[227,24,25]},{"path":[4,38,2,2],"span":[228,2,25]},{"path":[4,38,2,2,5],"span":[228,2,8]},{"path":[4,38,2,2,1],"span":[228,9,20]},{"path":[4,38,2,2,3],"span":[228,23,24]},{"path":[4,38,2,3],"span":[229,2,23]},{"path":[4,38,2,3,5],"span":[229,2,8]},{"path":[4,38,2,3,1],"span":[229,9,18]},{"path":[4,38,2,3,3],"span":[229,21,22]},{"path":[4,38,2,4],"span":[230,2,23]},{"path":[4,38,2,4,6],"span":[230,2,13]},{"path":[4,38,2,4,1],"span":[230,14,18]},{"path":[4,38,2,4,3],"span":[230,21,22]},{"path":[4,39],"span":[232,0,237,1]},{"path":[4,39,1],"span":[232,8,42]},{"path":[4,39,2,0],"span":[233,2,22]},{"path":[4,39,2,0,6],"span":[233,2,9]},{"path":[4,39,2,0,1],"span":[233,10,17]},{"path":[4,39,2,0,3],"span":[233,20,21]},{"path":[4,39,2,1],"span":[234,2,37]},{"path":[4,39,2,1,6],"span":[234,2,20]},{"path":[4,39,2,1,1],"span":[234,21,32]},{"path":[4,39,2,1,3],"span":[234,35,36]},{"path":[4,39,2,2],"span":[235,2,23]},{"path":[4,39,2,2,6],"span":[235,2,13]},{"path":[4,39,2,2,1],"span":[235,14,18]},{"path":[4,39,2,2,3],"span":[235,21,22]},{"path":[4,39,2,3],"span":[236,2,21]},{"path":[4,39,2,3,5],"span":[236,2,8]},{"path":[4,39,2,3,1],"span":[236,9,16]},{"path":[4,39,2,3,3],"span":[236,19,20]},{"path":[4,40],"span":[238,0,242,1]},{"path":[4,40,1],"span":[238,8,40]},{"path":[4,40,2,0],"span":[239,2,21]},{"path":[4,40,2,0,5],"span":[239,2,8]},{"path":[4,40,2,0,1],"span":[239,9,16]},{"path":[4,40,2,0,3],"span":[239,19,20]},{"path":[4,40,2,1],"span":[240,2,34]},{"path":[4,40,2,1,4],"span":[240,2,10]},{"path":[4,40,2,1,5],"span":[240,11,17]},{"path":[4,40,2,1,1],"span":[240,18,29]},{"path":[4,40,2,1,3],"span":[240,32,33]},{"path":[4,40,2,2],"span":[241,2,21]},{"path":[4,40,2,2,5],"span":[241,2,8]},{"path":[4,40,2,2,1],"span":[241,9,16]},{"path":[4,40,2,2,3],"span":[241,19,20]},{"path":[4,41],"span":[243,0,249,1]},{"path":[4,41,1],"span":[243,8,41]},{"path":[4,41,3,0],"span":[244,2,247,3]},{"path":[4,41,3,0,1],"span":[244,10,16]},{"path":[4,41,3,0,2,0],"span":[245,4,26]},{"path":[4,41,3,0,2,0,5],"span":[245,4,10]},{"path":[4,41,3,0,2,0,1],"span":[245,11,21]},{"path":[4,41,3,0,2,0,3],"span":[245,24,25]},{"path":[4,41,3,0,2,1],"span":[246,4,20]},{"path":[4,41,3,0,2,1,5],"span":[246,4,8]},{"path":[4,41,3,0,2,1,1],"span":[246,9,15]},{"path":[4,41,3,0,2,1,3],"span":[246,18,19]},{"path":[4,41,2,0],"span":[248,2,29]},{"path":[4,41,2,0,4],"span":[248,2,10]},{"path":[4,41,2,0,6],"span":[248,11,17]},{"path":[4,41,2,0,1],"span":[248,18,24]},{"path":[4,41,2,0,3],"span":[248,27,28]},{"path":[4,42],"span":[250,0,253,1]},{"path":[4,42,1],"span":[250,8,46]},{"path":[4,42,2,0],"span":[251,2,21]},{"path":[4,42,2,0,5],"span":[251,2,8]},{"path":[4,42,2,0,1],"span":[251,9,16]},{"path":[4,42,2,0,3],"span":[251,19,20]},{"path":[4,42,2,1],"span":[252,2,23]},{"path":[4,42,2,1,5],"span":[252,2,8]},{"path":[4,42,2,1,1],"span":[252,9,18]},{"path":[4,42,2,1,3],"span":[252,21,22]},{"path":[4,43],"span":[254,0,256,1]},{"path":[4,43,1],"span":[254,8,47]},{"path":[4,43,2,0],"span":[255,2,31]},{"path":[4,43,2,0,4],"span":[255,2,10]},{"path":[4,43,2,0,6],"span":[255,11,18]},{"path":[4,43,2,0,1],"span":[255,19,26]},{"path":[4,43,2,0,3],"span":[255,29,30]},{"path":[4,44],"span":[257,0,260,1]},{"path":[4,44,1],"span":[257,8,33]},{"path":[4,44,2,0],"span":[258,2,21]},{"path":[4,44,2,0,5],"span":[258,2,8]},{"path":[4,44,2,0,1],"span":[258,9,16]},{"path":[4,44,2,0,3],"span":[258,19,20]},{"path":[4,44,2,1],"span":[259,2,24]},{"path":[4,44,2,1,5],"span":[259,2,8]},{"path":[4,44,2,1,1],"span":[259,9,19]},{"path":[4,44,2,1,3],"span":[259,22,23]},{"path":[4,45],"span":[261,0,276,1]},{"path":[4,45,1],"span":[261,8,34]},{"path":[4,45,3,0],"span":[262,2,265,3]},{"path":[4,45,3,0,1],"span":[262,10,29]},{"path":[4,45,3,0,2,0],"span":[263,4,19]},{"path":[4,45,3,0,2,0,5],"span":[263,4,10]},{"path":[4,45,3,0,2,0,1],"span":[263,11,14]},{"path":[4,45,3,0,2,0,3],"span":[263,17,18]},{"path":[4,45,3,0,2,1],"span":[264,4,34]},{"path":[4,45,3,0,2,1,5],"span":[264,4,9]},{"path":[4,45,3,0,2,1,1],"span":[264,10,29]},{"path":[4,45,3,0,2,1,3],"span":[264,32,33]},{"path":[4,45,3,1],"span":[266,2,268,3]},{"path":[4,45,3,1,1],"span":[266,10,15]},{"path":[4,45,3,1,2,0],"span":[267,4,18]},{"path":[4,45,3,1,2,0,5],"span":[267,4,10]},{"path":[4,45,3,1,2,0,1],"span":[267,11,13]},{"path":[4,45,3,1,2,0,3],"span":[267,16,17]},{"path":[4,45,3,2],"span":[269,2,274,3]},{"path":[4,45,3,2,1],"span":[269,10,14]},{"path":[4,45,3,2,2,0],"span":[270,4,18]},{"path":[4,45,3,2,2,0,5],"span":[270,4,10]},{"path":[4,45,3,2,2,0,1],"span":[270,11,13]},{"path":[4,45,3,2,2,0,3],"span":[270,16,17]},{"path":[4,45,3,2,2,1],"span":[271,4,45]},{"path":[4,45,3,2,2,1,4],"span":[271,4,12]},{"path":[4,45,3,2,2,1,6],"span":[271,13,32]},{"path":[4,45,3,2,2,1,1],"span":[271,33,40]},{"path":[4,45,3,2,2,1,3],"span":[271,43,44]},{"path":[4,45,3,2,2,2],"span":[272,4,39]},{"path":[4,45,3,2,2,2,4],"span":[272,4,12]},{"path":[4,45,3,2,2,2,6],"span":[272,13,20]},{"path":[4,45,3,2,2,2,1],"span":[272,21,34]},{"path":[4,45,3,2,2,2,3],"span":[272,37,38]},{"path":[4,45,3,2,2,3],"span":[273,4,30]},{"path":[4,45,3,2,2,3,4],"span":[273,4,12]},{"path":[4,45,3,2,2,3,6],"span":[273,13,18]},{"path":[4,45,3,2,2,3,1],"span":[273,19,25]},{"path":[4,45,3,2,2,3,3],"span":[273,28,29]},{"path":[4,45,2,0],"span":[275,2,26]},{"path":[4,45,2,0,4],"span":[275,2,10]},{"path":[4,45,2,0,6],"span":[275,11,15]},{"path":[4,45,2,0,1],"span":[275,16,21]},{"path":[4,45,2,0,3],"span":[275,24,25]},{"path":[4,46],"span":[277,0,279,1]},{"path":[4,46,1],"span":[277,8,53]},{"path":[4,46,2,0],"span":[278,2,35]},{"path":[4,46,2,0,5],"span":[278,2,8]},{"path":[4,46,2,0,1],"span":[278,9,30]},{"path":[4,46,2,0,3],"span":[278,33,34]},{"path":[4,47],"span":[280,0,283,1]},{"path":[4,47,1],"span":[280,8,54]},{"path":[4,47,2,0],"span":[281,2,21]},{"path":[4,47,2,0,5],"span":[281,2,8]},{"path":[4,47,2,0,1],"span":[281,9,16]},{"path":[4,47,2,0,3],"span":[281,19,20]},{"path":[4,47,2,1],"span":[282,2,28]},{"path":[4,47,2,1,5],"span":[282,2,8]},{"path":[4,47,2,1,1],"span":[282,9,23]},{"path":[4,47,2,1,3],"span":[282,26,27]},{"path":[4,48],"span":[284,0,301,1]},{"path":[4,48,1],"span":[284,8,34]},{"path":[4,48,2,0],"span":[285,2,30]},{"path":[4,48,2,0,5],"span":[285,2,8]},{"path":[4,48,2,0,1],"span":[285,9,25]},{"path":[4,48,2,0,3],"span":[285,28,29]},{"path":[4,48,2,1],"span":[286,2,39]},{"path":[4,48,2,1,5],"span":[286,2,8]},{"path":[4,48,2,1,1],"span":[286,9,14]},{"path":[4,48,2,1,3],"span":[286,17,18]},{"path":[4,48,2,1,8],"span":[286,19,38]},{"path":[4,48,2,1,8,3],"span":[286,20,37]},{"path":[4,48,3,0],"span":[288,2,293,3]},{"path":[4,48,3,0,1],"span":[288,10,22]},{"path":[4,48,3,0,2,0],"span":[289,4,20]},{"path":[4,48,3,0,2,0,5],"span":[289,4,10]},{"path":[4,48,3,0,2,0,1],"span":[289,11,15]},{"path":[4,48,3,0,2,0,3],"span":[289,18,19]},{"path":[4,48,3,0,2,1],"span":[290,4,44]},{"path":[4,48,3,0,2,1,5],"span":[290,4,10]},{"path":[4,48,3,0,2,1,1],"span":[290,11,19]},{"path":[4,48,3,0,2,1,3],"span":[290,22,23]},{"path":[4,48,3,0,2,1,8],"span":[290,24,43]},{"path":[4,48,3,0,2,1,8,3],"span":[290,25,42]},{"path":[4,48,3,0,2,2],"span":[291,4,25]},{"path":[4,48,3,0,2,2,5],"span":[291,4,10]},{"path":[4,48,3,0,2,2,1],"span":[291,11,20]},{"path":[4,48,3,0,2,2,3],"span":[291,23,24]},{"path":[4,48,3,0,2,3],"span":[292,4,23]},{"path":[4,48,3,0,2,3,5],"span":[292,4,10]},{"path":[4,48,3,0,2,3,1],"span":[292,11,18]},{"path":[4,48,3,0,2,3,3],"span":[292,21,22]},{"path":[4,48,2,2],"span":[294,2,35]},{"path":[4,48,2,2,4],"span":[294,2,10]},{"path":[4,48,2,2,6],"span":[294,11,23]},{"path":[4,48,2,2,1],"span":[294,24,30]},{"path":[4,48,2,2,3],"span":[294,33,34]},{"path":[4,48,2,3],"span":[296,2,25]},{"path":[4,48,2,3,5],"span":[296,2,8]},{"path":[4,48,2,3,1],"span":[296,9,20]},{"path":[4,48,2,3,3],"span":[296,23,24]},{"path":[4,48,2,4],"span":[297,2,26]},{"path":[4,48,2,4,5],"span":[297,2,8]},{"path":[4,48,2,4,1],"span":[297,9,21]},{"path":[4,48,2,4,3],"span":[297,24,25]},{"path":[4,48,2,5],"span":[298,2,45]},{"path":[4,48,2,5,5],"span":[298,2,8]},{"path":[4,48,2,5,1],"span":[298,9,20]},{"path":[4,48,2,5,3],"span":[298,23,24]},{"path":[4,48,2,5,8],"span":[298,25,44]},{"path":[4,48,2,5,8,3],"span":[298,26,43]},{"path":[4,48,2,6],"span":[299,2,24]},{"path":[4,48,2,6,5],"span":[299,2,8]},{"path":[4,48,2,6,1],"span":[299,9,19]},{"path":[4,48,2,6,3],"span":[299,22,23]},{"path":[4,48,2,7],"span":[300,2,28]},{"path":[4,48,2,7,5],"span":[300,2,8]},{"path":[4,48,2,7,1],"span":[300,9,23]},{"path":[4,48,2,7,3],"span":[300,26,27]},{"path":[4,49],"span":[302,0,304,1]},{"path":[4,49,1],"span":[302,8,35]},{"path":[4,49,2,0],"span":[303,2,21]},{"path":[4,49,2,0,5],"span":[303,2,6]},{"path":[4,49,2,0,1],"span":[303,7,16]},{"path":[4,49,2,0,3],"span":[303,19,20]},{"path":[4,50],"span":[305,0,307,1]},{"path":[4,50,1],"span":[305,8,12]},{"path":[4,50,2,0],"span":[306,2,16]},{"path":[4,50,2,0,5],"span":[306,2,8]},{"path":[4,50,2,0,1],"span":[306,9,11]},{"path":[4,50,2,0,3],"span":[306,14,15]},{"path":[4,51],"span":[308,0,311,1]},{"path":[4,51,1],"span":[308,8,30]},{"path":[4,51,2,0],"span":[309,2,28]},{"path":[4,51,2,0,5],"span":[309,2,8]},{"path":[4,51,2,0,1],"span":[309,9,23]},{"path":[4,51,2,0,3],"span":[309,26,27]},{"path":[4,51,2,1],"span":[310,2,22]},{"path":[4,51,2,1,5],"span":[310,2,8]},{"path":[4,51,2,1,1],"span":[310,9,17]},{"path":[4,51,2,1,3],"span":[310,20,21]},{"path":[4,52],"span":[312,0,314,1]},{"path":[4,52,1],"span":[312,8,31]},{"path":[4,52,2,0],"span":[313,2,25]},{"path":[4,52,2,0,4],"span":[313,2,10]},{"path":[4,52,2,0,6],"span":[313,11,15]},{"path":[4,52,2,0,1],"span":[313,16,20]},{"path":[4,52,2,0,3],"span":[313,23,24]},{"path":[4,53],"span":[315,0,317,1]},{"path":[4,53,1],"span":[315,8,36]},{"path":[4,53,2,0],"span":[316,2,21]},{"path":[4,53,2,0,5],"span":[316,2,8]},{"path":[4,53,2,0,1],"span":[316,9,16]},{"path":[4,53,2,0,3],"span":[316,19,20]},{"path":[4,54],"span":[318,0,320,1]},{"path":[4,54,1],"span":[318,8,37]},{"path":[4,54,2,0],"span":[319,2,34]},{"path":[4,54,2,0,4],"span":[319,2,10]},{"path":[4,54,2,0,5],"span":[319,11,17]},{"path":[4,54,2,0,1],"span":[319,18,29]},{"path":[4,54,2,0,3],"span":[319,32,33]},{"path":[4,55],"span":[321,0,324,1]},{"path":[4,55,1],"span":[321,8,40]},{"path":[4,55,2,0],"span":[322,2,28]},{"path":[4,55,2,0,5],"span":[322,2,8]},{"path":[4,55,2,0,1],"span":[322,9,23]},{"path":[4,55,2,0,3],"span":[322,26,27]},{"path":[4,55,2,1],"span":[323,2,24]},{"path":[4,55,2,1,5],"span":[323,2,8]},{"path":[4,55,2,1,1],"span":[323,9,19]},{"path":[4,55,2,1,3],"span":[323,22,23]},{"path":[4,56],"span":[325,0,327,1]},{"path":[4,56,1],"span":[325,8,41]},{"path":[4,56,2,0],"span":[326,2,22]},{"path":[4,56,2,0,5],"span":[326,2,6]},{"path":[4,56,2,0,1],"span":[326,7,17]},{"path":[4,56,2,0,3],"span":[326,20,21]},{"path":[5,3],"span":[328,0,335,1]},{"path":[5,3,1],"span":[328,5,21]},{"path":[5,3,2,0],"span":[329,2,43]},{"path":[5,3,2,0,1],"span":[329,2,38]},{"path":[5,3,2,0,2],"span":[329,41,42]},{"path":[5,3,2,1],"span":[330,2,36]},{"path":[5,3,2,1,1],"span":[330,2,31]},{"path":[5,3,2,1,2],"span":[330,34,35]},{"path":[5,3,2,2],"span":[331,2,39]},{"path":[5,3,2,2,1],"span":[331,2,34]},{"path":[5,3,2,2,2],"span":[331,37,38]},{"path":[5,3,2,3],"span":[332,2,38]},{"path":[5,3,2,3,1],"span":[332,2,33]},{"path":[5,3,2,3,2],"span":[332,36,37]},{"path":[5,3,2,4],"span":[333,2,34]},{"path":[5,3,2,4,1],"span":[333,2,29]},{"path":[5,3,2,4,2],"span":[333,32,33]},{"path":[5,3,2,5],"span":[334,2,41]},{"path":[5,3,2,5,1],"span":[334,2,36]},{"path":[5,3,2,5,2],"span":[334,39,40]},{"path":[4,57],"span":[336,0,344,1]},{"path":[4,57,1],"span":[336,8,20]},{"path":[4,57,2,0],"span":[337,2,16]},{"path":[4,57,2,0,5],"span":[337,2,8]},{"path":[4,57,2,0,1],"span":[337,9,11]},{"path":[4,57,2,0,3],"span":[337,14,15]},{"path":[4,57,2,1],"span":[338,2,21]},{"path":[4,57,2,1,5],"span":[338,2,8]},{"path":[4,57,2,1,1],"span":[338,9,16]},{"path":[4,57,2,1,3],"span":[338,19,20]},{"path":[4,57,2,2],"span":[339,2,28]},{"path":[4,57,2,2,6],"span":[339,2,18]},{"path":[4,57,2,2,1],"span":[339,19,23]},{"path":[4,57,2,2,3],"span":[339,26,27]},{"path":[4,57,2,3],"span":[340,2,25]},{"path":[4,57,2,3,5],"span":[340,2,7]},{"path":[4,57,2,3,1],"span":[340,8,20]},{"path":[4,57,2,3,3],"span":[340,23,24]},{"path":[4,57,2,4],"span":[341,2,29]},{"path":[4,57,2,4,5],"span":[341,2,8]},{"path":[4,57,2,4,1],"span":[341,9,24]},{"path":[4,57,2,4,3],"span":[341,27,28]},{"path":[4,57,2,5],"span":[342,2,24]},{"path":[4,57,2,5,5],"span":[342,2,8]},{"path":[4,57,2,5,1],"span":[342,9,19]},{"path":[4,57,2,5,3],"span":[342,22,23]},{"path":[4,57,2,6],"span":[343,2,24]},{"path":[4,57,2,6,5],"span":[343,2,8]},{"path":[4,57,2,6,1],"span":[343,9,19]},{"path":[4,57,2,6,3],"span":[343,22,23]},{"path":[4,58],"span":[345,0,351,1]},{"path":[4,58,1],"span":[345,8,37]},{"path":[4,58,2,0],"span":[346,2,21]},{"path":[4,58,2,0,5],"span":[346,2,8]},{"path":[4,58,2,0,1],"span":[346,9,16]},{"path":[4,58,2,0,3],"span":[346,19,20]},{"path":[4,58,2,1],"span":[347,2,28]},{"path":[4,58,2,1,6],"span":[347,2,18]},{"path":[4,58,2,1,1],"span":[347,19,23]},{"path":[4,58,2,1,3],"span":[347,26,27]},{"path":[4,58,2,2],"span":[348,2,25]},{"path":[4,58,2,2,5],"span":[348,2,7]},{"path":[4,58,2,2,1],"span":[348,8,20]},{"path":[4,58,2,2,3],"span":[348,23,24]},{"path":[4,58,2,3],"span":[349,2,29]},{"path":[4,58,2,3,5],"span":[349,2,8]},{"path":[4,58,2,3,1],"span":[349,9,24]},{"path":[4,58,2,3,3],"span":[349,27,28]},{"path":[4,58,2,4],"span":[350,2,24]},{"path":[4,58,2,4,5],"span":[350,2,8]},{"path":[4,58,2,4,1],"span":[350,9,19]},{"path":[4,58,2,4,3],"span":[350,22,23]},{"path":[4,59],"span":[352,0,354,1]},{"path":[4,59,1],"span":[352,8,38]},{"path":[4,59,2,0],"span":[353,2,32]},{"path":[4,59,2,0,6],"span":[353,2,14]},{"path":[4,59,2,0,1],"span":[353,15,27]},{"path":[4,59,2,0,3],"span":[353,30,31]},{"path":[4,60],"span":[355,0,357,1]},{"path":[4,60,1],"span":[355,8,42]},{"path":[4,60,2,0],"span":[356,2,21]},{"path":[4,60,2,0,5],"span":[356,2,8]},{"path":[4,60,2,0,1],"span":[356,9,16]},{"path":[4,60,2,0,3],"span":[356,19,20]},{"path":[4,61],"span":[358,0,360,1]},{"path":[4,61,1],"span":[358,8,43]},{"path":[4,61,2,0],"span":[359,2,35]},{"path":[4,61,2,0,5],"span":[359,2,8]},{"path":[4,61,2,0,1],"span":[359,9,30]},{"path":[4,61,2,0,3],"span":[359,33,34]},{"path":[4,62],"span":[361,0,363,1]},{"path":[4,62,1],"span":[361,8,47]},{"path":[4,62,2,0],"span":[362,2,23]},{"path":[4,62,2,0,5],"span":[362,2,8]},{"path":[4,62,2,0,1],"span":[362,9,18]},{"path":[4,62,2,0,3],"span":[362,21,22]},{"path":[4,63],"span":[364,0,366,1]},{"path":[4,63,1],"span":[364,8,48]},{"path":[4,63,2,0],"span":[365,2,21]},{"path":[4,63,2,0,5],"span":[365,2,8]},{"path":[4,63,2,0,1],"span":[365,9,16]},{"path":[4,63,2,0,3],"span":[365,19,20]},{"path":[4,64],"span":[367,0,371,1]},{"path":[4,64,1],"span":[367,8,31]},{"path":[4,64,7],"span":[368,2,27]},{"path":[4,64,7,3],"span":[368,2,27]},{"path":[4,64,2,0],"span":[369,2,21]},{"path":[4,64,2,0,5],"span":[369,2,8]},{"path":[4,64,2,0,1],"span":[369,9,16]},{"path":[4,64,2,0,3],"span":[369,19,20]},{"path":[4,64,2,1],"span":[370,2,29]},{"path":[4,64,2,1,4],"span":[370,2,10]},{"path":[4,64,2,1,5],"span":[370,11,17]},{"path":[4,64,2,1,1],"span":[370,18,24]},{"path":[4,64,2,1,3],"span":[370,27,28]},{"path":[4,65],"span":[372,0,375,1]},{"path":[4,65,1],"span":[372,8,32]},{"path":[4,65,7],"span":[373,2,27]},{"path":[4,65,7,3],"span":[373,2,27]},{"path":[4,65,2,0],"span":[374,2,15]},{"path":[4,65,2,0,5],"span":[374,2,6]},{"path":[4,65,2,0,1],"span":[374,7,10]},{"path":[4,65,2,0,3],"span":[374,13,14]},{"path":[4,66],"span":[376,0,379,1]},{"path":[4,66,1],"span":[376,8,31]},{"path":[4,66,2,0],"span":[377,2,21]},{"path":[4,66,2,0,5],"span":[377,2,8]},{"path":[4,66,2,0,1],"span":[377,9,16]},{"path":[4,66,2,0,3],"span":[377,19,20]},{"path":[4,66,2,1],"span":[378,2,29]},{"path":[4,66,2,1,4],"span":[378,2,10]},{"path":[4,66,2,1,5],"span":[378,11,17]},{"path":[4,66,2,1,1],"span":[378,18,24]},{"path":[4,66,2,1,3],"span":[378,27,28]},{"path":[4,67],"span":[380,0,384,1]},{"path":[4,67,1],"span":[380,8,32]},{"path":[4,67,2,0],"span":[381,2,15]},{"path":[4,67,2,0,5],"span":[381,2,6]},{"path":[4,67,2,0,1],"span":[381,7,10]},{"path":[4,67,2,0,3],"span":[381,13,14]},{"path":[4,67,2,1],"span":[382,2,32]},{"path":[4,67,2,1,4],"span":[382,2,10]},{"path":[4,67,2,1,6],"span":[382,11,18]},{"path":[4,67,2,1,1],"span":[382,19,27]},{"path":[4,67,2,1,3],"span":[382,30,31]},{"path":[4,67,2,2],"span":[383,2,31]},{"path":[4,67,2,2,6],"span":[383,2,16]},{"path":[4,67,2,2,1],"span":[383,17,26]},{"path":[4,67,2,2,3],"span":[383,29,30]},{"path":[4,68],"span":[385,0,387,1]},{"path":[4,68,1],"span":[385,8,39]},{"path":[4,68,2,0],"span":[386,2,21]},{"path":[4,68,2,0,5],"span":[386,2,8]},{"path":[4,68,2,0,1],"span":[386,9,16]},{"path":[4,68,2,0,3],"span":[386,19,20]},{"path":[4,69],"span":[388,0,390,1]},{"path":[4,69,1],"span":[388,8,40]},{"path":[4,69,2,0],"span":[389,2,16]},{"path":[4,69,2,0,5],"span":[389,2,6]},{"path":[4,69,2,0,1],"span":[389,7,11]},{"path":[4,69,2,0,3],"span":[389,14,15]},{"path":[4,70],"span":[391,0,393,1]},{"path":[4,70,1],"span":[391,8,34]},{"path":[4,70,2,0],"span":[392,2,21]},{"path":[4,70,2,0,5],"span":[392,2,8]},{"path":[4,70,2,0,1],"span":[392,9,16]},{"path":[4,70,2,0,3],"span":[392,19,20]},{"path":[4,71],"span":[394,0,396,1]},{"path":[4,71,1],"span":[394,8,35]},{"path":[4,71,2,0],"span":[395,2,28]},{"path":[4,71,2,0,6],"span":[395,2,18]},{"path":[4,71,2,0,1],"span":[395,19,23]},{"path":[4,71,2,0,3],"span":[395,26,27]},{"path":[4,72],"span":[397,0,400,1]},{"path":[4,72,1],"span":[397,8,32]},{"path":[4,72,2,0],"span":[398,2,21]},{"path":[4,72,2,0,5],"span":[398,2,8]},{"path":[4,72,2,0,1],"span":[398,9,16]},{"path":[4,72,2,0,3],"span":[398,19,20]},{"path":[4,72,2,1],"span":[399,2,24]},{"path":[4,72,2,1,5],"span":[399,2,8]},{"path":[4,72,2,1,1],"span":[399,9,19]},{"path":[4,72,2,1,3],"span":[399,22,23]},{"path":[4,73],"span":[401,0,403,1]},{"path":[4,73,1],"span":[401,8,33]},{"path":[4,73,2,0],"span":[402,2,18]},{"path":[4,73,2,0,5],"span":[402,2,8]},{"path":[4,73,2,0,1],"span":[402,9,13]},{"path":[4,73,2,0,3],"span":[402,16,17]},{"path":[4,74],"span":[404,0,406,1]},{"path":[4,74,1],"span":[404,8,37]},{"path":[4,74,2,0],"span":[405,4,33]},{"path":[4,74,2,0,4],"span":[405,4,12]},{"path":[4,74,2,0,5],"span":[405,13,19]},{"path":[4,74,2,0,1],"span":[405,20,28]},{"path":[4,74,2,0,3],"span":[405,31,32]},{"path":[4,75],"span":[407,0,409,1]},{"path":[4,75,1],"span":[407,8,47]},{"path":[4,75,2,0],"span":[408,2,21]},{"path":[4,75,2,0,5],"span":[408,2,8]},{"path":[4,75,2,0,1],"span":[408,9,16]},{"path":[4,75,2,0,3],"span":[408,19,20]},{"path":[4,76],"span":[410,0,412,1]},{"path":[4,76,1],"span":[410,8,48]},{"path":[4,76,2,0],"span":[411,2,22]},{"path":[4,76,2,0,5],"span":[411,2,6]},{"path":[4,76,2,0,1],"span":[411,7,17]},{"path":[4,76,2,0,3],"span":[411,20,21]},{"path":[4,77],"span":[413,0,417,1]},{"path":[4,77,1],"span":[413,8,33]},{"path":[4,77,2,0],"span":[414,2,21]},{"path":[4,77,2,0,5],"span":[414,2,8]},{"path":[4,77,2,0,1],"span":[414,9,16]},{"path":[4,77,2,0,3],"span":[414,19,20]},{"path":[4,77,2,1],"span":[415,2,17]},{"path":[4,77,2,1,5],"span":[415,2,8]},{"path":[4,77,2,1,1],"span":[415,9,12]},{"path":[4,77,2,1,3],"span":[415,15,16]},{"path":[4,77,2,2],"span":[416,2,19]},{"path":[4,77,2,2,5],"span":[416,2,8]},{"path":[4,77,2,2,1],"span":[416,9,14]},{"path":[4,77,2,2,3],"span":[416,17,18]},{"path":[4,78],"span":[418,0,420,1]},{"path":[4,78,1],"span":[418,8,34]},{"path":[4,78,2,0],"span":[419,2,19]},{"path":[4,78,2,0,5],"span":[419,2,6]},{"path":[4,78,2,0,1],"span":[419,7,14]},{"path":[4,78,2,0,3],"span":[419,17,18]},{"path":[4,79],"span":[422,0,424,1]},{"path":[4,79,1],"span":[422,8,28]},{"path":[4,79,2,0],"span":[423,2,31]},{"path":[4,79,2,0,4],"span":[423,2,10]},{"path":[4,79,2,0,5],"span":[423,11,17]},{"path":[4,79,2,0,1],"span":[423,18,26]},{"path":[4,79,2,0,3],"span":[423,29,30]},{"path":[4,80],"span":[426,0,428,1]},{"path":[4,80,1],"span":[426,8,29]},{"path":[4,80,2,0],"span":[427,2,70]},{"path":[4,80,2,0,6],"span":[427,2,53]},{"path":[4,80,2,0,1],"span":[427,54,65]},{"path":[4,80,2,0,3],"span":[427,68,69]},{"path":[6,0],"span":[430,0,473,1]},{"path":[6,0,1],"span":[430,8,19]},{"path":[6,0,2,0],"span":[431,2,121]},{"path":[6,0,2,0,1],"span":[431,6,34]},{"path":[6,0,2,0,2],"span":[431,35,70]},{"path":[6,0,2,0,3],"span":[431,81,117]},{"path":[6,0,2,1],"span":[432,2,118]},{"path":[6,0,2,1,1],"span":[432,6,33]},{"path":[6,0,2,1,2],"span":[432,34,68]},{"path":[6,0,2,1,3],"span":[432,79,114]},{"path":[6,0,2,2],"span":[433,2,100]},{"path":[6,0,2,2,1],"span":[433,6,27]},{"path":[6,0,2,2,2],"span":[433,28,56]},{"path":[6,0,2,2,3],"span":[433,67,96]},{"path":[6,0,2,3],"span":[434,2,106]},{"path":[6,0,2,3,1],"span":[434,6,29]},{"path":[6,0,2,3,2],"span":[434,30,60]},{"path":[6,0,2,3,3],"span":[434,71,102]},{"path":[6,0,2,4],"span":[436,2,115]},{"path":[6,0,2,4,1],"span":[436,6,32]},{"path":[6,0,2,4,2],"span":[436,33,66]},{"path":[6,0,2,4,3],"span":[436,77,111]},{"path":[6,0,2,5],"span":[437,2,76]},{"path":[6,0,2,5,1],"span":[437,6,19]},{"path":[6,0,2,5,2],"span":[437,20,40]},{"path":[6,0,2,5,3],"span":[437,51,72]},{"path":[6,0,2,6],"span":[438,2,76]},{"path":[6,0,2,6,1],"span":[438,6,19]},{"path":[6,0,2,6,2],"span":[438,20,40]},{"path":[6,0,2,6,3],"span":[438,51,72]},{"path":[6,0,2,7],"span":[439,2,97]},{"path":[6,0,2,7,1],"span":[439,6,26]},{"path":[6,0,2,7,2],"span":[439,27,54]},{"path":[6,0,2,7,3],"span":[439,65,93]},{"path":[6,0,2,8],"span":[440,2,88]},{"path":[6,0,2,8,1],"span":[440,6,23]},{"path":[6,0,2,8,2],"span":[440,24,48]},{"path":[6,0,2,8,3],"span":[440,59,84]},{"path":[6,0,2,9],"span":[441,2,118]},{"path":[6,0,2,9,1],"span":[441,6,33]},{"path":[6,0,2,9,2],"span":[441,34,68]},{"path":[6,0,2,9,3],"span":[441,79,114]},{"path":[6,0,2,10],"span":[442,2,82]},{"path":[6,0,2,10,1],"span":[442,6,21]},{"path":[6,0,2,10,2],"span":[442,22,44]},{"path":[6,0,2,10,3],"span":[442,55,78]},{"path":[6,0,2,11],"span":[443,2,97]},{"path":[6,0,2,11,1],"span":[443,6,28]},{"path":[6,0,2,11,2],"span":[443,29,58]},{"path":[6,0,2,11,3],"span":[443,69,93]},{"path":[6,0,2,12],"span":[444,2,97]},{"path":[6,0,2,12,1],"span":[444,6,26]},{"path":[6,0,2,12,2],"span":[444,27,54]},{"path":[6,0,2,12,3],"span":[444,65,93]},{"path":[6,0,2,13],"span":[445,2,106]},{"path":[6,0,2,13,1],"span":[445,6,29]},{"path":[6,0,2,13,2],"span":[445,30,60]},{"path":[6,0,2,13,3],"span":[445,71,102]},{"path":[6,0,2,14],"span":[446,2,106]},{"path":[6,0,2,14,1],"span":[446,6,29]},{"path":[6,0,2,14,2],"span":[446,30,60]},{"path":[6,0,2,14,3],"span":[446,71,102]},{"path":[6,0,2,15],"span":[447,2,115]},{"path":[6,0,2,15,1],"span":[447,6,32]},{"path":[6,0,2,15,2],"span":[447,33,66]},{"path":[6,0,2,15,3],"span":[447,77,111]},{"path":[6,0,2,16],"span":[448,2,106]},{"path":[6,0,2,16,1],"span":[448,6,29]},{"path":[6,0,2,16,2],"span":[448,30,60]},{"path":[6,0,2,16,3],"span":[448,71,102]},{"path":[6,0,2,17],"span":[449,2,112]},{"path":[6,0,2,17,1],"span":[449,6,31]},{"path":[6,0,2,17,2],"span":[449,32,64]},{"path":[6,0,2,17,3],"span":[449,75,108]},{"path":[6,0,2,18],"span":[450,2,130]},{"path":[6,0,2,18,1],"span":[450,6,37]},{"path":[6,0,2,18,2],"span":[450,38,76]},{"path":[6,0,2,18,3],"span":[450,87,126]},{"path":[6,0,2,19],"span":[451,2,91]},{"path":[6,0,2,19,1],"span":[451,6,24]},{"path":[6,0,2,19,2],"span":[451,25,50]},{"path":[6,0,2,19,3],"span":[451,61,87]},{"path":[6,0,2,20],"span":[452,2,151]},{"path":[6,0,2,20,1],"span":[452,6,44]},{"path":[6,0,2,20,2],"span":[452,45,90]},{"path":[6,0,2,20,3],"span":[452,101,147]},{"path":[6,0,2,21],"span":[453,2,99]},{"path":[6,0,2,21,1],"span":[453,6,30]},{"path":[6,0,2,21,2],"span":[453,31,57]},{"path":[6,0,2,21,3],"span":[453,68,95]},{"path":[6,0,2,22],"span":[454,2,100]},{"path":[6,0,2,22,1],"span":[454,6,39]},{"path":[6,0,2,22,2],"span":[454,40,62]},{"path":[6,0,2,22,3],"span":[454,73,96]},{"path":[6,0,2,23],"span":[455,2,100]},{"path":[6,0,2,23,1],"span":[455,6,27]},{"path":[6,0,2,23,2],"span":[455,28,56]},{"path":[6,0,2,23,3],"span":[455,67,96]},{"path":[6,0,2,24],"span":[456,2,112]},{"path":[6,0,2,24,1],"span":[456,6,31]},{"path":[6,0,2,24,2],"span":[456,32,64]},{"path":[6,0,2,24,3],"span":[456,75,108]},{"path":[6,0,2,25],"span":[457,2,103]},{"path":[6,0,2,25,1],"span":[457,6,28]},{"path":[6,0,2,25,2],"span":[457,29,58]},{"path":[6,0,2,25,3],"span":[457,69,99]},{"path":[6,0,2,26],"span":[458,2,118]},{"path":[6,0,2,26,1],"span":[458,6,33]},{"path":[6,0,2,26,2],"span":[458,34,68]},{"path":[6,0,2,26,3],"span":[458,79,114]},{"path":[6,0,2,27],"span":[459,2,133]},{"path":[6,0,2,27,1],"span":[459,6,38]},{"path":[6,0,2,27,2],"span":[459,39,78]},{"path":[6,0,2,27,3],"span":[459,89,129]},{"path":[6,0,2,28],"span":[460,2,85]},{"path":[6,0,2,28,1],"span":[460,6,22]},{"path":[6,0,2,28,2],"span":[460,23,46]},{"path":[6,0,2,28,3],"span":[460,57,81]},{"path":[6,0,2,29],"span":[462,2,109]},{"path":[6,0,2,29,1],"span":[462,6,30]},{"path":[6,0,2,29,2],"span":[462,31,62]},{"path":[6,0,2,29,3],"span":[462,73,105]},{"path":[6,0,2,30],"span":[463,2,465,3]},{"path":[6,0,2,30,1],"span":[463,6,22]},{"path":[6,0,2,30,2],"span":[463,23,46]},{"path":[6,0,2,30,3],"span":[463,57,81]},{"path":[6,0,2,30,4],"span":[464,4,29]},{"path":[6,0,2,30,4,33],"span":[464,4,29]},{"path":[6,0,2,31],"span":[466,2,94]},{"path":[6,0,2,31,1],"span":[466,6,25]},{"path":[6,0,2,31,2],"span":[466,26,52]},{"path":[6,0,2,31,3],"span":[466,63,90]},{"path":[6,0,2,32],"span":[467,2,88]},{"path":[6,0,2,32,1],"span":[467,6,23]},{"path":[6,0,2,32,2],"span":[467,24,48]},{"path":[6,0,2,32,3],"span":[467,59,84]},{"path":[6,0,2,33],"span":[468,2,113]},{"path":[6,0,2,33,1],"span":[468,6,39]},{"path":[6,0,2,33,2],"span":[468,40,69]},{"path":[6,0,2,33,3],"span":[468,80,109]},{"path":[6,0,2,34],"span":[469,2,133]},{"path":[6,0,2,34,1],"span":[469,6,38]},{"path":[6,0,2,34,2],"span":[469,39,78]},{"path":[6,0,2,34,3],"span":[469,89,129]},{"path":[6,0,2,35],"span":[471,2,91]},{"path":[6,0,2,35,1],"span":[471,6,24]},{"path":[6,0,2,35,2],"span":[471,25,50]},{"path":[6,0,2,35,3],"span":[471,61,87]},{"path":[6,0,2,36],"span":[472,2,76]},{"path":[6,0,2,36,1],"span":[472,6,19]},{"path":[6,0,2,36,2],"span":[472,20,40]},{"path":[6,0,2,36,3],"span":[472,51,72]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|